-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase_semD.csv
We can't make this file beautiful and searchable because it's too large.
10113 lines (10113 loc) · 574 KB
/
database_semD.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
stimulus,semD,contNum,mean context length,RT
supplicate,0.25970339442107454,105,2118.4380952380952,830.08
luminary,0.2703595767094856,257,1370.3774319066147,794.83
ringworm,0.31137866990200586,353,1083.9348441926345,735.3
extrovert,0.28181501583964763,677,1092.7296898079765,781.27
peacemaking,0.2441204668628271,563,2004.2895204262877,739.16
cervix,0.29630729712799425,1191,889.1108312342569,749.55
earthen,0.26481568316443665,858,1439.902097902098,940.15
homegrown,0.304608781593503,1176,1034.8367346938776,752.44
electrode,0.3025529710109871,1334,1092.315592203898,839.65
grandstand,0.28532665631112764,1671,870.90065828845,822.17
showmanship,0.22444925637929117,588,1069.9948979591836,876.13
washable,0.31200485185888954,2330,517.3618025751073,634.79
jingling,0.21413133992401032,225,1303.5733333333333,917.9
unshakable,0.22865609307139226,293,2176.8054607508534,773.42
sucking,0.29334134729065015,2901,1102.627714581179,607.55
hallway,0.27080738377840163,3748,907.9765208110992,655.76
fling,0.26497091503387504,2172,1389.3973296500922,697.53
salivary,0.31158007448888325,625,1320.8432,904.89
obedient,0.20675009422704552,2605,1708.4890595009597,800.38
honeydew,0.34026501180103536,249,1018.4779116465863,758.86
saturation,0.36163961390348875,3457,1301.44952270755,701.48
regress,0.2862640705137329,657,1862.7610350076104,732.0
outfitter,0.28714827389059316,121,1149.2644628099174,753.27
sterile,0.357587410136329,4791,1266.8618242538091,757.7
bobcat,0.35852711979557783,149,1158.0939597315437,742.97
unlearn,0.24365090538952958,282,1534.4609929078015,727.74
deepen,0.3037856593239322,4605,1326.5526601520087,905.04
throttle,0.26126824261304943,3327,997.5596633603848,898.48
autograph,0.27511103459464514,2049,1122.9526598340653,810.12
ungrateful,0.19705003046554864,1028,1463.0214007782101,808.64
havoc,0.2965070069472331,4819,1415.5600747042954,793.41
grassed,0.2856458992812834,1469,929.7413206262764,721.62
savory,0.3812220086885561,471,1247.3333333333333,734.6
impoverish,0.2184370029590832,254,2198.566929133858,804.97
prejudge,0.2389081543791347,306,2355.2581699346406,760.3
parenthesis,0.31874571648742833,899,1853.4416017797553,919.13
jewelry,0.344392509574093,2894,1156.4533517622667,619.91
anchorman,0.23044770073518211,262,786.0534351145038,941.1
dispensable,0.3144108490620225,250,2223.544,736.82
bedfellow,0.24697447283429075,91,1458.8241758241759,847.19
bookkeeping,0.24643200425683456,1717,1869.2399534071053,666.0
gleaming,0.24968275663268188,2757,1105.564018861081,727.43
sunbeam,0.27515341802755044,816,1212.8026960784314,696.47
prognosis,0.33174886696260913,3838,1409.8110995310058,848.63
rim,0.3730592196889481,5897,1109.0172969306427,678.04
retrieve,0.345373015101862,10460,1232.9256214149138,772.29
grape,0.35435018809216523,3536,958.1119909502263,590.74
refill,0.36506475686047857,1732,851.0340646651271,671.27
incorruptibility,0.2024015325202445,56,2759.3571428571427,1123.21
climax,0.26114062856597486,7182,1227.3517126148706,789.28
horticulturalist,0.2935991974971848,150,1060.2933333333333,1088.27
engrave,0.3411678606731319,266,1114.6503759398497,706.5
squire,0.29819150793471044,2553,1297.6784175479827,906.89
drapery,0.2595404673218083,630,1345.6507936507937,807.72
oblique,0.328644441772672,2202,1466.1017257039055,680.25
fork,0.37219572764499265,8632,973.4931649675625,608.03
seriousness,0.29472806664094237,6328,1637.617414664981,767.94
omnipresent,0.25242462521290515,1120,1583.8410714285715,974.33
famish,0.1445203497788689,35,1507.8285714285714,798.52
manhood,0.2241521472105909,1732,1538.461893764434,645.26
manners,0.25783417746835674,6975,1391.9283154121863,658.77
affirmative,0.2907249756855313,2421,1987.7893432465924,769.69
pretzel,0.27829303253431714,168,1005.2678571428571,629.61
adolescence,0.3011592163486733,3340,1186.8733532934132,695.06
tenuous,0.26343680813276626,2106,1689.8969610636277,818.97
suppleness,0.3398076524548447,456,749.75,829.77
coed,0.3326014243105067,861,1024.0394889663182,861.38
civilizing,0.21734855705674383,232,2120.728448275862,787.93
matchmaker,0.34868048511090777,304,948.108552631579,728.34
clanking,0.1954034025954773,345,1414.2289855072463,716.08
volcanic,0.3091522601573786,5540,1142.205415162455,770.32
presuming,0.2629238022730918,1169,1754.2822925577416,839.58
polar,0.3643178134635851,7869,1145.6515440335493,642.66
apostrophe,0.2531774055502293,855,1453.6713450292398,945.94
apprentice,0.32123917643041955,6570,1110.2540334855403,908.61
coherency,0.32789586412626237,203,1437.1231527093596,808.93
louse,0.33623495126028274,377,1036.029177718833,942.81
studious,0.21871865572379312,599,1521.0918196994992,776.24
reassure,0.295796973792044,6345,1304.7621749408984,781.82
canister,0.32054156337629447,748,1269.0467914438502,842.93
investigator,0.3464978778826144,7667,1068.2162514673275,777.86
mascara,0.273447795593125,572,832.5506993006993,787.17
stringent,0.3321988176903403,7893,1331.1972633979476,888.0
doze,0.2178154897339787,534,1240.8895131086142,672.54
likeness,0.2501068141992923,3248,1615.992302955665,665.79
understandable,0.2861113408742916,10998,1568.9953627932352,988.1
firebrand,0.25267111819907784,393,1371.1195928753182,836.85
earphone,0.2692302479009847,281,1048.7829181494662,707.97
crafter,0.3531391886287762,161,642.5403726708074,681.37
ebony,0.32300020612883146,1226,1008.0978792822186,656.53
audition,0.28023097994736546,3770,838.6907161803714,732.0
reel,0.3278475673962254,5521,891.3399746422749,764.0
pirate,0.2789909523256261,5275,1009.2240758293839,635.06
hoop,0.3455357460028341,1685,1195.6017804154303,724.0
beheld,0.18031743828433505,1433,1628.023726448011,845.22
unreliability,0.2928816105028398,914,1712.6061269146608,1018.93
fizzle,0.2561392075663506,300,1296.8466666666666,819.38
overprotective,0.25909346756911517,161,1115.6521739130435,976.0
warmer,0.33908481326463097,8604,1064.9034170153418,741.91
bean,0.3808084544898393,7436,1018.018154922001,556.23
carve,0.32622457061965976,2666,1211.3552138034509,682.18
genitalia,0.32553663060594745,628,1116.4824840764331,941.83
interrelated,0.2775967857725189,2106,1902.2678062678062,907.27
ethic,0.2799215270411382,4121,1430.1781121087115,654.3
defenseless,0.2393346247582384,300,1863.0666666666666,782.1
splashdown,0.2937048459682272,82,1027.9634146341464,775.52
stalk,0.3623359101069103,2321,1037.1417492460146,645.67
disarm,0.21947754415795181,1600,2102.65125,845.06
lampoon,0.20822691715474584,281,1293.8612099644129,752.26
counterpart,0.332896806650084,6138,1638.299283154122,764.21
residual,0.3767401699635228,8120,1495.1660098522168,813.97
blob,0.2979191439238495,1324,1152.7092145015106,668.4
unholy,0.2388088566492555,1610,1646.8701863354038,711.94
ballot,0.2628669370403685,10006,1117.2792324605236,644.56
unavailable,0.3655030595056563,10802,1212.2373634512128,704.39
hose,0.3308588665154722,4889,932.1953364696257,692.67
greeting,0.33656450844884817,6766,1154.1313922553945,619.48
variance,0.32025831870187393,4716,1663.24385072095,688.29
demote,0.31814295025977424,167,1452.5269461077844,825.03
exude,0.3269038216881982,706,1039.0509915014163,791.14
sadism,0.19800228860026922,400,1172.31,793.62
twitch,0.27270848604993575,1160,1225.4284482758621,697.07
spillway,0.2849474513361721,86,1162.139534883721,797.58
mandarin,0.3662375913414838,2601,1058.9846212995003,852.61
silkworm,0.3406696468935732,155,1743.7290322580645,692.44
pushcart,0.24246886830578096,53,1229.245283018868,876.33
fatherly,0.20014243070569088,433,1661.2886836027715,779.16
bail,0.29896986349206695,5179,1185.2832593164703,824.44
neurology,0.3037926681168189,3591,1167.3776106934001,769.52
corrupt,0.2650697483797773,9332,1587.621088726961,803.09
thunderbolt,0.28345816409031505,822,1328.0547445255474,825.24
drank,0.23300755016099706,6104,1307.2670380078637,696.09
newborn,0.3745970323202056,4601,996.7835253205825,688.35
ritualistic,0.2549571588115465,830,1640.4240963855423,850.2
meridian,0.36524977780374135,3150,1141.904126984127,780.07
directorship,0.31528543531004494,1330,1661.6345864661655,930.7
underclothes,0.26291794729506535,116,1294.1120689655172,769.16
locker,0.3257022934759536,2575,1040.1860194174758,690.03
tapping,0.32116471598436686,5442,1167.2995222344725,666.06
sunken,0.30576372812275243,2587,1116.1708542713568,863.4
puncture,0.33420246012815596,2567,1098.6941955590182,680.9
stepchild,0.3331440485149494,112,1529.455357142857,906.55
cosmos,0.2744321531296479,3463,1568.0008663008953,768.51
fizz,0.3141771155989949,1564,842.537084398977,799.29
sprawling,0.26602165926702287,2879,1139.4373046196597,790.45
invert,0.3604800470234643,1028,1430.191634241245,663.9
swayback,0.3255981920665927,12,908.25,842.4
postdate,0.3379660166354772,37,1874.5135135135135,754.32
bloodstream,0.3089054833151856,2376,1007.2853535353536,686.0
proclaiming,0.23775120458116486,3091,1712.5528955030734,768.0
statesmanship,0.18872604690960973,249,2217.6746987951806,951.0
dentist,0.3366851817413907,6125,958.325387755102,670.18
overlap,0.35055664773345524,10890,1570.0138659320478,687.13
honk,0.2653732608402993,373,1115.7184986595175,665.81
dyslexia,0.2573407389618958,4711,1028.5336446614308,789.82
tasted,0.26926766386829004,4787,1112.5529559222896,689.16
comedian,0.23711633648241567,5704,804.867110799439,725.29
disbeliever,0.1829013811389701,87,2100.3333333333335,772.06
eardrum,0.287951837080516,302,996.4304635761589,714.11
mailbox,0.32163478384183775,3990,894.3533834586466,682.63
reggae,0.22291219157585174,3571,846.4068888266592,820.03
discrepancy,0.3244500638461322,3446,1930.1535113174696,767.57
immunize,0.34123838519566174,90,2090.677777777778,735.88
gasp,0.24246741424120716,2312,1203.5250865051903,659.31
nearside,0.2527357514182889,666,1024.0555555555557,760.33
inaugurate,0.2855538790465762,553,1930.8408679927668,927.67
flurry,0.2994719278860679,3267,1332.3804713804714,623.63
plead,0.2599613144614719,3186,1690.2401129943503,808.43
quadratic,0.26749674124200973,1333,1408.4643660915228,842.0
scabby,0.24524787961769823,275,1066.6618181818183,813.16
pea,0.36173936990022293,2705,1076.7083179297597,618.0
gossip,0.2578261174666671,8467,1162.5921814101807,819.88
procreative,0.20655426100672356,113,1889.0176991150443,977.36
saunter,0.225903152919342,398,1124.819095477387,761.68
hornet,0.3095430776877891,794,1269.133501259446,751.28
monsoon,0.3233579283718689,2066,1240.3625363020328,834.26
unacknowledged,0.24738176647523635,734,1791.7547683923706,1059.62
casualty,0.32888433600095374,8757,1125.8303071828252,873.93
sensationalist,0.2341228498142746,621,1230.938808373591,1008.8
worrisome,0.27399407809003995,413,2170.7845036319613,935.62
partake,0.30731594054628986,2522,1365.4163362410784,809.96
reinstate,0.31008921845208987,2253,1563.1606746560142,791.94
flaring,0.335060527251785,669,1469.7862481315397,749.21
crochet,0.31900869343502275,661,930.1709531013615,725.75
pushup,0.24081486224164048,7,868.7142857142857,815.78
callous,0.23230278824072412,1435,1383.5233449477353,714.62
gymnasium,0.3145403984345707,2842,911.8462350457424,838.96
reins,0.2884894014848324,2442,1297.1466011466011,697.8
retort,0.23445476460751943,902,1822.041019955654,701.63
monogamous,0.25881614821896276,371,1323.6495956873316,817.07
rocker,0.2699800752198473,2557,905.5897536175205,623.59
ectoplasm,0.20388174794150182,129,1264.5193798449613,1059.75
reciprocity,0.2542101793667824,1350,2094.9696296296297,905.48
procrastination,0.2571457664849139,811,1240.9112207151666,959.97
dismiss,0.2820673751835411,8470,1625.179574970484,769.42
extrusion,0.29516751687874665,790,1207.5949367088608,908.07
disappearance,0.2934379594915444,4974,1561.1061519903499,789.25
gallop,0.29099042597588687,1498,1174.5380507343125,781.0
totalitarian,0.1821336920651858,2012,1944.4647117296222,893.92
sawdust,0.31536164758047774,1158,1015.8886010362694,746.16
propensity,0.31706008119352547,2644,1734.0128593040847,806.2
minus,0.3558612930947069,9272,1342.6243528904229,734.81
varsity,0.2903261898654393,1479,725.448275862069,676.69
unhealthy,0.296599749297552,4707,1271.8204801359677,703.34
entree,0.32844303519107143,198,1373.4040404040404,696.7
insoluble,0.34914536350731706,1365,1584.0307692307692,783.39
bronchitis,0.3288889142486581,1736,1137.7655529953918,906.32
counseling,0.35730877955723167,2591,1167.7803936703976,656.7
anarchy,0.23238376355833096,3158,1617.9838505383154,747.41
ointment,0.34433937953207916,1384,1294.2015895953757,853.72
thankful,0.2329145652354431,4826,1362.7277248238706,701.47
snowshoe,0.25041748159873717,174,771.6666666666666,835.76
paranoia,0.23911949673966043,3660,1244.8172131147542,865.53
hurry,0.2705755247419016,9947,1266.686035990751,697.0
stiffening,0.3289128861080007,490,1416.0428571428572,840.5
shorthand,0.30335227978451007,3136,1782.4359056122448,602.16
brutalize,0.1917308440434824,29,2365.896551724138,760.55
inflow,0.3311875415804238,1221,1546.4692874692876,868.0
scissor,0.29949637070797314,1239,860.046004842615,806.91
paddy,0.3329809286057748,4750,1125.5787368421052,912.48
unafraid,0.2513318776929041,721,1059.636615811373,901.67
embodiment,0.26412157227751387,2990,1693.5488294314382,925.77
turnip,0.32281010788132036,901,1284.2519422863486,701.31
homeward,0.2579229528049458,1396,1199.7177650429799,743.59
moss,0.3658763964370836,10921,1091.8830693159966,606.58
slacker,0.22121740514395896,505,1117.2534653465345,619.26
recorder,0.3503978530416721,10528,1096.3513487841944,782.79
rhyme,0.2579134758932741,4549,1107.045504506485,747.97
appropriation,0.2854265075977985,2318,2019.5314926660915,938.65
mystical,0.25775094329708004,6228,1400.3773281952472,712.41
boxcar,0.36491411601499274,87,1094.471264367816,682.82
gazebo,0.3037991755806921,917,885.2082878953108,731.89
quicksand,0.2781639747686708,389,1386.6041131105399,723.75
hermit,0.2757229836089716,1818,1573.7849284928493,687.97
incomprehension,0.21032624057783125,461,1698.0108459869848,1012.85
conversationalist,0.18994880579769163,169,1174.8579881656806,1043.63
overdo,0.27726277439105,876,1139.9075342465753,720.26
repaint,0.2517989322343212,948,1218.0949367088608,770.94
hive,0.31760890074373666,2215,1087.6388261851016,614.52
facial,0.3598799418742814,8718,1054.0400321174582,644.42
negativism,0.1815157406513499,62,2411.048387096774,776.07
puzzlement,0.2197026490105405,521,1671.2955854126678,823.17
taxpayer,0.2515654505351918,7142,1268.6615793895267,721.53
bulb,0.34328495602289444,5103,987.7301587301587,607.53
mnemonic,0.28453248732647923,778,1751.0771208226222,936.46
flap,0.3364913705420084,3632,1057.3656387665199,754.75
pry,0.29898874496751426,543,1405.2707182320441,650.47
punctual,0.305517482231662,1281,1298.423887587822,685.74
rejoin,0.3284101865416677,2653,1277.1387108933284,646.0
psychoactive,0.2775083628138209,414,1362.268115942029,1052.5
bellhop,0.25590421394104496,48,975.5625,828.57
forearm,0.3454795675855117,1459,1029.154900616861,769.53
highroad,0.28308477087255346,87,1768.2988505747126,813.55
gut,0.37090361465848626,6806,1127.9318248604172,679.68
minuteman,0.2960837647665754,103,1279.485436893204,982.69
exasperation,0.20943837563826798,784,1657.6875,984.97
slashed,0.30866211874952815,2615,1143.1843212237093,627.18
scrimmage,0.2677206540519446,116,1249.9224137931035,864.17
teabag,0.27212767967402784,181,866.8342541436464,657.68
skull,0.31407988839237666,6280,1191.8627388535033,578.84
wallboard,0.31892974352457176,71,889.3521126760563,726.67
subliminal,0.24719101398081808,1088,1298.420955882353,752.29
tug,0.3006807635592358,3085,1197.7147487844409,632.67
meanness,0.20420441905342804,410,1735.1414634146342,735.57
friar,0.2929010323256437,1340,1269.2664179104477,771.54
teasing,0.27322937483242266,2424,1196.8155940594058,587.29
regency,0.3285515545654863,2817,1101.8438054668086,815.73
thong,0.33944252433767275,813,844.830258302583,721.61
classmate,0.2604626377256475,646,1126.0650154798761,656.0
textile,0.34309713221123034,8125,976.9772307692308,616.48
habituate,0.26304336656146116,96,1805.0416666666667,826.52
registrar,0.34007140003698055,10559,1261.5923856425798,891.69
sunlight,0.3411447835491905,10738,1095.0268206369901,643.75
footnote,0.2989050391451376,5108,1703.4657400156616,655.61
pasty,0.29490521219312665,781,986.1177976952625,674.87
airlift,0.2915365272107052,559,1608.6815742397139,767.16
goalpost,0.31465098246990075,132,1370.75,910.5
roofer,0.3148692745875581,192,1001.3541666666666,778.03
unmodified,0.3562041840581465,857,1722.6896149358226,997.26
bidder,0.3030718290357456,3198,1179.5544090056285,897.5
amuse,0.24383640689445685,2648,1125.0751510574019,749.36
misjudge,0.24871821001747682,204,1388.2303921568628,795.74
proportionate,0.26359297238461366,4641,1653.856280973928,980.23
graceless,0.20463325362880236,167,1327.9461077844312,750.0
saltshaker,0.29570121852661246,18,762.2777777777778,893.39
kinship,0.26166139025306845,2071,1725.8440366972477,764.76
exhaust,0.31352437396076843,7814,1118.455976452521,760.58
invulnerable,0.24838772783779417,463,1602.8639308855293,929.6
fluctuate,0.35699065063079594,1752,1383.083904109589,851.9
sandbag,0.29728383427042326,210,1472.0809523809523,667.56
manifold,0.33632479442779867,2953,1520.2919065357264,767.32
serpentine,0.31642548077668525,1402,1193.083452211127,921.64
deliberation,0.2982513323745355,2631,1664.0140630938806,805.39
aristocrat,0.22692063738684004,955,1448.4439790575916,807.81
turf,0.3334565735325817,8266,1016.6700943624486,721.34
misadventure,0.2958426506679795,418,1579.1196172248804,911.65
inspect,0.34340528194814557,10057,1372.2267077657352,733.06
exhaustive,0.33722736110183676,8152,1438.138002944063,904.24
constrained,0.3023558537300037,7902,1831.0656795747911,777.31
headland,0.2701511272717543,2416,1077.6167218543046,909.9
epilepsy,0.3276925334852745,6095,897.4762920426579,802.0
dignified,0.25848734489091985,3407,1378.1118285882008,716.41
ranch,0.30172155964475433,2630,1176.7311787072244,691.97
unsinkable,0.28630248609111186,187,1121.0053475935829,911.33
frightful,0.19171606421881307,1082,1938.5970425138632,749.13
uptake,0.3418081382398141,7873,1210.8286548964816,678.9
blinker,0.27593327910956683,84,1275.5119047619048,735.41
opportunist,0.2872549945890813,1524,1493.0524934383202,711.07
ornament,0.2906145674511533,2441,1438.7423187218353,741.4
magnitude,0.3397507271105056,10409,1599.6558747237966,698.19
badness,0.22348825866482414,443,1670.5395033860045,739.77
exclamatory,0.24142864798857067,66,2361.7727272727275,778.88
friction,0.3571221866604024,5908,1227.6122207176709,790.96
slick,0.28251786447095334,5829,962.0545548121462,604.24
overestimation,0.29656127132897636,163,2072.98773006135,998.14
bumper,0.32150267629106033,4755,1039.3154574132493,710.5
unwinding,0.37912182862809896,558,1181.0645161290322,914.28
oar,0.2832072946615252,1093,1190.153705397987,586.89
generality,0.2820317519461742,2124,2492.9924670433147,847.1
zealous,0.24988854499277885,1998,1891.511011011011,672.86
orderliness,0.24342800865435918,216,1792.2685185185185,863.93
wallet,0.3055923823736815,5175,993.3286956521739,665.94
smack,0.2458132338154482,2511,1092.7172441258463,705.5
custodian,0.36141311812710597,1962,1501.6641182466872,771.28
tipping,0.33458810937049255,5327,1175.293035479632,669.16
squashy,0.2733848649108653,232,817.8362068965517,827.3
lifeline,0.3211045745475623,3708,983.2257281553398,728.91
contemplation,0.27041085460170144,3737,1589.996521273749,778.88
darkened,0.25521297679505,3139,1404.882765211851,706.85
trumpet,0.2858194876450105,5928,1168.9289811066126,676.24
balding,0.2733033713264708,872,1112.01376146789,756.4
refrain,0.3081550770050199,5938,1673.054900639946,823.7
mug,0.2872822136045578,3806,1064.8365738307934,662.42
denim,0.30639564102571437,1833,1017.7381342062193,812.26
heroics,0.23769456859967172,998,1103.7785571142285,793.41
outspoken,0.24849992967560355,2662,1388.4804658151766,636.62
electrolyte,0.3304136901073894,983,1103.1637843336725,987.19
zap,0.310958080586867,1066,1118.1791744840525,675.81
yardstick,0.2902340584426949,1274,1676.0627943485085,731.73
bluebell,0.3132967673234537,1755,1006.6683760683761,767.21
sensationalism,0.2175326753718963,564,1347.5390070921985,975.39
scrape,0.3229905271321771,3000,1143.7046666666668,762.8
nightstick,0.23920085228909407,28,1150.1785714285713,781.37
nauseous,0.24937715567403407,641,1317.0780031201248,796.7
rye,0.38506096320512995,4091,1150.4272793937912,672.94
metered,0.34718268053513174,1254,952.0191387559809,851.4
gunfighter,0.2016200710715055,84,949.0238095238095,768.82
daybreak,0.2535920059061184,1006,1510.1769383697813,618.06
overconfident,0.26399672717221223,160,1608.875,885.72
socialistic,0.1625235225721265,201,2130.054726368159,810.74
abbreviation,0.332142468798598,2779,1725.0982367758186,729.13
shirtsleeve,0.2104686970886326,21,1826.7142857142858,980.91
tusk,0.3166158755877442,309,1109.9482200647249,623.03
parasol,0.34770841237074895,829,868.8829915560917,776.78
mouthed,0.2252083827630687,775,1200.8335483870967,763.3
encapsulate,0.3175549153223786,1565,1406.7539936102237,1005.88
stiffness,0.34731651141303466,3500,969.6974285714285,653.31
roaring,0.26571941520375836,5016,1163.386562998405,670.59
equip,0.2914156703588514,10208,1052.4233934169279,762.83
handbrake,0.23222671570509673,946,906.3224101479915,842.65
precaution,0.3428717015335141,3798,1306.1624539231175,737.4
seaplane,0.30400021460403553,428,995.2032710280374,919.33
physician,0.3501404662092206,9005,1320.809439200444,750.5
alimony,0.3390528284710269,202,1252.5940594059407,856.52
revitalize,0.3509293572629091,551,1444.092558983666,967.24
sneeze,0.2880829990152639,817,1162.126070991432,680.53
peppermint,0.3329644293906687,1060,853.2273584905661,856.52
guidebook,0.3084891762790921,3084,977.1952010376135,783.85
defacing,0.27626476772461755,297,1371.6363636363637,798.87
grader,0.33017186667222387,286,1338.3391608391607,819.31
unbend,0.22834152469358573,39,1823.051282051282,737.0
regent,0.35510873693064987,7995,1118.1543464665415,720.89
bungle,0.27058214406890196,478,876.1924686192468,851.8
decapitation,0.24763434851718827,405,1462.4296296296295,1053.29
lieutenant,0.2750074498256147,7839,1300.914019645363,829.31
indiscriminate,0.2782815583869495,2153,1683.6261031119368,1009.07
slime,0.2919668546121585,1363,1174.1834189288334,709.32
scraper,0.319493766839012,628,989.3885350318471,661.45
diagnostician,0.23266073572418994,51,1769.3725490196077,1054.54
bootlegging,0.27765676149032603,189,941.8624338624338,804.12
sportsmanship,0.26964492204301443,634,872.5457413249211,777.94
plague,0.29319830729149615,6980,1416.599140401146,665.79
fruitless,0.2729081158172976,2279,1697.398420359807,689.06
teaspoon,0.2728498074952659,2433,659.4763666255651,740.41
grapefruit,0.362856828795577,1455,893.5168384879726,721.71
manhandle,0.2640519869539293,127,1033.6692913385828,739.75
raid,0.31845310420216555,10251,1258.5975026826652,715.75
sequential,0.3338957860316038,4551,1519.5080202153372,827.03
curler,0.24426118398835214,176,1191.3125,776.37
fortress,0.2879691780264063,6789,1294.5634114007953,853.65
rewire,0.3167012519724264,305,957.1475409836065,787.93
exponential,0.2902752451273,2383,1452.0310532941671,825.26
isotope,0.31017659008157494,1534,1130.7900912646676,778.0
grotesque,0.23111823827114555,3068,1438.6835071707953,812.52
bloodbath,0.23348679537709444,552,1373.2626811594203,763.94
presidential,0.2605773648911165,8896,1505.8338579136691,831.03
spacesuit,0.21028919554556016,110,1050.3,977.17
draught,0.326964979455274,3939,1160.2038588474231,766.69
unparalleled,0.37286815184310196,6019,1054.695464362851,990.42
squirting,0.30528690082693893,329,1035.887537993921,845.16
wispy,0.26912752442446397,384,1214.015625,837.81
crayon,0.2931210018754368,733,1046.637107776262,647.12
synchronization,0.28448611868505513,1674,1456.968936678614,996.91
timer,0.32658775134717616,5262,1007.244773850247,677.72
wellborn,0.3368913115460022,17,1894.4705882352941,912.4
fragmentary,0.27671516123924556,1827,1931.3152709359606,986.35
tadpole,0.34618478854678586,394,1075.8578680203045,813.91
pillar,0.32540959628330335,5881,1410.8483251147763,688.55
misapplication,0.28358740287058937,233,2081.9484978540772,1106.46
puzzle,0.31532368997832894,10746,1154.3774427694025,627.24
chickenpox,0.31675767510685526,364,994.8708791208791,854.22
smoothie,0.3161234176065525,748,768.6256684491979,827.71
meow,0.2410820316134338,365,950.0356164383562,647.39
symmetric,0.292669765399736,1886,1324.5763520678686,777.18
undo,0.32534332189007265,3514,1321.2575412635174,613.48
mimic,0.36297698869181383,3860,1282.8743523316061,669.58
unused,0.3636849149694477,9043,1310.4766117438903,824.29
impersonal,0.2482466733482293,2494,1724.032477947073,868.1
dissent,0.24881791696149047,4772,1716.4019279128247,765.57
memorization,0.23828518108722144,246,1824.3699186991869,873.75
bigness,0.203644699423313,188,1753.281914893617,901.85
infidelity,0.2371827207667264,1244,1310.572347266881,779.6
manslaughter,0.2727279600051222,2059,1111.111219038368,897.56
catfish,0.30069982563326825,923,1081.65872156013,601.79
twins,0.3317884957985046,8157,1036.7044256466838,605.55
devote,0.29161050650451487,7620,1550.4817585301837,697.03
drywall,0.3275644761368151,146,891.8424657534247,772.38
allusion,0.22153628050370852,1949,1890.5956900974859,639.67
tireless,0.2920320867212374,2685,1143.832402234637,735.3
victimization,0.2623318857070704,255,1676.6549019607844,957.35
headless,0.2591861741822719,1187,1324.486099410278,787.06
insolence,0.18679198190017113,451,1850.0864745011086,812.24
wrecking,0.27252269099412324,1538,1309.6384915474641,743.82
crossbones,0.2766829777059881,175,1113.4571428571428,696.76
sadist,0.19805378864460726,240,1120.2208333333333,776.04
apologetic,0.22521644412185893,1535,1740.115309446254,842.39
trouser,0.3017551018839544,2102,866.9595623215985,680.25
untouched,0.3120014822922785,4928,1388.6688311688313,726.15
plaintive,0.2108881593762109,967,1330.5677352637022,990.8
rink,0.2992424738055074,2196,825.7226775956284,706.69
dramatics,0.2654791533670391,588,1000.0034013605442,728.47
wigmaker,0.2640393083714409,17,1308.8235294117646,903.93
persecution,0.24144101232200701,8147,1509.5265741990918,789.53
fib,0.35376477170849724,368,1121.5027173913043,699.52
overflow,0.3581883721599563,4034,1355.8438274665345,727.03
crook,0.3299998734402208,3272,1230.7121026894865,675.91
abandonment,0.3005505514685151,4458,1847.602512337371,771.09
distinguishing,0.32664350316695373,6102,1910.5984922976074,861.47
descend,0.2875559582708346,7183,1318.124321314214,746.32
foliage,0.2900253165199129,5302,912.0777065258393,762.39
automation,0.2814421917137096,7205,1038.3461485079806,837.81
picket,0.2543674937183627,2179,1235.4915098669114,710.0
broil,0.3363437603573057,97,1129.1030927835052,700.27
swimmer,0.2956384633882583,2317,882.8860595597756,771.13
ornamentation,0.2905209195400563,904,1336.0188053097345,1004.81
subdivision,0.34932540020805003,1097,1953.4302643573383,908.55
humorist,0.20879856320920578,334,1176.1946107784431,937.56
pamphlet,0.2745426913157361,5302,1587.7776310826102,683.91
journeyman,0.2863639324350674,751,1315.1504660452729,939.45
afternoons,0.3028119394636737,6862,990.9981055085981,742.85
slotted,0.3458750898935161,2963,1082.4778940263247,733.62
molar,0.3560188470913664,599,1247.0,757.59
eradication,0.31114553762316766,3190,1550.8326018808777,868.13
underlay,0.34377641020497796,839,1450.9833134684147,765.33
camper,0.2886977726170813,1685,899.9264094955489,613.47
vandalize,0.2678515306152778,32,1082.40625,769.5
relieved,0.29219414901897406,10608,1474.5716440422323,808.29
communism,0.1988272740847527,5130,1764.4249512670565,763.97
forsaken,0.20684897220566167,1493,1693.5097119892832,722.55
heartthrob,0.21123035747384858,431,508.8955916473318,860.58
thermometer,0.3467644550350549,1877,1155.18273841236,919.9
bake,0.32467812976099397,4625,687.8977297297297,758.21
rubble,0.2886701497659585,4853,1268.9695033999587,726.66
undressed,0.25468581994739353,565,1162.9646017699115,696.03
radiology,0.31431082733992255,2460,1065.2678861788618,830.91
persist,0.34857664139150224,6827,1592.3087739856453,835.67
coral,0.35061491082837115,7518,1003.3120510774143,661.5
trivia,0.28956532092534626,3780,1010.5497354497354,642.73
dialect,0.28055068172112135,3881,1384.242205617109,748.94
fabricate,0.3416770979458988,861,1422.6190476190477,706.64
lavatory,0.274935064695425,1402,1162.274607703281,848.13
antibiotics,0.31371993848211954,7218,1013.7769465225824,788.84
resistible,0.27610172515973813,50,1024.94,854.55
botany,0.3289170464920391,2911,1264.33218825146,842.32
opener,0.27678596812172,6259,980.9744368109922,693.85
scrap,0.315809951156176,10477,1195.3163119213516,658.47
haystack,0.3024192531195592,602,1407.4584717607972,753.0
predictive,0.32352674978792473,4484,1436.0979036574488,786.9
suffrage,0.22448555250693739,1730,1569.7046242774566,790.46
tracker,0.3700107863030162,3533,988.4755165581659,796.03
scriptwriter,0.22887048538475238,1014,978.0029585798817,979.93
kindergarten,0.3016220455919733,1766,1352.788221970555,953.55
bargaining,0.2741766428142086,5392,1419.5552670623144,865.0
rattled,0.23006089816921838,1970,1307.2406091370558,735.36
cannot,0.271434635312394,13,1405.6153846153845,612.72
reclining,0.3163140362343451,1452,1017.3842975206611,760.88
trimmer,0.351452631461095,655,1095.7541984732825,675.71
bubbling,0.31755858218985455,2631,1057.4561003420752,617.52
nippy,0.2628791724950235,608,1035.8651315789473,804.89
mobilize,0.2595874631792985,959,2269.524504692388,711.42
rattles,0.28525191106796804,1132,1336.11925795053,680.83
prosperous,0.28622403881091585,8292,1473.5606608779547,805.56
paternity,0.2703318556865969,2684,1220.9593889716841,765.6
pronounce,0.2654309071506646,3000,1565.022,835.56
mouthful,0.27505602825352865,1405,1169.5430604982207,666.06
demonic,0.21323430674806154,1856,1347.979525862069,760.5
metaphysical,0.20841417559497083,3099,1926.1529525653436,895.87
beak,0.28671126395147295,1926,1110.372274143302,718.07
engraved,0.33411113097524925,4923,1083.795653057079,683.56
athletic,0.3345960740465569,9094,930.5371673630965,702.71
tease,0.29000019612275774,2410,1228.9253112033196,636.48
envious,0.2425774925079529,1682,1294.3983353151011,739.33
satire,0.21117207655490403,4257,1059.5386422363167,761.29
cheerless,0.18264938025926813,224,1558.424107142857,708.91
conceive,0.2698273469911443,5039,1880.97301051796,785.06
tolerate,0.33071785194281594,7969,1451.3939013678003,833.88
seamanship,0.2556829821206914,651,1050.774193548387,953.48
artillery,0.2775781711914931,6586,1444.0274825387185,766.87
intercollegiate,0.32047626116440486,853,1037.7010550996483,1105.96
coalmine,0.3191233367574962,156,1560.5384615384614,1008.54
invade,0.3028633556186272,4734,1586.9995775242924,671.26
responsiveness,0.31126724063883937,3625,1450.9478620689656,1096.47
elongated,0.3489762952435972,2001,1219.6916541729136,845.48
prosthesis,0.3291093563361783,662,1098.8187311178249,1041.48
seascape,0.3179926987389866,657,946.1248097412481,853.62
impart,0.33637171868254195,3047,1460.9865441417787,830.41
embryonic,0.3397311603955354,3459,1353.6215669268574,874.85
escapist,0.20976056674175145,528,1173.0757575757575,882.96
amidst,0.3040316297250911,8288,1215.7125965250966,888.37
quake,0.2910999001782913,2193,1189.5098039215686,669.48
arbor,0.36560203102193023,1351,1683.939304219097,644.13
bustling,0.2645602033586958,6306,806.5242626070409,763.19
reproachful,0.1912183747743433,120,1679.9583333333333,959.33
marksman,0.2563250288476307,624,1345.054487179487,832.07
detective,0.29327300859640215,10731,988.7504426428105,815.71
shrub,0.3095219816950354,3286,1026.4808277541083,744.44
repossess,0.2687384436524905,515,1396.5825242718447,846.82
procrastinate,0.23153987847310126,282,1222.2553191489362,892.03
periscope,0.28802365667135826,347,1147.6974063400576,1005.0
knockdown,0.3898123422705483,364,1199.5604395604396,826.09
politicize,0.199771718300758,27,2559.1111111111113,1045.86
reptile,0.32023002791133964,1610,1194.4894409937888,653.45
unequivocal,0.27813086463154313,2492,1955.128812199037,939.88
overtake,0.2975003479490313,3133,1297.6469837216725,676.56
inhibitor,0.3058876385773442,2666,1209.4504876219055,863.19
widower,0.31785049413647987,1325,1381.4347169811322,806.42
pie,0.3378625714444957,10362,992.9093804284887,664.91
fossilized,0.282563370757241,263,1487.9201520912547,839.89
stipulation,0.31154645071041775,1030,1939.6601941747572,787.73
bagged,0.32636225402154084,2379,1067.4997898276588,653.61
radar,0.3433994295646744,10504,1202.3953731911652,725.16
borderline,0.3500376763993795,2978,1446.349227669577,683.06
vendor,0.3236263002870984,9155,1101.0292736209722,676.78
overrun,0.30592315769190065,2249,1484.9568697198756,796.16
prognostic,0.23475333054706474,982,1577.3828920570265,846.64
repressed,0.24205046143362052,2120,1493.465566037736,653.62
riverbed,0.2756456313412734,455,1304.2725274725274,770.12
onside,0.2495275966136143,340,1413.629411764706,814.89
cottonmouth,0.2775149408779441,42,767.8571428571429,941.07
crescent,0.36119366740558057,8713,1139.6074830712728,804.0
discreet,0.3580102377944253,4991,994.6734121418554,764.85
ironic,0.24408300285806442,8381,1382.9717217515808,662.21
antler,0.2915332753162724,563,1285.6465364120781,789.19
handbill,0.2648183969317895,104,1345.75,745.79
recollect,0.2064744211901605,1247,1702.9230152365678,712.16
crane,0.3508560399930393,6693,1181.255939040789,726.47
skimming,0.3414436240261652,1232,1217.3758116883116,813.13
transmitter,0.325917523430821,4237,1086.3113051687515,649.59
extinguisher,0.3019585564357795,1120,970.3303571428571,834.86
generator,0.36121297994210194,10255,1131.6913700633838,643.2
patronizing,0.21610012551475563,353,1811.198300283286,806.13
disfigurement,0.32206429470972575,526,1132.2186311787073,956.33
wounding,0.2903582494425443,1622,1636.2053020961775,759.19
imitator,0.25024591332135865,198,1710.489898989899,1002.77
toe,0.34045986203518247,7045,1195.9724627395317,566.76
intrusion,0.33452946750113255,5116,1484.1297888975762,822.16
kettle,0.31444363422786104,6136,1046.8922750977836,723.1
ignorant,0.22160899202552606,9219,1733.5808656036447,683.31
blurred,0.33249501308389007,5178,1423.0210505986868,611.69
unannounced,0.30601759486271723,1590,1368.7798742138364,771.79
cohesive,0.3128938293261197,4413,1377.2179922954906,775.06
battlefront,0.2620724582314245,227,1259.784140969163,841.97
anecdote,0.22495916247835657,2345,1490.3257995735607,806.88
romanticism,0.2540799769802294,1948,1340.0200205338808,869.26
personable,0.30203344065130755,1000,1108.925,727.53
tilting,0.3526960085082537,1551,1199.9277885235333,773.0
colors,0.3536080121745238,8489,1200.1828248321358,574.07
revert,0.3406205926014252,4651,1586.702859600086,812.19
slum,0.2609213483303292,1833,1326.4839061647572,712.13
photosensitive,0.3214631829904891,327,1429.7125382262998,1128.29
churchgoing,0.18617374817494486,150,1669.42,945.59
prefix,0.32333065037616643,4399,1436.4737440327347,675.09
bankroll,0.263173461106206,416,1074.3533653846155,772.61
nervousness,0.3152423534229111,1685,1312.9454005934717,736.9
typecast,0.20169932790061113,286,939.006993006993,808.39
drowse,0.19150232019128446,34,1069.3235294117646,723.2
inconvenient,0.3009621861179336,3804,1599.0609884332282,818.59
invalidation,0.3063579701315076,231,985.6536796536797,903.54
repast,0.20667350108114207,405,1587.9703703703703,803.58
protectionist,0.1787159743805466,844,1830.6137440758293,1000.46
probing,0.3532203841812525,3331,1432.1627138997299,710.59
humpback,0.2310873129239482,685,1174.4919708029197,819.69
shoemaker,0.29302876082895957,1038,1727.5539499036609,675.82
pickle,0.3206161427977056,1341,1046.5473527218494,643.39
imposition,0.26631521646553513,5358,1960.877192982456,861.72
meaningfulness,0.20564133717429658,241,2381.448132780083,875.69
goodwill,0.31759890077432185,8490,1398.603062426384,740.31
captor,0.27610151513776726,323,1195.1919504643963,875.23
hazy,0.2672078049829373,2535,1283.2887573964497,640.37
mispronounce,0.2388878108328989,54,1210.2222222222222,962.38
pee,0.2421972310128704,1466,1003.2230559345157,700.16
lockout,0.35957655387155724,433,1323.6905311778291,672.94
indulge,0.2999441343595014,7153,1153.998741786663,799.09
afterbirth,0.3281967767044183,124,1025.4516129032259,806.39
junk,0.3172910315088205,9838,1080.6583655214474,657.09
clapper,0.29513861473057923,411,1359.4890510948906,700.81
unprofessional,0.27408408917659727,1217,1484.048479868529,943.71
utterance,0.22380360162545018,2046,2121.896383186706,888.44
munch,0.29846445283260026,1173,1056.2685421994886,757.75
investigative,0.3205277249902398,6101,1294.0980167185708,950.35
frugal,0.3102101143870346,1022,1149.325831702544,789.41
tuned,0.32488207881174536,7717,1133.7195801477258,662.03
condescend,0.18222115776448206,263,1654.1673003802282,949.48
dismemberment,0.2593328287942905,395,1726.4126582278482,1069.53
disorderly,0.2848163478690541,1690,1557.6739644970414,820.24
berry,0.39079882982582625,8744,1089.6443275388838,584.45
accelerator,0.36425979531377145,3071,1052.7889938130902,791.89
combustion,0.33027255964513114,5004,1171.0699440447643,861.63
lawless,0.27267373534737616,1464,1484.433743169399,674.29
muddy,0.27203033409996974,7828,1197.5715380684721,725.67
gum,0.3673995045300042,5700,960.791403508772,659.1
maddening,0.23051858060229985,570,1252.001754385965,712.11
palatable,0.32599034297042706,1830,1240.548087431694,829.58
tugging,0.22340959585664627,693,1234.965367965368,751.07
watercolorist,0.25934498947456813,18,605.1666666666666,1125.97
insider,0.3251202871721968,5124,1106.5860655737704,752.84
proponent,0.28405473171637874,1191,1881.0293870696894,851.5
streamer,0.3552920712298521,373,1024.7292225201072,688.03
profitability,0.26875724489891756,8566,1055.2846135886061,956.68
plagued,0.29964521186065174,3768,1357.688694267516,709.97
narrower,0.3520450167955743,4477,1647.0174223810589,772.3
corrupted,0.3070585018914686,4519,1703.5275503429962,764.18
fabled,0.26246079500045444,1632,1220.8848039215686,839.04
fatherless,0.23845524816583002,470,1577.031914893617,772.21
punching,0.3062815641534379,2361,1041.665396018636,666.94
apprehend,0.26178055237922,1285,2082.3307392996107,821.88
clipboard,0.2816228467378441,1771,1142.4884246188594,658.03
loathe,0.2320068263262019,1714,1301.6283547257876,650.52
glazing,0.3053185414855969,6492,789.4790511398644,683.52
metacarpal,0.3399718660971167,59,1750.2542372881355,1009.6
inception,0.33461399698727096,9394,1213.812114115393,814.48
taxed,0.2735812237200851,4736,1551.9909206081081,609.06
helmet,0.2989907696251788,6973,1007.7498924422773,631.84
wormhole,0.21976459522623357,263,1297.0950570342206,952.69
recursive,0.23066655249699144,1536,1764.7447916666667,875.22
transitive,0.23797543012425945,488,2079.098360655738,785.79
humanitarian,0.25135735627442557,9661,1420.021322844426,974.07
subjectivity,0.222149226398366,2312,1843.170847750865,954.09
ape,0.3017624102419345,2479,1246.9661153691004,620.38
obscurity,0.24974088943818115,3144,1477.590330788804,718.73
weighted,0.3585558558946748,6959,1397.7883316568473,639.18
pounding,0.2575907244898484,3576,1161.4535794183446,655.56
rabbi,0.2327807075211759,2574,1408.7929292929293,731.3
waterproofing,0.3325851070797903,666,941.9129129129129,793.7
moped,0.29768282696056647,965,1000.8290155440415,811.74
symptomatic,0.3438172002342694,3458,1504.827935222672,960.58
pains,0.31218018118468216,10426,1330.5446000383656,585.32
reconciling,0.3030182897285462,2187,1815.6840420667581,863.67
loony,0.2101815506699248,914,1143.8698030634573,803.92
equivocation,0.19775140291093782,342,2387.4941520467837,1037.12
sensory,0.3299729327404142,9983,1243.686567164179,698.09
turnout,0.27473168866581327,6107,1151.7414442443098,793.97
conceivable,0.2948408247179345,3873,1860.249935450555,700.75
defroster,0.2646225459908663,15,769.8666666666667,811.41
crayfish,0.31472067560849226,840,1044.622619047619,701.93
trunks,0.31242993014050713,2571,1172.7001166861144,573.0
furnish,0.3245911941038094,3936,1846.3262195121952,807.47
resumption,0.321328352078684,1916,2031.6372651356994,786.62
meander,0.28030203722973457,1399,1016.9292351679771,896.52
baldness,0.32624854136321685,487,953.3326488706366,651.59
inlet,0.3168287949611548,3299,1146.705971506517,810.26
horseshoe,0.33599176727299795,2563,1039.118611002731,923.67
rightward,0.28077773200910644,196,2251.887755102041,905.58
pullover,0.30651311219010496,309,1028.663430420712,872.13
suicidal,0.28438821381520174,3761,1274.2504653017813,816.2
overwhelm,0.2977309602443224,1955,1559.3421994884911,766.41
tango,0.30257935077890846,2516,1039.3998410174881,827.79
circled,0.27815622328600953,1626,1531.5854858548585,587.97
wean,0.31202845689725417,786,1425.5089058524172,730.33
paintwork,0.27082803267288413,1711,910.5178258328463,876.19
thinness,0.30186291317998076,357,1423.8487394957983,746.77
monogamy,0.2191535720570513,303,1326.4653465346535,786.47
unseeing,0.2072273898503734,86,1607.4418604651162,876.39
incursion,0.28714553332255127,970,1837.6453608247423,813.08
bellman,0.3166043550597202,190,1683.4052631578948,745.16
burrow,0.3345743092115052,1513,1226.235294117647,717.13
greasy,0.28533507860441076,3170,1076.73785488959,585.39
clique,0.22553814893058965,1294,1787.9992272024729,783.19
bland,0.29723725892628367,6144,1166.76953125,653.13
pessimism,0.23007569295614733,1610,1762.9515527950311,988.74
tumor,0.3098297405567982,1522,1547.2752956636004,618.0
broadminded,0.259138081565508,80,1223.625,1066.0
melting,0.35275201704834264,6777,1183.2592592592594,681.19
gobbler,0.2845143845548935,47,1654.4468085106382,847.16
sigma,0.3875827315953244,2854,1229.384372810091,801.55
temporize,0.1457921855849953,20,1974.25,760.46
shilling,0.2500941947081328,2348,1502.1086030664396,705.59
smoothing,0.3680194072652249,2283,1258.6079719667105,659.76
cavalryman,0.2385108899550994,127,1457.4645669291338,936.42
spirituality,0.25003965664689254,7341,1188.263724288244,774.27
burglar,0.2997607806239252,2383,989.981535879144,724.39
speck,0.2921081254146508,1004,1420.6633466135459,820.28
barbarous,0.1974190581844562,1084,1880.578413284133,999.82
tedious,0.26539745287931604,6775,1369.7766789667896,832.52
familiarize,0.36102670523147345,845,1547.905325443787,865.06
vulgar,0.2531656310827148,3027,1544.2504129501156,658.26
homogeneous,0.31955127241603276,2915,1915.5296740994854,835.09
gladness,0.18259199926236086,870,1827.3172413793104,724.47
lounging,0.25978335054650536,1185,1377.2278481012659,859.56
buggy,0.3053313989875032,2930,1062.6228668941978,676.81
flip,0.33042558607364375,6840,1083.998245614035,718.35
elective,0.3160233189535069,4524,1061.82824933687,713.25
hurting,0.2570185296144088,3617,1264.4249377937517,739.5
airy,0.30186302318732755,5718,873.0841203217908,727.79
zombie,0.24336909136394094,2453,962.3473298002446,737.56
cabbage,0.33627381463004785,3809,998.6421632974534,630.9
miscarry,0.2766564933860627,172,1602.0348837209303,879.29
impotence,0.3180662909286848,1869,1441.3285179240236,734.53
lighthearted,0.2545800373783517,781,1175.3060179257363,847.81
outweigh,0.3126012977157906,4713,1525.1135158073414,807.31
sculpt,0.33469339209495996,572,799.5157342657343,726.73
windstorm,0.35394401688962723,62,1937.1129032258063,684.21
lukewarm,0.3075893014942402,1393,1269.832017229002,723.28
pyramid,0.34683150610248376,5579,1234.077791718946,734.48
manmade,0.3278556198727971,773,1304.17723156533,905.65
meteor,0.3062580146609466,1688,1410.0325829383887,707.3
antagonist,0.3664769620805679,1188,1588.412457912458,835.3
interfering,0.34261159648127426,4224,1621.761600378788,1100.8
overcast,0.2655249014908083,2260,1403.0783185840708,689.74
stepsister,0.27481843831879077,95,1023.0947368421052,741.91
jive,0.2821175180205805,1358,1127.7025036818852,775.68
dominion,0.27360175319635316,3106,1789.2611075338054,759.85
liner,0.3491212549343884,5443,945.892889950395,686.33
emotionality,0.20581736878738108,129,1978.3023255813953,879.14
stinging,0.3323300228165721,1940,1149.1489690721648,720.94
ankle,0.33579072514585306,6982,1088.6965052993412,658.48
nativity,0.2949272762145209,2299,1295.6046107003044,844.84
trigonometry,0.2653726900174576,609,1257.5467980295566,933.64
streaked,0.25949737522988275,910,1966.4142857142858,804.47
reversed,0.34829911195324753,10541,1581.86452898207,711.09
brink,0.2951827010377062,5101,1394.1191923152323,629.76
boating,0.2924824303424226,5335,885.0209934395501,663.19
narrator,0.2085540669373772,3555,1211.5592123769338,724.53
wanderer,0.2682307538684646,1137,1376.9982409850484,727.44
wrath,0.24082143745559628,6208,1504.1137242268042,705.66
restatement,0.286526396519612,654,1953.6207951070337,806.84
scornful,0.21048885547646212,517,1774.0058027079303,729.19
assemblyman,0.28960890553083635,123,1320.9349593495936,1089.13
gastronomy,0.30271421351337957,589,892.6638370118845,920.92
crosswalk,0.33564607448515393,73,1792.835616438356,642.47
dishonor,0.1888911640597624,196,1904.3979591836735,805.63
undisturbed,0.3268505002049944,3014,1430.7654280026543,872.29
disapprove,0.2466945725891028,905,1731.6817679558012,782.97
framer,0.31498281246953674,192,971.6510416666666,705.14
starter,0.3896134807092485,10514,881.89899182043,691.85
jealousy,0.22509266209046258,4154,1376.8690418873375,759.84
tiebreaker,0.2751856056914016,129,1136.2790697674418,860.33
flares,0.3467423238615218,2355,1205.2242038216561,700.61
deodorize,0.2829797692659637,17,629.3529411764706,852.34
racer,0.25891008907041396,3400,787.8973529411765,638.97
misbehave,0.26339839137038473,466,1504.8798283261804,922.84
midday,0.31524150031006126,6759,1265.9618286728805,900.5
pumpkin,0.3380646459850723,2252,860.3015097690941,628.55
outhouse,0.2949188420378654,612,1190.186274509804,688.9
fiesta,0.32214400414795386,2215,916.0654627539503,737.13
glisten,0.2670666156546818,239,1192.7531380753137,824.62
collarbone,0.3158444233529673,431,906.1809744779582,768.23
secular,0.24471952289730445,10885,1549.516674322462,762.78
disarrange,0.20043541173249366,13,1616.4615384615386,752.94
vanishing,0.2940142870212944,2275,1433.3652747252747,687.28
disinfect,0.32225489541996805,731,899.2010943912449,717.94
fart,0.20486726936956287,1171,903.7395388556789,694.24
chill,0.3199831782640047,8898,967.3341200269723,656.76
belly,0.3040248944033013,7338,1107.3085309348596,559.94
arthritis,0.3346044552763123,8896,944.0320368705036,885.62
dynasty,0.2811006462065813,4824,1279.12043946932,747.5
anatomic,0.337052784915158,325,1616.0369230769231,837.88
hovering,0.2829897768447225,3252,1388.430504305043,810.9
rogue,0.31766339587478737,6431,1273.4478308194682,779.29
upstage,0.21433518194548784,380,1146.3052631578948,674.62
ginger,0.3562801252331234,6859,822.0311998833649,792.53
dependable,0.3701156346920195,3080,1140.2694805194806,682.7
juicy,0.32926710101526047,3169,874.1565162511833,589.42
abominable,0.22835781365635835,1028,1589.908560311284,829.07
fractional,0.3444805355650723,1678,1540.8182359952325,778.9
degenerative,0.31173430395480634,1924,1282.1252598752599,967.72
offshoot,0.3021453201535413,1330,1536.0541353383458,830.94
detectable,0.3525832439516149,2423,1628.183243912505,841.37
sweetie,0.21955772893670056,858,1120.495337995338,655.73
brimstone,0.29010854818411924,1045,1399.709090909091,784.59
lowdown,0.3180589675129998,1477,719.0358835477319,728.72
descending,0.3250100181798983,7432,1395.1737082884822,742.56
disassemble,0.30375830233260537,608,1266.5427631578948,959.5
asymmetric,0.36868224956887,2421,1474.036761668732,900.17
saddled,0.2689778614952498,1123,1358.1843276936777,702.84
easing,0.35291960472245615,3540,1467.018361581921,721.69
earnest,0.2625704182151796,7409,1464.146848427588,722.48
strangeness,0.20637848095736444,1166,1505.9210977701543,858.85
battleship,0.27011457338414424,1438,1288.153685674548,694.56
calcium,0.34748291978676693,7401,996.2418592082151,655.38
unleashed,0.28814608328699753,3758,1343.8645556146887,639.39
roadside,0.3267113295862069,7561,1248.5345853723052,645.82
bratwurst,0.2573727782414873,119,876.7647058823529,821.52
forklift,0.3117181218980409,881,862.1464245175937,756.53
indigent,0.2695466399368744,314,2047.78025477707,840.19
horned,0.2731533176134844,1026,1577.5029239766081,755.35
inherit,0.317321918965705,6351,1396.852779089907,716.74
miraculous,0.246184011366653,4221,1587.4096185737976,936.25
indivisible,0.2652423750046008,883,2262.6953567383916,903.07
indigestion,0.31142217499004793,1482,1002.1153846153846,794.65
unskilled,0.2583686177720366,2141,1671.464736104624,724.31
falsehood,0.21153345262619813,1711,2132.3798947983637,764.52
underpass,0.2784729365756997,889,870.5556805399325,761.26
inconsistency,0.3008944378909653,3374,2075.4220509780675,872.14
objector,0.2544186297127209,820,1659.3487804878048,758.45
fluster,0.21345366598819862,65,1399.323076923077,644.94
pedestal,0.3193657552296371,2887,968.302043643921,808.77
sharpener,0.3070424723299775,350,1026.9857142857143,808.75
substituting,0.3553372764416409,2727,1746.7367070040336,965.97
calculating,0.34397312469297364,10550,1433.6191469194314,742.59
materialist,0.1679970029206769,1100,2125.9463636363635,907.56
glamorize,0.24367290631602068,27,1779.1851851851852,774.38
judiciary,0.23864080780424168,3517,1546.7079897640035,821.9
waterworks,0.30219826762979385,921,1355.2084690553745,783.13
provocation,0.26251569230769856,2112,1708.3451704545455,882.63
untimely,0.2743919049409848,2386,1295.9895222129087,942.89
screw,0.3280836420564662,8265,1030.5601935874167,667.18
periphery,0.3350297185510023,3046,1811.5883125410373,758.07
discordance,0.30177354030675757,118,2097.9745762711864,869.39
cougar,0.3474282164635626,312,910.8685897435897,681.71
collector,0.33650602534889856,9298,1085.6557324155733,706.38
tollhouse,0.25261203635386803,83,1293.6024096385543,756.69
buster,0.3584775938519413,2450,1077.8465306122448,608.72
infect,0.3485128306535339,3013,1244.248257550614,643.52
misfortune,0.2507220188962491,4406,1451.8674534725374,785.5
brunch,0.2813055417609444,1169,806.3353293413173,899.73
depressant,0.26973776316072207,302,1160.3112582781457,930.57
illustrious,0.28514324604956603,4126,1222.636451769268,1020.61
statesman,0.24867891805403416,3947,1447.8191031162908,678.63
costumer,0.3301821837864141,76,1128.842105263158,774.15
preferential,0.34288194531332555,3756,1420.9984025559106,899.57
transpose,0.3463738195320016,869,1392.6064441887227,999.04
suede,0.29961711198042407,1724,1165.6461716937356,758.39
warlord,0.24987130854662548,617,1390.2009724473257,840.19
thousandfold,0.24297664830672125,82,1554.5487804878048,1224.15
waving,0.22785698091887563,6304,1296.2033629441623,726.39
onetime,0.3270163375755927,235,1207.4553191489363,792.23
soluble,0.34665414288317925,3151,1141.7197715011107,707.52
obstetric,0.2856866067272463,1496,873.524064171123,1182.59
rant,0.2120829690578244,5342,1043.4760389367277,607.0
immunization,0.324636347112064,548,1675.1605839416059,849.52
clumsy,0.2588094410779981,3828,1346.1449843260189,702.52
bagful,0.2492431857066387,145,1111.6413793103447,765.59
pardoner,0.2663742460578542,101,1237.1089108910892,932.92
chord,0.27147442307189923,5209,1105.050105586485,629.16
await,0.32314317663445236,9394,1412.110708963168,668.25
piping,0.39247631459201815,3387,1075.1399468556244,771.15
magnify,0.3557286070012297,1219,1674.5726004922067,737.85
frosty,0.27711944002580485,2001,1156.167916041979,632.83
skeptical,0.2565839497669404,2129,1872.9816815406293,723.81
liberalism,0.18767295238307605,2888,1914.2735457063711,864.6
phosphate,0.3446567832436533,2305,1162.8637744034706,851.27
spoon,0.3554928398856476,6234,824.4367982034007,675.75
irritable,0.29476462900255135,2494,1048.6768243785084,724.97
forwards,0.3339365637689531,10669,1203.8524697722373,633.09
pureblood,0.29263807486108206,4,1936.0,866.58
observant,0.2581911385932842,1514,1379.4464993394981,779.39
statesmanlike,0.15626914968813563,107,1666.0280373831777,1091.67
computational,0.2594534678188285,10003,1114.1053683894831,885.62
evasion,0.3024505014458412,2038,1848.6413150147202,780.32
motherland,0.260235365978157,533,1506.439024390244,699.0
repression,0.226948868703897,5275,1638.8538388625593,759.2
joyful,0.2514289539592967,3737,1298.120952635804,604.85
discriminate,0.2834347840456056,6096,1473.6966863517061,783.18
militarization,0.19054499902969427,171,2346.964912280702,1006.36
timepiece,0.296567166669653,359,995.7855153203343,788.88
discourteous,0.25772233446613246,223,1829.6860986547085,879.35
remand,0.278470484031649,1392,1286.8591954022988,868.59
irremovable,0.2908262360997464,54,1980.4444444444443,1048.13
vividness,0.21752533199158777,382,1663.3560209424083,812.47
coupon,0.3671583432546817,1500,1026.922,646.91
capsize,0.24886023150364261,520,1072.925,852.37
reassurance,0.3200003571757833,7810,1142.7761843790013,823.7
severance,0.30141141979193287,1508,1657.9104774535808,816.83
edgewise,0.3374270333748257,60,1714.7666666666667,846.1
doctrinal,0.20106827506499658,2224,2029.7482014388488,844.92
roulette,0.31401123838067185,2509,780.8712634515744,835.55
centering,0.33517669100516356,813,1457.8917589175892,767.76
starboard,0.22992597339466023,1825,1123.3490410958905,727.17
crate,0.29176239995701025,1733,1116.1690709751874,726.28
winged,0.295233735720115,2617,1335.9209017959495,759.58
formless,0.1922252610586564,546,1944.2179487179487,795.38
vertebrate,0.32647657328363183,1313,1359.976389946687,933.1
handicraft,0.3123318697123537,679,1371.5729013254786,914.93
probate,0.3043419826449929,2672,1024.7080838323354,754.34
shamed,0.25662928263210066,1203,1242.737323358271,759.16
rubdown,0.29332156118789515,20,712.85,887.63
strident,0.25198612246100854,1200,1582.0966666666666,696.16
rosebud,0.3475819591667979,385,938.7636363636364,735.12
daze,0.22849857021917047,759,1173.292490118577,610.0
entirety,0.3224410283877718,7082,1689.0922055916408,845.07
sorcery,0.2306417600662979,939,1447.5186368477102,739.0
chipmunk,0.29804299396687484,285,1171.4,686.75
isolationist,0.19512173234830488,398,1985.2537688442212,1090.0
lovesick,0.1998631259642905,224,941.2321428571429,722.67
diabolic,0.20647907731006984,134,1850.1716417910447,819.58
incomprehensible,0.2367533163948052,3067,1663.8532768177372,967.48
armored,0.2725191704981578,836,1961.517942583732,702.44
bootlegger,0.27556523392025895,77,808.4675324675325,894.03
stencil,0.33658302439776644,721,866.2968099861304,783.56
quotable,0.23802229559269347,435,1074.3126436781608,814.31
resurrection,0.20156226667354846,8696,1553.0803817847286,845.0
payroll,0.2795688943046025,7985,1054.0559799624295,624.71
hiker,0.2824250134320675,379,985.5910290237467,630.97
molding,0.3549204607195921,376,1418.1968085106382,745.53
infringement,0.31242522271130974,6663,1213.6929311121116,906.17
poorhouse,0.2400287809415005,268,1201.0149253731342,788.88
elevator,0.31263781122299333,2300,1217.0808695652174,642.63
whorehouse,0.23341026310383503,117,883.5384615384615,921.57
pliers,0.32972123454405866,1072,1703.5485074626865,789.27
competitor,0.3363158934239307,8583,1110.81148782477,843.76
importer,0.34061402097800586,2294,1191.3007846556234,697.59
mule,0.31105897512318137,1795,1210.3019498607243,672.06
bereavement,0.30563761419857954,5584,971.0041189111748,969.75
countrywoman,0.2489602990061623,70,1083.3142857142857,980.88
waged,0.24427902638006851,3140,1766.5146496815287,657.63
icy,0.27906893464180005,4437,1142.632860040568,602.28
misrepresentation,0.27671366253661955,2911,1589.2284438337342,1240.26
haphazard,0.2860117865027762,1747,1663.6645678305667,841.9
sofa,0.28471703138882964,9197,872.8497336087855,722.5
medial,0.38392006368454096,1192,1382.9756711409395,719.68
triggered,0.3551108858662246,9154,1421.8187677518024,764.16
phonograph,0.2627240210937681,321,1583.0778816199377,854.86
sweating,0.3243887988821294,3883,1173.8539788823075,715.06
blimp,0.258771154324064,273,1175.6080586080586,728.45
shelled,0.34010288401939937,1155,1321.3948051948053,677.66
convulsion,0.3085064689479158,404,1576.2450495049504,774.97
variant,0.3637605505150463,8261,1561.3799782108704,720.03
seawall,0.27468788718320547,235,1578.212765957447,640.91
primer,0.38219298671692137,3642,1157.3511806699616,833.06
sledge,0.28148952021422347,1242,1047.0056360708534,711.21
shrug,0.24176976548243465,1860,1357.9225806451614,708.77
oversexed,0.21027331411571137,85,1044.9529411764706,797.77
coordinate,0.33938657850202025,9012,1431.3988015978696,837.52
peaceable,0.2498474272131628,643,1950.50233281493,930.13
forefinger,0.25835343943224415,593,1300.9325463743676,875.7
broach,0.3219035035499853,532,1396.046992481203,827.28
frost,0.3609946398817192,10593,1110.4186727083923,618.63
spotlight,0.3396778802583377,10794,978.0087085417824,662.34
spiritualism,0.20009511332307872,732,1646.061475409836,809.38
congruity,0.279659176163292,109,2493.880733944954,818.52
embalm,0.2540963279992006,64,1436.453125,760.35
unmolested,0.21983665172785047,395,1757.1974683544304,900.48
migrant,0.3216036055254907,5453,1339.0709701081973,730.1
goggle,0.31618735988482793,366,1091.4890710382513,748.26
unimpeachable,0.22968510853507668,308,1866.5292207792209,1210.19
dusky,0.2568919951772571,1134,2026.0934744268077,770.85
alcoholic,0.3464680981905787,6502,1014.4024915410643,867.76
elope,0.22750631683491468,201,1229.3432835820895,836.48
footsie,0.24096690120755265,320,732.4,952.24
imprison,0.24135542385486966,779,1588.594351732991,865.39
stellar,0.33369746650829557,3202,1069.5727670206122,763.41
lifelike,0.32972004941911753,891,987.2525252525253,692.94
fixture,0.28986145927771584,8775,919.2181196581197,705.94
accidental,0.36806347764023484,10571,1393.7241509790938,691.0
madman,0.21240702154916036,1507,1346.0617120106172,858.0
selfish,0.21927226838234434,7036,1467.7710346787949,661.85
unify,0.31202826715811294,1420,1846.0302816901408,666.42
smirk,0.18481802116939725,658,1186.018237082067,732.41
substitution,0.3865983964613419,5895,1771.7516539440203,853.15
parrot,0.2957386513521065,3515,1364.6332859174966,708.94
stimulant,0.31845110966721246,1362,1236.481644640235,843.03
disastrous,0.28098809780626977,10280,1498.8290856031128,780.88
tinker,0.2984722852660887,1835,1361.4850136239781,847.19
newsman,0.22063499820308421,143,1218.4195804195804,811.42
tagged,0.34827185993201726,4109,1257.8590898028717,702.13
supernova,0.3098326937197122,1261,1096.6161776367962,855.24
venom,0.30899596956585296,1769,1239.9321650650086,780.59
hurtful,0.23100355777406667,1017,1388.3028515240906,731.28
predominant,0.3584965135006444,4332,1809.499538319483,789.09
pencil,0.32649019189294015,8987,1022.102147546456,614.7
wordplay,0.2232123294695481,704,1062.8678977272727,743.53
swank,0.2553916953219922,314,832.8566878980891,823.17
yielding,0.366528039571855,3762,1663.63769271664,657.64
visualization,0.3002534525709956,2583,1258.604723190089,826.14
abnormal,0.35081004600534305,8691,1262.4786560810032,684.91
parishioner,0.21954889927146679,659,1252.576631259484,942.04
foam,0.361199011911988,7700,910.8887012987013,756.36
newsflash,0.3276271996216107,631,1279.1774960380349,894.66