-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature_score.p
More file actions
2399 lines (2399 loc) · 163 KB
/
Copy pathfeature_score.p
File metadata and controls
2399 lines (2399 loc) · 163 KB
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
{'abandon': {'0': 5.854802727258863e-05, '1': 5.854802727258863e-05},
'abil': {'0': 0.000775716136803167, '1': 0.000775716136803167},
'abl': {'0': 5.2586068430771494e-05, '1': 5.2586068430771494e-05},
'absolut': {'0': 0.0002970562070624723, '1': 0.0002970562070624723},
'absorb': {'0': 0.0008965314627513535, '1': 0.0008965314627513535},
'abstract': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'absurd': {'0': 0.0002272993924532969, '1': 0.0002272993924532969},
'absurdist': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'abus': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'academi': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'accent': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'accept': {'0': 0.00022192323039736997, '1': 0.00022192323039736997},
'access': {'0': 0.00022192323039736997, '1': 0.00022192323039736997},
'acclaim': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'accompani': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'accomplish': {'0': 0.0012740341073466173, '1': 0.0012740341073466173},
'account': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'across': {'0': 3.371874641691565e-05, '1': 3.371874641691565e-05},
'act': {'0': 6.0685193631752335e-05, '1': 6.0685193631752335e-05},
'action': {'0': 0.0008562393676898629, '1': 0.0008562393676898629},
'actor': {'0': 2.9009573276398987e-05, '1': 2.9009573276398987e-05},
'actress': {'0': 0.0003349672485595057, '1': 0.0003349672485595057},
'actual': {'0': 0.00040399709860030903, '1': 0.00040399709860030903},
'acut': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'adam': {'0': 0.00044171491467279964, '1': 0.00044171491467279964},
'adapt': {'0': 0.00020562609057566046, '1': 0.00020562609057566046},
'add': {'0': 0.00010156738048108652, '1': 0.00010156738048108652},
'addit': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'address': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'adequ': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'admir': {'0': 0.0001696210464271346, '1': 0.0001696210464271346},
'admit': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'adolesc': {'0': 0.0004352665718591404, '1': 0.0004352665718591404},
'ador': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'adult': {'0': 0.00028102556944323027, '1': 0.0002810255694432304},
'advanc': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'advantag': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'adventur': {'0': 0.00010548731144082054, '1': 0.00010548731144082054},
'aesthet': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'affabl': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'affect': {'0': 0.001674733414439923, '1': 0.001674733414439923},
'affirm': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'afford': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'afloat': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'african': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'afternoon': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'age': {'0': 0.0012043732390189152, '1': 0.0012043732390189152},
'aggrav': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'ago': {'0': 0.0002354512254074785, '1': 0.0002354512254074785},
'ahead': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'aim': {'0': 0.00016729451340536245, '1': 0.00016729451340536245},
'aimless': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'al': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'alabama': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'albeit': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'alien': {'0': 0.0002991618332768035, '1': 0.0002991618332768035},
'aliv': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'all-tim': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'all-too': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'allen': {'0': 0.00011724239474884189, '1': 0.00011724239474884189},
'allow': {'0': 0.00037068327321895626, '1': 0.00037068327321895616},
'allur': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'allus': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'almost': {'0': 0.00012936301236966634, '1': 0.00012936301236966634},
'alon': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'alreadi': {'0': 0.0013357693782262768, '1': 0.0013357693782262766},
'also': {'0': 0.001911717542069159, '1': 0.001911717542069159},
'altern': {'0': 0.0002991618332768035, '1': 0.0002991618332768035},
'although': {'0': 2.7807871269544548e-05, '1': 2.7807871269544548e-05},
'alway': {'0': 0.0009747682841612911, '1': 0.0009747682841612913},
'amaro': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'amateurish': {'0': 0.0007085766563531188, '1': 0.0007085766563531188},
'amateurishli': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'amaz': {'0': 0.0012423396513458168, '1': 0.0012423396513458168},
'ambigu': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'ambit': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'ambiti': {'0': 0.00022899473685475652, '1': 0.00022899473685475652},
'america': {'0': 0.0002593380496674224, '1': 0.0002593380496674224},
'american': {'0': 0.0004767018359058848, '1': 0.0004767018359058848},
'amid': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'among': {'0': 0.00020505627363090733, '1': 0.00020505627363090733},
'amount': {'0': 0.00019212419952770968, '1': 0.00019212419952770968},
'amus': {'0': 0.0005108448099883766, '1': 0.0005108448099883766},
'analyz': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'anchor': {'0': 0.0007010547751612364, '1': 0.0007010547751612364},
'anger': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'angl': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'angst': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'anim': {'0': 0.0002616099465438354, '1': 0.0002616099465438354},
'ann': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'anoth': {'0': 0.001003827555678191, '1': 0.001003827555678191},
'answer': {'0': 0.0006533808196634105, '1': 0.0006533808196634105},
'anthoni': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'antic': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'antidot': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'anybodi': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'anyon': {'0': 0.00033944269452880027, '1': 0.00033944269452880027},
'anyth': {'0': 0.000728908999008338, '1': 0.0007289089990083378},
'ape': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'appal': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'appar': {'0': 0.0010319263127043254, '1': 0.0010319263127043254},
'appeal': {'0': 0.0001895893220006051, '1': 0.000189589322000605},
'appear': {'0': 0.0002505197759162714, '1': 0.0002505197759162714},
'appli': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'appreci': {'0': 0.0003829506619953178, '1': 0.0003829506619953178},
'approach': {'0': 7.263258594259522e-05, '1': 7.263258594259516e-05},
'apt': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'arc': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'ardent': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'area': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'aren': {'0': 0.0001340787436739294, '1': 0.00013407874367392944},
'aristocrat': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'arm': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'around': {'0': 2.622445414123838e-05, '1': 2.622445414123838e-05},
'arriv': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'art': {'0': 0.0003836336032811414, '1': 0.0003836336032811414},
'articul': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'artifici': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'artist': {'0': 0.00029887017069409895, '1': 0.00029887017069409895},
'asid': {'0': 0.0001340787436739294, '1': 0.00013407874367392944},
'ask': {'0': 2.9627069161489503e-05, '1': 2.9627069161489503e-05},
'aspect': {'0': 0.0008329495689355746, '1': 0.0008329495689355746},
'aspir': {'0': 0.00018935641756156975, '1': 0.00018935641756156975},
'assassin': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'assur': {'0': 0.0007010547751612364, '1': 0.0007010547751612364},
'astonish': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'athlet': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'attach': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'attal': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'attempt': {'0': 0.0016793182507628755, '1': 0.0016793182507628755},
'attend': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'attent': {'0': 0.0004492229497703326, '1': 0.0004492229497703326},
'attitud': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'attract': {'0': 0.00013967528860770882, '1': 0.00013967528860770882},
'audaci': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'austin': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'australian': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'auteuil': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'authent': {'0': 6.716734336841565e-05, '1': 6.716734336841565e-05},
'auto': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'automat': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'averag': {'0': 6.716734336841565e-05, '1': 6.716734336841565e-05},
'avoid': {'0': 5.581482181476387e-05, '1': 5.581482181476387e-05},
'aw': {'0': 0.001119197530087896, '1': 0.001119197530087896},
'award': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'away': {'0': 7.941133383548382e-05, '1': 7.941133383548382e-05},
'awesom': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'awkward': {'0': 9.589748989797495e-05, '1': 9.589748989797495e-05},
'bad': {'0': 0.011641606472974046, '1': 0.011641606472974044},
'baffl': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'bag': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'balanc': {'0': 0.0009798618632735196, '1': 0.0009798618632735196},
'ball': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'ballet': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'ballot': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'band': {'0': 0.0002656214558237066, '1': 0.0002656214558237066},
'bang': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'banter': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'bar': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'bare': {'0': 0.000510478617693281, '1': 0.000510478617693281},
'barrel': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'barri': {'0': 0.00022192323039736997, '1': 0.00022192323039736997},
'bartlebi': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'basi': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'basic': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'battl': {'0': 0.0004352665718591404, '1': 0.0004352665718591404},
'bear': {'0': 0.001288020972758005, '1': 0.001288020972758005},
'beat': {'0': 9.995417145229054e-05, '1': 9.99541714522906e-05},
'beauti': {'0': 0.004457389199311589, '1': 0.004457389199311589},
'becam': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'becom': {'0': 0.0006575120201159075, '1': 0.0006575120201159075},
'beg': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'beguil': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'behind': {'0': 0.00011750767780551005, '1': 0.00011750767780551005},
'belli': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'belong': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'ben': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'beneath': {'0': 0.00035401107864677106, '1': 0.00035401107864677106},
'bent': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'besid': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'best': {'0': 0.002800837434394839, '1': 0.002800837434394839},
'bet': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'betray': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'better': {'0': 0.0005865989677154024, '1': 0.0005865989677154024},
'beyond': {'0': 0.0003288650154867162, '1': 0.0003288650154867162},
'bibl': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'big': {'0': 3.5884996121145446e-05, '1': 3.5884996121145446e-05},
'big-screen': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'bigger': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'biggest': {'0': 0.00033728554434091484, '1': 0.00033728554434091484},
'binoch': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'bird': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'birot': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'birthday': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'bit': {'0': 0.00015870658283245655, '1': 0.00015870658283245655},
'bite': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'bitter': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'bizarr': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'black': {'0': 0.0003288650154867162, '1': 0.0003288650154867162},
'blade': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'blame': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'bland': {'0': 0.0012196089225704138, '1': 0.0012196089225704136},
'blank': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'blast': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'blaxploit': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'bleak': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'blend': {'0': 0.0002593380496674224, '1': 0.0002593380496674224},
'bless': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'blind': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'blith': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'blockbust': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'bloodi': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'blow': {'0': 0.00044171491467279964, '1': 0.00044171491467279964},
'blue': {'0': 8.962670040178061e-05, '1': 8.962670040178067e-05},
'blur': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'boat': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'bodili': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'bogu': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'boister': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'bold': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'bollywood': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'bomb': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'bond': {'0': 2.9627069161489503e-05, '1': 2.9627069161489503e-05},
'bone': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'book': {'0': 0.00022285190551651728, '1': 0.00022285190551651728},
'boom': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'border': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'bore': {'0': 0.005208228536391692, '1': 0.005208228536391692},
'borstal': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'bother': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'bounc': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'bourn': {'0': 0.0007010547751612364, '1': 0.0007010547751612364},
'breakdown': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'breath': {'0': 0.0001297771356465214, '1': 0.00012977713564652133},
'breezi': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'bridg': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'brief': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'bright': {'0': 5.2586068430771494e-05, '1': 5.2586068430771494e-05},
'brillianc': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'brilliant': {'0': 0.0004151680796705072, '1': 0.0004151680796705073},
'brilliantli': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'brim': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'bring': {'0': 0.0018570342278910466, '1': 0.0018570342278910466},
'brisk': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'british': {'0': 6.716734336841565e-05, '1': 6.716734336841565e-05},
'broomfield': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'brought': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'bruce': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'brutal': {'0': 0.00016729451340536245, '1': 0.00016729451340536245},
'bubbl': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'buddi': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'budget': {'0': 0.00033728554434091484, '1': 0.00033728554434091484},
'buff': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'built': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'bullet': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'bullock': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'bump': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'bunch': {'0': 0.00011756167172345114, '1': 0.00011756167172345114},
'burst': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'busi': {'0': 0.00013967528860770882, '1': 0.00013967528860770882},
'bust': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'by-th': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'byler': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'c': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'cage': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'cain': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'calcul': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'camouflag': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'candid': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'cann': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'cannot': {'0': 5.900503750176005e-05, '1': 5.900503750176005e-05},
'capac': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'caper': {'0': 0.0005723729327261852, '1': 0.0005723729327261852},
'capit': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'captiv': {'0': 0.0007010547751612364, '1': 0.0007010547751612364},
'captur': {'0': 0.0014174720148010151, '1': 0.0014174720148010151},
'car': {'0': 0.0006667254219752799, '1': 0.0006667254219752799},
'card': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'care': {'0': 5.1381710164573606e-05, '1': 5.1381710164573606e-05},
'career': {'0': 4.636285793230331e-05, '1': 4.636285793230331e-05},
'carmen': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'carri': {'0': 0.00022899473685475652, '1': 0.00022899473685475652},
'cartoon': {'0': 0.00037929464616311733, '1': 0.0003792946461631172},
'cartoonish': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'case': {'0': 0.00019849133791451405, '1': 0.00019849133791451405},
'cast': {'0': 0.0011067868229571363, '1': 0.0011067868229571363},
'casual': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'catch': {'0': 0.0001525214384448294, '1': 0.00015252143844482935},
'categori': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'cathol': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'caught': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'cautionari': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'celebr': {'0': 0.0006844972997000363, '1': 0.0006844972997000363},
'central': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'centuri': {'0': 0.0002593380496674224, '1': 0.0002593380496674224},
'certain': {'0': 5.2586068430771494e-05, '1': 5.2586068430771494e-05},
'certainli': {'0': 2.7807871269544548e-05, '1': 2.7807871269544548e-05},
'cgi': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'challeng': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'chan': {'0': 0.00033728554434091484, '1': 0.00033728554434091484},
'chanc': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'chang': {'0': 0.00013465127827751036, '1': 0.00013465127827751036},
'channel': {'0': 0.00033728554434091484, '1': 0.00033728554434091484},
'charg': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'charisma': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'charismat': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'charl': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'charlott': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'charm': {'0': 0.0020646239128722355, '1': 0.0020646239128722355},
'charmer': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'chase': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'chateau': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'cheat': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'cheek': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'cheer': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'chees': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'cheesi': {'0': 0.00011756167172345114, '1': 0.00011756167172345114},
'chelsea': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'chemistri': {'0': 0.00011724239474884189, '1': 0.00011724239474884189},
'chest': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'chew': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'chicago': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'chick': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'chief': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'child': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'childlik': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'children': {'0': 2.676267509895135e-05, '1': 2.676267509895135e-05},
'chill': {'0': 0.0005007923517433019, '1': 0.0005007923517433019},
'chilli': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'china': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'chines': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'choic': {'0': 0.0005488409014463334, '1': 0.0005488409014463335},
'choos': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'chosen': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'chri': {'0': 0.00018935641756156975, '1': 0.00018935641756156975},
'christian': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'christoph': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'chronicl': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'chuckl': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'church': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'cia': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'cinema': {'0': 0.0021857607682894743, '1': 0.0021857607682894743},
'cinemat': {'0': 0.00013197025542457442, '1': 0.00013197025542457442},
'cinematographi': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'circuit': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'citi': {'0': 9.995417145229054e-05, '1': 9.99541714522906e-05},
'civil': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'clariti': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'class': {'0': 2.4299320042289307e-05, '1': 2.4299320042289307e-05},
'classic': {'0': 0.00020910651279958331, '1': 0.00020910651279958331},
'classifi': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'claus': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'cleti': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'clever': {'0': 9.713731692165457e-05, '1': 9.713731692165457e-05},
'cleverli': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'clich': {'0': 0.000685738335819098, '1': 0.000685738335819098},
'climact': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'clock': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'clockstopp': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'clone': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'clooney': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'close': {'0': 0.00013243995066869886, '1': 0.00013243995066869886},
'closer': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'club': {'0': 5.854802727258863e-05, '1': 5.854802727258863e-05},
'clumsi': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'clunki': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'co-star': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'co-writ': {'0': 9.26728106665851e-05, '1': 9.26728106665851e-05},
'coat': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'cobbl': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'coher': {'0': 0.00018935641756156975, '1': 0.00018935641756156975},
'cold': {'0': 0.0003536700618961227, '1': 0.0003536700618961227},
'collabor': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'collater': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'collect': {'0': 0.0007725106830554286, '1': 0.0007725106830554286},
'colleg': {'0': 0.001824920959692124, '1': 0.0018249209596921238},
'color': {'0': 0.0009214258618559963, '1': 0.0009214258618559963},
'com': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'combin': {'0': 0.0005652650989150389, '1': 0.0005652650989150389},
'come': {'0': 0.0005704945498513827, '1': 0.0005704945498513827},
'comedi': {'0': 0.00018918030514038968, '1': 0.00018918030514038968},
'comedian': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'comfort': {'0': 0.0005664292769200752, '1': 0.0005664292769200752},
'comic': {'0': 0.0003047853058865983, '1': 0.0003047853058865983},
'coming-of': {'0': 0.0008280225226232505, '1': 0.0008280225226232505},
'command': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'comment': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'commentari': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'commit': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'common': {'0': 9.26728106665851e-05, '1': 9.26728106665851e-05},
'commun': {'0': 9.26728106665851e-05, '1': 9.26728106665851e-05},
'compani': {'0': 0.00035401107864677106, '1': 0.00035401107864677106},
'compass': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'compel': {'0': 0.001270230915285565, '1': 0.001270230915285565},
'compet': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'complet': {'0': 0.0009207830778962119, '1': 0.0009207830778962119},
'complex': {'0': 0.0007157626516365511, '1': 0.0007157626516365511},
'complic': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'compos': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'comprehens': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'comput': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'conceit': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'concept': {'0': 0.00038270963114844195, '1': 0.00038270963114844195},
'concern': {'0': 0.00037068327321895626, '1': 0.00037068327321895616},
'concert': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'concoct': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'condens': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'condit': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'confirm': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'conflict': {'0': 0.00022899473685475652, '1': 0.00022899473685475652},
'confront': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'confus': {'0': 3.371874641691565e-05, '1': 3.371874641691565e-05},
'connect': {'0': 2.3914936319534915e-05, '1': 2.3914936319534915e-05},
'conscious': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'consequ': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'consid': {'0': 6.223277138255067e-05, '1': 6.223277138255067e-05},
'consider': {'0': 0.00022192323039736997, '1': 0.00022192323039736997},
'consist': {'0': 0.00035401107864677106, '1': 0.00035401107864677106},
'conspiraci': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'constant': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'construct': {'0': 0.00037068327321895626, '1': 0.00037068327321895616},
'contain': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'contempl': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'contemporari': {'0': 0.0011052062468126051, '1': 0.0011052062468126051},
'contend': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'context': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'continu': {'0': 0.0007617532603548866, '1': 0.0007617532603548866},
'contradictori': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'contribut': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'contriv': {'0': 0.0006846362140619797, '1': 0.0006846362140619799},
'control': {'0': 0.0004352665718591404, '1': 0.0004352665718591404},
'controversi': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'conveni': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'convent': {'0': 0.00034197560545929143, '1': 0.00034197560545929143},
'convers': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'convey': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'convict': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'convolut': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'cool': {'0': 0.0004151680796705072, '1': 0.0004151680796705073},
'cop': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'copi': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'coppola': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'core': {'0': 3.7041530256939784e-05, '1': 3.7041530256939784e-05},
'corner': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'correct': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'cost': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'could': {'0': 0.0002519727170268058, '1': 0.0002519727170268058},
'couldn': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'count': {'0': 0.0002656214558237066, '1': 0.0002656214558237066},
'countri': {'0': 2.747558633691495e-05, '1': 2.747558633691495e-05},
'coupl': {'0': 7.422289714698158e-05, '1': 7.422289714698158e-05},
'courag': {'0': 9.26728106665851e-05, '1': 9.26728106665851e-05},
'cours': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'court': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'cover': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'cox': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'crack': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'craft': {'0': 0.0001297771356465214, '1': 0.00012977713564652133},
'crane': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'crash': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'crass': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'crawl': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'crazi': {'0': 2.9627069161489503e-05, '1': 2.9627069161489503e-05},
'creat': {'0': 9.512265318938572e-05, '1': 9.512265318938572e-05},
'creation': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'creativ': {'0': 6.327518462318399e-05, '1': 6.327518462318399e-05},
'creator': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'credibl': {'0': 9.589748989797495e-05, '1': 9.589748989797495e-05},
'credit': {'0': 0.00020505627363090733, '1': 0.00020505627363090733},
'crew': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'cri': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'crime': {'0': 0.000407529479129498, '1': 0.000407529479129498},
'crimen': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'crisi': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'cristo': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'cross': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'crossov': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'crucial': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'crude': {'0': 5.854802727258863e-05, '1': 5.854802727258863e-05},
'crudup': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'cube': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'cult': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'cultur': {'0': 0.0022960173406851346, '1': 0.0022960173406851346},
'curios': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'curious': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'current': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'curv': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'cute': {'0': 2.3914936319534915e-05, '1': 2.3914936319534915e-05},
'cutesi': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'cynic': {'0': 3.156794261741005e-05, '1': 3.156794261741005e-05},
'd': {'0': 0.0004238805874343121, '1': 0.0004238805874343121},
'da': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'dahmer': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'daili': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'damag': {'0': 7.039405838992955e-05, '1': 7.039405838992955e-05},
'damn': {'0': 0.0003045899674635925, '1': 0.0003045899674635925},
'danc': {'0': 6.716734336841565e-05, '1': 6.716734336841565e-05},
'danger': {'0': 0.0005488409014463334, '1': 0.0005488409014463335},
'danni': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'dare': {'0': 0.0012246500216580962, '1': 0.0012246500216580962},
'dark': {'0': 0.00044950624469516877, '1': 0.00044950624469516877},
'darker': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'dawson': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'day': {'0': 0.0002508031755397526, '1': 0.0002508031755397526},
'daytim': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'dazzl': {'0': 0.0005443714996626245, '1': 0.0005443714996626243},
'de': {'0': 0.0006264641968170446, '1': 0.0006264641968170446},
'dead': {'0': 0.000895950359769667, '1': 0.000895950359769667},
'deadli': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'death': {'0': 8.954489108625523e-05, '1': 8.954489108625523e-05},
'debat': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'debut': {'0': 5.604042088602166e-05, '1': 5.604042088602166e-05},
'decad': {'0': 0.000873445868773935, '1': 0.000873445868773935},
'decent': {'0': 8.551963533300755e-05, '1': 8.551963533300755e-05},
'decept': {'0': 0.0008329495689355746, '1': 0.0008329495689355746},
'decid': {'0': 0.0002272993924532969, '1': 0.0002272993924532969},
'deed': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'deep': {'0': 0.0008718167211153271, '1': 0.0008718167211153271},
'deeper': {'0': 0.00022192323039736997, '1': 0.00022192323039736997},
'deepli': {'0': 0.0003730141780514401, '1': 0.0003730141780514401},
'defeat': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'defi': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'defin': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'definit': {'0': 0.0001121213174863655, '1': 0.0001121213174863655},
'deflat': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'deftli': {'0': 0.0006581249168833202, '1': 0.0006581249168833203},
'degre': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'deja': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'del': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'delet': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'delic': {'0': 0.0015233049620171906, '1': 0.0015233049620171906},
'delight': {'0': 0.002495789920277893, '1': 0.002495789920277893},
'deliv': {'0': 0.0013702957569880969, '1': 0.0013702957569880969},
'deliveri': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'dement': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'demograph': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'demon': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'demonstr': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'deni': {'0': 0.0005907306609820305, '1': 0.0005907306609820305},
'denouement': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'depend': {'0': 5.854802727258863e-05, '1': 5.854802727258863e-05},
'depict': {'0': 0.0006533808196634105, '1': 0.0006533808196634105},
'depress': {'0': 0.00027482084784725676, '1': 0.00027482084784725676},
'deriv': {'0': 0.0001525214384448294, '1': 0.00015252143844482935},
'descend': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'describ': {'0': 4.689261003082621e-05, '1': 4.689261003082621e-05},
'design': {'0': 0.000576112484355595, '1': 0.000576112484355595},
'despair': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'despit': {'0': 0.00018730919291207225, '1': 0.00018730919291207225},
'detach': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'detail': {'0': 0.0012160858195069803, '1': 0.0012160858195069803},
'determin': {'0': 0.00011724239474884189, '1': 0.00011724239474884189},
'devast': {'0': 0.0004352665718591404, '1': 0.0004352665718591404},
'develop': {'0': 3.7109234006567826e-05, '1': 3.7109234006567826e-05},
'devoid': {'0': 0.0006667254219752799, '1': 0.0006667254219752799},
'devot': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'diabol': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'dialogu': {'0': 0.0003265036557080342, '1': 0.0003265036557080342},
'diari': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'dicken': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'didn': {'0': 0.0013267865063728095, '1': 0.0013267865063728093},
'die': {'0': 0.0007725106830554286, '1': 0.0007725106830554286},
'diesel': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'differ': {'0': 0.0008859316311182609, '1': 0.0008859316311182609},
'difficult': {'0': 0.00015106809584120842, '1': 0.00015106809584120842},
'dig': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'dilut': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'dimens': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'dip': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'director': {'0': 0.00014561595051755635, '1': 0.00014561595051755635},
'directori': {'0': 0.00044171491467279964, '1': 0.00044171491467279964},
'disappoint': {'0': 0.0006961292808778184, '1': 0.0006961292808778184},
'disast': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'discard': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'discov': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'discoveri': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'discuss': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'disguis': {'0': 0.0014189241302205709, '1': 0.0014189241302205707},
'disgust': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'dish': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'disjoint': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'dismiss': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'display': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'dispos': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'distanc': {'0': 0.0002656214558237066, '1': 0.0002656214558237066},
'distant': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'distinct': {'0': 0.00044877666499693156, '1': 0.00044877666499693156},
'distract': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'disturb': {'0': 0.000873445868773935, '1': 0.000873445868773935},
'divers': {'0': 0.0005488409014463334, '1': 0.0005488409014463335},
'divert': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'divid': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'divin': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'document': {'0': 0.0005723729327261852, '1': 0.0005723729327261852},
'documentari': {'0': 0.00211003323796367, '1': 0.00211003323796367},
'doesn': {'0': 0.0015490966348071884, '1': 0.0015490966348071884},
'dog': {'0': 0.001119197530087896, '1': 0.001119197530087896},
'dogtown': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'domin': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'done': {'0': 2.2360875536183128e-05, '1': 2.2360875536183128e-05},
'dose': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'dot': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'doubt': {'0': 2.9627069161489503e-05, '1': 2.9627069161489503e-05},
'downer': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'downright': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'dozen': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'drab': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'drag': {'0': 0.0013357693782262768, '1': 0.0013357693782262766},
'drama': {'0': 0.00037436488641049304, '1': 0.00037436488641049304},
'draw': {'0': 0.00033444422390073697, '1': 0.00033444422390073697},
'dread': {'0': 0.00015682168927844104, '1': 0.00015682168927844104},
'dream': {'0': 0.0001696210464271346, '1': 0.0001696210464271346},
'dri': {'0': 0.00011724239474884189, '1': 0.00011724239474884189},
'drum': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'due': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'duke': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'dull': {'0': 0.0039260058573615435, '1': 0.0039260058573615435},
'dumb': {'0': 0.0007222301556209932, '1': 0.0007222301556209932},
'dvd': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'e': {'0': 5.900503750176005e-05, '1': 5.900503750176005e-05},
'eager': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'ear': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'earli': {'0': 3.919165545978982e-05, '1': 3.9191655459789795e-05},
'earn': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'earnest': {'0': 4.278095758592426e-05, '1': 4.278095758592426e-05},
'earnhart': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'eas': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'easi': {'0': 0.00021267287636739837, '1': 0.00021267287636739826},
'easier': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'easili': {'0': 0.00028102556944323027, '1': 0.0002810255694432304},
'eastwood': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'eat': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'eccentr': {'0': 0.00011293942867073042, '1': 0.00011293942867073042},
'eddi': {'0': 5.854802727258863e-05, '1': 5.854802727258863e-05},
'edg': {'0': 0.00019074033079504935, '1': 0.00019074033079504935},
'edit': {'0': 0.00038270963114844195, '1': 0.00038270963114844195},
'educ': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'effortlessli': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'either': {'0': 0.00013243995066869886, '1': 0.00013243995066869886},
'el': {'0': 3.7041530256939784e-05, '1': 3.7041530256939784e-05},
'elbow': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'elect': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'elegantli': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'element': {'0': 0.000289645111317934, '1': 0.0002896451113179341},
'ell': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'eloqu': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'els': {'0': 0.0004940977948586186, '1': 0.0004940977948586186},
'embarrass': {'0': 0.0005518957536983053, '1': 0.0005518957536983053},
'embrac': {'0': 0.0009674182911367556, '1': 0.0009674182911367556},
'emerg': {'0': 0.00037068327321895626, '1': 0.00037068327321895616},
'emot': {'0': 0.0006939256712984797, '1': 0.0006939256712984797},
'emphas': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'empir': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'employ': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'empower': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'empti': {'0': 0.0004809054059532969, '1': 0.0004809054059532969},
'en': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'encount': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'encourag': {'0': 0.0004352665718591404, '1': 0.0004352665718591404},
'end': {'0': 0.0002721285716831426, '1': 0.0002721285716831426},
'endear': {'0': 0.0002991618332768035, '1': 0.0002991618332768035},
'endeavor': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'endless': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'endlessli': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'energet': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'energi': {'0': 0.00012596915744236478, '1': 0.00012596915744236478},
'enerv': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'engag': {'0': 0.0004294319495556059, '1': 0.0004294319495556059},
'english': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'enigma': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'enjoy': {'0': 0.0008080430939995105, '1': 0.0008080430939995105},
'enorm': {'0': 0.00033191277312980916, '1': 0.00033191277312980916},
'ensembl': {'0': 0.00016729451340536245, '1': 0.00016729451340536245},
'enter': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'entertain': {'0': 0.0019354021675905466, '1': 0.0019354021675905466},
'entertainingli': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'enthral': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'entir': {'0': 7.618243830696055e-05, '1': 7.618243830696055e-05},
'environment': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'epic': {'0': 0.0003349672485595057, '1': 0.0003349672485595057},
'epiphani': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'episod': {'0': 0.0014866933498358188, '1': 0.0014866933498358188},
'equal': {'0': 8.962670040178061e-05, '1': 8.962670040178067e-05},
'equat': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'equival': {'0': 0.0003604614559676079, '1': 0.0003604614559676079},
'era': {'0': 0.00014899200933955292, '1': 0.00014899200933955292},
'eric': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'erot': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'es': {'0': 9.26728106665851e-05, '1': 9.26728106665851e-05},
'escap': {'0': 3.9549141825122335e-05, '1': 3.9549141825122335e-05},
'especi': {'0': 0.00024778407487988693, '1': 0.00024778407487988693},
'essenc': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'essenti': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'establish': {'0': 0.0005443714996626245, '1': 0.0005443714996626243},
'esther': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'etern': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'ether': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'ethnic': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'etho': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'european': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'evelyn': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'even': {'0': 9.456091400355019e-05, '1': 9.456091400355019e-05},
'event': {'0': 0.0009798618632735196, '1': 0.0009798618632735196},
'eventu': {'0': 0.0002657924998565981, '1': 0.0002657924998565981},
'ever': {'0': 0.0002780919205712031, '1': 0.0002780919205712031},
'everi': {'0': 0.00045782861092081347, '1': 0.00045782861092081347},
'everlast': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'everyon': {'0': 0.00012596915744236478, '1': 0.00012596915744236478},
'everyth': {'0': 0.0008373728753664844, '1': 0.0008373728753664844},
'evid': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'evoc': {'0': 0.0008329495689355746, '1': 0.0008329495689355746},
'evok': {'0': 0.00044877666499693156, '1': 0.00044877666499693156},
'exactli': {'0': 0.0002505197759162714, '1': 0.0002505197759162714},
'exagger': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'excel': {'0': 0.0014204217976868858, '1': 0.0014204217976868858},
'excess': {'0': 9.589748989797495e-05, '1': 9.589748989797495e-05},
'excit': {'0': 2.4804033844859656e-05, '1': 2.4804033844859656e-05},
'excus': {'0': 0.0008415473613495933, '1': 0.0008415473613495933},
'execut': {'0': 4.636285793230331e-05, '1': 4.636285793230331e-05},
'exercis': {'0': 0.0007513707362501005, '1': 0.0007513707362501005},
'exhaust': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'exhilar': {'0': 0.0009674182911367556, '1': 0.0009674182911367556},
'exist': {'0': 2.3914936319534915e-05, '1': 2.3914936319534915e-05},
'exit': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'exot': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'expand': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'experi': {'0': 0.00015870658283245655, '1': 0.00015870658283245655},
'experienc': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'expertli': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'explod': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'exploit': {'0': 0.0005429000743722833, '1': 0.0005429000743722833},
'explor': {'0': 0.00013465127827751036, '1': 0.00013465127827751036},
'explos': {'0': 0.0002272993924532969, '1': 0.0002272993924532969},
'express': {'0': 0.0004722994703662464, '1': 0.0004722994703662465},
'exquisit': {'0': 0.00018505752306526848, '1': 0.00018505752306526848},
'extend': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'extra': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'extraordinari': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'extrem': {'0': 0.00025074261217304357, '1': 0.00025074261217304357},
'eye': {'0': 0.0015376343455899308, '1': 0.0015376343455899308},
'fabric': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'fabul': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'face': {'0': 0.00013353754300793688, '1': 0.00013353754300793688},
'fact': {'0': 0.0007827423675319327, '1': 0.0007827423675319327},
'fade': {'0': 0.0005788192423154489, '1': 0.0005788192423154489},
'fail': {'0': 0.00188359761548117, '1': 0.00188359761548117},
'failur': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'fair': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'fairi': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'fairli': {'0': 0.00013429233200581254, '1': 0.00013429233200581254},
'faith': {'0': 0.00014899200933955292, '1': 0.00014899200933955292},
'fall': {'0': 0.0008396903491306187, '1': 0.0008396903491306184},
'falter': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'famili': {'0': 0.0024268032796999116, '1': 0.0024268032796999116},
'familiar': {'0': 6.936302911389762e-05, '1': 6.936302911389762e-05},
'famou': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'fan': {'0': 6.57006681054011e-05, '1': 6.57006681054011e-05},
'fantasi': {'0': 0.0007816853067661841, '1': 0.0007816853067661841},
'fantast': {'0': 0.00035401107864677106, '1': 0.00035401107864677106},
'far': {'0': 3.121399713638755e-05, '1': 3.121399713638755e-05},
'farc': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'farcic': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'fare': {'0': 0.0005443714996626245, '1': 0.0005443714996626243},
'fart': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'fascin': {'0': 0.0017079950401437585, '1': 0.0017079950401437585},
'fashion': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'fast': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'faster': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'fat': {'0': 0.0001525214384448294, '1': 0.00015252143844482935},
'fatal': {'0': 0.000663060970515457, '1': 0.000663060970515457},
'fate': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'father': {'0': 0.0002593380496674224, '1': 0.0002593380496674224},
'favor': {'0': 0.0001297771356465214, '1': 0.00012977713564652133},
'fear': {'0': 7.039405838992955e-05, '1': 7.039405838992955e-05},
'feardotcom': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'feat': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'feather': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'featur': {'0': 0.00041299517879243505, '1': 0.00041299517879243505},
'feel': {'0': 0.0011306208757046144, '1': 0.0011306208757046144},
'feel-good': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'feet': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'fellow': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'felt': {'0': 4.740409344135792e-05, '1': 4.740409344135792e-05},
'femal': {'0': 0.00014899200933955292, '1': 0.00014899200933955292},
'ferrara': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'fest': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'festiv': {'0': 4.689261003082621e-05, '1': 4.689261003082621e-05},
'fetish': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'fierc': {'0': 0.0005443714996626245, '1': 0.0005443714996626243},
'fighter': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'figur': {'0': 9.39323851549944e-05, '1': 9.393238515499445e-05},
'fill': {'0': 0.00027897411966638236, '1': 0.00027897411966638236},
'film': {'0': 0.0016722233217473879, '1': 0.0016722233217473879},
'filmmak': {'0': 0.00017257013419872, '1': 0.00017257013419872},
'final': {'0': 0.0002456061097389833, '1': 0.0002456061097389833},
'fincher': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'fine': {'0': 0.0007503109027068447, '1': 0.0007503109027068445},
'finest': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'finish': {'0': 3.7041530256939784e-05, '1': 3.7041530256939784e-05},
'fire': {'0': 0.0002115148018351291, '1': 0.0002115148018351291},
'fish': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'fisher': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'fit': {'0': 0.0004589122761674958, '1': 0.0004589122761674958},
'five': {'0': 7.039405838992955e-05, '1': 7.039405838992955e-05},
'flair': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'flamboy': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'flashback': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'flashi': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'flat': {'0': 0.0025579018656329555, '1': 0.0025579018656329555},
'flatten': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'flaw': {'0': 0.0012160858195069803, '1': 0.0012160858195069803},
'fleet': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'flesh': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'fli': {'0': 0.00018935641756156975, '1': 0.00018935641756156975},
'flick': {'0': 0.00010617209399909906, '1': 0.00010617209399909906},
'flirt': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'floor': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'flop': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'flourish': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'flow': {'0': 0.0004352665718591404, '1': 0.0004352665718591404},
'flower': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'fluffi': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'fluid': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'focu': {'0': 8.11280239699375e-05, '1': 8.11280239699375e-05},
'focus': {'0': 3.7041530256939784e-05, '1': 3.7041530256939784e-05},
'foibl': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'folk': {'0': 3.371874641691565e-05, '1': 3.371874641691565e-05},
'follow': {'0': 3.7109234006567826e-05, '1': 3.7109234006567826e-05},
'fond': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'food': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'fool': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'footag': {'0': 0.00018935641756156975, '1': 0.00018935641756156975},
'footbal': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'forc': {'0': 0.0006800702051944964, '1': 0.0006800702051944962},
'ford': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'foreign': {'0': 0.0008329495689355746, '1': 0.0008329495689355746},
'forget': {'0': 2.9627069161489503e-05, '1': 2.9627069161489503e-05},
'forgett': {'0': 0.0001961181898790255, '1': 0.0001961181898790255},
'forgiv': {'0': 0.0005723729327261852, '1': 0.0005723729327261852},
'form': {'0': 0.001090575038692992, '1': 0.0010905750386929923},
'formula': {'0': 0.0005796136371195328, '1': 0.0005796136371195328},
'forth': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'found': {'0': 3.3875373431888815e-05, '1': 3.3875373431888815e-05},
'foundat': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'fourth': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'frame': {'0': 2.747558633691495e-05, '1': 2.747558633691495e-05},
'franc': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'frank': {'0': 0.00011756167172345114, '1': 0.00011756167172345114},
'frantic': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'freak': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'free': {'0': 0.00027099592192252476, '1': 0.00027099592192252476},
'freedom': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'french': {'0': 0.000634803336955163, '1': 0.000634803336955163},
'frequent': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'fresh': {'0': 0.00026245667456115953, '1': 0.00026245667456115953},
'frida': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'friday': {'0': 0.0005518957536983053, '1': 0.0005518957536983053},
'friend': {'0': 6.223277138255067e-05, '1': 6.223277138255067e-05},
'friendship': {'0': 0.0008965314627513535, '1': 0.0008965314627513535},
'front': {'0': 9.26728106665851e-05, '1': 9.26728106665851e-05},
'frustrat': {'0': 0.0007725106830554286, '1': 0.0007725106830554286},
'frustratingli': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'fulfil': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'fumbl': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'fun': {'0': 0.0022753465136165925, '1': 0.0022753465136165925},
'function': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'funni': {'0': 0.0014989260302119955, '1': 0.0014989260302119955},
'funnier': {'0': 9.589748989797495e-05, '1': 9.589748989797495e-05},
'futil': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'futur': {'0': 0.0003435813427596678, '1': 0.0003435813427596679},
'fuzzi': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'g': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'gag': {'0': 0.0012539014779096819, '1': 0.0012539014779096819},
'gaghan': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'gain': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'gang': {'0': 4.4743162996468944e-05, '1': 4.4743162996468944e-05},
'gangster': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'gasp': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'gear': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'gem': {'0': 0.0009674182911367556, '1': 0.0009674182911367556},
'gener': {'0': 4.693150393938626e-05, '1': 4.693150393938626e-05},
'genial': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'geniu': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'genr': {'0': 0.0001110992644339831, '1': 0.0001110992644339831},
'gentl': {'0': 0.0006581249168833202, '1': 0.0006581249168833203},
'genuin': {'0': 0.00016706405873368152, '1': 0.00016706405873368152},
'georg': {'0': 2.747558633691495e-05, '1': 2.747558633691495e-05},
'german': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'get': {'0': 0.0005054725033361365, '1': 0.0005054725033361365},
'ghost': {'0': 0.0006667254219752799, '1': 0.0006667254219752799},
'gift': {'0': 6.716734336841565e-05, '1': 6.716734336841565e-05},
'giggl': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'girl': {'0': 0.0003534813527660541, '1': 0.0003534813527660541},
'give': {'0': 0.0012550326582316655, '1': 0.0012550326582316655},
'glass': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'glide': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'glimps': {'0': 0.0009674182911367556, '1': 0.0009674182911367556},
'glitz': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'glossi': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'go': {'0': 0.00015706090766937487, '1': 0.00015706090766937487},
'god': {'0': 0.00027099592192252476, '1': 0.00027099592192252476},
'godard': {'0': 0.00011433800942421972, '1': 0.00011433800942421972},
'goe': {'0': 9.713731692165457e-05, '1': 9.713731692165457e-05},
'gondri': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'gone': {'0': 0.00042377673307759706, '1': 0.00042377673307759716},
'gore': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'gorgeou': {'0': 0.0008028489331380424, '1': 0.0008028489331380424},
'gori': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'gosl': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'got': {'0': 6.758631704623157e-05, '1': 6.758631704623162e-05},
'gothic': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'grace': {'0': 7.422289714698158e-05, '1': 7.422289714698158e-05},
'grade': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'gradual': {'0': 0.00032877753326605673, '1': 0.0003287775332660567},
'grand': {'0': 0.0005723729327261852, '1': 0.0005723729327261852},
'grandeur': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'grant': {'0': 5.900503750176005e-05, '1': 5.900503750176005e-05},
'graphic': {'0': 5.854802727258863e-05, '1': 5.854802727258863e-05},
'great': {'0': 0.0010677434866791296, '1': 0.0010677434866791296},
'greater': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'greatest': {'0': 0.00018505752306526848, '1': 0.00018505752306526848},
'greek': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'green': {'0': 5.581482181476387e-05, '1': 5.581482181476387e-05},
'grey': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'grief': {'0': 0.0003829506619953178, '1': 0.0003829506619953178},
'grim': {'0': 7.618999345089249e-05, '1': 7.618999345089249e-05},
'grind': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'grip': {'0': 0.000664715934555088, '1': 0.000664715934555088},
'gritti': {'0': 0.00023586521578297691, '1': 0.00023586521578297691},
'gross': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'gross-out': {'0': 0.0003604614559676079, '1': 0.0003604614559676079},
'grotesqu': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'ground': {'0': 7.790232716467179e-05, '1': 7.790232716467179e-05},
'group': {'0': 0.00011293942867073042, '1': 0.00011293942867073042},
'grow': {'0': 7.422289714698158e-05, '1': 7.422289714698158e-05},
'guarante': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'guess': {'0': 0.00011756167172345114, '1': 0.00011756167172345114},
'guilti': {'0': 0.00015682168927844104, '1': 0.00015682168927844104},
'gun': {'0': 0.00011756167172345114, '1': 0.00011756167172345114},
'guy': {'0': 0.0009031925746454026, '1': 0.0009031925746454024},
'gyllenha': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'h': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'hack': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'hackney': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'half': {'0': 0.0006078029724954832, '1': 0.0006078029724954832},
'half-hour': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'halfway': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'hallmark': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'halloween': {'0': 0.00045319119152412553, '1': 0.00045319119152412553},
'hammer': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'hand': {'0': 0.000569817449596837, '1': 0.000569817449596837},
'hanek': {'0': 0.0001494212030902833, '1': 0.0001494212030902833},
'hang': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'hank': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'hannib': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'haphazard': {'0': 7.833808543071627e-05, '1': 7.833808543071625e-05},
'happen': {'0': 0.0003269057117050967, '1': 0.0003269057117050967},
'happi': {'0': 0.0007666514497099957, '1': 0.0007666514497099957},
'harangu': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'hard': {'0': 0.000843876641825158, '1': 0.000843876641825158},
'hardi': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'harmless': {'0': 0.00024016275479715532, '1': 0.00024016275479715532},
'harri': {'0': 0.0002272993924532969, '1': 0.0002272993924532969},
'harrison': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'harrow': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'harsh': {'0': 0.0004478201141319184, '1': 0.0004478201141319184},
'harvard': {'0': 0.0008415473613495933, '1': 0.0008415473613495933},
'hasn': {'0': 0.0005574441209289696, '1': 0.0005574441209289697},
'hate': {'0': 0.0001961181898790255, '1': 0.0001961181898790255},
'haunt': {'0': 0.0005321324533964544, '1': 0.0005321324533964544},
'hawk': {'0': 0.0003330737176525618, '1': 0.0003330737176525618},
'heal': {'0': 0.0005723729327261852, '1': 0.0005723729327261852},
'hear': {'0': 0.00015682168927844104, '1': 0.00015682168927844104},
'heard': {'0': 0.00015264384909873945, '1': 0.00015264384909873945},
'hearst': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'heart': {'0': 0.0025464870560991232, '1': 0.0025464870560991232},
'heartfelt': {'0': 0.0005723729327261852, '1': 0.0005723729327261852},
'heartstr': {'0': 3.9150878717343954e-05, '1': 3.915087871734394e-05},
'heaven': {'0': 0.00011756167172345114, '1': 0.00011756167172345114},
'heavi': {'0': 0.0004809054059532969, '1': 0.0004809054059532969},
'heavili': {'0': 0.00022069484812846344, '1': 0.00022069484812846344},
'heavy-hand': {'0': 0.0006667254219752799, '1': 0.0006667254219752799},
'hedonist': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'hefti': {'0': 0.00011786161244261765, '1': 0.00011786161244261765},
'held': {'0': 5.6399257979050746e-05, '1': 5.6399257979050746e-05},
'hell': {'0': 5.900503750176005e-05, '1': 5.900503750176005e-05},
'help': {'0': 0.0005644959599609709, '1': 0.0005644959599609709},
'hero': {'0': 3.3875373431888815e-05, '1': 3.3875373431888815e-05},
'heroin': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'herzog': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'hide': {'0': 0.0001200090275357446, '1': 0.00012000902753574462},
'high': {'0': 0.00016433666676604077, '1': 0.00016433666676604066},
'highest': {'0': 0.00021747321777053078, '1': 0.00021747321777053078},
'highli': {'0': 0.0008718167211153271, '1': 0.0008718167211153271},
'highlight': {'0': 2.342795287591186e-05, '1': 2.342795287591186e-05},
'hilar': {'0': 3.807734033919588e-05, '1': 3.8077340339195867e-05},
'hilari': {'0': 0.0005996056166128107, '1': 0.0005996056166128107},
'hill': {'0': 9.589748989797495e-05, '1': 9.589748989797495e-05},
'hint': {'0': 2.2354076160963695e-05, '1': 2.2354076160963695e-05},
'hip-hop': {'0': 0.00018935641756156975, '1': 0.00018935641756156975},