-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunique_words.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 3 columns, instead of 5 in line 5.
6835 lines (6835 loc) · 287 KB
/
unique_words.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
STEM,LEMMA,FORMS...
----,---- (JJ),---- (JJ)
-degre,-degree (NNP),-degree (NNP)
a-to-b,a-to-b (JJ),a-to-b (JJ)
aback,aback (NN),aback (NN)
abandon,abandon (n),abandon (IN),abandoned (VBD),abandoning (VBG)
abdomen,abdomen (n),abdomen (NNS),abdomens (RB)
aberr,aberration (n),aberration (NN),aberrations (NNS)
abhorr,abhorrent (NN),abhorrent (NN)
abid,abide (RB),abide (RB)
abil,ability (n),abilities (NNS),ability (NN)
abl,able (JJ),able (JJ)
ablaz,ablaze (NN),ablaze (NN)
aboard,aboard (IN),aboard (IN)
abod,abode (n),abode (NN)
abomin,abomination (n),abomination (NN),abominably (RB)
abort,abortive (JJ),abortive (JJ)
about,about (IN),about (IN)
above,above (n),above (IN)
abras,abrasive (n),abrasive (JJ)
abroad,abroad (RB),abroad (RB)
abrupt,abruptly (RB),abruptly (RB)
abseil,abseil (n),abseil (NN)
absenc,absence (n),absence (NN)
absent,absently (RB),absently (RB),absent (JJ)
absolut,absolutely (RB),absolutely (RB),absolute (JJ)
absorb,absorb (NN),absorb (NN)
abstract,abstractly (RB),abstractly (RB),abstract (NN)
absurd,absurdly (RB),absurdly (RB),absurdity (NN),absurd (NN)
abund,abundant (JJ),abundant (JJ)
abus,abuse (n),abuse (NN),abused (JJ)
abyss,abyss (n),abyss (JJ)
academ,academic (n),academic (JJ),academics (NNS)
academi,academy (n),academy (IN)
academia,academia (n),academia (NN)
acceler,accelerate (v),accelerate (VBP),accelerated (JJ),accelerating (VBG),acceleration (NN)
accent,accent (n),accent (JJ)
accept,accepts (NNS),accepts (NNS),acceptance (NN),accepted (JJ),accepting (VBG),accept (JJ),acceptable (JJ)
access,access (n),access (NN),accessible (JJ),accessing (VBG),accessed (VBD)
accid,accident (n),accidents (NNS),accident (JJ)
accommod,accommodate (v),accommodated (VBD),accommodation (NN)
accompani,accompany (v),accompanying (VBG),accompanied (VBN),accompany (NN),accompanies (NNS)
accomplic,accomplice (n),accomplices (NNS)
accomplish,accomplish (JJ),accomplish (JJ),accomplishes (NNS),accomplishments (NNS),accomplished (VBN)
accord,accord (v),according (VBG),accordingly (RB),accordance (NN),accord (NN)
account,account (n),account (NN),accounts (NNS),accounted (VBD)
accumul,accumulate (v),accumulating (VBG),accumulated (VBN)
accur,accurate (NN),accurate (NN)
accuraci,accuracy (VBP),accuracy (VBP)
accus,accuse (v),accuse (VBP),accusation (NN),accused (VBD)
achiev,achieve (v),achieve (VBP),achieved (VBN),achieves (NNS),achievements (NNS),achievement (NN),achieving (VBG),achievable (JJ)
acid,acid (n),acid (NN),acidly (RB),acids (NNS)
acknowledg,acknowledge (NN),acknowledge (NN),acknowledgement (JJ),acknowledged (VBD),acknowledgements (NNS),acknowledges (NNS)
acolyt,acolyte (n),acolytes (NNS)
acquaint,acquaintance (n),acquaintance (NN)
acquiesc,acquiesce (NN),acquiesce (NN),acquiescence (NN)
acquir,acquire (v),acquired (VBD)
acrid,acrid (RB),acrid (RB)
acrimoni,acrimony (n),acrimony (NN)
across,across (IN),across (IN)
act,act (n),acts (NNS),acting (VBG),act (NN)
action,action (n),actions (NNS),action (NN)
activ,activity (n),activity (NN),activating (VBG),activated (VBN),active (JJ),actively (RB),activate (VB)
actor,actor (n),actor (NN)
actual,actually (RB),actually (RB),actual (JJ)
acuiti,acuity (n),acuity (JJ)
acumen,acumen (VBP),acumen (VBP)
acut,acute (n),acute (JJ)
ad,added (JJ),added (JJ),adding (VBG)
adapt,adapt (JJ),adapt (JJ),adaptable (JJ),adaptation (NN),adapting (VBG),adaptive (JJ),adapted (VBN)
add,add (v),adds (VBZ),add (NN)
addit,additional (JJ),additional (JJ)
address,address (n),address (NN)
adept,adept (n),adept (JJ)
adher,adherent (n),adherents (NNS)
adhes,adhesive (n),adhesive (JJ)
adjust,adjust (v),adjusted (VBN),adjustable (JJ),adjust (VBP),adjustment (NN),adjustments (NNS)
administr,administrator (n),administrator (NN),administrative (JJ)
admir,admire (v),admired (VBD),admirers (NNS)
admiss,admission (n),admission (NN)
admit,admit (v),admitted (VBD),admitting (VBG),admit (NN)
adopt,adopt (v),adopting (VBG),adopted (VBN)
adorn,adornment (n),adornment (NN)
adrenalin,adrenalined (VBD),adrenalined (VBD),adrenaline (VBP)
adrian,adrian (n),adrian (JJ)
adrift,adrift (NN),adrift (NN)
adult,adult (n),adult (NN),adults (NNS)
adulthood,adulthood (n),adulthood (NN)
advanc,advance (n),advances (NNS),advancement (NN),advanced (JJ),advancing (VBG),advance (NN)
advantag,advantage (n),advantages (NNS),advantage (NN),advantageous (JJ)
adventur,adventurer (n),adventurers (NNS)
advers,adversity (n),adversity (NN)
adversari,adversary (VBP),adversary (VBP),adversaries (NNS),adversarial (JJ)
advic,advice (n),advice (NN)
advis,advise (NN),advise (NN)
advisor,advisor (n),advisors (NNS),advisor (JJ)
advoc,advocate (n),advocate (IN)
aeon,aeon (n),aeons (NNS)
aeons-long,aeons-long (JJ),aeons-long (JJ)
aerodynam,aerodynamic (JJ),aerodynamic (JJ)
aesthet,aesthetically (RB),aesthetically (RB),aesthetic (JJ),aesthetics (NNS)
afar,afar (NN),afar (NN)
affair,affair (n),affairs (NNS),affair (VBP)
affect,affect (n),affect (JJ),affected (VBD)
affirm,affirmative (n),affirmative (JJ)
afford,afford (JJ),afford (JJ)
afield,afield (NN),afield (NN)
afraid,afraid (JJ),afraid (JJ)
after,after (IN),after (IN)
aftereffect,aftereffects (VBZ),aftereffects (VBZ)
aftermath,aftermath (n),aftermath (RB)
aftertast,aftertaste (n),aftertaste (NN)
afterthought,afterthought (n),afterthought (RB)
afterward,afterwards (NNS),afterwards (NNS)
again,again (RB),again (RB)
against,against (IN),against (IN)
age,age (v),aged (VBN),ages (NNS),age (NN),ageing (VBG)
age-old,age-old (JJ),age-old (JJ)
agent,agent (n),agent (JJ),agents (NNS)
aggress,aggression (n),aggression (NN),aggressive (JJ),aggressively (RB)
aghast,aghast (JJ),aghast (JJ)
agil,agile (IN),agile (IN)
agit,agitation (n),agitation (NN),agitated (VBD)
ago,ago (RB),ago (RB)
agog,agog (IN),agog (IN)
agon,agonized (JJ),agonized (JJ),agonizing (VBG),agonize (NN)
agorec,agorecent (JJ),agorecent (JJ)
agre,agree (JJ),agree (JJ),agreed (VBD),agrees (NNS)
agreement,agreement (n),agreement (NN)
agricultur,agricultural (JJ),agricultural (JJ),agriculture (JJ)
ahead,ahead (RB),ahead (RB)
aid,aid (n),aid (NN),aids (NNS),aided (VBD),aides (NNS)
ail,ail (v),ailing (VBG)
ailen,ailen (JJ),ailen (JJ)
aim,aim (v),aiming (VBG),aims (NNS),aimed (VBN),aim (VBP)
aimless,aimless (IN),aimless (IN)
ain,ain (VBP),ain (VBP)
air,air (n),air (NN)
air-condit,air-conditioning (JJ),air-conditioning (JJ)
air-curr,air-current (JJ),air-current (JJ)
airborn,airborne (JJ),airborne (JJ)
airflow,airflow (n),airflow (JJ)
airless,airless (JJ),airless (JJ)
airlock,airlock (n),airlock (NN),airlocks (NNS)
airship,airship (n),airship (JJ)
airtight,airtight (JJ),airtight (JJ)
airway,airway (n),airway (RB),airways (NNS)
ala,ala (n),alas (NN)
alarm,alarmed (JJ),alarmed (JJ),alarms (NNS),alarm (NN),alarmingly (RB),alarming (VBG)
albeit,albeit (NN),albeit (NN)
alchem,alchemical (JJ),alchemical (JJ)
alchemi,alchemy (n),alchemy (NN)
alchemist,alchemist (n),alchemists (NNS),alchemist (JJ)
alert,alert (n),alerts (NNS),alert (RB),alerting (VBG),alerted (VBD)
alexandria,alexandria (n),alexandria (NNS)
alga,algae (n),algae (NN)
algorithm,algorithm (n),algorithms (JJ)
alien,alien (n),aliens (NNS),alien (JJ),alienate (NN)
alight,alight (v),alighted (VBN)
aliv,alive (JJ),alive (JJ)
all,all (DT),all (DT)
all-clear,all-clear (JJ),all-clear (JJ)
all-consum,all-consuming (JJ),all-consuming (JJ)
all-direct,all-directions (NNS),all-directions (NNS)
all-eggs-in-one-basket,all-eggs-in-one-basket (NN),all-eggs-in-one-basket (NN)
all-encompass,all-encompassing (JJ),all-encompassing (JJ)
all-frequ,all-frequencies (NNS),all-frequencies (NNS)
all-import,all-important (JJ),all-important (JJ)
all-know,all-knowing (JJ),all-knowing (JJ)
all-out,all-out (JJ),all-out (JJ)
all-se,all-seeing (JJ),all-seeing (JJ)
alleg,allege (v),alleged (VBN)
allegi,allegiance (n),allegiance (NN)
alli,ally (n),ally (RB),allied (VBD),allies (NNS)
allot,allot (v),allotted (VBD),allotment (NN)
allow,allow (v),allows (VBZ),allowed (VBN),allow (VB),allowing (VBG)
allus,allusion (n),allusions (NNS)
almighti,almighty (n),almighty (NN)
almost,almost (RB),almost (RB)
almost-hidden,almost-hidden (JJ),almost-hidden (JJ)
almost-lost,almost-lost (JJ),almost-lost (JJ)
aloft,aloft (RB),aloft (RB)
alon,alone (RB),alone (RB)
along,along (IN),along (IN)
alongsid,alongside (RB),alongside (RB)
aloof,aloof (VBP),aloof (VBP)
aloud,aloud (JJ),aloud (JJ)
alpash,alpash (JJ),alpash (JJ)
alreadi,already (RB),already (RB)
also,also (RB),also (RB)
alter,altered (JJ),altered (JJ),altering (VBG),alter (NN),alters (VBZ)
altern,alternate (n),alternate (JJ),alternatively (RB),alternative (JJ)
although,although (IN),although (IN)
altimet,altimeter (n),altimeter (RB)
altitud,altitude (n),altitude (NN),altitudes (IN)
altogeth,altogether (n),altogether (RB)
altruism,altruism (n),altruism (NN)
alway,always (RB),always (RB)
amateur,amateur (n),amateur (JJ),amateurs (VBP)
amateurish,amateurish (JJ),amateurish (JJ)
amaz,amazing (JJ),amazing (JJ),amazement (NN)
amber,amber (n),amber (RB)
ambit,ambition (n),ambitions (NNS),ambition (NN)
ambiti,ambitious (JJ),ambitious (JJ)
ambival,ambivalent (NN),ambivalent (NN)
ambush,ambush (n),ambush (JJ),ambushed (VBD),ambusher (RB)
amen,amenable (JJ),amenable (JJ)
amend,amend (v),amended (VBD),amendment (NN)
amid,amid (IN),amid (IN)
amidst,amidst (JJ),amidst (JJ)
ammunit,ammunition (n),ammunition (NN)
among,among (IN),among (IN)
amongst,amongst (IN),amongst (IN)
amount,amount (n),amount (NN)
ampl,ample (JJ),ample (JJ)
amplifi,amplify (v),amplified (VBD),amplify (VBP)
amus,amusement (n),amusement (NN),amuse (NN)
analog,analogous (JJ),analogous (JJ)
analys,analyse (v),analyses (VBZ),analysing (VBG),analyse (RB),analysed (JJ)
analysi,analysis (n),analysis (NN)
analyst,analyst (n),analyst (NN)
analyt,analytical (JJ),analytical (JJ)
anarch,anarchic (JJ),anarchic (JJ)
anarchi,anarchy (n),anarchy (JJ)
anatomi,anatomy (n),anatomy (NN)
ancestor,ancestor (n),ancestors (NNS),ancestor (NN)
ancestr,ancestral (JJ),ancestral (JJ)
ancestress,ancestress (n),ancestress (RB)
ancestri,ancestry (n),ancestry (NN)
anchor,anchor (n),anchor (NN),anchoring (VBG),anchored (VBD)
ancient,ancient (n),ancient (JJ),ancients (NNS)
and,and (CC),and (CC)
andri,andry (VBP),andry (VBP)
anew,anew (RB),anew (RB)
angel,angel (n),angel (JJ)
anger,anger (v),angered (VBD),anger (NN)
angl,angle (n),angles (NNS),angled (VBN),angle (NN)
angri,angry (JJ),angry (JJ)
angrili,angrily (RB),angrily (RB)
anguish,anguish (v),anguished (VBD)
angular,angular (JJ),angular (JJ)
anim,animal (n),animals (NNS),animatedly (RB),animate (VBP),animal (RB),animation (NN)
animicul,animicules (NNS),animicules (NNS)
ankl,ankle (n),ankle (NN)
annal,annals (n),annals (NNS)
anni,annie (JJ),annie (JJ)
annihil,annihilate (v),annihilate (VBP)
announc,announcement (n),announcements (NNS),announcing (VBG),announced (VBD),announcement (NN)
annoy,annoyance (n),annoyance (NN),annoyed (VBN)
annunci,annunciation (n),annunciation (NN)
anoth,another (DT),another (DT)
answer,answer (v),answer (VB),answers (NNS),answering (VBG),answered (VBN)
ant,ant (n),ant (JJ),ants (NNS)
ant-siz,ant-sized (JJ),ant-sized (JJ)
ant-tend,ant-tended (JJ),ant-tended (JJ)
ant-war,ant-war (JJ),ant-war (JJ)
anteced,antecedent (n),antecedents (NNS)
antenna,antenna (n),antenna (JJ),antennae (NN)
antennae-spik,antennae-spiked (JJ),antennae-spiked (JJ)
anti-asteroid,anti-asteroid (JJ),anti-asteroid (JJ)
anti-piraci,anti-piracy (JJ),anti-piracy (JJ)
anticip,anticipate (v),anticipated (VBN),anticipate (NN),anticipation (NN),anticipating (VBG)
antiqu,antique (n),antique (NN),antiquity (NN),antiquated (VBD)
antiquarian,antiquarianism (NN),antiquarianism (NN)
antithesi,antithesis (n),antithesis (NN)
anus,anus (n),anus (NN)
anxieti,anxiety (n),anxiety (NN)
anxious,anxious (JJ),anxious (JJ),anxiously (RB)
any,any (DT),any (DT)
anybodi,anybody (VBP),anybody (VBP)
anyon,anyone (NN),anyone (NN)
anyth,anything (NN),anything (NN)
anyway,anyway (RB),anyway (RB)
anywher,anywhere (RB),anywhere (RB)
apart,apart (RB),apart (RB)
ape,ape (n),ape (NN),apes (VBZ)
ape-th,ape-things (JJ),ape-things (JJ)
apex,apex (n),apex (NN)
aphid,aphid (VBP),aphid (VBP),aphids (NNS)
apolog,apologizing (NN),apologizing (NN),apologized (VBD),apologize (NN)
apost,apostate (VBP),apostate (VBP)
appal,appal (v),appalling (VBG),appalled (JJ),appallingly (RB)
appar,apparent (NN),apparent (NN),apparently (RB)
apparit,apparition (n),apparition (NN)
appeal,appeal (n),appeal (NN),appealing (VBG)
appear,appear (v),appearing (VBG),appears (VBZ),appearance (NN),appear (VBP),appeared (VBD)
appeas,appeasement (n),appeasement (JJ),appeasingly (RB)
appendag,appendages (VBZ),appendages (VBZ)
appendix,appendix (n),appendix (RB)
appli,apply (v),applied (VBN)
applic,application (n),application (NN)
appoint,appoint (v),appointed (VBN),appointment (NN)
apprais,appraisal (n),appraisal (JJ),appraised (JJ)
appreci,appreciation (VBP),appreciation (VBP),appreciate (NN),appreciative (JJ)
apprentic,apprentice (n),apprentices (NNS)
approach,approach (n),approaches (NNS),approached (JJ),approaching (VBG),approach (NN)
approb,approbation (n),approbation (NN)
appropri,appropriately (RB),appropriately (RB),appropriate (JJ),appropriated (JJ)
approv,approve (v),approved (VBD),approval (NN)
approxim,approximate (v),approximates (VBZ),approximate (JJ),approximation (NN)
apt,apt (JJ),apt (JJ)
aptitud,aptitude (n),aptitude (NN)
aquat,aquatic (n),aquatic (JJ)
arachnid,arachnid (n),arachnid (JJ)
arachnomorph,arachnomorphic (JJ),arachnomorphic (JJ)
arachnophob,arachnophobe (NN),arachnophobe (NN)
arbitrari,arbitrary (JJ),arbitrary (JJ)
arbor,arboreal (JJ),arboreal (JJ)
arc,arc (v),arcing (VBG),arcs (NN),arc (NN)
arch,arch (v),arched (VBD),arch (NN)
architect,architect (n),architects (NNS),architect (VBP)
architectur,architecture (n),architecture (NN),architectural (JJ)
archiv,archive (v),archived (VBD),archives (NNS),archive (JJ)
are,be (v),are (VBP)
area,area (n),area (NN),areas (NNS)
aren,aren (NN),aren (NN)
argu,argue (JJ),argue (JJ),arguing (VBG),argued (VBD)
argument,argument (n),arguments (NNS),argument (NN)
aris,arise (v),arises (VBZ),arising (VBG),arise (VBP)
arisen,arisen (IN),arisen (IN)
arithmet,arithmetic (n),arithmetic (JJ),arithmetical (JJ)
ark,ark (n),ark (JJ),arks (NNS)
arm,arm (n),arm (JJ),arms (NNS),armed (VBD)
armi,army (n),army (JJ),armies (NNS)
armour,armour (v),armoured (VBD),armour (JJ)
armour-smith,armour-smithing (JJ),armour-smithing (JJ)
armouri,armoury (n),armoury (NN)
armpit,armpit (n),armpits (NNS)
aros,arise (v),arose (VBP)
around,around (IN),around (IN)
arous,arouses (NNS),arouses (NNS)
arrang,arrangement (n),arrangements (NNS),arranging (VBG),arrangement (NN),arranged (VBN)
array,array (n),array (NN),arrays (VBZ)
arrest,arrest (v),arrested (VBD)
arriv,arrives (NNS),arrives (NNS),arrival (JJ),arrived (VBD),arrive (JJ),arriving (VBG)
arrow,arrow (n),arrow (NN),arrowing (VBG)
ars,arse (VBP),arse (VBP)
arsenal,arsenal (n),arsenal (JJ)
art,art (n),art (NN),artfully (RB)
artefact,artefact (n),artefacts (NNS)
arthropod,arthropod (n),arthropods (NNS),arthropod (IN)
articul,articulated (JJ),articulated (JJ)
artific,artificer (n),artificer (NN),artifice (NN)
artifici,artificial (JJ),artificial (JJ)
artilleri,artillery (VBZ),artillery (VBZ)
artisan,artisan (n),artisan (RB),artisans (NNS)
artist,artist (n),artists (NNS),artistic (JJ)
ascend,ascend (v),ascend (VBP),ascending (VBG),ascends (VBZ)
ascens,ascension (n),ascension (NN)
ascent,ascent (n),ascent (JJ)
ash,ash (n),ashes (NNS)
asham,ashamed (VBD),ashamed (VBD)
asid,aside (n),aside (RB)
ask,asks (NNS),asks (NNS),asked (VBD),asking (VBG),ask (NN)
asleep,asleep (JJ),asleep (JJ)
aspect,aspect (n),aspects (NNS)
aspir,aspire (NN),aspire (NN)
assail,assail (v),assailing (VBG),assailed (VBD)
assassin,assassin (n),assassins (NNS),assassin (VBP)
assault,assault (v),assaulting (VBG),assault (NN)
assembl,assembled (JJ),assembled (JJ),assemble (JJ)
assert,assert (JJ),assert (JJ),asserting (VBG),asserted (JJ)
assess,ass (n),assess (JJ),assesses (NNS),assessment (JJ)
asset,asset (n),asset (NN),assets (NNS)
assign,assign (v),assigned (VBD)
assimil,assimilate (NN),assimilate (NN)
assist,assistant (n),assistant (JJ),assistance (NN),assists (VBZ),assisted (VBN),assist (JJ),assistants (NNS)
associ,association (n),association (NN),associated (VBN),associate (JJ)
assort,assortment (n),assortment (NN)
assum,assumed (JJ),assumed (JJ),assume (IN),assuming (VBG)
assumpt,assumption (n),assumptions (NNS),assumption (NN)
assur,assurance (n),assurance (NN),assurances (NNS),assured (VBD),assure (NN),assuring (VBG)
asteroid,asteroid (n),asteroid (JJ)
astrolog,astrology (n),astrology (NN)
astronaut,astronaut (n),astronauts (NNS)
astronaut-soldi,astronaut-soldiers (NNS),astronaut-soldiers (NNS)
astronom,astronomer (n),astronomers (NNS),astronomer (VBP),astronomical (JJ)
astronomi,astronomy (n),astronomy (NN)
atavist,atavistic (JJ),atavistic (JJ)
ate,ate (n),ate (JJ)
atheist,atheistic (JJ),atheistic (JJ)
atmospher,atmosphere (n),atmosphere (RB)
atop,atop (NN),atop (NN)
atrophi,atrophy (v),atrophying (VBG)
attach,attachment (n),attachment (JJ),attach (NN),attached (VBN)
attack,attacker (n),attacker (NN),attacked (VBD),attackers (NNS),attack (NN),attacks (NNS),attacking (VBG)
attain,attain (v),attained (VBN)
attempt,attempted (JJ),attempted (JJ),attempt (NN),attempts (NNS),attempting (VBG)
attend,attendance (n),attendance (NN),attendant (JJ),attending (VBG),attended (VBD),attends (NNS),attendants (NNS)
attent,attention (n),attention (NN),attentions (NNS),attentively (RB)
attract,attractive (JJ),attractive (JJ),attracts (VBZ),attracting (VBG),attraction (JJ),attract (JJ)
attribut,attribute (n),attributes (NNS)
audibl,audible (n),audible (JJ),audibility (NN)
audienc,audience (n),audience (NN)
auditori,auditory (NN),auditory (NN)
augment,augmented (JJ),augmented (JJ)
author,author (n),authors (NNS),authority (NN),author (NN)
auto-repair,auto-repair (JJ),auto-repair (JJ)
autom,automate (v),automated (VBN)
automat,automatically (RB),automatically (RB),automatic (NN),automatics (NNS)
autonom,autonomous (JJ),autonomous (JJ)
autonomi,autonomy (n),autonomy (NN)
auxiliari,auxiliary (n),auxiliaries (NNS),auxiliary (JJ)
avail,available (JJ),available (JJ)
avatar,avatar (n),avatar (NN)
averag,average (n),average (JJ)
avert,averted (JJ),averted (JJ)
avoid,avoid (NN),avoid (NN),avoiding (VBG),avoided (JJ)
avrana,avrana (NN),avrana (NN)
aw,awful (JJ),awful (JJ)
await,await (v),await (VBP),awaiting (VBG)
awak,awake (v),awake (VB)
awaken,awaken (v),awakening (VBG),awaken (VBN)
awakene,awakenees (NNS),awakenees (NNS)
awar,awareness (n),awareness (NN),aware (JJ)
award,award (n),awards (NNS)
away,away (RB),away (RB)
awe,awe (n),awe (NN)
awe-inspir,awe-inspiring (JJ),awe-inspiring (JJ)
awesom,awesome (JJ),awesome (JJ)
awestruck,awestruck (NN),awestruck (NN)
awkward,awkwardness (n),awkwardness (NN),awkward (RB),awkwardly (RB)
awok,awoke (JJ),awoke (JJ)
awoken,awoken (JJ),awoken (JJ)
axi,axis (n),axis (JJ)
axl,axle (n),axle (RB)
babbl,babble (v),babbling (VBG),babble (JJ)
babi,baby (n),baby (NN)
back,back (v),backing (VBG),backed (VBD),back (RB),backs (VBZ)
back-fac,back-facing (JJ),back-facing (JJ)
backdrop,backdrop (n),backdrop (JJ)
background,background (n),background (IN)
backsid,backside (n),backside (NN)
backtrack,backtracks (NNS),backtracks (NNS)
backward,backwards (NNS),backwards (NNS)
backwood,backwoods (n),backwoods (NNS)
bacteria,bacteria (n),bacteria (NNS)
bad,badly (RB),badly (RB),bad (JJ)
badg,badge (v),badge (VBP)
baffl,baffle (v),baffling (VBG),baffled (VBN)
bafflement,bafflement (n),bafflement (JJ)
bag,bag (v),bagged (VBN),bag (NN)
baggag,baggage (n),baggage (NN)
bait,bait (n),bait (NN)
balanc,balance (v),balanced (VBD),balance (NN)
bald,bald (IN),bald (IN)
bale,bale (n),bales (NNS),baleful (JJ),balefully (RB)
balk,balk (n),balks (NNS)
ball,ball (n),ball (JJ),balls (NNS)
ballet,ballet (n),ballet (NN)
balloon,balloon (n),balloons (NNS),balloon (NN)
balloonist,balloonist (n),balloonist (JJ),balloonists (NNS)
ban,ban (v),banned (VBN)
band,band (n),bands (NNS),band (NN)
bandag,bandage (v),bandage (VBP)
bandanna,bandanna (n),bandanna (NN)
bang,banging (n),banging (NN),bang (VBD),bangs (VBP)
banish,banish (v),banished (VBD)
bank,bank (n),banks (NNS),bank (NN)
banter,banter (n),banter (NN)
bar,bar (n),bars (NNS),barred (VBD),barring (VBG)
barb,barb (v),barbed (VBD)
barbar,barbarism (n),barbarism (NN),barbaric (JJ),barbarous (JJ)
barclay,barclay (NN),barclay (NN)
bare,bare (NN),bare (NN),barely (RB)
bargain,bargain (v),bargain (VBP),bargaining (NN),bargained (VBD)
bark,bark (v),barked (VBD),bark (JJ)
barrag,barrage (n),barrage (NN)
barrel,barrel (v),barrelled (VBN),barrel (IN)
barren,barren (VBP),barren (VBP)
barrier,barrier (n),barrier (NN),barriers (NNS)
barter,barter (n),barter (NN),bartered (VBN)
base,base (n),bases (NNS),based (VBN),base (VBP)
basi,basis (n),basis (NN)
basic,basic (n),basic (NNS),basically (RB)
basin,basin (n),basins (NNS)
bastard,bastard (n),bastards (NNS),bastard (NN)
bat,bat (n),bats (NNS)
batch,batch (n),batch (NN)
bath,bathed (JJ),bathed (JJ)
baton,baton (VBZ),baton (VBZ)
batter,battering (n),battering (NN),battered (VBD)
batteri,battery (n),battery (RB)
battl,battle (n),battle (NN),battles (NNS),battled (VBD)
battle-cri,battle-cry (NN),battle-cry (NN)
battlefield,battlefield (n),battlefields (NNS)
bay,bay (v),bays (VBZ),bay (NN)
bbbbbut,bbbbbut (NN),bbbbbut (NN)
be,being (n),beings (NNS)
beachhead,beachhead (n),beachheads (NNS),beachhead (NN)
beacon,beacon (n),beacon (JJ),beacons (NNS)
bead,bead (v),bead (VBP)
beam,beam (n),beams (NNS)
bear,bear (n),bears (NNS),bear (JJ),bearing (NN)
bearabl,bearable (JJ),bearable (JJ)
beard,beard (v),beard (VBP)
beast,beast (n),beast (NN),beasts (NNS)
beasti,beasties (JJ),beasties (JJ)
beat,beat (v),beating (VBG),beat (VBD)
beaten,beat (v),beaten (VBP)
beauti,beautiful (JJ),beautiful (JJ),beauty (NN),beautifully (RB)
becam,become (v),became (VBD)
because,because (IN),because (IN)
beck,beck (n),beck (NN)
becom,become (v),becomes (VBZ),becoming (VBG),become (VBN)
bed,bed (v),bed (VBD)
bedsid,bedside (VBP),bedside (VBP)
been,be (v),been (VBN)
beetl,beetle (n),beetles (NNS),beetle (JJ)
befit,befitting (NN),befitting (NN)
before,before (IN),before (IN)
beg,beg (v),begging (VBG)
began,begin (v),began (VBD)
beget,beget (NN),beget (NN)
begin,begin (v),begins (VBZ),beginning (VBG),begin (NN),beginnings (NNS)
begun,begin (v),begun (VBN)
behalf,behalf (n),behalf (NN)
behav,behaving (NN),behaving (NN),behaved (VBN)
behaviour,behaviour (n),behaviour (JJ),behaviours (NNS),behavioural (JJ)
behind,behind (n),behind (IN)
being,be (v),being (VBG)
belat,belatedly (RB),belatedly (RB)
beli,belie (v),belied (VBD)
belief,belief (n),belief (NN),beliefs (NN)
believ,believer (n),believers (NNS),believer (RB),believing (VBG),believed (VBN),believe (VBP),believes (VBZ)
bell,bell (n),bell (NN)
bella,bella (NN),bella (NN)
belli,belly (n),bellies (NNS),belly (RB)
bellow,bellow (v),bellowed (VBD),bellowing (VBG)
belong,belong (v),belonging (VBG),belonged (VBD),belongs (VBZ),belong (NN)
belov,beloved (VBD),beloved (VBD)
below,below (IN),below (IN)
belt,belted (JJ),belted (JJ),belt (NN),belts (NNS)
bend,bend (v),bending (VBG)
beneath,beneath (NN),beneath (NN)
benefici,beneficial (JJ),beneficial (JJ)
benefit,benefit (n),benefit (NN)
benign,benign (JJ),benign (JJ)
bent,bent (n),bent (JJ)
bequeath,bequeath (RB),bequeath (RB)
berserk,berserk (n),berserk (NN)
beseech,beseechingly (RB),beseechingly (RB)
beset,beset (v),beset (VBN)
besid,beside (IN),beside (IN),besides (NNS)
best,best (n),best (RBS)
best-dress,best-dressed (JJ),best-dressed (JJ)
bestial,bestial (JJ),bestial (JJ)
bestrod,bestrode (JJ),bestrode (JJ)
bet,bet (n),bet (IN)
betray,betray (v),betray (VBP),betrayed (JJ)
better,better (n),better (RBR),betters (NNS)
between,between (IN),between (IN)
bewild,bewilder (v),bewildered (VBN),bewildering (VBG)
bewilder,bewilderment (n),bewilderment (JJ)
beyond,beyond (IN),beyond (IN)
bianca,bianca (JJ),bianca (JJ),biancas (JJ)
bicker,bickering (n),bickering (NN)
bid,bidding (n),bidding (NN),bid (NN)
big,big (JJ),big (JJ)
bigger,bigger (JJR),bigger (JJR)
bill,bill (n),bill (NN)
billion,billion (n),billion (CD)
bind,bind (v),bind (VBP)
binocular,binocular (JJ),binocular (JJ)
biochem,biochemical (JJ),biochemical (JJ)
biochemistri,biochemistry (n),biochemistry (NN)
bioelectr,bioelectric (JJ),bioelectric (JJ)
bioengin,bioengineering (n),bioengineering (NN)
biograph,biographer (n),biographer (RB)
biohazard,biohazard (n),biohazard (NN)
biolog,biological (JJ),biological (JJ),biology (NN)
bioluminesc,bioluminescent (NN),bioluminescent (NN)
biomechan,biomechanical (JJ),biomechanical (JJ)
biopsi,biopsy (n),biopsy (JJ)
biospher,biosphere (n),biosphere (RB)
biotechnolog,biotechnology (VBP),biotechnology (VBP),biotechnological (JJ)
bird,bird (n),birds (NNS),bird (NN)
birth,birth (n),birth (NN)
birthday,birthday (n),birthday (JJ)
birthplac,birthplace (n),birthplace (NN)
birthright,birthright (n),birthright (NN)
bit,bit (n),bits (NNS),bit (RB)
bitch,bitch (v),bitch (VBP)
bite,biting (NN),biting (NN),bite (JJ),bites (VBZ)
bitter,bitterly (RB),bitterly (RB),bitter (RBR)
bizarr,bizarre (JJ),bizarre (JJ),bizarrely (RB)
black,black (n),black (JJ)
blacken,blacken (v),blackened (VBD),blackening (VBG)
blade,blades (VBP),blades (VBP),blade (NN)
blade-lin,blade-lined (JJ),blade-lined (JJ)
blag,blag (NN),blag (NN)
blame,blame (n),blame (NN),blames (NNS)
blank,blank (n),blank (NN),blanks (NNS),blankly (RB)
blanket,blanket (v),blanketed (VBN)
blast,blast (n),blast (JJ)
bleak,bleak (VBP),bleak (VBP),bleakly (JJ)
bled,bleed (v),bled (VBD)
bleed,bleeds (NNS),bleeds (NNS)
blend,blend (v),blending (VBG)
bless,blessing (n),blessing (NN),blessed (JJ)
blew,blow (v),blew (VBD)
blind,blind (v),blind (VBP),blindingly (RB),blindly (RB)
blindfold,blindfold (n),blindfold (RB)
blink,blink (v),blinked (VBD),blink (NN)
blister-trunk,blister-trunked (JJ),blister-trunked (JJ)
blith,blithely (RB),blithely (RB)
bloat,bloat (v),bloated (VBD),bloating (VBG)
bloated-look,bloated-looking (JJ),bloated-looking (JJ)
block,blocked (JJ),blocked (JJ),blocks (NNS),block (NN)
blood,blood (n),blood (NN)
blood-typ,blood-type (JJ),blood-type (JJ)
bloodi,bloody (v),bloodied (VBD),bloody (NN)
bloodstream,bloodstream (n),bloodstream (NN)
blot,blot (v),blotting (VBG),blot (NN)
blow,blow (n),blow (NN),blowing (VBG)
blown,blow (v),blown (VBN)
bludgeon,bludgeon (v),bludgeoned (VBD)
blue,blue (n),blue (JJ)
blueprint,blueprint (n),blueprints (NNS)
bluf,bluff (v),bluffing (VBG)
bluff,bluff (n),bluff (NN)
bluish,bluish (JJ),bluish (JJ)
blunder,blunder (v),blunder (VBP)
blunt,blunt (NN),blunt (NN)
blur,blur (v),blurred (VBD)
blurrili,blurrily (RB),blurrily (RB)
blurt,blurt (v),blurted (VBD)
bluster,bluster (n),bluster (NN)
board,board (n),boards (NNS),board (NN)
boarder,boarder (n),boarders (NNS)
boardroom,boardroom (n),boardrooms (NNS)
boast,boast (n),boast (NN),boasts (NNS)
boat,boat (v),boat (VBP)
bodi,body (n),bodies (NNS),body (VBP)
bodiless,bodiless (NN),bodiless (NN)
bodili,bodily (RB),bodily (RB)
body-length,body-lengths (JJ),body-lengths (JJ)
boggl,boggle (v),boggled (VBD)
boil,boil (n),boil (NN),boiled (VBD)
bold,bold (n),bold (JJ),boldly (RB)
boldest,boldest (JJS),boldest (JJS)
bollock,bollock (n),bollocks (NNS)
bolster,bolster (n),bolster (NN)
bolt,bolt (v),bolted (VBN)
bomb,bomb (n),bomb (NN)
bombard,bombard (v),bombarding (VBG),bombardment (NN),bombards (NNS),bombarded (VBD)
bond,bond (n),bonds (NNS),bond (NN)
bone,bone (v),bone (VBP),bones (NNS)
bone-weari,bone-weary (JJ),bone-weary (JJ)
boneless,bonelessly (RB),bonelessly (RB)
boni,bony (NN),bony (NN)
book,book (n),book (NN),books (NNS)
book-lung,book-lungs (NNS),book-lungs (NNS)
boom,boom (v),boomed (VBD),booming (VBG),booms (NNS),boom (NN)
boost,boost (n),boost (NN),boosted (VBD)
boot,boot (n),boots (NNS),boot (NN)
bore,bore (v),bored (VBD),boring (VBG),bore (VBD)
born,borne (JJ),borne (JJ),born (VBP)
borrow,borrowing (n),borrowing (NN)
botch,botch (v),botched (VBD)
both,both (DT),both (DT)
bother,bother (v),bother (VBP),bothered (VBN)
bottom,bottom (n),bottom (NN)
bough,bough (n),boughs (NNS)
bought,buy (v),bought (VBD)
bounc,bounce (v),bounced (VBN),bounces (NNS),bouncing (VBG),bounce (NN)
bounce-back,bounce-back (JJ),bounce-back (JJ)
bound,bound (n),bounds (NNS),bounding (VBG),bound (NN)
boundari,boundary (n),boundary (JJ),boundaries (NNS)
bounti,bounty (n),bounty (NN)
bow,bow (v),bows (VBZ),bowing (VBG)
bowel,bowel (n),bowels (NNS)
bowl,bowl (n),bowls (IN)
box,box (n),box (NN)
boy,boy (n),boy (JJ)
brace,brace (v),bracing (VBG),brace (NN)
braid,braid (v),braided (VBD)
brain,brain (v),brains (VBZ),brain (NN)
brainwash,brainwash (v),brainwashed (VBN)
brake,brake (v),braking (VBG),brake (VBP)
branch,branch (n),branches (NNS),branch (JJ)
brandish,brandish (v),brandished (VBD)
brash,brashness (n),brashness (NN)
brawl,brawl (n),brawl (NN)
brawler,brawler (n),brawlers (NNS)
breach,breach (v),breached (VBN),breach (NN)
breadth,breadth (n),breadth (NN)
break,break (v),breaking (VBG),breaks (NNS),break (NN)
break-down,break-down (JJ),break-down (JJ)
breakout,breakout (n),breakout (NN)
breakthrough,breakthrough (n),breakthrough (IN),breakthroughs (NNS)
breath,breathed (JJ),breathed (JJ),breathes (NNS),breath (IN),breathing (VBG),breathe (NNS)
breathabl,breathable (JJ),breathable (JJ)
breathless,breathlessly (RB),breathlessly (RB)
bred,breed (v),bred (VBD)
breed,breeding (n),breeding (NN),breed (NN)
breez,breeze (n),breeze (JJ)
brenjit,brenjit (NN),brenjit (NN)
brethren,brother (n),brethren (NNS)
brew,brew (v),brewing (VBG),brew (IN)
bribe,bribe (v),bribing (VBG)
bride,bride (n),bride (IN)
bridg,bridge (v),bridged (VBN),bridges (NNS),bridge (VBP)
bridge-build,bridge-building (VBG),bridge-building (VBG)
bridgework,bridgework (n),bridgework (NN)
brief,brief (n),brief (NN),briefing (NN),briefed (VBD)
briefli,briefly (VBP),briefly (VBP)
bright,brightness (n),brightness (NN),brightly (RB),bright (JJ)
brighten,brighten (v),brightened (VBD)
brighter,brighter (RBR),brighter (RBR)
brillianc,brilliance (n),brilliance (NN)
brilliant,brilliant (NN),brilliant (NN)
brim,brim (n),brim (JJ)
brin,brin (NN),brin (NN)
brindl,brindling (VBG),brindling (VBG)
bring,brings (NNS),brings (NNS),bring (VBG),bringing (VBG)
brink,brink (VBP),brink (VBP)
brisk,briskly (NN),briskly (NN),brisk (JJ)
brist,bristly (RB),bristly (RB)
bristl,bristle (v),bristling (VBG)
british,british (n),british (JJ)
brittl,brittle (n),brittle (NN)
broach,broach (v),broached (VBD)
broad,broad (n),broad (JJ),broadly (RB)
broad-frequ,broad-frequency (NN),broad-frequency (NN)
broadcast,broadcast (n),broadcast (NN),broadcasts (VBZ),broadcasting (VBG)
broader,broader (JJR),broader (JJR)
broil,broil (v),broiling (VBG)
broke,break (v),broke (VBD)
broken,broken (JJ),broken (JJ)
brood,brood (n),brood (NN)
brook,brook (n),brook (NN)
brother,brother (n),brothers (NNS)
brought,bring (v),brought (VBD)
brown,brown (n),brown (JJ)
bruis,bruise (v),bruises (VBZ)
brush,brush (n),brush (NN)
brutal,brutal (JJ),brutal (JJ),brutally (RB)
brute,brute (n),brute (NN)
brute-forc,brute-force (JJ),brute-force (JJ)
bubbl,bubble (n),bubbles (NNS),bubble (JJ)
buck,bucked (JJ),bucked (JJ)
buckl,buckle (v),buckled (VBN)
bud,bud (v),buds (VBP),budded (VBD)
bug,bug (n),bugs (NNS),bug (NN)
buggeri,buggery (n),buggery (NN)
build,build (v),builds (VBZ),buildings (NNS),building (NN),build (JJ)
builder,builder (n),builder (NN)
building-s,building-sized (JJ),building-sized (JJ)
built,build (v),built (VBN)
bulb,bulb (n),bulb (NN)
bulbous,bulbous (JJ),bulbous (JJ)
bulg,bulge (v),bulging (VBG)
bulk,bulk (n),bulk (NN),bulked (VBD),bulks (NNS)
bulki,bulky (NN),bulky (NN)
bullet,bullet (n),bullets (NNS)
bulletproof,bulletproof (NN),bulletproof (NN)
bulli,bully (v),bullying (VBG)
bumbl,bumble (v),bumbling (VBG)
bump,bump (v),bump (VB)
bun,bun (n),bun (JJ)
bunch,bunch (n),bunch (JJ),bunching (VBG),bunched (VBN)
bundl,bundle (v),bundled (VBD),bundle (NN)
buoyanc,buoyancy (n),buoyancy (NN)
buoyant,buoyant (JJ),buoyant (JJ)
burden,burden (n),burden (NN)
burgeon,burgeon (v),burgeoning (VBG)
buri,bury (v),buried (VBN),bury (NN)
burn,burn (v),burned (VBD),burns (NNS),burn (NN),burning (NN)
burnt-out,burnt-out (JJ),burnt-out (JJ)
burrow,burrow (n),burrows (NNS)
burst,bursting (NN),bursting (NN),burst (NN)
busi,business (n),business (NN),busy (JJ)
bustl,bustle (n),bustle (NN),bustling (VBG)
but,but (CC),but (CC)
butcher,butcher (v),butcher (VBP),butchers (NNS)
button,button (n),button (NN)
buy,buy (v),buy (VB),buying (VBG)
buzz,buzzing (NN),buzzing (NN)
bypass,bypassed (JJ),bypassed (JJ)
cabin,cabin (n),cabin (NN)
cach,cache (n),caches (NNS)
cacophon,cacophonic (JJ),cacophonic (JJ)
cadr,cadre (n),cadre (NN)
cage,cage (v),caged (VBN),cage (NN)
cain,cain (n),cain (NN)
calcul,calculate (v),calculated (VBN),calculating (VBG),calculations (NNS),calculation (NN),calculate (JJ)
calibr,calibre (n),calibre (NN),calibrated (VBD)
call,call (v),calls (VBZ),called (VBD),calling (VBG),call (NN)
caller,caller (n),caller (NN)
calm,calm (n),calms (NN),calmly (RB),calming (VBG),calm (JJ)
calmer,calmer (NN),calmer (NN)
came,come (v),came (VBD)
camera,cameras (VBP),cameras (VBP),camera (NN)
camp,camp (v),camp (VBP)
campaign,campaign (n),campaign (NN),campaigning (VBG)
can,can (n),can (MD)
cancel,cancel (v),cancelling (VBG)
candid,candidate (n),candidates (NNS)
candl,candle (n),candle (JJ)
candour,candour (n),candour (JJ)
canist,canister (n),canister (JJ)
cannib,cannibal (n),cannibals (NNS),cannibalism (NN),cannibal (NN)
canopi,canopy (n),canopy (NN),canopies (NNS)
canteen,canteen (n),canteen (JJ)
canvass,canvas (n),canvass (NN)
cap,cap (n),cap (NN)
capabl,capable (JJ),capable (JJ),capabilities (NNS)
capac,capacity (n),capacity (NN)
caparison,caparison (v),caparisoned (VBN)
capitul,capitulates (NNS),capitulates (NNS)
capsul,capsule (v),capsuled (VBD),capsules (NNS),capsule (NN)
capsule-run,capsule-runs (NNS),capsule-runs (NNS)
captain,captain (n),captain (NN)
captiv,captivity (n),captivity (NN),captive (JJ)
captor,captor (n),captors (NNS)
captur,captured (JJ),captured (JJ),capture (JJ)
car,car (n),car (NN)
carabin,carabinered (VBD),carabinered (VBD)
carapac,carapace (n),carapaces (NNS),carapace (NN)
caravan,caravan (n),caravans (NNS)
card,card (n),card (NN),cards (NNS)
care,care (n),cares (NNS),care (VBP),carefully (RB),careful (JJ),cared (VBN)
career,career (n),career (NN)
cargo,cargo (n),cargo (JJ)
carnivor,carnivore (n),carnivores (NNS)
carpet,carpet (n),carpet (NN)
carpet-lik,carpet-like (NN),carpet-like (NN)
carri,carry (v),carrying (VBG),carry (VBP),carried (VBD),carries (VBZ)
cartilag,cartilage (n),cartilage (NN)
carv,carve (v),carved (VBN),carve (NN)
cascad,cascade (n),cascade (NN),cascading (VBG),cascades (NNS)
case,case (n),case (NN),cases (NNS)
cast,cast (n),cast (JJ),caste (NN),castes (NNS)
casual,casual (JJ),casual (JJ)
cataclysm,cataclysm (n),cataclysm (NN)
catalogu,catalogue (v),catalogued (VBN),catalogue (NN),cataloguing (VBG)
catalyst,catalyst (n),catalysts (NNS),catalyst (VBP)
catastroph,catastrophic (JJ),catastrophic (JJ),catastrophe (NN)
catch,catch (n),catch (NN),catches (NNS),catching (NN)
catch-up,catch-up (JJ),catch-up (JJ)
cathedr,cathedral (n),cathedral (JJ)
caught,caught (JJ),caught (JJ)
caus,cause (v),cause (VB),causes (NNS),causing (NN),caused (JJ)
caustic,caustic (n),caustic (JJ)
caution,caution (n),caution (NN),cautioned (VBD),cautions (NNS)
cautious,cautiously (RB),cautiously (RB),cautious (JJ)
cave,cave (n),caves (NNS)
cavern,cavernous (JJ),cavernous (JJ)
ceas,ceased (JJ),ceased (JJ),ceasing (NN),ceases (NNS),cease (NN)
ceaseless,ceaseless (NN),ceaseless (NN)
ceil,ceiling (n),ceiling (NN),ceilings (VBP)
celebr,celebrity (n),celebrity (NN),celebrated (VBD)
celesti,celestial (JJ),celestial (JJ)
cell,cell (n),cells (NNS),cell (NN)
censur,censure (v),censuring (VBG)
cent,cent (n),cent (NN)
centimetr,centimetres (VBZ),centimetres (VBZ)
centr,centre (n),centre (NN),centres (NNS)
central,central (n),central (JJ)
centripet,centripetal (NN),centripetal (NN)
centuri,century (n),centuries (NNS),century (NN)
centuries-old,centuries-old (JJ),centuries-old (JJ)
century-ago,century-ago (JJ),century-ago (JJ)
ceremoni,ceremonial (n),ceremonial (NN)
certain,certain (JJ),certain (JJ),certainly (RB)
certainti,certainty (n),certainty (JJ)
cessat,cessation (n),cessation (NN)
chaff,chaff (n),chaff (NN)
chain,chain (n),chains (NNS),chain (NN),chaining (VBG)
chair,chair (n),chair (JJ)
challeng,challenge (v),challenged (VBD),challengingly (RB),challenging (VBG),challenge (NN),challengers (NNS)
chamber,chamber (n),chambers (NNS),chamber (NN)
champion,champion (n),champions (NNS)
chanc,chance (n),chance (NN),chances (NNS)
chance-deriv,chance-derived (JJ),chance-derived (JJ)
chang,change (n),changes (NNS),changing (VBG),changed (VBD),change (NN)
channel,channel (v),channelled (VBD),channelling (VBG),channel (VBP),channels (NNS)
chao,chaos (n),chaos (NN)
chaotic,chaotic (JJ),chaotic (JJ)
char,char (v),charred (VBD)
charact,character (n),characters (NNS),character (VBP)
characterist,characteristic (n),characteristics (NNS)
charcoal,charcoal (n),charcoal (NN)
charg,charge (n),charges (NNS),charging (VBG),charge (VBP)
chase,chase (n),chase (NN),chased (VBD)
chasm,chasm (n),chasm (NN)
check,check (v),checking (VBG),checks (NNS),check (VBP),checked (VBD)
checklist,checklist (VBP),checklist (VBP)
cheek,cheek (v),cheek (VBP),cheeks (NN)
cheekbon,cheekbone (n),cheekbones (NNS)
cheer,cheer (v),cheer (VB)
chemic,chemical (n),chemical (NN),chemicals (NNS),chemically (RB)
chemist,chemist (n),chemists (NNS),chemist (NN)
chemistri,chemistry (n),chemistry (NN)
chequerboard,chequerboard (NN),chequerboard (NN)
chest,chest (n),chest (JJS)
chew,chew (v),chewing (VBG)
chief,chief (n),chiefs (NNS),chief (JJ)
child,child (n),child (NN)
childish,childish (NN),childish (NN)
children,child (n),children (NNS)
chill,chill (v),chilled (VBD),chill (NN)
chilli,chilly (n),chilly (RB)
chime,chime (v),chimed (VBN)
chimera,chimera (n),chimera (NN)
chimney,chimney (n),chimneys (NNS)
chin,chin (n),chin (RB)
chip,chip (v),chipping (VBG)
chitin,chitin (n),chitin (NN),chitinous (JJ)
chivvi,chivy (v),chivvying (VBG)
choic,choice (n),choice (NN)
choke,choke (v),choke (VBP),choked (VBN),choking (VBG)
choos,choosing (NN),choosing (NN),choose (RB),chooses (VBZ)
chop,chop (v),chopped (VBD)
chore,chore (VBP),chore (VBP)
chorus,chorus (n),chorus (NN)
chose,choose (v),chose (VBD)
chosen,choose (v),chosen (VBN)
chromatopor,chromatopores (NNS),chromatopores (NNS),chromatopore (VBP)
chronicl,chronicle (n),chronicles (NNS)
chunk,chunk (v),chunks (VBP)
church,church (n),church (NN)
chute,chute (n),chutes (NNS)
cip,cip (NN),cip (NN)
circl,circle (n),circle (NN),circling (NN)
circuit,circuitous (JJ),circuitous (JJ),circuit (NN)
circul,circulation (n),circulation (NN)
circular,circular (n),circular (JJ)
circulatori,circulatory (NN),circulatory (NN)
circumfer,circumference (n),circumference (NN)
circumst,circumstance (n),circumstances (NNS)
circumv,circumvent (v),circumventing (VBG)
citi,city (n),cities (NNS),city (NN)
citizen,citizen (n),citizens (NNS),citizen (JJ)
civic,civic (JJ),civic (JJ)
civil,civilize (v),civilizing (VBG),civilizations (NNS),civilized (JJ),civilization (NN),civil (JJ)
civilian,civilian (n),civilian (JJ),civilians (NNS)
clack,clacking (NN),clacking (NN)
clad,cladding (VBG),cladding (VBG),clad (JJ)
claim,claim (n),claims (NNS),claiming (VBG),claimed (VBD),claim (NN)
clamber,clamber (v),clambering (VBG),clambered (VBD),clamber (VB)
clamour,clamour (v),clamouring (VBG)
clan,clan (n),clans (NNS),clan (NN)
clap,clap (v),clapped (VBD)
clarif,clarification (n),clarification (NN)
clarifi,clarify (v),clarified (VBN),clarify (NN)
clariti,clarity (n),clarity (NN)
clash,clash (v),clash (VBP),clashed (VBN),clashing (VBG)
clasp,clasp (v),clasped (VBD)
class,class (n),classes (NNS)
classic,classical (n),classical (JJ)
classicist,classicist (n),classicist (NN),classicists (NNS)
classifi,classify (v),classified (VBD)
clatter,clatter (n),clatter (NN),clattering (VBG)
claustrophob,claustrophobic (JJ),claustrophobic (JJ)
claustrophobia,claustrophobia (n),claustrophobia (JJ)
claw,claw (v),clawing (VBG),clawed (VBN),claw (NN),claws (NN)
clean,clean (n),clean (JJ),cleaned (VBN)
cleaner,cleaner (VBP),cleaner (VBP)
cleans,cleanse (v),cleansing (VBG)
clear,clear (n),clear (JJ),clearly (RB),clearing (VBG),cleared (VBD)
clearanc,clearance (n),clearance (NN)
clearer,clearer (NN),clearer (NN)
clearest,clearest (NN),clearest (NN)
clench,clench (n),clenches (NNS),clenched (VBN),clenching (VBG),clench (NN)
clever,clever (JJ),clever (JJ),cleverness (NN),cleverly (RB)
cleverest,cleverest (NN),cleverest (NN)
click,clicked (JJ),clicked (JJ)
climax,climax (n),climax (NN)
climb,climb (v),climbing (VBG),climbed (VBD),climb (NN),climbs (NNS)
cling,cling (v),clinging (VBG),cling (VBG)
clinician,clinician (n),clinician (JJ)
clip,clip (n),clip (NN),clipped (VBD)
cliqu,clique (n),cliques (NNS),clique (NN)
clomp,clomping (NN),clomping (NN)
close,close (v),closed (VBD),close (NN),closely (RB),closeness (NN),closing (NN)
close-pack,close-packed (JJ),close-packed (JJ)
close-rang,close-range (JJ),close-range (JJ)
close-woven,close-woven (JJ),close-woven (JJ)
close-written,close-written (JJ),close-written (JJ)
closer,closer (n),closer (NN)
closest,closest (VBP),closest (VBP)
closet,closet (n),closet (NN)
cloth,cloth (n),cloth (NNS),clothes (NNS)
cloud,clouded (JJ),clouded (JJ),clouds (VBP),cloud (NN)
cloudi,cloudy (JJ),cloudy (JJ)
clown,clown (v),clowns (VBP)
club,club (n),club (NN),clubs (NNS)
clue,clue (n),clues (NNS),clueing (VBG),clue (JJ)
clumsi,clumsy (JJ),clumsy (JJ),clumsiness (NN)
clumsili,clumsily (RB),clumsily (RB)
clung,clung (NN),clung (NN)
cluster,clustered (JJ),clustered (JJ)
clutch,clutch (v),clutched (VBN),clutches (NNS),clutch (NN),clutching (VBG)
clutter,clutter (v),cluttered (VBN)
co-depend,co-dependent (JJ),co-dependent (JJ)
co-opt,co-option (n),co-option (JJ),co-opting (JJ),co-opts (NNS)
coach,coached (JJ),coached (JJ)
coal,coal (n),coal (NN)