-
Notifications
You must be signed in to change notification settings - Fork 1
/
abbrev_defs
4087 lines (4087 loc) · 156 KB
/
abbrev_defs
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
;;-*-coding: utf-8;-*-
(define-abbrev-table 'global-abbrev-table
'(
("abandonned" "abandoned" nil :count 1)
("aberation" "aberration" nil :count 1)
("abilityes" "abilities" nil :count 1)
("abilties" "abilities" nil :count 1)
("abilty" "ability" nil :count 1)
("abondon" "abandon" nil :count 1)
("abbout" "about" nil :count 1)
("abotu" "about" nil :count 1)
("abouta" "about a" nil :count 1)
("aboutit" "about it" nil :count 1)
("aboutthe" "about the" nil :count 1)
("abscence" "absence" nil :count 1)
("abondoned" "abandoned" nil :count 1)
("abondoning" "abandoning" nil :count 1)
("abondons" "abandons" nil :count 1)
("aborigene" "aborigine" nil :count 1)
("accesories" "accessories" nil :count 1)
("accidant" "accident" nil :count 1)
("abortificant" "abortifacient" nil :count 1)
("abreviate" "abbreviate" nil :count 1)
("abreviated" "abbreviated" nil :count 1)
("abreviation" "abbreviation" nil :count 1)
("abritrary" "arbitrary" nil :count 1)
("absail" "abseil" nil :count 1)
("absailing" "abseiling" nil :count 1)
("absense" "absence" nil :count 1)
("absolutly" "absolutely" nil :count 1)
("absorbsion" "absorption" nil :count 1)
("absorbtion" "absorption" nil :count 1)
("abudance" "abundance" nil :count 1)
("abundacies" "abundances" nil :count 1)
("abundancies" "abundances" nil :count 1)
("abundunt" "abundant" nil :count 1)
("abutts" "abuts" nil :count 1)
("acadamy" "academy" nil :count 1)
("acadmic" "academic" nil :count 1)
("accademic" "academic" nil :count 1)
("accademy" "academy" nil :count 1)
("acccused" "accused" nil :count 1)
("accelleration" "acceleration" nil :count 1)
("acceptence" "acceptance" nil :count 1)
("acceptible" "acceptable" nil :count 1)
("accessable" "accessible" nil :count 1)
("acident" "accident" nil :count 1)
("accidentaly" "accidentally" nil :count 1)
("accidently" "accidentally" nil :count 1)
("acclimitization" "acclimatization" nil :count 1)
("accomadate" "accommodate" nil :count 1)
("accomadated" "accommodated" nil :count 1)
("accomadates" "accommodates" nil :count 1)
("accomadating" "accommodating" nil :count 1)
("accomadation" "accommodation" nil :count 1)
("accomadations" "accommodations" nil :count 1)
("accomdate" "accommodate" nil :count 1)
("accomodate" "accommodate" nil :count 1)
("accomodated" "accommodated" nil :count 1)
("accomodates" "accommodates" nil :count 1)
("accomodating" "accommodating" nil :count 1)
("accomodation" "accommodation" nil :count 1)
("accomodations" "accommodations" nil :count 1)
("accompanyed" "accompanied" nil :count 1)
("accordeon" "accordion" nil :count 1)
("accordian" "accordion" nil :count 1)
("accoring" "according" nil :count 1)
("accoustic" "acoustic" nil :count 1)
("accquainted" "acquainted" nil :count 1)
("accrediation" "accreditation" nil :count 1)
("accredidation" "accreditation" nil :count 1)
("accross" "across" nil :count 1)
("accussed" "accused" nil :count 1)
("acedemic" "academic" nil :count 1)
("acheive" "achieve" nil :count 1)
("acheived" "achieved" nil :count 1)
("acheivement" "achievement" nil :count 1)
("acheivements" "achievements" nil :count 1)
("acheives" "achieves" nil :count 1)
("acheiving" "achieving" nil :count 1)
("acheivment" "achievement" nil :count 1)
("acheivments" "achievements" nil :count 1)
("achievment" "achievement" nil :count 1)
("achievments" "achievements" nil :count 1)
("achivement" "achievement" nil :count 1)
("achivements" "achievements" nil :count 1)
("acknowldeged" "acknowledged" nil :count 1)
("acknowledgeing" "acknowledging" nil :count 1)
("acommodate" "accommodate" nil :count 1)
("acomplish" "accomplish" nil :count 1)
("acomplished" "accomplished" nil :count 1)
("acomplishment" "accomplishment" nil :count 1)
("acomplishments" "accomplishments" nil :count 1)
("acording" "according" nil :count 1)
("acordingly" "accordingly" nil :count 1)
("acquaintence" "acquaintance" nil :count 1)
("acquaintences" "acquaintances" nil :count 1)
("acquiantence" "acquaintance" nil :count 1)
("acquiantences" "acquaintances" nil :count 1)
("acquited" "acquitted" nil :count 1)
("activites" "activities" nil :count 1)
("activly" "actively" nil :count 1)
("actualy" "actually" nil :count 1)
("acuracy" "accuracy" nil :count 1)
("acused" "accused" nil :count 1)
("acustom" "accustom" nil :count 1)
("acustommed" "accustomed" nil :count 1)
("adavanced" "advanced" nil :count 1)
("adbandon" "abandon" nil :count 1)
("addional" "additional" nil :count 1)
("addionally" "additionally" nil :count 1)
("additinally" "additionally" nil :count 1)
("additionaly" "additionally" nil :count 1)
("additonal" "additional" nil :count 1)
("additonally" "additionally" nil :count 1)
("addmission" "admission" nil :count 1)
("addopt" "adopt" nil :count 1)
("addopted" "adopted" nil :count 1)
("addoptive" "adoptive" nil :count 1)
("addresable" "addressable" nil :count 1)
("addresed" "addressed" nil :count 1)
("addresing" "addressing" nil :count 1)
("addressess" "addresses" nil :count 1)
("addtion" "addition" nil :count 1)
("addtional" "additional" nil :count 1)
("adecuate" "adequate" nil :count 1)
("adequit" "adequate" nil :count 1)
("adhearing" "adhering" nil :count 1)
("adherance" "adherence" nil :count 1)
("admendment" "amendment" nil :count 1)
("admininistrative" "administrative" nil :count 1)
("adminstered" "administered" nil :count 1)
("adminstrate" "administrate" nil :count 1)
("adminstration" "administration" nil :count 1)
("adminstrative" "administrative" nil :count 1)
("adminstrator" "administrator" nil :count 1)
("admissability" "admissibility" nil :count 1)
("admissable" "admissible" nil :count 1)
("admited" "admitted" nil :count 1)
("admitedly" "admittedly" nil :count 1)
("adolecent" "adolescent" nil :count 1)
("adquire" "acquire" nil :count 1)
("adquired" "acquired" nil :count 1)
("adquires" "acquires" nil :count 1)
("adquiring" "acquiring" nil :count 1)
("adres" "address" nil :count 1)
("adresable" "addressable" nil :count 1)
("adresing" "addressing" nil :count 1)
("adress" "address" nil :count 1)
("adressable" "addressable" nil :count 1)
("adressed" "addressed" nil :count 1)
("adventrous" "adventurous" nil :count 1)
("advertisment" "advertisement" nil :count 1)
("advertisments" "advertisements" nil :count 1)
("advesary" "adversary" nil :count 1)
("adviced" "advised" nil :count 1)
("aeriel" "aerial" nil :count 1)
("aeriels" "aerials" nil :count 1)
("afair" "affair" nil :count 1)
("afficianados" "aficionados" nil :count 1)
("afficionado" "aficionado" nil :count 1)
("afficionados" "aficionados" nil :count 1)
("affilate" "affiliate" nil :count 1)
("affilliate" "affiliate" nil :count 1)
("aforememtioned" "aforementioned" nil :count 1)
("againnst" "against" nil :count 1)
("agains" "against" nil :count 1)
("agaisnt" "against" nil :count 1)
("aganist" "against" nil :count 1)
("aggaravates" "aggravates" nil :count 1)
("aggreed" "agreed" nil :count 1)
("aggreement" "agreement" nil :count 1)
("aggregious" "egregious" nil :count 1)
("aggregrator" "aggregator" nil :count 1)
("aggresive" "aggressive" nil :count 1)
("agian" "again" nil :count 1)
("agianst" "against" nil :count 1)
("agin" "again" nil :count 1)
("aginst" "against" nil :count 1)
("agravate" "aggravate" nil :count 1)
("agre" "agree" nil :count 1)
("agred" "agreed" nil :count 1)
("agreeement" "agreement" nil :count 1)
("agreemnt" "agreement" nil :count 1)
("agregate" "aggregate" nil :count 1)
("agregates" "aggregates" nil :count 1)
("agreing" "agreeing" nil :count 1)
("agression" "aggression" nil :count 1)
("agressive" "aggressive" nil :count 1)
("agressively" "aggressively" nil :count 1)
("agressor" "aggressor" nil :count 1)
("agricultue" "agriculture" nil :count 1)
("agriculure" "agriculture" nil :count 1)
("agricuture" "agriculture" nil :count 1)
("agrieved" "aggrieved" nil :count 1)
("ahev" "have" nil :count 1)
("ahppen" "happen" nil :count 1)
("ahve" "have" nil :count 1)
("aicraft" "aircraft" nil :count 1)
("aiport" "airport" nil :count 1)
("airbourne" "airborne" nil :count 1)
("aircaft" "aircraft" nil :count 1)
("aircrafts" "aircraft" nil :count 1)
("airporta" "airports" nil :count 1)
("airrcraft" "aircraft" nil :count 1)
("aisian" "asian" nil :count 1)
("albiet" "albeit" nil :count 1)
("alchohol" "alcohol" nil :count 1)
("alchoholic" "alcoholic" nil :count 1)
("alchol" "alcohol" nil :count 1)
("alcholic" "alcoholic" nil :count 1)
("alcohal" "alcohol" nil :count 1)
("alcoholical" "alcoholic" nil :count 1)
("aledge" "allege" nil :count 1)
("aledged" "alleged" nil :count 1)
("aledges" "alleges" nil :count 1)
("alege" "allege" nil :count 1)
("aleged" "alleged" nil :count 1)
("alegience" "allegiance" nil :count 1)
("algebraical" "algebraic" nil :count 1)
("algorhitms" "algorithms" nil :count 1)
("algoritm" "algorithm" nil :count 1)
("algoritms" "algorithms" nil :count 1)
("alientating" "alienating" nil :count 1)
("alledge" "allege" nil :count 1)
("alledged" "alleged" nil :count 1)
("alledgedly" "allegedly" nil :count 1)
("alledges" "alleges" nil :count 1)
("allegedely" "allegedly" nil :count 1)
("allegedy" "allegedly" nil :count 1)
("allegely" "allegedly" nil :count 1)
("allegence" "allegiance" nil :count 1)
("allegience" "allegiance" nil :count 1)
("allign" "align" nil :count 1)
("alligned" "aligned" nil :count 1)
("alliviate" "alleviate" nil :count 1)
("allopone" "allophone" nil :count 1)
("allopones" "allophones" nil :count 1)
("allready" "already" nil :count 1)
("allthough" "although" nil :count 1)
("alltogether" "altogether" nil :count 1)
("almsot" "almost" nil :count 1)
("alochol" "alcohol" nil :count 1)
("alomst" "almost" nil :count 1)
("alotted" "allotted" nil :count 1)
("alowed" "allowed" nil :count 1)
("alowing" "allowing" nil :count 1)
("alreayd" "already" nil :count 1)
("alse" "else" nil :count 1)
("alsot" "also" nil :count 1)
("alternitives" "alternatives" nil :count 1)
("altho" "although" nil :count 1)
("althought" "although" nil :count 1)
("altough" "although" nil :count 1)
("alwasy" "always" nil :count 1)
("alwyas" "always" nil :count 1)
("amalgomated" "amalgamated" nil :count 1)
("amatuer" "amateur" nil :count 1)
("amendmant" "amendment" nil :count 1)
("Amercia" "America" nil :count 1)
("amerliorate" "ameliorate" nil :count 1)
("amke" "make" nil :count 1)
("amking" "making" nil :count 1)
("ammend" "amend" nil :count 1)
("ammended" "amended" nil :count 1)
("ammendment" "amendment" nil :count 1)
("ammendments" "amendments" nil :count 1)
("ammount" "amount" nil :count 1)
("ammused" "amused" nil :count 1)
("amoung" "among" nil :count 1)
("amoungst" "amongst" nil :count 1)
("amung" "among" nil :count 1)
("amunition" "ammunition" nil :count 1)
("analagous" "analogous" nil :count 1)
("analitic" "analytic" nil :count 1)
("analogeous" "analogous" nil :count 1)
("anarchim" "anarchism" nil :count 1)
("anarchistm" "anarchism" nil :count 1)
("anbd" "and" nil :count 1)
("ancestory" "ancestry" nil :count 1)
("ancilliary" "ancillary" nil :count 1)
("andd" "and" nil :count 1)
("androgenous" "androgynous" nil :count 1)
("androgeny" "androgyny" nil :count 1)
("anihilation" "annihilation" nil :count 1)
("aniversary" "anniversary" nil :count 1)
("annoint" "anoint" nil :count 1)
("annointed" "anointed" nil :count 1)
("annointing" "anointing" nil :count 1)
("annoints" "anoints" nil :count 1)
("annouced" "announced" nil :count 1)
("annualy" "annually" nil :count 1)
("annuled" "annulled" nil :count 1)
("anohter" "another" nil :count 1)
("anomolies" "anomalies" nil :count 1)
("anomolous" "anomalous" nil :count 1)
("anomoly" "anomaly" nil :count 1)
("anonimity" "anonymity" nil :count 1)
("anounced" "announced" nil :count 1)
("anouncement" "announcement" nil :count 1)
("ansalisation" "nasalisation" nil :count 1)
("ansalization" "nasalization" nil :count 1)
("ansestors" "ancestors" nil :count 1)
("antartic" "antarctic" nil :count 1)
("anthromorphization" "anthropomorphization" nil :count 1)
("anthropolgist" "anthropologist" nil :count 1)
("anthropolgy" "anthropology" nil :count 1)
("anual" "annual" nil :count 1)
("anulled" "annulled" nil :count 1)
("anwsered" "answered" nil :count 1)
("anyhwere" "anywhere" nil :count 1)
("anyother" "any other" nil :count 1)
("anytying" "anything" nil :count 1)
("aparent" "apparent" nil :count 1)
("aparment" "apartment" nil :count 1)
("aplication" "application" nil :count 1)
("aplied" "applied" nil :count 1)
("apolegetics" "apologetics" nil :count 1)
("apparant" "apparent" nil :count 1)
("apparantly" "apparently" nil :count 1)
("appart" "apart" nil :count 1)
("appartment" "apartment" nil :count 1)
("appartments" "apartments" nil :count 1)
("appeareance" "appearance" nil :count 1)
("appearence" "appearance" nil :count 1)
("appearences" "appearances" nil :count 1)
("apperance" "appearance" nil :count 1)
("apperances" "appearances" nil :count 1)
("appereance" "appearance" nil :count 1)
("appereances" "appearances" nil :count 1)
("applicaiton" "application" nil :count 1)
("applicaitons" "applications" nil :count 1)
("appologies" "apologies" nil :count 1)
("appology" "apology" nil :count 1)
("apprearance" "appearance" nil :count 1)
("apprieciate" "appreciate" nil :count 1)
("approachs" "approaches" nil :count 1)
("appropiate" "appropriate" nil :count 1)
("appropraite" "appropriate" nil :count 1)
("appropropiate" "appropriate" nil :count 1)
("approproximate" "approximate" nil :count 1)
("approxamately" "approximately" nil :count 1)
("approxiately" "approximately" nil :count 1)
("approximitely" "approximately" nil :count 1)
("aprehensive" "apprehensive" nil :count 1)
("apropriate" "appropriate" nil :count 1)
("aproval" "approval" nil :count 1)
("aproximate" "approximate" nil :count 1)
("aproximately" "approximately" nil :count 1)
("aquaduct" "aqueduct" nil :count 1)
("aquaintance" "acquaintance" nil :count 1)
("aquainted" "acquainted" nil :count 1)
("aquiantance" "acquaintance" nil :count 1)
("aquire" "acquire" nil :count 1)
("aquired" "acquired" nil :count 1)
("aquiring" "acquiring" nil :count 1)
("aquisition" "acquisition" nil :count 1)
("aquitted" "acquitted" nil :count 1)
("aranged" "arranged" nil :count 1)
("arangement" "arrangement" nil :count 1)
("arbitarily" "arbitrarily" nil :count 1)
("arbitary" "arbitrary" nil :count 1)
("archaelogical" "archaeological" nil :count 1)
("archaelogists" "archaeologists" nil :count 1)
("archaelogy" "archaeology" nil :count 1)
("archetect" "architect" nil :count 1)
("archetects" "architects" nil :count 1)
("archetectural" "architectural" nil :count 1)
("archetecturally" "architecturally" nil :count 1)
("archetecture" "architecture" nil :count 1)
("archiac" "archaic" nil :count 1)
("archictect" "architect" nil :count 1)
("archimedian" "archimedean" nil :count 1)
("architecht" "architect" nil :count 1)
("architechturally" "architecturally" nil :count 1)
("architechture" "architecture" nil :count 1)
("architechtures" "architectures" nil :count 1)
("architectual" "architectural" nil :count 1)
("archtype" "archetype" nil :count 1)
("archtypes" "archetypes" nil :count 1)
("aready" "already" nil :count 1)
("areodynamics" "aerodynamics" nil :count 1)
("argubly" "arguably" nil :count 1)
("arguement" "argument" nil :count 1)
("arguements" "arguments" nil :count 1)
("arised" "arose" nil :count 1)
("arival" "arrival" nil :count 1)
("armamant" "armament" nil :count 1)
("armistace" "armistice" nil :count 1)
("arogant" "arrogant" nil :count 1)
("arogent" "arrogant" nil :count 1)
("aroud" "around" nil :count 1)
("arrangment" "arrangement" nil :count 1)
("arrangments" "arrangements" nil :count 1)
("arrengement" "arrangement" nil :count 1)
("arrengements" "arrangements" nil :count 1)
("arround" "around" nil :count 1)
("artcile" "article" nil :count 1)
("artical" "article" nil :count 1)
("artice" "article" nil :count 1)
("articel" "article" nil :count 1)
("artifical" "artificial" nil :count 1)
("artifically" "artificially" nil :count 1)
("artillary" "artillery" nil :count 1)
("arund" "around" nil :count 1)
("asetic" "ascetic" nil :count 1)
("asfar" "as far" nil :count 1)
("asign" "assign" nil :count 1)
("aslo" "also" nil :count 1)
("asociated" "associated" nil :count 1)
("asorbed" "absorbed" nil :count 1)
("asphyxation" "asphyxiation" nil :count 1)
("assasin" "assassin" nil :count 1)
("assasinate" "assassinate" nil :count 1)
("assasinated" "assassinated" nil :count 1)
("assasinates" "assassinates" nil :count 1)
("assasination" "assassination" nil :count 1)
("assasinations" "assassinations" nil :count 1)
("assasined" "assassinated" nil :count 1)
("assasins" "assassins" nil :count 1)
("assassintation" "assassination" nil :count 1)
("assemple" "assemble" nil :count 1)
("assertation" "assertion" nil :count 1)
("asside" "aside" nil :count 1)
("assisnate" "assassinate" nil :count 1)
("assit" "assist" nil :count 1)
("assitant" "assistant" nil :count 1)
("assocation" "association" nil :count 1)
("assoicate" "associate" nil :count 1)
("assoicated" "associated" nil :count 1)
("assoicates" "associates" nil :count 1)
("assosication" "assassination" nil :count 1)
("asssassans" "assassins" nil :count 1)
("assualt" "assault" nil :count 1)
("assualted" "assaulted" nil :count 1)
("assymetric" "asymmetric" nil :count 1)
("assymetrical" "asymmetrical" nil :count 1)
("asteriod" "asteroid" nil :count 1)
("asthetic" "aesthetic" nil :count 1)
("asthetical" "aesthetical" nil :count 1)
("asthetically" "aesthetically" nil :count 1)
("asume" "assume" nil :count 1)
("aswell" "as well" nil :count 1)
("atain" "attain" nil :count 1)
("atempting" "attempting" nil :count 1)
("atheistical" "atheistic" nil :count 1)
("athenean" "athenian" nil :count 1)
("atheneans" "athenians" nil :count 1)
("athiesm" "atheism" nil :count 1)
("athiest" "atheist" nil :count 1)
("atorney" "attorney" nil :count 1)
("atribute" "attribute" nil :count 1)
("atributed" "attributed" nil :count 1)
("atributes" "attributes" nil :count 1)
("attemp" "attempt" nil :count 1)
("attemped" "attempted" nil :count 1)
("attemt" "attempt" nil :count 1)
("attemted" "attempted" nil :count 1)
("attemting" "attempting" nil :count 1)
("attemts" "attempts" nil :count 1)
("attendence" "attendance" nil :count 1)
("attendent" "attendant" nil :count 1)
("attendents" "attendants" nil :count 1)
("attened" "attended" nil :count 1)
("attension" "attention" nil :count 1)
("attitide" "attitude" nil :count 1)
("attributred" "attributed" nil :count 1)
("attrocities" "atrocities" nil :count 1)
("audeince" "audience" nil :count 1)
("auromated" "automated" nil :count 1)
("austrailia" "Australia" nil :count 1)
("austrailian" "Australian" nil :count 1)
("auther" "author" nil :count 1)
("authobiographic" "autobiographic" nil :count 1)
("authobiography" "autobiography" nil :count 1)
("authorative" "authoritative" nil :count 1)
("authorites" "authorities" nil :count 1)
("authorithy" "authority" nil :count 1)
("authoritiers" "authorities" nil :count 1)
("authoritive" "authoritative" nil :count 1)
("authrorities" "authorities" nil :count 1)
("autochtonous" "autochthonous" nil :count 1)
("autoctonous" "autochthonous" nil :count 1)
("automaticly" "automatically" nil :count 1)
("automibile" "automobile" nil :count 1)
("automonomous" "autonomous" nil :count 1)
("autor" "author" nil :count 1)
("autority" "authority" nil :count 1)
("auxilary" "auxiliary" nil :count 1)
("auxillaries" "auxiliaries" nil :count 1)
("auxillary" "auxiliary" nil :count 1)
("auxilliaries" "auxiliaries" nil :count 1)
("auxilliary" "auxiliary" nil :count 1)
("availabe" "available" nil :count 1)
("availablity" "availability" nil :count 1)
("availaible" "available" nil :count 1)
("availble" "available" nil :count 1)
("availiable" "available" nil :count 1)
("availible" "available" nil :count 1)
("avalable" "available" nil :count 1)
("avalance" "avalanche" nil :count 1)
("avaliable" "available" nil :count 1)
("avation" "aviation" nil :count 1)
("avengence" "a vengeance" nil :count 1)
("averageed" "averaged" nil :count 1)
("avilable" "available" nil :count 1)
("awared" "awarded" nil :count 1)
("awya" "away" nil :count 1)
("bacame" "became" nil :count 1)
("baceause" "because" nil :count 1)
("backgorund" "background" nil :count 1)
("backrounds" "backgrounds" nil :count 1)
("bakc" "back" nil :count 1)
("banannas" "bananas" nil :count 1)
("bandwith" "bandwidth" nil :count 1)
("bankrupcy" "bankruptcy" nil :count 1)
("banruptcy" "bankruptcy" nil :count 1)
("basicaly" "basically" nil :count 1)
("basicly" "basically" nil :count 1)
("bcak" "back" nil :count 1)
("beachead" "beachhead" nil :count 1)
("beacuse" "because" nil :count 1)
("beastiality" "bestiality" nil :count 1)
("beatiful" "beautiful" nil :count 1)
("beaurocracy" "bureaucracy" nil :count 1)
("beaurocratic" "bureaucratic" nil :count 1)
("beautyfull" "beautiful" nil :count 1)
("becamae" "became" nil :count 1)
("becasue" "because" nil :count 1)
("beccause" "because" nil :count 1)
("becomeing" "becoming" nil :count 1)
("becomming" "becoming" nil :count 1)
("becouse" "because" nil :count 1)
("becuase" "because" nil :count 1)
("bedore" "before" nil :count 1)
("beeing" "being" nil :count 1)
("befoer" "before" nil :count 1)
("begginer" "beginner" nil :count 1)
("begginers" "beginners" nil :count 1)
("beggining" "beginning" nil :count 1)
("begginings" "beginnings" nil :count 1)
("beggins" "begins" nil :count 1)
("begining" "beginning" nil :count 1)
("beginnig" "beginning" nil :count 1)
("beleagured" "beleaguered" nil :count 1)
("beleif" "belief" nil :count 1)
("beleive" "believe" nil :count 1)
("beleived" "believed" nil :count 1)
("beleives" "believes" nil :count 1)
("beleiving" "believing" nil :count 1)
("beligum" "belgium" nil :count 1)
("belive" "believe" nil :count 1)
("belligerant" "belligerent" nil :count 1)
("bellweather" "bellwether" nil :count 1)
("bemusemnt" "bemusement" nil :count 1)
("beneficary" "beneficiary" nil :count 1)
("beng" "being" nil :count 1)
("benificial" "beneficial" nil :count 1)
("benifit" "benefit" nil :count 1)
("benifits" "benefits" nil :count 1)
("bergamont" "bergamot" nil :count 1)
("Bernouilli" "Bernoulli" nil :count 1)
("beseige" "besiege" nil :count 1)
("beseiged" "besieged" nil :count 1)
("beseiging" "besieging" nil :count 1)
("beteen" "between" nil :count 1)
("betwen" "between" nil :count 1)
("beween" "between" nil :count 1)
("bewteen" "between" nil :count 1)
("bigining" "beginning" nil :count 1)
("biginning" "beginning" nil :count 1)
("bilateraly" "bilaterally" nil :count 1)
("billingualism" "bilingualism" nil :count 1)
("binominal" "binomial" nil :count 1)
("bizzare" "bizarre" nil :count 1)
("blaim" "blame" nil :count 1)
("blaimed" "blamed" nil :count 1)
("blessure" "blessing" nil :count 1)
("Blitzkreig" "Blitzkrieg" nil :count 1)
("bodydbuilder" "bodybuilder" nil :count 1)
("bombardement" "bombardment" nil :count 1)
("bombarment" "bombardment" nil :count 1)
("bondary" "boundary" nil :count 1)
("Bonnano" "Bonanno" nil :count 1)
("boook" "book" nil :count 1)
("borke" "broke" nil :count 1)
("boundry" "boundary" nil :count 1)
("bouyancy" "buoyancy" nil :count 1)
("bouyant" "buoyant" nil :count 1)
("boyant" "buoyant" nil :count 1)
("bradcast" "broadcast" nil :count 1)
("Brasillian" "Brazilian" nil :count 1)
("breakthough" "breakthrough" nil :count 1)
("breakthroughts" "breakthroughs" nil :count 1)
("breif" "brief" nil :count 1)
("breifly" "briefly" nil :count 1)
("brethen" "brethren" nil :count 1)
("bretheren" "brethren" nil :count 1)
("briliant" "brilliant" nil :count 1)
("brillant" "brilliant" nil :count 1)
("brimestone" "brimstone" nil :count 1)
("Britian" "Britain" nil :count 1)
("Brittish" "British" nil :count 1)
("broacasted" "broadcast" nil :count 1)
("broadacasting" "broadcasting" nil :count 1)
("broady" "broadly" nil :count 1)
("Buddah" "Buddha" nil :count 1)
("Buddist" "Buddhist" nil :count 1)
("buisness" "business" nil :count 1)
("buisnessman" "businessman" nil :count 1)
("buoancy" "buoyancy" nil :count 1)
("burried" "buried" nil :count 1)
("busines" "business" nil :count 1)
("busness" "business" nil :count 1)
("bussiness" "business" nil :count 1)
("caculater" "calculator" nil :count 1)
("cacuses" "caucuses" nil :count 1)
("cahracters" "characters" nil :count 1)
("calaber" "caliber" nil :count 1)
("calculater" "calculator" nil :count 1)
("calculs" "calculus" nil :count 1)
("calenders" "calendars" nil :count 1)
("caligraphy" "calligraphy" nil :count 1)
("caluclate" "calculate" nil :count 1)
("caluclated" "calculated" nil :count 1)
("caluculate" "calculate" nil :count 1)
("caluculated" "calculated" nil :count 1)
("calulate" "calculate" nil :count 1)
("calulated" "calculated" nil :count 1)
("calulater" "calculator" nil :count 1)
("Cambrige" "Cambridge" nil :count 1)
("camoflage" "camouflage" nil :count 1)
("campagin" "campaign" nil :count 1)
("campain" "campaign" nil :count 1)
("campains" "campaigns" nil :count 1)
("candadate" "candidate" nil :count 1)
("candiate" "candidate" nil :count 1)
("candidiate" "candidate" nil :count 1)
("cannister" "canister" nil :count 1)
("cannisters" "canisters" nil :count 1)
("cannnot" "cannot" nil :count 1)
("cannonical" "canonical" nil :count 1)
("cannotation" "connotation" nil :count 1)
("cannotations" "connotations" nil :count 1)
("caost" "coast" nil :count 1)
("caperbility" "capability" nil :count 1)
("Capetown" "Cape Town" nil :count 1)
("capible" "capable" nil :count 1)
("captial" "capital" nil :count 1)
("captued" "captured" nil :count 1)
("capturd" "captured" nil :count 1)
("carachter" "character" nil :count 1)
("caracterized" "characterized" nil :count 1)
("carefull" "careful" nil :count 1)
("careing" "caring" nil :count 1)
("carismatic" "charismatic" nil :count 1)
("Carmalite" "Carmelite" nil :count 1)
("Carnagie" "Carnegie" nil :count 1)
("Carnagie" "ellon->Carnegie-Mellon" nil :count 1)
("Carnigie" "Carnegie" nil :count 1)
("Carnigie" "ellon->Carnegie-Mellon" nil :count 1)
("carreer" "career" nil :count 1)
("carrers" "careers" nil :count 1)
("Carribbean" "Caribbean" nil :count 1)
("Carribean" "Caribbean" nil :count 1)
("carryng" "carrying" nil :count 1)
("cartdridge" "cartridge" nil :count 1)
("Carthagian" "Carthaginian" nil :count 1)
("carthographer" "cartographer" nil :count 1)
("cartilege" "cartilage" nil :count 1)
("cartilidge" "cartilage" nil :count 1)
("cartrige" "cartridge" nil :count 1)
("casette" "cassette" nil :count 1)
("casion" "caisson" nil :count 1)
("cassawory" "cassowary" nil :count 1)
("cassowarry" "cassowary" nil :count 1)
("casue" "cause" nil :count 1)
("casued" "caused" nil :count 1)
("casues" "causes" nil :count 1)
("casuing" "causing" nil :count 1)
("casulaties" "casualties" nil :count 1)
("casulaty" "casualty" nil :count 1)
("catagories" "categories" nil :count 1)
("catagorized" "categorized" nil :count 1)
("catagory" "category" nil :count 1)
("catapillar" "caterpillar" nil :count 1)
("catapillars" "caterpillars" nil :count 1)
("catapiller" "caterpillar" nil :count 1)
("catapillers" "caterpillars" nil :count 1)
("catepillar" "caterpillar" nil :count 1)
("catepillars" "caterpillars" nil :count 1)
("catergorize" "categorize" nil :count 1)
("catergorized" "categorized" nil :count 1)
("caterpilar" "caterpillar" nil :count 1)
("caterpilars" "caterpillars" nil :count 1)
("caterpiller" "caterpillar" nil :count 1)
("caterpillers" "caterpillars" nil :count 1)
("cathlic" "catholic" nil :count 1)
("catholocism" "catholicism" nil :count 1)
("catterpilar" "caterpillar" nil :count 1)
("catterpilars" "caterpillars" nil :count 1)
("catterpillar" "caterpillar" nil :count 1)
("catterpillars" "caterpillars" nil :count 1)
("cattleship" "battleship" nil :count 1)
("causalities" "casualties" nil :count 1)
("Ceasar" "Caesar" nil :count 1)
("Celcius" "Celsius" nil :count 1)
("cellpading" "cellpadding" nil :count 1)
("cementary" "cemetery" nil :count 1)
("cemetarey" "cemetery" nil :count 1)
("cemetaries" "cemeteries" nil :count 1)
("cemetary" "cemetery" nil :count 1)
("cencus" "census" nil :count 1)
("cententenial" "centennial" nil :count 1)
("centruies" "centuries" nil :count 1)
("centruy" "century" nil :count 1)
("centuties" "centuries" nil :count 1)
("centuty" "century" nil :count 1)
("cerimonial" "ceremonial" nil :count 1)
("cerimonies" "ceremonies" nil :count 1)
("cerimonious" "ceremonious" nil :count 1)
("cerimony" "ceremony" nil :count 1)
("ceromony" "ceremony" nil :count 1)
("certaintly" "certainly" nil :count 1)
("certainity" "certainty" nil :count 1)
("certian" "certain" nil :count 1)
("chalenging" "challenging" nil :count 1)
("challange" "challenge" nil :count 1)
("challanged" "challenged" nil :count 1)
("challege" "challenge" nil :count 1)
("Champange" "Champagne" nil :count 1)
("changable" "changeable" nil :count 1)
("charachter" "character" nil :count 1)
("charachters" "characters" nil :count 1)
("charactersistic" "characteristic" nil :count 1)
("charactor" "character" nil :count 1)
("charactors" "characters" nil :count 1)
("charasmatic" "charismatic" nil :count 1)
("charaterized" "characterized" nil :count 1)
("chariman" "chairman" nil :count 1)
("charistics" "characteristics" nil :count 1)
("cheif" "chief" nil :count 1)
("cheifs" "chiefs" nil :count 1)
("chemcial" "chemical" nil :count 1)
("chemcially" "chemically" nil :count 1)
("chemestry" "chemistry" nil :count 1)
("chemicaly" "chemically" nil :count 1)
("childbird" "childbirth" nil :count 1)
("childen" "children" nil :count 1)
("choclate" "chocolate" nil :count 1)
("choosen" "chosen" nil :count 1)
("chracter" "character" nil :count 1)
("chuch" "church" nil :count 1)
("churchs" "churches" nil :count 1)
("Cincinatti" "Cincinnati" nil :count 1)
("Cincinnatti" "Cincinnati" nil :count 1)
("circulaton" "circulation" nil :count 1)
("circumsicion" "circumcision" nil :count 1)
("circut" "circuit" nil :count 1)
("ciricuit" "circuit" nil :count 1)
("ciriculum" "curriculum" nil :count 1)
("civillian" "civilian" nil :count 1)
("claer" "clear" nil :count 1)
("claerer" "clearer" nil :count 1)
("claerly" "clearly" nil :count 1)
("claimes" "claims" nil :count 1)
("clas" "class" nil :count 1)
("clasic" "classic" nil :count 1)
("clasical" "classical" nil :count 1)
("clasically" "classically" nil :count 1)
("cleareance" "clearance" nil :count 1)
("clincial" "clinical" nil :count 1)
("clinicaly" "clinically" nil :count 1)
("cmo" "com" nil :count 1)
("cmoputer" "computer" nil :count 1)
("coctail" "cocktail" nil :count 1)
("coform" "conform" nil :count 1)
("cognizent" "cognizant" nil :count 1)
("coincedentally" "coincidentally" nil :count 1)
("colaborations" "collaborations" nil :count 1)
("colateral" "collateral" nil :count 1)
("colelctive" "collective" nil :count 1)
("collaberative" "collaborative" nil :count 1)
("collecton" "collection" nil :count 1)
("collegue" "colleague" nil :count 1)
("collegues" "colleagues" nil :count 1)
("collonade" "colonnade" nil :count 1)
("collonies" "colonies" nil :count 1)
("collony" "colony" nil :count 1)
("collosal" "colossal" nil :count 1)
("colonizators" "colonizers" nil :count 1)
("comando" "commando" nil :count 1)
("comandos" "commandos" nil :count 1)
("comany" "company" nil :count 1)
("comapany" "company" nil :count 1)
("comback" "comeback" nil :count 1)
("combanations" "combinations" nil :count 1)
("combinatins" "combinations" nil :count 1)
("combusion" "combustion" nil :count 1)
("comdemnation" "condemnation" nil :count 1)
("comemmorates" "commemorates" nil :count 1)
("comemoretion" "commemoration" nil :count 1)
("comision" "commission" nil :count 1)
("comisioned" "commissioned" nil :count 1)
("comisioner" "commissioner" nil :count 1)
("comisioning" "commissioning" nil :count 1)
("comisions" "commissions" nil :count 1)
("comission" "commission" nil :count 1)
("comissioned" "commissioned" nil :count 1)
("comissioner" "commissioner" nil :count 1)
("comissioning" "commissioning" nil :count 1)
("comissions" "commissions" nil :count 1)
("comited" "committed" nil :count 1)
("comiting" "committing" nil :count 1)
("comitted" "committed" nil :count 1)
("comittee" "committee" nil :count 1)
("comitting" "committing" nil :count 1)
("commandoes" "commandos" nil :count 1)
("commedic" "comedic" nil :count 1)
("commemerative" "commemorative" nil :count 1)
("commemmorate" "commemorate" nil :count 1)
("commemmorating" "commemorating" nil :count 1)
("commerical" "commercial" nil :count 1)
("commerically" "commercially" nil :count 1)
("commericial" "commercial" nil :count 1)
("commericially" "commercially" nil :count 1)
("commerorative" "commemorative" nil :count 1)
("comming" "coming" nil :count 1)
("comminication" "communication" nil :count 1)
("commision" "commission" nil :count 1)
("commisioned" "commissioned" nil :count 1)
("commisioner" "commissioner" nil :count 1)
("commisioning" "commissioning" nil :count 1)
("commisions" "commissions" nil :count 1)
("commited" "committed" nil :count 1)
("commitee" "committee" nil :count 1)
("commiting" "committing" nil :count 1)
("committe" "committee" nil :count 1)
("committment" "commitment" nil :count 1)
("committments" "commitments" nil :count 1)
("commmemorated" "commemorated" nil :count 1)
("commongly" "commonly" nil :count 1)
("commonweath" "commonwealth" nil :count 1)
("commuications" "communications" nil :count 1)
("commuinications" "communications" nil :count 1)
("communciation" "communication" nil :count 1)
("communiation" "communication" nil :count 1)
("communites" "communities" nil :count 1)
("compability" "compatibility" nil :count 1)
("comparision" "comparison" nil :count 1)
("comparisions" "comparisons" nil :count 1)
("comparitive" "comparative" nil :count 1)
("comparitively" "comparatively" nil :count 1)
("compatabilities" "compatibilities" nil :count 1)
("compatability" "compatibility" nil :count 1)
("compatable" "compatible" nil :count 1)
("compatablities" "compatibilities" nil :count 1)
("compatablity" "compatibility" nil :count 1)
("compatiable" "compatible" nil :count 1)
("compatiblities" "compatibilities" nil :count 1)
("compatiblity" "compatibility" nil :count 1)
("compeitions" "competitions" nil :count 1)
("compensantion" "compensation" nil :count 1)
("competance" "competence" nil :count 1)
("competant" "competent" nil :count 1)
("competative" "competitive" nil :count 1)
("competitiion" "competition" nil :count 1)
("competive" "competitive" nil :count 1)
("competiveness" "competitiveness" nil :count 1)
("comphrehensive" "comprehensive" nil :count 1)
("compitent" "competent" nil :count 1)
("completedthe" "completed the" nil :count 1)
("completelyl" "completely" nil :count 1)
("completetion" "completion" nil :count 1)
("complier" "compiler" nil :count 1)
("componant" "component" nil :count 1)
("comprable" "comparable" nil :count 1)
("comprimise" "compromise" nil :count 1)
("compulsary" "compulsory" nil :count 1)
("compulsery" "compulsory" nil :count 1)
("computarized" "computerized" nil :count 1)
("concensus" "consensus" nil :count 1)
("concider" "consider" nil :count 1)
("concidered" "considered" nil :count 1)
("concidering" "considering" nil :count 1)
("conciders" "considers" nil :count 1)
("concieted" "conceited" nil :count 1)
("concieved" "conceived" nil :count 1)
("concious" "conscious" nil :count 1)
("conciously" "consciously" nil :count 1)
("conciousness" "consciousness" nil :count 1)
("condamned" "condemned" nil :count 1)
("condemmed" "condemned" nil :count 1)
("condidtion" "condition" nil :count 1)
("condidtions" "conditions" nil :count 1)
("conditionsof" "conditions of" nil :count 1)
("conected" "connected" nil :count 1)
("conection" "connection" nil :count 1)
("conesencus" "consensus" nil :count 1)
("confidental" "confidential" nil :count 1)
("confidentally" "confidentially" nil :count 1)
("confids" "confides" nil :count 1)
("configureable" "configurable" nil :count 1)
("confortable" "comfortable" nil :count 1)
("congradulations" "congratulations" nil :count 1)
("congresional" "congressional" nil :count 1)
("conived" "connived" nil :count 1)
("conjecutre" "conjecture" nil :count 1)
("conjuction" "conjunction" nil :count 1)
("Conneticut" "Connecticut" nil :count 1)
("conotations" "connotations" nil :count 1)
("conquerd" "conquered" nil :count 1)
("conquerer" "conqueror" nil :count 1)
("conquerers" "conquerors" nil :count 1)
("conqured" "conquered" nil :count 1)
("conscent" "consent" nil :count 1)
("consciouness" "consciousness" nil :count 1)
("consdider" "consider" nil :count 1)
("consdidered" "considered" nil :count 1)
("consdiered" "considered" nil :count 1)
("consectutive" "consecutive" nil :count 1)
("consenquently" "consequently" nil :count 1)
("consentrate" "concentrate" nil :count 1)
("consentrated" "concentrated" nil :count 1)
("consentrates" "concentrates" nil :count 1)
("consept" "concept" nil :count 1)
("consequentually" "consequently" nil :count 1)
("consequeseces" "consequences" nil :count 1)
("consern" "concern" nil :count 1)
("conserned" "concerned" nil :count 1)
("conserning" "concerning" nil :count 1)
("conservitive" "conservative" nil :count 1)
("consiciousness" "consciousness" nil :count 1)
("consicousness" "consciousness" nil :count 1)
("considerd" "considered" nil :count 1)
("consideres" "considered" nil :count 1)
("consious" "conscious" nil :count 1)
("consistant" "consistent" nil :count 1)
("consistantly" "consistently" nil :count 1)
("consituencies" "constituencies" nil :count 1)
("consituency" "constituency" nil :count 1)
("consituted" "constituted" nil :count 1)
("consitution" "constitution" nil :count 1)
("consitutional" "constitutional" nil :count 1)
("consolodate" "consolidate" nil :count 1)
("consolodated" "consolidated" nil :count 1)
("consonent" "consonant" nil :count 1)
("consonents" "consonants" nil :count 1)
("consorcium" "consortium" nil :count 1)
("conspiracys" "conspiracies" nil :count 1)
("conspiriator" "conspirator" nil :count 1)
("constaints" "constraints" nil :count 1)
("constanly" "constantly" nil :count 1)
("constarnation" "consternation" nil :count 1)
("constatn" "constant" nil :count 1)
("constinually" "continually" nil :count 1)
("constituant" "constituent" nil :count 1)
("constituants" "constituents" nil :count 1)
("constituion" "constitution" nil :count 1)
("constituional" "constitutional" nil :count 1)
("consttruction" "construction" nil :count 1)
("constuction" "construction" nil :count 1)
("contstruction" "construction" nil :count 1)
("consulant" "consultant" nil :count 1)
("consumate" "consummate" nil :count 1)
("consumated" "consummated" nil :count 1)
("contaiminate" "contaminate" nil :count 1)
("containes" "contains" nil :count 1)
("contamporaries" "contemporaries" nil :count 1)
("contamporary" "contemporary" nil :count 1)
("contempoary" "contemporary" nil :count 1)
("contemporaneus" "contemporaneous" nil :count 1)
("contempory" "contemporary" nil :count 1)
("contendor" "contender" nil :count 1)
("contian" "contain" nil :count 1)
("contians" "contains" nil :count 1)
("contibute" "contribute" nil :count 1)
("contibuted" "contributed" nil :count 1)
("contibutes" "contributes" nil :count 1)
("contigent" "contingent" nil :count 1)
("contined" "continued" nil :count 1)
("continential" "continental" nil :count 1)
("continous" "continuous" nil :count 1)
("continously" "continuously" nil :count 1)
("continueing" "continuing" nil :count 1)
("contravercial" "controversial" nil :count 1)
("contraversy" "controversy" nil :count 1)
("contributer" "contributor" nil :count 1)
("contributers" "contributors" nil :count 1)
("contritutions" "contributions" nil :count 1)
("controled" "controlled" nil :count 1)
("controling" "controlling" nil :count 1)
("controll" "control" nil :count 1)
("controlls" "controls" nil :count 1)
("controvercial" "controversial" nil :count 1)
("controvercy" "controversy" nil :count 1)
("controveries" "controversies" nil :count 1)
("controversal" "controversial" nil :count 1)
("controversey" "controversy" nil :count 1)
("controvertial" "controversial" nil :count 1)