-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHotstringLib.ahk
6125 lines (6112 loc) · 299 KB
/
HotstringLib.ahk
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
#SingleInstance
#Requires AutoHotkey v2+
; Library of HotStrings for AutoCorrect2. Please note that the f() function calls require the function that is defined in the AutoCorrect2 code.
; Library updated 1-16-2025
; ===== Trigger strings to nullify the potential misspellings that are indicated. ======
; Used the word "corrects" in place of fix to avoid double-counting these as potential fixes.
:B0*:horror:: ; Here for :?*:orror::error, which corrects 56 words.
:B0:Savitr:: ; (Important Hindu god) Here for :?:itr::it, which corrects 366 words.
:B0:Vaisyas:: ; (A member of the mercantile and professional Hindu caste.) Here for :?:syas::says, which corrects 12 words.
:B0:Wheatley:: ; (a fictional artificial intelligence from the Portal franchise) Here for :?:atley::ately, which corrects 162 words.
:B0:arraign:: ; Here for :?:ign::ing, which corrects 11384 words. (This is from the 2007 AutoCorrect script.)
:B0:bialy:: ; (Flat crusty-bottomed onion roll) Here for :?:ialy::ially, which corrects 244 words.
:B0:callsign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:champaign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:coign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:condign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:consign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:coreign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:cosign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:countersign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:deign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:deraign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:eloign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:ensign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:feign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:indign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:kc:: ; (thousand per second). Here for :?:kc::ck, which corrects 610 words.
:B0:malign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:miliary:: ; Here for :?:miliary::military, which corrects 4 words.
:B0:minyanim:: ; (The quorum required by Jewish law to be present for public worship) Here for :?:anim::anism, which corrects 123 words.
:B0:pfennig:: ; (100 pfennigs formerly equaled 1 Deutsche Mark in Germany). Here for :?:nig::ing, which corrects 11414 words.
:B0:reign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:sice:: ; (The number six at dice) Here for :?:sice::sive, which corrects 166 words.
:B0:sign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0:verisign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:align:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:assign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:benign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:campaign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:design:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:foreign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:resign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0?:sovereign:: ; Here for :?:ign::ing, which corrects 11384 words.
:B0C:AutoCorrect:: ; Here for :B0X*:rre::f("re") ; which correct 8199 words. But... Is is needed?
/*
Unfortunately, it doesn't work if the multi-fix item has :*: in the options. So these can't be nullified.
If you hope to ever type any of these words, locate the corresponding autocorrect item and delete it.
:B0:Ahvenanmaa:: ; also :Jahvey:, :Wahvey:, :Yahve:, :Yahveh: (Hebrew names for God.) Here for :?*:ahve::have, which corrects 47 words.
:B0:Basra:: ; (An oil city in Iraq) Here for :?*:asr::ase, which corrects 698 words.
:B0:Datapoint:: ; For username Datapoint. Here for :?*:apoint::appoint, which corrects 30 words.
:B0:Dennstaedtia:: ; (fern), Hoffmannsthal, (poet) Here for :?*:nnst::nst, which corrects 729 words.
:B0:Gadiformes:: ; (Cods, haddocks, grenadiers) Here for :?*:adif::atif, which corrects 50 words.
:B0:Illecebrum:: ; (Species of plan in Europe) Here for :?*:lece::lesce, which corrects 52 words.
:B0:Mephitinae:: ; (skunk), also :neritina: (snail) Here for :?*:itina::itiona, which corrects 79 words.
:B0:Minkowski:: ; (German mathematician) Here for :?*:nkow::know, which corrects 66 words.
:B0:Mulloidichthys:: ; a genus of Mullidae. Here for :*:dicht::dichot, which corrects 18 words.
:B0:Ondaatje:: ; (Canadian writer) Here for :?*:tje::the, which corrects 2176 words.
:B0:Phalangiidae:: ; (type of Huntsman spider) Here for :?*:giid::good, which corrects 31 words.
:B0:Prosecco:: ; (Italian wine) and recco (abbrev. for Reconnaissance) Here for :?*:ecco::eco, which corrects 994 words.
:B0:Pycnanthemum:: ; (mint), and Tridacna (giant clam).+ Here for :?*:cna::can, which corrects 1019 words.
:B0:Scincella:: ; (A reptile genus of Scincidae) Here for :?*:scince::science, which corrects 25 words.
:B0:Scirpus:: ; (Rhizomatous perennial grasslike herbs) Here for :?*:cirp::crip, which corrects 126 words.
:B0:Taoiseach:: ; (The prime minister of the Irish Republic) Here for :?*:seach::search, which corrects 25 words.
:B0:accroides:: ; (An alcohol-soluble resin) Here for :?*:accro::acro, which corrects 145 words.
:B0:ammeter:: ; (electrician's tool). Here for :*:amme::ame, which corrects 341 words.
:B0:braaivleis:: ; (Type of S. Affrican BBQ) Here for :?*:ivle::ivel, which corrects 589 words.
:B0:brodiaea:: ; (a type of plant) Here for :?*:brod::broad, which corrects 55 words.
:B0:ceviche:: ; (South American seafood dish) Here for :?*:cev::ceiv, which corrects 82 words.
:B0:darshan:: ; ((Hinduism - being in the presence of the divine or holy person or image) Here for :?*:rshan::rtion, which corrects 84 words.
:B0:emcee:: ; (host at formal occasion) Here for :?*:emce::ence, which corrects 775 words.
:B0:gaol:: ; British spelling of jail Here for :*:gaol::goal, which corrects 22 words.
:B0:grama:: ; (Pasture grass of plains of South America and western North America) Here for :?*:grama::gramma, which corrects 72 words.
:B0:indite:: ; (Produce a literary work) Here for :?*:indite::indict, which corrects 22 words.
:B0:itraconazole:: ; (Antifungal drug). Here for :*:itr::it, which corrects 101 words.
:B0:lisente:: ; (100 lisente equal 1 loti in Lesotho, S. Afterica) Here for :?*:lisen::licen, which corrects 34 words.
:B0:pemphigous:: ; (a skin disease) Here for :?*:igous::igious, which corrects 23 words.
:B0:seviche:: ; (South American dish of raw fish) Here for :?*:sevic::servic, which corrects 25 words.
:B0:spritual:: ; (A light spar that crosses a fore-and-aft sail diagonally) Here for :?*:spritual::spiritual, which corrects 31 words.Ne
:B0:spycatcher:: ; (secret spy stuff) Here for :?*:spyc::psyc, which corrects 192 words.
:B0:unfeasable:: ; (archaic, no longer used) Here for :?*:feasable::feasible, which corrects 11 words.
:B0:vicomte:: ; (French nobleman) Here for :?*C:comt::cont, which corrects 587 words.
*/
{ return ; This makes the above hotstrings do nothing so that they override the indicated rules below.
} ; ===== End of nullifier strings ==================
#Hotstring Z ; The Z causes the end char to be reset after each activation and helps prevent a zombie outbreak.
;===============================================================================
; When considering "conflicting" hotstrings, remember that sometimes conflicting autocorrect items can peacefully coexist... Read more in pdf manual, here https://github.com/kunkel321/AutoCorrect2
; The below "Don't Sort Items" Are "word beginning" matches to items in the main list and are supersets of the main list items. Therefore, they must appear before the corresponding items in the main list. It is okay to sort this sublist, but do NOT combine these items with the main list.
; ===== Beginning of Don't Sort items ==========
:B0X*:eyte::f("eye") ; Fixes 109 words
:B0X*:inteh::f("in the") ; Fixes 1 word
:B0X*:ireleven::f("irrelevan") ; Fixes 6 words
:B0X*:managerial reign::f("managerial rein") ; Fixes 2 word
:B0X*:minsitr::f("ministr") ; Fixes 6 words
:B0X*:peculure::f("peculiar") ; Fixes 5 words
:B0X*:presed::f("presid") ; Fixes 18 words
:B0X*:recommed::f("recommend") ; Fixes 12 words
:B0X*:thge::f("the") ; Fixes 402 words
:B0X*:thsi::f("this") ; Fixes 7 words
:B0X*:trafic::f("traffic") ; Fixes 13 words
:B0X*:unkow::f("unknow") ; Fixes 14 words
:B0X*?:abotu::f("about") ; Fixes 37 words
:B0X*?:allign::f("align") ; Fixes 41 words
:B0X*?:arign::f("aring") ; Fixes 140 words
:B0X*?:asign::f("assign") ; Fixes 27
:B0X*?:awya::f("away") ; Fixes 46 words
:B0X*?:bakc::f("back") ; Fixes 410 words
:B0X*?:blihs::f("blish") ; Fixes 56 words
:B0X*?:charecter::f("character") ; Fixes 38 words
:B0X*?:comnt::f("cont") ; Fixes 587 words
:B0X*?:degred::f("degrad") ; Fixes 31 words
:B0X*?:dessign::f("design") ; Fixes 51 words
:B0X*?:disign::f("design") ; Fixes 51 words
:B0X*?:dquater::f("dquarter") ; Fixes 6 words
:B0X*?:easr::f("ears") ; Fixes 102 words
:B0X*?:ecomon::f("econom") ; Fixes 50 words
:B0X*?:esorce::f("esource") ; Fixes 11 words
:B0X*?:juristiction::f("jurisdiction") ; Fixes 4 words
:B0X*?:konw::f("know") ; Fixes 66 words
:B0X*?:mmorow::f("morrow") ; Fixes 4 words
:B0X*?:ngiht::f("night") ; Fixes 103 words
:B0X*?:orign::f("origin") ; Fixes 37 words
:B0X*?:rnign::f("rning") ; Fixes 77 words
:B0X*?:sensur::f("censur") ; Fixes 12 words
:B0X*?:soverign::f("sovereign") ; Fixes 10 words
:B0X*?:ssurect::f("surrect") ; Fixes 15 words
:B0X*?:tatn::f("tant") ; Fixes 530 words
:B0X*?:thakn::f("thank") ; Fixes 19 words
:B0X*?:thnig::f("thing") ; Fixes 103 words
:B0X*?:threatn::f("threaten") ; Fixes 10 words
:B0X*?:tihkn::f("think") ; Fixes 43 words
:B0X*?:tiojn::f("tion") ; Fixes 7052 words
:B0X*?:visiosn::f("vision") ; Fixes 51 words
:B0X*C:i)::f("i)") ; Fixes 1 word
:B0X:addign::f("assign") ; Fixes 1 word
:B0X:doesnt::f("doesn't") ; Fixes 1 word
:B0X:inprocess::f("in process") ; Fixes 1 word
:B0X?:adresing::f("addressing") ; Fixes 3 words
:B0X?:clas::f("class") ; Fixes 8 words
:B0X?:efull::f("eful") ; Fixes 74 words
:B0X?:ficaly::f("fically") ; Fixes 20 words
; ---- Items from accented list, but must be in no-sort section ----
::decollete::décolleté ; adj. (of a garment) having a low-cut neckline
::manana::mañana ; Spanish: Tomorrow.
; ===== End of Don't Sort items ===========
;============== Determine start line of autocorrect items ======================
; If this variable name or assignment gets changed, also change it in the Conflicting String Locator script.
ACitemsStartAt := A_LineNumber + 3 ; hh2 validity checks will skip lines until it gets to here.
; ===== Main List ==========================
:*?:becavi::behavi
:*?:compine::combine
:B0*:icon cash::icon cache
:B0X*:Buddist::f("Buddhist") ; Fixes 3 words
:B0X*:Feburary::f("February") ; Fixes 1 word
:B0X*:Hatian::f("Haitian") ; Fixes 2 words
:B0X*:Isaax ::f("Isaac") ; Fixes 1 word
:B0X*:Israelies::f("Israelis") ; Fixes 1 word
:B0X*:Janurary::f("January") ; Fixes 1 word
:B0X*:Januray::f("January") ; Fixes 1 word
:B0X*:Karent::f("Karen") ; Fixes 1 word
:B0X*:Montnana::f("Montana") ; Fixes 1 word
:B0X*:Naploeon::f("Napoleon") ; Fixes 6 words
:B0X*:Napolean::f("Napoleon") ; Fixes 6 words
:B0X*:Novermber::f("November") ; Fixes 1 word
:B0X*:Pennyslvania::f("Pennsylvania") ; Fixes 3 words
:B0X*:Queenland::f("Queensland") ; Fixes 3 words
:B0X*:Sacremento::f("Sacramento") ; Fixes 1 word
:B0X*:Straight of::f("Strait of") ; geography ; Fixes 1 word
:B0X*:ToolTop::f("ToolTip") ; Fixes 1 word
:B0X*:a FM::f("an FM") ; Fixes 1 word
:B0X*:a MRI::f("an MRI") ; Fixes 1 word
:B0X*:a ab::f("an ab") ; Fixes 1 word
:B0X*:a ac::f("an ac") ; Fixes 1 word
:B0X*:a ad::f("an ad") ; Fixes 1 word
:B0X*:a af::f("an af") ; Fixes 1 word
:B0X*:a ag::f("an ag") ; Fixes 1 word
:B0X*:a al::f("an al") ; Fixes 1 word
:B0X*:a am::f("an am") ; Fixes 1 word
:B0X*:a an::f("an an") ; Fixes 1 word
:B0X*:a ap::f("an ap") ; Fixes 1 word
:B0X*:a as::f("an as") ; Fixes 1 word
:B0X*:a av::f("an av") ; Fixes 1 word
:B0X*:a aw::f("an aw") ; Fixes 1 word
:B0X*:a businessmen::f("a businessman") ; Fixes 1 word
:B0X*:a businesswomen::f("a businesswoman") ; Fixes 1 word
:B0X*:a consortia::f("a consortium") ; Fixes 1 word
:B0X*:a criteria::f("a criterion") ; Fixes 1 word
:B0X*:a ea::f("an ea") ; Fixes 1 word
:B0X*:a ef::f("an ef") ; Fixes 1 word
:B0X*:a ei::f("an ei") ; Fixes 1 word
:B0X*:a el::f("an el") ; Fixes 1 word
:B0X*:a em::f("an em") ; Fixes 1 word
:B0X*:a en::f("an en") ; Fixes 1 word
:B0X*:a ep::f("an ep") ; Fixes 1 word
:B0X*:a eq::f("an eq") ; Fixes 1 word
:B0X*:a es::f("an es") ; Fixes 1 word
:B0X*:a et::f("an et") ; Fixes 1 word
:B0X*:a ex::f("an ex") ; Fixes 1 word
:B0X*:a falling out::f("a falling-out") ; Fixes 1 word
:B0X*:a firemen::f("a fireman") ; Fixes 1 word
:B0X*:a flagella::f("a flagellum") ; Fixes 1 word
:B0X*:a forward by::f("a foreword by") ; Fixes 1 word
:B0X*:a freshmen::f("a freshman") ; Fixes 1 word
:B0X*:a fungi::f("a fungus") ; Fixes 1 word
:B0X*:a gunmen::f("a gunman") ; Fixes 1 word
:B0X*:a heir::f("an heir") ; Fixes 1 word
:B0X*:a herb::f("an herb") ; Fixes 1 word
:B0X*:a honest::f("an honest") ; Fixes 1 word
:B0X*:a honor::f("an honor") ; Fixes 1 word
:B0X*:a hour::f("an hour") ; Fixes 1 word
:B0X*:a ic::f("an ic") ; Fixes 1 word
:B0X*:a id::f("an id") ; Fixes 1 word
:B0X*:a ig::f("an ig") ; Fixes 1 word
:B0X*:a il::f("an il") ; Fixes 1 word
:B0X*:a im::f("an im") ; Fixes 1 word
:B0X*:a in::f("an in") ; Fixes 1 word
:B0X*:a ir::f("an ir") ; Fixes 1 word
:B0X*:a is::f("an is") ; Fixes 1 word
:B0X*:a larvae::f("a larva") ; Fixes 1 word
:B0X*:a lock up::f("a lockup") ; Fixes 1 word
:B0X*:a nuclei::f("a nucleus") ; Fixes 1 word
:B0X*:a numbers of::f("a number of") ; Fixes 1 word
:B0X*:a oa::f("an oa") ; Fixes 1 word
:B0X*:a ob::f("an ob") ; Fixes 1 word
:B0X*:a ocean::f("an ocean") ; Fixes 1 word
:B0X*:a offen::f("an offen; Fixes 1 word")
:B0X*:a offic::f("an offic") ; Fixes 1 word
:B0X*:a oi::f("an oi") ; Fixes 1 word
:B0X*:a ol::f("an ol") ; Fixes 1 word
:B0X*:a one of the::f("one of the") ; Fixes 1 word
:B0X*:a op::f("an op") ; Fixes 1 word
:B0X*:a or::f("an or") ; Fixes 1 word
:B0X*:a os::f("an os") ; Fixes 1 word
:B0X*:a ot::f("an ot") ; Fixes 1 word
:B0X*:a ou::f("an ou") ; Fixes 1 word
:B0X*:a ov::f("an ov") ; Fixes 1 word
:B0X*:a ow::f("an ow") ; Fixes 1 word
:B0X*:a parentheses::f("a parenthesis") ; Fixes 1 word
:B0X*:a pupae::f("a pupa") ; Fixes 1 word
:B0X*:a radii::f("a radius") ; Fixes 1 word
:B0X*:a regular bases::f("a regular basis") ; Fixes 1 word
:B0X*:a resent::f("a recent") ; Fixes 1 word
:B0X*:a run in::f("a run-in") ; Fixes 1 word
:B0X*:a set back::f("a set-back") ; Fixes 1 word
:B0X*:a set up::f("a setup") ; Fixes 1 word
:B0X*:a several::f("several") ; Fixes 1 word
:B0X*:a simple as::f("as simple as") ; Fixes 1 word
:B0X*:a spermatozoa::f("a spermatozoon") ; Fixes 1 word
:B0X*:a statesmen::f("a statesman") ; Fixes 1 word
:B0X*:a two months::f("a two-month") ; Fixes 1 word
:B0X*:a ud::f("an ud") ; Fixes 1 word
:B0X*:a ug::f("an ug") ; Fixes 1 word
:B0X*:a ul::f("an ul") ; Fixes 1 word
:B0X*:a um::f("an um") ; Fixes 1 word
:B0X*:a up::f("an up") ; Fixes 1 word
:B0X*:a urban::f("an urban") ; Fixes 1 word
:B0X*:a vertebrae::f("a vertebra") ; Fixes 1 word
:B0X*:a women::f("a woman") ; Fixes 1 word
:B0X*:a work out::f("a workout") ; Fixes 1 word
:B0X*:abandonned::f("abandoned") ; Fixes 2 words
:B0X*:abcense::f("absence") ; Fixes 2 words
:B0X*:abera::f("aberra") ; Fixes 15 words
:B0X*:abondon::f("abandon") ; Fixes 8 words
:B0X*:about it's::f("about its") ; Fixes 1 word
:B0X*:about they're::f("about their") ; Fixes 1 word
:B0X*:about who to::f("about whom to") ; Fixes 1 word
:B0X*:about who's::f("about whose") ; Fixes 1 word
:B0X*:abouta::f("about a") ; Fixes 1 word
:B0X*:aboutit::f("about it") ; Fixes 1 word
:B0X*:above it's::f("above its") ; Fixes 1 word
:B0X*:abreviat::f("abbreviat") ; Fixes 9 words
:B0X*:absail::f("abseil") ; Fixes 6 words
:B0X*:abscen::f("absen") ; Fixes 16 words
:B0X*:absense::f("absence") ; Fixes 2 words
:B0X*:abutts::f("abuts") ; Fixes 1 word
:B0X*:accidently::f("accidentally") ; Fixes 1 word
:B0X*:acclimit::f("acclimat") ; Fixes 18 words
:B0X*:accomd::f("accommod") ; Fixes 16 words
:B0X*:accordeon::f("accordion") ; Fixes 4 words
:B0X*:accordian::f("accordion") ; Fixes 4 words
:B0X*:according a::f("according to a") ; Fixes 1 word
:B0X*:accordingto::f("according to") ; Fixes 1 word
:B0X*:achei::f("achie") ; Fixes 12 words
:B0X*:achiv::f("achiev") ; Fixes 10 words
:B0X*:aciden::f("acciden") ; Fixes 8 words
:B0X*:ackward::f("awkward") ; Fixes 5 words
:B0X*:acord::f("accord") ; Fixes 15 words
:B0X*:acquite::f("acquitte") ; Fixes 3 words
:B0X*:across it's::f("across its") ; Fixes 1 word
:B0X*:acuse::f("accuse") ; Fixes 6 words
:B0X*:adbandon::f("abandon") ; Fixes 8 words
:B0X*:adhear::f("adher") ; Fixes 9 words
:B0X*:adheran::f("adheren") ; Fixes 5 words
:B0X*:adresa::f("addressa") ; Fixes 3 words
:B0X*:adress::f("address") ; Fixes 13 words
:B0X*:adves::f("advers") ; Fixes 11 words
:B0X*:afair::f("affair") ; Fixes 4 words
:B0X*:affect upon::f("effect upon") ; Fixes 1 word
:B0X*:afficianado::f("aficionado") ; Fixes 2 words
:B0X*:afficionado::f("aficionado") ; Fixes 2 words
:B0X*:after along time::f("after a long time") ; Fixes 1 word
:B0X*:after awhile::f("after a while") ; Fixes 1 word
:B0X*:after been::f("after being") ; Fixes 1 word
:B0X*:after it's::f("after its") ; Fixes 1 word
:B0X*:after quite awhile::f("after quite a while") ; Fixes 1 word
:B0X*:against it's::f("against its") ; Fixes 1 word
:B0X*:againstt he::f("against the") ; Fixes 1 word
:B0X*:agani::f("again") ; Fixes 2 words
:B0X*:aggregious::f("egregious") ; Fixes 3 words
:B0X*:agian::f("again") ; Fixes 2 words
:B0X*:agina::f("again") ; Fixes 2 words
:B0X*:aginst::f("against") ; Fixes 1 word
:B0X*:agriev::f("aggriev") ; Fixes 5 words
:B0X*:ahjk::f("ahk") ; Fixes 1 word
:B0X*:aiport::f("airport") ; Fixes 2 words
:B0X*:airbourne::f("airborne") ; Fixes 1 word
:B0X*:airplane hanger::f("airplane hangar") ; Fixes 1 word
:B0X*:airporta::f("airports") ; Fixes 1 word
:B0X*:airrcraft::f("aircraft") ; Fixes 1 word
:B0X*:akk::f("all") ; Fixes 1 word
:B0X*:albiet::f("albeit") ; Fixes 1 word
:B0X*:aledg::f("alleg") ; Fixes 46 words
:B0X*:alege::f("allege") ; Fixes 6 words
:B0X*:alegien::f("allegian") ; Fixes 5 words
:B0X*:algebraical::f("algebraic") ; Fixes 3 words
:B0X*:alientat::f("alienat") ; Fixes 8 words
:B0X*:all it's::f("all its") ; Fixes 1 word
:B0X*:all tolled::f("all told") ; Fixes 1 word
:B0X*:alledg::f("alleg") ; Fixes 46 words
:B0X*:allegedy::f("allegedly") ; Fixes 1 word
:B0X*:allegely::f("allegedly") ; Fixes 1 word
:B0X*:allivia::f("allevia") ; Fixes 12 words
:B0X*:allopon::f("allophon") ; Fixes 4 words
:B0X*:allot of::f("a lot of") ; Fixes 1 word
:B0X*:allready::f("already") ; Fixes 1 word
:B0X*:alltime::f("all-time") ; Fixes 1 word
:B0X*:alma matter::f("alma mater") ; Fixes 1 word
:B0X*:almots::f("almost") ; Fixes 1 word
:B0X*:along it's::f("along its") ; Fixes 1 word
:B0X*:along side::f("alongside") ; Fixes 1 word
:B0X*:along time::f("a long time") ; Fixes 1 word
:B0X*:alongside it's::f("alongside its") ; Fixes 1 word
:B0X*:alter boy::f("altar boy") ; Fixes 1 word
:B0X*:alter server::f("altar server") ; Fixes 1 word
:B0X*:alterior::f("ulterior") ; Fixes 4 words
:B0X*:alternit::f("alternat") ; Fixes 15 words
:B0X*:althought::f("although") ; Fixes 1 word
:B0X*:altoug::f("althoug") ; Fixes 1 word
:B0X*:alusi::f("allusi") ; Fixes 5 words
:B0X*:am loathe to::f("am loath to") ; Fixes 1 word
:B0X*:amalgom::f("amalgam") ; Fixes 11 words
:B0X*:amature::f("amateur") ; Fixes 7 words
:B0X*:amid it's::f("amid its") ; Fixes 1 word
:B0X*:amidst it's::f("amidst its") ; Fixes 1 word
:B0X*:amme::f("ame") ; Fixes 341 words, Misspells ammeter (electrician's tool).
:B0X*:ammuse::f("amuse") ; Fixes 6 words.
:B0X*:among it's::f("among it") ; Fixes 1 word
:B0X*:among others things::f("among other things") ; Fixes 1 word
:B0X*:amongst it's::f("amongst its") ; Fixes 1 word
:B0X*:amongst one of the::f("amongst the") ; Fixes 1 word
:B0X*:amongst others things::f("amongst other things") ; Fixes 1 word
:B0X*:amung::f("among") ; Fixes 2 words
:B0X*:amunition::f("ammunition") ; Fixes 2 words
:B0X*:an USB::f("a USB") ; Fixes 1 word
:B0X*:an Unix::f("a Unix") ; Fixes 1 word
:B0X*:an another::f("another") ; Fixes 1 word
:B0X*:an antennae::f("an antenna") ; Fixes 1 word
:B0X*:an film::f("a film") ; Fixes 1 word
:B0X*:an half::f("a half") ; Fixes 1 word
:B0X*:an halt::f("a halt") ; Fixes 1 word
:B0X*:an hand::f("a hand") ; Fixes 1 word
:B0X*:an head::f("a head") ; Fixes 1 word
:B0X*:an heart::f("a heart") ; Fixes 1 word
:B0X*:an helicopter::f("a helicopter") ; Fixes 1 word
:B0X*:an hero::f("a hero") ; Fixes 1 word
:B0X*:an high::f("a high") ; Fixes 1 word
:B0X*:an histor::f("a histor") ; Fixes 1 word
:B0X*:an hospital::f("a hospital") ; Fixes 1 word
:B0X*:an hotel::f("a hotel") ; Fixes 1 word
:B0X*:an humanitarian::f("a humanitarian") ; Fixes 1 word
:B0X*:an large::f("a large")
:B0X*:an law::f("a law") ; Fixes 1 word
:B0X*:an local::f("a local") ; Fixes 1 word
:B0X*:an new::f("a new") ; Fixes 1 word
:B0X*:an nin::f("a nin") ; Fixes 1 word
:B0X*:an non::f("a non") ; Fixes 1 word
:B0X*:an number::f("a number") ; Fixes 1 word
:B0X*:an pair::f("a pair") ; Fixes 1 word
:B0X*:an player::f("a player") ; Fixes 1 word
:B0X*:an popular::f("a popular") ; Fixes 1 word
:B0X*:an pre-::f("a pre-") ; Fixes 1 word
:B0X*:an sec::f("a sec") ; Fixes 199 word
:B0X*:an ser::f("a ser") ; Fixes 293 word
:B0X*:an seven::f("a seven") ; Fixes 1 word
:B0X*:an six::f("a six") ; Fixes 1 word
:B0X*:an song::f("a song") ; Fixes 1 word
:B0X*:an spec::f("a spec") ; Fixes 1 word
:B0X*:an stat::f("a stat") ; Fixes 1 word
:B0X*:an ten::f("a ten") ; Fixes 1 word
:B0X*:an union::f("a union") ; Fixes 1 word
:B0X*:an unit::f("a unit") ; Fixes 1 word
:B0X*:analag::f("analog") ; Fixes 23 words
:B0X*:anarchim::f("anarchism") ; Fixes 2 words
:B0X*:anarchistm::f("anarchism") ; Fixes 1 word
:B0X*:and so fourth::f("and so forth") ; Fixes 1 word
:B0X*:andd::f("and") ; Fixes 73 words
:B0X*:andone::f("and one") ; Fixes 1 word
:B0X*:androgenous::f("androgynous") ; Fixes 3 words
:B0X*:androgeny::f("androgyny") ; Fixes 1 word
:B0X*:anih::f("annih") ; Fixes 9 words
:B0X*:aniv::f("anniv") ; Fixes 2 words
:B0X*:anonim::f("anonym") ; Fixes 19 words
:B0X*:anoyance::f("annoyance") ; Fixes 2 words
:B0X*:ansal::f("nasal") ; Fixes 20 words
:B0X*:ansest::f("ancest") ; Fixes 8 words
:B0X*:antartic::f("antarctic") ; Fixes 2 words
:B0X*:anthrom::f("anthropom") ; Fixes 27 words
:B0X*:anti-semetic::f("anti-Semitic") ; Fixes 1 word
:B0X*:antiapartheid::f("anti-apartheid") ; Fixes 1 word
:B0X*:anual::f("annual") ; Fixes 15 words
:B0X*:anul::f("annul") ; Fixes 17 words
:B0X*:any another::f("another") ; Fixes 1 word
:B0X*:any resent::f("any recent") ; Fixes 1 word
:B0X*:any where::f("anywhere") ; Fixes 1 word
:B0X*:anyother::f("any other") ; Fixes 1 word
:B0X*:anytying::f("anything") ; Fixes 1 word
:B0X*:aoubt::f("about") ; Fixes 2 words
:B0X*:apart form::f("apart from") ; Fixes 1 word
:B0X*:aproxim::f("approxim") ; Fixes 14 words
:B0X*:aquaduct::f("aqueduct") ; Fixes 2 words
:B0X*:aquir::f("acquir") ; Fixes 12 words
:B0X*:arbouret::f("arboret") ; Fixes 3 words
:B0X*:archiac::f("archaic") ; Fixes 6 words
:B0X*:archimedian::f("Archimedean") ; Fixes 1 word
:B0X*:archtyp::f("archetyp") ; Fixes 6 words
:B0X*:are aloud to::f("are allowed to") ; Fixes 1 word
:B0X*:are build::f("are built") ; Fixes 1 word
:B0X*:are drew::f("are drawn") ; Fixes 1 word
:B0X*:are it's::f("are its") ; Fixes 1 word
:B0X*:are know::f("are known") ; Fixes 1 word
:B0X*:are lain::f("are laid") ; Fixes 1 word
:B0X*:are lead by::f("are led by") ; Fixes 1 word
:B0X*:are loathe to::f("are loath to") ; Fixes 1 word
:B0X*:are ran by::f("are run by") ; Fixes 1 word
:B0X*:are set-up::f("are set up") ; Fixes 1 word
:B0X*:are setup::f("are set up") ; Fixes 1 word
:B0X*:are shutdown::f("are shut down") ; Fixes 1 word
:B0X*:are shutout::f("are shut out") ; Fixes 1 word
:B0X*:are suppose to::f("are supposed to") ; Fixes 1 word
:B0X*:are use to::f("are used to") ; Fixes 1 word
:B0X*:aready::f("already") ; Fixes 1 word
:B0X*:areod::f("aerod") ; Fixes 10 words
:B0X*:arised::f("arose") ; Fixes 1 word
:B0X*:ariv::f("arriv") ; Fixes 11 words
:B0X*:armistace::f("armistice") ; Fixes 2 words
:B0X*:arn't::f("aren't") ; Fixes 1 word
:B0X*:arogan::f("arrogan") ; Fixes 6 words
:B0X*:arond::f("around") ; Fixes 1 word
:B0X*:aroud::f("around") ; Fixes 1 word
:B0X*:around it's::f("around its") ; Fixes 1 word
:B0X*:arren::f("arran") ; Fixes 12 words
:B0X*:arrou::f("arou") ; Fixes 11 words
:B0X*:artc::f("artic") ; Fixes 26 words
:B0X*:artical::f("article") ; Fixes 3 words
:B0X*:artifical::f("artificial") ; Fixes 6 words
:B0X*:artillar::f("artiller") ; Fixes 6 words
:B0X*:as a resulted::f("as a result") ; Fixes 1 word
:B0X*:as apposed to::f("as opposed to") ; Fixes 1 word
:B0X*:as back up::f("as backup") ; Fixes 1 word
:B0X*:as oppose to::f("as opposed to") ; Fixes 1 word
:B0X*:asetic::f("ascetic") ; Fixes 6 words
:B0X*:asfar::f("as far") ; Fixes 1 word
:B0X*:aside form::f("aside from") ; Fixes 1 word
:B0X*:aside it's::f("aside its") ; Fixes 1 word
:B0X*:aspect ration::f("aspect ratio") ; Fixes 1 word
:B0X*:asphyxa::f("asphyxia") ; Fixes 13 words
:B0X*:assasin::f("assassin") ; Fixes 10 words
:B0X*:assesment::f("assessment") ; Fixes 4 words
:B0X*:asside::f("aside") ; Fixes 2 words
:B0X*:assignement::f("assignment") ; Fixes 2 words
:B0X*:assisnat::f("assassinat") ; Fixes 8 words
:B0X*:assistent::f("assistant") ; Fixes 4 words
:B0X*:assit::f("assist") ; Fixes 14 words
:B0X*:assualt::f("assault") ; Fixes 10 words
:B0X*:assume the reigns::f("assume the reins") ; Fixes 1 word
:B0X*:assume the roll::f("assume the role") ; Fixes 1 word
:B0X*:asum::f("assum") ; Fixes 19 words
:B0X*:aswell::f("as well") ; Fixes 1 word
:B0X*:at it's::f("at its") ; Fixes 1 word
:B0X*:at of::f("at or") ; Fixes 1 word
:B0X*:at the alter::f("at the altar") ; Fixes 1 word
:B0X*:at the reigns::f("at the reins") ; Fixes 1 word
:B0X*:at then end::f("at the end") ; Fixes 1 word
:B0X*:at-rist::f("at-risk ") ; Fixes 1 word
:B0X*:atheistical::f("atheistic") ; Fixes 1 word
:B0X*:athenean::f("Athenian") ; Fixes 2 words
:B0X*:atleast::f("at least") ; Fixes 1 word
:B0X*:atn::f("ant") ; Fixes 704 words
:B0X*:atorne::f("attorne") ; Fixes 5 words
:B0X*:attened::f("attended") ; Fixes 1 word
:B0X*:attourne::f("attorne") ; Fixes 5 words
:B0X*:attroci::f("atroci") ; Fixes 5 words
:B0X*:auot::f("auto") ; Fixes 1 word
:B0X*:auromat::f("automat") ; Fixes 36 words
:B0X*:austrailia::f("Australia") ; Fixes 14 words
:B0X*:authorative::f("authoritative") ; Fixes 3 words
:B0X*:authorites::f("authorities") ; Fixes 1 word
:B0X*:authoritive::f("authoritative") ; Fixes 3 words
:B0X*:autochtonous::f("autochthonous") ; Fixes 3 words
:B0X*:autocton::f("autochthon") ; Fixes 10 words
:B0X*:autorit::f("authorit") ; Fixes 9 words
:B0X*:autsim::f("autism") ; Fixes 2 words
:B0X*:auxilar::f("auxiliar") ; Fixes 2 words
:B0X*:auxillar::f("auxiliar") ; Fixes 2 words
:B0X*:auxilliar::f("auxiliar") ; Fixes 2 words
:B0X*:avalance::f("avalanche") ; Fixes 3 words
:B0X*:avati::f("aviati") ; Fixes 3 words
:B0X*:avengence::f("a vengeance") ; Fixes 1 word
:B0X*:averagee::f("average") ; Fixes 5 words
:B0X*:away form::f("away from") ; Fixes 1 word
:B0X*:aywa::f("away") ; Fixes 4 words
:B0X*:baceause::f("because") ; Fixes 1 word
:B0X*:back and fourth::f("back and forth") ; Fixes 1 word
:B0X*:back drop::f("backdrop") ; Fixes 1 word
:B0X*:back fire::f("backfire") ; Fixes 1 word
:B0X*:back peddle::f("backpedal") ; Fixes 1 word
:B0X*:back round::f("background") ; Fixes 1 word
:B0X*:badly effected::f("badly affected") ; Fixes 1 word
:B0X*:baited breath::f("bated breath") ; Fixes 1 word
:B0X*:baled out::f("bailed out") ; Fixes 1 word
:B0X*:baling out::f("bailing out") ; Fixes 1 word
:B0X*:bananna::f("banana") ; Fixes 2 words
:B0X*:bandonn::f("abandon") ; Fixes 8 words
:B0X*:bandwith::f("bandwidth") ; Fixes 2 words
:B0X*:bankrupc::f("bankruptc") ; Fixes 2 words
:B0X*:banrupt::f("bankrupt") ; Fixes 7 words
:B0X*:barb wire::f("barbed wire") ; Fixes 2 words
:B0X*:bare the brunt::f("bear the brunt") ; Fixes 1 word
:B0X*:bare the burden::f("bear the burden") ; Fixes 1 word
:B0X*:bare the consequence::f("bear the consequence") ; Fixes 1 word
:B0X*:bare the cost::f("bear the cost") ; Fixes 1 word
:B0X*:bare the pain::f("bear the pain") ; Fixes 1 word
:B0X*:barily::f("barely") ; Fixes 1 word
:B0X*:basic principal::f("basic principle") ; Fixes 1 word
:B0X*:be apart of::f("be a part of") ; Fixes 1 word
:B0X*:be build::f("be built") ; Fixes 1 word
:B0X*:be cause::f("because") ; Fixes 1 word
:B0X*:be drew::f("be drawn") ; Fixes 1 word
:B0X*:be it's::f("be its") ; Fixes 1 word
:B0X*:be know as::f("be known as") ; Fixes 1 word
:B0X*:be lain::f("be laid") ; Fixes 1 word
:B0X*:be lead by::f("be led by") ; Fixes 1 word
:B0X*:be loathe to::f("be loath to") ; Fixes 1 word
:B0X*:be rebuild::f("be rebuilt") ; Fixes 1 word
:B0X*:be set-up::f("be set up") ; Fixes 1 word
:B0X*:be setup::f("be set up") ; Fixes 1 word
:B0X*:be shutdown::f("be shut down") ; Fixes 1 word
:B0X*:be use to::f("be used to") ; Fixes 1 word
:B0X*:be ware::f("beware") ; Fixes 1 word
:B0X*:beachead::f("beachhead") ; Fixes 2 words
:B0X*:beacuse::f("because") ; Fixes 1 word
:B0X*:beastia::f("bestia") ; Fixes 14 words
:B0X*:became it's::f("became its") ; Fixes 1 word
:B0X*:because of it's::f("because of its") ; Fixes 1 word
:B0X*:becausea::f("because a") ; Fixes 1 word
:B0X*:becauseof::f("because of") ; Fixes 1 word
:B0X*:becausethe::f("because the") ; Fixes 1 word
:B0X*:becauseyou::f("because you") ; Fixes 1 word
:B0X*:beccause::f("because") ; Fixes 1 word
:B0X*:becouse::f("because") ; Fixes 1 word
:B0X*:becuse::f("because") ; Fixes 1 word
:B0X*:been accustom to::f("been accustomed to") ; Fixes 1 word
:B0X*:been build::f("been built") ; Fixes 1 word
:B0X*:been it's::f("been its") ; Fixes 1 word
:B0X*:been lain::f("been laid") ; Fixes 1 word
:B0X*:been lead by::f("been led by") ; Fixes 1 word
:B0X*:been loathe to::f("been loath to") ; Fixes 1 word
:B0X*:been mislead::f("been misled") ; Fixes 1 word
:B0X*:been rebuild::f("been rebuilt") ; Fixes 1 word
:B0X*:been set-up::f("been set up") ; Fixes 1 word
:B0X*:been setup::f("been set up") ; Fixes 1 word
:B0X*:been show on::f("been shown on") ; Fixes 1 word
:B0X*:been shutdown::f("been shut down") ; Fixes 1 word
:B0X*:been use to::f("been used to") ; Fixes 1 word
:B0X*:before hand::f("beforehand") ; Fixes 1 word
:B0X*:began it's::f("began its") ; Fixes 1 word
:B0X*:begginer::f("beginner") ; Fixes 2 words
:B0X*:beggining::f("beginning") ; Fixes 3 words
:B0X*:beggins::f("begins") ; Fixes 1 word
:B0X*:begining::f("beginning") ; Fixes 3 words
:B0X*:behind it's::f("behind its") ; Fixes 1 word
:B0X*:being build::f("being built") ; Fixes 1 word
:B0X*:being it's::f("being its") ; Fixes 1 word
:B0X*:being lain::f("being laid") ; Fixes 1 word
:B0X*:being lead by::f("being led by") ; Fixes 1 word
:B0X*:being loathe to::f("being loath to") ; Fixes 1 word
:B0X*:being set-up::f("being set up") ; Fixes 1 word
:B0X*:being setup::f("being set up") ; Fixes 1 word
:B0X*:being show on::f("being shown on") ; Fixes 1 word
:B0X*:being shutdown::f("being shut down") ; Fixes 1 word
:B0X*:being use to::f("being used to") ; Fixes 1 word
:B0X*:beligum::f("Belgium") ; Fixes 1 word
:B0X*:belived::f("believed") ; Fixes 1 word
:B0X*:belives::f("believes") ; Fixes 1 word
:B0X*:bellweather::f("bellwether") ; Fixes 2 words
:B0X*:below it's::f("below its") ; Fixes 1 word
:B0X*:beneath it's::f("beneath its") ; Fixes 1 word
:B0X*:bergamont::f("bergamot") ; Fixes 2 words
:B0X*:beseig::f("besieg") ; Fixes 9 words
:B0X*:beside it's::f("beside its") ; Fixes 1 word
:B0X*:besides it's::f("besides its") ; Fixes 1 word
:B0X*:beteen::f("between") ; Fixes 3 words
:B0X*:better know as::f("better known as") ; Fixes 1 word
:B0X*:better know for::f("better known for") ; Fixes 1 word
:B0X*:better then::f("better than") ; Fixes 1 word
:B0X*:between I and::f("between me and") ; Fixes 1 word
:B0X*:between he and::f("between him and") ; Fixes 1 word
:B0X*:between it's::f("between its") ; Fixes 1 word
:B0X*:between they and::f("between them and") ; Fixes 1 word
:B0X*:betwen::f("between") ; Fixes 3 words
:B0X*:beut::f("beaut") ; Fixes 20 words
:B0X*:beween::f("between") ; Fixes 3 words
:B0X*:bewteen::f("between") ; Fixes 3 words
:B0X*:bewwe::f("betwe") ; Fixes 7 words
:B0X*:beyond it's::f("beyond its") ; Fixes 1 word
:B0X*:biginning::f("beginning") ; Fixes 3 words
:B0X*:billingual::f("bilingual") ; Fixes 7 words
:B0X*:bizzare::f("bizarre") ; Fixes 3 words
:B0X*:blaim::f("blame") ; Fixes 14 words
:B0X*:blitzkreig::f("Blitzkrieg") ; Fixes 4 words
:B0X*:bodydbuilder::f("bodybuilder") ; Fixes 2 words
:B0X*:bonifide::f("bonafide") ; Fixes 1 word
:B0X*:bonofide::f("bonafide") ; Fixes 1 word
:B0X*:both it's::f("both its") ; Fixes 1 word
:B0X*:both of it's::f("both of its") ; Fixes 1 word
:B0X*:both of them is::f("both of them are") ; Fixes 1 word
:B0X*:boyan::f("buoyan") ; Fixes 5 words
:B0X*:brake away::f("break away") ; Fixes 1 word
:B0X*:brake the rule::f("break the rule") ; Fixes 1 word
:B0X*:brake through::f("break through") ; Fixes 1 word
:B0X*:brasillian::f("Brazilian") ; Fixes 2 words
:B0X*:breakthough::f("breakthrough") ; Fixes 2 words
:B0X*:breakthroughts::f("breakthroughs") ; Fixes 1 word
:B0X*:breath fire::f("breathe fire") ; Fixes 1 word
:B0X*:brethen::f("brethren") ; Fixes 1 word
:B0X*:bretheren::f("brethren") ; Fixes 1 word
:B0X*:brew haha::f("brouhaha") ; Fixes 1 word
:B0X*:brillan::f("brillian") ; Fixes 9 words
:B0X*:brimestone::f("brimstone") ; Fixes 1 word
:B0X*:britian::f("Britain") ; Fixes 1 word
:B0X*:brittish::f("British") ; Fixes 1 word
:B0X*:broacasted::f("broadcast") ; Fixes 1 word
:B0X*:broady::f("broadly") ; Fixes 1 word
:B0X*:brocolli::f("broccoli") ; Fixes 2 words
:B0X*:buddah::f("Buddha") ; Fixes 2 words
:B0X*:buoan::f("buoyan") ; Fixes 5 words
:B0X*:bve::f("be") ; Fixes 1565 words
:B0X*:by it's::f("by its") ; Fixes 1 word
:B0X*:by who's::f("by whose") ; Fixes 1 word
:B0X*:byt he::f("by the") ; Fixes 1 word
:B0X*:cacus::f("caucus") ; Fixes 4 words
:B0X*:calaber::f("caliber") ; Fixes 2 words
:B0X*:calander::f("calendar") ; Fixes 4 words
:B0X*:calender::f("calendar") ; Fixes 4 words
:B0X*:califronia::f("California") ; Fixes 3 words
:B0X*:caligra::f("calligra") ; Fixes 15 words
:B0X*:callipigian::f("callipygian") ; Fixes 1 word
:B0X*:cambrige::f("Cambridge") ; Fixes 2 words
:B0X*:camoflag::f("camouflag") ; Fixes 4 words
:B0X*:can backup::f("can back up") ; Fixes 1 word
:B0X*:can been::f("can be") ; Fixes 1 word
:B0X*:can blackout::f("can black out") ; Fixes 1 word
:B0X*:can checkout::f("can check out") ; Fixes 1 word
:B0X*:can playback::f("can play back") ; Fixes 1 word
:B0X*:can setup::f("can set up") ; Fixes 1 word
:B0X*:can tryout::f("can try out") ; Fixes 1 word
:B0X*:can workout::f("can work out") ; Fixes 1 word
:B0X*:candidiat::f("candidat") ; Fixes 4 words
:B0X*:cannota::f("connota") ; Fixes 5 words
:B0X*:cansel::f("cancel") ; Fixes 21 words
:B0X*:cansent::f("consent ") ; Fixes 1 word
:B0X*:cantalop::f("cantaloup") ; Fixes 4 words
:B0X*:capetown::f("Cape Town") ; Fixes 1 word
:B0X*:carnege::f("Carnegie") ; Fixes 1 word
:B0X*:carnige::f("Carnegie") ; Fixes 1 word
:B0X*:carniver::f("carnivor") ; Fixes 7 words
:B0X*:carree::f("caree") ; Fixes 12 words
:B0X*:carrib::f("Carib") ; Fixes 8 words
:B0X*:carthogr::f("cartogr") ; Fixes 9 words
:B0X*:casion::f("caisson") ; Fixes 2 words
:B0X*:cassawor::f("cassowar") ; Fixes 2 words
:B0X*:cassowarr::f("cassowar") ; Fixes 2 words
:B0X*:casulat::f("casualt") ; Fixes 2 words
:B0X*:catapillar::f("caterpillar") ; Fixes 2 words
:B0X*:catapiller::f("caterpillar") ; Fixes 2 words
:B0X*:catepillar::f("caterpillar") ; Fixes 2 words
:B0X*:caterpilar::f("caterpillar") ; Fixes 2 words
:B0X*:caterpiller::f("caterpillar") ; Fixes 2 words
:B0X*:catterpilar::f("caterpillar") ; Fixes 2 words
:B0X*:catterpillar::f("caterpillar") ; Fixes 2 words
:B0X*:caucasion::f("Caucasian") ; Fixes 2 words
:B0X*:caught in the site::f("caught in the sight") ; Fixes 1 word
:B0X*:ceasa::f("Caesa") ; Fixes 14 words
:B0X*:celcius::f("Celsius") ; Fixes 1 word
:B0X*:cementary::f("cemetery") ; Fixes 1 word
:B0X*:cemetar::f("cemeter") ; Fixes 3 words
:B0X*:centruy::f("century") ; Fixes 1 word
:B0X*:centuties::f("centuries") ; Fixes 1 word
:B0X*:centuty::f("century") ; Fixes 1 word
:B0X*:cereal connection::f("serial connection") ; Fixes 1 word
:B0X*:cereal interface::f("serial interface") ; Fixes 1 word
:B0X*:cereal killer::f("serial killer") ; Fixes 1 word
:B0X*:cereal offender::f("serial offender") ; Fixes 1 word
:B0X*:cereal port::f("serial port") ; Fixes 1 word
:B0X*:cervial::f("cervical") ; Fixes 1 word
:B0X*:chalk full::f("chock-full") ; Fixes 1 word
:B0X*:champang::f("champagn") ; Fixes 5 words
:B0X*:changed it's::f("changed its") ; Fixes 1 word
:B0X*:charistics::f("characteristics") ; Fixes 1 word
:B0X*:chauffer::f("chauffeur") ; Fixes 4 words
:B0X*:childrens::f("children's") ; Fixes 1 word
:B0X*:chock it up::f("chalk it up") ; Fixes 1 word
:B0X*:chocked full::f("chock-full") ; Fixes 1 word
:B0X*:choclat::f("chocolat") ; Fixes 7 words
:B0X*:chomping at the bit::f("champing at the bit") ; Fixes 1 word
:B0X*:choosen::f("chosen") ; Fixes 1 word
:B0X*:chuch::f("church") ; Fixes 30 words
:B0X*:ciel::f("ceil") ; Fixes 10 words
:B0X*:cilind::f("cylind") ; Fixes 8 words
:B0X*:cincinatti::f("Cincinnati") ; Fixes 1 word
:B0X*:cincinnatti::f("Cincinnati") ; Fixes 1 word
:B0X*:cirtu::f("citru") ; Fixes 7 words
:B0X*:cite administrator::f("site administrator") ; Fixes 1 word
:B0X*:cite analys::f("site analys") ; Fixes 1 word
:B0X*:cite host::f("site host") ; Fixes 1 word
:B0X*:cite metric::f("site metric") ; Fixes 1 word
:B0X*:cite performance::f("site performance") ; Fixes 1 word
:B0X*:clera::f("clear") ; Fixes 27 words
:B0X*:closed it's::f("closed its") ; Fixes 1 word
:B0X*:closer then::f("closer than") ; Fixes 1 word
:B0X*:co-incided::f("coincided") ; Fixes 1 word
:B0X*:colate::f("collate") ; Fixes 19 words
:B0X*:colea::f("collea") ; Fixes 2 words
:B0X*:collaber::f("collabor") ; Fixes 15 words
:B0X*:collos::f("coloss") ; Fixes 9 words
:B0X*:colonel update::f("kernel update") ; Fixes 1 word
:B0X*:comande::f("commande") ; Fixes 11 words
:B0X*:comando::f("commando") ; Fixes 2 words
:B0X*:comback::f("comeback") ; Fixes 2 words
:B0X*:comdem::f("condem") ; Fixes 12 words
:B0X*:commadn::f("command") ; Fixes 22 words
:B0X*:commandoes::f("commandos") ; Fixes 1 word
:B0X*:commemerat::f("commemorat") ; Fixes 12 words
:B0X*:commerorat::f("commemorat") ; Fixes 12 words
:B0X*:commonly know as::f("commonly known as") ; Fixes 1 word
:B0X*:commonly know for::f("commonly known for") ; Fixes 1 word
:B0X*:compair::f("compare") ; Fixes 3 words
:B0X*:comparit::f("comparat") ; Fixes 6 words
:B0X*:compona::f("compone") ; Fixes 5 words
:B0X*:compulsar::f("compulsor") ; Fixes 3 words
:B0X*:compulser::f("compulsor") ; Fixes 3 words
:B0X*:concensu::f("consensu") ; Fixes 4 words
:B0X*:conciet::f("conceit") ; Fixes 5 words
:B0X*:condamn::f("condemn") ; Fixes 12 words
:B0X*:condemm::f("condemn") ; Fixes 12 words
:B0X*:conesencu::f("consensu") ; Fixes 4 words
:B0X*:confidental::f("confidential") ; Fixes 5 words
:B0X*:confids::f("confides") ; Fixes 1 word
:B0X*:congradulat::f("congratulat") ; Fixes 9 words
:B0X*:coniv::f("conniv") ; Fixes 11 words
:B0X*:conneticut::f("Connecticut") ; Fixes 2 words
:B0X*:conot::f("connot") ; Fixes 9 words
:B0X*:conquerer::f("conqueror") ; Fixes 2 words
:B0X*:consorci::f("consorti") ; Fixes 4 words
:B0X*:construction sight::f("construction site") ; Fixes 1 word
:B0X*:consulan::f("consultan") ; Fixes 4 words
:B0X*:consulten::f("consultan") ; Fixes 4 words
:B0X*:controvercy::f("controversy") ; Fixes 1 word
:B0X*:controvery::f("controversy") ; Fixes 1 word
:B0X*:copy or report::f("copy of report")
:B0X*:copy or signed::f("copy of signed")
:B0X*:core principal::f("core principle") ; Fixes 1 word
:B0X*:corosi::f("corrosi") ; Fixes 6 words
:B0X*:correpond::f("correspond") ; Fixes 12 words
:B0X*:corridoor::f("corridor") ; Fixes 2 words
:B0X*:coucil::f("council") ; Fixes 14 words
:B0X*:coudl::f("could")
:B0X*:coudn't::f("couldn't") ; Fixes 1 word
:B0X*:could backup::f("could back up") ; Fixes 1 word
:B0X*:could setup::f("could set up") ; Fixes 1 word
:B0X*:could workout::f("could work out") ; Fixes 1 word
:B0X*:councellor::f("counselor") ; Fixes 4 words
:B0X*:counr::f("countr") ; Fixes 18 words
:B0X*:counsel member::f("council member") ; Fixes 1 word
:B0X*:countires::f("countries") ; Fixes 1 word
:B0X*:creeden::f("creden") ; Fixes 10 words
:B0X*:critere::f("criteri") ; Fixes 6 words
:B0X*:criteria is::f("criteria are") ; Fixes 1 word
:B0X*:criteria was::f("criteria were") ; Fixes 1 word
:B0X*:criterias::f("criteria") ; Fixes 1 word
:B0X*:critiz::f("criticiz") ; Fixes 7 words
:B0X*:crucifiction::f("crucifixion") ; Fixes 2 words
:B0X*:culimi::f("culmi") ; Fixes 8 words
:B0X*:curriculm::f("curriculum") ; Fixes 2 words
:B0X*:cyclind::f("cylind") ; Fixes 8 words
:B0X*:dacquiri::f("daiquiri") ; Fixes 2 words
:B0X*:dael::f("deal") ; Fixes 31 words
:B0X*:dakiri::f("daiquiri") ; Fixes 2 words
:B0X*:dalmation::f("dalmatian") ; Fixes 2 words
:B0X*:dardenelles::f("Dardanelles") ; Fixes 1 word
:B0X*:darker then::f("darker than") ; Fixes 1 word
:B0X*:daty::f("day") ; Fixes 72 words
:B0X*:daye::f("date") ; Fixes 23 words, exists as beginning and end.
:B0X*:deafult::f("default") ; Fixes 6 words
:B0X*:decathalon::f("decathlon") ; Fixes 2 words
:B0X*:deciding on how::f("deciding how") ; Fixes 1 word
:B0X*:decomposited::f("decomposed") ; Fixes 1 word
:B0X*:decompositing::f("decomposing") ; Fixes 1 word
:B0X*:decomposits::f("decomposes") ; Fixes 1 word
:B0X*:decress::f("decrees") ; Fixes 1 word
:B0X*:deep-seeded::f("deep-seated") ; Fixes 1 word
:B0X*:definan::f("defian") ; Fixes 5 words
:B0X*:delapidat::f("dilapidat") ; Fixes 6 words
:B0X*:deleri::f("deliri") ; Fixes 7 words
:B0X*:delima::f("dilemma") ; Fixes 3 words
:B0X*:delusionally::f("delusionary") ; Fixes 1 word
:B0X*:demographical::f("demographic") ; Fixes 1 word
:B0X*:derogit::f("derogat") ; Fixes 11 words
:B0X*:descripter::f("descriptor") ; Fixes 2 words
:B0X*:desease::f("disease") ; Fixes 5 words.
:B0X*:desica::f("desicca") ; Fixes 11 words
:B0X*:desinte::f("disinte") ; Fixes 24 words.
:B0X*:desktiop::f("desktop") ; Fixes 2 words
:B0X*:desorder::f("disorder") ; Fixes 8 words.
:B0X*:desorient::f("disorient") ; Fixes 10 words.
:B0X*:desparat::f("desperat") ; Fixes 6 words.
:B0X*:despite of::f("despite") ; Fixes 1 word
:B0X*:dessicat::f("desiccat") ; Fixes 9 words.
:B0X*:deteoriat::f("deteriorat") ; Fixes 6 words.
:B0X*:deteriat::f("deteriorat") ; Fixes 6 words.
:B0X*:deterioriat::f("deteriorat") ; Fixes 6 words.
:B0X*:detrement::f("detriment") ; Fixes 5 words.
:B0X*:devaste::f("devastate") ; Fixes 3 words
:B0X*:devestat::f("devastat") ; Fixes 9 words.
:B0X*:devistat::f("devastat") ; Fixes 9 words.
:B0X*:diablic::f("diabolic") ; Fixes 4 words.
:B0X*:diamons::f("diamonds") ; Fixes 1 word
:B0X*:diast::f("disast") ; Fixes 5 words.
:B0X*:dicht::f("dichot") ; Fixes 18 words. Misspells "Mulloidichthys" a genus of Mullidae (goatfishes or red mullets).
:B0X*:diconnect::f("disconnect") ; Fixes 9 words.
:B0X*:did attempted::f("did attempt") ; Fixes 1 word
:B0X*:didint::f("didn't") ; Fixes 1 word
:B0X*:didn't fair::f("didn't fare") ; Fixes 1 word
:B0X*:didnot::f("did not") ; Fixes 1 word
:B0X*:didnt::f("didn't") ; Fixes 1 word
:B0X*:dieties::f("deities") ; Fixes 1 word
:B0X*:diety::f("deity") ; Fixes 1 word
:B0X*:diffcult::f("difficult") ; Fixes 5 words
:B0X*:different tact::f("different tack") ; Fixes 1 word
:B0X*:different to::f("different from") ; Fixes 1 word
:B0X*:difficulity::f("difficulty") ; Fixes 1 word
:B0X*:diffuse the::f("defuse the") ; Fixes 1 word
:B0X*:dificult::f("difficult") ; Fixes 5 words
:B0X*:diminuit::f("diminut") ; Fixes 6 words
:B0X*:dimunit::f("diminut") ; Fixes 6 words
:B0X*:diphtong::f("diphthong") ; Fixes 14 words
:B0X*:diplomanc::f("diplomac") ; Fixes 2 words
:B0X*:diptheria::f("diphtheria") ; Fixes 3 words
:B0X*:dipthong::f("diphthong") ; Fixes 14 words
:B0X*:direct affect::f("direct effect") ; Fixes 1 word
:B0X*:disasterous::f("disastrous") ; Fixes 3 words
:B0X*:disatisf::f("dissatisf") ; Fixes 11 words
:B0X*:disatrous::f("disastrous") ; Fixes 3 words
:B0X*:discontentment::f("discontent") ; Fixes 1 word
:B0X*:discus a::f("discuss a") ; Fixes 1 word
:B0X*:discus the::f("discuss the") ; Fixes 1 word
:B0X*:discus this::f("discuss this") ; Fixes 1 word
:B0X*:diseminat::f("disseminat") ; Fixes 9 words
:B0X*:disente::f("dissente") ; Fixes 3 words
:B0X*:dispair::f("despair") ; Fixes 6 words
:B0X*:disparingly::f("disparagingly") ; Fixes 1 word
:B0X*:dispele::f("dispelle") ; Fixes 3 words
:B0X*:dispicab::f("despicab") ; Fixes 5 words
:B0X*:dispite::f("despite") ; Fixes 5 words
:B0X*:disproportiate::f("disproportionate") ; Fixes 6 words
:B0X*:dissag::f("disag") ; Fixes 16 words
:B0X*:dissap::f("disap") ; Fixes 37 words
:B0X*:dissar::f("disar") ; Fixes 25 words
:B0X*:dissob::f("disob") ; Fixes 15 words
:B0X*:divinition::f("divination") ; Fixes 2 words
:B0X*:docrines::f("doctrines") ; Fixes 1 word
:B0X*:doe snot::f("does not") ; *could* be legitimate... but very unlikely! ; Fixes 1 word
:B0X*:doen't::f("doesn't") ; Fixes 1 word
:B0X*:dolling out::f("doling out") ; Fixes 1 word
:B0X*:dominate player::f("dominant player") ; Fixes 1 word
:B0X*:dominate role::f("dominant role") ; Fixes 1 word
:B0X*:don't no::f("don't know") ; Fixes 1 word
:B0X*:dont::f("don't") ; Fixes 1 word
:B0X*:door jam::f("doorjamb") ; Fixes 1 word
:B0X*:dosen't::f("doesn't") ; Fixes 1 word
:B0X*:dosn't::f("doesn't") ; Fixes 1 word
:B0X*:double header::f("doubleheader") ; Fixes 2 words
:B0X*:down it's::f("down its") ; Fixes 1 word
:B0X*:down side::f("downside") ; Fixes 1 word
:B0X*:draughtm::f("draughtsm") ; Fixes 4 words
:B0X*:drunkeness::f("drunkenness") ; Fixes 1 word
:B0X*:due to it's::f("due to its") ; Fixes 1 word
:B0X*:dukeship::f("dukedom") ; Fixes 1 word
:B0X*:dumbell::f("dumbbell") ; Fixes 1 word
:B0X*:during it's::f("during its") ; Fixes 1 word
:B0X*:during they're::f("during their") ; Fixes 1 word
:B0X*:each phenomena::f("each phenomenon") ; Fixes 1 word
:B0X*:ealier::f("earlier") ; Fixes 1 word
:B0X*:earnt::f("earned") ; Fixes 1 word
:B0X*:effecting::f("affecting") ; Fixes 1 word
:B0X*:eiter::f("either") ; Fixes 1 word
:B0X*:eles::f("eels") ; Fixes 1 word
:B0X*:elphant::f("elephant") ; Fixes 6 words
:B0X*:eluded to::f("alluded to") ; Fixes 1 word
:B0X*:emane::f("ename") ; Fixes 15 words
:B0X*:embargos::f("embargoes") ; Fixes 1 word
:B0X*:embezell::f("embezzl") ; Fixes 8 words
:B0X*:emblamatic::f("emblematic") ; Fixes 4 words
:B0X*:emial::f("email") ; Fixes 6 words
:B0X*:eminat::f("emanat") ; Fixes 6 words
:B0X*:emite::f("emitte") ; Fixes 3 words
:B0X*:emne::f("enme") ; Fixes 7 words
:B0X*:emphysyma::f("emphysema") ; Fixes 3 words
:B0X*:empirial::f("imperial") ; Fixes 18 words
:B0X*:emporer::f("emperor") ; Fixes 4 words
:B0X*:enameld::f("enamelled") ; Fixes 1 word
:B0X*:enchanc::f("enhanc") ; Fixes 9 words
:B0X*:encylop::f("encyclop") ; Fixes 16 word
:B0X*:endevors::f("endeavors") ; Fixes 8 words
:B0X*:endire::f("entire") ; Fixes 7 words
:B0X*:endolithe::f("endolith") ; Fixes 2 words
:B0X*:ened::f("need") ; Fixes 44 words
:B0X*:enlargment::f("enlargement") ; Fixes 2 words
:B0X*:enlish::f("English") ; Fixes 8 words
:B0X*:enought::f("enough") ; Fixes 1 word
:B0X*:enourmous::f("enormous") ; Fixes 3 words
:B0X*:enscons::f("ensconc") ; Fixes 4 words
:B0X*:enteratin::f("entertain") ; Fixes 10 words
:B0X*:entrepeneur::f("entrepreneur") ; Fixes 7 words
:B0X*:enviorment::f("environment") ; Fixes 8 words
:B0X*:enviorn::f("environ") ; Fixes 12 words
:B0X*:envirom::f("environm") ; Fixes 8 words
:B0X*:envrion::f("environ") ; Fixes 8 words
:B0X*:epidsod::f("episod") ; Fixes 6 words
:B0X*:epsiod::f("episod") ; Fixes 6 words
:B0X*:equitor::f("equator") ; Fixes 5 words
:B0X*:eral::f("real") ; Fixes 74 words
:B0X*:eratic::f("erratic") ; Fixes 4 words
:B0X*:erest::f("arrest") ; Fixes 14 words
:B0X*:errupt::f("erupt") ; Fixes 6 words
:B0X*:escta::f("ecsta") ; Fixes 5 words
:B0X*:esle::f("else") ; Fixes 3 words
:B0X*:europian::f("European") ; Fixes 15 words
:B0X*:eurpean::f("European") ; Fixes 15 words
:B0X*:eurpoean::f("European") ; Fixes 15 words
:B0X*:evental::f("eventual") ; Fixes 4 words
:B0X*:eventhough::f("even though") ; Fixes 1 word
:B0X*:evential::f("eventual") ; Fixes 4 words
:B0X*:everthing::f("everything") ; Fixes 1 word
:B0X*:everytime::f("every time") ; Fixes 1 word
:B0X*:everyting::f("everything") ; Fixes 1 word
:B0X*:evesdrop::f("eavesdrop") ; Fixes 6 words
:B0X*:excede::f("exceed") ; Fixes 8 words
:B0X*:excelen::f("excellen") ; Fixes 9 words
:B0X*:excellan::f("excellen") ; Fixes 9 words
:B0X*:excells::f("excels") ; Fixes 1 word
:B0X*:exection::f("execution") ; Fixes 5 words
:B0X*:exectued::f("executed") ; Fixes 1 word
:B0X*:exelen::f("excellen") ; Fixes 9 words
:B0X*:exellen::f("excellen") ; Fixes 9 words
:B0X*:exemple::f("example") ; Fixes 1 word
:B0X*:exerbat::f("exacerbat") ; Fixes 7 words
:B0X*:exerciese::f("exercises") ; Fixes 1 word
:B0X*:exerpt::f("excerpt") ; Fixes 6 words
:B0X*:exerternal::f("external") ; Fixes 22 words
:B0X*:exhalt::f("exalt") ; Fixes 10 words
:B0X*:exhibt::f("exhibit") ; Fixes 20 words
:B0X*:exibit::f("exhibit") ; Fixes 20 words
:B0X*:exilera::f("exhilara") ; Fixes 9 words
:B0X*:existince::f("existence") ; Fixes 1 word
:B0X*:exlud::f("exclud") ; Fixes 7 words
:B0X*:exonorat::f("exonerat") ; Fixes 7 words
:B0X*:expatriot::f("expatriate") ; Fixes 1 word
:B0X*:expeditonary::f("expeditionary") ; Fixes 1 word
:B0X*:expeiment::f("experiment") ; Fixes 14 words
:B0X*:explainat::f("explanat") ; Fixes 7 words
:B0X*:explaning::f("explaining") ; Fixes 1 word
:B0X*:exteme::f("extreme") ; Fixes 6 words