-
Notifications
You must be signed in to change notification settings - Fork 1
/
DocumentWeighter.txt
5033 lines (5033 loc) · 971 KB
/
DocumentWeighter.txt
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
0,44:0.08839,59:0.09958,104:0.13452,131:0.08807,157:0.10193,174:0.09490,193:0.08177,206:0.09395,225:0.10461,282:0.13121,289:0.10185,304:0.09096,314:0.11457,325:0.09839,423:0.08674,452:0.08306,459:0.09047,474:0.12350,478:0.20367,479:0.16162,521:0.12797,548:0.11913,564:0.12384,566:0.11593,605:0.12087,634:0.17411,673:0.08214,685:0.09612,696:0.09326,699:0.14213,700:0.14296,709:0.10793,734:0.10574,738:0.12246,748:0.20226,766:0.09877,793:0.15338,794:0.12920,797:0.11007,858:0.11558,946:0.08990,992:0.08921,999:0.10876,1003:0.12183,1028:0.10832,1062:0.15821,1195:0.09306,1250:0.09056,1251:0.14002,1285:0.18118,1289:0.09660,1292:0.09684,1307:0.09642,1337:0.11811,1339:0.10193,1349:0.11477,1351:0.09284
0.000,1257:0.12209
0.0001,117:0.12636,302:0.12436
0.001,972:0.11147,1128:0.12861
0.002,1324:0.11812
0.004,1324:0.11812
0.00675,1127:0.10432
0.01,300:0.09794,778:0.18087
0.010,1069:0.17469
0.012,662:0.10851
0.014,996:0.09433
0.02,548:0.09157,597:0.16177,748:0.14799
0.02025,1127:0.10432
0.025,614:0.10246
0.03,946:0.08990
0.04,748:0.14799
0.05,189:0.08489,197:0.09659,662:0.08340,748:0.11375,972:0.11147
0.06,1136:0.10118
0.066,1127:0.10432
0.08,1136:0.10118
0.1,240:0.09687,315:0.07434,478:0.20367,606:0.11280,679:0.11300,776:0.18210,1356:0.08616
0.10,189:0.08489,662:0.08340,748:0.11375,1136:0.10118
0.11,165:0.08139
0.117,800:0.11613
0.12,690:0.13738,1136:0.10118
0.120,800:0.11613
0.13,996:0.09433
0.14,1136:0.10118
0.1428,1307:0.09642
0.14x10,689:0.09812
0.15,572:0.07694,928:0.07592
0.15x106,993:0.11283
0.16,1136:0.10118
0.18,996:0.09433
0.182er,742:0.14019
0.1875,176:0.14265
0.19,674:0.13344
0.195etr,741:0.14953
0.2,144:0.12257,158:0.12946,173:0.08952,185:0.08707,189:0.11045,218:0.09772,234:0.11905,413:0.12382,615:0.15523,687:0.15718,748:0.18223,755:0.13897,861:0.18531,1004:0.13172,1188:0.11207
0.21,857:0.10691
0.211,800:0.11613
0.25,1226:0.09253
0.254,325:0.09839
0.262,529:0.08623
0.3,89:0.07640,125:0.10403,129:0.09440,432:0.10699,522:0.07910,959:0.10732,1218:0.08925,1354:0.12288
0.30,759:0.10430
0.32,165:0.08139
0.33,685:0.09612
0.35,53:0.10490,812:0.11278,1115:0.16597
0.36,434:0.10172
0.367,325:0.09839
0.368,1204:0.08167
0.38,571:0.09826
0.4,40:0.11130,187:0.08786,234:0.09151,421:0.11338,423:0.08674,1004:0.13172,1039:0.09194,1336:0.10517,1381:0.09331
0.40,9:0.08343,674:0.13344,711:0.13334
0.42,685:0.09612
0.43,662:0.08340
0.44,857:0.10691
0.45,109:0.11297,791:0.16365
0.46,9:0.08343
0.5,57:0.11491,63:0.12723,98:0.16707,247:0.11937,274:0.09310,478:0.15655,702:0.18279,748:0.14799,857:0.10691,972:0.11147,1344:0.11075
0.50,74:0.15258,205:0.09840,748:0.11375
0.53,205:0.09840
0.55,1223:0.15734
0.57,1349:0.11477
0.5772...euler,787:0.11419
0.6,173:0.08952,199:0.08559,204:0.11483,702:0.18279,748:0.14799,759:0.10430,780:0.14570,793:0.11789,838:0.16691,928:0.07592,999:0.10876,1114:0.10739,1136:0.10118,1290:0.11189,1338:0.11214
0.60,197:0.09659,277:0.09981,709:0.10793,711:0.13334
0.62,1065:0.12760
0.635,82:0.08548
0.65,212:0.07796,662:0.08340,1001:0.13058
0.69,857:0.10691
0.6x10,662:0.08340
0.7,125:0.10403,206:0.12223,218:0.09772,312:0.16774,565:0.10294,661:0.13680,685:0.12506,691:0.13502,701:0.10046,702:0.16100,748:0.18223,800:0.11613,962:0.07471,1115:0.16597,1136:0.10118,1259:0.11686
0.70,1066:0.08779,1212:0.10014
0.715,23:0.13451
0.72,328:0.08488
0.725,611:0.11370
0.73,962:0.07471,1341:0.10986
0.737,986:0.09018
0.741,1127:0.10432
0.75,50:0.11622,177:0.10564,1114:0.10739,1226:0.09253
0.8,173:0.08952,185:0.08707,206:0.09395,423:0.08674,439:0.11296,536:0.08908,651:0.11757,691:0.13502,700:0.14296,709:0.10793,1136:0.10118,1338:0.14590
0.80,796:0.11385
0.800,986:0.09018
0.805,986:0.09018
0.823,662:0.08340
0.825,986:0.09018
0.84,431:0.12668
0.840,662:0.08340
0.85,205:0.12802,466:0.09919,1337:0.11811
0.854,986:0.09018
0.8a,749:0.13281
0.9,232:0.10330,691:0.13502,1066:0.08779,1136:0.10118,1154:0.09320,1226:0.09253
0.90,198:0.09434
0.92,212:0.07796,516:0.15553,801:0.11144,1204:0.08167
0.95,205:0.09840,1066:0.08779
0.952,212:0.07796
0.96,766:0.09877
0.98,213:0.08923
0degre,688:0.09736,713:0.11879,782:0.10649,972:0.11147,1075:0.10869,1077:0.19678,1341:0.10986
1,7:0.09658,18:0.13824,21:0.18304,28:0.12928,40:0.11130,42:0.09362,49:0.07780,59:0.12955,64:0.12646,72:0.09570,73:0.08297,77:0.10905,80:0.09322,85:0.08896,94:0.07641,95:0.21223,100:0.09592,110:0.10130,129:0.09440,131:0.08807,138:0.09917,139:0.16209,162:0.10337,163:0.07389,165:0.10589,171:0.11122,178:0.16933,190:0.11493,193:0.10638,198:0.09434,202:0.11280,213:0.13180,218:0.09772,225:0.10461,234:0.09151,239:0.12181,247:0.15531,252:0.12154,270:0.10332,271:0.24704,272:0.07786,294:0.09189,295:0.14064,300:0.09794,315:0.07434,325:0.09839,334:0.09918,338:0.11189,341:0.10069,344:0.07231,345:0.12277,354:0.13534,362:0.18027,373:0.11485,376:0.16636,381:0.12372,386:0.15322,401:0.08325,414:0.10561,417:0.07187,422:0.13323,450:0.15340,452:0.08306,458:0.09744,467:0.13662,474:0.12350,480:0.14707,486:0.12321,523:0.16664,527:0.14936,528:0.19423,539:0.17188,555:0.12102,569:0.08824,572:0.07694,583:0.12328,587:0.13772,604:0.12789,611:0.14792,615:0.15523,620:0.12701,634:0.13383,654:0.18687,660:0.09046,661:0.10514,668:0.13603,695:0.08820,696:0.09326,704:0.10530,705:0.10414,710:0.09928,721:0.07158,744:0.13134,749:0.13281,759:0.10430,771:0.14019,780:0.14570,785:0.12531,793:0.11789,794:0.12920,797:0.11007,801:0.11144,812:0.11278,826:0.08713,828:0.10520,889:0.09015,891:0.11190,903:0.15157,904:0.11768,916:0.11720,917:0.13511,933:0.09021,934:0.10339,946:0.08990,952:0.13492,964:0.12019,1004:0.13172,1028:0.10832,1031:0.13399,1032:0.17845,1038:0.14486,1039:0.09194,1047:0.07605,1059:0.10028,1064:0.11530,1066:0.08779,1072:0.07740,1074:0.12325,1075:0.10869,1088:0.13896,1090:0.20477,1131:0.18082,1136:0.10118,1142:0.18556,1153:0.15672,1166:0.14375,1174:0.15406,1201:0.09753,1258:0.10485,1299:0.21967,1301:0.12027,1312:0.14987,1313:0.06389,1320:0.14823,1333:0.09450,1335:0.11071,1354:0.12288,1356:0.11209,1362:0.11871,1363:0.14851,1372:0.10850,1375:0.08631,1378:0.18873,1382:0.09370
1.0,53:0.10490,62:0.08812,129:0.09440,189:0.08489,204:0.11483,206:0.09395,282:0.10085,300:0.09794,354:0.13534,555:0.12102,565:0.10294,686:0.13662,691:0.13502,700:0.14296,710:0.09928,861:0.14244,1136:0.10118,1289:0.09660,1338:0.16564,1381:0.09331
1.00,1066:0.08779,1114:0.10739
1.008,127:0.12592,1091:0.14060
1.03,434:0.10172,709:0.10793
1.05,197:0.09659,1179:0.09982
1.064,423:0.08674
1.07,991:0.10756
1.08,646:0.09160
1.09,197:0.09659
1.1,200:0.12899,800:0.11613,1179:0.09982,1229:0.08809
1.10,765:0.11858,852:0.11505,1077:0.13322
1.11,282:0.10085
1.12,780:0.14570,946:0.08990
1.13,805:0.10630,1336:0.10517
1.15,200:0.12899,796:0.11385
1.17,411:0.15974
1.2,161:0.16978,200:0.12899,232:0.10330,261:0.11750,442:0.10398,689:0.09812,700:0.14296,857:0.10691,1066:0.08779,1114:0.10739,1179:0.09982,1336:0.10517
1.20,709:0.10793,1066:0.08779
1.24,807:0.15592
1.25,189:0.08489,611:0.11370
1.27,695:0.08820
1.3,52:0.11638,197:0.09659,200:0.12899,513:0.13850,856:0.09917,1229:0.08809,1258:0.10485
1.30,101:0.08299,765:0.11858
1.33,638:0.10730,712:0.09394
1.35,516:0.15553,1338:0.14590
1.39,636:0.10618,693:0.11965,694:0.11605
1.3x10,675:0.08999
1.4,200:0.12899,414:0.10561,431:0.12668,489:0.11965,572:0.07694,748:0.11375,805:0.10630,806:0.09686,928:0.07592,1179:0.12987,1204:0.08167,1336:0.10517
1.40,177:0.13744,695:0.08820
1.400,529:0.11219
1.43,1341:0.10986
1.45,259:0.11190
1.450,692:0.11147
1.46,1303:0.10821
1.479,127:0.12592
1.48,431:0.12668
1.5,9:0.08343,56:0.10857,64:0.12646,161:0.16978,189:0.11045,200:0.12899,225:0.08041,294:0.09189,478:0.15655,690:0.13738,780:0.14570,991:0.10756,996:0.09433,1166:0.11049
1.50,765:0.11858
1.52,807:0.15592
1.55,646:0.09160
1.58,1257:0.12209
1.6,175:0.18610,200:0.12899,256:0.14026,522:0.07910,608:0.13184,748:0.11375,759:0.10430,1173:0.11580,1239:0.07776
1.60,994:0.11844
1.61,80:0.09322
1.62,174:0.09490,708:0.17111,992:0.08921
1.66,695:0.08820,1307:0.09642
1.67,1077:0.13322
1.6x10,671:0.13383
1.7,780:0.14570,1004:0.13172,1263:0.08920
1.71,696:0.09326
1.72,171:0.11122
1.74,815:0.10058
1.747,693:0.11965
1.75,597:0.21047,1339:0.10193
1.76,41:0.17090,970:0.11558,1066:0.08779
1.77,74:0.15258
1.78,171:0.11122
1.8,200:0.12899,216:0.09356,529:0.08623,805:0.10630,1151:0.11886,1381:0.09331
1.80,277:0.09981,694:0.11605,695:0.08820
1.81,411:0.15974
1.82,171:0.11122
1.85,1179:0.09982
1.8x10,261:0.11750
1.9,464:0.10941,511:0.12193,901:0.12582,1173:0.11580
1.90,7:0.09658,212:0.07796
1.91,282:0.10085
1.92,1352:0.09991
1.94,174:0.09490
1.944,200:0.12899
1.96,434:0.10172
1.97,40:0.11130,225:0.08041,662:0.12320
1.98,1212:0.10014
10,9:0.14835,63:0.12723,82:0.08548,98:0.16707,125:0.10403,161:0.16978,174:0.09490,182:0.13355,189:0.11045,193:0.08177,197:0.16411,219:0.10065,234:0.09151,239:0.12181,240:0.09687,256:0.14026,259:0.11190,262:0.07460,309:0.11467,312:0.21823,315:0.07434,343:0.14159,346:0.10772,371:0.11838,406:0.10162,423:0.12812,426:0.11969,497:0.11602,505:0.15505,517:0.15248,519:0.15692,522:0.11684,536:0.11590,546:0.12472,555:0.17876,558:0.13690,564:0.12384,571:0.09826,572:0.07694,576:0.07315,593:0.11299,604:0.12789,631:0.17287,635:0.12057,636:0.13814,646:0.11918,652:0.15944,671:0.13383,673:0.08214,679:0.11300,690:0.17874,691:0.17566,694:0.11605,696:0.09326,697:0.11935,709:0.14042,713:0.11879,759:0.13569,773:0.11166,776:0.23692,793:0.11789,794:0.08747,796:0.11385,808:0.11482,812:0.14673,814:0.10509,815:0.13086,816:0.12347,858:0.11558,859:0.10345,861:0.18531,912:0.11942,923:0.12791,924:0.10499,929:0.11638,947:0.09021,959:0.13962,964:0.12019,970:0.11558,972:0.11147,975:0.13599,976:0.07468,992:0.11607,999:0.14149,1011:0.22559,1019:0.10242,1062:0.15821,1080:0.12629,1095:0.16808,1143:0.13684,1152:0.22667,1156:0.11266,1159:0.13940,1164:0.10340,1167:0.13966,1188:0.11207,1191:0.11598,1195:0.09306,1212:0.13029,1231:0.10706,1239:0.07776,1247:0.11717,1263:0.08920,1270:0.16088,1278:0.10764,1303:0.10821,1310:0.08833,1313:0.08312,1335:0.11071,1344:0.11075,1349:0.11477,1378:0.14506,1391:0.10060
10.3,946:0.08990
10.5,1127:0.10432
100,82:0.08548,161:0.16978,302:0.12436,463:0.14402,497:0.11602,564:0.09519,603:0.09970,646:0.09160,721:0.07158,773:0.08582,881:0.11690,923:0.12791,1102:0.19897,1156:0.11266,1159:0.13940,1173:0.15066,1230:0.11302,1341:0.10986
1000,139:0.12459,721:0.07158,949:0.12892,1009:0.12205,1166:0.11049,1230:0.11302
10000,76:0.11381,129:0.09440,328:0.08488,536:0.08908,949:0.12892,1010:0.12108
100000,85:0.08896,976:0.07468
100x10,413:0.12382
101,671:0.13383,675:0.11708
101957,20:0.11783
1081,479:0.12423
109,529:0.08623
109placement,931:0.18310
10degre,351:0.12588,713:0.15455,717:0.08518,1001:0.13058,1075:0.10869
10g,1344:0.11075
11,83:0.08519,118:0.11850,198:0.09434,239:0.12181,274:0.09310,282:0.10085,356:0.15226,546:0.12472,572:0.07694,636:0.13814,685:0.09612,727:0.10982,816:0.12347,904:0.11768,1127:0.10432,1159:0.13940,1213:0.10406
11.2,1395:0.16792
11.60,1289:0.09660
11.7,1218:0.08925
11.78,1385:0.10995
110,970:0.11558
1100,1025:0.11431
11000,1096:0.15346
1103,738:0.12246
1103a,738:0.12246
111,1020:0.12601
1135,1007:0.11643
1150,1351:0.09284
117,1039:0.09194
11in,1353:0.13337
12,56:0.10857,199:0.08559,342:0.09438,572:0.07694,685:0.09612,696:0.09326,785:0.12531,788:0.10060,793:0.11789,794:0.08747,812:0.11278,929:0.11638,1007:0.11643,1009:0.12205,1231:0.10706,1312:0.14987,1339:0.10193
12.0,861:0.14244
12.4,1218:0.08925
120,162:0.10337,1156:0.11266,1250:0.09056
1200,1098:0.12096
12000,280:0.12601
120000,807:0.15592,1040:0.06780
1211,439:0.11296
124.9,82:0.08548
125,1147:0.07552
1250,79:0.11399,1098:0.12096
12degre,717:0.08518
13,694:0.11605,727:0.10982,755:0.13897,1003:0.12183,1040:0.06780,1213:0.10406,1218:0.08925,1252:0.11071,1325:0.08721,1351:0.09284,1399:0.14772
13.1,1065:0.12760
13.5,293:0.13328
13.8,1381:0.09331
130,696:0.09326
1300,976:0.07468,986:0.11732,1040:0.06780,1292:0.09684
14,58:0.10999,165:0.08139,442:0.10398,622:0.10038,794:0.08747,797:0.08460,1002:0.14904,1052:0.13633,1104:0.11360,1231:0.10706,1296:0.10172
14.4,696:0.09326,970:0.11558
140,212:0.07796,361:0.17208,511:0.12193
1400,1230:0.11302
1400degreek,1318:0.15909
1460,1349:0.11477
14in,795:0.19109
15,58:0.10999,69:0.12829,83:0.08519,125:0.10403,139:0.12459,304:0.09096,354:0.13534,371:0.11838,373:0.08828,518:0.10205,520:0.10188,546:0.12472,595:0.10122,601:0.09722,620:0.09762,631:0.17287,638:0.10730,657:0.14029,876:0.11694,900:0.16479,942:0.12104,947:0.11736,985:0.11727,1092:0.09540,1174:0.15406,1195:0.09306,1229:0.08809,1284:0.12141,1306:0.19699,1307:0.09642,1326:0.12289
15.4,634:0.13383
150,162:0.10337,640:0.08356,976:0.09716,1147:0.07552
1500,347:0.12494,766:0.09877,858:0.11558,948:0.11753,986:0.09018
15000,85:0.08896,401:0.08325,576:0.07315,884:0.16857,1011:0.17340
15000degre,302:0.12436
151962,388:0.11318
153,328:0.08488
15degre,688:0.09736,708:0.17111,1104:0.11360
15x10,79:0.11399
16,225:0.08041,328:0.08488,645:0.10949,694:0.11605,1007:0.11643,1095:0.11379
16.6,213:0.08923
1600,84:0.10993
16000,1157:0.10300
165000,1292:0.09684
17,443:0.10181,1080:0.12629,1150:0.14582
17.5,1218:0.08925
170,616:0.12840
1700,25:0.07821
17000,536:0.08908
1700f,1268:0.08259
1730,1191:0.11598
17500,1282:0.12022
18,277:0.09981,642:0.16594,797:0.11007,1150:0.14582,1174:0.15406,1204:0.08167,1344:0.11075,1378:0.14506
180,244:0.07116,564:0.09519,617:0.15462,620:0.09762,947:0.11736,993:0.11283,999:0.14149,1143:0.13684,1250:0.09056,1325:0.08721
180000,976:0.07468
18000k,1314:0.16849
1856,623:0.10683
1869,427:0.10649
1873,623:0.10683
18degre,1001:0.13058
18in,795:0.19109
19,213:0.08923,222:0.10484,1334:0.12006
19.6,1157:0.10300,1274:0.09769,1319:0.09580
190,621:0.18811
1909,210:0.08718
1910,1088:0.10681
1912,828:0.10520
1914,740:0.10570
1916,771:0.14019,1137:0.09224
1917,210:0.08718
1921,459:0.09047
1925,1330:0.10036
1932,479:0.12423
1933,361:0.17208,740:0.10570,1123:0.14467
1934,740:0.10570
1936,328:0.08488,1330:0.13057
1938,154:0.15626,1036:0.13630
1939,398:0.18124
1941,262:0.07460,732:0.11704,740:0.10570
1943,907:0.10209,1333:0.09450
1945,417:0.07187,1333:0.09450
1947,202:0.08670
1948,732:0.11704
1950,57:0.11491,118:0.11850,773:0.08582,923:0.12791
1951,904:0.11768
1953,654:0.14363
1956,110:0.07786,168:0.09733,255:0.10956,344:0.07231,1077:0.13322,1174:0.15406
1957,83:0.08519,622:0.10038
1958,83:0.08519,356:0.15226,622:0.10038
1959,83:0.08519,620:0.09762,1052:0.13633,1236:0.15416
1960,83:0.08519,792:0.06879
1961,622:0.10038,1150:0.18971
1962,488:0.11770
1degre,688:0.09736
1fa,749:0.17279
1x10,564:0.09519
2,6:0.14566,7:0.09658,9:0.12323,40:0.14480,42:0.09362,49:0.07780,58:0.10999,62:0.08812,73:0.08297,80:0.09322,85:0.08896,89:0.07640,94:0.07641,100:0.09592,110:0.10130,116:0.11464,126:0.12762,138:0.09917,161:0.16978,171:0.14470,190:0.11493,202:0.08670,205:0.09840,213:0.08923,218:0.09772,234:0.09151,247:0.11937,253:0.15033,270:0.10332,294:0.09189,295:0.14064,296:0.09890,300:0.09794,325:0.09839,334:0.09918,338:0.11189,345:0.12277,373:0.08828,376:0.16636,381:0.14047,386:0.15322,391:0.12860,417:0.09351,422:0.13323,434:0.10172,469:0.14284,474:0.12350,480:0.14707,486:0.09471,489:0.15567,519:0.15692,555:0.12102,569:0.08824,583:0.12328,607:0.20092,620:0.09762,632:0.16678,661:0.10514,688:0.09736,694:0.11605,696:0.09326,697:0.15527,699:0.10924,704:0.11955,710:0.09928,744:0.13134,754:0.11520,756:0.12079,777:0.11888,780:0.14570,785:0.12531,787:0.11419,791:0.16365,792:0.06879,793:0.15338,794:0.11380,816:0.12347,822:0.10240,826:0.08713,866:0.13389,876:0.11694,889:0.09015,891:0.11190,902:0.10773,933:0.09021,934:0.10339,962:0.07471,1031:0.13399,1038:0.18847,1039:0.09194,1040:0.06780,1047:0.07605,1059:0.10028,1072:0.07740,1083:0.16286,1104:0.08731,1131:0.13898,1174:0.15406,1191:0.11598,1258:0.10485,1299:0.16884,1300:0.09010,1301:0.12027,1320:0.10035,1325:0.08721,1327:0.11646,1330:0.10036,1333:0.13959,1335:0.11071,1341:0.10986,1343:0.09655,1351:0.09284,1362:0.11871,1363:0.11414,1375:0.08631
2.0,173:0.11647,189:0.08489,256:0.14026,466:0.09919,674:0.13344,696:0.09326,805:0.10630,806:0.14307,970:0.11558,1098:0.12096,1225:0.09466,1229:0.08809
2.00,994:0.11844
2.01,80:0.09322,808:0.11482
2.02,692:0.11147,694:0.11605
2.05,345:0.12277
2.06,53:0.10490
2.1,759:0.10430
2.13,992:0.08921
2.15,812:0.11278
2.18,504:0.10431
2.2,780:0.14570,1229:0.08809,1263:0.08920
2.20,1001:0.13058
2.24,1239:0.07776
2.25x10,947:0.09021
2.3,63:0.12723,294:0.09189,354:0.13534,697:0.11935
2.35,571:0.09826,709:0.10793
2.38,423:0.08674
2.3x10,662:0.08340
2.4,312:0.16774
2.41,174:0.09490
2.425,1091:0.14060
2.45,371:0.11838
2.47,597:0.16177
2.49,1104:0.08731
2.5,213:0.08923,346:0.10772,511:0.12193,808:0.11482,852:0.11505,946:0.08990,1263:0.11605
2.6,755:0.13897
2.67,282:0.10085
2.7,373:0.08828,796:0.11385
2.71,7:0.09658,1211:0.12923
2.78,815:0.10058
2.8,62:0.08812,312:0.16774,513:0.13850,791:0.16365
2.80,1218:0.08925
2.85,759:0.10430,994:0.11844
2.86,692:0.11147
2.87,1066:0.08779
2.91,708:0.17111,993:0.11283
2.92,504:0.10431
2.96,1382:0.09370
2.99,709:0.10793
20,25:0.07821,63:0.12723,83:0.08519,189:0.08489,212:0.07796,249:0.12839,262:0.07460,282:0.10085,294:0.09189,338:0.11189,354:0.13534,423:0.08674,522:0.07910,524:0.16989,536:0.08908,560:0.10204,564:0.12384,574:0.10566,621:0.14459,643:0.12788,673:0.08214,759:0.10430,773:0.08582,788:0.10060,797:0.08460,814:0.10509,970:0.11558,975:0.10452,999:0.14149,1007:0.11643,1040:0.06780,1064:0.11530,1080:0.12629,1104:0.08731,1173:0.11580,1188:0.11207,1300:0.11722,1355:0.10636,1380:0.09257
200,620:0.12701,622:0.10038,861:0.14244,976:0.09716,1380:0.09257
2000,259:0.11190,346:0.10772,1096:0.15346
20000,76:0.11381
200000,976:0.09716
2000degreek,572:0.07694
200degre,691:0.13502
20degre,443:0.10181,713:0.11879
20degreec,1316:0.10051
20in,1212:0.10014
21,185:0.08707
210,620:0.12701,1088:0.10681,1258:0.10485
21153,259:0.11190
21350,1263:0.08920
215000,1292:0.09684
21700,717:0.08518
219,1103:0.15313
22,83:0.08519,976:0.07468,1315:0.12107,1344:0.11075
220,617:0.15462,621:0.14459
220000,915:0.15031,1000:0.10517
225,272:0.07786
2250,57:0.11491
23,529:0.08623,759:0.10430,1399:0.14772
23000,401:0.08325
234,828:0.10520
238000,423:0.08674
24,303:0.15084,1007:0.11643,1278:0.10764,1344:0.11075,1399:0.14772
2400degre,1101:0.15096
24500,1010:0.12108
25,22:0.13782,193:0.08177,283:0.10604,511:0.12193,569:0.08824,575:0.09243,621:0.14459,711:0.13334,773:0.08582,786:0.10768,1102:0.19897,1285:0.18118
25.1,571:0.09826
250,622:0.10038
25000,493:0.12508,524:0.16989,576:0.07315,805:0.13830,1229:0.08809
250000,85:0.08896,401:0.08325,554:0.11399
2520,1092:0.09540
2550,571:0.09826
25degre,708:0.17111,717:0.08518
26,9:0.08343,204:0.11483,473:0.18311,1204:0.08167,1236:0.15416
26.6,1004:0.13172
26000,554:0.11399,1161:0.13449
2601,20:0.11783
275,118:0.11850,622:0.10038
28,1039:0.11961,1201:0.07496
280,621:0.18811,1292:0.09684
29,189:0.08489,529:0.08623
29.5,272:0.10129
29.70,1091:0.14060
2bi,1350:0.13563
2n,249:0.12839
2p,659:0.12736
2x10,413:0.12382
3,7:0.09658,28:0.12928,40:0.11130,42:0.12180,45:0.12103,63:0.12723,69:0.12829,89:0.07640,110:0.10130,116:0.11464,126:0.12762,157:0.10193,161:0.16978,165:0.10589,190:0.11493,202:0.11280,206:0.12223,218:0.09772,234:0.09151,247:0.11937,249:0.12839,252:0.12154,270:0.10332,272:0.07786,293:0.13328,345:0.12277,359:0.14079,373:0.08828,381:0.09509,417:0.07187,430:0.19946,466:0.09919,474:0.12350,486:0.09471,489:0.11965,510:0.18304,522:0.07910,536:0.11590,548:0.09157,569:0.08824,583:0.12328,605:0.12087,620:0.09762,634:0.13383,685:0.09612,695:0.08820,696:0.09326,697:0.11935,699:0.10924,704:0.08094,710:0.09928,717:0.08518,739:0.08745,744:0.13134,756:0.12079,766:0.09877,777:0.11888,780:0.14570,785:0.16303,793:0.11789,794:0.08747,816:0.12347,856:0.09917,858:0.11558,879:0.20520,934:0.10339,962:0.07471,985:0.11727,1038:0.18847,1040:0.06780,1059:0.10028,1062:0.15821,1074:0.12325,1075:0.10869,1077:0.13322,1088:0.10681,1166:0.11049,1174:0.15406,1201:0.07496,1212:0.10014,1213:0.10406,1313:0.06389,1325:0.08721,1328:0.10315,1333:0.09450,1335:0.11071,1343:0.09655,1354:0.12288,1356:0.08616,1362:0.11871,1375:0.08631
3.0,52:0.11638,189:0.08489,343:0.14159,713:0.11879,766:0.09877,857:0.10691,858:0.11558,859:0.10345,948:0.11753,1300:0.09010
3.00,234:0.09151
3.04,662:0.08340
3.07,986:0.09018
3.1,189:0.11045,505:0.15505,1300:0.09010
3.11,816:0.12347
3.12,79:0.11399,282:0.10085,1284:0.12141
3.13,986:0.09018
3.15,986:0.09018
3.2,282:0.10085
3.25,1143:0.13684
3.2x10,671:0.13383
3.3,522:0.07910
3.392,692:0.11147
3.4,709:0.10793
3.44,970:0.11558
3.5,63:0.12723,82:0.08548,125:0.10403,189:0.08489,674:0.13344,687:0.15718,915:0.15031,976:0.07468,1000:0.10517,1225:0.09466
3.50,704:0.08094
3.53,628:0.10149
3.55,1258:0.10485
3.6,187:0.08786
3.67,7:0.09658,225:0.08041
3.7,63:0.12723,337:0.14974
3.72,1351:0.12079
3.74,1292:0.12600
3.75,354:0.13534,1156:0.11266
3.8,662:0.08340
3.81,1284:0.12141
3.85,1216:0.10450,1350:0.13563
3.899,675:0.08999
3.8x10,1107:0.10533
3.9,566:0.11593,632:0.16678
3.98,685:0.09612,1385:0.10995
3.9x10,675:0.08999
30,57:0.11491,83:0.08519,123:0.09756,129:0.09440,165:0.10589,195:0.11354,204:0.11483,212:0.07796,272:0.07786,282:0.10085,443:0.10181,497:0.11602,520:0.10188,524:0.16989,536:0.08908,557:0.12301,558:0.13690,614:0.10246,673:0.08214,773:0.08582,872:0.10731,976:0.07468,1077:0.13322,1104:0.08731,1166:0.11049,1241:0.11397,1263:0.08920,1300:0.09010,1303:0.10821,1320:0.13056
300,266:0.09872,766:0.09877,858:0.11558,948:0.11753,976:0.07468,1021:0.17981,1095:0.11379,1102:0.19897,1258:0.10485
3000,1229:0.08809
30000,807:0.15592,1134:0.09114,1324:0.11812
3000000,443:0.10181
3000degreek,1318:0.15909
3014,1334:0.12006
304,620:0.09762
30degre,443:0.10181,1077:0.13322
30th,488:0.11770
31.75,464:0.10941
317000,1351:0.09284
32,771:0.14019,1201:0.07496
32000,438:0.16007
325,272:0.07786,599:0.09603
3300degreer,695:0.08820
333,793:0.11789,794:0.08747
3344,689:0.09812
3399,986:0.09018
34,566:0.11593,674:0.13344,815:0.10058,1338:0.11214
34.5,162:0.10337
3400,1167:0.10734
3430,464:0.10941
35,303:0.15084,422:0.13323,599:0.09603,622:0.10038,632:0.16678,946:0.08990,959:0.10732,1201:0.07496,1218:0.08925
350,622:0.10038,721:0.07158,1278:0.10764,1324:0.11812
3500,347:0.12494
35000,85:0.08896
350000,272:0.07786
352kmno,621:0.14459
36,82:0.08548,1069:0.17469
36000,280:0.12601,1147:0.07552
3600degreek,1316:0.10051
3660,1159:0.13940
37,440:0.15053,1258:0.10485
370,1150:0.14582
3792,959:0.13962
38,344:0.07231,780:0.14570,1191:0.11598
3800degre,1101:0.15096
381,773:0.08582
39,197:0.12567,1201:0.07496
39000,438:0.16007
4,7:0.09658,42:0.09362,77:0.10905,79:0.11399,80:0.09322,89:0.07640,110:0.07786,161:0.16978,165:0.08139,186:0.10729,190:0.11493,199:0.08559,218:0.12714,247:0.11937,270:0.10332,293:0.13328,314:0.11457,338:0.11189,343:0.14159,381:0.09509,421:0.11338,430:0.29463,442:0.10398,489:0.11965,567:0.11441,569:0.08824,695:0.08820,696:0.09326,699:0.10924,704:0.08094,777:0.11888,780:0.14570,876:0.11694,879:0.20520,934:0.10339,959:0.10732,975:0.10452,996:0.09433,1059:0.10028,1074:0.12325,1075:0.10869,1101:0.15096,1127:0.10432,1137:0.09224,1163:0.12198,1214:0.11543,1263:0.08920,1278:0.10764,1313:0.06389,1333:0.12295,1341:0.10986,1351:0.09284
4.0,514:0.15354,857:0.10691,959:0.10732,1290:0.11189,1336:0.10517,1338:0.11214
4.00,1159:0.13940,1226:0.09253
4.2,1278:0.10764
4.24,53:0.10490
4.36,1353:0.13337
4.5,82:0.08548,272:0.07786,346:0.10772,1381:0.09331
4.53,197:0.09659,1351:0.12079
4.54,1212:0.10014
4.60,1292:0.12600
4.65,1351:0.12079
4.7,697:0.11935,1107:0.10533
4.76,1224:0.09147
4.981,693:0.11965
40,207:0.10780,222:0.10484,289:0.10185,421:0.11338,423:0.11285,564:0.14060,646:0.09160,668:0.13603,1078:0.16854,1080:0.12629,1081:0.18726,1159:0.13940,1192:0.13138,1355:0.10636
400,272:0.07786,976:0.07468,993:0.11283,1150:0.14582
4000,187:0.08786,976:0.07468,1003:0.12183,1028:0.10832
40000,524:0.16989,806:0.09686,811:0.08747
400000,53:0.10490,493:0.09614
4000degreek,572:0.07694
4047,77:0.08381
40degre,717:0.08518
41,529:0.08623
4100,1258:0.10485
42,721:0.07158,962:0.07471
44,566:0.11593,622:0.10038,1078:0.19135,1239:0.07776
440,1134:0.09114
4412,443:0.13246
45,52:0.15142,165:0.13039,205:0.12802,262:0.07460,289:0.15044,561:0.10687,679:0.11300,689:0.09812,872:0.10731,1167:0.13966,1201:0.07496,1205:0.10113,1285:0.18118,1290:0.11189
4500,1143:0.13684,1230:0.11302
45000,805:0.10630
45degre,713:0.11879,782:0.10649,1338:0.11214,1341:0.10986
46,1201:0.07496,1338:0.11214
460,972:0.11147
479,843:0.11431,889:0.09015
48,636:0.10618,1378:0.14506
4950,1009:0.12205
49degre,709:0.10793
4th,1159:0.13940
4x10,564:0.09519
5,7:0.09658,9:0.14835,27:0.12623,49:0.10122,58:0.10999,63:0.12723,110:0.07786,113:0.13529,190:0.11493,197:0.09659,218:0.09772,225:0.08041,234:0.09151,292:0.09713,314:0.11457,325:0.09839,338:0.11189,340:0.17974,347:0.12494,354:0.13534,373:0.08828,377:0.13334,406:0.10162,421:0.11338,443:0.10181,464:0.10941,474:0.12350,493:0.09614,569:0.08824,675:0.11708,679:0.11300,739:0.08745,777:0.15467,792:0.06879,793:0.11789,794:0.08747,796:0.11385,852:0.11505,904:0.11768,912:0.11942,928:0.07592,934:0.10339,976:0.07468,985:0.11727,1040:0.06780,1080:0.12629,1156:0.14657,1188:0.14581,1212:0.10014,1216:0.10450,1310:0.08833,1313:0.06389,1333:0.09450,1354:0.12288,1356:0.12726,1399:0.14772
5.0,608:0.13184,661:0.10514,748:0.11375,996:0.09433,1151:0.11886
5.04,704:0.08094
5.5,205:0.09840,776:0.18210,947:0.09021,999:0.10876
5.7,1258:0.10485
5.73,1258:0.10485
5.8,9:0.08343,63:0.12723,372:0.14554,423:0.08674,569:0.08824,1231:0.10706,1390:0.10915
50,139:0.12459,544:0.14109,717:0.08518,721:0.07158,773:0.08582,797:0.08460,829:0.11478,915:0.15031,947:0.09021,959:0.10732,999:0.16065,1000:0.10517,1104:0.11360,1166:0.11049,1201:0.07496,1277:0.09382,1344:0.11075
500,83:0.08519,274:0.09310,1021:0.17981,1022:0.18179,1230:0.11302
5000,193:0.08177,858:0.11558,948:0.11753,983:0.14834
50000,436:0.17828,807:0.15592,1274:0.09769,1319:0.09580
500000,1292:0.09684
5000000,187:0.08786
500degre,302:0.12436
50degre,709:0.10793,1274:0.09769,1319:0.09580
51,163:0.07389
52,163:0.09614,432:0.10699
525,1102:0.19897
53,793:0.11789,794:0.08747
533,548:0.09157
54,443:0.10181,1040:0.06780
55,631:0.17287,632:0.16678,674:0.13344
55.6,946:0.08990
55000,1157:0.10300
55degre,792:0.06879
562,620:0.09762
58,59:0.09958,1338:0.11214
58.1,245:0.12420
582000,1351:0.09284
5d,478:0.15655
5th,1036:0.13630,1378:0.14506
6,9:0.08343,19:0.16649,22:0.13782,161:0.16978,196:0.11707,218:0.09772,225:0.08041,247:0.11937,354:0.13534,426:0.11969,442:0.10398,605:0.12087,634:0.13383,635:0.12057,636:0.13814,677:0.09127,685:0.12506,699:0.10924,777:0.15467,793:0.15338,794:0.12920,811:0.08747,816:0.12347,946:0.11697,972:0.11147,975:0.10452,1062:0.15821,1064:0.11530,1191:0.11598,1223:0.15734,1270:0.12365,1292:0.09684,1296:0.10172,1307:0.09642,1313:0.06389,1315:0.15751,1341:0.10986
6.0,84:0.10993,861:0.14244
6.00,1289:0.09660
6.2,713:0.11879
6.25,996:0.12273
6.28,234:0.09151
6.3,373:0.08828
6.5,721:0.07158,996:0.09433,1353:0.13337
6.8,546:0.12472,605:0.15725,689:0.14494,690:0.13738,708:0.17111,1355:0.13838
6.85,371:0.11838,604:0.12789
6.86,685:0.09612,1076:0.15765,1349:0.11477,1354:0.12288
6.9,686:0.10501
6.98,1353:0.17352
60,52:0.11638,204:0.11483,564:0.12384,566:0.11593,621:0.14459,622:0.10038,636:0.10618,797:0.08460,829:0.11478,859:0.10345,917:0.08433,1201:0.07496,1218:0.11612,1250:0.09056,1289:0.09660,1307:0.09642,1337:0.11811,1344:0.11075,1354:0.12288
600,84:0.10993,1003:0.12183,1020:0.12601,1025:0.11431
6000,554:0.11399,569:0.08824,1003:0.12183,1230:0.11302
60000,53:0.10490,806:0.12602
600000,1292:0.09684
6000degreek,1274:0.09769,1319:0.09580
60degre,675:0.08999,709:0.10793,792:0.06879,1341:0.10986
61,1334:0.12006
62,432:0.10699,1277:0.09382
625,272:0.07786
629,1330:0.10036
63,185:0.08707
63a2xx,780:0.14570
63a4xx,780:0.14570
64,808:0.11482
64a010,205:0.09840
65,900:0.16479,1052:0.13633,1172:0.11730
650,438:0.16007,506:0.14037
6500,571:0.09826
655,858:0.11558
65a004,1338:0.11214
65degre,1077:0.13322
66,1201:0.07496
660,620:0.09762,948:0.11753
662,654:0.14363
68,673:0.08214
680,603:0.09970
6in,1315:0.12107
7,110:0.07786,118:0.11850,234:0.09151,304:0.09096,427:0.10649,602:0.16925,603:0.12971,604:0.20489,677:0.09127,773:0.08582,1229:0.08809,1313:0.06389,1351:0.09284
7.08,1354:0.12288
7.2,529:0.08623,686:0.10501
7.30,1172:0.11730
7.35,1062:0.15821
7.4,62:0.08812,1381:0.09331
7.41,1091:0.14060
7.5,713:0.11879,1378:0.14506
7.66,992:0.08921
7.7,274:0.09310
7.8,709:0.10793
7.95,571:0.09826
70,426:0.11969,632:0.16678,674:0.13344,999:0.14149,1201:0.07496,1229:0.11460
700,616:0.12840,721:0.07158
7000,1098:0.12096,1100:0.12600
7000effici,1204:0.08167
704,266:0.09872,422:0.13323,704:0.08094,1217:0.12987
707a,792:0.06879
7090,1006:0.15530
7157,388:0.11318
7225226,417:0.07187
74,511:0.12193
75,673:0.08214,829:0.11478,1289:0.09660
750000,272:0.07786
75degre,1077:0.13322
76,1168:0.13327,1342:0.09028
78000,1065:0.12760
78847,259:0.11190
79.5degre,713:0.11879
7a,1040:0.06780
7c,1040:0.06780
8,58:0.10999,197:0.09659,199:0.08559,210:0.08718,218:0.09772,219:0.10065,239:0.12181,252:0.09342,338:0.11189,342:0.09438,349:0.09734,423:0.08674,442:0.10398,522:0.07910,529:0.08623,628:0.10149,654:0.14363,677:0.09127,691:0.13502,695:0.08820,696:0.09326,755:0.18080,791:0.16365,808:0.11482,866:0.13389,972:0.11147,1040:0.06780,1061:0.08477,1212:0.10014,1214:0.11543,1224:0.09147,1270:0.12365,1313:0.06389,1378:0.14506
8.238,127:0.16382
8.6,1218:0.08925
8.60,1285:0.18118
80,216:0.09356,426:0.11969,673:0.08214,768:0.16970,1003:0.12183,1107:0.10533,1201:0.07496
800,867:0.12151,1025:0.11431,1100:0.12600
8000,1161:0.13449,1196:0.14287
81,529:0.08623
81944,931:0.18310
826,571:0.09826
828,793:0.11789,794:0.08747
83000,807:0.15592
84,1342:0.09028
85.5,571:0.09826
850,867:0.12151
8500,558:0.13690
85degre,688:0.09736
86,1163:0.12198
8640,274:0.09310
88.8,673:0.08214
897,1047:0.07605
8n,1061:0.11029
8x10,225:0.08041
9,9:0.08343,40:0.11130,197:0.14268,198:0.09434,213:0.08923,252:0.09342,278:0.12198,427:0.10649,675:0.11708,685:0.12506,695:0.08820,755:0.13897,802:0.13343,972:0.11147,985:0.11727
9.0,1336:0.10517
9.17,1239:0.07776
9.2,1395:0.16792
9.5,272:0.10129
9.6,708:0.17111,1355:0.13838
9.65,1292:0.09684,1351:0.12079
9.758,259:0.11190
9.9,413:0.12382
90,225:0.08041,510:0.18304,567:0.11441,839:0.12089,867:0.15809,993:0.11283,1005:0.12565,1051:0.10321,1095:0.11379,1127:0.10432,1162:0.14809,1164:0.10340,1167:0.10734,1258:0.10485,1307:0.12544
900,438:0.16007,867:0.12151,986:0.09018
90000,915:0.15031,1000:0.10517
90degre,711:0.13334
94,432:0.10699
954,154:0.15626
962,225:0.08041
97,423:0.08674
97000,423:0.08674
979,705:0.10414
99degre,709:0.14042
=pressur,811:0.08747
a50f06,923:0.12791
a51j04,924:0.10499
a52b06,924:0.10499
a=01,1327:0.11646
a=012,1327:0.11646
a=2,1327:0.11646
ab,744:0.13134
abbrevi,122:0.10431
abil,51:0.11396,77:0.08381,738:0.12246
abl,99:0.08974,132:0.08595,581:0.16049,695:0.08820,763:0.15528,908:0.10837,914:0.11391,986:0.09018,1114:0.10739
ablat,82:0.11121,274:0.12113,536:0.08908,553:0.20828,587:0.13772,1065:0.16601,1096:0.15346,1097:0.18248,1098:0.17867,1099:0.26437,1100:0.20186,1101:0.19640,1226:0.13667,1241:0.16834,1279:0.10955
ablatedlength,1065:0.12760
abovement,46:0.16636
abrupt,439:0.11296,662:0.08340,992:0.08921,1039:0.09194
absenc,152:0.10954,499:0.10508,757:0.09184,966:0.09709,1147:0.07552,1237:0.13787,1281:0.10157,1321:0.09673,1323:0.14690
absent,628:0.10149
absolut,62:0.11465,414:0.10561,460:0.14098,474:0.12350,562:0.09874,987:0.09651,1003:0.15850,1010:0.12108,1035:0.09974,1261:0.09169,1395:0.16792
absorb,163:0.07389,164:0.08396,353:0.12298,373:0.08828,881:0.11690,1147:0.07552,1200:0.11456,1244:0.07543,1279:0.10955
absorpt,166:0.10890,357:0.15189,620:0.12701,1316:0.10051,1346:0.12513
abstract,154:0.15626,479:0.12423
abund,718:0.12029
academ,344:0.07231
acceler,29:0.09738,33:0.09250,34:0.16581,51:0.14827,83:0.08519,164:0.12401,208:0.13349,290:0.16504,292:0.09713,330:0.14182,339:0.20544,459:0.09047,562:0.09874,595:0.10122,620:0.09762,662:0.08340,698:0.12245,768:0.16970,788:0.10060,813:0.13440,814:0.10509,832:0.29219,896:0.14818,967:0.20095,1201:0.07496,1219:0.19519,1242:0.09904,1346:0.12513
acceleromet,882:0.18785
accentu,1169:0.11616
accept,101:0.08299,253:0.11555,388:0.11318,575:0.09243,656:0.10068,723:0.12683,753:0.10364,819:0.14593,841:0.17585,1002:0.11455,1019:0.10242,1153:0.12046,1242:0.09904,1261:0.09169,1346:0.12513,1347:0.10122,1370:0.10065
access,1105:0.13870
accident,715:0.14893
accommod,168:0.09733,518:0.15074,974:0.10568,1056:0.09452,1147:0.09825,1239:0.07776
accompani,53:0.10490,109:0.11297,152:0.10954,207:0.10780,261:0.11750,296:0.09890,520:0.10188,589:0.10016,638:0.10730,724:0.11983,797:0.08460,1147:0.07552,1277:0.09382
accomplish,47:0.10547,163:0.07389,172:0.09835,192:0.10753,355:0.15090,363:0.09684,579:0.10781,718:0.12029,727:0.10982,968:0.11101,1147:0.09825
accord,110:0.07786,125:0.10403,133:0.10902,134:0.11175,152:0.10954,179:0.09967,184:0.11861,188:0.10480,263:0.15226,297:0.11786,317:0.09864,377:0.13334,403:0.13756,410:0.11935,455:0.10909,458:0.09744,542:0.10466,573:0.11526,585:0.13960,614:0.10246,625:0.08241,667:0.09692,718:0.12029,818:0.14044,827:0.08632,874:0.09619,883:0.13256,899:0.11305,927:0.07519,934:0.10339,1014:0.19335,1035:0.09974,1036:0.13630,1061:0.08477,1072:0.10070,1075:0.10869,1127:0.13573,1136:0.10118,1186:0.16678,1199:0.09560,1244:0.07543,1304:0.15602,1373:0.09202,1375:0.08631
account,22:0.13782,25:0.07821,26:0.19046,42:0.09362,44:0.08839,52:0.11638,63:0.12723,72:0.09570,78:0.10206,87:0.13299,97:0.09871,132:0.11182,134:0.11175,149:0.09601,170:0.10091,171:0.11122,172:0.09835,182:0.13355,202:0.08670,207:0.10780,210:0.08718,246:0.12649,284:0.14662,294:0.09189,305:0.11740,309:0.11467,328:0.08488,352:0.10305,362:0.18027,424:0.15122,429:0.21624,444:0.15248,445:0.16247,458:0.09744,468:0.13829,508:0.14513,528:0.13149,531:0.13022,544:0.14109,572:0.07694,573:0.11526,594:0.18317,596:0.14743,600:0.11936,610:0.12247,616:0.12840,619:0.22148,652:0.15944,667:0.09692,683:0.09501,697:0.11935,714:0.14441,737:0.14823,766:0.09877,786:0.10768,807:0.15592,818:0.14044,820:0.10040,825:0.09707,826:0.08713,903:0.10261,923:0.12791,927:0.07519,957:0.13797,975:0.10452,984:0.13814,1012:0.13083,1027:0.14872,1048:0.19401,1050:0.17570,1178:0.15034,1201:0.07496,1211:0.12923,1221:0.14069,1226:0.09253,1235:0.09289,1248:0.07819,1286:0.15190,1310:0.08833,1339:0.10193,1364:0.10886,1392:0.09178
accru,33:0.09250
accumul,186:0.10729,835:0.24976,837:0.12992
accur,24:0.09424,25:0.07821,32:0.11329,36:0.12117,49:0.07780,50:0.11622,54:0.10314,55:0.12829,72:0.12451,101:0.08299,127:0.12592,165:0.08139,186:0.13959,193:0.08177,232:0.15259,237:0.12704,262:0.07460,294:0.09189,320:0.29636,329:0.06350,362:0.18027,365:0.10984,366:0.14270,370:0.11493,381:0.09509,411:0.15974,423:0.08674,443:0.13246,455:0.10909,459:0.09047,461:0.14874,467:0.10501,476:0.10132,477:0.13218,497:0.11602,567:0.11441,622:0.10038,628:0.10149,634:0.13383,639:0.15483,671:0.13383,685:0.09612,687:0.15718,705:0.10414,734:0.10574,753:0.13484,760:0.11373,873:0.11496,921:0.11143,927:0.07519,936:0.11914,947:0.09021,962:0.09720,980:0.11283,1000:0.10517,1053:0.11116,1066:0.08779,1068:0.11811,1070:0.14036,1134:0.09114,1140:0.21471,1153:0.12046,1179:0.09982,1182:0.13178,1207:0.10980,1215:0.13775,1219:0.13214,1231:0.10706,1246:0.08775,1310:0.08833,1311:0.17034,1330:0.10036,1343:0.12562,1375:0.08631,1386:0.13505
accuraci,54:0.13418,57:0.11491,70:0.11470,92:0.10118,140:0.10792,155:0.09638,160:0.08396,162:0.10337,163:0.09614,193:0.10638,213:0.08923,231:0.14281,232:0.17551,235:0.12601,237:0.12704,261:0.11750,266:0.09872,275:0.12906,292:0.12636,309:0.11467,325:0.12801,391:0.12860,433:0.07864,461:0.19351,470:0.15448,479:0.16162,498:0.12409,515:0.12860,522:0.07910,527:0.14936,530:0.13597,548:0.09157,585:0.13960,622:0.10038,659:0.12736,677:0.09127,750:0.16542,767:0.11828,786:0.10768,788:0.10060,842:0.18879,843:0.11431,851:0.12988,853:0.20599,889:0.09015,896:0.14818,921:0.11143,923:0.12791,927:0.07519,1009:0.12205,1043:0.11193,1047:0.07605,1062:0.15821,1078:0.12954,1092:0.09540,1113:0.12258,1148:0.16689,1182:0.10129,1209:0.09252,1226:0.09253,1241:0.11397,1246:0.12962,1248:0.07819,1250:0.09056,1272:0.15005,1302:0.10951,1312:0.14987,1335:0.11071,1342:0.09028,1355:0.10636,1375:0.08631,1377:0.13782,1384:0.12055,1388:0.20531,1392:0.09178
acet,1127:0.10432
achiev,14:0.07551,163:0.09614,172:0.09835,184:0.11861,252:0.09342,342:0.09438,415:0.12768,416:0.09206,455:0.10909,465:0.13748,486:0.09471,488:0.11770,525:0.14145,552:0.09796,595:0.10122,644:0.10963,677:0.09127,720:0.10799,733:0.10900,792:0.08950,820:0.10040,838:0.16691,869:0.08490,1051:0.10321,1089:0.14039,1095:0.11379,1143:0.17803,1205:0.10113,1207:0.10980,1246:0.08775,1263:0.08920,1264:0.10379,1268:0.08259,1323:0.14690,1347:0.10122
ackeret,14:0.07551,297:0.11786,390:0.12757,1249:0.16450
acoust,65:0.15156,75:0.20308,113:0.13529,151:0.14488,209:0.09228,640:0.08356,720:0.15952,721:0.09313,722:0.11262,724:0.22111,727:0.10982,899:0.11305,1208:0.20754,1244:0.15683,1276:0.22534
acquir,523:0.12808,1255:0.11106
acquisit,701:0.10046
acr,216:0.09356
acrodynam,1207:0.14285
across,15:0.12393,45:0.12103,50:0.11622,62:0.08812,82:0.08548,89:0.07640,101:0.10798,109:0.11297,110:0.07786,128:0.11025,177:0.10564,190:0.11493,212:0.07796,213:0.08923,216:0.09356,230:0.10331,257:0.10846,277:0.09981,349:0.09734,374:0.13301,459:0.09047,565:0.10294,576:0.07315,603:0.09970,606:0.11280,667:0.09692,727:0.10982,737:0.14823,805:0.10630,808:0.11482,949:0.12892,960:0.12493,962:0.07471,966:0.09709,975:0.10452,990:0.11384,1127:0.10432,1198:0.09412,1202:0.08943,1226:0.09253,1239:0.07776,1244:0.09813,1269:0.17142,1277:0.09382,1289:0.09660
acrothermochemistri,1254:0.12376
acrothermoelast,12:0.13240
act,44:0.08839,51:0.14827,52:0.11638,87:0.13299,104:0.13452,174:0.09490,202:0.08670,210:0.08718,267:0.10905,427:0.10649,506:0.14037,509:0.20909,582:0.15933,894:0.12714,895:0.14367,899:0.11305,1005:0.12565,1059:0.10028,1256:0.24494,1304:0.11992,1329:0.12130,1333:0.12295
action,100:0.09592,170:0.10091,211:0.10894,424:0.15122,821:0.17591,860:0.14044,934:0.13452,992:0.08921,1244:0.12815,1255:0.11106
activ,83:0.11084,185:0.08707,518:0.13277,622:0.10038,871:0.18853,908:0.10837,1061:0.08477,1103:0.15313,1131:0.18082,1241:0.11397,1268:0.08259,1284:0.12141
actual,44:0.08839,73:0.08297,80:0.09322,97:0.09871,123:0.09756,198:0.09434,201:0.10351,210:0.08718,211:0.10894,236:0.11738,283:0.10604,292:0.09713,304:0.09096,363:0.09684,435:0.11110,443:0.10181,453:0.10279,459:0.11770,500:0.13636,618:0.11958,671:0.13383,695:0.08820,729:0.10946,739:0.08745,826:0.08713,829:0.11478,847:0.14818,928:0.07592,1016:0.17162,1071:0.14180,1127:0.10432,1133:0.18462,1134:0.09114,1195:0.12107,1198:0.09412,1225:0.09466,1275:0.15339,1342:0.09028,1361:0.11857,1382:0.09370,1394:0.12494
actur,201:0.10351
ad,499:0.08077,548:0.09157,717:0.08518,768:0.16970,875:0.20679,903:0.10261,1095:0.11379,1229:0.08809,1268:0.08259,1328:0.10315,1355:0.10636
adam,916:0.11720,1299:0.16884
adapt,209:0.09228,342:0.09438,760:0.11373,799:0.09589,861:0.14244,901:0.12582,923:0.12791,1077:0.13322,1190:0.13098
add,78:0.10206,497:0.11602,499:0.08077,731:0.10032
addendum,875:0.20679,983:0.14834,1040:0.06780
addit,8:0.12962,32:0.11329,44:0.08839,58:0.10999,60:0.12502,83:0.12584,87:0.13299,94:0.07641,101:0.08299,113:0.17602,124:0.10330,134:0.11175,162:0.10337,191:0.10395,196:0.11707,198:0.09434,199:0.08559,210:0.08718,212:0.07796,219:0.10065,220:0.12135,225:0.08041,237:0.12704,262:0.07460,282:0.10085,285:0.19699,287:0.18522,290:0.12685,295:0.14064,299:0.12476,330:0.14182,352:0.10305,360:0.12005,364:0.07936,386:0.15322,399:0.18650,414:0.10561,452:0.08306,506:0.14037,508:0.14513,558:0.13690,573:0.11526,576:0.07315,588:0.10045,599:0.09603,610:0.12247,623:0.10683,627:0.12092,628:0.10149,645:0.10949,649:0.09888,678:0.14924,695:0.08820,705:0.10414,710:0.09928,721:0.10573,766:0.09877,773:0.08582,785:0.12531,788:0.10060,797:0.08460,812:0.11278,814:0.10509,859:0.10345,921:0.11143,936:0.11914,952:0.13492,954:0.16075,957:0.13797,974:0.10568,989:0.10985,1001:0.13058,1028:0.10832,1037:0.14979,1039:0.09194,1055:0.12768,1095:0.11379,1103:0.15313,1129:0.13472,1164:0.10340,1195:0.09306,1201:0.07496,1203:0.11125,1205:0.10113,1207:0.18655,1218:0.08925,1248:0.07819,1260:0.13826,1262:0.13212,1289:0.09660,1290:0.11189,1325:0.08721,1328:0.17525,1335:0.11071,1351:0.12079,1361:0.11857
adequ,54:0.10314,89:0.07640,92:0.10118,93:0.13992,171:0.11122,179:0.09967,184:0.11861,196:0.11707,210:0.08718,225:0.08041,441:0.09085,557:0.12301,567:0.11441,603:0.12971,618:0.11958,729:0.10946,801:0.11144,927:0.07519,1039:0.09194,1136:0.10118
adequaci,459:0.09047,652:0.15944
adiabat,53:0.10490,54:0.10314,80:0.09322,84:0.10993,90:0.14830,217:0.13580,340:0.17974,413:0.12382,426:0.11969,480:0.14707,505:0.20172,623:0.10683,645:0.10949,646:0.11918,941:0.14992,986:0.09018,1105:0.18045,1180:0.10880,1327:0.11646,1335:0.11071
adjac,100:0.09592,121:0.12249,134:0.11175,168:0.09733,211:0.10894,219:0.10065,282:0.10085,341:0.10069,422:0.13323,434:0.10172,576:0.07315,588:0.10045,589:0.10016,644:0.10963,647:0.17863,697:0.15527,869:0.08490,971:0.13001,989:0.10985,1144:0.09022,1202:0.11635,1288:0.14149
adjoin,665:0.13247
adjoint,379:0.12385
adjust,178:0.16933,204:0.11483,358:0.16647,366:0.10968,426:0.11969,458:0.09744,576:0.07315,588:0.10045,1195:0.09306,1202:0.11635,1257:0.12209
administr,1065:0.12760
admiss,1128:0.12861,1373:0.09202
admit,62:0.08812,191:0.10395,730:0.09813,1184:0.12912,1372:0.10850
admixtur,481:0.14066
adopt,107:0.15490,149:0.09601,640:0.08356,704:0.08094,733:0.10900,734:0.10574,1108:0.10084
adsorpt,585:0.13960
advanc,71:0.20566,72:0.09570,132:0.08595,187:0.08786,315:0.07434,406:0.10162,486:0.09471,521:0.12797,718:0.12029,739:0.08745,892:0.15800,933:0.09021,1052:0.13633,1160:0.13235,1244:0.07543,1294:0.10758,1295:0.16884,1362:0.11871
advantag,33:0.09250,34:0.11225,77:0.08381,102:0.15725,185:0.11327,206:0.09395,225:0.08041,244:0.07116,253:0.11555,477:0.13218,611:0.11370,747:0.13434,869:0.08490,876:0.11694,889:0.09015,962:0.07471,1044:0.12580,1054:0.13411,1086:0.17179,1137:0.09224,1147:0.07552,1239:0.10117,1289:0.09660,1313:0.06389,1388:0.15781
advent,293:0.13328
advers,40:0.11130,54:0.10314,55:0.12829,62:0.08812,79:0.11399,145:0.13106,466:0.09919,481:0.14066,489:0.11965,511:0.12193,522:0.10291,673:0.08214,792:0.06879,798:0.06506,991:0.10756,1040:0.06780,1075:0.10869,1094:0.12989,1169:0.11616,1225:0.15166,1261:0.09169,1380:0.09257,1386:0.13505
advisori,314:0.11457,1385:0.10995
advoc,390:0.12757,592:0.15049
aec,830:0.10472,1055:0.12768
aeolotrop,1392:0.09178
aerelast,12:0.13240
aerfoil,798:0.06506
aero,22:0.13782
aero2441,229:0.10420
aeroballist,505:0.15505
aerocosmonaut,718:0.12029
aerodynam,1:0.12466,5:0.22381,11:0.14016,13:0.12969,14:0.12097,29:0.09738,32:0.11329,36:0.12117,44:0.13057,51:0.18257,52:0.15142,66:0.18104,73:0.08297,77:0.10905,95:0.14368,120:0.14151,129:0.09440,137:0.27689,141:0.14037,142:0.13038,163:0.11838,164:0.08396,172:0.14528,202:0.13890,203:0.17502,204:0.14940,205:0.09840,216:0.09356,225:0.10461,237:0.12704,244:0.07116,272:0.07786,277:0.09981,284:0.14662,287:0.18522,289:0.10185,297:0.11786,329:0.09380,337:0.14974,342:0.09438,360:0.12005,379:0.12385,390:0.16597,391:0.18996,406:0.10162,415:0.16612,434:0.10172,441:0.15436,442:0.10398,452:0.08306,453:0.15184,464:0.10941,481:0.14066,486:0.09471,499:0.10508,530:0.13597,536:0.08908,544:0.14109,546:0.12472,567:0.14885,592:0.15049,598:0.19019,599:0.09603,606:0.16662,608:0.13184,625:0.08241,627:0.12092,632:0.16678,634:0.17411,635:0.12057,638:0.15850,650:0.16578,658:0.15640,671:0.13383,685:0.12506,688:0.14381,689:0.12766,698:0.12245,704:0.08094,707:0.10375,708:0.17111,709:0.10793,711:0.17348,712:0.12222,715:0.14893,716:0.15871,717:0.12582,719:0.14086,746:0.12608,748:0.14799,749:0.22565,753:0.18429,759:0.15406,780:0.14570,781:0.13025,783:0.16538,792:0.06879,794:0.08747,798:0.06506,801:0.14499,812:0.14673,813:0.17486,814:0.10509,815:0.13086,859:0.15281,860:0.20745,877:0.24113,886:0.16893,892:0.15800,894:0.09772,896:0.14818,899:0.14708,902:0.10773,917:0.08433,919:0.11592,925:0.17340,927:0.07519,933:0.09021,939:0.14683,947:0.09021,972:0.11147,978:0.16474,981:0.13559,982:0.11759,999:0.16065,1005:0.12565,1008:0.15198,1064:0.11530,1066:0.17156,1089:0.14039,1104:0.11360,1112:0.16455,1115:0.16597,1147:0.07552,1156:0.11266,1162:0.14809,1163:0.12198,1164:0.13452,1195:0.09306,1197:0.17773,1206:0.13064,1209:0.09252,1244:0.09813,1246:0.08775,1259:0.11686,1271:0.08674,1272:0.19522,1274:0.09769,1291:0.13252,1305:0.18487,1314:0.16849,1319:0.09580,1320:0.13056,1328:0.10315,1331:0.15710,1332:0.16583,1333:0.15140,1334:0.15621,1335:0.16354,1336:0.13683,1339:0.13262,1340:0.14563,1342:0.11746,1343:0.09655,1345:0.16999,1347:0.13168,1352:0.12998,1379:0.18216,1380:0.15728,1391:0.10060
aerodynamich,662:0.08340
aerodynamieist,27:0.12623
aeroelast,12:0.17226,14:0.11153,78:0.10206,141:0.14037,202:0.08670,284:0.14662,390:0.12757,486:0.09471,746:0.18624,781:0.10011,875:0.20679,1066:0.08779,1331:0.15710,1332:0.12746,1334:0.12006,1361:0.11857
aeroelastician,14:0.07551
aerofoil,202:0.08670,203:0.17502,206:0.17335,226:0.16255,245:0.18346,247:0.11937,249:0.20569,265:0.22202,278:0.15870,316:0.15204,468:0.17992,470:0.15448,597:0.21047,631:0.22491,652:0.23551,672:0.15222,676:0.22751,746:0.12608,757:0.11949,798:0.08465,799:0.09589,869:0.12541,899:0.16699,1287:0.14898,1323:0.14690,1324:0.11812,1325:0.08721,1333:0.09450
aeronaut,12:0.13240,33:0.09250,134:0.11175,220:0.12135,244:0.07116,314:0.11457,373:0.08828,453:0.10279,532:0.20909,718:0.19271,792:0.06879,804:0.11503,980:0.11283,1065:0.12760,1094:0.12989,1385:0.10995
aeroplan,253:0.11555,368:0.12734,811:0.08747,1113:0.12258
aerotherm,1279:0.10955
aerothermochem,344:0.07231
aerothermodynam,1213:0.10406
aerothermoelast,486:0.18508
affect,42:0.09362,76:0.11381,82:0.08548,135:0.11517,147:0.11238,152:0.10954,173:0.08952,174:0.09490,189:0.12540,197:0.09659,215:0.17588,272:0.07786,308:0.12363,439:0.14696,440:0.15053,459:0.11770,521:0.12797,575:0.09243,618:0.11958,655:0.16032,656:0.10068,666:0.12451,673:0.10687,679:0.11300,695:0.11475,710:0.12916,757:0.09184,798:0.06506,810:0.11283,902:0.10773,925:0.17340,946:0.08990,989:0.10985,999:0.10876,1000:0.10517,1004:0.13172,1035:0.09974,1040:0.06780,1188:0.11207,1205:0.10113,1274:0.09769,1319:0.09580,1338:0.11214,1370:0.10065,1381:0.09331
affin,259:0.11190,541:0.10004
affirm,373:0.08828
afford,204:0.11483,962:0.07471,982:0.11759,1261:0.09169
aforement,456:0.09336,699:0.10924,927:0.07519,1362:0.11871
afresh,499:0.08077
aft,508:0.14513,522:0.10291,673:0.10687,707:0.13499,757:0.09184,758:0.13765,793:0.11789
afterbodi,25:0.07821,172:0.15756,174:0.09490,233:0.21910,234:0.09151,282:0.10085,370:0.16976,401:0.08325,423:0.08674,433:0.07864,456:0.09336,508:0.23251,572:0.07694,662:0.10851,717:0.08518,759:0.10430,815:0.10058,816:0.16064,915:0.15031,947:0.15326,993:0.14679,1000:0.10517,1001:0.13058,1040:0.13841,1066:0.11422,1114:0.10739,1328:0.13420
afterburn,253:0.11555,374:0.13301,695:0.08820,721:0.11468
afterflow,170:0.13128
age,1279:0.10955
agenc,1367:0.18141
ago,91:0.12229,1299:0.16884
agre,1:0.12466,14:0.07551,72:0.09570,126:0.12762,165:0.10589,177:0.10564,187:0.08786,206:0.09395,233:0.14833,255:0.10956,289:0.10185,318:0.12551,324:0.16981,330:0.14182,338:0.11189,361:0.17208,363:0.09684,383:0.13768,417:0.07187,433:0.07864,443:0.10181,572:0.07694,605:0.12087,635:0.12057,648:0.15057,662:0.08340,666:0.12451,686:0.10501,688:0.09736,728:0.16884,809:0.15105,830:0.10472,869:0.08490,887:0.14263,903:0.10261,923:0.12791,947:0.13325,950:0.15149,959:0.10732,966:0.09709,996:0.09433,1027:0.14872,1107:0.13704,1108:0.10084,1118:0.15625,1157:0.10300,1185:0.11797,1191:0.11598,1195:0.09306,1199:0.09560,1204:0.08167,1215:0.13775,1231:0.10706,1239:0.07776,1268:0.08259,1269:0.17142,1270:0.12365,1303:0.10821,1367:0.18141
agreement,9:0.10854,16:0.12298,29:0.09738,39:0.12706,63:0.12723,69:0.12829,76:0.11381,79:0.11399,109:0.11297,111:0.15048,115:0.10423,121:0.12249,125:0.10403,129:0.09440,139:0.12459,150:0.16632,155:0.09638,160:0.08396,178:0.16933,183:0.11852,191:0.10395,197:0.12567,199:0.08559,203:0.17502,206:0.12223,210:0.08718,225:0.08041,227:0.11984,234:0.11905,276:0.10718,282:0.10085,283:0.10604,287:0.12540,289:0.10185,294:0.13573,295:0.18298,304:0.09096,307:0.12364,315:0.07434,329:0.08261,347:0.12494,369:0.10193,372:0.14554,373:0.08828,381:0.09509,395:0.09493,397:0.13535,409:0.16054,417:0.07187,421:0.11338,431:0.12668,434:0.10172,435:0.14455,454:0.10837,455:0.10909,468:0.13829,474:0.12350,488:0.11770,493:0.09614,494:0.11643,496:0.13077,498:0.12409,503:0.14178,518:0.13277,520:0.10188,522:0.07910,538:0.11018,540:0.10212,557:0.16004,564:0.09519,567:0.11441,569:0.08824,576:0.07315,586:0.14225,588:0.10045,600:0.11936,606:0.11280,628:0.10149,630:0.14774,635:0.19315,668:0.13603,682:0.10818,685:0.09612,688:0.12667,689:0.12766,712:0.09394,729:0.10946,740:0.10570,752:0.15756,764:0.11891,767:0.11828,781:0.13025,782:0.10649,805:0.10630,806:0.14307,811:0.08747,812:0.11278,820:0.14830,823:0.19011,831:0.15189,846:0.10364,850:0.16216,859:0.10345,860:0.14044,863:0.13850,867:0.12151,891:0.14558,912:0.11942,919:0.11592,927:0.11107,928:0.07592,933:0.09021,963:0.18027,964:0.12019,965:0.15637,974:0.10568,976:0.07468,988:0.14997,990:0.11384,999:0.10876,1000:0.10517,1006:0.15530,1012:0.13083,1021:0.17981,1028:0.10832,1040:0.06780,1046:0.16095,1049:0.16421,1065:0.12760,1066:0.12968,1075:0.14141,1078:0.12954,1081:0.14393,1097:0.09890,1100:0.16393,1118:0.20328,1119:0.08651,1121:0.19945,1122:0.10480,1123:0.14467,1126:0.15031,1127:0.10432,1128:0.12861,1132:0.14574,1137:0.09224,1138:0.16338,1151:0.11886,1166:0.11049,1182:0.10129,1187:0.13090,1196:0.14287,1198:0.09412,1213:0.16671,1216:0.10450,1222:0.10699,1225:0.09466,1234:0.15670,1237:0.13787,1246:0.08775,1248:0.07819,1250:0.09056,1257:0.12209,1258:0.10485,1261:0.09169,1262:0.13212,1270:0.12365,1281:0.10157,1290:0.11189,1300:0.09010,1302:0.10951,1313:0.06389,1336:0.10517,1363:0.11414,1374:0.15627,1375:0.08631,1382:0.09370,1384:0.12055,1385:0.10995,1390:0.10915,1396:0.14772,1397:0.15944
ahead,89:0.09940,138:0.12902,239:0.12181,291:0.17741,315:0.07434,423:0.08674,576:0.07315,690:0.13738,757:0.09184,800:0.11613,903:0.10261,972:0.17858,974:0.10568,1151:0.11886,1156:0.11266,1165:0.12105,1167:0.10734,1216:0.13596,1343:0.12562,1351:0.09284,1364:0.10886
aid,27:0.12623,33:0.09250,66:0.12256,97:0.09871,128:0.11025,193:0.10638,351:0.12588,498:0.12409,722:0.11262,808:0.11482,878:0.15596,906:0.17938,926:0.12474,937:0.12928,1005:0.12565,1018:0.13092,1025:0.11431,1057:0.12492,1286:0.15190,1337:0.11811,1376:0.15830
ailcron,199:0.08559
aileron,199:0.15792,496:0.19317,520:0.13255,643:0.20486,701:0.10046,903:0.15157,1163:0.12198,1332:0.12746,1334:0.12006
aim,147:0.11238,191:0.10395,237:0.12704,453:0.10279,457:0.13917,792:0.06879,1305:0.18487,1310:0.08833
air,9:0.12323,14:0.07551,25:0.07821,27:0.12623,33:0.09250,37:0.11609,49:0.07780,50:0.11622,68:0.20614,100:0.09592,102:0.15725,110:0.07786,125:0.10403,129:0.12282,138:0.09917,139:0.12459,142:0.13038,146:0.13033,171:0.11122,173:0.08952,185:0.15481,188:0.10480,193:0.13099,200:0.12899,209:0.09228,212:0.07796,216:0.13820,240:0.16458,242:0.17974,243:0.15723,259:0.11190,262:0.11020,282:0.10085,283:0.10604,302:0.22114,303:0.15084,304:0.09096,309:0.11467,328:0.11043,330:0.14182,332:0.11275,338:0.14558,343:0.18421,348:0.12196,355:0.25637,360:0.12005,365:0.10984,370:0.11493,380:0.18199,405:0.24198,413:0.16110,414:0.10561,421:0.14751,437:0.15473,442:0.10398,456:0.09336,481:0.18301,483:0.22062,488:0.11770,499:0.10508,502:0.22619,518:0.10205,529:0.08623,536:0.13158,541:0.13016,548:0.13525,552:0.14470,553:0.11288,554:0.11399,558:0.13690,572:0.11364,576:0.09517,578:0.18744,588:0.10045,592:0.15049,593:0.11299,595:0.13169,602:0.13009,613:0.16688,614:0.15135,615:0.22930,616:0.20571,617:0.20117,621:0.21357,622:0.13060,624:0.09693,625:0.12173,627:0.12092,628:0.17243,630:0.11356,635:0.20484,637:0.14926,645:0.10949,646:0.09160,651:0.11757,686:0.15512,691:0.13502,695:0.13028,727:0.10982,753:0.10364,776:0.18210,789:0.15557,804:0.18428,874:0.09619,894:0.09772,905:0.15481,914:0.16826,915:0.15031,946:0.08990,947:0.11736,949:0.16772,958:0.18316,970:0.15037,975:0.13599,991:0.10756,992:0.11607,997:0.14214,998:0.19170,1001:0.13058,1004:0.19457,1007:0.15148,1009:0.15879,1010:0.12108,1011:0.22559,1096:0.15346,1098:0.15737,1110:0.15948,1115:0.12756,1143:0.20213,1144:0.09022,1150:0.18971,1151:0.11886,1156:0.14657,1157:0.13401,1159:0.18136,1161:0.17497,1165:0.12105,1166:0.11049,1185:0.15348,1191:0.11598,1199:0.15316,1204:0.08167,1216:0.10450,1224:0.09147,1226:0.09253,1227:0.16259,1230:0.16695,1237:0.13787,1254:0.12376,1263:0.08920,1264:0.10379,1278:0.10764,1279:0.10955,1282:0.12022,1290:0.17925,1292:0.09684,1296:0.10172,1303:0.14078,1313:0.06389,1315:0.15751,1325:0.08721,1335:0.17737,1336:0.17868,1337:0.11811,1351:0.09284,1353:0.13337,1355:0.13838,1374:0.12011,1385:0.14305
airborn,141:0.14037
aircraft,12:0.17226,14:0.07551,29:0.12669,47:0.13722,51:0.22271,75:0.13748,76:0.11381,78:0.10206,100:0.17055,172:0.09835,184:0.11861,195:0.11354,202:0.12807,209:0.09228,220:0.12135,245:0.12420,251:0.15960,253:0.19632,311:0.11158,328:0.08488,345:0.12277,364:0.07936,374:0.13301,415:0.16612,416:0.09206,453:0.13374,497:0.11602,658:0.09763,721:0.07158,724:0.11983,725:0.14237,726:0.13405,729:0.10946,747:0.13434,791:0.16365,792:0.11687,804:0.11503,810:0.11283,811:0.14014,836:0.12524,878:0.15596,882:0.18785,883:0.17247,884:0.24900,908:0.10837,909:0.17557,911:0.14723,914:0.11391,917:0.08433,925:0.17340,948:0.11753,1042:0.20142,1051:0.10321,1064:0.11530,1144:0.16042,1163:0.12198,1165:0.15749,1166:0.14375,1167:0.13966,1168:0.19686,1169:0.18609,1170:0.14122,1197:0.15654,1246:0.08775,1300:0.09010,1328:0.10315,1380:0.12044
aircrafttyp,725:0.14237
airflow,113:0.13529,401:0.12297,572:0.07694,576:0.07315,1270:0.12365,1296:0.10172,1297:0.11893
airfoil,14:0.09824,39:0.24182,52:0.11638,70:0.22940,179:0.09967,189:0.12540,193:0.13892,194:0.29049,201:0.13466,204:0.16962,205:0.14534,312:0.21823,352:0.10305,363:0.09684,373:0.08828,380:0.13988,404:0.18766,409:0.16054,427:0.10649,439:0.11296,440:0.22234,441:0.14555,443:0.13246,444:0.15248,445:0.16247,452:0.14770,453:0.10279,464:0.10941,467:0.17841,469:0.14284,484:0.18052,496:0.17014,503:0.18446,521:0.16649,526:0.18174,593:0.14700,624:0.09693,634:0.13383,685:0.17735,686:0.13662,687:0.23217,701:0.10046,702:0.12375,703:0.19482,706:0.18460,903:0.15157,933:0.09021,1194:0.14824,1197:0.12032,1207:0.14285,1210:0.20672,1233:0.21967,1248:0.10173,1265:0.11946,1267:0.24100,1277:0.17310,1320:0.13056,1329:0.21569,1330:0.14824,1338:0.11214,1339:0.10193,1380:0.09257,1384:0.12055
airforc,895:0.21221
airfram,1170:0.18373,1177:0.14320
airit,622:0.10038
airlin,725:0.14237
airload,202:0.11280
airplan,42:0.09362,76:0.11381,78:0.10206,141:0.14037,209:0.09228,314:0.14906,599:0.09603,673:0.15156,728:0.16884,758:0.17908,783:0.20365,790:0.13744,805:0.15702,806:0.16456,807:0.20285,810:0.18075,859:0.10345,860:0.14044,880:0.17034,948:0.11753,1093:0.15090,1095:0.11379,1162:0.14809,1169:0.11616,1207:0.10980,1270:0.12365,1331:0.20439,1349:0.11477,1380:0.12044
airscrew,202:0.08670
airspe,78:0.13278
airstream,96:0.10220,175:0.18610,546:0.12472,711:0.13334,781:0.10011,815:0.10058,894:0.09772,1205:0.10113
akin,718:0.12029
al,597:0.16177,630:0.11356
alfven,296:0.12868,490:0.15969
algebra,34:0.14604,111:0.15048,266:0.09872,349:0.09734,611:0.11370,852:0.11505,1041:0.13316,1061:0.08477,1184:0.09925,1261:0.09169
align,646:0.09160
allen,164:0.08396
allevi,12:0.13240,252:0.09342,416:0.09206,466:0.09919,576:0.07315,588:0.10045,1345:0.13066
allmov,704:0.08094
allow,32:0.14739,60:0.12502,115:0.10423,117:0.12636,132:0.08595,170:0.13128,179:0.09967,188:0.10480,212:0.07796,303:0.15084,309:0.11467,399:0.18650,415:0.12768,472:0.14904,499:0.08077,511:0.12193,516:0.15553,538:0.11018,540:0.10212,546:0.12472,625:0.08241,658:0.09763,762:0.17637,766:0.09877,808:0.11482,839:0.12089,876:0.15214,961:0.11224,966:0.09709,1005:0.12565,1019:0.13326,1101:0.15096,1117:0.11628,1187:0.13090,1261:0.09169,1311:0.17034,1313:0.06389,1345:0.13066,1355:0.10636
alloy,760:0.11373,858:0.11558,865:0.17939,867:0.12151,881:0.11690,883:0.13256,1015:0.12221,1016:0.17162,1019:0.10242,1025:0.11431
allround,627:0.12092
allud,820:0.10040
almen,1058:0.14601
almost,14:0.07551,24:0.09424,83:0.08519,94:0.07641,100:0.09592,150:0.11260,209:0.09228,212:0.07796,266:0.09872,420:0.12179,575:0.09243,589:0.10016,624:0.09693,656:0.10068,674:0.13344,683:0.09501,1040:0.06780,1140:0.21471,1214:0.11543,1230:0.11302,1261:0.09169,1387:0.10793
alon,101:0.10798,146:0.10017,204:0.11483,225:0.08041,234:0.09151,251:0.15960,433:0.10231,569:0.08824,635:0.12057,679:0.11300,834:0.20826,914:0.11391,1164:0.10340,1195:0.13746,1218:0.08925,1347:0.10122
along,9:0.08343,23:0.13451,34:0.11225,56:0.10857,75:0.13748,77:0.08381,85:0.08896,89:0.07640,104:0.13452,106:0.17065,110:0.07786,112:0.11685,148:0.12515,155:0.09638,157:0.15056,170:0.10091,174:0.09490,190:0.11493,196:0.15232,207:0.10780,219:0.13094,227:0.11984,236:0.11738,246:0.12649,252:0.09342,261:0.15286,272:0.10129,276:0.10718,292:0.09713,296:0.09890,308:0.12363,328:0.08488,341:0.13100,352:0.10305,364:0.07936,375:0.12692,381:0.09509,392:0.20063,393:0.24494,398:0.18124,433:0.10231,454:0.14099,456:0.09336,458:0.09744,459:0.11770,464:0.10941,513:0.13850,529:0.12737,546:0.12472,547:0.16505,552:0.09796,561:0.10687,562:0.09874,574:0.10566,601:0.09722,604:0.12789,608:0.13184,610:0.12247,624:0.09693,635:0.12057,646:0.09160,657:0.14029,661:0.15531,663:0.12728,673:0.08214,683:0.09501,721:0.12161,733:0.10900,734:0.10574,736:0.15370,737:0.14823,750:0.16542,773:0.08582,785:0.12531,788:0.10060,798:0.06506,800:0.11613,825:0.09707,873:0.11496,885:0.15875,890:0.13009,891:0.11190,894:0.12714,900:0.16479,908:0.10837,912:0.15537,913:0.13125,927:0.07519,961:0.11224,962:0.09720,966:0.09709,974:0.10568,977:0.17207,984:0.13814,985:0.11727,986:0.09018,990:0.14811,1022:0.18179,1040:0.06780,1072:0.07740,1106:0.12563,1144:0.14453,1156:0.11266,1165:0.12105,1184:0.09925,1192:0.13138,1194:0.11394,1199:0.12438,1206:0.13064,1213:0.10406,1220:0.10532,1222:0.10699,1224:0.11900,1229:0.08809,1230:0.11302,1240:0.14641,1267:0.16315,1271:0.08674,1280:0.09238,1282:0.12022,1296:0.10172,1301:0.12027,1332:0.12746,1334:0.12006,1353:0.13337,1355:0.10636,1381:0.09331,1382:0.09370,1385:0.10995,1386:0.10380,1387:0.10793,1390:0.10915,1391:0.10060,1396:0.14772,1398:0.11497,1399:0.14772,1400:0.14498
alreadi,140:0.08295,202:0.08670,784:0.10777,902:0.10773,1301:0.12027,1330:0.10036
alter,123:0.09756,152:0.10954,211:0.10894,262:0.07460,296:0.09890,353:0.12298,453:0.10279,500:0.13636,543:0.17388,614:0.10246,679:0.11300,692:0.11147,693:0.11965,694:0.11605,712:0.09394,767:0.09092,946:0.08990,991:0.10756,1147:0.07552,1203:0.11125,1287:0.14898,1303:0.10821,1371:0.10983
altern,148:0.12515,149:0.09601,300:0.09794,313:0.24745,362:0.18027,363:0.09684,368:0.12734,618:0.11958,705:0.10414,706:0.14188,745:0.19401,874:0.09619,893:0.14534,958:0.14078,1313:0.06389,1325:0.08721,1346:0.12513
although,9:0.08343,44:0.08839,49:0.07780,52:0.11638,57:0.11491,80:0.09322,82:0.08548,97:0.09871,100:0.09592,109:0.11297,113:0.13529,152:0.10954,172:0.12796,183:0.11852,186:0.10729,218:0.09772,232:0.10330,283:0.13797,294:0.09189,296:0.09890,317:0.09864,329:0.06350,342:0.09438,344:0.07231,346:0.10772,426:0.11969,428:0.11681,467:0.10501,563:0.09639,597:0.16177,599:0.09603,622:0.10038,640:0.08356,646:0.09160,649:0.09888,688:0.09736,701:0.13071,717:0.08518,722:0.11262,729:0.10946,798:0.08465,805:0.10630,849:0.14801,856:0.09917,876:0.11694,893:0.14534,902:0.10773,992:0.08921,1012:0.13083,1040:0.06780,1057:0.12492,1104:0.08731,1119:0.08651,1122:0.10480,1187:0.13090,1190:0.13098,1214:0.11543,1250:0.09056,1321:0.09673,1339:0.10193,1353:0.13337,1360:0.13846
altitud,76:0.11381,82:0.08548,85:0.08896,162:0.10337,163:0.07389,275:0.16791,329:0.06350,375:0.09755,401:0.10831,547:0.12686,548:0.09157,554:0.14830,606:0.11280,617:0.15462,618:0.11958,620:0.12701,719:0.10827,805:0.15702,806:0.17223,807:0.20285,810:0.11283,811:0.14862,882:0.18785,896:0.14818,969:0.14759,976:0.11963,1000:0.10517,1040:0.06780,1065:0.12760,1102:0.19897,1103:0.15313,1147:0.12831,1150:0.14582,1161:0.13449,1232:0.14038,1247:0.11717,1292:0.09684,1296:0.10172,1297:0.11893,1299:0.16884,1324:0.11812,1351:0.09284,1391:0.13088
altogeth,1322:0.10163
aluminium,883:0.13256
aluminum,760:0.11373,858:0.11558,859:0.10345,881:0.11690,1015:0.12221,1019:0.10242,1024:0.10693,1025:0.11431,1028:0.10832,1069:0.17469
aluminumalloy,727:0.10982,1122:0.10480
alway,14:0.07551,100:0.14168,110:0.07786,114:0.11780,172:0.09835,272:0.07786,392:0.15421,416:0.09206,417:0.09351,476:0.10132,536:0.08908,595:0.10122,680:0.12429,681:0.13270,829:0.11478,1072:0.07740,1082:0.09775,1127:0.10432,1278:0.10764,1315:0.12107
ambient,50:0.11622,169:0.12217,243:0.15723,401:0.08325,446:0.12744,505:0.15505,529:0.08623,536:0.08908,541:0.13016,576:0.09517,625:0.08241,942:0.12104,1061:0.08477,1183:0.12973
ambigu,786:0.10768,1160:0.13235
ame,373:0.08828,780:0.14570
amen,152:0.10954,227:0.11984,342:0.09438,401:0.08325,1374:0.12011
america,740:0.10570
american,649:0.09888,792:0.06879
ammonium,1096:0.15346,1097:0.09890
among,33:0.09250,401:0.08325,599:0.09603,951:0.14923,1146:0.20379,1201:0.07496,1243:0.14255
amongst,166:0.10890
amount,9:0.08343,14:0.07551,19:0.16649,123:0.09756,124:0.13440,186:0.10729,212:0.07796,239:0.12181,244:0.07116,262:0.11952,272:0.07786,277:0.09981,337:0.14974,338:0.11189,363:0.09684,369:0.10193,414:0.10561,445:0.16247,565:0.10294,566:0.15083,576:0.07315,640:0.08356,646:0.09160,710:0.09928,815:0.10058,825:0.09707,838:0.16691,873:0.11496,908:0.10837,946:0.08990,947:0.09021,1004:0.13172,1056:0.09452,1104:0.08731,1189:0.17741,1207:0.14285,1220:0.10532,1252:0.11071,1290:0.11189,1300:0.09010,1340:0.14563,1346:0.12513,1352:0.09991
ampl,717:0.08518
ampli,220:0.12135
amplif,806:0.09686,942:0.12104,1131:0.13898,1220:0.10532,1278:0.10764
amplifi,403:0.13756,899:0.11305,1144:0.09022,1244:0.07543
amplitud,15:0.12393,132:0.11182,199:0.11135,200:0.12899,220:0.12135,331:0.15705,441:0.09085,515:0.12860,589:0.10016,717:0.08518,739:0.08745,810:0.11283,815:0.10058,827:0.12751,894:0.09772,1000:0.10517,1034:0.10347,1128:0.12861,1242:0.09904,1249:0.16450,1329:0.15782
amr,20:0.11783,356:0.15226,388:0.11318,427:0.10649,478:0.15655
analog,13:0.19157,25:0.07821,32:0.11329,62:0.08812,73:0.08297,91:0.12229,112:0.11685,119:0.16338,120:0.14151,151:0.09043,163:0.07389,168:0.09733,185:0.08707,191:0.10395,210:0.08718,278:0.12198,297:0.11786,309:0.11467,318:0.12551,349:0.09734,370:0.11493,377:0.13334,381:0.09509,398:0.18124,403:0.13756,421:0.11338,425:0.14117,427:0.10649,452:0.08306,456:0.09336,493:0.09614,504:0.10431,508:0.18882,517:0.15248,580:0.12078,591:0.19747,625:0.08241,660:0.11769,706:0.14188,731:0.10032,732:0.11704,757:0.09184,790:0.10564,850:0.16216,861:0.14244,872:0.10731,1126:0.15031,1226:0.09253,1246:0.08775,1254:0.12376,1330:0.10036
analogu,220:0.12135,255:0.10956,606:0.11280,732:0.18751,868:0.22701,869:0.11046
analys,42:0.09362,51:0.11396,92:0.10118,202:0.08670,229:0.13557,269:0.14871,289:0.10185,364:0.07936,388:0.11318,390:0.12757,391:0.12860,396:0.17628,401:0.08325,454:0.10837,479:0.12423,525:0.14145,527:0.14936,675:0.08999,685:0.09612,722:0.11262,769:0.14618,791:0.16365,792:0.06879,866:0.13389,884:0.16857,1013:0.12535,1070:0.14036,1116:0.16070,1272:0.15005,1281:0.10157,1295:0.11430,1310:0.08833,1324:0.11812
analysi,10:0.21109,15:0.12393,16:0.12298,21:0.18304,25:0.07821,29:0.09738,30:0.17477,35:0.11410,36:0.12117,39:0.16532,46:0.16636,47:0.15580,49:0.07780,52:0.11638,56:0.10857,57:0.11491,60:0.12502,64:0.12646,65:0.15156,67:0.16255,73:0.08297,77:0.08381,84:0.10993,90:0.14830,92:0.10118,94:0.07641,99:0.08974,102:0.15725,114:0.11780,123:0.09756,124:0.10330,128:0.11025,130:0.17142,133:0.14184,135:0.14984,145:0.13106,156:0.10518,163:0.10915,170:0.13128,179:0.12967,187:0.08786,188:0.16790,190:0.11493,193:0.08177,201:0.15289,202:0.11280,204:0.11483,210:0.11343,218:0.09772,219:0.10065,220:0.12135,226:0.16255,235:0.12601,240:0.09687,241:0.16491,247:0.11937,252:0.09342,262:0.07460,263:0.15226,267:0.10905,274:0.09310,277:0.12986,288:0.11473,289:0.13251,293:0.13328,312:0.16774,326:0.23519,328:0.08488,329:0.08261,340:0.17974,352:0.10305,354:0.13534,360:0.12005,361:0.17208,365:0.10984,366:0.10968,367:0.13864,368:0.12734,386:0.15322,390:0.12757,395:0.14022,398:0.18124,417:0.07187,419:0.13709,426:0.19176,428:0.11681,432:0.13920,437:0.15473,455:0.10909,467:0.10501,496:0.17014,506:0.14037,516:0.15553,525:0.14145,528:0.17108,530:0.17691,534:0.22337,538:0.11018,550:0.13295,551:0.20069,560:0.13276,576:0.10805,578:0.18744,579:0.10781,580:0.12078,581:0.20880,583:0.16039,585:0.13960,587:0.13772,588:0.16093,589:0.13031,590:0.16822,596:0.14743,599:0.09603,619:0.22148,623:0.10683,624:0.09693,625:0.08241,627:0.15732,634:0.13383,646:0.09160,648:0.22241,650:0.16578,666:0.12451,675:0.08999,680:0.12429,681:0.13270,685:0.16331,700:0.14296,701:0.10046,707:0.10375,715:0.14893,716:0.15871,719:0.10827,723:0.16501,725:0.14237,726:0.13405,733:0.10900,737:0.14823,753:0.10364,756:0.12079,773:0.08582,781:0.14788,794:0.11380,814:0.10509,820:0.10040,828:0.13687,833:0.15346,836:0.16294,840:0.15526,843:0.11431,852:0.16994,862:0.18744,869:0.08490,870:0.12654,871:0.18853,872:0.10731,873:0.11496,881:0.15209,887:0.14263,889:0.09015,899:0.11305,911:0.14723,914:0.11391,937:0.16819,952:0.13492,954:0.16075,959:0.15852,961:0.11224,968:0.11101,974:0.15610,976:0.07468,980:0.11283,984:0.22131,988:0.14997,989:0.14292,990:0.16816,998:0.12978,1005:0.12565,1007:0.11643,1008:0.15198,1012:0.17021,1013:0.12535,1014:0.25155,1015:0.12221,1016:0.17162,1017:0.17387,1024:0.10693,1025:0.16885,1036:0.13630,1041:0.17325,1042:0.20142,1043:0.14563,1048:0.19401,1049:0.16421,1051:0.17534,1052:0.13633,1054:0.13411,1056:0.09452,1058:0.14601,1059:0.10028,1060:0.17188,1068:0.11811,1070:0.14036,1071:0.14180,1072:0.07740,1074:0.12325,1091:0.14060,1099:0.21469,1130:0.13075,1134:0.09114,1135:0.19406,1136:0.10118,1145:0.14050,1154:0.09320,1162:0.14809,1163:0.12198,1180:0.14156,1190:0.17041,1198:0.12245,1199:0.09560,1200:0.11456,1201:0.07496,1204:0.08167,1207:0.10980,1208:0.18280,1216:0.13596,1222:0.10699,1224:0.11900,1226:0.09253,1232:0.14038,1235:0.09289,1237:0.13787,1241:0.14828,1244:0.07543,1248:0.07819,1250:0.13377,1259:0.15204,1261:0.09169,1265:0.11946,1268:0.08259,1271:0.08674,1275:0.15339,1276:0.22534,1281:0.10157,1283:0.16124,1288:0.18408,1291:0.13252,1294:0.17235,1296:0.10172,1313:0.06389,1332:0.12746,1334:0.12006,1337:0.15367,1339:0.10193,1344:0.14409,1347:0.10122,1352:0.09991,1357:0.20816,1358:0.21432,1360:0.18013,1362:0.15445,1363:0.11414,1367:0.18141,1371:0.10983,1372:0.16027,1374:0.12011,1377:0.13782,1382:0.09370,1384:0.15684,1386:0.15332,1390:0.10915,1392:0.09178,1399:0.14772
analyt,5:0.22381,6:0.14566,12:0.13240,16:0.12298,28:0.12928,34:0.11225,49:0.10122,72:0.12451,78:0.13278,93:0.13992,144:0.12257,160:0.10923,164:0.08396,184:0.11861,186:0.13959,221:0.16262,230:0.10331,258:0.19019,260:0.13636,268:0.12844,276:0.15832,289:0.10185,301:0.19327,321:0.19193,339:0.20544,341:0.10069,356:0.15226,371:0.11838,392:0.15421,410:0.11935,421:0.11338,422:0.13323,442:0.13527,467:0.10501,476:0.10132,481:0.14066,483:0.22062,497:0.11602,498:0.12409,500:0.17741,535:0.14236,550:0.13295,563:0.09639,570:0.15730,571:0.09826,589:0.10016,606:0.11280,613:0.12827,639:0.20144,645:0.10949,666:0.12451,667:0.09692,668:0.13603,670:0.22942,682:0.10818,704:0.08094,705:0.10414,719:0.10827,728:0.16884,738:0.12246,760:0.11373,787:0.11419,836:0.18499,837:0.09986,852:0.11505,907:0.10209,940:0.14818,941:0.14992,957:0.13797,965:0.15637,966:0.09709,981:0.13559,1056:0.09452,1065:0.16601,1072:0.10070,1100:0.16393,1136:0.10118,1157:0.10300,1187:0.13090,1194:0.11394,1201:0.07496,1207:0.10980,1214:0.15018,1225:0.09466,1232:0.14038,1241:0.11397,1245:0.11392,1246:0.08775,1248:0.13904,1258:0.10485,1263:0.08920,1274:0.09769,1285:0.18118,1288:0.14149,1291:0.10185,1293:0.18423,1309:0.09726,1319:0.09580,1322:0.10163,1337:0.11811,1346:0.12513,1361:0.11857,1375:0.08631,1389:0.16088,1390:0.10915,1392:0.09178
analytici,193:0.08177
analyz,14:0.07551,31:0.22008,38:0.16220,41:0.17090,66:0.12256,70:0.11470,77:0.08381,88:0.12657,89:0.07640,103:0.16871,124:0.10330,129:0.09440,195:0.11354,208:0.13349,210:0.08718,240:0.09687,298:0.20511,360:0.12005,426:0.11969,440:0.15053,472:0.14904,500:0.13636,503:0.14178,558:0.13690,572:0.07694,576:0.07315,639:0.15483,735:0.20279,753:0.10364,821:0.17591,823:0.14612,837:0.09986,860:0.14044,862:0.18744,870:0.12654,872:0.10731,881:0.11690,885:0.15875,927:0.07519,935:0.18744,974:0.10568,975:0.10452,988:0.14997,989:0.10985,1037:0.14979,1051:0.10321,1117:0.11628,1129:0.13472,1136:0.10118,1141:0.17777,1179:0.09982,1218:0.08925,1226:0.09253,1228:0.13814,1244:0.07543,1249:0.16450,1255:0.14449,1265:0.11946,1279:0.10955,1362:0.11871,1365:0.12086,1386:0.10380
and2how,613:0.12827
andabrespect,684:0.17691
andor,486:0.09471,762:0.15535,935:0.18744
anemomet,41:0.17090,76:0.11381,80:0.09322,218:0.09772,238:0.30151,589:0.10016,1278:0.10764,1385:0.10995
angl,1:0.12466,9:0.08343,25:0.07821,27:0.12623,32:0.18150,48:0.20496,56:0.10857,58:0.10999,64:0.16452,69:0.16691,70:0.11470,82:0.08548,97:0.09871,106:0.22202,122:0.16711,123:0.09756,124:0.10330,125:0.10403,162:0.13449,163:0.07389,164:0.10923,173:0.11647,174:0.16123,189:0.16156,193:0.12078,196:0.17293,197:0.17175,199:0.13712,204:0.11483,212:0.11516,213:0.11609,222:0.10484,225:0.12882,229:0.13557,230:0.10331,231:0.14281,232:0.15259,234:0.11905,248:0.13362,275:0.16791,277:0.12986,282:0.16157,287:0.12540,291:0.17741,293:0.13328,312:0.16774,315:0.07434,338:0.11189,354:0.19991,360:0.12005,363:0.12599,373:0.13040,420:0.12179,423:0.15423,427:0.10649,430:0.19946,433:0.10231,434:0.16296,439:0.11296,440:0.15053,441:0.09085,443:0.16310,464:0.16161,484:0.09486,492:0.30959,498:0.12409,505:0.15505,511:0.19534,520:0.13255,530:0.13597,541:0.10004,564:0.17563,565:0.15205,567:0.11441,572:0.10010,601:0.09722,610:0.12247,624:0.09693,626:0.11390,632:0.16678,636:0.10618,638:0.13960,650:0.16578,673:0.10687,674:0.13344,688:0.14381,694:0.11605,695:0.08820,698:0.15931,704:0.08094,708:0.22261,709:0.15943,712:0.15050,713:0.11879,715:0.14893,717:0.15716,736:0.15370,772:0.14044,782:0.10649,786:0.10768,788:0.10060,790:0.10564,792:0.06879,801:0.11144,806:0.09686,814:0.10509,815:0.16114,830:0.10472,872:0.10731,901:0.12582,907:0.13282,915:0.15031,917:0.08433,924:0.10499,927:0.11107,936:0.19086,937:0.12928,943:0.11660,944:0.14311,946:0.11697,947:0.16644,972:0.11147,973:0.15030,979:0.13078,988:0.14997,993:0.14679,997:0.16138,999:0.19338,1000:0.15535,1001:0.13058,1005:0.12565,1006:0.15530,1040:0.10015,1064:0.11530,1066:0.08779,1077:0.21343,1094:0.12989,1095:0.14805,1104:0.11360,1107:0.10533,1110:0.12258,1114:0.15863,1115:0.22683,1117:0.11628,1127:0.10432,1136:0.10118,1147:0.12099,1162:0.14809,1164:0.10340,1167:0.10734,1179:0.14744,1181:0.12150,1184:0.09925,1186:0.20536,1188:0.11207,1192:0.17093,1193:0.15972,1201:0.07496,1204:0.10625,1208:0.14050,1213:0.16671,1217:0.12987,1218:0.15163,1228:0.13814,1229:0.14112,1231:0.18188,1244:0.09813,1250:0.15386,1259:0.11686,1262:0.13212,1265:0.11946,1277:0.15030,1284:0.12141,1285:0.18118,1291:0.13252,1292:0.09684,1303:0.15983,1304:0.15602,1306:0.19699,1307:0.16381,1309:0.12654,1320:0.13056,1324:0.11812,1337:0.11811,1339:0.13262,1341:0.14292,1343:0.09655,1344:0.11075,1345:0.13066,1347:0.20243,1349:0.11477,1350:0.20035,1351:0.12079,1352:0.09991,1354:0.12288,1355:0.10636,1381:0.09331
angular,51:0.18257,210:0.08718,229:0.10420,715:0.19376,755:0.13897,1275:0.15339
anh,188:0.10480
anhedr,600:0.11936
anid,317:0.09864
anisotrop,208:0.13349,297:0.11786
anisotropi,208:0.13349
annex,344:0.07231
announc,488:0.11770
annual,488:0.11770
annul,1224:0.09147
annular,136:0.15326,146:0.10017,173:0.11647,221:0.21235,737:0.14823,1034:0.10347,1059:0.10028,1209:0.09252,1350:0.13563,1352:0.09991
annulus,174:0.12346,387:0.23062,976:0.07468
anomal,296:0.09890,1103:0.15313
anomali,49:0.07780,618:0.11958
answer,262:0.07460,373:0.08828,825:0.09707,1072:0.07740
antielast,644:0.10963
antisymmetr,400:0.17020,682:0.10818
anyway,388:0.11318
aob,523:0.16664
apart,621:0.14459,724:0.11983,852:0.11505
apex,182:0.13355,222:0.10484,601:0.09722,917:0.08433,1044:0.12580,1211:0.12923,1250:0.09056,1343:0.14262
apoge,510:0.18304
app,773:0.08582
appar,16:0.12298,19:0.16649,99:0.08974,129:0.12282,168:0.09733,189:0.08489,216:0.12173,252:0.09342,338:0.11189,348:0.12196,441:0.09085,448:0.11772,499:0.08077,599:0.12493,627:0.12092,645:0.10949,806:0.09686,820:0.13062,856:0.09917,859:0.10345,928:0.07592,1028:0.10832,1055:0.12768,1056:0.12297,1097:0.09890,1104:0.08731,1112:0.16455,1134:0.09114,1177:0.14320,1244:0.09813,1268:0.10745,1322:0.10163
apparatus,76:0.11381,168:0.09733,183:0.11852,199:0.08559,207:0.10780,244:0.11400,312:0.16774,529:0.08623,847:0.14818,1072:0.07740,1113:0.19638,1313:0.06389
apparentmass,701:0.10046
appear,7:0.09658,8:0.12962,34:0.11225,58:0.10999,64:0.12646,67:0.16255,70:0.11470,75:0.13748,80:0.12128,81:0.13341,83:0.08519,129:0.09440,138:0.12902,140:0.08295,151:0.09043,155:0.09638,156:0.10518,163:0.07389,165:0.08139,184:0.15431,193:0.08177,212:0.07796,213:0.08923,234:0.09151,244:0.07116,272:0.07786,275:0.12906,280:0.12601,292:0.09713,301:0.19327,325:0.09839,349:0.09734,433:0.07864,452:0.08306,476:0.10132,503:0.14178,536:0.13158,640:0.08356,649:0.12865,658:0.09763,667:0.09692,674:0.13344,701:0.10046,702:0.12375,731:0.13052,757:0.09184,763:0.15528,794:0.08747,797:0.12497,798:0.06506,810:0.11283,815:0.10058,820:0.10040,855:0.18328,917:0.08433,933:0.09021,973:0.15030,986:0.09018,991:0.10756,992:0.08921,1002:0.14904,1015:0.12221,1017:0.13364,1019:0.10242,1026:0.19090,1033:0.14825,1066:0.08779,1072:0.07740,1089:0.14039,1098:0.12096,1114:0.10739,1119:0.12779,1155:0.13835,1186:0.12819,1195:0.09306,1212:0.10014,1218:0.08925,1220:0.10532,1235:0.09289,1239:0.07776,1252:0.11071,1264:0.10379,1271:0.08674,1278:0.10764,1279:0.10955,1280:0.09238,1295:0.11430,1313:0.06389,1327:0.11646,1342:0.09028,1346:0.12513,1360:0.13846,1380:0.09257,1383:0.10203,1391:0.10060
append,1174:0.15406,1376:0.15830
appendic,237:0.12704,677:0.09127
appendix,159:0.14052,202:0.11280,246:0.12649,249:0.12839,311:0.11158,346:0.10772,579:0.10781,637:0.14926,677:0.09127,691:0.13502,696:0.09326,705:0.16684,796:0.11385,797:0.08460,962:0.07471,1008:0.15198,1020:0.12601,1333:0.12295
appl,118:0.11850,1036:0.13630
appli,17:0.12071,20:0.11783,27:0.12623,33:0.12034,37:0.11609,49:0.07780,56:0.10857,62:0.11465,101:0.08299,110:0.10130,123:0.09756,130:0.17142,131:0.08807,146:0.13033,150:0.14649,155:0.09638,160:0.08396,162:0.13449,163:0.07389,173:0.08952,181:0.18328,183:0.11852,191:0.10395,193:0.10638,195:0.11354,206:0.13877,211:0.10894,221:0.16262,224:0.18691,231:0.14281,232:0.10330,233:0.14833,240:0.09687,241:0.16491,248:0.17385,253:0.11555,257:0.10846,263:0.11703,266:0.09872,274:0.09310,275:0.12906,285:0.19699,299:0.12476,305:0.15273,307:0.12364,311:0.11158,314:0.11457,322:0.21471,329:0.06350,352:0.10305,358:0.16647,363:0.09684,369:0.10193,375:0.12692,376:0.16636,377:0.13334,379:0.12385,390:0.12757,406:0.10162,412:0.18702,425:0.14117,433:0.07864,445:0.21138,446:0.12744,450:0.15340,452:0.08306,453:0.10279,455:0.10909,460:0.14098,462:0.12281,464:0.10941,469:0.18584,473:0.14074,484:0.09486,486:0.09471,487:0.15389,494:0.11643,495:0.14743,503:0.14178,512:0.17732,523:0.12808,525:0.14145,532:0.20909,538:0.11018,542:0.15460,573:0.14996,575:0.09243,580:0.12078,584:0.13129,593:0.11299,596:0.19181,599:0.09603,606:0.11280,616:0.12840,622:0.10038,648:0.15057,656:0.10068,665:0.13247,667:0.09692,668:0.13603,678:0.14924,680:0.12429,700:0.14296,704:0.08094,716:0.15871,731:0.10032,738:0.12246,739:0.08745,742:0.14019,752:0.20499,754:0.11520,762:0.11940,767:0.09092,783:0.12712,792:0.06879,796:0.14812,798:0.06506,799:0.09589,813:0.13440,825:0.09707,826:0.08713,827:0.08632,828:0.10520,832:0.22459,843:0.11431,849:0.14801,850:0.21097,857:0.10691,862:0.18744,881:0.11690,888:0.14261,889:0.09015,891:0.11190,901:0.16370,916:0.15248,917:0.08433,921:0.11143,923:0.12791,929:0.11638,944:0.14311,946:0.08990,953:0.18011,955:0.15400,957:0.13797,984:0.13814,985:0.11727,1003:0.12183,1015:0.12221,1016:0.17162,1018:0.13092,1020:0.12601,1024:0.10693,1025:0.11431,1031:0.13399,1035:0.12976,1041:0.13316,1052:0.13633,1054:0.13411,1058:0.14601,1060:0.22362,1070:0.14036,1072:0.07740,1085:0.17487,1087:0.13212,1110:0.12258,1112:0.12648,1119:0.08651,1125:0.11336,1134:0.09114,1135:0.13137,1137:0.12001,1154:0.09320,1185:0.11797,1192:0.13138,1197:0.12032,1207:0.10980,1208:0.14050,1209:0.09252,1225:0.09466,1231:0.10706,1235:0.09289,1241:0.11397,1244:0.07543,1246:0.08775,1250:0.09056,1259:0.11686,1260:0.13826,1262:0.17189,1270:0.12365,1282:0.12022,1294:0.10758,1301:0.12027,1304:0.11992,1307:0.09642,1325:0.11346,1343:0.09655,1363:0.11414,1366:0.10686,1370:0.10065,1376:0.15830,1382:0.09370,1392:0.09178,1393:0.11774,1394:0.12494
applic,13:0.12969,14:0.09824,15:0.12393,16:0.12298,17:0.15705,27:0.12623,28:0.12928,29:0.09738,33:0.09250,39:0.12706,44:0.08839,49:0.11492,56:0.16037,57:0.11491,60:0.12502,65:0.15156,68:0.13955,86:0.17492,91:0.12229,101:0.08299,109:0.11297,122:0.10431,132:0.08595,146:0.10017,149:0.09601,159:0.14052,162:0.10337,163:0.07389,164:0.08396,179:0.09967,185:0.11327,188:0.10480,193:0.08177,204:0.11483,205:0.09840,206:0.09395,212:0.07796,214:0.13736,217:0.13580,219:0.10065,226:0.16255,227:0.11984,230:0.10331,232:0.13440,233:0.14833,234:0.15547,235:0.12601,236:0.15271,240:0.09687,245:0.12420,246:0.12649,248:0.13362,249:0.12839,270:0.10332,271:0.24704,278:0.12198,287:0.12540,296:0.09890,321:0.14752,322:0.21471,323:0.16964,332:0.11275,344:0.07231,359:0.14079,367:0.13864,368:0.12734,373:0.08828,381:0.09509,384:0.20645,395:0.14022,401:0.08325,416:0.13599,432:0.10699,433:0.07864,435:0.11110,444:0.15248,445:0.16247,451:0.17020,453:0.10279,454:0.10837,458:0.09744,462:0.12281,463:0.14402,467:0.13662,468:0.13829,473:0.14074,479:0.12423,488:0.11770,491:0.14247,494:0.11643,495:0.14743,502:0.22619,503:0.14178,521:0.12797,538:0.11018,540:0.10212,542:0.10466,554:0.11399,561:0.10687,579:0.10781,580:0.15714,585:0.13960,587:0.17918,614:0.10246,630:0.14774,633:0.15907,637:0.14926,645:0.10949,658:0.09763,662:0.08340,677:0.09127,680:0.12429,684:0.17691,687:0.15718,698:0.12245,700:0.14296,703:0.14974,704:0.12966,730:0.12767,731:0.13052,738:0.12246,753:0.13484,758:0.13765,760:0.14797,762:0.15535,777:0.11888,781:0.13025,782:0.10649,798:0.09611,801:0.14499,811:0.08747,814:0.15523,827:0.08632,828:0.13687,837:0.12992,839:0.12089,851:0.12988,889:0.09015,906:0.23338,908:0.10837,919:0.11592,928:0.07592,944:0.14311,951:0.14923,952:0.13492,967:0.12543,968:0.14442,978:0.16474,981:0.13559,987:0.09651,1005:0.12565,1012:0.13083,1019:0.13326,1022:0.18179,1023:0.24020,1027:0.14872,1029:0.17870,1032:0.13716,1037:0.14979,1039:0.09194,1040:0.06780,1046:0.16095,1047:0.09895,1048:0.19401,1049:0.16421,1051:0.10321,1055:0.12768,1059:0.10028,1065:0.12760,1066:0.08779,1068:0.11811,1075:0.10869,1084:0.19630,1109:0.12962,1110:0.15948,1116:0.16070,1120:0.16091,1133:0.18462,1158:0.21125,1176:0.22217,1180:0.10880,1202:0.11635,1204:0.08167,1206:0.13064,1207:0.14285,1209:0.09252,1216:0.10450,1217:0.12987,1219:0.13214,1224:0.09147,1233:0.13712,1248:0.10173,1257:0.12209,1261:0.09169,1268:0.12200,1272:0.15005,1294:0.10758,1300:0.09010,1302:0.10951,1303:0.10821,1304:0.11992,1312:0.14987,1329:0.12130,1335:0.11071,1342:0.11746,1356:0.08616,1366:0.10686,1372:0.10850,1376:0.23383,1386:0.10380,1387:0.10793,1392:0.09178,1393:0.11774
apprais,124:0.10330,675:0.08999,962:0.07471
appraoch,165:0.08139
appreci,10:0.21109,14:0.07551,94:0.07641,109:0.11297,132:0.08595,156:0.10518,163:0.07389,185:0.08707,189:0.08489,193:0.08177,209:0.09228,232:0.10330,252:0.09342,262:0.07460,292:0.09713,334:0.12904,360:0.12005,412:0.14375,445:0.16247,645:0.10949,646:0.11918,683:0.09501,740:0.10570,797:0.08460,812:0.11278,827:0.08632,919:0.11592,962:0.07471,975:0.10452,1120:0.20935,1136:0.10118,1178:0.15034,1198:0.09412,1207:0.10980,1239:0.07776,1259:0.11686,1274:0.09769,1319:0.09580,1352:0.09991
approach,19:0.16649,35:0.11410,77:0.08381,92:0.10118,110:0.07786,118:0.11850,121:0.15936,125:0.10403,132:0.08595,163:0.09614,172:0.09835,184:0.11861,193:0.08177,214:0.13736,216:0.09356,218:0.09772,244:0.07116,284:0.14662,304:0.09096,328:0.11043,334:0.09918,342:0.09438,349:0.12665,363:0.09684,367:0.13864,373:0.08828,406:0.10162,417:0.07187,423:0.11285,441:0.09085,444:0.15248,447:0.13694,448:0.11772,455:0.10909,472:0.14904,499:0.12939,531:0.13022,540:0.10212,556:0.11937,560:0.10204,569:0.08824,618:0.15558,637:0.14926,640:0.08356,644:0.10963,666:0.12451,683:0.09501,686:0.10501,696:0.09326,733:0.10900,752:0.15756,753:0.16604,758:0.13765,770:0.13799,773:0.08582,821:0.17591,824:0.13947,827:0.08632,828:0.10520,834:0.20826,837:0.09986,844:0.10477,873:0.14957,903:0.10261,936:0.15500,943:0.11660,955:0.22748,1025:0.11431,1035:0.09974,1037:0.14979,1070:0.14036,1094:0.12989,1117:0.11628,1123:0.14467,1126:0.15031,1130:0.13075,1164:0.10340,1186:0.12819,1197:0.12032,1222:0.10699,1223:0.15734,1224:0.11900,1229:0.08809,1230:0.11302,1235:0.09289,1252:0.17736,1255:0.11106,1273:0.11645,1294:0.10758,1311:0.17034,1320:0.13056,1361:0.11857,1373:0.13592,1392:0.09178,1394:0.12494
appropri,22:0.13782,33:0.09250,153:0.20028,191:0.10395,210:0.08718,255:0.10956,262:0.07460,297:0.11786,329:0.06350,363:0.09684,399:0.18650,452:0.08306,479:0.12423,486:0.09471,666:0.12451,689:0.09812,749:0.13281,758:0.13765,768:0.16970,797:0.08460,845:0.10605,847:0.14818,852:0.11505,876:0.11694,926:0.12474,950:0.15149,982:0.11759,987:0.09651,1015:0.12221,1028:0.10832,1047:0.07605,1135:0.13137,1214:0.11543,1224:0.09147,1239:0.07776,1246:0.08775,1268:0.08259,1271:0.12813,1280:0.09238,1284:0.12141,1296:0.10172,1297:0.11893,1322:0.10163,1370:0.10065
approx,199:0.08559,721:0.07158
approxim,2:0.10760,4:0.18118,9:0.08343,15:0.16124,19:0.16649,27:0.16423,35:0.11410,49:0.10122,52:0.11638,54:0.10314,60:0.12502,73:0.08297,80:0.09322,84:0.14302,89:0.07640,93:0.13992,94:0.07641,97:0.09871,107:0.15490,110:0.11501,111:0.15048,115:0.15397,116:0.11464,117:0.18664,122:0.15408,124:0.13440,131:0.08807,132:0.11182,133:0.10902,134:0.11175,143:0.18914,145:0.13106,146:0.10017,149:0.09601,151:0.09043,155:0.12539,157:0.10193,160:0.16792,164:0.10923,174:0.09490,179:0.09967,180:0.18535,188:0.10480,191:0.13525,193:0.10638,197:0.09659,198:0.12274,199:0.11135,205:0.09840,206:0.12223,207:0.10780,218:0.12714,229:0.10420,230:0.13441,231:0.14281,232:0.10330,242:0.23385,245:0.12420,248:0.13362,255:0.10956,259:0.11190,263:0.15226,280:0.12601,281:0.20956,289:0.10185,292:0.12636,294:0.11955,301:0.25145,302:0.16180,304:0.11834,305:0.11740,306:0.12861,307:0.16086,309:0.11467,322:0.21471,325:0.09839,328:0.08488,329:0.09380,330:0.14182,334:0.12904,341:0.13100,342:0.09438,343:0.14159,349:0.12665,352:0.10305,354:0.13534,355:0.15090,359:0.14079,360:0.15619,361:0.17208,362:0.18027,365:0.10984,366:0.10968,369:0.18125,370:0.16976,375:0.09755,379:0.12385,391:0.16732,404:0.15240,406:0.10162,412:0.14375,417:0.09351,423:0.08674,424:0.19674,428:0.11681,433:0.07864,437:0.15473,443:0.10181,444:0.15248,448:0.11772,454:0.14099,455:0.10909,456:0.09336,458:0.09744,459:0.09047,460:0.14098,461:0.14874,467:0.16824,470:0.20098,473:0.20789,474:0.12350,475:0.14800,476:0.10132,477:0.13218,479:0.18350,489:0.11965,492:0.25142,493:0.09614,494:0.17198,495:0.14743,496:0.13077,497:0.11602,499:0.10508,507:0.25753,509:0.20909,514:0.15354,515:0.12860,523:0.16664,525:0.14145,527:0.14936,529:0.11219,535:0.14236,537:0.15248,547:0.16505,548:0.09157,556:0.11937,557:0.12301,567:0.11441,568:0.13762,569:0.08824,571:0.12784,572:0.07694,574:0.10566,575:0.09243,581:0.16049,582:0.15933,586:0.18508,591:0.25691,593:0.11299,595:0.10122,604:0.12789,605:0.12087,606:0.18071,608:0.17153,611:0.19317,612:0.14859,616:0.12840,627:0.12092,628:0.10149,630:0.14774,636:0.10618,639:0.15483,643:0.12788,644:0.10963,645:0.10949,646:0.09160,648:0.19590,654:0.21216,656:0.10068,658:0.09763,659:0.16570,660:0.09046,662:0.08340,666:0.12451,667:0.14316,677:0.09127,679:0.11300,689:0.09812,692:0.11147,694:0.11605,695:0.08820,699:0.10924,701:0.10046,702:0.21024,704:0.08094,706:0.14188,710:0.09928,723:0.12683,727:0.10982,730:0.09813,731:0.13052,734:0.13757,739:0.08745,748:0.11375,752:0.15756,753:0.10364,754:0.11520,758:0.13765,759:0.15406,763:0.15528,765:0.11858,766:0.09877,770:0.17953,771:0.14019,775:0.17391,776:0.18210,777:0.21139,784:0.10777,786:0.17251,788:0.14860,801:0.11144,802:0.17360,812:0.11278,814:0.10509,828:0.10520,829:0.11478,831:0.15189,842:0.18879,845:0.10605,848:0.17523,853:0.20599,857:0.10691,872:0.10731,885:0.15875,890:0.13009,895:0.14367,897:0.13938,901:0.16370,913:0.13125,919:0.11592,920:0.21136,921:0.11143,922:0.13518,926:0.12474,928:0.07592,929:0.11638,934:0.10339,940:0.14818,941:0.14992,944:0.14311,945:0.14345,947:0.09021,962:0.11969,965:0.15637,966:0.12632,972:0.11147,974:0.10568,985:0.18788,987:0.09651,988:0.14997,989:0.10985,990:0.20243,996:0.15113,1000:0.10517,1003:0.12183,1009:0.12205,1016:0.22328,1019:0.13326,1023:0.18462,1040:0.08821,1041:0.13316,1043:0.11193,1047:0.12184,1052:0.13633,1055:0.12768,1058:0.14601,1059:0.14812,1061:0.08477,1065:0.12760,1066:0.08779,1070:0.14036,1072:0.10070,1073:0.20511,1074:0.16035,1076:0.20511,1079:0.15222,1082:0.09775,1087:0.13212,1095:0.11379,1098:0.17867,1100:0.12600,1106:0.12563,1107:0.13704,1108:0.10084,1110:0.15948,1112:0.16455,1129:0.13472,1134:0.09114,1135:0.17092,1136:0.10118,1137:0.09224,1148:0.16689,1152:0.29490,1154:0.09320,1167:0.10734,1168:0.13327,1180:0.14156,1182:0.13178,1183:0.12973,1184:0.12912,1185:0.11797,1186:0.12819,1190:0.13098,1198:0.09412,1199:0.09560,1200:0.11456,1218:0.11612,1221:0.14069,1223:0.15734,1224:0.11900,1231:0.15813,1234:0.15670,1235:0.09289,1238:0.11816,1239:0.07776,1246:0.11416,1248:0.11550,1251:0.15897,1259:0.11686,1263:0.11605,1265:0.11946,1270:0.16088,1271:0.08674,1274:0.12709,1280:0.09238,1281:0.10157,1289:0.09660,1292:0.14305,1297:0.11893,1303:0.10821,1307:0.12544,1309:0.12654,1310:0.08833,1313:0.06389,1319:0.12464,1320:0.10035,1322:0.10163,1324:0.15367,1327:0.17202,1328:0.10315,1330:0.10036,1333:0.09450,1336:0.13683,1337:0.15367,1338:0.11214,1343:0.12562,1347:0.10122,1349:0.11477,1351:0.09284,1352:0.09991,1356:0.08616,1365:0.15724,1366:0.10686,1368:0.15053,1370:0.13095,1374:0.12011,1375:0.13827,1378:0.14506,1383:0.10203,1384:0.12055,1385:0.10995,1392:0.09178,1393:0.11774,1394:0.12494
apropri,1140:0.21471
ar,557:0.12301
ara,252:0.09342
arbitrari,47:0.13722,49:0.10122,50:0.11622,62:0.11465,64:0.12646,65:0.15156,89:0.07640,147:0.11238,160:0.08396,163:0.07389,164:0.10923,194:0.18132,201:0.13466,226:0.16255,240:0.09687,249:0.12839,278:0.12198,292:0.09713,300:0.09794,369:0.10193,374:0.13301,379:0.12385,397:0.13535,432:0.10699,435:0.11110,458:0.09744,474:0.12350,492:0.19325,498:0.12409,528:0.13149,538:0.11018,572:0.07694,579:0.10781,580:0.12078,581:0.16049,587:0.13772,614:0.10246,625:0.08241,637:0.14926,652:0.15944,653:0.12149,663:0.12728,683:0.09501,717:0.08518,730:0.09813,736:0.15370,738:0.15933,754:0.11520,787:0.16867,788:0.10060,814:0.10509,851:0.16898,863:0.13850,877:0.18533,913:0.13125,936:0.11914,962:0.11036,978:0.16474,984:0.13814,987:0.09651,990:0.14811,1005:0.16348,1010:0.15753,1056:0.12297,1109:0.12962,1145:0.14050,1147:0.07552,1182:0.10129,1194:0.11394,1197:0.12032,1201:0.07496,1203:0.11125,1208:0.14050,1221:0.14069,1226:0.09253,1231:0.10706,1239:0.07776,1304:0.11992,1309:0.09726,1320:0.10035,1342:0.09028,1366:0.13903,1375:0.11229
arbitrarili,122:0.10431,321:0.14752,432:0.10699,533:0.24254,661:0.10514,716:0.15871,1043:0.11193,1128:0.12861,1194:0.11394,1386:0.10380
arc,233:0.14833,335:0.14798,341:0.10069,533:0.24254,929:0.11638,987:0.09651,1112:0.12648,1167:0.15856,1201:0.07496,1217:0.12987,1233:0.13712,1248:0.07819,1316:0.10051
ardc,1077:0.13322
area,14:0.07551,25:0.10175,146:0.10017,197:0.09659,210:0.11343,225:0.08041,234:0.09151,235:0.21409,266:0.09872,276:0.13944,344:0.07231,381:0.12372,399:0.18650,451:0.17020,555:0.21519,561:0.15786,575:0.09243,586:0.14225,595:0.10122,656:0.10068,711:0.17348,721:0.07158,753:0.10364,758:0.17908,759:0.13569,786:0.10768,788:0.14860,799:0.14164,801:0.11144,808:0.11482,816:0.12347,872:0.10731,933:0.09021,949:0.12892,1005:0.12565,1089:0.14039,1093:0.19632,1146:0.20379,1167:0.15856,1168:0.13327,1195:0.09306,1201:0.14992,1203:0.19782,1207:0.10980,1209:0.09252,1217:0.12987,1222:0.10699,1230:0.11302,1262:0.13212,1270:0.12365,1297:0.11893,1356:0.08616
argon,185:0.08707,259:0.11190,405:0.24198,529:0.08623,536:0.13158,1199:0.12438,1264:0.10379,1316:0.13077
argu,43:0.12209,103:0.12967,296:0.09890
argument,1041:0.13316,1281:0.10157
aris,2:0.10760,39:0.12706,55:0.12829,149:0.09601,181:0.18328,185:0.11327,199:0.08559,211:0.10894,212:0.07796,244:0.07116,265:0.22202,278:0.12198,315:0.10980,342:0.09438,357:0.11675,374:0.13301,448:0.11772,457:0.13917,518:0.10205,593:0.11299,670:0.22942,683:0.09501,733:0.10900,798:0.06506,827:0.08632,869:0.08490,885:0.15875,886:0.16893,892:0.15800,900:0.16479,954:0.16075,992:0.08921,1039:0.11961,1181:0.12150,1185:0.11797,1199:0.09560,1207:0.10980,1239:0.07776,1364:0.10886,1389:0.12365
arisen,285:0.19699,724:0.11983
arithmet,497:0.11602,1084:0.19630
arm,183:0.11852,210:0.08718
armenaka,953:0.18011,1068:0.11811
around,36:0.12117,121:0.12249,130:0.17142,136:0.15326,169:0.12217,211:0.10894,283:0.10604,292:0.09713,296:0.09890,318:0.12551,371:0.11838,422:0.13323,449:0.14566,452:0.08306,464:0.10941,465:0.13748,468:0.13829,496:0.13077,531:0.13022,541:0.10004,545:0.15734,553:0.16674,554:0.11399,569:0.08824,572:0.07694,574:0.10566,577:0.14966,635:0.12057,819:0.18985,903:0.10261,907:0.13282,916:0.11720,922:0.13518,936:0.11914,989:0.14292,994:0.11844,1002:0.11455,1074:0.16035,1081:0.18726,1112:0.12648,1134:0.09114,1144:0.09022,1178:0.15034,1238:0.11816,1247:0.11717,1258:0.10485,1268:0.08259,1301:0.12027,1394:0.12494
arrang,18:0.13824,60:0.16265,109:0.11297,289:0.10185,432:0.17141,792:0.06879,846:0.10364,1094:0.12989,1188:0.16554,1202:0.08943,1239:0.07776,1325:0.08721
arrest,639:0.15483
arrhenius,1061:0.08477,1072:0.07740,1268:0.08259
arriv,83:0.11084,304:0.09096,753:0.10364,756:0.12079,928:0.07592,1057:0.12492,1209:0.09252,1313:0.11787
art,12:0.13240,499:0.08077
articl,89:0.09940,130:0.17142,132:0.13769,388:0.11318,649:0.09888,1174:0.15406,1389:0.12365
artific,77:0.08381,227:0.11984
artifici,128:0.11025,174:0.09490,315:0.10980,344:0.07231,486:0.09471,618:0.11958,620:0.09762,718:0.12029,792:0.06879,798:0.06506,933:0.11736,1154:0.09320,1184:0.09925
ascend,67:0.21148,94:0.07641,476:0.10132,918:0.13891,1202:0.08943
ascertain,222:0.10484,337:0.14974,914:0.11391,1325:0.08721
ascrib,829:0.11478
asid,939:0.14683
asimplifi,242:0.17974
ask,42:0.09362
asm,964:0.12019,1125:0.11336,1134:0.11858
aspect,68:0.13955,83:0.08519,189:0.08489,200:0.12899,205:0.09840,210:0.08718,225:0.10461,226:0.16255,229:0.15392,230:0.15260,247:0.19124,284:0.14662,287:0.12540,288:0.11473,391:0.12860,403:0.13756,404:0.11714,420:0.12179,433:0.07864,434:0.10172,442:0.10398,453:0.13374,464:0.10941,513:0.13850,573:0.11526,579:0.10781,632:0.16678,638:0.10730,640:0.08356,674:0.13344,675:0.08999,679:0.14702,686:0.10501,698:0.15931,699:0.17501,703:0.14974,704:0.12966,712:0.15050,729:0.10946,746:0.12608,749:0.22565,779:0.10852,780:0.18956,782:0.15730,792:0.06879,793:0.11789,794:0.08747,808:0.14938,835:0.19197,875:0.20679,895:0.18691,902:0.14016,916:0.18777,918:0.20518,919:0.17123,920:0.21136,921:0.11143,1047:0.07605,1174:0.15406,1186:0.12819,1202:0.08943,1245:0.14821,1289:0.09660,1290:0.11189,1320:0.13056,1329:0.12130,1332:0.12746,1334:0.12006,1336:0.10517,1338:0.11214,1339:0.10193,1341:0.17599,1379:0.14002
assembl,47:0.10547,866:0.13389
assert,152:0.10954
assess,416:0.09206,433:0.07864,484:0.09486,649:0.09888,675:0.08999,768:0.16970,797:0.08460,819:0.14593,876:0.11694,921:0.11143,1209:0.09252,1224:0.09147,1285:0.18118,1379:0.14002
assign,432:0.10699,1233:0.13712
assist,244:0.07116,778:0.18087,798:0.06506,1273:0.11645,1385:0.10995
associ,16:0.12298,29:0.09738,58:0.10999,70:0.11470,100:0.12479,116:0.11464,129:0.09440,160:0.08396,163:0.07389,172:0.09835,187:0.08786,189:0.08489,244:0.07116,288:0.16947,318:0.12551,346:0.10772,359:0.14079,364:0.07936,373:0.11485,441:0.09085,466:0.09919,484:0.09486,536:0.08908,554:0.11399,579:0.17272,594:0.18317,595:0.13169,607:0.20092,625:0.08241,638:0.10730,651:0.11757,674:0.13344,695:0.11475,699:0.10924,701:0.10046,702:0.12375,712:0.15050,731:0.13052,798:0.06506,805:0.10630,810:0.11283,836:0.12524,844:0.13631,846:0.13484,862:0.18744,873:0.11496,902:0.10773,939:0.14683,997:0.10925,1013:0.12535,1089:0.14039,1094:0.12989,1095:0.11379,1097:0.12867,1153:0.12046,1158:0.16237,1187:0.13090,1212:0.10014,1277:0.09382,1283:0.16124,1297:0.11893,1309:0.12654,1326:0.12289,1347:0.10122,1371:0.10983,1375:0.08631,1378:0.14506,1383:0.10203
assort,442:0.10398
assum,14:0.07551,15:0.12393,18:0.13824,22:0.13782,44:0.08839,50:0.11622,52:0.11638,54:0.10314,55:0.16691,72:0.12451,81:0.13341,82:0.11121,85:0.08896,87:0.13299,91:0.12229,95:0.14368,104:0.13452,110:0.10130,114:0.15326,115:0.10423,128:0.11025,131:0.08807,135:0.11517,138:0.12902,140:0.08295,146:0.13033,151:0.11765,157:0.10193,161:0.16978,167:0.12837,172:0.09835,177:0.10564,183:0.15420,184:0.15431,191:0.10395,200:0.12899,209:0.09228,217:0.13580,228:0.21924,276:0.10718,299:0.12476,303:0.15084,307:0.12364,318:0.12551,328:0.08488,363:0.09684,387:0.17726,389:0.18725,390:0.12757,409:0.16054,410:0.11935,414:0.15600,426:0.11969,435:0.11110,447:0.17816,453:0.10279,454:0.10837,455:0.10909,459:0.09047,460:0.14098,474:0.12350,486:0.09471,493:0.09614,518:0.10205,523:0.18919,535:0.14236,538:0.11018,547:0.16505,561:0.10687,562:0.09874,574:0.10566,575:0.09243,583:0.12328,601:0.09722,608:0.13184,614:0.10246,616:0.12840,653:0.12149,656:0.10068,660:0.11769,723:0.12683,726:0.13405,740:0.10570,765:0.11858,769:0.14618,818:0.14044,821:0.17591,822:0.13323,824:0.13947,833:0.15346,877:0.18533,881:0.11690,886:0.16893,890:0.13009,924:0.10499,927:0.07519,928:0.09878,929:0.11638,939:0.14683,944:0.18619,945:0.14345,962:0.07471,967:0.12543,974:0.13749,975:0.10452,977:0.10741,984:0.13814,985:0.11727,988:0.14997,989:0.16226,1010:0.15753,1021:0.17981,1028:0.10832,1053:0.11116,1058:0.14601,1061:0.11029,1072:0.07740,1075:0.10869,1076:0.15765,1109:0.12962,1112:0.12648,1128:0.16732,1136:0.10118,1139:0.15170,1154:0.09320,1179:0.09982,1183:0.16879,1190:0.13098,1198:0.09412,1199:0.09560,1203:0.11125,1226:0.09253,1236:0.15416,1238:0.11816,1239:0.07776,1244:0.07543,1246:0.08775,1251:0.10762,1254:0.12376,1255:0.11106,1265:0.11946,1282:0.12022,1286:0.19763,1291:0.10185,1298:0.12906,1300:0.09010,1301:0.12027,1310:0.08833,1315:0.15751,1339:0.10193,1343:0.09655,1366:0.10686,1367:0.18141,1374:0.12011,1389:0.12365,1390:0.10915,1393:0.11774
assumpt,17:0.12071,24:0.09424,42:0.09362,44:0.08839,56:0.10857,72:0.09570,86:0.13444,87:0.13299,89:0.07640,117:0.12636,124:0.10330,131:0.08807,134:0.11175,135:0.11517,138:0.14648,140:0.12252,170:0.10091,184:0.11861,190:0.11493,191:0.10395,193:0.08177,195:0.14772,209:0.09228,217:0.13580,230:0.10331,276:0.10718,283:0.10604,306:0.12861,309:0.11467,317:0.09864,319:0.13032,327:0.15326,328:0.08488,329:0.06350,344:0.07231,349:0.09734,352:0.10305,359:0.14079,380:0.13988,391:0.12860,402:0.13926,426:0.11969,435:0.11110,444:0.15248,449:0.14566,453:0.10279,459:0.09047,489:0.11965,499:0.13722,515:0.12860,521:0.12797,523:0.16664,538:0.11018,539:0.17188,548:0.09157,562:0.09874,572:0.07694,575:0.09243,581:0.16049,583:0.16039,599:0.09603,608:0.13184,611:0.11370,613:0.12827,614:0.10246,623:0.10683,656:0.10068,658:0.12701,703:0.14974,714:0.14441,723:0.12683,818:0.14044,828:0.10520,837:0.12992,851:0.12988,870:0.12654,914:0.11391,917:0.10972,928:0.11215,939:0.14683,960:0.12493,975:0.10452,1031:0.17432,1059:0.14812,1061:0.08477,1121:0.13503,1141:0.17777,1186:0.12819,1192:0.13138,1196:0.14287,1198:0.09412,1201:0.07496,1213:0.10406,1221:0.14069,1226:0.09253,1248:0.07819,1250:0.09056,1254:0.12376,1283:0.20978,1297:0.11893,1312:0.14987,1313:0.06389,1320:0.13056,1337:0.11811,1368:0.15053,1372:0.10850,1374:0.12011,1375:0.08631
assur,724:0.11983
astronaut,220:0.12135
astrophys,778:0.18087
asymmetr,118:0.11850,206:0.09395,545:0.15734,773:0.08582,936:0.11914,1179:0.12987,1224:0.11900
asymmetri,78:0.10206,813:0.13440
asymptot,94:0.11287,105:0.15655,111:0.15048,118:0.11850,128:0.11025,160:0.08396,165:0.08139,264:0.27340,281:0.20956,299:0.12476,310:0.14474,322:0.21471,381:0.09509,417:0.09351,528:0.13149,530:0.13597,540:0.10212,560:0.10204,626:0.11390,663:0.12728,664:0.17915,754:0.11520,784:0.10777,785:0.12531,802:0.13343,811:0.08747,919:0.11592,920:0.21136,961:0.11224,1044:0.12580,1053:0.11116,1071:0.14180,1107:0.10533,1137:0.14778,1138:0.21256,1184:0.09925,1200:0.11456,1273:0.11645,1297:0.11893,1304:0.11992,1373:0.11972
atlarg,788:0.10060
atm,262:0.09706,1009:0.12205
atmospher,32:0.14739,33:0.09250,67:0.16255,69:0.12829,77:0.08381,83:0.11084,85:0.08896,90:0.14830,138:0.09917,162:0.10337,163:0.07389,164:0.12401,177:0.10564,262:0.09706,263:0.11703,302:0.12436,332:0.11275,357:0.11675,436:0.23194,499:0.08077,510:0.18304,518:0.10205,536:0.08908,548:0.11913,552:0.09796,553:0.11288,554:0.11399,583:0.12328,613:0.18947,614:0.16415,616:0.16706,618:0.17663,619:0.28816,620:0.16585,622:0.13060,639:0.15483,691:0.13502,715:0.19376,716:0.15871,717:0.13646,719:0.14086,794:0.08747,805:0.10630,815:0.10058,816:0.12347,876:0.15214,882:0.18785,908:0.10837,944:0.18619,949:0.12892,958:0.14078,962:0.07471,969:0.19202,982:0.15299,983:0.14834,1000:0.10517,1011:0.17340,1077:0.17332,1103:0.22619,1150:0.18971,1255:0.11106,1257:0.12209,1274:0.09769,1291:0.15045,1319:0.09580,1335:0.11071,1344:0.16360,1345:0.16999,1347:0.13168,1348:0.20648,1391:0.10060,1393:0.11774,1394:0.12494
atom,24:0.12260,259:0.14559,262:0.09706,303:0.19624,355:0.15090,436:0.17828,437:0.15473,541:0.10004,575:0.09243,576:0.09517,1230:0.11302,1263:0.08920,1297:0.11893
attach,53:0.13647,58:0.10999,100:0.09592,142:0.13038,152:0.10954,179:0.12967,188:0.13635,222:0.13640,290:0.12685,315:0.07434,369:0.10193,392:0.15421,439:0.11296,440:0.19584,526:0.20634,603:0.09970,609:0.16884,612:0.14859,633:0.15907,683:0.15221,793:0.11789,797:0.08460,902:0.10773,959:0.10732,996:0.09433,1077:0.17332,1106:0.12563,1189:0.13636,1228:0.13814,1267:0.16315,1271:0.08674,1398:0.11497
attack,1:0.12466,12:0.13240,27:0.12623,32:0.18150,48:0.18052,56:0.10857,58:0.14310,69:0.16691,70:0.11470,122:0.16711,124:0.10330,189:0.14423,193:0.08177,197:0.14268,225:0.11877,231:0.14281,232:0.10330,234:0.11905,248:0.13362,312:0.16774,354:0.19991,360:0.12005,363:0.09684,373:0.13040,420:0.12179,433:0.07864,434:0.10172,439:0.11296,440:0.15053,441:0.09085,443:0.15038,484:0.09486,492:0.30959,498:0.12409,520:0.10188,530:0.13597,541:0.10004,567:0.11441,572:0.10010,636:0.10618,638:0.13960,673:0.10687,688:0.12667,694:0.11605,695:0.08820,698:0.15931,704:0.08094,708:0.22261,709:0.15943,712:0.15050,717:0.15146,746:0.12608,785:0.12531,790:0.10564,801:0.11144,815:0.16114,901:0.12582,924:0.10499,927:0.09782,946:0.11697,947:0.15326,972:0.11147,973:0.15030,988:0.14997,993:0.14679,999:0.10876,1000:0.15535,1005:0.12565,1006:0.15530,1064:0.11530,1077:0.17332,1104:0.11360,1108:0.10084,1114:0.13972,1115:0.22683,1147:0.07552,1179:0.12987,1184:0.09925,1186:0.12819,1188:0.11207,1192:0.13138,1193:0.12276,1201:0.07496,1204:0.08167,1217:0.12987,1218:0.13183,1229:0.08809,1231:0.15813,1259:0.11686,1262:0.13212,1277:0.15030,1292:0.09684,1304:0.11992,1307:0.15447,1309:0.09726,1343:0.09655,1347:0.19780,1349:0.11477,1350:0.20035,1351:0.12079,1352:0.09991,1355:0.10636,1381:0.09331
attain,58:0.10999,77:0.08381,277:0.09981,651:0.11757,658:0.09763,758:0.17908,1205:0.10113,1380:0.09257,1388:0.15781
attaindd,1047:0.07605
attempt,96:0.10220,109:0.11297,130:0.17142,179:0.09967,188:0.10480,190:0.11493,199:0.08559,202:0.08670,210:0.08718,244:0.07116,262:0.07460,286:0.21624,301:0.19327,304:0.09096,360:0.12005,441:0.09085,491:0.14247,549:0.17741,600:0.11936,683:0.09501,797:0.08460,810:0.11283,865:0.13788,876:0.11694,892:0.15800,906:0.17938,911:0.14723,929:0.11638,979:0.13078,992:0.08921,997:0.10925,1108:0.10084,1160:0.13235,1299:0.16884,1302:0.10951,1380:0.12044
atten,1052:0.13633
attend,100:0.09592,138:0.12902,165:0.08139,797:0.08460,927:0.07519
attent,46:0.16636,56:0.10857,91:0.12229,163:0.07389,166:0.10890,172:0.12796,193:0.08177,202:0.08670,270:0.10332,283:0.10604,313:0.19019,320:0.29636,394:0.18785,453:0.10279,456:0.09336,494:0.11643,506:0.14037,532:0.20909,649:0.12865,681:0.13270,720:0.10799,792:0.08950,828:0.10520,887:0.14263,892:0.15800,933:0.09021,934:0.10339,1030:0.20992,1160:0.13235,1201:0.07496,1293:0.18423,1295:0.11430,1313:0.06389,1376:0.15830,1377:0.13782,1385:0.10995
attenu,64:0.16452,219:0.10065,660:0.09046,1156:0.16641,1313:0.06389,1317:0.21050
attitud,673:0.10687,711:0.13334,717:0.12582,947:0.11736,1095:0.11379
attract,33:0.12034,270:0.10332,969:0.14759
attribut,49:0.07780,152:0.10954,186:0.10729,276:0.10718,294:0.09189,504:0.10431,576:0.07315,588:0.10045,589:0.13031,628:0.10149,658:0.09763,757:0.09184,858:0.11558,883:0.13256,1039:0.09194,1047:0.07605,1199:0.09560,1239:0.07776,1313:0.06389,1372:0.10850
augment,86:0.13444,210:0.08718,1244:0.11141,1326:0.12289
august,83:0.08519,1052:0.13633
aural,844:0.10477
auspic,905:0.15481
author,15:0.12393,20:0.17404,21:0.18304,46:0.21643,77:0.08381,104:0.13452,132:0.11182,136:0.15326,154:0.15626,157:0.16330,202:0.08670,206:0.09395,292:0.09713,297:0.11786,307:0.12364,313:0.19019,328:0.08488,344:0.12286,351:0.12588,356:0.15226,361:0.22388,388:0.14725,393:0.18827,417:0.12211,424:0.19674,448:0.11772,452:0.08306,469:0.14284,478:0.15655,488:0.11770,489:0.15567,490:0.15969,491:0.14247,499:0.10508,502:0.22619,503:0.14178,533:0.24254,540:0.10212,552:0.09796,558:0.13690,577:0.14966,644:0.10963,649:0.09888,660:0.11769,669:0.15179,677:0.09127,703:0.14974,731:0.17044,733:0.10900,739:0.11378,748:0.11375,756:0.15715,771:0.14019,778:0.18087,804:0.11503,825:0.09707,829:0.11478,839:0.12089,844:0.10477,892:0.15800,919:0.11592,931:0.18310,937:0.12928,957:0.13797,962:0.07471,963:0.18027,966:0.09709,1036:0.13630,1041:0.13316,1054:0.17449,1057:0.16253,1059:0.10028,1060:0.17188,1068:0.11811,1131:0.13898,1137:0.13626,1138:0.16338,1236:0.15416,1276:0.22534,1278:0.10764,1294:0.10758,1321:0.09673,1330:0.10036,1365:0.12086,1370:0.16125,1384:0.12055,1389:0.16088,1398:0.14958
autocorrel,113:0.13529,558:0.13690
automat,111:0.19577,184:0.11861,451:0.17020,529:0.08623,599:0.09603,704:0.08094,745:0.19401,869:0.08490,1087:0.13212,1099:0.16502,1113:0.15948,1388:0.15781
auxiliari,1095:0.14805,1323:0.19113
avail,8:0.12962,12:0.13240,14:0.07551,17:0.12071,19:0.16649,30:0.13433,34:0.11225,69:0.12829,96:0.13296,122:0.10431,124:0.10330,125:0.10403,127:0.12592,164:0.08396,182:0.13355,185:0.08707,195:0.14772,202:0.08670,251:0.15960,254:0.19019,262:0.07460,265:0.17065,277:0.09981,291:0.17741,292:0.09713,317:0.09864,329:0.06350,330:0.14182,403:0.13756,421:0.11338,433:0.07864,441:0.11820,476:0.10132,522:0.07910,541:0.10004,544:0.14109,552:0.09796,609:0.16884,616:0.12840,622:0.10038,640:0.08356,651:0.11757,701:0.10046,710:0.09928,728:0.16884,753:0.13484,792:0.06879,798:0.06506,809:0.15105,810:0.11283,829:0.11478,876:0.11694,878:0.15596,906:0.17938,1015:0.12221,1051:0.13427,1057:0.12492,1061:0.08477,1104:0.11360,1105:0.13870,1117:0.11628,1145:0.14050,1171:0.17789,1174:0.15406,1185:0.11797,1192:0.13138,1205:0.10113,1209:0.09252,1211:0.12923,1214:0.18493,1224:0.11900,1248:0.07819,1294:0.10758,1298:0.12906,1302:0.10951,1310:0.11492,1331:0.15710,1336:0.10517,1359:0.16709,1391:0.10060,1392:0.09178
avalu,200:0.12899
avenu,12:0.13240,618:0.11958
averag,66:0.15945,74:0.15258,97:0.09871,113:0.13529,125:0.13535,165:0.12022,193:0.08177,237:0.12704,303:0.15084,400:0.17020,453:0.10279,493:0.12508,497:0.11602,560:0.10204,564:0.09519,566:0.11593,568:0.13762,569:0.08824,574:0.10566,604:0.16639,620:0.09762,622:0.10038,641:0.13621,662:0.10851,741:0.19455,749:0.13281,759:0.13569,805:0.10630,812:0.11278,822:0.13323,829:0.11478,840:0.15526,959:0.10732,962:0.07471,982:0.11759,1012:0.17021,1103:0.15313,1195:0.09306,1258:0.10485,1354:0.12288
avoid,15:0.12393,162:0.10337,202:0.08670,244:0.07116,275:0.12906,315:0.07434,355:0.15090,410:0.11935,416:0.09206,448:0.11772,679:0.11300,683:0.09501,686:0.10501,792:0.06879,878:0.15596,1013:0.12535,1031:0.13399,1039:0.09194,1043:0.11193,1089:0.14039,1205:0.10113,1219:0.13214,1239:0.07776,1280:0.09238,1321:0.14288
avov,1229:0.08809
avro,792:0.06879
away,85:0.08896,116:0.11464,117:0.12636,479:0.12423,636:0.10618,707:0.10375,808:0.11482,890:0.13009,946:0.08990,986:0.09018
ax,325:0.09839
axe,78:0.10206,225:0.08041,290:0.12685,368:0.12734,498:0.12409,754:0.11520,1092:0.09540,1169:0.11616,1231:0.10706,1385:0.10995
axi,23:0.13451,34:0.11225,42:0.13829,106:0.17065,116:0.18366,157:0.15056,219:0.10065,225:0.10461,279:0.14736,290:0.12685,323:0.16964,381:0.09509,414:0.10561,442:0.10398,544:0.14109,593:0.11299,616:0.12840,617:0.15462,646:0.09160,673:0.08214,721:0.07158,765:0.15428,784:0.10777,802:0.17360,815:0.10058,852:0.11505,897:0.13938,900:0.16479,903:0.10261,929:0.11638,942:0.12104,956:0.12423,1094:0.16900,1095:0.14805,1110:0.15948,1137:0.13626,1167:0.10734,1183:0.12973,1230:0.11302,1231:0.10706,1363:0.11414,1382:0.09370,1385:0.10995,1392:0.09178
axial,11:0.18235,19:0.16649,40:0.11130,49:0.07780,54:0.10314,62:0.08812,85:0.08896,94:0.12241,97:0.09871,100:0.09592,105:0.12033,118:0.15417,127:0.16382,134:0.11175,136:0.15326,138:0.12902,188:0.13635,191:0.13525,196:0.15232,213:0.11609,216:0.09356,217:0.13580,266:0.09872,277:0.12986,341:0.13100,349:0.09734,353:0.12298,364:0.07936,381:0.09509,387:0.17726,426:0.17680,428:0.11681,435:0.11110,473:0.14074,543:0.17388,559:0.14863,589:0.10016,590:0.16822,592:0.19579,642:0.16594,739:0.11378,740:0.10570,741:0.19455,742:0.18240,743:0.16614,744:0.13134,750:0.16542,760:0.11373,762:0.19129,764:0.11891,769:0.14618,812:0.11278,814:0.13673,816:0.12347,821:0.17591,822:0.10240,839:0.12089,845:0.10605,852:0.11505,885:0.15875,887:0.14263,888:0.22848,897:0.13938,928:0.09878,932:0.22061,934:0.10339,935:0.18744,937:0.12928,938:0.18234,940:0.14818,947:0.11736,956:0.12423,957:0.13797,967:0.16319,970:0.15037,984:0.13814,985:0.11727,999:0.10876,1001:0.13058,1002:0.11455,1005:0.12565,1012:0.13083,1024:0.10693,1038:0.14486,1050:0.17570,1051:0.10321,1058:0.14601,1059:0.10028,1067:0.22943,1068:0.11811,1070:0.14036,1082:0.09775,1108:0.10084,1116:0.20908,1117:0.15128,1118:0.20328,1119:0.08651,1121:0.13503,1122:0.13634,1123:0.14467,1125:0.11336,1126:0.19556,1130:0.13075,1131:0.20530,1137:0.12001,1138:0.16338,1145:0.14050,1146:0.20379,1171:0.26276,1172:0.15261,1173:0.11580,1178:0.19560,1195:0.09306,1199:0.09560,1222:0.10699,1279:0.10955,1283:0.16124,1293:0.23969,1299:0.16884,1301:0.12027,1304:0.11992,1328:0.13420,1356:0.08616,1361:0.11857,1366:0.13903,1368:0.19584,1371:0.18660,1372:0.10850,1382:0.09370,1386:0.10380,1390:0.10915
axiallysymmetr,179:0.09967,1234:0.15670
axialthrust,1326:0.12289
axisymmetr,17:0.12071,20:0.11783,85:0.08896,160:0.08396,186:0.10729,283:0.10604,323:0.25058,324:0.16981,332:0.11275,365:0.14290,366:0.14270,369:0.10193,381:0.09509,456:0.09336,494:0.15148,498:0.12409,537:0.15248,554:0.11399,555:0.12102,629:0.13542,630:0.11356,662:0.08340,665:0.13247,667:0.09692,789:0.15557,897:0.13938,912:0.17640,936:0.11914,941:0.14992,957:0.17950,997:0.14214,1006:0.15530,1056:0.13961,1122:0.10480,1131:0.13898,1141:0.17777,1145:0.14050,1153:0.12046,1201:0.12009,1204:0.08167,1222:0.13920,1225:0.09466,1236:0.15416,1241:0.11397,1245:0.11392,1253:0.15462,1261:0.09169,1281:0.10157,1302:0.10951,1371:0.10983,1374:0.12011,1375:0.12749
azimuth,106:0.17065,1243:0.14255
b,101:0.08299,159:0.14052,200:0.12899,206:0.09395,377:0.17348,410:0.11935,456:0.09336,536:0.08908,660:0.09046,731:0.13052,744:0.13134,787:0.11419,871:0.18853,1034:0.10347,1111:0.17864,1149:0.11323,1172:0.11730,1224:0.09147,1289:0.09660,1320:0.10035,1351:0.09284
back,718:0.12029,1008:0.15198
background,113:0.13529,280:0.12601,1295:0.11430,1310:0.08833,1316:0.17076,1376:0.15830
backup,78:0.10206
bagley,415:0.12768
bakanov,1190:0.13098
balanc,107:0.15490,165:0.12022,352:0.10305,542:0.10466,707:0.10375,748:0.11375,767:0.09092,794:0.08747,960:0.12493,962:0.09720,1155:0.13835,1200:0.11456,1204:0.08167,1216:0.10450
ballist,77:0.14904,82:0.11121,127:0.12592,164:0.08396,274:0.09310,499:0.10508,505:0.15505,715:0.19376,716:0.15871,915:0.15031,947:0.09021,976:0.07468,1000:0.10517,1097:0.12867,1106:0.12563,1110:0.15948,1157:0.10300,1204:0.08167,1274:0.09769,1319:0.09580,1379:0.14002
balsa,1218:0.08925
ban,914:0.11391
band,129:0.12282,431:0.12668,721:0.09313,794:0.08747,796:0.19342,891:0.11190,1145:0.14050,1172:0.15261,1298:0.12906
bandwidth,220:0.12135,891:0.11190
bang,141:0.14037
bank,225:0.08041,289:0.15044,433:0.07864
bar,533:0.24254,648:0.19590,762:0.11940,1024:0.10693,1037:0.14979
bare,912:0.11942
barrel,595:0.10122
barrier,90:0.14830,521:0.12797
base,8:0.12962,14:0.09824,25:0.07821,43:0.12209,48:0.13875,53:0.10490,54:0.10314,60:0.12502,63:0.12723,69:0.12829,85:0.08896,91:0.12229,97:0.09871,110:0.07786,111:0.15048,121:0.18093,122:0.10431,126:0.18852,132:0.11182,134:0.11175,136:0.15326,139:0.16209,144:0.12257,146:0.13033,154:0.15626,163:0.07389,165:0.08139,170:0.10091,173:0.18274,174:0.17509,176:0.27148,179:0.18968,185:0.08707,186:0.18228,187:0.08786,188:0.19945,189:0.17651,191:0.10395,197:0.09659,198:0.09434,204:0.11483,207:0.10780,212:0.07796,225:0.10461,230:0.10331,234:0.09151,235:0.12601,242:0.23385,246:0.12649,248:0.17385,255:0.10956,258:0.19019,259:0.14559,272:0.10129,282:0.17135,283:0.10604,294:0.11955,295:0.14064,303:0.15084,304:0.09096,311:0.11158,314:0.11457,315:0.07434,321:0.14752,328:0.08488,329:0.06350,347:0.12494,352:0.10305,354:0.13534,365:0.10984,378:0.21949,379:0.12385,381:0.09509,409:0.23713,417:0.07187,426:0.11969,431:0.18713,432:0.10699,434:0.13234,442:0.10398,454:0.10837,455:0.10909,458:0.09744,467:0.10501,470:0.15448,487:0.20022,489:0.11965,497:0.11602,513:0.13850,517:0.15248,519:0.22953,522:0.10291,524:0.22104,528:0.13149,530:0.13597,536:0.08908,541:0.10004,555:0.12102,564:0.09519,567:0.11441,571:0.09826,574:0.10566,580:0.12078,583:0.12328,595:0.10122,600:0.11936,606:0.11280,662:0.10851,667:0.09692,677:0.09127,690:0.13738,698:0.12245,709:0.10793,710:0.12916,713:0.11879,714:0.14441,717:0.11082,724:0.11983,730:0.09813,743:0.12770,748:0.11375,749:0.13281,759:0.10430,776:0.18210,781:0.10011,783:0.12712,784:0.10777,794:0.08747,804:0.11503,814:0.10509,815:0.13086,816:0.16064,820:0.14830,823:0.14612,828:0.10520,830:0.10472,837:0.12992,844:0.10477,851:0.12988,852:0.11505,881:0.11690,887:0.14263,891:0.11190,910:0.20346,917:0.08433,922:0.13518,928:0.09878,943:0.11660,947:0.11736,952:0.13492,960:0.12493,964:0.12019,965:0.15637,969:0.19202,973:0.19554,979:0.20951,981:0.13559,983:0.14834,985:0.11727,992:0.08921,993:0.14679,994:0.11844,996:0.09433,999:0.20697,1001:0.19289,1005:0.12565,1011:0.17340,1012:0.13083,1014:0.19335,1040:0.06780,1059:0.13046,1060:0.17188,1061:0.08477,1066:0.11422,1077:0.13322,1082:0.09775,1085:0.17487,1107:0.10533,1109:0.12962,1112:0.12648,1113:0.12258,1116:0.16070,1121:0.13503,1137:0.09224,1147:0.07552,1188:0.11207,1190:0.13098,1191:0.11598,1198:0.13903,1199:0.09560,1204:0.08167,1213:0.10406,1221:0.14069,1225:0.09466,1229:0.08809,1239:0.07776,1246:0.08775,1255:0.11106,1258:0.10485,1263:0.08920,1264:0.10379,1277:0.09382,1278:0.10764,1284:0.12141,1292:0.12600,1302:0.10951,1305:0.18487,1307:0.15447,1308:0.15740,1309:0.09726,1311:0.17034,1315:0.12107,1320:0.10035,1330:0.10036,1331:0.15710,1339:0.10193,1342:0.09028,1349:0.11477,1351:0.09284,1352:0.12998,1356:0.08616,1365:0.12086,1366:0.10686,1373:0.11972,1375:0.11229,1386:0.13505,1390:0.10915,1391:0.10060
basetyp,487:0.15389
basi,1:0.12466,8:0.12962,26:0.19046,35:0.11410,45:0.12103,49:0.07780,110:0.07786,124:0.15259,125:0.10403,140:0.08295,165:0.08139,169:0.12217,186:0.10729,204:0.14940,209:0.09228,227:0.11984,234:0.09151,266:0.09872,294:0.09189,327:0.15326,332:0.11275,370:0.11493,484:0.09486,491:0.14247,494:0.11643,520:0.10188,538:0.11018,542:0.10466,568:0.13762,572:0.07694,581:0.16049,600:0.11936,640:0.08356,645:0.14245,665:0.17235,677:0.09127,721:0.09313,781:0.10011,819:0.14593,821:0.17591,828:0.10520,843:0.11431,889:0.09015,928:0.09878,958:0.14078,968:0.11101,974:0.10568,976:0.07468,986:0.09018,1008:0.15198,1039:0.09194,1109:0.12962,1120:0.16091,1144:0.09022,1192:0.13138,1197:0.15654,1209:0.09252,1216:0.10450,1242:0.09904,1281:0.10157,1289:0.09660,1339:0.10193,1341:0.10986,1360:0.13846,1370:0.10065,1372:0.10850,1379:0.14002
basic,27:0.12623,44:0.08839,97:0.09871,140:0.10792,143:0.18914,164:0.08396,191:0.10395,231:0.14281,289:0.10185,313:0.19019,415:0.12768,440:0.15053,486:0.09471,498:0.12409,520:0.10188,572:0.07694,573:0.11526,577:0.14966,587:0.13772,594:0.18317,660:0.16085,711:0.13334,712:0.09394,713:0.15455,797:0.11007,824:0.10720,827:0.08632,853:0.20599,872:0.10731,880:0.17034,927:0.07519,1028:0.10832,1043:0.11193,1066:0.08779,1235:0.09289,1242:0.15867,1248:0.07819,1260:0.13826,1294:0.10758,1309:0.09726,1339:0.10193
basin,1125:0.11336
batchelor,788:0.10060
batdorf,841:0.17585
bay,858:0.15037,859:0.10345
bc,744:0.13134
be,83:0.08519
beam,29:0.14384,42:0.13829,75:0.13748,462:0.15978,644:0.16193,762:0.11940,826:0.08713,835:0.19197,910:0.26471,913:0.21027,1024:0.15794,1029:0.17870,1126:0.15031,1177:0.22942,1257:0.12209,1316:0.14847
bean,1062:0.15821,1075:0.10869
bear,115:0.10423,146:0.10017,258:0.19019,342:0.09438,424:0.15122,718:0.12029,825:0.09707,844:0.10477,896:0.14818,1083:0.16286,1184:0.09925,1330:0.10036
beat,764:0.11891
becam,83:0.08519,946:0.08990,1010:0.15753
becausewith,622:0.10038
becom,7:0.09658,72:0.09570,94:0.07641,116:0.14915,132:0.08595,139:0.12459,156:0.13685,172:0.09835,192:0.13990,211:0.10894,212:0.07796,252:0.09342,288:0.11473,292:0.09713,302:0.12436,329:0.06350,355:0.15090,381:0.09509,406:0.10162,419:0.13709,473:0.14074,515:0.12860,521:0.12797,565:0.10294,603:0.09970,622:0.10038,649:0.09888,658:0.09763,660:0.09046,662:0.08340,724:0.11983,730:0.09813,740:0.10570,804:0.11503,829:0.11478,880:0.17034,936:0.11914,966:0.09709,990:0.11384,1024:0.10693,1034:0.10347,1134:0.09114,1147:0.09825,1172:0.11730,1173:0.11580,1244:0.07543,1273:0.11645,1278:0.10764,1310:0.08833,1346:0.12513,1361:0.11857,1390:0.10915