Skip to content

Instantly share code, notes, and snippets.

@qqpann
Created January 14, 2019 23:23
Show Gist options
  • Save qqpann/0c7c5fd978461fb88c9d5747ecdb259c to your computer and use it in GitHub Desktop.
Save qqpann/0c7c5fd978461fb88c9d5747ecdb259c to your computer and use it in GitHub Desktop.
筑波 データマイニング
import numpy as np
import pandas as pd
import sqlite3
from collections import defaultdict
conn = sqlite3.connect('data/twitter_users.sqlite')
df = pd.read_sql('select id, follower_screen_name from twitter_followers', conn)
init = 0.33
λ = 0.15
N = len(df)
refresh = 2
# links = 'a->b a->c b->c c->a'
linked_to = dict()
Lx = dict()
# for link in links.split():
for i, (fr, to) in df.iterrows():
# fr, to = link.split('->')
if linked_to.get(to, False):
linked_to[to].append(fr)
else:
linked_to[to] = [fr]
Lx[fr] = Lx.get(fr, 0) + 1
PRxMemo = defaultdict(lambda: dict())
def PRx(page, n):
if n == 0:
return init
elif PRxMemo[page].get(n):
return PRxMemo[page][n]
else:
result = (λ / N) + (1 - λ) * sum([(PRx(x, n - 1) / Lx[x]) for x in linked_to[page]])
PRxMemo[page][n] = result
return result
# print(linked_to, Lx)
# n = refresh
n = 3
print("Result:")
for name in linked_to.keys():
print(f"PR_{name}[{n}]: {PRx(name, n):.4}")
# n = 10
# print(f"""Result:
# PRa[{n}]: {PRx('a', n):.4}
# PRb[{n}]: {PRx('b', n):.4}
# PRc[{n}]: {PRx('c', n):.4}
# """)
Result:
PR_qqhann_ITF[3]: 0.0004529
PR_qqhann[3]: 0.0005075
PR_wakapippi[3]: 0.0001897
PR_tsuku_live[3]: 0.0001897
PR_NishikawaKouh[3]: 0.0004299
PR_KLISSANHEN[3]: 0.0003153
PR_tommy19970714[3]: 0.0002538
PR_natsukacha[3]: 0.0002544
PR_klisiss[3]: 0.0001897
PR_chr_ITF[3]: 0.000257
PR_blue_impg[3]: 0.0002233
PR_nmyuuun[3]: 0.0001897
PR_SatoDaitetsu[3]: 0.0001897
PR_hoshizora1997[3]: 0.0001897
PR_Moneto_Tk[3]: 0.0002252
PR_passion_shodo[3]: 0.0001897
PR_seventy219[3]: 0.0002656
PR_ijrfk[3]: 0.0009439
PR_i8mg8AftpOamUYJ[3]: 0.0001897
PR_ikumin3506[3]: 0.0002041
PR_arpanda0924[3]: 0.0004227
PR_Mmmnyt[3]: 0.0002089
PR_made_up_123[3]: 0.0001897
PR_Tohoku6ken_tkb[3]: 0.0001897
PR_bnbn_aikoku[3]: 0.0001897
PR_kzm_klis[3]: 0.0001897
PR_MtJuney[3]: 0.0001897
PR_matpgmwwp[3]: 0.0001897
PR_RyuNakka[3]: 0.0002233
PR_nunyunun[3]: 0.0001897
PR_run_iue[3]: 0.0001897
PR_CaramelWith_[3]: 0.0001897
PR_truth_ssp_d[3]: 0.0001897
PR_ho_tokezaki[3]: 0.0001897
PR_hashiyan_ITF[3]: 0.0001897
PR_UEzobafun[3]: 0.0001897
PR_G_goooo7[3]: 0.001342
PR_daiba1116[3]: 0.0009767
PR_8se5japan[3]: 0.0002242
PR_ryotanoschedule[3]: 0.002755
PR_ichijinraigou[3]: 0.0002242
PR_tetootetoco7[3]: 0.0001897
PR_syun__a[3]: 0.0001897
PR_ironanairo[3]: 0.0002041
PR_5fhUd[3]: 0.0001897
PR_aiken11_12[3]: 0.0001897
PR_amaminoclo[3]: 0.0002041
PR_niwatori_univer[3]: 0.0002041
PR_lmn8cs[3]: 0.0002644
PR_uda315[3]: 0.0002041
PR_ITF_kanazawa[3]: 0.0002017
PR_matamata0724[3]: 0.0003261
PR_gamma_0207[3]: 0.0002041
PR_Shisyamo555[3]: 0.0001897
PR_nakiri0830[3]: 0.0001897
PR_masazwi1997[3]: 0.0001897
PR_wabairun0815[3]: 0.0001897
PR_sdoaa9006[3]: 0.0001897
PR_1289baseball[3]: 0.000217
PR_TkhgBu[3]: 0.001398
PR_ssssssssssatsu[3]: 0.0002259
PR_hry_lycg68[3]: 0.0004147
PR_D6_bmp[3]: 0.0001897
PR_karatekozo1996[3]: 0.0001897
PR_baka_haguki[3]: 0.000201
PR_takahasi4545[3]: 0.0006953
PR_BANSHEE_NEKO_02[3]: 0.002361
PR_hry_lycg23[3]: 0.0004147
PR_hitotose01[3]: 0.0001897
PR_sea_dol_wha[3]: 0.0003919
PR_0514ebina[3]: 0.0001897
PR_suzuka5634[3]: 0.0001897
PR_aeptem317[3]: 0.0001897
PR_Hyougo4107[3]: 0.0005881
PR_lagoon9034[3]: 0.0001897
PR_taixhigh_q[3]: 0.0001897
PR_Will3cats[3]: 0.0002132
PR_20131031s[3]: 0.0002569
PR_runrunsasaki[3]: 0.000201
PR_hry_lycg22[3]: 0.0002162
PR_0414Maturi[3]: 0.0001897
PR_sinao2[3]: 0.001175
PR_pandadx6969[3]: 0.0007683
PR_lucy_sy_816[3]: 0.000282
PR_masa_0897[3]: 0.0004747
PR_luc_ksa_y[3]: 0.0003623
PR_dqxbt100[3]: 0.0002459
PR_kantai318[3]: 0.0002489
PR_pyann_1039[3]: 0.0001897
PR_yagi_0920[3]: 0.000238
PR_hry_lycg21[3]: 0.0002162
PR_snp38_0816[3]: 0.0003744
PR_zackey_k[3]: 0.000201
PR_utsumibannan[3]: 0.0001897
PR_hat5601[3]: 0.0003182
PR_cocoa2403_aim[3]: 0.0002132
PR_YutoSy9723[3]: 0.0005309
PR_syatihokoten[3]: 0.0001897
PR_Kiryu4200[3]: 0.0001897
PR_ma____1018[3]: 0.0002875
PR_iwatamanta1210[3]: 0.0002018
PR_PATA1125[3]: 0.0001897
PR_yutoku0308[3]: 0.00103
PR_stars3065[3]: 0.0002132
PR_3catsWill[3]: 0.0002018
PR_shin_jubilo[3]: 0.0002259
PR_daichan09281[3]: 0.001262
PR_Murray_Taku1023[3]: 0.0003564
PR_sinnyo_ryohei[3]: 0.0003919
PR_inakou5[3]: 0.001569
PR_ban_174[3]: 0.0001897
PR_w_sprite347[3]: 0.0003417
PR_kamisan0417[3]: 0.0003978
PR_Naoksg613[3]: 0.0003744
PR_Ws19961202[3]: 0.0009641
PR_masao0o0o[3]: 0.000567
PR_ThankfulWf[3]: 0.001104
PR_choko_ramen_gyo[3]: 0.000201
PR_BANSHEE_NORN_02[3]: 0.003832
PR_0804gin[3]: 0.0002132
PR_tomo58al[3]: 0.0004643
PR_bnbn_777[3]: 0.0002131
PR_freemotio[3]: 0.0001043
PR__tinoji[3]: 8.461e-05
PR_kibi_aki[3]: 8.461e-05
PR_Kish_WORLDs[3]: 0.0001038
PR_ProductHunt_jp[3]: 8.461e-05
PR_AppsTimes[3]: 8.461e-05
PR_watanabe_117[3]: 0.004024
PR_en30Y[3]: 9.249e-05
PR_earthkeylab[3]: 8.461e-05
PR_hosono_fe[3]: 8.461e-05
PR_sunpepe[3]: 8.461e-05
PR_appp_la[3]: 8.461e-05
PR_tmasao[3]: 0.0001793
PR_klis_kasuga[3]: 0.0001474
PR_sti320a[3]: 8.461e-05
PR_dumblepytech1[3]: 8.461e-05
PR_jansnap729[3]: 8.461e-05
PR_oki_tz[3]: 8.461e-05
PR_narinarita1980[3]: 8.461e-05
PR_Net2ja47[3]: 8.461e-05
PR_upura0[3]: 0.0001911
PR_m3yrin[3]: 8.461e-05
PR_dev_sudame[3]: 8.461e-05
PR_adwakana21830[3]: 8.461e-05
PR_sadaoooo1210[3]: 0.0001158
PR_brawlstarsjp[3]: 8.461e-05
PR_xuzijian629[3]: 8.461e-05
PR_5ebec[3]: 8.461e-05
PR_ZeRo0957[3]: 8.461e-05
PR_piris314[3]: 8.461e-05
PR_wagase[3]: 8.461e-05
PR_ziyugata[3]: 0.0001038
PR_ntmemoo[3]: 8.461e-05
PR_roy8boy[3]: 8.461e-05
PR_smasat0[3]: 9.659e-05
PR_hirotsugu_kawa[3]: 8.461e-05
PR_KlisMof[3]: 0.0001038
PR_gadgetsloveman[3]: 8.461e-05
PR_puni_kyopro[3]: 8.461e-05
PR_oakareaioh[3]: 8.461e-05
PR_toof_jp[3]: 8.461e-05
PR_k0bya4[3]: 0.0001681
PR_vaaaaanquish[3]: 0.000209
PR_tan1p0p[3]: 0.0001681
PR_k_hirosawa[3]: 8.461e-05
PR_kajyuuen[3]: 0.0001561
PR_YES_SW_ENGINEER[3]: 9.294e-05
PR_satori_labo[3]: 9.659e-05
PR_nissy_AAAAA[3]: 8.461e-05
PR_yuuyasub[3]: 8.461e-05
PR_Kengo_vg[3]: 0.0001283
PR_pjy2009[3]: 8.461e-05
PR_ZEETO_vaingroly[3]: 0.0001721
PR_himahimanohito[3]: 8.461e-05
PR_korenaga_[3]: 8.461e-05
PR_MarimonTaisa[3]: 8.461e-05
PR_nakazu225[3]: 8.461e-05
PR_Lpty_[3]: 8.461e-05
PR_enjoy_goodjob[3]: 8.461e-05
PR_nobusi_san[3]: 8.461e-05
PR_s1ro_VG[3]: 8.461e-05
PR_NoriUverworld[3]: 8.461e-05
PR_jehanneDarc12[3]: 8.461e-05
PR_botamochi5522[3]: 8.461e-05
PR_Ranhansya_VG[3]: 8.461e-05
PR_pakkurihamaguri[3]: 8.461e-05
PR_rad2_pad[3]: 8.461e-05
PR_etrnel_yk[3]: 8.461e-05
PR_da_ri_da_ri[3]: 8.461e-05
PR_xUxUx_VG[3]: 8.461e-05
PR_AzUtMaNIA[3]: 8.461e-05
PR_vaingloryCH[3]: 8.461e-05
PR_nissyAAA_vain[3]: 8.461e-05
PR_gorillalla[3]: 8.461e-05
PR_M4SSIVE_jf[3]: 8.461e-05
PR_VaingloryJP[3]: 8.461e-05
PR_gian_gi26kasa[3]: 8.461e-05
PR_popopoffy[3]: 6.825e-05
PR_NvrSurrenderGuy[3]: 6.825e-05
PR_goriranto[3]: 6.825e-05
PR_shimuo5682[3]: 6.825e-05
PR_ITF_XX[3]: 6.825e-05
PR_soru228[3]: 7.29e-05
PR_sou__3san[3]: 8.27e-05
PR_cashfooooou[3]: 6.825e-05
PR_XCl4AGU3vPEI4KE[3]: 6.825e-05
PR__katarinaamsk[3]: 6.825e-05
PR_roilvder[3]: 8.024e-05
PR_TsukuByeBuy[3]: 8.676e-05
PR___summerhope[3]: 6.825e-05
PR_tanuki05i7[3]: 6.825e-05
PR_koshi_kun[3]: 6.825e-05
PR_4i7chan[3]: 6.825e-05
PR_1moto392[3]: 6.825e-05
PR_TC_Mr4_2018[3]: 6.825e-05
PR_shizuku888[3]: 6.825e-05
PR_siguredros[3]: 9.039e-05
PR_flyoff_gama[3]: 9.737e-05
PR_lamp8770[3]: 6.825e-05
PR_kyo_kurukuru[3]: 6.825e-05
PR_king_of_yknk[3]: 6.825e-05
PR_mtsmr[3]: 6.825e-05
PR_f_lpk[3]: 6.825e-05
PR_Pepiperia[3]: 6.825e-05
PR_minominoxxx[3]: 6.825e-05
PR_ok0me_[3]: 6.825e-05
PR_r_nyankosensei[3]: 7.764e-05
PR_public_zdk[3]: 6.825e-05
PR_shiuniya[3]: 6.825e-05
PR_SusaTaiki[3]: 6.825e-05
PR_kyo_ice_ice[3]: 6.825e-05
PR_intern_kasegu2[3]: 6.825e-05
PR_yu_O93[3]: 9.737e-05
PR_HaRu20835392[3]: 6.825e-05
PR_hamakyo_klis[3]: 6.825e-05
PR__lasurstein[3]: 6.825e-05
PR_amakubo_kuboya[3]: 6.825e-05
PR__EL_BORDE[3]: 6.825e-05
PR_amazarashi0522[3]: 6.825e-05
PR_6whbptmgo[3]: 7.764e-05
PR_Share08664151[3]: 6.825e-05
PR_hakataminamibad[3]: 6.825e-05
PR_matsurooooooooo[3]: 6.825e-05
PR_Nago_klis16[3]: 8.27e-05
PR_welt_meister_[3]: 6.825e-05
PR_LADaccel1108[3]: 8.27e-05
PR_spikersinc[3]: 6.825e-05
PR_0518_rsf[3]: 6.825e-05
PR_mag6_[3]: 6.825e-05
PR_YanKee_1201[3]: 0.0001218
PR_syake_na_babyyy[3]: 6.825e-05
PR_enpit_tsukuba[3]: 0.0001398
PR_Brains_Info_TKB[3]: 6.825e-05
PR_ut_shimbun[3]: 6.825e-05
PR_to_m0ya[3]: 7.764e-05
PR_theseaseenin[3]: 6.825e-05
PR_RAstro2[3]: 8.744e-05
PR_shisyu_gaku[3]: 0.0001218
PR_ploversTkb_2018[3]: 6.825e-05
PR_d27robo[3]: 0.0001068
PR_tkbtaiikukai[3]: 8.411e-05
PR_MasterPeace_soc[3]: 6.825e-05
PR_tsukuba_New[3]: 8.403e-05
PR_tsukubabowlings[3]: 6.825e-05
PR_Judo_DokokaiITF[3]: 7.473e-05
PR_tsukutaku18[3]: 6.825e-05
PR_fulcote[3]: 7.764e-05
PR_general_ikep[3]: 6.825e-05
PR_non_notbed[3]: 6.825e-05
PR_sakusaku_saxon[3]: 6.825e-05
PR_0402Shu[3]: 0.0001476
PR___lasurstein[3]: 7.764e-05
PR_TsukubaPlaceLab[3]: 8.411e-05
PR_0k1s4s2[3]: 7.764e-05
PR_tsukuba_3hen[3]: 7.473e-05
PR_syuwashinkan18[3]: 6.825e-05
PR_gda_jx[3]: 7.492e-05
PR__worthless_0k0[3]: 6.825e-05
PR_gama_jumper[3]: 0.0001218
PR_panda_88key[3]: 6.825e-05
PR_35yasu[3]: 6.825e-05
PR_larlarc_painter[3]: 6.825e-05
PR_68mn_1312[3]: 6.825e-05
PR_student_docter[3]: 6.825e-05
PR_bungu_seeker[3]: 6.825e-05
PR_TOWER_Ikebukuro[3]: 6.825e-05
PR_syukatunopro[3]: 6.825e-05
PR_madvel1214[3]: 6.825e-05
PR_Ningensei848[3]: 0.0001356
PR_kaito0830kk[3]: 6.825e-05
PR_yuyudora622[3]: 6.825e-05
PR_0724kaicho[3]: 6.825e-05
PR_GKlcom[3]: 6.825e-05
PR_taotao1021[3]: 6.825e-05
PR___iiiimiiii__[3]: 7.492e-05
PR_shoyu5656[3]: 0.0001391
PR_utmo_823[3]: 0.0001297
PR_LAr_LArc[3]: 6.825e-05
PR__banyura_1227[3]: 6.825e-05
PR_rah_beer[3]: 6.825e-05
PR_HarukaKlis[3]: 0.0001662
PR_mrtn252[3]: 6.825e-05
PR_jmwjmw002[3]: 6.825e-05
PR_miori_ng[3]: 6.825e-05
PR_LAMUKA88[3]: 6.825e-05
PR_f8xw2[3]: 6.825e-05
PR_galaxy000yuta[3]: 6.825e-05
PR_xapyka2[3]: 6.825e-05
PR_dena_imajun[3]: 6.825e-05
PR_amazoomiamia[3]: 6.825e-05
PR_Mtmouse777[3]: 6.825e-05
PR_amazarasi_884[3]: 6.825e-05
PR_amz_rain319[3]: 6.825e-05
PR_Chihiro63642264[3]: 6.825e-05
PR_neohimeism[3]: 6.825e-05
PR_msywtnb[3]: 6.825e-05
PR_azukid7[3]: 6.825e-05
PR_hry_x[3]: 6.825e-05
PR_okapi_traveinfo[3]: 6.825e-05
PR_tsuburatani818[3]: 6.825e-05
PR_camerahasuzuki[3]: 6.825e-05
PR_Chick_en_Ciel[3]: 6.825e-05
PR_toyoken777[3]: 6.825e-05
PR_horiten79[3]: 6.825e-05
PR_LAr_LArc_[3]: 6.825e-05
PR_tatatatataguchi[3]: 6.825e-05
PR_shophot819[3]: 6.825e-05
PR_camera_suzuki[3]: 6.825e-05
PR_H0418ruka[3]: 6.825e-05
PR_commons_chubu[3]: 6.825e-05
PR_Tsukuba_STEP[3]: 0.0001026
PR_akatsuki_cram[3]: 0.0001026
PR_take50707[3]: 0.0001026
PR_tsukuba_net[3]: 0.0001026
PR_TakeawayTsukuba[3]: 0.0001026
PR_kuttulovefish[3]: 0.0001026
PR_yst_biol[3]: 0.0001026
PR_NEWS_Tsukuba[3]: 0.0001026
PR_mo_da_me_da[3]: 0.0001026
PR_momofuji_78[3]: 0.0001026
PR_lurenji1993[3]: 0.0001026
PR_masmas_j[3]: 0.0001026
PR_OKKotaro[3]: 0.0001026
PR_mega_chamo[3]: 0.0001026
PR_motoietchika[3]: 0.0001026
PR_obbb_gt[3]: 0.0001026
PR_ocojo__ocojo[3]: 0.0001026
PR_ta9__t[3]: 0.0001026
PR_cobaltr_blue[3]: 0.0001026
PR_cryingwolf538[3]: 0.001234
PR_pocopoco1976[3]: 0.001234
PR_Honoka2492[3]: 6.351e-05
PR_oTaKu_SiDe[3]: 6.351e-05
PR_takemur34801809[3]: 6.351e-05
PR_kumisan1895[3]: 6.351e-05
PR_ftsky1[3]: 6.351e-05
PR_L0U5C1K9Y[3]: 6.351e-05
PR_sroad5[3]: 6.351e-05
PR_unata_r5[3]: 6.351e-05
PR_tooiaoiro[3]: 6.351e-05
PR_iguchyu_univ[3]: 6.351e-05
PR_ikumuki08[3]: 6.351e-05
PR_UD2Cjxuwp[3]: 6.351e-05
PR_usaebiebi[3]: 6.351e-05
PR_cinnamon_mast[3]: 6.351e-05
PR_PistaJp[3]: 6.351e-05
PR_tsukuba_japan[3]: 6.351e-05
PR_wetherin1223[3]: 6.351e-05
PR_Mayamaya_USM[3]: 6.351e-05
PR_niconeco_ITF[3]: 6.351e-05
PR_Nagoya_ITF14[3]: 7.549e-05
PR_nowork_noota[3]: 6.351e-05
PR_gamma_ITF[3]: 6.351e-05
PR_ysdysdysdhey[3]: 6.351e-05
PR_takana_imas[3]: 6.351e-05
PR_asama_azusa[3]: 6.351e-05
PR_sukesan_black[3]: 6.351e-05
PR_polaris_komeko[3]: 6.351e-05
PR_Katsu09Troll[3]: 6.351e-05
PR_He_is_Ken[3]: 6.351e-05
PR_16tea_poke[3]: 6.351e-05
PR_WTF_geo16[3]: 6.351e-05
PR_jun_jun_tw[3]: 6.351e-05
PR_Lern0ny[3]: 6.351e-05
PR_toshi_biol16[3]: 6.351e-05
PR_sosei_gocho[3]: 6.351e-05
PR_ndbntc[3]: 6.351e-05
PR_Irbsfa01[3]: 6.351e-05
PR_nosuke_gsk[3]: 6.351e-05
PR_inyong0217[3]: 6.351e-05
PR_akaoni_oka[3]: 7.01e-05
PR_vandban[3]: 6.351e-05
PR_SinAgeUseMixIN[3]: 6.351e-05
PR_konappoi_puff[3]: 6.351e-05
PR_aru0328[3]: 6.351e-05
PR_sanamilon[3]: 6.351e-05
PR_morinosuke_0307[3]: 6.351e-05
PR_armeeee1116[3]: 6.351e-05
PR_mayu_0519_[3]: 6.351e-05
PR_24neko5[3]: 6.351e-05
PR_46_ww[3]: 6.351e-05
PR_wakuwakuhiroba[3]: 6.351e-05
PR_ZGMF_218[3]: 6.351e-05
PR_Bupi2M[3]: 6.351e-05
PR_rei0519[3]: 6.351e-05
PR_Kikuta1112[3]: 6.351e-05
PR_unicurl2000[3]: 6.351e-05
PR__chiapipi[3]: 6.351e-05
PR_MiyaJiro0105[3]: 6.351e-05
PR_morinusi0110[3]: 6.351e-05
PR_Sashimi_coins16[3]: 6.351e-05
PR_0833_yu[3]: 6.351e-05
PR_chi_san_0728[3]: 6.351e-05
PR_takana_ITF[3]: 6.351e-05
PR_ikarosu713[3]: 6.351e-05
PR_tucontent[3]: 6.351e-05
PR_sits1116[3]: 6.351e-05
PR_crane_dantata[3]: 6.351e-05
PR_soko_no_hito[3]: 6.351e-05
PR_YuKI_1291[3]: 6.351e-05
PR_ibukinuts1121[3]: 6.351e-05
PR_Cyber_oct[3]: 6.351e-05
PR_krrITF15hs[3]: 6.351e-05
PR_Cosmic_Perm[3]: 6.351e-05
PR_9M2yxWjdodcCXiC[3]: 0.0003296
PR_gTUTq3YQVeVxpyA[3]: 0.0003296
PR_HateTellALie[3]: 0.0003296
PR_fjt_0815[3]: 0.0003296
PR_Sakura_365day[3]: 0.0003296
PR_news4vip2[3]: 0.0003296
PR_nodayade2[3]: 0.0003296
PR_hinaiji0618[3]: 0.0005281
PR_adati_kana_ouen[3]: 0.0003296
PR_nachi_san77[3]: 0.0003296
PR_keeeennnngo[3]: 0.001309
PR_mynamekamikaze[3]: 0.0003296
PR_batora324[3]: 0.0003296
PR_matador31415[3]: 0.0003296
PR_kengo225[3]: 0.0007281
PR_BANSHEE_NORU_02[3]: 0.0007281
PR_inuno1234[3]: 0.0008145
PR_tennis05071[3]: 0.0003296
PR_mori_shio[3]: 0.0003296
PR_jubilofeed[3]: 0.0003296
PR_2255Tintao[3]: 0.0003296
PR_hamusoku[3]: 0.0003561
PR_AtykLvtnskt[3]: 0.0003296
PR_ingobot[3]: 0.0003296
PR_kousakazyunpei[3]: 0.0003296
PR_yui10030723[3]: 0.0008644
PR_chiharu_genki[3]: 0.0008971
PR_iyoda960811[3]: 0.0008971
PR_AguileraLuv[3]: 0.0008644
PR_haluna78[3]: 7.641e-05
PR_PachoPocha[3]: 7.641e-05
PR_sengokudochuki[3]: 7.641e-05
PR_frogmonger[3]: 7.641e-05
PR_VTuber05683042[3]: 7.641e-05
PR_mashi_habu[3]: 7.641e-05
PR_lastzero2[3]: 7.641e-05
PR_francis85445595[3]: 7.641e-05
PR_raira_MK_2[3]: 7.641e-05
PR_shoujozensen_jp[3]: 7.641e-05
PR_LAEVATEIN2199[3]: 7.641e-05
PR_zebra5291[3]: 7.641e-05
PR_ermri1256[3]: 7.641e-05
PR_dqyusya[3]: 7.641e-05
PR_Moon64Splatoon[3]: 7.641e-05
PR_switch_sarasi[3]: 7.641e-05
PR_0326_magic[3]: 7.641e-05
PR_sakusaku13612[3]: 7.641e-05
PR_myon_rairakun[3]: 7.641e-05
PR_bt_illya[3]: 7.641e-05
PR_Miya_E001[3]: 7.641e-05
PR_manhnt68[3]: 7.641e-05
PR_ramushu1526[3]: 7.641e-05
PR_uso045[3]: 7.641e-05
PR_bot_Zefra[3]: 7.641e-05
PR_fgo_gudaoko[3]: 7.641e-05
PR_pine613[3]: 7.641e-05
PR_fgo_calc[3]: 7.641e-05
PR_Misaki_NHKbot[3]: 7.641e-05
PR_misaki_nhk_bot[3]: 7.641e-05
PR_rusy_pad[3]: 7.641e-05
PR_okker24[3]: 7.641e-05
PR_Ituki1340[3]: 7.641e-05
PR_as1123bb[3]: 7.641e-05
PR_Drossel_F_Bot[3]: 7.641e-05
PR_haru_kun323[3]: 7.641e-05
PR_Cowdory[3]: 7.641e-05
PR_Negi_agemasuk[3]: 7.641e-05
PR_NOeSISharuka[3]: 7.641e-05
PR_Gedachtnis_bot_[3]: 7.641e-05
PR_ShiroPro_STAFF[3]: 7.641e-05
PR_pariusa[3]: 7.641e-05
PR_MiraLikoCureUp[3]: 7.641e-05
PR_u16mh[3]: 7.641e-05
PR_makurachan_[3]: 7.641e-05
PR_usefool_party[3]: 7.641e-05
PR_PokemonXY[3]: 7.641e-05
PR_NOeSIS_bot[3]: 7.641e-05
PR_kazu00143[3]: 7.641e-05
PR_ariariari12[3]: 0.001002
PR_tigyaers[3]: 8.353e-05
PR_a_m0619[3]: 8.353e-05
PR_abc980214[3]: 0.00011
PR_myko704[3]: 0.00011
PR_chreey_12_bb[3]: 8.353e-05
PR_tomitafam_0317[3]: 8.353e-05
PR_tiku0812[3]: 0.0001162
PR_Aso___3[3]: 0.00017
PR_Yuri_I_007[3]: 8.353e-05
PR_IMA_inside[3]: 8.353e-05
PR_cherry103024[3]: 0.0002821
PR_simasho5[3]: 8.353e-05
PR_syutyan27[3]: 0.00011
PR_kuro1995_kuro[3]: 8.353e-05
PR_JoaoCou25415097[3]: 8.353e-05
PR_renesis_0008[3]: 8.353e-05
PR_14Whitejam[3]: 8.353e-05
PR_MGRRQXhAPEEnhjg[3]: 8.353e-05
PR_yamahirodash[3]: 8.353e-05
PR_ruirui3205[3]: 8.353e-05
PR_Kosai09241[3]: 8.353e-05
PR_02_m4[3]: 8.353e-05
PR_with728[3]: 8.353e-05
PR_imm_us[3]: 8.353e-05
PR_8781996ryota[3]: 8.353e-05
PR_Florist_87[3]: 8.353e-05
PR_8622Enzan[3]: 8.353e-05
PR_taira09320[3]: 0.0001162
PR_tnktkr7915[3]: 8.353e-05
PR_Ao0610Yusuke[3]: 8.353e-05
PR_ayusta171[3]: 0.0001197
PR_touch_bnn[3]: 8.353e-05
PR_3910softbank[3]: 0.0003413
PR_100yeniori[3]: 0.0004012
PR_Uzwxj3ldfcLuGKK[3]: 8.525e-05
PR_k5kxa1t[3]: 8.525e-05
PR_katsukicom[3]: 8.525e-05
PR_c173chiho[3]: 0.0001414
PR_shuurevo2018[3]: 8.525e-05
PR_jin13467[3]: 8.525e-05
PR_WATRMANJ[3]: 8.525e-05
PR_masa96509964[3]: 8.525e-05
PR_ke_i_ta05[3]: 9.736e-05
PR_kiya33bc[3]: 8.525e-05
PR_cconcat3[3]: 8.525e-05
PR_kittyneco728[3]: 0.000118
PR_0314___girl[3]: 8.525e-05
PR_taaayu1024[3]: 8.525e-05
PR_spnv_sn[3]: 0.0001414
PR_kyohei19960515[3]: 8.525e-05
PR_T27E12[3]: 0.0001414
PR_shigrace_kntm[3]: 8.525e-05
PR_aaaagw[3]: 0.0001414
PR_infrontof_nine[3]: 0.0001414
PR_e_irukai[3]: 0.0001301
PR_0726uchiyamaos2[3]: 8.525e-05
PR_arihuretaningen[3]: 0.0001414
PR_aporon0905[3]: 8.525e-05
PR_norinori_75[3]: 0.0001414
PR_O_Andy_H[3]: 8.525e-05
PR_854Hisa[3]: 0.0001207
PR_ss_R10[3]: 0.0003103
PR_ArIcE_in_chaos[3]: 0.0001301
PR_shg_ba417[3]: 9.736e-05
PR_Tyokki1084[3]: 8.525e-05
PR_8855Ya[3]: 8.525e-05
PR_KENKEN515515[3]: 8.525e-05
PR_bow_katsu[3]: 8.525e-05
PR__sss_yyy[3]: 8.525e-05
PR_risa_48v[3]: 0.0001717
PR_edukax[3]: 8.525e-05
PR_hiroya0127[3]: 0.0001321
PR_y_snoopy0409[3]: 8.525e-05
PR_1123Verb[3]: 8.525e-05
PR_MisaN_1220[3]: 0.0002259
PR_numely_29[3]: 8.525e-05
PR_a02one[3]: 0.0001293
PR_noatea[3]: 8.525e-05
PR_0227_of[3]: 8.525e-05
PR_peche_fille[3]: 8.525e-05
PR_yuya7baseball[3]: 0.0001301
PR_DevilYuya0507[3]: 0.0001207
PR_hayabuusa0523[3]: 8.525e-05
PR_tommy_0019[3]: 0.0001717
PR_katsukirainbow[3]: 0.0001534
PR_bakayuki8910[3]: 8.525e-05
PR___________cx[3]: 8.525e-05
PR_kamosaku0725[3]: 8.525e-05
PR_blossom_iyou[3]: 8.525e-05
PR_kazu_6954[3]: 0.0002279
PR_you_22122[3]: 0.0001838
PR_yarukinaiki[3]: 8.525e-05
PR_fallakb[3]: 8.525e-05
PR_68Amnos[3]: 9.736e-05
PR_rinugorou[3]: 8.525e-05
PR_BDSF_infinity[3]: 0.0002279
PR_yumaumawamauu[3]: 0.0002165
PR_paineapple1121[3]: 0.0002185
PR_ehO11PUf6A10i0m[3]: 8.525e-05
PR_baseball06131[3]: 8.525e-05
PR_KondoUsa[3]: 0.0005102
PR_schnee_ra25[3]: 9.736e-05
PR_thatkey_z[3]: 0.0001301
PR_ice_king_1013[3]: 8.525e-05
PR_Hodapolo09[3]: 8.525e-05
PR_nrm0414[3]: 0.0001087
PR_quruput_[3]: 0.0001207
PR_enj0y365[3]: 8.525e-05
PR_kiya33bcd[3]: 8.525e-05
PR_tomo123890[3]: 0.0005102
PR_moto01010[3]: 8.525e-05
PR_paypay21d[3]: 8.525e-05
PR_yuki19961016[3]: 9.736e-05
PR_supplemate_KU[3]: 8.525e-05
PR_IICHIKO_KU[3]: 8.525e-05
PR_FC_TIROL[3]: 8.525e-05
PR_itawa3sss[3]: 8.525e-05
PR_Amigoppc[3]: 8.525e-05
PR_Soya0523Vista[3]: 8.525e-05
PR_yuuuyah[3]: 0.0001414
PR_KrnkTomo[3]: 8.525e-05
PR_low_silver[3]: 0.0001086
PR_boooooooon___[3]: 0.0001352
PR_kechonrug621183[3]: 0.0001293
PR_idioteque403[3]: 8.525e-05
PR_chelsea_atsu618[3]: 9.736e-05
PR_fujisanyuusan65[3]: 0.0002512
PR_hysteRic__TCSF[3]: 0.0001087
PR_youta319[3]: 9.66e-05
PR_iwa_tsuba[3]: 0.0001301
PR_bokunoakiaki[3]: 0.0001301
PR_soccer0123atoz[3]: 8.525e-05
PR_masakibee_1031[3]: 0.0001087
PR_hayl34_7[3]: 8.525e-05
PR_HULK87477333[3]: 0.0001414
PR_fukigenmam[3]: 8.525e-05
PR_SukiyaKenta[3]: 8.525e-05
PR_gintama0317[3]: 0.0001301
PR_go_jubilo[3]: 0.0001717
PR_mteta24[3]: 8.525e-05
PR_Kit9112[3]: 0.000118
PR_chemistr182[3]: 0.0001207
PR_1221Azs[3]: 8.525e-05
PR_daik9971231[3]: 0.0002755
PR_fjt_rutru[3]: 0.000474
PR_Bot2Tomo[3]: 0.000249
PR_osukaruosukaru[3]: 0.000249
PR_takayanagiman[3]: 0.000474
PR_daik997123[3]: 0.0002755
PR_Jin115[3]: 0.0002741
PR_velln111[3]: 0.0002476
PR_eBFcz5FitQ8tdOF[3]: 0.0002476
PR_baseball_tk1113[3]: 0.0002741
PR_Shangri_la_275[3]: 0.0002476
PR_kttadg[3]: 0.0002476
PR_raven_sk0125[3]: 0.0002741
PR_uji0514[3]: 0.0003341
PR_piiiiyo1124[3]: 0.0002476
PR_kellyjon77101[3]: 0.0002741
PR_yqhRetnC3KXZpOu[3]: 0.0002476
PR_ketaso_[3]: 0.0002741
PR_tsvoxrq[3]: 0.0002476
PR_atatatataoata[3]: 0.0002741
PR_poma_ask[3]: 0.0002741
PR_magiko724[3]: 0.0002476
PR_chelsea19960816[3]: 0.0002476
PR_gBLoGbD_[3]: 0.0002741
PR_0327_soccer[3]: 0.0002476
PR_Yuji939[3]: 0.0002741
PR_yuz_126a[3]: 0.0002476
PR_daik9971232[3]: 0.0002476
PR_mcfc2116taka[3]: 0.0002741
PR_NnjaKaTaOkA[3]: 0.0003341
PR_sumairu_dx[3]: 0.0002741
PR_shunya0305[3]: 0.0002741
PR_misaki_kamii[3]: 0.0002741
PR_tim_1og[3]: 7.244e-05
PR_taihen0822[3]: 7.244e-05
PR_wjmdajmmmd[3]: 7.244e-05
PR_piropironta[3]: 8.455e-05
PR_ha_naonao[3]: 7.244e-05
PR_genekikokuritu[3]: 7.244e-05
PR_systaneng[3]: 7.244e-05
PR_ImokempiY[3]: 8.379e-05
PR_konamikan2log[3]: 7.244e-05
PR_so_u_717[3]: 0.0001823
PR_koukiaoshima051[3]: 7.244e-05
PR_narumi315961[3]: 7.244e-05
PR_kokoko648[3]: 7.244e-05
PR_STAKmorning[3]: 7.244e-05
PR_is_me313[3]: 8.455e-05
PR_0817Licht[3]: 7.244e-05
PR_ryotech0815[3]: 7.244e-05
PR_shinkai0708[3]: 7.244e-05
PR_ty_0908[3]: 7.244e-05
PR_satsumaimo01271[3]: 8.455e-05
PR_mowmow_san[3]: 7.244e-05
PR_akai_akaa[3]: 7.244e-05
PR_kusosurevipper[3]: 7.244e-05
PR_TONMOH_000[3]: 7.244e-05
PR_e_feseigry[3]: 7.244e-05
PR_5mario[3]: 7.244e-05
PR_takeshiichiro[3]: 7.244e-05
PR_misaruka_rui[3]: 7.244e-05
PR_uppualas[3]: 8.455e-05
PR_hinako_happy[3]: 7.244e-05
PR_FB77777[3]: 7.244e-05
PR_syuthii[3]: 7.244e-05
PR_terazo[3]: 7.244e-05
PR_run_low[3]: 8.455e-05
PR_kamigamesama[3]: 8.455e-05
PR_kyahhontokos09[3]: 7.244e-05
PR_0111sp[3]: 7.244e-05
PR_kagefumi1207[3]: 7.244e-05
PR_Yacci_01[3]: 7.244e-05
PR_ketupants[3]: 7.244e-05
PR_ki__ko_[3]: 7.556e-05
PR_2727urkY[3]: 7.556e-05
PR_HydeIke502[3]: 7.556e-05
PR_tsy0830[3]: 7.556e-05
PR_JLink72[3]: 7.556e-05
PR_CHI120617[3]: 7.556e-05
PR_SAKURA__THEATER[3]: 7.556e-05
PR_m0705t_XXV[3]: 7.556e-05
PR_Ofull0924[3]: 7.556e-05
PR_GsDbHob0TJk9q30[3]: 7.556e-05
PR_ss_poppin[3]: 7.556e-05
PR_iwn_r[3]: 7.556e-05
PR_1JGDFu0KmbsFCN3[3]: 7.556e-05
PR_seki_1D[3]: 7.556e-05
PR_Oneoksukida[3]: 7.556e-05
PR_k_masaki_run[3]: 7.556e-05
PR_igumi713[3]: 7.556e-05
PR_sinlabanshow111[3]: 7.556e-05
PR_853i[3]: 7.556e-05
PR_MS14A44[3]: 7.556e-05
PR_tttuki1[3]: 7.556e-05
PR_ktpt_[3]: 7.556e-05
PR_lovelemon628[3]: 7.556e-05
PR_bebobe6201[3]: 7.556e-05
PR_hurutin1[3]: 7.556e-05
PR_sumairu_ex[3]: 7.556e-05
PR_RADWIMPS_Lyric[3]: 7.556e-05
PR_sakuramomoka1[3]: 7.556e-05
PR_thmh06[3]: 7.556e-05
PR_126_tvxq[3]: 7.556e-05
PR_r32Masaki[3]: 7.556e-05
PR_1028Ryohei[3]: 7.556e-05
PR_sy_4ever[3]: 7.556e-05
PR_admwpgjt[3]: 7.556e-05
PR_199655kw[3]: 7.556e-05
PR_kisalovelemon28[3]: 7.556e-05
PR_hauhau520_sora[3]: 7.556e-05
PR_K8902[3]: 7.556e-05
PR_rea_haru[3]: 7.556e-05
PR_KkmtA[3]: 7.556e-05
PR_1104Momoka[3]: 7.556e-05
PR_toriaezuomoroi[3]: 7.556e-05
PR_ganbarouago[3]: 7.556e-05
PR_maxkeikei[3]: 7.556e-05
PR_azbycx1515[3]: 7.556e-05
PR_wataru307[3]: 7.556e-05
PR_tabletenniskeng[3]: 7.556e-05
PR_yunyun_sum[3]: 7.556e-05
PR_IshidaKyosuke[3]: 7.556e-05
PR_kenta32165[3]: 7.556e-05
PR_1104_momoka[3]: 7.556e-05
PR_Kmasaki0830[3]: 7.556e-05
PR_Minaxile0719[3]: 7.556e-05
PR_loove_cheey[3]: 7.556e-05
PR_yutommng[3]: 7.556e-05
PR_jae_euna0[3]: 7.556e-05
PR_0511wp[3]: 7.556e-05
PR_MW24k[3]: 7.556e-05
PR_koso_o[3]: 7.556e-05
PR_asopasomaso1007[3]: 7.556e-05
PR_NatsumiAraara2[3]: 7.556e-05
PR_55Shohan[3]: 7.556e-05
PR_ma_ka0621[3]: 7.556e-05
PR_shu___u__[3]: 7.556e-05
PR_090209Kzk[3]: 7.556e-05
PR_chiharu6626[3]: 7.556e-05
PR_beelsy1016[3]: 7.556e-05
PR_y0h_chan[3]: 7.556e-05
PR_azbycx5151[3]: 7.556e-05
PR_unknown_1622[3]: 7.556e-05
PR_kdtpct[3]: 7.556e-05
PR_tobi510[3]: 7.556e-05
PR_yukiaex0822[3]: 7.556e-05
PR_wamahiro0816[3]: 7.556e-05
PR_k_1996112311[3]: 7.556e-05
PR_soccerboyinryuy[3]: 7.556e-05
PR_kuma_snsd[3]: 7.556e-05
PR_arcadia_kr[3]: 7.556e-05
PR_iwn1111[3]: 7.556e-05
PR_kfnbb13[3]: 7.556e-05
PR_piro_bass_[3]: 0.0001355
PR_aoashiofficial[3]: 0.0001355
PR_yuma326776[3]: 0.0001355
PR_NhirokiBkohki[3]: 0.0001355
PR_motu3000[3]: 0.0001355
PR_hipar0130[3]: 0.0001355
PR_stk12tmr[3]: 0.0001355
PR_gziyKz3Clpz1Zvj[3]: 0.0001355
PR_kota1338r[3]: 0.0001355
PR_shibatwu2[3]: 0.0001355
PR_rsr962501[3]: 0.0001355
PR_TSimul[3]: 0.0001355
PR_A0OvGgvvJg8e48S[3]: 0.0001355
PR_kouseisan_pan[3]: 0.0001355
PR_QPh9b0HtuvyVChs[3]: 0.0001355
PR_Tjsj62wFGxARKmA[3]: 0.0001355
PR_Brown_adipocyte[3]: 0.0001355
PR_tanonaka_de[3]: 0.0001355
PR_chs14ss[3]: 0.0001355
PR_torop0814[3]: 0.0001355
PR_4ma3_541[3]: 0.0001355
PR_TukimiGirl[3]: 0.0001355
PR_kansai_oic[3]: 0.0001355
PR_pasto_ritsumei[3]: 0.0001355
PR_jima_kazu[3]: 0.0001355
PR_ritsumeikannew[3]: 0.0001355
PR_suetaku_ss[3]: 0.0001355
PR_rits_alf[3]: 0.0001355
PR_5u1To[3]: 0.0001355
PR_nagasho25310904[3]: 0.0001355
PR_Rits2018cat[3]: 0.0001355
PR_sunrise_aozora[3]: 0.0001355
PR_LjqvxVCOeUBxf3E[3]: 0.0001355
PR_matyamachaki1[3]: 0.0001355
PR_parakintoki[3]: 0.0001355
PR_sennentuki[3]: 0.0001355
PR_polar_bear0804[3]: 0.0001355
PR_YojoOz[3]: 0.0001355
PR_len_gt7[3]: 0.0001355
PR_hiro_oka0110[3]: 0.0001355
PR_macchibo0830[3]: 0.0001355
PR_risuka_movie[3]: 0.0001796
PR_5q6b3c4d[3]: 0.0001682
PR_fuunage0430[3]: 0.0001355
PR_ktr_1015[3]: 0.0001355
PR_unlimitedjoyjoy[3]: 0.0001469
PR_sugitomo081218[3]: 0.0001355
PR_miyurilov1004[3]: 0.0001682
PR_fullcow2[3]: 0.0001682
PR_hii_919[3]: 0.0001355
PR_risa___v[3]: 0.0001917
PR_asaki007[3]: 0.0001917
PR_psyuyu0313[3]: 0.0001355
PR_arkyboya[3]: 0.0001355
PR_gopiano1[3]: 0.0001355
PR_taka_gloria[3]: 0.0001355
PR_band_invisible[3]: 0.0001355
PR_NeMu___uI[3]: 0.0001355
PR_kiminoshi[3]: 0.0001355
PR_kobat4696[3]: 0.0001355
PR_ycn_mek[3]: 0.0001355
PR_kami826_ra[3]: 0.0001355
PR_soar_curry[3]: 0.0001355
PR_KamanoNc652pzj[3]: 0.0001355
PR_kurozisi0804[3]: 0.0001355
PR_Junbtc[3]: 6.118e-05
PR______08rn[3]: 0.0001052
PR_V25IANCbQNOWOCE[3]: 6.118e-05
PR_____dddo[3]: 7.253e-05
PR_keen0107[3]: 6.118e-05
PR_hgpfam77[3]: 6.118e-05
PR_tkpewnpxn[3]: 6.118e-05
PR_mitomito428[3]: 6.118e-05
PR_ginasa0528[3]: 9.389e-05
PR_bob15_s[3]: 6.118e-05
PR_Hitominmin510[3]: 6.118e-05
PR_yukitomo1997[3]: 7.253e-05
PR_pcehainuatus[3]: 0.0001052
PR_sny_luv0106[3]: 9.389e-05
PR_opr505[3]: 6.118e-05
PR_0106sMi[3]: 6.118e-05
PR_sk_raai_ma[3]: 0.0001052
PR_miller_zone31[3]: 9.389e-05
PR_shuzo_matsuoka[3]: 6.118e-05
PR_vb_higa[3]: 9.389e-05
PR_ihyoshijbmk[3]: 6.118e-05
PR_Riho0204[3]: 6.118e-05
PR_erkarin_41[3]: 6.118e-05
PR_kkkwnao[3]: 6.118e-05
PR_woodpecker1125[3]: 6.118e-05
PR_sugiyamakuu[3]: 6.118e-05
PR_ChippuMa[3]: 6.118e-05
PR_wwwibuzzz[3]: 6.118e-05
PR_tnmrrinrin711[3]: 9.389e-05
PR_yodaka14[3]: 7.253e-05
PR_IS_teacher_bot[3]: 9.389e-05
PR_alice3z[3]: 6.118e-05
PR_050212552[3]: 0.0001052
PR_HAPPYescape07[3]: 6.118e-05
PR_vbmg_1204[3]: 6.118e-05
PR_cmsir_006[3]: 9.389e-05
PR_rika02_n[3]: 0.0001052
PR_snwdn96[3]: 6.118e-05
PR_smilebuncho[3]: 6.118e-05
PR_sodegonsu[3]: 9.389e-05
PR_ku_pi_ch[3]: 6.118e-05
PR_bkkm080917[3]: 6.118e-05
PR_hjjunjun[3]: 6.118e-05
PR_Kd2tYuri[3]: 7.253e-05
PR_sak_iiina[3]: 6.118e-05
PR_mokamoka8423[3]: 6.118e-05
PR_doradora2428[3]: 6.118e-05
PR_ns_3370[3]: 0.0001052
PR_yume1325[3]: 0.0001052
PR_1213311STSM[3]: 0.0001052
PR_ttmk59[3]: 0.0001052
PR_inchara619[3]: 6.118e-05
PR_totmanx[3]: 7.253e-05
PR_izumi_1207[3]: 0.0001052
PR_yukkienaa26[3]: 0.0001052
PR_ayaaya131[3]: 6.118e-05
PR_matsu_nagashi35[3]: 6.118e-05
PR_iwatatenisu[3]: 6.118e-05
PR_0705_1996[3]: 0.0001052
PR_WomanMakes[3]: 6.118e-05
PR_ATGAMpkpm[3]: 0.0001052
PR_asaki0210[3]: 7.253e-05
PR_mer_224[3]: 6.118e-05
PR_maronagi05281[3]: 0.0001052
PR_ieyasukun100[3]: 6.118e-05
PR_nanami12742[3]: 6.118e-05
PR_jonojon_[3]: 9.389e-05
PR_KentaSukiya[3]: 6.118e-05
PR_urutorabatman[3]: 0.0001052
PR_moshimoshi0705[3]: 6.118e-05
PR_kazuma_1023[3]: 0.0001052
PR_ymrmp[3]: 6.118e-05
PR_Lulu___Lolo[3]: 0.0002217
PR_chuuni_mei[3]: 6.042e-05
PR_n_r15656968[3]: 6.042e-05
PR_LoveG2G2[3]: 6.042e-05
PR_k20206060[3]: 6.042e-05
PR_noanano11[3]: 6.042e-05
PR_coconos9668[3]: 6.042e-05
PR_manao0227[3]: 6.042e-05
PR_miku_leadlif[3]: 6.042e-05
PR_m_wasao[3]: 6.042e-05
PR_bmjeeeeaa[3]: 6.042e-05
PR_soccer1037atoz[3]: 6.042e-05
PR_44Jm0d[3]: 6.042e-05
PR_rrr_kpi[3]: 6.042e-05
PR_djtmpnj[3]: 6.042e-05
PR_dsjgkjka[3]: 6.042e-05
PR_kya144[3]: 6.042e-05
PR_0904anky[3]: 6.042e-05
PR_Hiroya8[3]: 6.042e-05
PR_TwinsH418[3]: 6.042e-05
PR_mommo1888[3]: 6.042e-05
PR_shu46nicool[3]: 6.042e-05
PR_lulu__lolo[3]: 9.313e-05
PR_abekoooooo[3]: 6.042e-05
PR_pdjpndtd[3]: 9.313e-05
PR_MotakuT[3]: 6.042e-05
PR_ns_23370[3]: 9.313e-05
PR_jhiro0627[3]: 6.042e-05
PR_monkey_as[3]: 6.042e-05
PR_0221mana[3]: 6.042e-05
PR_FlapK63[3]: 6.042e-05
PR_m_gior_shu1a[3]: 9.313e-05
PR_us_wt[3]: 6.042e-05
PR_katakuro1[3]: 6.042e-05
PR_0321_riho[3]: 6.042e-05
PR_mmmmmmmmmmmmmi2[3]: 6.042e-05
PR_0510Az[3]: 6.042e-05
PR_sumiemon_523[3]: 6.042e-05
PR_neymar1227[3]: 6.042e-05
PR_tymyhm5[3]: 6.042e-05
PR_mino8716[3]: 6.042e-05
PR_mmmsss2x89[3]: 9.313e-05
PR_krlmarch[3]: 6.042e-05
PR_xxxmagicxxx_kei[3]: 6.042e-05
PR_h64kactcg[3]: 6.042e-05
PR_RyotaMitsuoka[3]: 9.313e-05
PR_Rooney0726[3]: 6.042e-05
PR_mrynn123[3]: 6.042e-05
PR_minamibannan[3]: 9.313e-05
PR_yosiwoooago[3]: 6.042e-05
PR_kw910[3]: 9.313e-05
PR_shimo_m78[3]: 6.042e-05
PR_noanano1013[3]: 6.042e-05
PR_flute_center[3]: 6.042e-05
PR_thonmqyq[3]: 6.042e-05
PR_007_macmac[3]: 6.042e-05
PR_riiiiking[3]: 8.178e-05
PR_gokaiblue0519_0[3]: 8.178e-05
PR_xonenir_han[3]: 8.178e-05
PR_a_panda335[3]: 8.178e-05
PR_sexyboy0218[3]: 8.178e-05
PR_gokaiblue0519[3]: 8.178e-05
PR_neo_bannan[3]: 8.178e-05
PR_renxone[3]: 8.178e-05
PR_ayusta17[3]: 8.178e-05
PR_pooh_5_4[3]: 8.178e-05
PR_violl04[3]: 8.178e-05
PR_supongi_22[3]: 8.178e-05
PR_kurupas_otk[3]: 8.178e-05
PR_wimp_133[3]: 8.178e-05
PR_210blackthunder[3]: 8.178e-05
PR_nsxone[3]: 8.178e-05
PR_yukiiii_200[3]: 8.178e-05
PR_tomomoma[3]: 8.178e-05
PR_SaitouHiroto[3]: 8.178e-05
PR_tomokrinkrink[3]: 8.178e-05
PR_ditekuteve[3]: 8.178e-05
PR_yutyamu058[3]: 8.178e-05
PR_exexex11[3]: 8.178e-05
PR_eggglobe_anjuuu[3]: 8.178e-05
PR_masasy_com[3]: 8.178e-05
PR_atsuya0107[3]: 8.178e-05
PR_525Maaaakd[3]: 8.178e-05
PR_h_1676[3]: 8.178e-05
PR_misogi_fiction[3]: 8.178e-05
PR_bekotaizi[3]: 6.088e-05
PR_stshnabctk_321[3]: 6.088e-05
PR_penguinsmobile[3]: 6.088e-05
PR_junjunjun0305[3]: 6.088e-05
PR_the_air_one[3]: 6.088e-05
PR_reds3103[3]: 6.088e-05
PR_wata_games[3]: 6.088e-05
PR_ice_melonsoda[3]: 6.088e-05
PR_VCaltab[3]: 6.088e-05
PR_repairforce_jp[3]: 6.088e-05
PR_azumi_yuta[3]: 6.088e-05
PR_muuuuuuh623[3]: 6.088e-05
PR_QSNAgurvYnU3gpo[3]: 6.088e-05
PR_sacorails2[3]: 6.088e-05
PR_iyLOqgOYTf8R9EZ[3]: 6.088e-05
PR_mejiro0608[3]: 6.088e-05
PR_son12son27[3]: 6.088e-05
PR_tatsunoru[3]: 6.088e-05
PR_ykponsan[3]: 6.088e-05
PR_syukatsuyasan[3]: 6.088e-05
PR_buddyz_life[3]: 6.088e-05
PR_shu_toyama[3]: 6.088e-05
PR_Tak_Koj[3]: 6.088e-05
PR_marketingchamel[3]: 6.088e-05
PR_Ginohard_[3]: 6.088e-05
PR_MKKJapanApp[3]: 6.088e-05
PR_booichiro[3]: 6.088e-05
PR_akiratomioka[3]: 6.088e-05
PR_datanojikan[3]: 6.088e-05
PR_TorahInc[3]: 6.088e-05
PR_matsusakakazuma[3]: 6.088e-05
PR_moremorepj[3]: 6.088e-05
PR_medialib[3]: 6.088e-05
PR_pvnotora[3]: 6.088e-05
PR_tsukamako[3]: 6.088e-05
PR_TenparMegane[3]: 6.088e-05
PR_noak4[3]: 6.088e-05
PR_the_best_daily[3]: 6.088e-05
PR_4423Who[3]: 6.088e-05
PR_SpRkBA5iO2GDLQ5[3]: 6.088e-05
PR_kochankochan5[3]: 6.088e-05
PR_ohtasoji[3]: 6.088e-05
PR_Cz_mirror[3]: 6.088e-05
PR_onumaru_suisan[3]: 6.088e-05
PR_hiromu_bdy[3]: 6.088e-05
PR_Lamy57177857[3]: 6.088e-05
PR_mochamaking[3]: 6.088e-05
PR_rm00061[3]: 6.088e-05
PR_Harus0313[3]: 6.876e-05
PR_Markuppers[3]: 6.088e-05
PR_pansound_info[3]: 6.088e-05
PR_masakana39[3]: 6.088e-05
PR_NRQRsEYghXFtkbh[3]: 6.088e-05
PR_metahiroblog[3]: 6.088e-05
PR_gaku_pizzzzza[3]: 6.088e-05
PR_KonoK2018[3]: 6.088e-05
PR_air1p1[3]: 6.088e-05
PR_gentome1[3]: 6.088e-05
PR_tnk_ojm[3]: 6.088e-05
PR_netde1000[3]: 6.088e-05
PR_1derukui[3]: 6.088e-05
PR_miyazaw37810253[3]: 6.088e-05
PR_plumsa[3]: 6.088e-05
PR_oooosmilek[3]: 6.088e-05
PR_manpukunews[3]: 6.088e-05
PR_KoyanagiHitoshi[3]: 6.088e-05
PR_yuriyuri1477[3]: 6.088e-05
PR_mc_kurita[3]: 6.088e-05
PR_ekkyoec_ecchan[3]: 6.088e-05
PR_mori_kumao[3]: 6.088e-05
PR_ReiLeiLei1025[3]: 6.088e-05
PR_jami_1182[3]: 6.088e-05
PR_miki_4400[3]: 6.691e-05
PR_poyopoyo010[3]: 6.691e-05
PR_7nPBaYrjr7NE0Y4[3]: 6.691e-05
PR_webyaruo[3]: 6.691e-05
PR_mdySAVfC5tVfvMg[3]: 6.691e-05
PR_SacredLipton[3]: 6.691e-05
PR_vivisuke[3]: 6.691e-05
PR_imajin8280[3]: 6.691e-05
PR_nenpass_tdl[3]: 6.691e-05
PR_WabisabiApp[3]: 6.691e-05
PR_suin[3]: 6.691e-05
PR_takichi_program[3]: 6.691e-05
PR__kamykn_[3]: 6.691e-05
PR_techlessninja[3]: 6.691e-05
PR_iTakac[3]: 6.691e-05
PR_modulus_omega[3]: 6.691e-05
PR_ossan_engineer[3]: 6.691e-05
PR_remylii[3]: 6.691e-05
PR_YaruZone[3]: 6.691e-05
PR_John_bardera[3]: 6.691e-05
PR_ippei_omusubi[3]: 6.691e-05
PR_chirolist[3]: 6.691e-05
PR_horima76[3]: 6.691e-05
PR_maxmellon_9039[3]: 6.691e-05
PR_morihaya55[3]: 6.691e-05
PR_MasatoEgami[3]: 6.691e-05
PR_tamapppe[3]: 0.0001544
PR_HousouP[3]: 6.691e-05
PR_doberankei[3]: 6.691e-05
PR_hirosphere[3]: 6.691e-05
PR_harmelia_hounds[3]: 6.691e-05
PR_alkn203[3]: 6.691e-05
PR_kadoppe[3]: 6.691e-05
PR_tan3_sugarless[3]: 6.691e-05
PR_MHTcode_chibird[3]: 6.691e-05
PR_Two_Hand_[3]: 6.691e-05
PR_tanamako327[3]: 6.691e-05
PR_e2kaneko[3]: 6.691e-05
PR_waiki09620535[3]: 6.691e-05
PR_rigani_c[3]: 6.691e-05
PR_markfour[3]: 6.691e-05
PR_shonari123[3]: 6.691e-05
PR_henriquebremen[3]: 6.691e-05
PR_artisbullshit[3]: 6.691e-05
PR_Ethantebest[3]: 6.691e-05
PR_katoon_mr[3]: 6.691e-05
PR_YtYmmt[3]: 6.691e-05
PR_Kxj8MP73Wq7Mmv8[3]: 5.74e-05
PR_TamuraSP[3]: 5.74e-05
PR_WorldofEther[3]: 5.74e-05
PR_kupora846[3]: 5.74e-05
PR_kupora592[3]: 5.74e-05
PR_ocrybit[3]: 5.74e-05
PR_bit_flow[3]: 5.74e-05
PR_TruwhoCoin[3]: 5.74e-05
PR_BYTUSTOKEN[3]: 5.74e-05
PR_toranoana_lab[3]: 5.74e-05
PR_FinanceAugur[3]: 5.74e-05
PR_MichikusaCrypto[3]: 5.74e-05
PR_minicoohei[3]: 5.74e-05
PR_KRuvenia[3]: 5.74e-05
PR_nyaasu2597[3]: 5.74e-05
PR_rugepiyo[3]: 5.74e-05
PR_FXtradenote[3]: 5.74e-05
PR_eosbetjapan[3]: 5.74e-05
PR_cgfyuh[3]: 5.74e-05
PR_yukio_bcostaker[3]: 5.74e-05
PR_karasu0666[3]: 5.74e-05
PR_BCGameInfo[3]: 5.74e-05
PR_angleeeeer[3]: 5.74e-05
PR_dapps_girl[3]: 5.74e-05
PR_AuudnnF[3]: 5.74e-05
PR_life1590[3]: 5.74e-05
PR_RealJohnDough[3]: 5.74e-05
PR_udelvra_wallace[3]: 5.74e-05
PR_TOSHIYA_0817[3]: 5.74e-05
PR_Zackie717[3]: 5.74e-05
PR_MsMiura[3]: 5.74e-05
PR_EmHu5EodiCPXTM9[3]: 5.74e-05
PR_heytaxiboooooon[3]: 5.74e-05
PR_cryptojinsei[3]: 5.74e-05
PR_yoimonoyoimono[3]: 5.74e-05
PR_FukutyS[3]: 5.74e-05
PR_Bchainews[3]: 5.74e-05
PR_xemenist[3]: 5.74e-05
PR_CryptocoinBank[3]: 5.74e-05
PR_MHTcode_oikapi[3]: 5.74e-05
PR_Economies20[3]: 5.74e-05
PR_kyotomachiaruki[3]: 5.74e-05
PR_hanamoto7839[3]: 5.74e-05
PR_hitoshikaki[3]: 5.74e-05
PR_himerooms[3]: 5.74e-05
PR_crypto_curren[3]: 5.74e-05
PR_jaian1098[3]: 5.74e-05
PR_2fprFt5rcPwcL5P[3]: 5.74e-05
PR_HikariBoshi123[3]: 5.74e-05
PR_otomo_cgirls[3]: 5.74e-05
PR_bitcoinvestor[3]: 5.74e-05
PR_yureii6961[3]: 5.74e-05
PR_FREECELL_01[3]: 5.74e-05
PR_sweetspider0121[3]: 5.74e-05
PR_fomolovejp[3]: 5.74e-05
PR_sasakisan31[3]: 5.74e-05
PR_tomo_maimai[3]: 5.74e-05
PR_hig0x[3]: 5.74e-05
PR_GsKudo[3]: 5.74e-05
PR_kasou46244672[3]: 5.74e-05
PR_keyplayers[3]: 5.74e-05
PR_AxieInfinity[3]: 5.74e-05
PR__coin_otaku_[3]: 5.74e-05
PR_enakko_net[3]: 5.74e-05
PR_meiem326[3]: 5.74e-05
PR_bit_000_bit[3]: 5.74e-05
PR_MGM2kasa[3]: 5.74e-05
PR_cannavinothc[3]: 5.74e-05
PR_Michelle724829[3]: 5.74e-05
PR_Marcury0929[3]: 5.74e-05
PR_ash6859[3]: 5.74e-05
PR_niko_1208_205[3]: 5.74e-05
PR_kasotulog[3]: 5.74e-05
PR_topethereumtips[3]: 5.74e-05
PR_epd_scientist[3]: 5.74e-05
PR_KAGIYA1000B[3]: 5.74e-05
PR_lipton_milk999[3]: 5.74e-05
PR_hall618_hall[3]: 5.74e-05
PR_VOLCANO_NANJ[3]: 5.74e-05
PR_deoAui8EeDoIEfB[3]: 5.74e-05
PR_cc_torimodosu[3]: 5.74e-05
PR_qryption[3]: 5.74e-05
PR_Keiki_XRP[3]: 5.74e-05
PR_AIZEN_XAZ[3]: 5.74e-05
PR_Pump_Shite[3]: 5.74e-05
PR_CryptoKangarooz[3]: 5.74e-05
PR_VIP87837560[3]: 5.74e-05
PR_showying_art[3]: 5.74e-05
PR_VIP19303116[3]: 5.74e-05
PR_hajitaro7[3]: 5.74e-05
PR_otominet[3]: 5.74e-05
PR_yui_ripple1985[3]: 5.74e-05
PR_QknRIcsQTxxeIdN[3]: 5.74e-05
PR_rshzmxvfszng[3]: 5.74e-05
PR_misters56[3]: 5.74e-05
PR_Coinge_[3]: 5.74e-05
PR_Zeni_Navi[3]: 5.74e-05
PR_RIKA66301969[3]: 5.74e-05
PR_akagami_lounge[3]: 5.74e-05
PR_Huuuumi2[3]: 5.74e-05
PR_Wealthy_jp[3]: 5.74e-05
PR_kabukabu358[3]: 5.74e-05
PR_makim58163222[3]: 5.74e-05
PR_MarvinNewsJP[3]: 8.27e-05
PR_polleninjp[3]: 8.27e-05
PR_crowtitor[3]: 8.27e-05
PR_MLBear2[3]: 8.27e-05
PR_monsaraida[3]: 8.27e-05
PR_ak11[3]: 8.27e-05
PR_acertainakaunt[3]: 8.27e-05
PR_maybe7756[3]: 8.27e-05
PR_yaaaaadane[3]: 8.27e-05
PR_PyTorchPractice[3]: 8.27e-05
PR_pixel_socrates[3]: 8.27e-05
PR_misopisothepug[3]: 8.27e-05
PR_becon6150[3]: 8.27e-05
PR_saracco93402240[3]: 8.27e-05
PR_tmsk8219[3]: 8.27e-05
PR_kizuki[3]: 8.27e-05
PR_megiponpon[3]: 8.27e-05
PR_00_[3]: 8.27e-05
PR_pondelion1783[3]: 8.27e-05
PR_pisokonbu[3]: 8.84e-05
PR_mamas16k[3]: 8.27e-05
PR_gdyvcjkixvv[3]: 8.27e-05
PR_p_q_rain[3]: 8.27e-05
PR_brsp19[3]: 6.808e-05
PR_x_taitai[3]: 6.808e-05
PR_amanon9981[3]: 6.808e-05
PR_WggDo[3]: 6.808e-05
PR_Misawa_0907_[3]: 6.808e-05
PR_mask_mini[3]: 6.808e-05
PR_ITF_drumath223[3]: 6.808e-05
PR_shake_info_nx[3]: 6.808e-05
PR_ITF_szk[3]: 6.808e-05
PR_ITF_tako[3]: 6.808e-05
PR_alpha_kai_UNIV[3]: 6.808e-05
PR_usulity[3]: 6.808e-05
PR____hiko[3]: 0.0001516
PR_katoyu_maker[3]: 6.808e-05
PR_p83281036[3]: 6.808e-05
PR_ITF_mast18Bass[3]: 6.808e-05
PR_bluemarumaru[3]: 6.808e-05
PR_kuchi_yellow[3]: 6.808e-05
PR_sankonotokei[3]: 6.808e-05
PR_melonpa_nice[3]: 6.808e-05
PR_TOnakai_nakai[3]: 6.808e-05
PR_soji_univ[3]: 6.808e-05
PR_chiraura_tkb[3]: 6.808e-05
PR_eagleutkk[3]: 6.808e-05
PR_wisteria_tk0x0F[3]: 6.808e-05
PR_uk_osy[3]: 7.837e-05
PR_ITF_sudame[3]: 6.808e-05
PR__n017[3]: 6.808e-05
PR_nacopaguu[3]: 6.808e-05
PR_Acid1012[3]: 6.808e-05
PR_kaaigame[3]: 6.808e-05
PR_shuma1115[3]: 6.808e-05
PR_kossi_klis[3]: 6.808e-05
PR_shumaII15[3]: 6.808e-05
PR_ITF_detactiveP[3]: 8.011e-05
PR_samansatabasa_[3]: 6.808e-05
PR_ITF_katoyu[3]: 7.273e-05
PR_ITF_QSYS[3]: 6.808e-05
PR_wraikny[3]: 6.808e-05
PR_segara_rai[3]: 6.808e-05
PR_iciclize[3]: 6.808e-05
PR_zerotuku0[3]: 6.808e-05
PR_Muskuarede[3]: 6.808e-05
PR_webdesignfacts[3]: 5.695e-05
PR_AI_Academy_JP[3]: 5.695e-05
PR_nanaign[3]: 5.695e-05
PR_TKeduR[3]: 5.695e-05
PR_myazzy0[3]: 5.695e-05
PR_ryokkm[3]: 5.695e-05
PR_baboocon[3]: 5.695e-05
PR_jyouj__[3]: 5.695e-05
PR_gomagaru[3]: 5.695e-05
PR_EisKern[3]: 5.695e-05
PR_ajonpcom[3]: 5.695e-05
PR_the8_Ocho[3]: 5.695e-05
PR_AYYZArTarObevgA[3]: 5.695e-05
PR_joetheace107[3]: 5.695e-05
PR_H1r0yuk188231[3]: 5.695e-05
PR_wolfSSL_Japan[3]: 5.695e-05
PR_ottanxyz[3]: 5.695e-05
PR_sugiken_bike[3]: 5.695e-05
PR_mira_gfx[3]: 5.695e-05
PR_HandsNyaa[3]: 5.695e-05
PR_meganii[3]: 5.695e-05
PR_Y20010920T[3]: 5.695e-05
PR_qEB5AqAGrGbTwJJ[3]: 5.695e-05
PR_SolistWork[3]: 5.695e-05
PR_t4traw[3]: 5.695e-05
PR_takacpu55[3]: 5.695e-05
PR_bigdatanavi[3]: 5.695e-05
PR_MIN0124_[3]: 5.695e-05
PR_3ks9QEj89HRvz3U[3]: 5.695e-05
PR_tetymd[3]: 5.695e-05
PR_kamiteku557[3]: 5.695e-05
PR_qrunch[3]: 5.695e-05
PR__mrbaron3[3]: 5.695e-05
PR_BQCb3KUENHnxTog[3]: 5.695e-05
PR_k_aik_ou[3]: 5.695e-05
PR_zyunnosuke[3]: 5.695e-05
PR_knz2g[3]: 5.695e-05
PR_koheiSG[3]: 5.695e-05
PR_masakiMatsumoto[3]: 5.695e-05
PR_MotoyasuYamada[3]: 5.695e-05
PR_ampersand_xyz[3]: 5.695e-05
PR_kuronekopunk[3]: 5.695e-05
PR_sleepless_se[3]: 5.695e-05
PR_Y0YFF[3]: 5.695e-05
PR_muuuuuuuuuu7[3]: 5.695e-05
PR_Fujiyama_Yuta[3]: 5.695e-05
PR_a_know[3]: 5.695e-05
PR_usu_blog[3]: 5.695e-05
PR_ceisu1975[3]: 5.695e-05
PR_HirokiShimanaka[3]: 5.695e-05
PR_it_fitness_jp[3]: 5.695e-05
PR_kamishibusan[3]: 5.695e-05
PR_morix1500[3]: 5.695e-05
PR_PycysA[3]: 5.695e-05
PR_OinarisannSuki[3]: 5.695e-05
PR_f_naoto832[3]: 5.695e-05
PR___shinji__[3]: 5.695e-05
PR_ai_news_jp[3]: 5.695e-05
PR_if_004[3]: 5.695e-05
PR_tech_study_prog[3]: 5.695e-05
PR_kobayashi_tech[3]: 5.695e-05
PR_nul1_P[3]: 5.695e-05
PR_ryohtarot[3]: 5.695e-05
PR_sigkichi[3]: 5.695e-05
PR_BizReachTech[3]: 5.695e-05
PR_taka_shift[3]: 5.695e-05
PR_bj1024[3]: 5.695e-05
PR_3s_hv[3]: 5.695e-05
PR__ikiteiru[3]: 5.695e-05
PR_Estelle080792[3]: 5.695e-05
PR_piris314en[3]: 5.695e-05
PR____nyan[3]: 5.695e-05
PR_suquiya[3]: 5.695e-05
PR_AnytimesSano[3]: 5.695e-05
PR_WUvCEzLtdGqdpEW[3]: 5.695e-05
PR_sola_io[3]: 5.695e-05
PR_iju_miho[3]: 5.695e-05
PR_huslc2es[3]: 5.695e-05
PR_rubys8arks[3]: 5.695e-05
PR_ysk_pro[3]: 5.695e-05
PR_loopshoot[3]: 5.695e-05
PR_mi_putra06[3]: 5.695e-05
PR_citylight_tsuna[3]: 5.695e-05
PR_KoretteQuiz[3]: 5.695e-05
PR_conao_3[3]: 5.695e-05
PR_retoruto_carry[3]: 5.695e-05
PR_yasushi_app[3]: 5.695e-05
PR_YO37377306[3]: 5.695e-05
PR_miyauchoi[3]: 5.695e-05
PR_hatch2[3]: 5.695e-05
PR_domikoapp[3]: 5.695e-05
PR_Zzz_shuu[3]: 5.695e-05
PR_Yutti_Onioni[3]: 5.695e-05
PR_Qooh0[3]: 5.695e-05
PR__amioima_[3]: 5.695e-05
PR_kame_f_no7[3]: 5.695e-05
PR_furuta_app[3]: 5.695e-05
PR_matsudotsuyoshi[3]: 5.695e-05
PR_mogya[3]: 5.695e-05
PR_dala00[3]: 5.695e-05
PR_Neko_Inu_[3]: 5.695e-05
PR_tokibito[3]: 5.695e-05
PR_soheio0915[3]: 5.695e-05
PR_DL_Hacks[3]: 5.695e-05
PR_kis[3]: 5.695e-05
PR_CSatisfait[3]: 5.695e-05
PR_groupfoolish[3]: 5.695e-05
PR_kk546_K1[3]: 0.0001365
PR_geekbrew_[3]: 0.0001365
PR_ITxh332s9e5UOFL[3]: 0.0001365
PR_kuromailserver[3]: 0.0001365
PR_hayate_sakurai[3]: 0.0001365
PR_biz_it_books[3]: 0.0001365
PR_shN6PMhW8[3]: 0.0001365
PR_d2QDhQi9KtOS5Nc[3]: 0.0001365
PR_andykido3[3]: 0.0001365
PR_kagaku_book[3]: 0.0001219
PR_StudioOusia[3]: 0.0001219
PR_aia_community[3]: 0.0001219
PR_TOPIQOS_NEWS[3]: 0.0001219
PR_Ishitonton[3]: 0.0001219
PR_siyaqq[3]: 0.0001219
PR_unpuy_tw[3]: 0.0001219
PR_kanga333[3]: 0.0001219
PR_mattsu6666[3]: 0.0001219
PR_ostensibletaken[3]: 0.0001206
PR_osca_staff[3]: 0.0001206
PR_seinto326[3]: 0.0001206
PR_O_HAL_[3]: 0.0001206
PR_g_mebuildplus[3]: 0.0001326
PR_kirua515[3]: 0.0001206
PR_katsuyanpasaran[3]: 0.0001326
PR_LeoZheng140664[3]: 0.000174
PR_sorenli1[3]: 0.000174
PR_Helena_Zhou[3]: 0.000174
PR_kaemclaugh8gk[3]: 0.000174
PR_NewYorkUse178[3]: 0.000174
PR_A_Iconwhee2211[3]: 0.000174
PR_Rize1155[3]: 9.279e-05
PR_railgun3510_va[3]: 9.279e-05
PR_shorn_vain[3]: 9.279e-05
PR_QiuqiuVG[3]: 9.279e-05
PR_vainglo45896674[3]: 9.279e-05
PR_vainglorysecret[3]: 9.279e-05
PR_TOKfafa[3]: 9.279e-05
PR_nekogami09[3]: 9.279e-05
PR_uni924[3]: 9.279e-05
PR_kouki_vainglory[3]: 9.279e-05
PR_LoL_syo[3]: 9.279e-05
PR_STR__1125[3]: 0.0001802
PR_Vainglorykenken[3]: 9.279e-05
PR_Vainglo00860517[3]: 9.279e-05
PR_xKiRiNoFortnite[3]: 9.279e-05
PR_Aruti_vain[3]: 9.279e-05
PR_Arineco1234[3]: 9.279e-05
PR_info82369211732[3]: 9.279e-05
PR_pandamoJP[3]: 0.0001365
PR_mimiquf[3]: 0.0001365
PR_NaturedOwl[3]: 0.0001365
PR_DouxGangster[3]: 0.0001365
PR_milkydrift[3]: 0.0001365
PR_AUTOMATONJapan[3]: 0.0001365
PR_gamemaster_d[3]: 0.0001365
PR_GoRelax_net[3]: 0.0001365
PR_AkibiGrad[3]: 8.859e-05
PR_adss28220318[3]: 8.859e-05
PR_asukaa070142[3]: 8.859e-05
PR_rein080840[3]: 8.859e-05
PR_potatomaster57[3]: 8.859e-05
PR_Takuya_suGAGA[3]: 8.859e-05
PR_cqvct_2[3]: 8.859e-05
PR_kuromisuku[3]: 8.859e-05
PR_M0jibabu[3]: 8.859e-05
PR_ARIA_afoc[3]: 8.859e-05
PR_haikushou25[3]: 8.859e-05
PR_sinnpoko[3]: 8.859e-05
PR_ta93_t[3]: 8.859e-05
PR_neatmankun[3]: 8.859e-05
PR_degisam[3]: 0.0006024
PR_KXawfo[3]: 0.0001105
PR_yuna048691219[3]: 0.0001199
PR_mia_shibao[3]: 0.0001105
PR_sijin_chromato[3]: 7.12e-05
PR_amazarashi127[3]: 7.12e-05
PR_hanabi_amz[3]: 7.12e-05
PR_barunabasu_amz[3]: 7.12e-05
PR_Lie_1020[3]: 7.12e-05
PR_amz11hiro[3]: 7.12e-05
PR_bs_0910[3]: 7.12e-05
PR_oh_mame_b[3]: 7.12e-05
PR_shirazarashi530[3]: 7.12e-05
PR_nner_1223[3]: 7.12e-05
PR_sykstr46amz[3]: 7.12e-05
PR_prioz_boc_amz[3]: 7.12e-05
PR_masayoshi_0225[3]: 7.12e-05
PR_amazarashiyyyy[3]: 7.12e-05
PR_Sakura_Polaris_[3]: 7.12e-05
PR_Saku_xpsr[3]: 7.12e-05
PR_i46112[3]: 7.12e-05
PR_wein_ky[3]: 7.12e-05
PR_sa_hanabi[3]: 7.12e-05
PR_amazarashi_2116[3]: 7.12e-05
PR_sylphia[3]: 7.12e-05
PR_amazarashi_kr[3]: 7.12e-05
PR_o0tanuki0o[3]: 7.12e-05
PR_ennui_economics[3]: 5.477e-05
PR_nana_no_papa[3]: 5.477e-05
PR_3XSAKsKEMLGL[3]: 5.477e-05
PR_nobv13[3]: 5.477e-05
PR_dai5matsubara[3]: 5.477e-05
PR_tikakamakiri88[3]: 5.477e-05
PR_msmt9[3]: 5.477e-05
PR_cow_26[3]: 5.477e-05
PR_kanshi45[3]: 5.477e-05
PR_yasushiasako[3]: 5.477e-05
PR_yGnlFs8ZWrWgm5u[3]: 5.477e-05
PR_eco52687264[3]: 5.477e-05
PR_truthseekerjrn[3]: 5.477e-05
PR_naokiariga[3]: 5.477e-05
PR_TNFKZ8[3]: 5.477e-05
PR_acidjazzfreak[3]: 5.477e-05
PR_SenseOfLiving[3]: 5.477e-05
PR_masanorimatsura[3]: 5.477e-05
PR_0qbN81o8VCv9dXA[3]: 5.477e-05
PR_Uno27132751[3]: 5.477e-05
PR_takechan8472[3]: 5.477e-05
PR_iyananndemonai[3]: 5.477e-05
PR_arahama_arachi[3]: 5.477e-05
PR_atsumuriot[3]: 5.477e-05
PR_yach_conpey[3]: 5.477e-05
PR_tkm_hdk[3]: 5.477e-05
PR_NjG0hWXEP3mzq4u[3]: 5.477e-05
PR_hokudaisumo[3]: 5.477e-05
PR_hazimec[3]: 5.477e-05
PR_FujitaHiroki[3]: 5.477e-05
PR_Masa97658991[3]: 5.477e-05
PR_kawashima7777[3]: 5.477e-05
PR_zononensis[3]: 5.477e-05
PR_UTEA_Official[3]: 5.477e-05
PR_himagegine[3]: 5.477e-05
PR_Econ_Nume[3]: 5.477e-05
PR_zakidai[3]: 5.477e-05
PR_omiya_ayimo[3]: 5.477e-05
PR_sindai_sumou[3]: 5.477e-05
PR_bck2econ[3]: 5.477e-05
PR_H1KYbWZGMKjdxEE[3]: 5.477e-05
PR_OrangeStarHS[3]: 5.477e-05
PR_ghngssm[3]: 5.477e-05
PR_y_uchida_soccer[3]: 5.477e-05
PR_log5dt[3]: 5.477e-05
PR_econtanaka_jp[3]: 5.477e-05
PR_2016kyotouniv3[3]: 5.477e-05
PR_Alalalalaki[3]: 5.477e-05
PR_IKazuki777[3]: 5.477e-05
PR_huiminliu4[3]: 5.477e-05
PR_kaoru_vitou[3]: 5.477e-05
PR_aqu_arium7[3]: 5.477e-05
PR_yaonacs[3]: 5.477e-05
PR_homare_tf0502[3]: 5.477e-05
PR_nozomiriv[3]: 5.477e-05
PR_Shingen2018[3]: 5.477e-05
PR_ARMApq[3]: 5.477e-05
PR_Econ61957991[3]: 5.477e-05
PR_maseguchi[3]: 5.477e-05
PR_supippo[3]: 5.477e-05
PR_unaforesta[3]: 5.477e-05
PR_sakamobi[3]: 5.477e-05
PR_lungta_lungta[3]: 5.477e-05
PR_Yolokot[3]: 5.477e-05
PR_imaeda_soichiro[3]: 5.477e-05
PR_aki640101[3]: 5.477e-05
PR_YuzoDrum[3]: 5.477e-05
PR_hunanli2001[3]: 5.477e-05
PR_TakanaoT[3]: 5.477e-05
PR_shigeo_morita[3]: 5.477e-05
PR_Satoshi_K_Shako[3]: 5.477e-05
PR_Tsuney[3]: 5.477e-05
PR_HaruakiHirota[3]: 5.477e-05
PR_cloudlatex[3]: 5.477e-05
PR_izumit[3]: 5.477e-05
PR_yuhikaku_nibu[3]: 5.477e-05
PR_KanameMiyagi[3]: 5.477e-05
PR_oqang15240[3]: 5.477e-05
PR_JNP48000[3]: 5.477e-05
PR_shuichi_tsugawa[3]: 5.477e-05
PR_tmytjk[3]: 5.477e-05
PR_ryusukeshinoha1[3]: 5.477e-05
PR_hirokiarato[3]: 5.477e-05
PR_terunagon[3]: 5.477e-05
PR_really517[3]: 5.477e-05
PR_MrTeruMiyamoto[3]: 5.477e-05
PR_mshr_hsmt[3]: 5.477e-05
PR_j_knows_it[3]: 5.477e-05
PR_ryoo0418[3]: 5.477e-05
PR_yousukeutsumi[3]: 5.477e-05
PR_tomookada[3]: 5.477e-05
PR_xyzennyo[3]: 5.477e-05
PR_tubu44[3]: 5.477e-05
PR_AICHIakaMISO[3]: 5.477e-05
PR_nu_sumo[3]: 5.477e-05
PR_CQwQEvPBElNju2q[3]: 9.517e-05
PR_MX9GbrTgM3ud[3]: 9.517e-05
PR_norvel3521[3]: 9.517e-05
PR_shindomichan01[3]: 9.517e-05
PR_ePLeEPumK81SqKm[3]: 9.517e-05
PR_ichiipsy[3]: 9.517e-05
PR_ShirasuiSou[3]: 9.517e-05
PR_4A3Ga1GvJVGWVgy[3]: 9.517e-05
PR_l4ramen[3]: 9.517e-05
PR_hcinv12[3]: 9.517e-05
PR_asukaQT[3]: 9.517e-05
PR_nanaha_redstar[3]: 7.819e-05
PR_Karinka_tsukuba[3]: 7.819e-05
PR_magipoka_S94[3]: 7.819e-05
PR_Cr3jfFWmv1iAxlY[3]: 7.819e-05
PR_yoritumtumtum[3]: 7.819e-05
PR_Cvadogsan[3]: 8.466e-05
PR_aRi_hray[3]: 7.819e-05
PR_summr610[3]: 7.819e-05
PR_commando1999[3]: 7.819e-05
PR_red___Panda0821[3]: 5.565e-05
PR_aaaaaya0512[3]: 5.565e-05
PR_Kimu_cha_014[3]: 7.234e-05
PR_tp_zqn[3]: 5.565e-05
PR_kaitani99uni[3]: 5.565e-05
PR_tUoT_YTakano[3]: 5.565e-05
PR_stone_tukutuku[3]: 6.595e-05
PR_Mayu64292216[3]: 5.565e-05
PR_naoki1522[3]: 5.565e-05
PR_YakitoriMaster1[3]: 6.204e-05
PR_ClinicIce[3]: 6.13e-05
PR_age_pasta_kun[3]: 5.565e-05
PR_VnNCjYvlv9S5esT[3]: 5.565e-05
PR_kazu18n[3]: 5.565e-05
PR_esys18_2[3]: 7.702e-05
PR_pdyFDcq7vY3BCfA[3]: 5.565e-05
PR_nenechinosita[3]: 6.669e-05
PR_hinanam7[3]: 5.565e-05
PR_y0u0u7[3]: 5.565e-05
PR_OCFJQ78yd50U2CR[3]: 5.565e-05
PR_dupleix641[3]: 6.213e-05
PR_campioncm[3]: 7.055e-05
PR_87vDx[3]: 7.52e-05
PR_Kan_chance[3]: 6.03e-05
PR_horii_tatsuki[3]: 7.234e-05
PR_rosetter07[3]: 5.565e-05
PR_yutaa1106[3]: 5.565e-05
PR_3_3e_ea_a[3]: 6.03e-05
PR_VNuDOmQJPme5upL[3]: 6.981e-05
PR_ritdtp[3]: 5.565e-05
PR_kei91090786[3]: 6.13e-05
PR_tenjinganjin2[3]: 5.565e-05
PR_Ling_tt1021[3]: 6.669e-05
PR_sohosai[3]: 6.417e-05
PR_kYsou1[3]: 5.565e-05
PR_the01007[3]: 5.565e-05
PR_amichan_415[3]: 6.851e-05
PR_gs_brook[3]: 5.565e-05
PR_taketo1710[3]: 6.669e-05
PR_tedxutsukuba[3]: 6.213e-05
PR_Sugi_cedar_39[3]: 6.669e-05
PR_takumi3m[3]: 5.565e-05
PR_pamplemousse358[3]: 5.565e-05
PR_O5j9x6YAElPi2b4[3]: 6.204e-05
PR_kirakiragigi[3]: 6.204e-05
PR_EstoConAquello_[3]: 5.565e-05
PR_mg_hi_bg_0966[3]: 5.565e-05
PR_teho_ta_tann[3]: 5.565e-05
PR_kira22361[3]: 6.03e-05
PR_ryouvabo[3]: 5.565e-05
PR_ai__kuma[3]: 5.565e-05
PR__Funa97[3]: 5.565e-05
PR_wajac_migyori[3]: 5.565e-05
PR_njyakorede[3]: 5.565e-05
PR_Marina51purple[3]: 6.13e-05
PR_naoi_y_itf1117[3]: 5.565e-05
PR_aya___aiueo[3]: 6.595e-05
PR_tkb_konchiwa[3]: 5.565e-05
PR_miku_t_1120[3]: 5.565e-05
PR_shiara_dmsd[3]: 5.565e-05
PR_hinya_222[3]: 5.565e-05
PR_demontamio1130[3]: 6.204e-05
PR_taitataisei[3]: 5.565e-05
PR_take_ITF[3]: 8.732e-05
PR_1879314Albert[3]: 5.565e-05
PR_demontamio[3]: 8.732e-05
PR_kousuke_yabuno[3]: 6.417e-05
PR_wwk_ix0zi[3]: 6.204e-05
PR_hariemi_1005[3]: 5.565e-05
PR_sonoyuuuu[3]: 5.565e-05
PR_kanakanadora05[3]: 6.03e-05
PR_toshiaki07013[3]: 5.565e-05
PR_htc_ender[3]: 8.167e-05
PR_hiiro_onoda[3]: 5.565e-05
PR_risako_pnap[3]: 5.565e-05
PR_MYblueeemooooon[3]: 5.565e-05
PR_musuuun[3]: 5.565e-05
PR_stoneriver00[3]: 6.595e-05
PR_ON_yukko[3]: 5.565e-05
PR_sayaka0920_yztn[3]: 5.565e-05
PR_8vaKY49IvDKhCA4[3]: 5.565e-05
PR_voneok[3]: 5.565e-05
PR_shntt207[3]: 8.167e-05
PR_eseboat[3]: 6.105e-05
PR_tnagasawa[3]: 6.105e-05
PR_akio_r[3]: 6.105e-05
PR_TsukubaGame[3]: 6.105e-05
PR_shi_ma_da_ma[3]: 6.105e-05
PR_ikemen_js[3]: 6.105e-05
PR_nanophate[3]: 6.105e-05
PR_0_h_ss[3]: 6.105e-05
PR_v5hF5rtAoeUISaz[3]: 6.105e-05
PR_amagasa[3]: 6.105e-05
PR_yoneichi0215[3]: 6.105e-05
PR_yazumoto[3]: 6.105e-05
PR_omiya_mast2[3]: 6.105e-05
PR_kakeigakuen[3]: 6.105e-05
PR_00FFFF_[3]: 6.105e-05
PR_SiokawaG[3]: 6.105e-05
PR_nkjtook[3]: 6.105e-05
PR_wawawanet[3]: 6.105e-05
PR_shuyuhey[3]: 6.105e-05
PR_takus4649[3]: 6.105e-05
PR_mayutsuna[3]: 6.105e-05
PR_rkwsk_tskb[3]: 6.105e-05
PR_gorohash[3]: 6.105e-05
PR_sobo_online[3]: 6.105e-05
PR_mikoto2000[3]: 6.105e-05
PR_youtoy[3]: 6.105e-05
PR_ky_yk_d[3]: 6.105e-05
PR_MIK_MASAYA[3]: 6.105e-05
PR_____oni[3]: 6.105e-05
PR_junichi_develop[3]: 6.105e-05
PR_enpit_shizuoka[3]: 6.105e-05
PR_sindy9121[3]: 6.105e-05
PR_maison159777[3]: 6.105e-05
PR_lli_ssa[3]: 6.105e-05
PR_terado_desu[3]: 6.105e-05
PR_enPiT_FUN[3]: 6.105e-05
PR_Ko_Aokata[3]: 7.043e-05
PR_HT_mast17[3]: 6.105e-05
PR_yololoi_mast[3]: 6.105e-05
PR_Aebi8linghua[3]: 6.105e-05
PR_wikemasa2[3]: 6.105e-05
PR_ave_run_nti42[3]: 6.105e-05
PR_ug23_[3]: 6.105e-05
PR_Ntaku42[3]: 6.105e-05
PR_yattom[3]: 6.105e-05
PR_msh_chat[3]: 6.105e-05
PR_yuyurun[3]: 6.105e-05
PR_DDDyoru[3]: 6.105e-05
PR_TAKAKING22[3]: 6.105e-05
PR_k3sue[3]: 6.105e-05
PR_kkznch[3]: 6.105e-05
PR_king_tkst[3]: 6.105e-05
PR_Br3_mongol_esys[3]: 6.105e-05
PR_BBAP_mast[3]: 6.105e-05
PR_basicseccap[3]: 6.105e-05
PR_himajin315[3]: 6.105e-05
PR_AIITenPiT[3]: 6.105e-05
PR_AnaTofuZ[3]: 6.105e-05
PR_nUheC2aLC[3]: 7.044e-05
PR_pho_ba[3]: 5.758e-05
PR_MasterPeace_exa[3]: 5.758e-05
PR_EkppJBykD1196gk[3]: 5.758e-05
PR_choshigenki[3]: 6.405e-05
PR_sf_tkb[3]: 5.758e-05
PR_tamko216339074[3]: 5.758e-05
PR_satodai_mast[3]: 7.509e-05
PR_SY05662663[3]: 5.758e-05
PR_mentol_tsukuba[3]: 5.758e-05
PR_t2_soccer[3]: 5.758e-05
PR_rgT0Y04dJQEwqeZ[3]: 5.758e-05
PR_rinsoccer3881[3]: 5.758e-05
PR_dai1197soccer[3]: 5.758e-05
PR_kazuhironamiki[3]: 5.758e-05
PR_juanchong[3]: 5.758e-05
PR_MattehPymm[3]: 5.758e-05
PR_19980704ss[3]: 5.758e-05
PR_Hassam22834053[3]: 5.758e-05
PR_soccerkoota[3]: 5.758e-05
PR_lucky_mimi_myu[3]: 6.696e-05
PR_kittytappy[3]: 6.405e-05
PR_ishi17_ina145[3]: 5.758e-05
PR_33YjML4IX9EF9b6[3]: 5.758e-05
PR_Akihisa_0404[3]: 6.397e-05
PR_c3_charity_[3]: 7.344e-05
PR_yukitukuba22[3]: 6.405e-05
PR_theeightballboi[3]: 7.608e-05
PR_st9029[3]: 8.073e-05
PR_yuuuone1[3]: 5.758e-05
PR_odorunrun_627[3]: 5.758e-05
PR_athlead_ff[3]: 5.758e-05
PR_ZFS0401[3]: 5.758e-05
PR_hiwofuku_gaos[3]: 6.405e-05
PR_kpeee777[3]: 6.405e-05
PR_tenntoritaiya[3]: 5.758e-05
PR_hoteljoi1[3]: 5.758e-05
PR_fundoshimen[3]: 5.758e-05
PR_sevendayrain[3]: 5.758e-05
PR_koma1202shu[3]: 5.758e-05
PR_mato2035[3]: 5.758e-05
PR_yuya296[3]: 6.223e-05
PR_isutothukue[3]: 5.758e-05
PR_dsuke0618[3]: 5.758e-05
PR_naoki0920win[3]: 5.758e-05
PR_knkncy[3]: 6.405e-05
PR_TeeAmiga[3]: 5.758e-05
PR_kubonnnurunuru[3]: 5.758e-05
PR_soccerJAPAN137[3]: 5.758e-05
PR_ANIMEMANVS109[3]: 5.758e-05
PR_kataribatsukuba[3]: 5.758e-05
PR_ishiko_1450[3]: 5.758e-05
PR_SOSHI_Mexico[3]: 6.696e-05
PR_LQ4MlqPWO8YRhnt[3]: 5.758e-05
PR_WorldFutTS[3]: 5.554e-05
PR_makabe_art2018[3]: 5.554e-05
PR_morningperson18[3]: 5.554e-05
PR_p52_o5[3]: 5.554e-05
PR_LowBrassSL[3]: 5.554e-05
PR_dayofOssann[3]: 5.554e-05
PR_MY_yado_drink[3]: 5.554e-05
PR_mypl_hokota[3]: 5.554e-05
PR_exing0120[3]: 5.554e-05
PR_tsukuba_intern[3]: 6.193e-05
PR_tobusemi[3]: 5.554e-05
PR_I1ImNdJkjXYjfDB[3]: 5.554e-05
PR_LUCKyyyyyyy_423[3]: 6.583e-05
PR_kentaroo_itf[3]: 5.554e-05
PR_kanakana730[3]: 5.554e-05
PR_ut_OLIDIA[3]: 6.193e-05
PR_seijin___[3]: 5.554e-05
PR_WFT_shinkan[3]: 5.554e-05
PR_tsukudai_coin[3]: 6.119e-05
PR_harurahimo1020[3]: 5.554e-05
PR_picnic2018[3]: 5.554e-05
PR_Tsukuba_kouya[3]: 6.193e-05
PR_cochigocochi[3]: 5.554e-05
PR_ITF_satori[3]: 5.554e-05
PR_pakapaka01278[3]: 6.019e-05
PR_vayashi_1117[3]: 6.583e-05
PR_haka_yuu_1305[3]: 6.657e-05
PR_ikyushinkan18[3]: 5.554e-05
PR_tsukutora2018[3]: 6.193e-05
PR_Jokers_shinkan[3]: 5.554e-05
PR_Ap_eribon29911[3]: 6.019e-05
PR_Nn262nN[3]: 6.119e-05
PR_bushytree36[3]: 5.554e-05
PR_tkborchestra_18[3]: 5.554e-05
PR_ooragi1224[3]: 5.554e-05
PR___aymask__[3]: 6.583e-05
PR_INVERHOUSE2019[3]: 6.193e-05
PR_Daigo0209[3]: 5.554e-05
PR_ts_k_2000[3]: 6.193e-05
PR_tsukumikan_ITF[3]: 5.554e-05
PR_ITFrikudo2018[3]: 6.657e-05
PR_tsukuba_bigband[3]: 6.193e-05
PR_tmk_ok19[3]: 5.554e-05
PR_TDC_tkb[3]: 5.554e-05
PR_tsukubalax2018[3]: 5.554e-05
PR_RikuzyouTeppen[3]: 5.554e-05
PR_utsb2018[3]: 5.554e-05
PR_josaka_fm2018[3]: 5.554e-05
PR_pepetpvc[3]: 5.554e-05
PR_ririnon326[3]: 5.554e-05
PR_tmkmtr_mtr[3]: 6.119e-05
PR_plum1682[3]: 5.554e-05
PR_sihonnnn[3]: 5.554e-05
PR_MORITA32347280[3]: 5.554e-05
PR_performancetkb[3]: 5.554e-05
PR_fafafafancy[3]: 5.554e-05
PR_tkbsky0508[3]: 5.554e-05
PR_s0127h0924[3]: 6.119e-05
PR_n4367k_B[3]: 5.554e-05
PR_happytsukuba[3]: 5.554e-05
PR_yakatsu_shinkan[3]: 5.554e-05
PR_UTfootrecruit[3]: 6.019e-05
PR_Music_baba_any[3]: 5.554e-05
PR_ULISv18_shinkan[3]: 5.554e-05
PR_vw3EOcNHeFxTG1U[3]: 6.193e-05
PR_EHnbLqjBnczC56Z[3]: 5.554e-05
PR_ayrton_klis18[3]: 5.554e-05
PR_shoko51377534[3]: 6.119e-05
PR_pokarisu_1108[3]: 5.554e-05
PR_flump00i[3]: 5.554e-05
PR_marvinhasegawa[3]: 5.554e-05
PR_Ugadii0889[3]: 6.019e-05
PR_tsukupppppe[3]: 6.492e-05
PR_ko4yX67eUoCNHIS[3]: 5.545e-05
PR_M56264826[3]: 5.545e-05
PR_ITF_aiko[3]: 5.545e-05
PR_commueasy[3]: 5.545e-05
PR_shinohyo[3]: 5.545e-05
PR_yusukef06221[3]: 6.01e-05
PR_hikarinokyusai[3]: 5.545e-05
PR_Tqv7hQfIjEzneFG[3]: 5.545e-05
PR_keiojudodokokai[3]: 5.545e-05
PR_JinKagatani[3]: 5.545e-05
PR_prin70564723[3]: 5.545e-05
PR_nectar216[3]: 6.11e-05
PR_tahachan_basket[3]: 5.545e-05
PR_tsukubaigaku45[3]: 5.545e-05
PR_wrikojudo[3]: 5.545e-05
PR_honamick473[3]: 6.01e-05
PR_u_d_a_p_p_u_n[3]: 6.01e-05
PR_jN2Rj8gdAZzyci9[3]: 5.545e-05
PR_kappa_esys[3]: 5.545e-05
PR_lierisathief[3]: 6.575e-05
PR_K_leenex[3]: 5.545e-05
PR_YM97202[3]: 5.545e-05
PR_medvedNEET[3]: 5.545e-05
PR_poen29829829829[3]: 5.545e-05
PR_runa_ga_sukida[3]: 5.545e-05
PR_0611yoshio[3]: 5.545e-05
PR_MeetTakahiro[3]: 5.545e-05
PR_KShiiio[3]: 6.11e-05
PR_yutoharuna[3]: 6.01e-05
PR_hina_klis18[3]: 6.01e-05
PR_seita_s[3]: 5.545e-05
PR_6535_6048[3]: 5.545e-05
PR_yoshionanda[3]: 6.01e-05
PR_tbw_18[3]: 5.545e-05
PR_suzutakabb[3]: 5.545e-05
PR_r_sanuo[3]: 6.575e-05
PR_key_check_arc[3]: 5.545e-05
PR_wins_shinkan_[3]: 5.545e-05
PR_nogutanbot[3]: 6.575e-05
PR_saaaaaccchi[3]: 6.11e-05
PR_tsukuba_neu[3]: 5.545e-05
PR_ts91686[3]: 5.545e-05
PR_Tsukuba_Konsei[3]: 5.545e-05
PR_agesummer[3]: 5.545e-05
PR_mamamaximam[3]: 5.545e-05
PR_kyonnn_trhj[3]: 5.545e-05
PR_mgu_judo[3]: 5.545e-05
PR_vxmvuhvmws[3]: 5.545e-05
PR_xokeikoxo[3]: 5.545e-05
PR_mizugiwa0079[3]: 5.545e-05
PR_non2ono[3]: 5.545e-05
PR_qfkjilprwzd[3]: 5.545e-05
PR_KennedyGoff1[3]: 5.545e-05
PR_LeahWillie2[3]: 5.545e-05
PR_LabonteAdame[3]: 5.545e-05
PR_ktvaqokfc[3]: 5.545e-05
PR_ITF_judodokokai[3]: 5.545e-05
PR_0903Dear[3]: 5.545e-05
PR_a9771[3]: 5.545e-05
PR_apple_tokyoluv[3]: 5.545e-05
PR_taku_ad13[3]: 5.372e-05
PR_motohutoko_ITF[3]: 5.372e-05
PR_lee47409422[3]: 5.372e-05
PR_Nao46427911[3]: 5.372e-05
PR_sw565021[3]: 5.372e-05
PR_IInNsPlvqMus4tH[3]: 5.372e-05
PR_tokkiitokkiitok[3]: 5.372e-05
PR_Bonus___Track[3]: 5.372e-05
PR_Cjianyang[3]: 5.372e-05
PR_BB_esys[3]: 5.372e-05
PR_AyanonPeaceful[3]: 5.372e-05
PR_wataameaiu[3]: 5.372e-05
PR_komatty3027[3]: 5.372e-05
PR_naconaco_does[3]: 5.372e-05
PR_mottaka2101[3]: 5.372e-05
PR_IS4QWylkYeXw9F8[3]: 5.372e-05
PR_Natsuki35187644[3]: 5.372e-05
PR_dfghdvjj[3]: 5.372e-05
PR_okaryu_0919[3]: 5.372e-05
PR_yzem41aso[3]: 5.372e-05
PR_yoshiya_so[3]: 5.372e-05
PR_soyoka_female[3]: 5.372e-05
PR_belsel_S[3]: 5.372e-05
PR_krg_kkk_pgmb[3]: 5.372e-05
PR_horizontal_556[3]: 5.372e-05
PR_TukubaMomizi[3]: 5.372e-05
PR_chang_keng413[3]: 5.372e-05
PR_kiriku2525[3]: 5.372e-05
PR_fai1250[3]: 5.372e-05
PR_ritsukooni[3]: 5.372e-05
PR_Getoshiscott922[3]: 5.936e-05
PR_Am0108mit[3]: 5.372e-05
PR_ppumumr[3]: 5.372e-05
PR_love_tangent[3]: 5.372e-05
PR_Abkwhr[3]: 5.372e-05
PR_lluutill21x11[3]: 5.936e-05
PR_Yu_808_808[3]: 5.372e-05
PR_tsukuba_ttc[3]: 5.372e-05
PR_sayaka_sid[3]: 5.372e-05
PR_kd_nrk[3]: 5.372e-05
PR_wing0zx_esys[3]: 5.372e-05
PR_KiohanFord[3]: 5.372e-05
PR_Mokomkoyu[3]: 5.372e-05
PR_xyz__ITF18[3]: 5.936e-05
PR_X3mEcd[3]: 5.936e-05
PR_7T6T5[3]: 5.372e-05
PR__haruO5[3]: 5.372e-05
PR_rs_journey2[3]: 5.372e-05
PR_katsumi___10969[3]: 5.372e-05
PR_uk_yos[3]: 5.372e-05
PR_meglee0613[3]: 5.936e-05
PR_Rope_Hanshin[3]: 5.372e-05
PR_Rinji_Rope[3]: 5.372e-05
PR_keydreamdice[3]: 6.31e-05
PR_fKhN2v6lSgMXXLW[3]: 5.936e-05
PR_ha_dgak[3]: 5.936e-05
PR_ITF_18_c[3]: 5.372e-05
PR_wing0zx[3]: 5.372e-05
PR_tajimatromitf[3]: 5.372e-05
PR_rlzmdrg[3]: 5.372e-05
PR_uma0312[3]: 5.372e-05
PR_N0o__engw[3]: 5.936e-05
PR__wingedvictory[3]: 5.372e-05
PR_Am0108_g[3]: 5.372e-05
PR_firststar_17[3]: 5.372e-05
PR_bookmarksky[3]: 5.372e-05
PR_john_532216_hb[3]: 5.372e-05
PR_J55Ph[3]: 5.372e-05
PR_il_____i_____li[3]: 5.372e-05
PR_Yomogi_Temple[3]: 5.372e-05
PR_eru_kyoka[3]: 5.372e-05
PR_DDtsukuba[3]: 5.372e-05
PR_noino_1101[3]: 5.372e-05
PR_mushroom_ITF[3]: 5.936e-05
PR_nnnam0901[3]: 5.372e-05
PR_biol16asami[3]: 5.372e-05
PR_kazuroot3[3]: 5.372e-05
PR_rikou_gachi[3]: 5.845e-05
PR_r8ZbEWV9LMKLz5Q[3]: 5.845e-05
PR_heartcloverzzzz[3]: 5.845e-05
PR_tYzOC4aOy9J0uth[3]: 5.845e-05
PR_p_fortis[3]: 5.845e-05
PR_xHqE4DPQbttDA3w[3]: 5.845e-05
PR_Murakami0413[3]: 5.845e-05
PR_shu67701171[3]: 5.845e-05
PR_nsd244[3]: 5.845e-05
PR_makoto85583522[3]: 5.845e-05
PR__waserin[3]: 5.845e-05
PR_Saku15208595[3]: 5.845e-05
PR_sa9familia1[3]: 5.845e-05
PR_koyokoyotulip[3]: 5.845e-05
PR_nishino_hiroki[3]: 5.845e-05
PR_Bdjdt3gmjagakek[3]: 5.845e-05
PR_peach_ARK[3]: 5.845e-05
PR_harutuku_20[3]: 5.845e-05
PR_kyohei_h49[3]: 5.845e-05
PR_e3293km[3]: 5.845e-05
PR_yukinameko0116[3]: 5.845e-05
PR_nizhny_[3]: 5.845e-05
PR_ydragonone[3]: 5.845e-05
PR_sortreew[3]: 5.845e-05
PR_urara_vr[3]: 5.845e-05
PR_phib_t[3]: 5.845e-05
PR____4245[3]: 5.845e-05
PR_yo_1020_3[3]: 5.845e-05
PR_0126iseita[3]: 5.845e-05
PR_yamayu0711[3]: 5.845e-05
PR_Basket21Sky[3]: 5.845e-05
PR_U10_Uchida[3]: 5.845e-05
PR_Tsuquba[3]: 5.845e-05
PR_bvwdvg[3]: 5.845e-05
PR_genchisaiyo[3]: 5.845e-05
PR_shigen2017_pr[3]: 5.845e-05
PR_tsuchiya_yu[3]: 5.845e-05
PR_nCk_cv[3]: 5.845e-05
PR_horirin_vocalov[3]: 5.845e-05
PR_robosithi[3]: 5.845e-05
PR_wattan12siorin[3]: 5.845e-05
PR_sho1726zeus[3]: 5.845e-05
PR_michinoins[3]: 5.845e-05
PR_sixisun1020[3]: 5.845e-05
PR_kana92563413[3]: 5.471e-05
PR_CHAOS37818622[3]: 5.471e-05
PR_shuwa_hour[3]: 5.471e-05
PR_sign_lang_smile[3]: 5.471e-05
PR_lFfnLz34vkOqnbt[3]: 5.471e-05
PR_ViaTsukuba[3]: 5.471e-05
PR_IBU_tsunagari[3]: 5.471e-05
PR_mutiara_re[3]: 5.471e-05
PR_Rito_deaf[3]: 5.471e-05
PR_pIhSjJNsLeA45ZZ[3]: 5.471e-05
PR_0w0_SAKURA[3]: 5.471e-05
PR_chilled_chiru[3]: 5.471e-05
PR_meguwan5[3]: 5.471e-05
PR_ibuki__1031[3]: 5.471e-05
PR_hisa_muu[3]: 5.471e-05
PR_qchan90501c[3]: 5.471e-05
PR_utktsuku1234[3]: 5.471e-05
PR_deafdeaf___[3]: 5.471e-05
PR_lssVBWiI6bmVbWZ[3]: 5.471e-05
PR_mo__1118[3]: 5.471e-05
PR_lovesimonnu[3]: 5.471e-05
PR_snowking0821[3]: 5.471e-05
PR_OkC5p2n9y[3]: 5.471e-05
PR_Uchiko_She[3]: 5.471e-05
PR_kokusai_rabbit[3]: 5.471e-05
PR_tololokombu[3]: 5.471e-05
PR_tiadugong2say[3]: 5.471e-05
PR_wFo6aTB4ZTwSgf0[3]: 5.471e-05
PR_zun__cha[3]: 5.471e-05
PR_anez_como[3]: 5.471e-05
PR_W3oblQZULw5blIe[3]: 5.471e-05
PR_5NR8N24Ggl6gnQq[3]: 5.471e-05
PR_taro630_earth[3]: 5.471e-05
PR_ryo51022226_ryo[3]: 5.471e-05
PR_yuuume0506[3]: 5.471e-05
PR_aikeke99[3]: 5.471e-05
PR_ymba415[3]: 5.471e-05
PR_dahanden[3]: 5.471e-05
PR_ponu_18[3]: 5.471e-05
PR_onemanlive_rad[3]: 5.471e-05
PR_akiwo111[3]: 5.471e-05
PR_ayuk__03[3]: 5.471e-05
PR_akatuti_violin[3]: 5.471e-05
PR_sai_ITF_524[3]: 5.471e-05
PR_tsukubatls[3]: 5.471e-05
PR_nene0724ballet[3]: 5.471e-05
PR_se_no_o11[3]: 5.471e-05
PR_tkb_syuwa[3]: 5.471e-05
PR_a_while_rest[3]: 5.471e-05
PR_ITF_pooh[3]: 5.471e-05
PR_BB_Bonze[3]: 5.471e-05
PR_fuji_ITF_0725[3]: 5.471e-05
PR_berry_melon7[3]: 5.471e-05
PR_itokashi_anime[3]: 5.471e-05
PR_sevense34630720[3]: 5.471e-05
PR_taro_ITF[3]: 5.471e-05
PR_4869_ami[3]: 5.471e-05
PR_taketoq[3]: 5.471e-05
PR_h3X13bhMxNOA3rZ[3]: 5.562e-05
PR_riki2735[3]: 5.562e-05
PR_MrETNzXm[3]: 5.562e-05
PR_yabekazuki00713[3]: 5.562e-05
PR_BVT5RRmBSaegVTS[3]: 5.562e-05
PR_yasaibot1234567[3]: 5.562e-05
PR_mai_2424110d[3]: 5.562e-05
PR_hitoem0130n[3]: 5.562e-05
PR_k_k0127e[3]: 5.562e-05
PR_JrMvfntmCBBtuLb[3]: 5.562e-05
PR_Metamoru_band[3]: 5.562e-05
PR_LVeh2cFIK5KY31K[3]: 5.562e-05
PR_10_31START_MNB4[3]: 5.562e-05
PR_tKn78JxrzoMKM3V[3]: 5.562e-05
PR_2dDxf3oQTrVbg4c[3]: 5.562e-05
PR_taichinojikan[3]: 5.562e-05
PR_Irjv3kGQAiqDuhL[3]: 5.562e-05
PR_kurichan427[3]: 5.562e-05
PR_P8nE4Ed71chmKlk[3]: 5.562e-05
PR_4525soccer[3]: 5.562e-05
PR_tadamichi1945[3]: 5.562e-05
PR_Aok7_31[3]: 5.562e-05
PR_KomosukeSuha[3]: 5.562e-05
PR_PzoLu000[3]: 5.562e-05
PR_R3c0KUBuETemOuH[3]: 5.562e-05
PR_eiids74f83[3]: 5.562e-05
PR_bakayaroy[3]: 5.562e-05
PR_emi3690[3]: 5.562e-05
PR_oYUYA0724[3]: 5.562e-05
PR_tobi_yiki[3]: 5.562e-05
PR_RENA_816614[3]: 5.562e-05
PR_pp7_you[3]: 5.562e-05
PR_Namaisara0130[3]: 5.562e-05
PR_B9Nm4[3]: 5.562e-05
PR_so_tantantintin[3]: 5.562e-05
PR_WATARYU5[3]: 5.562e-05
PR_HaxegFDXFwHfhJV[3]: 5.562e-05
PR_P2VBKlE5IlxsraL[3]: 5.562e-05
PR_NBuuA1j8WZZHblU[3]: 5.562e-05
PR_R_T_____[3]: 5.562e-05
PR_near34477059[3]: 5.562e-05
PR_yuki0724i[3]: 5.562e-05
PR_hibiki101115[3]: 5.562e-05
PR_siori_888[3]: 5.562e-05
PR_llHGQPghTnlT5nB[3]: 5.562e-05
PR_linlin_2nd[3]: 5.562e-05
PR_SS11896628[3]: 5.562e-05
PR_kkuuhhaa___2023[3]: 5.562e-05
PR_airiuotami0911[3]: 5.562e-05
PR_yuga2458[3]: 5.562e-05
PR_kotaro1308[3]: 5.562e-05
PR_bezittokakkoii[3]: 5.562e-05
PR_nanakobana[3]: 5.562e-05
PR_MarioRolls[3]: 5.562e-05
PR_with_dam1223[3]: 5.562e-05
PR__e_ri_sa_[3]: 5.562e-05
PR_NAGISA29995802[3]: 5.562e-05
PR_so_hazu[3]: 5.562e-05
PR_e4uXkeojlLUw7sb[3]: 5.562e-05
PR_TyI2PY6qlazu35m[3]: 5.562e-05
PR_KsKu6[3]: 5.562e-05
PR_soccer110510[3]: 5.562e-05
PR_samiopr1[3]: 5.562e-05
PR_shuto4484[3]: 5.562e-05
PR_Sakura25801[3]: 5.562e-05
PR_todaykyou0830[3]: 5.562e-05
PR_gawgaw1023[3]: 5.562e-05
PR_kairi1107217033[3]: 5.562e-05
PR_Marin_arai0801[3]: 5.562e-05
PR_WpJIRH9xUyijVzD[3]: 5.562e-05
PR_otsukahaikemen[3]: 5.562e-05
PR_ok_ok1325[3]: 5.562e-05
PR_akira_00057[3]: 5.562e-05
PR_Kobasuke05[3]: 5.562e-05
PR_GEPAI_[3]: 5.562e-05
PR_Ryota1213818[3]: 5.562e-05
PR_r_karakara1113[3]: 5.562e-05
PR_dl3i0_f[3]: 5.562e-05
PR_adstwi[3]: 5.562e-05
PR_w3pIwGRqBsXC8SH[3]: 5.562e-05
PR_tennis_stp7[3]: 5.562e-05
PR_919Hk1[3]: 5.562e-05
PR_masami06100610[3]: 5.562e-05
PR_kooom07851957[3]: 5.562e-05
PR_xvY4c[3]: 5.562e-05
PR_gensen_sougo[3]: 5.562e-05
PR_96Ryog[3]: 5.562e-05
PR_Life_is_WOTAKU[3]: 5.573e-05
PR_ra_mensukinan[3]: 5.573e-05
PR_mnym3790[3]: 5.573e-05
PR_hirarixina[3]: 5.573e-05
PR_kurowa12[3]: 5.573e-05
PR_gakudai_mongo[3]: 5.573e-05
PR_Lily_Go_30[3]: 5.573e-05
PR_mii__chan216[3]: 5.573e-05
PR_sirogoma113[3]: 5.573e-05
PR_hrnk0201[3]: 5.573e-05
PR_Ayahappy09[3]: 5.573e-05
PR_nisshoku_info[3]: 5.573e-05
PR_BStbsuibnui[3]: 5.573e-05
PR_13soccerKaito[3]: 5.573e-05
PR_kiiroiusagi_m2[3]: 5.573e-05
PR_potepoteX[3]: 5.573e-05
PR_ShiraiSnoWman[3]: 5.573e-05
PR_kcal_4y[3]: 5.573e-05
PR_soudas2[3]: 5.573e-05
PR_transam122[3]: 5.573e-05
PR_01010Luv[3]: 5.573e-05
PR_zawashu_wt[3]: 5.573e-05
PR_artpro2017[3]: 5.573e-05
PR_watson_newton_[3]: 5.573e-05
PR_kf_jkttttt[3]: 5.573e-05
PR_ubusuke_0316[3]: 5.573e-05
PR_keitarou675884[3]: 5.573e-05
PR_kadoi72[3]: 5.573e-05
PR_tikutikubo[3]: 5.573e-05
PR_watoson0048[3]: 5.573e-05
PR_mydrop09[3]: 5.573e-05
PR_kassye__[3]: 5.573e-05
PR_SATORU731163581[3]: 5.573e-05
PR_mj_kawa002[3]: 5.573e-05
PR_mame_0225[3]: 5.573e-05
PR_rikki99b[3]: 5.573e-05
PR_roluzyuubunnno1[3]: 5.573e-05
PR_LoveT1226[3]: 5.573e-05
PR_ese5r1[3]: 5.573e-05
PR_Ky_McLaren[3]: 5.573e-05
PR_fukuicup1030[3]: 5.573e-05
PR_Hana90mame[3]: 5.573e-05
PR_ha_____rukaido[3]: 5.573e-05
PR_endomame_38_BE[3]: 5.573e-05
PR_nekotakujp[3]: 5.573e-05
PR_ikotaros[3]: 5.573e-05
PR_yoshiyo0209[3]: 5.573e-05
PR_junjun_junjun28[3]: 5.573e-05
PR_RWdlxl3b[3]: 5.573e-05
PR_XQJgNG1hrPIUJn1[3]: 5.573e-05
PR_achtzehn_3839[3]: 5.573e-05
PR_shunya9692[3]: 5.573e-05
PR_hayahito80[3]: 5.573e-05
PR_K0685M[3]: 5.573e-05
PR_snkr955[3]: 5.573e-05
PR_hiroo2619[3]: 5.573e-05
PR_eikiki_ch39[3]: 5.573e-05
PR_2mkhi_[3]: 5.573e-05
PR_n8013ryo[3]: 5.573e-05
PR_77Kazuya77[3]: 5.573e-05
PR_pompom0847[3]: 5.573e-05
PR_Araaaaachi[3]: 5.573e-05
PR_ryozono0712[3]: 5.573e-05
PR_yuuichi0427s[3]: 5.573e-05
PR_yuutiya46[3]: 5.573e-05
PR_atoyr_s[3]: 5.573e-05
PR_Dekaiwai1203[3]: 5.573e-05
PR_6iikp[3]: 5.573e-05
PR_MTBF1[3]: 5.573e-05
PR_kou929kantoku[3]: 5.573e-05
PR_5296_izumi[3]: 5.573e-05
PR_36tljHuRvkEtAqn[3]: 5.573e-05
PR_setaro_82184[3]: 5.573e-05
PR_versailleshormo[3]: 5.573e-05
PR_kakedokei1[3]: 5.573e-05
PR_reisenn_[3]: 5.573e-05
PR_nakajun05283[3]: 5.573e-05
PR_ponyootoko[3]: 5.573e-05
PR_wakameog[3]: 5.573e-05
PR_wakameog1[3]: 5.573e-05
PR_kanata_3xv[3]: 6.692e-05
PR_whiteanthurium[3]: 6.692e-05
PR____nya31[3]: 6.692e-05
PR_1mm_r[3]: 6.692e-05
PR_kie_nnu[3]: 6.692e-05
PR_acharin20180610[3]: 6.692e-05
PR_Linh09921977[3]: 6.692e-05
PR_kko401[3]: 6.692e-05
PR_photo_afma_s[3]: 6.692e-05
PR_KameraS02[3]: 6.692e-05
PR_momoo452[3]: 6.692e-05
PR_Tanko_Pokino[3]: 6.692e-05
PR_aika_0316_17[3]: 6.692e-05
PR_musedclo[3]: 6.692e-05
PR_tetuwof[3]: 6.692e-05
PR_mizuumiramune[3]: 6.692e-05
PR_myun_p_arkr[3]: 6.692e-05
PR_ryotaaa1998704[3]: 6.692e-05
PR____Messiah____[3]: 6.692e-05
PR_nogiasyun__0810[3]: 6.692e-05
PR_vn_w31[3]: 6.692e-05
PR_syashin_non[3]: 6.692e-05
PR_tacchanwankonya[3]: 6.692e-05
PR_dai_nikoniko[3]: 6.692e-05
PR_st1230sakura[3]: 6.692e-05
PR_39pink39[3]: 6.692e-05
PR_aminonnn0712[3]: 6.692e-05
PR_Tears_sunflower[3]: 6.692e-05
PR_jiyuukimamani_[3]: 6.692e-05
PR_phot_drop[3]: 6.692e-05
PR_sormu6[3]: 6.692e-05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment