-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbeast.lykn
2657 lines (2657 loc) · 91.7 KB
/
beast.lykn
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
abandoned 1.124859 0.375094 0.374251
ability 0.374953 1.125281 2.619760
abiotic 0.749906 0.375094 0.374251
able 0.374953 0.375094 1.122754
absence 1.124859 0.375094 0.748503
absent 0.749906 0.375094 0.374251
absolute 0.374953 0.375094 1.122754
absorbed 0.374953 0.375094 1.497006
absorbs 0.749906 0.375094 0.374251
abundant 0.374953 0.750188 0.374251
ac 0.374953 0.375094 1.871257
academic 0.374953 0.750188 0.374251
accelerate 0.374953 0.375094 1.122754
accelerating 0.374953 0.375094 1.122754
accept 0.374953 0.375094 0.748503
accepted 0.374953 0.750188 0.374251
acceptor 0.374953 0.375094 0.748503
access 0.749906 0.375094 0.374251
accidental 0.749906 0.375094 0.374251
accidents 0.749906 0.375094 0.374251
according 0.374953 0.750188 2.245509
accurate 0.749906 0.375094 0.374251
acetaldehyde 0.374953 0.750188 0.374251
acetic 0.374953 0.750188 0.374251
acetone 0.374953 1.500375 0.374251
acid 1.124859 0.750188 0.374251
acids 1.874766 0.375094 0.374251
acne 0.374953 0.750188 0.374251
acquire 0.374953 0.750188 0.374251
across 0.374953 0.375094 1.871257
act 0.749906 0.375094 1.497006
actinides 0.374953 0.750188 0.374251
action 0.749906 0.375094 0.748503
activity 0.749906 0.375094 0.374251
acts 0.749906 0.375094 0.374251
actual 0.374953 0.375094 0.748503
actually 0.374953 0.375094 1.122754
adapt 1.499813 0.375094 0.374251
adaptation 1.124859 0.375094 0.374251
adaptations 0.749906 0.375094 0.374251
add 0.374953 0.750188 0.374251
added 1.124859 0.750188 1.122754
adding 0.374953 0.375094 1.122754
addition 0.749906 0.375094 0.748503
additional 0.374953 0.375094 0.748503
additive 0.374953 0.750188 0.374251
adhere 0.749906 0.375094 0.374251
adhesives 0.374953 0.750188 0.374251
adjacent 0.374953 1.500375 0.374251
adjustment 0.374953 0.375094 0.748503
administration 0.749906 0.375094 0.374251
adrenal 0.374953 0.750188 0.374251
advantage 1.124859 0.750188 0.374251
adversely 0.749906 0.375094 0.374251
affect 1.499813 1.125281 0.748503
affected 0.749906 0.375094 0.374251
affecting 0.749906 0.750188 0.374251
affects 0.374953 0.375094 0.748503
agave 0.749906 0.375094 0.374251
age 7.499063 0.375094 0.748503
agent 0.374953 0.750188 0.374251
agents 0.749906 0.375094 0.374251
ago 0.749906 0.375094 0.374251
agreed 0.374953 0.375094 0.748503
agriculture 1.874766 0.375094 0.374251
aid 0.749906 0.375094 0.374251
aids 0.749906 0.375094 0.374251
airplane 0.374953 0.750188 0.374251
airplanes 0.374953 0.375094 0.748503
airports 0.374953 0.375094 0.748503
alcohol 0.374953 3.375844 0.374251
alcohols 0.374953 3.750938 0.374251
aldehyde 0.374953 1.500375 0.374251
aldehydes 0.374953 6.001500 0.374251
align 0.374953 0.375094 0.748503
alkane 0.374953 0.750188 0.374251
alkanes 0.374953 0.750188 0.374251
alkyl 0.374953 3.750938 0.374251
allow 0.374953 0.375094 0.748503
allowing 0.374953 0.750188 0.374251
alloy 0.374953 1.125281 0.374251
alloys 0.374953 1.500375 0.748503
allylic 0.374953 0.750188 0.374251
almond 0.374953 0.750188 0.374251
almost 0.374953 0.750188 0.748503
along 0.749906 0.375094 1.497006
alpha 0.374953 1.125281 0.374251
alphabetical 0.374953 0.750188 0.374251
already 0.374953 0.375094 0.748503
altered 1.124859 0.750188 0.374251
alternating 0.374953 0.375094 1.871257
although 0.749906 0.375094 1.122754
altogether 0.749906 0.375094 0.374251
aluminium 0.374953 0.750188 0.374251
aluminum 0.374953 1.125281 0.374251
always 0.374953 0.375094 1.122754
amazing 0.374953 0.750188 0.374251
ambiguities 0.374953 0.750188 0.374251
ambiguous 0.749906 0.375094 0.374251
amidst 0.374953 0.375094 0.748503
amino 2.249719 0.375094 0.374251
ammine 0.374953 0.750188 0.374251
among 0.749906 0.375094 1.122754
amorphous 0.374953 0.375094 0.748503
amount 0.374953 1.875469 2.994012
amounts 0.374953 0.375094 0.748503
amplified 0.374953 0.375094 0.748503
analogs 0.749906 0.375094 0.374251
analytical 0.374953 0.750188 0.374251
anatomical 0.749906 0.375094 0.374251
ancestor 1.499813 0.375094 0.374251
ancient 0.374953 1.125281 0.374251
androecium 0.749906 0.375094 0.374251
angiosperms 1.124859 0.375094 0.374251
animal 0.749906 0.750188 0.374251
animals 2.249719 0.375094 0.374251
anion 0.374953 1.500375 0.374251
anionic 0.374953 0.750188 0.374251
anions 0.374953 0.375094 0.748503
another 1.874766 0.750188 3.368263
answer 0.374953 0.375094 1.122754
antennae 0.374953 0.375094 1.122754
anther 4.499438 0.375094 0.374251
anthers 0.749906 0.375094 0.374251
antibiotics 0.749906 0.375094 0.374251
antiparallel 0.749906 0.375094 0.374251
anymore 0.374953 0.375094 0.748503
anything 0.374953 0.375094 0.748503
apparent 0.374953 0.375094 1.122754
apparently 0.374953 0.375094 0.748503
application 0.749906 1.125281 1.122754
applications 0.749906 2.250563 0.748503
applied 0.374953 0.375094 0.748503
applies 0.374953 0.750188 0.748503
apply 0.374953 0.375094 1.497006
applying 0.374953 0.375094 0.748503
appreciable 0.374953 0.375094 0.748503
approach 1.124859 0.375094 0.374251
appropriate 0.374953 0.375094 0.748503
aqua 0.374953 0.750188 0.374251
arceuthobium 0.749906 0.375094 0.374251
archaeology 0.374953 0.375094 0.748503
archesporial 0.749906 0.375094 0.374251
area 1.874766 0.375094 1.497006
areas 1.874766 0.375094 0.374251
arise 0.374953 0.375094 0.748503
arises 1.124859 0.750188 1.122754
aromatic 0.374953 1.500375 0.374251
around 1.874766 1.875469 2.619760
arranged 0.374953 0.375094 0.748503
arrangement 0.374953 0.750188 0.374251
array 0.374953 0.750188 0.374251
arsenic 0.374953 0.375094 1.122754
article 0.374953 0.375094 0.748503
aryl 0.374953 2.625656 0.374251
asexual 4.499438 0.375094 0.374251
asked 0.374953 0.375094 0.748503
asking 0.374953 0.375094 0.748503
aspects 0.374953 0.375094 0.748503
associated 0.374953 0.375094 0.748503
assume 0.374953 0.375094 1.122754
astronomy 0.374953 0.375094 1.122754
ate 0.374953 0.750188 0.374251
atom 0.374953 10.877719 8.607784
atomic 0.374953 0.750188 0.374251
atomis 0.374953 1.125281 0.374251
atoms 0.374953 9.377344 3.742515
atomsare 0.374953 1.875469 0.374251
attached 1.499813 12.003001 1.871257
attract 0.749906 0.375094 0.374251
attraction 0.374953 0.375094 1.122754
attractive 0.374953 0.375094 0.748503
attribute 1.874766 0.375094 0.374251
attributes 4.124484 0.375094 0.374251
audible 0.374953 0.375094 0.748503
automatic 0.374953 0.375094 0.748503
automobiles 0.374953 0.375094 0.748503
automotive 0.374953 1.125281 0.374251
available 0.374953 0.375094 0.748503
average 0.374953 0.375094 1.871257
avoid 0.749906 0.375094 0.374251
aware 1.124859 0.375094 0.374251
away 0.749906 0.375094 0.374251
b 0.374953 0.375094 1.122754
baby 0.749906 0.375094 0.374251
back 0.749906 0.375094 0.748503
backbone 0.749906 0.375094 1.497006
bacteria 1.124859 0.375094 0.374251
bags 0.374953 0.750188 0.374251
bakelite 0.374953 0.750188 0.374251
balanced 0.749906 0.375094 0.374251
ballistic 0.374953 0.375094 0.748503
band 0.374953 0.375094 1.871257
banned 0.749906 0.375094 0.374251
bar 0.374953 0.375094 0.748503
bark 0.374953 0.750188 0.374251
barriers 0.749906 0.375094 0.374251
base 0.749906 0.375094 0.374251
baseballs 0.374953 0.375094 0.748503
based 0.374953 2.250563 2.619760
bases 1.124859 0.375094 0.374251
basic 1.499813 0.375094 2.994012
basically 0.374953 0.375094 1.497006
basis 0.749906 1.500375 0.748503
batteries 0.374953 1.500375 1.122754
beam 0.374953 0.375094 0.748503
beams 0.374953 0.375094 0.748503
bean 0.374953 0.750188 0.374251
beautiful 0.374953 0.750188 0.748503
became 0.749906 0.375094 0.374251
become 0.374953 0.375094 0.748503
becomes 0.749906 0.375094 1.497006
bee 0.374953 0.750188 0.374251
bees 0.749906 0.375094 0.374251
begin 0.374953 0.375094 1.497006
beginning 0.374953 0.375094 0.748503
behave 0.374953 0.750188 1.122754
behaves 0.374953 0.375094 0.748503
behavior 0.374953 1.125281 1.122754
believed 0.374953 0.375094 0.748503
bell 0.374953 0.375094 0.748503
belong 0.374953 0.375094 0.748503
bend 0.374953 0.375094 0.748503
bending 0.374953 0.375094 1.122754
bends 0.374953 0.375094 0.748503
benefits 1.124859 0.375094 0.374251
benzaldehyde 0.374953 0.750188 0.374251
benzene 0.374953 1.875469 0.374251
benzylic 0.374953 0.750188 0.374251
best 0.374953 0.750188 0.374251
better 1.124859 1.125281 0.374251
beyond 0.374953 0.750188 0.374251
bias 0.749906 0.375094 0.374251
billion 0.749906 0.375094 0.374251
billions 0.374953 0.375094 0.748503
binary 1.124859 0.375094 1.497006
biodiversity 3.749531 0.375094 0.374251
biological 1.499813 1.125281 0.374251
biologically 0.749906 0.375094 0.374251
biologist 0.749906 0.375094 0.374251
biopolymer 0.374953 0.750188 0.374251
biosphere 2.624672 0.375094 0.374251
biotechnological 0.749906 0.375094 0.374251
biotechnology 4.499438 0.375094 0.374251
biotic 0.749906 0.375094 0.374251
birds 1.874766 0.750188 3.368263
birth 4.874391 0.375094 0.374251
births 2.249719 0.375094 0.374251
bis 0.374953 0.750188 0.374251
bizarre 0.374953 0.375094 0.748503
blind 0.374953 0.375094 0.748503
block 0.749906 12.378095 0.374251
blowing 0.749906 0.375094 0.374251
blue 0.374953 0.750188 0.374251
boat 0.374953 0.375094 0.748503
bodies 0.374953 0.375094 1.122754
body 2.624672 0.375094 0.748503
bombarded 0.374953 0.750188 0.374251
bond 0.749906 1.875469 1.497006
bonded 0.374953 1.125281 0.374251
bonding 0.374953 1.500375 1.122754
bonds 0.374953 1.500375 0.748503
bones 0.374953 0.375094 0.748503
book 0.749906 0.375094 0.748503
boron 0.374953 0.750188 1.497006
bottles 0.374953 0.750188 0.374251
bound 0.374953 0.750188 1.497006
box 0.374953 0.375094 0.748503
branch 0.374953 0.375094 1.871257
branches 0.374953 0.375094 0.748503
brass 0.374953 1.125281 0.374251
break 0.374953 0.375094 1.497006
breakage 0.374953 0.375094 0.748503
breakdown 0.374953 0.375094 0.748503
breaking 0.374953 0.375094 0.748503
bridges 0.374953 0.750188 0.748503
brief 0.374953 0.750188 0.374251
brightness 0.374953 0.375094 0.748503
broad 0.749906 0.750188 0.374251
broadcast 0.374953 0.375094 0.748503
broadly 0.749906 0.375094 0.374251
bryophyllum 0.749906 0.375094 0.374251
bucket 0.374953 0.375094 0.748503
bud 0.749906 0.375094 0.374251
budding 1.499813 0.375094 0.374251
buds 0.749906 0.375094 0.374251
build 0.374953 0.375094 0.748503
building 0.749906 0.750188 0.374251
buildings 0.374953 0.375094 0.748503
bulbil 0.749906 0.375094 0.374251
bullets 0.374953 0.375094 0.748503
burns 0.374953 0.750188 0.374251
butanone 0.374953 0.750188 0.374251
byju 0.374953 0.750188 0.374251
c 0.374953 4.126032 2.619760
cable 0.374953 0.375094 1.122754
caged 0.749906 0.375094 0.374251
calculate 0.374953 0.375094 1.871257
calculated 1.124859 0.375094 1.122754
calculates 1.124859 0.375094 0.374251
calculating 0.374953 0.375094 1.122754
calculators 0.374953 0.375094 0.748503
call 0.374953 0.375094 1.122754
called 2.624672 2.625656 9.730539
callose 1.124859 0.375094 0.374251
calls 0.374953 0.375094 0.748503
calyx 2.249719 0.375094 0.374251
cameras 0.374953 0.375094 0.748503
camphor 0.374953 1.125281 0.374251
cancer 0.749906 0.375094 0.374251
cannot 0.374953 0.750188 2.994012
capability 0.749906 0.375094 0.374251
capable 1.124859 0.375094 0.748503
capacitive 0.374953 0.375094 1.122754
capacitor 0.374953 0.375094 0.748503
capacity 0.374953 0.375094 0.748503
capital 1.124859 0.375094 0.374251
capture 0.374953 0.375094 0.748503
caraway 0.374953 0.750188 0.374251
carbon 0.749906 11.252813 0.748503
carbonyl 0.374953 2.625656 0.374251
care 1.124859 0.375094 0.374251
career 0.374953 0.750188 0.374251
carpel 1.124859 0.375094 0.374251
carpels 1.124859 0.375094 0.374251
carried 1.499813 0.375094 0.374251
carrier 0.374953 0.375094 0.748503
carriers 0.374953 0.375094 2.619760
carries 0.749906 0.375094 0.748503
carry 0.374953 0.375094 1.497006
carvone 0.374953 0.750188 0.374251
case 0.749906 1.500375 1.122754
cases 1.124859 0.375094 0.374251
cast 0.374953 0.750188 0.374251
catalyst 0.749906 0.375094 0.374251
catalysts 0.374953 0.750188 0.374251
categorized 0.374953 0.375094 0.748503
cathode 0.374953 0.375094 0.748503
cation 0.374953 2.250563 0.374251
cationic 0.374953 0.750188 0.374251
cations 0.374953 0.375094 0.748503
cause 0.749906 0.375094 1.122754
caused 1.124859 0.375094 1.122754
causes 1.124859 0.375094 0.748503
causing 0.374953 0.375094 1.122754
celestial 0.374953 0.375094 0.748503
cell 3.374578 0.375094 0.374251
cells 4.874391 0.750188 0.374251
cellulose 0.749906 0.375094 0.374251
center 0.374953 0.750188 0.374251
central 0.749906 1.500375 0.374251
centre 0.374953 0.375094 1.871257
century 0.374953 1.500375 0.748503
ceramic 0.374953 0.375094 0.748503
certain 1.874766 0.750188 1.871257
ch 0.374953 2.625656 0.374251
chain 1.124859 0.375094 0.374251
chains 0.374953 1.875469 0.374251
chamber 4.874391 0.750188 0.374251
chambers 0.749906 0.375094 0.374251
change 2.249719 3.375844 2.245509
changed 0.749906 0.375094 0.748503
changes 1.499813 0.750188 1.122754
changing 1.124859 0.375094 2.994012
channel 0.374953 0.375094 1.122754
chapter 0.374953 0.375094 0.748503
characteristics 1.124859 0.375094 1.122754
charge 0.374953 0.375094 7.110778
charged 0.374953 1.500375 7.859281
charges 0.374953 0.375094 7.110778
charles 1.124859 0.375094 0.374251
check 0.374953 0.375094 0.748503
chemical 1.499813 5.251313 1.497006
chemically 0.374953 0.750188 0.374251
chemistry 0.374953 1.500375 0.748503
chemists 0.374953 0.750188 0.374251
chicken 0.749906 0.375094 0.374251
chiefly 0.374953 1.125281 0.374251
childbirth 0.749906 0.375094 0.374251
cho 0.374953 2.625656 0.374251
chromium 0.374953 1.500375 0.374251
chromosomes 1.124859 0.375094 0.374251
cinnamaldehyde 0.374953 0.750188 0.374251
cinnamon 0.374953 0.750188 0.374251
circuit 0.374953 0.375094 8.982036
circuits 0.374953 0.375094 1.497006
citra 0.374953 0.750188 0.374251
civilization 0.749906 0.375094 0.374251
classes 0.374953 0.750188 0.374251
classical 0.374953 0.375094 3.742515
classification 0.374953 4.501125 0.374251
classified 0.374953 2.250563 1.497006
clear 0.374953 0.375094 0.748503
clearly 1.124859 0.375094 0.374251
clerk 0.374953 0.375094 0.748503
closely 0.374953 0.375094 0.748503
clothes 0.749906 0.375094 0.374251
cloud 0.374953 0.375094 0.748503
cn 0.374953 0.750188 0.374251
co 0.749906 2.250563 0.374251
coal 0.374953 2.250563 0.374251
coatings 0.374953 0.750188 0.374251
cobalt 0.374953 1.125281 0.374251
cobaltate 0.374953 0.750188 0.374251
coch 0.374953 0.750188 0.374251
code 0.749906 0.375094 0.374251
codon 1.124859 0.375094 0.374251
codons 1.499813 0.375094 0.374251
coefficients 0.374953 1.500375 0.374251
coercion 0.749906 0.375094 0.374251
coil 0.374953 0.375094 2.619760
coiling 0.374953 0.375094 0.748503
coils 0.374953 0.375094 1.497006
coinage 0.374953 0.750188 0.374251
coined 0.749906 0.375094 0.374251
coins 0.374953 0.750188 0.374251
cold 0.749906 0.375094 0.374251
colleague 0.374953 0.750188 0.374251
collide 0.374953 0.375094 0.748503
colliding 0.374953 0.750188 0.374251
collision 0.374953 0.750188 0.374251
color 1.124859 0.375094 0.374251
colored 0.749906 0.375094 0.374251
colors 0.374953 0.375094 1.122754
combination 0.749906 1.125281 1.122754
combinations 0.374953 0.375094 0.748503
combine 0.374953 0.750188 0.374251
combined 0.374953 0.750188 0.374251
combining 1.124859 0.375094 1.122754
combustion 0.374953 1.500375 0.374251
come 0.749906 0.375094 1.122754
comes 1.124859 0.750188 0.374251
coming 0.749906 0.375094 0.374251
comma 0.749906 0.375094 0.374251
commercial 0.374953 0.750188 0.374251
commercially 0.374953 0.750188 0.374251
common 1.874766 2.625656 0.374251
commonly 0.374953 0.375094 0.748503
communicated 0.374953 0.375094 0.748503
communication 0.374953 0.375094 4.865269
communications 0.374953 0.375094 0.748503
compared 0.749906 0.750188 0.748503
comparison 0.374953 0.750188 0.374251
compass 0.374953 0.375094 0.748503
compelling 0.374953 0.375094 0.748503
compete 1.124859 0.375094 0.374251
complementary 0.749906 1.875469 1.497006
complete 0.749906 0.750188 1.122754
completely 0.374953 0.750188 0.374251
complex 0.749906 2.250563 1.122754
complexity 0.374953 0.750188 0.374251
complicated 0.374953 0.375094 0.748503
component 0.374953 0.750188 0.374251
components 1.499813 0.750188 1.122754
composed 1.124859 1.125281 0.748503
composition 0.374953 0.375094 1.122754
compound 0.374953 0.750188 0.374251
compounds 0.374953 6.001500 0.748503
comprehensively 0.374953 0.375094 0.748503
comprise 0.749906 0.375094 0.374251
comprised 1.124859 0.375094 0.374251
comprises 2.249719 0.375094 0.748503
computers 0.374953 0.375094 0.748503
concave 0.374953 0.375094 1.122754
concentrated 0.374953 0.375094 0.748503
concentration 0.374953 3.375844 0.374251
concentrations 0.374953 2.250563 0.374251
concept 0.749906 0.750188 1.871257
concepts 0.749906 0.375094 0.374251
concerned 0.374953 0.375094 0.748503
concerns 0.374953 0.375094 0.748503
conclude 0.374953 0.750188 0.748503
conclusion 0.749906 0.375094 0.374251
condition 1.499813 0.375094 0.374251
conditions 2.624672 0.375094 1.122754
conduct 0.374953 0.375094 0.748503
conducted 0.374953 0.375094 1.122754
conducting 0.374953 0.750188 1.122754
conduction 0.374953 0.375094 2.619760
conductive 0.374953 0.375094 0.748503
conductivity 0.374953 0.375094 1.122754
conductor 0.374953 0.750188 0.374251
conductors 0.374953 0.750188 1.497006
cone 0.374953 0.375094 0.748503
configuration 0.374953 1.875469 1.497006
confines 0.374953 0.375094 0.748503
confirmed 0.374953 0.375094 0.748503
confuse 0.374953 0.375094 0.748503
confusing 0.374953 0.375094 0.748503
connect 0.374953 0.375094 0.748503
connected 0.749906 0.750188 0.748503
connection 0.374953 0.750188 0.748503
connects 0.749906 0.375094 0.374251
conned 0.374953 0.375094 0.748503
conservation 1.874766 0.375094 0.374251
conserve 0.749906 0.375094 0.374251
consider 0.374953 1.125281 0.748503
consideration 0.374953 0.375094 0.748503
considered 0.374953 0.375094 0.748503
consist 0.374953 0.750188 0.374251
consisting 0.749906 0.375094 0.374251
consists 1.124859 0.750188 0.748503
constant 0.374953 1.125281 1.871257
constantly 0.374953 0.375094 1.871257
constituent 0.374953 0.750188 0.748503
constitute 1.124859 0.375094 0.374251
constituted 0.374953 0.750188 0.374251
constitutes 1.124859 0.375094 0.748503
construction 0.374953 0.750188 0.374251
contain 0.374953 2.625656 0.748503
containers 0.374953 0.750188 0.374251
containing 0.374953 2.250563 0.374251
contains 0.374953 1.125281 1.497006
contexts 0.374953 0.750188 0.374251
continuity 1.499813 0.375094 0.374251
continuous 0.374953 0.375094 1.122754
continuously 0.374953 0.375094 0.748503
contraception 1.124859 0.375094 0.374251
contrast 0.374953 0.375094 0.748503
contribute 1.124859 0.375094 0.374251
contributed 0.374953 0.375094 0.748503
contributes 0.374953 0.375094 0.748503
contribution 0.374953 0.375094 0.748503
control 1.124859 0.375094 0.374251
controlled 0.374953 0.750188 0.748503
convenient 0.374953 0.375094 0.748503
conventional 0.749906 0.750188 0.374251
converging 0.374953 0.375094 1.122754
convert 0.374953 0.375094 1.497006
converted 0.374953 0.375094 1.122754
converting 0.374953 0.375094 0.748503
converts 0.374953 0.375094 1.122754
convex 0.374953 0.375094 1.122754
convey 0.374953 0.375094 0.748503
conveyed 0.374953 0.375094 0.748503
cook 0.374953 0.750188 0.374251
cooling 0.374953 0.750188 0.374251
coordination 0.374953 4.126032 0.374251
copper 0.374953 1.875469 2.619760
copying 0.749906 0.375094 0.374251
core 0.374953 1.125281 1.497006
cork 0.374953 0.375094 0.748503
corolla 0.749906 0.375094 0.374251
corrective 0.374953 0.375094 1.497006
corresponding 0.374953 0.375094 0.748503
corrosion 0.374953 1.125281 0.374251
cortisone 0.374953 0.750188 0.374251
cosmetic 0.374953 0.750188 0.374251
cosmetics 0.374953 0.750188 0.374251
costs 0.374953 0.375094 0.748503
coughing 0.749906 0.375094 0.374251
coulomb 0.374953 0.375094 1.497006
counseling 0.749906 0.375094 0.374251
course 0.374953 0.375094 0.748503
covalent 0.374953 1.125281 2.619760
cover 0.749906 0.375094 0.374251
covers 0.749906 0.375094 0.374251
coveted 0.374953 0.750188 0.374251
create 0.749906 0.375094 0.374251
created 0.374953 1.500375 1.122754
credited 0.374953 0.375094 0.748503
critical 0.749906 0.375094 0.374251
crookes 0.374953 0.375094 0.748503
cross 1.499813 1.125281 0.748503
crowded 0.749906 0.375094 0.374251
crucial 0.749906 0.375094 0.374251
crystal 0.374953 0.375094 1.497006
crystalline 0.374953 1.125281 0.748503
cubic 0.374953 0.375094 0.748503
culture 1.124859 0.375094 0.374251
current 0.374953 0.375094 12.724551
curvature 0.374953 0.375094 1.122754
cut 0.374953 0.375094 0.748503
cutting 0.374953 0.375094 0.748503
cyanido 0.374953 0.750188 0.374251
cycle 0.749906 0.375094 0.374251
cyclohexanone 0.374953 0.750188 0.374251
cylinder 0.374953 0.375094 0.748503
cytosine 0.749906 0.375094 0.374251
d 0.374953 4.876219 0.748503
dalton 0.374953 1.125281 0.374251
daltons 0.374953 0.750188 0.374251
damage 0.374953 0.375094 1.122754
darwin 2.249719 0.375094 0.374251
data 0.374953 0.375094 1.497006
dating 0.374953 0.375094 0.748503
dawn 0.749906 0.375094 0.374251
day 1.124859 0.375094 0.374251
dc 0.374953 0.375094 1.122754
deadly 0.374953 0.750188 0.374251
deal 0.374953 0.375094 0.748503
dealing 0.374953 0.375094 1.871257
deals 1.124859 1.125281 4.116766
death 3.374578 0.375094 0.374251
deaths 1.124859 0.375094 0.374251
decay 0.374953 0.375094 0.748503
declining 1.124859 0.375094 0.374251
decrease 0.374953 1.500375 0.374251
decreased 0.374953 0.750188 0.374251
decreases 0.374953 0.375094 1.122754
deer 0.374953 0.750188 0.374251
defect 0.374953 0.375094 1.871257
defects 0.374953 0.375094 1.122754
define 0.749906 0.375094 0.374251
defined 2.999625 0.750188 1.497006
defines 0.749906 0.750188 0.374251
definition 1.124859 0.375094 0.374251
deforestation 0.749906 0.375094 0.374251
degeneracy 0.749906 0.375094 0.374251
deliver 0.749906 0.375094 0.374251
delivery 0.749906 0.375094 0.374251
delocalized 0.374953 0.750188 0.374251
demand 0.749906 0.375094 0.374251
demands 0.374953 0.375094 0.748503
demonstration 0.374953 0.375094 0.748503
denoted 0.374953 0.750188 0.374251
dense 0.374953 0.375094 1.122754
densely 0.374953 0.375094 0.748503
density 2.624672 0.375094 0.748503
deoxyribonucleotides 0.749906 0.375094 0.374251
deoxyribose 0.749906 0.375094 0.374251
depend 0.374953 1.125281 0.374251
dependence 0.374953 0.375094 0.748503
dependencies 0.374953 0.750188 0.374251
dependent 0.374953 0.375094 0.748503
depending 0.374953 2.250563 1.122754
depends 0.374953 1.500375 0.748503
depreciating 0.374953 0.375094 0.748503
der 0.374953 0.750188 0.374251
derivative 0.374953 0.750188 0.374251
derivatives 0.374953 0.750188 0.374251
derived 0.374953 1.500375 0.374251
describe 0.374953 0.375094 0.748503
described 0.374953 0.375094 1.497006
describes 0.374953 0.375094 0.748503
description 0.374953 0.375094 0.748503
descriptor 0.374953 0.375094 0.748503
designated 0.749906 0.375094 0.374251
designed 0.374953 0.375094 0.748503
desired 1.124859 0.375094 0.374251
destroyed 0.374953 0.750188 0.374251
destruction 0.749906 0.375094 0.374251
detail 1.499813 0.375094 0.374251
detailed 0.374953 0.375094 1.122754
detect 0.374953 0.750188 1.871257
detector 0.374953 0.375094 0.748503
determination 0.374953 0.375094 0.748503
determine 0.374953 0.750188 0.374251
determined 0.374953 2.250563 0.748503
determines 0.374953 0.375094 1.122754
develop 1.499813 0.375094 0.748503
developed 0.749906 0.375094 0.748503
developing 0.374953 0.750188 0.374251
development 2.249719 0.375094 0.748503
develops 1.124859 0.375094 0.748503
device 0.374953 0.375094 0.748503
devices 0.374953 0.375094 1.497006
di 0.374953 1.125281 0.374251
diagrams 0.374953 0.375094 0.748503
diamine 0.374953 0.750188 0.374251
diamonds 0.374953 0.750188 0.374251
diet 0.749906 0.375094 0.374251
differ 0.374953 1.500375 0.374251
difference 2.249719 1.875469 3.742515
differences 0.749906 0.375094 0.748503
different 3.374578 3.375844 3.742515
differential 0.749906 0.375094 0.748503
differentiation 0.749906 0.375094 0.374251
difficulty 0.749906 0.375094 0.374251
diffracted 0.374953 0.375094 0.748503
diffraction 0.374953 0.375094 0.748503
digital 0.374953 0.375094 0.748503
dihaloalkanes 0.374953 0.750188 0.374251
dihaloarenes 0.374953 0.750188 0.374251
dihydric 0.374953 1.125281 0.374251
dimensional 0.749906 0.750188 0.374251
dimensions 0.374953 0.750188 0.374251
diopter 0.374953 0.375094 0.748503
diopters 0.374953 0.375094 0.748503
diploid 0.749906 0.375094 0.374251
dipole 0.374953 1.125281 0.374251
direct 0.374953 0.375094 0.748503
direction 0.749906 0.375094 0.374251
directions 0.374953 0.375094 0.748503
directly 0.374953 1.875469 1.871257
dirty 0.749906 0.375094 0.374251
disappear 0.749906 0.375094 0.374251
discharge 0.374953 0.375094 0.748503
disciplines 0.374953 0.375094 0.748503
discovered 0.374953 0.750188 1.497006
discoveries 0.374953 1.125281 0.374251
discovery 0.374953 0.375094 1.497006
discrete 0.374953 0.375094 0.748503
discrimination 0.749906 0.375094 0.374251
discuss 1.874766 1.125281 0.374251
discussed 0.374953 1.125281 0.374251
discussing 0.374953 0.375094 0.748503
disease 2.624672 0.375094 0.374251
diseases 5.624297 0.750188 0.374251
disintegrate 0.749906 0.375094 0.374251
dislodged 0.374953 0.375094 0.748503
dispersal 0.749906 0.375094 0.374251
dispersed 0.374953 0.375094 0.748503
dispersion 0.374953 0.375094 1.122754
displacements 0.374953 0.375094 0.748503
display 0.374953 0.375094 0.748503
dissipation 0.374953 0.375094 0.748503
dissolves 0.749906 0.375094 0.374251
dissolving 0.374953 0.750188 0.374251
distance 0.374953 0.375094 1.122754
distinct 0.374953 0.375094 0.748503
distributed 0.374953 0.375094 1.122754
distributes 0.374953 0.375094 0.748503
distribution 2.624672 0.375094 0.374251
diverging 0.374953 0.375094 1.122754
diverse 1.124859 0.375094 0.374251
diversity 2.624672 0.375094 0.374251
divide 1.124859 0.375094 0.374251
divided 0.374953 1.125281 0.374251
divides 1.499813 0.375094 0.374251
dividing 1.124859 0.375094 0.374251
divisible 0.374953 0.750188 0.374251
division 1.124859 0.375094 0.748503
dna 5.249344 0.750188 0.374251
doctors 0.749906 0.375094 0.374251
doesn 0.749906 0.375094 0.374251
dolphins 0.749906 0.375094 0.374251
domestic 0.374953 0.750188 0.374251
done 0.374953 0.375094 0.748503
doping 0.374953 0.375094 2.619760
double 0.374953 0.750188 0.374251
drift 1.124859 0.375094 0.748503
drills 0.374953 0.750188 0.374251
drug 0.374953 0.750188 0.374251
dth 0.374953 0.375094 0.748503
duality 0.374953 0.375094 1.122754
due 1.124859 3.000750 1.871257
duration 0.374953 0.750188 0.374251
dwelling 1.124859 0.375094 0.374251
dyes 0.374953 0.750188 0.374251
dynamic 0.374953 0.375094 1.122754
dysentery 0.749906 0.375094 0.374251
e 0.749906 0.375094 0.374251
earlier 0.374953 0.750188 0.374251
early 0.374953 1.125281 0.374251
earth 2.624672 0.375094 1.122754
easily 0.374953 0.750188 1.122754
easy 0.749906 0.375094 0.748503
eating 0.749906 0.375094 0.374251
eco 0.749906 0.375094 0.374251
ecological 0.749906 0.375094 0.374251
ecology 1.874766 0.375094 0.374251
economic 0.749906 0.375094 0.374251
economical 0.374953 0.750188 0.374251
ecosystem 3.374578 0.375094 0.374251
efb 0.749906 0.375094 0.374251
effect 0.374953 0.750188 4.865269
effects 0.374953 0.750188 1.122754
effort 0.749906 0.375094 0.374251
eg 0.374953 0.375094 1.122754
egg 0.749906 0.375094 0.374251
eggs 4.874391 0.750188 0.374251
eight 0.374953 0.375094 0.748503
einstein 0.374953 0.375094 1.497006
either 1.124859 3.000750 2.245509
ejected 0.374953 0.375094 1.497006
electric 0.374953 0.375094 10.479042
electrical 0.374953 0.750188 0.374251
electrically 0.374953 0.375094 1.871257
electricity 0.374953 1.500375 7.485030
electrodynamics 0.374953 0.375094 0.748503
electromagnetic 0.374953 0.375094 0.748503
electromagnetism 0.374953 0.750188 4.116766
electromotive 0.374953 0.375094 2.245509
electron 0.374953 1.125281 11.227545
electronic 0.374953 1.875469 1.871257
electronics 0.374953 0.375094 0.748503
electrons 0.374953 1.875469 16.841317
electrostatic 0.374953 0.375094 2.619760
electrostatically 0.374953 0.375094 0.748503
electrostatics 0.374953 0.375094 1.497006
element 0.374953 3.750938 1.122754
elemental 0.374953 0.375094 0.748503
elementary 0.374953 0.750188 0.374251
elements 0.749906 13.878470 2.245509
else 0.749906 0.375094 0.374251
emanating 0.374953 0.375094 0.748503
embalming 0.374953 0.750188 0.374251
embryo 1.124859 0.375094 0.374251
emerging 0.749906 0.375094 0.374251
emf 0.374953 0.375094 1.122754
emission 0.374953 0.375094 0.748503
emit 0.374953 0.375094 1.122754
emitted 0.374953 0.375094 1.871257
empirical 0.374953 0.375094 1.122754
employed 0.749906 0.375094 0.374251
empowered 0.749906 0.375094 0.374251
empty 0.374953 0.750188 0.374251
enable 0.374953 0.750188 1.122754
enabled 0.374953 0.750188 0.748503
enables 0.749906 0.375094 0.374251
enabling 0.374953 0.375094 0.748503
encloses 0.749906 0.375094 0.374251
encoded 0.749906 0.375094 0.374251
end 0.749906 1.500375 1.122754
endangered 1.124859 0.750188 1.122754
endosperm 0.749906 0.375094 0.374251
endothecium 1.124859 0.375094 0.374251
endothelium 0.749906 0.375094 0.374251
ends 0.374953 1.125281 1.122754
energetic 0.374953 0.375094 0.748503
energies 0.374953 0.375094 0.748503
energy 0.374953 0.750188 20.209581
engineering 2.999625 0.375094 0.374251
engineers 0.374953 0.750188 0.374251
engines 0.374953 0.750188 0.374251
england 0.374953 0.750188 0.374251
english 1.124859 0.375094 0.374251
enhancement 0.749906 0.375094 0.374251
enough 0.374953 0.375094 0.748503
ensures 0.749906 0.375094 0.374251
entered 0.374953 0.750188 0.374251
entering 0.749906 0.375094 0.374251
enters 0.374953 0.750188 0.374251
entire 0.374953 0.375094 1.497006
entities 0.374953 0.750188 0.374251
entity 0.374953 0.750188 0.374251
entropy 0.374953 0.375094 0.748503
entry 0.749906 0.375094 0.374251
environment 2.624672 0.750188 1.497006
environmental 1.874766 0.375094 0.374251
enzymes 1.124859 0.375094 0.374251
epidermis 2.249719 0.375094 0.374251
equal 0.374953 0.750188 2.994012
equate 0.374953 0.375094 0.748503
equation 0.374953 3.000750 6.362275
equations 0.374953 0.375094 1.871257
equilibrium 0.374953 0.375094 1.497006
equipment 0.374953 1.125281 0.374251
era 0.374953 0.375094 0.748503
eradiation 0.374953 0.375094 0.748503
ernest 0.374953 1.500375 7.859281
error 0.749906 0.375094 0.374251
escape 0.374953 0.375094 0.748503
especially 1.124859 0.375094 0.374251
essential 0.749906 0.375094 0.374251
essentially 0.374953 0.750188 0.748503
establish 0.374953 0.375094 0.748503
established 0.374953 0.750188 0.374251
establishments 0.749906 0.375094 0.374251
ethandiol 0.374953 1.125281 0.374251
ethane 0.374953 0.750188 0.374251
ether 0.374953 3.375844 0.374251
ethical 0.749906 0.375094 0.374251
ethyl 0.374953 0.750188 0.374251
european 0.749906 0.375094 0.374251
ev 0.374953 0.375094 1.122754
evaluating 0.374953 0.375094 0.748503
even 0.749906 0.375094 0.374251
eventually 1.124859 0.375094 0.374251
every 1.124859 1.125281 1.122754
everyday 0.374953 0.375094 0.748503
everything 0.749906 0.375094 0.748503
everywhere 0.374953 0.375094 1.122754
evolution 1.499813 0.375094 0.374251
evolutionary 1.124859 0.375094 0.374251
evolutions 2.249719 0.375094 0.374251
evolved 0.374953 0.375094 1.122754
exact 0.749906 0.750188 0.374251
exahertz 0.374953 0.375094 0.748503
example 0.749906 4.501125 4.491018
examples 1.874766 1.500375 1.871257
excellence 0.374953 0.375094 0.748503
excellent 0.374953 1.125281 0.374251
except 0.374953 1.125281 0.374251
excess 0.374953 0.375094 1.122754
exclusively 0.374953 0.375094 0.748503
exercise 0.749906 0.375094 0.374251
exert 0.374953 0.375094 0.748503
exerted 0.374953 0.375094 1.122754
exhibit 0.374953 0.375094 0.748503
exhibition 0.749906 0.375094 0.374251
exhibits 0.374953 0.375094 1.122754
exine 0.749906 0.375094 0.374251
exist 1.874766 0.375094 0.374251
existence 0.749906 0.375094 1.122754
existing 1.499813 0.750188 0.374251
exists 0.374953 0.750188 0.374251
exogenous 0.749906 0.375094 0.374251
exothecium 0.749906 0.375094 0.374251
exotic 0.749906 0.375094 0.374251
expecting 0.374953 1.125281 0.374251
expensive 0.374953 0.750188 0.374251
experience 0.374953 0.375094 1.122754
experiences 0.749906 0.375094 0.374251
experiment 0.374953 1.125281 0.374251
experimental 0.374953 0.375094 0.748503
experimentally 0.374953 1.875469 0.748503
experimentation 0.374953 0.375094 0.748503
experiments 0.374953 0.750188 1.122754
explain 0.749906 0.375094 0.374251
explains 0.374953 0.375094 0.748503
explanation 0.374953 0.375094 1.122754
exploitation 0.749906 0.375094 0.374251
exploited 0.749906 0.375094 0.374251
explosion 0.374953 0.375094 0.748503
exponent 0.374953 0.750188 0.374251
exponential 0.749906 0.375094 0.374251
exponents 0.374953 0.750188 0.374251
exposed 0.374953 0.375094 0.748503
expresses 0.374953 2.250563 0.748503
expression 0.374953 1.500375 0.374251
expressions 0.374953 0.750188 0.374251
extend 0.749906 0.375094 0.374251
extends 0.374953 0.375094 0.748503
extensively 0.374953 0.750188 0.374251
external 0.749906 0.375094 0.374251
extinct 0.749906 0.375094 0.374251
extinction 1.124859 0.375094 0.374251
extra 0.374953 0.375094 0.748503
extreme 0.374953 1.125281 0.374251
extremely 0.374953 0.375094 0.748503
extrinsic 0.374953 0.375094 2.619760
eye 0.374953 0.750188 1.122754
eyes 1.499813 0.375094 0.374251
f 0.749906 0.375094 0.374251
fact 0.374953 0.375094 0.748503
factor 0.374953 0.375094 1.122754
factors 0.374953 1.125281 0.748503
facts 0.749906 1.125281 0.374251
fairly 0.374953 0.375094 0.748503
fall 0.749906 0.375094 0.374251
falling 0.749906 0.375094 0.374251
falls 0.374953 0.375094 0.748503
families 1.124859 0.375094 0.374251
family 1.124859 2.625656 0.374251
famous 0.749906 0.750188 0.374251
faraday 0.374953 0.375094 2.619760
fashion 0.374953 0.750188 0.374251
faster 0.749906 0.375094 0.748503
fatal 0.749906 0.375094 0.374251
fauna 0.749906 0.375094 0.374251
favorable 1.124859 0.375094 0.374251
features 1.499813 0.375094 0.374251
federation 0.749906 0.375094 0.374251
feel 0.374953 0.375094 0.748503
female 3.749531 0.750188 0.374251
fertile 0.749906 0.375094 0.374251
fertilization 3.374578 0.375094 0.374251
fertilized 0.749906 1.500375 1.122754
fever 0.749906 0.375094 0.374251
fibers 0.374953 0.750188 0.374251
fibrous 0.749906 0.375094 0.374251
field 0.749906 0.375094 0.374251
fields 0.749906 0.375094 0.374251
fifth 0.374953 0.375094 0.748503
figure 0.374953 0.375094 0.748503
filament 1.124859 0.375094 0.374251
filaments 0.749906 0.375094 0.374251
fill 0.374953 0.375094 0.748503
filled 0.749906 0.375094 0.374251
finally 1.124859 0.375094 0.374251
find 0.749906 1.500375 2.619760
first 1.499813 1.875469 1.871257
fission 1.124859 0.375094 1.497006
fit 0.749906 0.375094 0.374251
fitness 0.749906 0.375094 0.374251
fittest 0.749906 0.375094 0.374251
five 0.749906 0.375094 0.748503
fixed 0.374953 0.750188 0.374251
flavor 0.374953 0.750188 0.374251
flawed 0.749906 0.375094 0.374251
flexibility 0.374953 0.750188 0.374251
flora 0.749906 0.375094 0.374251
floral 0.749906 0.375094 0.374251
flow 0.749906 0.375094 1.497006
flower 6.374203 0.375094 0.374251
flowering 1.874766 0.375094 0.374251
flowers 2.249719 0.375094 0.374251
flowing 0.374953 0.375094 1.497006
flows 0.374953 0.375094 0.748503
fluorine 0.374953 0.750188 0.374251
flux 0.374953 0.375094 1.497006
focal 0.374953 0.375094 2.619760
focus 0.749906 0.375094 0.374251
foil 0.374953 2.250563 0.374251
followed 0.749906 0.375094 0.374251
following 1.124859 1.125281 1.871257
follows 0.749906 0.375094 0.374251
food 0.749906 1.125281 0.374251
force 0.374953 0.750188 7.859281
forces 0.749906 0.750188 2.994012
forest 1.499813 0.375094 0.374251
form 2.249719 1.875469 5.988024
formaldehyde 0.374953 0.750188 0.374251
formalin 0.374953 0.750188 0.374251
formation 2.624672 0.750188 0.374251
formed 1.124859 1.875469 2.245509
forming 0.374953 1.125281 0.748503
forms 0.374953 1.125281 0.374251