-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordle_words.cpp
2129 lines (2127 loc) · 129 KB
/
wordle_words.cpp
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
#include <vector>
#include "word.hpp"
std::vector< Word > all_words = {
"aahed", "aalii", "aapas", "aargh", "aarti", "abaca", "abaci"
"aback", "abacs", "abaft", "abaht", "abaka", "abamp", "aband"
"abase", "abash", "abask", "abate", "abaya", "abbas", "abbed"
"abbes", "abbey", "abbot", "abcee", "abeam", "abear", "abeat"
"abeer", "abele", "abeng", "abers", "abets", "abeys", "abhor"
"abide", "abies", "abius", "abjad", "abjud", "abled", "abler"
"ables", "ablet", "ablow", "abmho", "abnet", "abode", "abohm"
"aboil", "aboma", "aboon", "abord", "abore", "aborn", "abort"
"about", "above", "abram", "abray", "abrim", "abrin", "abris"
"absey", "absit", "abuna", "abune", "abura", "aburn", "abuse"
"abuts", "abuzz", "abyes", "abysm", "abyss", "acais", "acara"
"acari", "accas", "accha", "accoy", "accra", "acedy", "acene"
"acerb", "acers", "aceta", "achar", "ached", "acher", "aches"
"achey", "achoo", "acids", "acidy", "acies", "acing", "acini"
"ackee", "acker", "acmes", "acmic", "acned", "acnes", "acock"
"acoel", "acold", "acone", "acorn", "acral", "acred", "acres"
"acrid", "acron", "acros", "acryl", "actas", "acted", "actin"
"acton", "actor", "actus", "acute", "acyls", "adage", "adapt"
"adats", "adawn", "adaws", "adays", "adbot", "addas", "addax"
"added", "adder", "addin", "addio", "addle", "addra", "adead"
"adeem", "adept", "adhan", "adhoc", "adieu", "adios", "adits"
"adlib", "adman", "admen", "admin", "admit", "admix", "adnex"
"adobe", "adobo", "adoon", "adopt", "adorb", "adore", "adorn"
"adown", "adoze", "adrad", "adraw", "adred", "adret", "adrip"
"adsum", "aduki", "adult", "adunc", "adust", "advew", "advts"
"adyta", "adyts", "adzed", "adzes", "aecia", "aedes", "aeger"
"aegis", "aeons", "aerie", "aeros", "aesir", "aevum", "afald"
"afanc", "afara", "afars", "afear", "affix", "affly", "afion"
"afire", "afizz", "aflaj", "aflap", "aflow", "afoam", "afoot"
"afore", "afoul", "afret", "afrit", "afros", "after", "aftos"
"again", "agals", "agama", "agami", "agamy", "agape", "agars"
"agasp", "agast", "agate", "agaty", "agave", "agaze", "agbas"
"agene", "agent", "agers", "aggag", "agger", "aggie", "aggri"
"aggro", "aggry", "aghas", "agidi", "agila", "agile", "aging"
"agios", "agism", "agist", "agita", "aglee", "aglet", "agley"
"agloo", "aglow", "aglus", "agmas", "agoge", "agogo", "agone"
"agons", "agony", "agood", "agora", "agree", "agria", "agrin"
"agros", "agrum", "agued", "agues", "aguey", "aguna", "agush"
"aguti", "ahead", "aheap", "ahent", "ahigh", "ahind", "ahing"
"ahint", "ahold", "ahole", "ahull", "ahuru", "aidas", "aided"
"aider", "aides", "aidoi", "aidos", "aiery", "aigas", "aight"
"ailed", "aimag", "aimak", "aimed", "aimer", "ainee", "ainga"
"aioli", "aired", "airer", "airns", "airth", "airts", "aisle"
"aitch", "aitus", "aiver", "aixes", "aiyah", "aiyee", "aiyoh"
"aiyoo", "aizle", "ajies", "ajiva", "ajuga", "ajupa", "ajwan"
"akara", "akees", "akela", "akene", "aking", "akita", "akkas"
"akker", "akoia", "akoja", "akoya", "aksed", "akses", "alaap"
"alack", "alala", "alamo", "aland", "alane", "alang", "alans"
"alant", "alapa", "alaps", "alarm", "alary", "alata", "alate"
"alays", "albas", "albee", "albid", "album", "alcea", "alces"
"alcid", "alcos", "aldea", "alder", "aldol", "aleak", "aleck"
"alecs", "aleem", "alefs", "aleft", "aleph", "alert", "alews"
"aleye", "alfas", "algae", "algal", "algas", "algid", "algin"
"algor", "algos", "algum", "alias", "alibi", "alick", "alien"
"alifs", "align", "alike", "alims", "aline", "alios", "alist"
"alive", "aliya", "alkie", "alkin", "alkos", "alkyd", "alkyl"
"allan", "allay", "allee", "allel", "allen", "aller", "alley"
"allin", "allis", "allod", "allot", "allow", "alloy", "allus"
"allyl", "almah", "almas", "almeh", "almes", "almud", "almug"
"alods", "aloed", "aloes", "aloft", "aloha", "aloin", "alone"
"along", "aloof", "aloos", "alose", "aloud", "alowe", "alpha"
"altar", "alter", "altho", "altos", "alula", "alums", "alumy"
"alure", "alurk", "alvar", "alway", "amahs", "amain", "amari"
"amaro", "amass", "amate", "amaut", "amaze", "amban", "amber"
"ambit", "amble", "ambos", "ambry", "ameba", "ameer", "amend"
"amene", "amens", "ament", "amias", "amice", "amici", "amide"
"amido", "amids", "amies", "amiga", "amigo", "amine", "amino"
"amins", "amirs", "amiss", "amity", "amlas", "amman", "ammas"
"ammon", "ammos", "amnia", "amnic", "amnio", "amoks", "amole"
"among", "amore", "amort", "amour", "amove", "amowt", "amped"
"ample", "amply", "ampul", "amrit", "amuck", "amuse", "amyls"
"anana", "anata", "ancho", "ancle", "ancon", "andic", "andro"
"anear", "anele", "anent", "angas", "angel", "anger", "angle"
"anglo", "angry", "angst", "anigh", "anile", "anils", "anima"
"anime", "animi", "anion", "anise", "anker", "ankhs", "ankle"
"ankus", "anlas", "annal", "annan", "annas", "annat", "annex"
"annoy", "annul", "annum", "annus", "anoas", "anode", "anole"
"anomy", "ansae", "ansas", "antae", "antar", "antas", "anted"
"antes", "antic", "antis", "antra", "antre", "antsy", "anura"
"anvil", "anyon", "aorta", "apace", "apage", "apaid", "apart"
"apayd", "apays", "apeak", "apeek", "apers", "apert", "apery"
"apgar", "aphid", "aphis", "apian", "aping", "apiol", "apish"
"apism", "apnea", "apode", "apods", "apols", "apoop", "aport"
"appal", "appam", "appay", "appel", "apple", "apply", "appro"
"appts", "appui", "appuy", "apres", "apron", "apses", "apsis"
"apsos", "apted", "apter", "aptly", "aquae", "aquas", "araba"
"araks", "arame", "arars", "arbah", "arbas", "arbor", "arced"
"archi", "arcos", "arcus", "ardeb", "ardor", "ardri", "aread"
"areae", "areal", "arear", "areas", "areca", "aredd", "arede"
"arefy", "areic", "arena", "arene", "arepa", "arere", "arete"
"arets", "arett", "argal", "argan", "argil", "argle", "argol"
"argon", "argot", "argue", "argus", "arhat", "arias", "ariel"
"ariki", "arils", "ariot", "arise", "arish", "arith", "arked"
"arled", "arles", "armed", "armer", "armet", "armil", "armor"
"arnas", "arnis", "arnut", "aroba", "aroha", "aroid", "aroma"
"arose", "arpas", "arpen", "arrah", "arras", "array", "arret"
"arris", "arrow", "arroz", "arsed", "arses", "arsey", "arsis"
"arson", "artal", "artel", "arter", "artic", "artis", "artly"
"artsy", "aruhe", "arums", "arval", "arvee", "arvos", "aryls"
"asada", "asana", "ascon", "ascot", "ascus", "asdic", "ashed"
"ashen", "ashes", "ashet", "aside", "asity", "askar", "asked"
"asker", "askew", "askoi", "askos", "aspen", "asper", "aspic"
"aspie", "aspis", "aspro", "assai", "assam", "assay", "assed"
"asses", "asset", "assez", "assot", "aster", "astir", "astun"
"asura", "asway", "aswim", "asyla", "ataps", "ataxy", "atigi"
"atilt", "atimy", "atlas", "atman", "atmas", "atmos", "atocs"
"atoke", "atoks", "atoll", "atoms", "atomy", "atone", "atony"
"atopy", "atria", "atrip", "attap", "attar", "attas", "atter"
"attic", "atuas", "aucht", "audad", "audax", "audio", "audit"
"augen", "auger", "auges", "aught", "augur", "aulas", "aulic"
"auloi", "aulos", "aumil", "aunes", "aunts", "aunty", "aurae"
"aural", "aurar", "auras", "aurei", "aures", "auric", "auris"
"aurum", "autos", "auxin", "avail", "avale", "avant", "avast"
"avels", "avens", "avers", "avert", "avgas", "avian", "avine"
"avion", "avise", "aviso", "avize", "avoid", "avows", "avyze"
"await", "awake", "award", "aware", "awari", "awarn", "awash"
"awato", "awave", "aways", "awdls", "aweel", "aweto", "awful"
"awing", "awkin", "awmry", "awned", "awner", "awoke", "awols"
"awork", "axels", "axial", "axile", "axils", "axing", "axiom"
"axion", "axite", "axled", "axles", "axman", "axmen", "axoid"
"axone", "axons", "ayahs", "ayaya", "ayelp", "aygre", "ayins"
"aymag", "ayont", "ayres", "ayrie", "azans", "azide", "azido"
"azine", "azlon", "azoic", "azole", "azons", "azote", "azoth"
"azuki", "azure", "azurn", "azury", "azygy", "azyme", "azyms"
"baaed", "baals", "baaps", "babas", "babby", "babel", "babes"
"babka", "baboo", "babul", "babus", "bacca", "bacco", "baccy"
"bacha", "bachs", "backs", "backy", "bacne", "bacon", "badam"
"baddy", "badge", "badly", "baels", "baffs", "baffy", "bafta"
"bafts", "bagel", "baggy", "baghs", "bagie", "bagsy", "bagua"
"bahts", "bahus", "bahut", "baiks", "baile", "bails", "bairn"
"baisa", "baith", "baits", "baiza", "baize", "bajan", "bajra"
"bajri", "bajus", "baked", "baken", "baker", "bakes", "bakra"
"balas", "balds", "baldy", "baled", "baler", "bales", "balks"
"balky", "ballo", "balls", "bally", "balms", "balmy", "baloi"
"balon", "baloo", "balot", "balsa", "balti", "balun", "balus"
"balut", "bamas", "bambi", "bamma", "bammy", "banak", "banal"
"banco", "bancs", "banda", "bandh", "bands", "bandy", "baned"
"banes", "bangs", "bania", "banjo", "banks", "banky", "banns"
"bants", "bantu", "banty", "bantz", "banya", "baons", "baozi"
"bappu", "bapus", "barbe", "barbs", "barby", "barca", "barde"
"bardo", "bards", "bardy", "bared", "barer", "bares", "barfi"
"barfs", "barfy", "barge", "baric", "barks", "barky", "barms"
"barmy", "barns", "barny", "baron", "barps", "barra", "barre"
"barro", "barry", "barye", "basal", "basan", "basas", "based"
"basen", "baser", "bases", "basha", "basho", "basic", "basij"
"basil", "basin", "basis", "basks", "bason", "basse", "bassi"
"basso", "bassy", "basta", "baste", "basti", "basto", "basts"
"batch", "bated", "bates", "bathe", "baths", "batik", "baton"
"batos", "batta", "batts", "battu", "batty", "bauds", "bauks"
"baulk", "baurs", "bavin", "bawds", "bawdy", "bawks", "bawls"
"bawns", "bawrs", "bawty", "bayas", "bayed", "bayer", "bayes"
"bayle", "bayou", "bayts", "bazar", "bazas", "bazoo", "bball"
"bdays", "beach", "beads", "beady", "beaks", "beaky", "beals"
"beams", "beamy", "beano", "beans", "beany", "beard", "beare"
"bears", "beast", "beath", "beats", "beaty", "beaus", "beaut"
"beaux", "bebop", "becap", "becke", "becks", "bedad", "bedel"
"bedes", "bedew", "bedim", "bedye", "beech", "beedi", "beefs"
"beefy", "beeps", "beers", "beery", "beets", "befit", "befog"
"begad", "began", "begar", "begat", "begem", "beget", "begin"
"begob", "begot", "begum", "begun", "beige", "beigy", "being"
"beins", "beira", "beisa", "bekah", "belah", "belar", "belay"
"belch", "belee", "belga", "belie", "belit", "belle", "belli"
"bello", "bells", "belly", "belon", "below", "belts", "belve"
"bemad", "bemas", "bemix", "bemud", "bench", "bends", "bendy"
"benes", "benet", "benga", "benis", "benji", "benne", "benni"
"benny", "bento", "bents", "benty", "bepat", "beray", "beres"
"beret", "bergs", "berko", "berks", "berme", "berms", "berob"
"berry", "berth", "beryl", "besat", "besaw", "besee", "beses"
"beset", "besit", "besom", "besot", "besti", "bests", "betas"
"beted", "betel", "betes", "beths", "betid", "beton", "betta"
"betty", "bevan", "bevel", "bever", "bevor", "bevue", "bevvy"
"bewdy", "bewet", "bewig", "bezel", "bezes", "bezil", "bezzy"
"bhais", "bhaji", "bhang", "bhats", "bhava", "bhels", "bhoot"
"bhuna", "bhuts", "biach", "biali", "bialy", "bibbs", "bibes"
"bibis", "bible", "biccy", "bicep", "bices", "bicky", "biddy"
"bided", "bider", "bides", "bidet", "bidis", "bidon", "bidri"
"bield", "biers", "biffo", "biffs", "biffy", "bifid", "bigae"
"biggs", "biggy", "bigha", "bight", "bigly", "bigos", "bigot"
"bihon", "bijou", "biked", "biker", "bikes", "bikie", "bikky"
"bilal", "bilat", "bilbo", "bilby", "biled", "biles", "bilge"
"bilgy", "bilks", "bills", "billy", "bimah", "bimas", "bimbo"
"binal", "bindi", "binds", "biner", "bines", "binge", "bingo"
"bings", "bingy", "binit", "binks", "binky", "bints", "biogs"
"biome", "bions", "biont", "biose", "biota", "biped", "bipod"
"bippy", "birch", "birdo", "birds", "biris", "birks", "birle"
"birls", "biros", "birrs", "birse", "birsy", "birth", "birze"
"birzz", "bises", "bisks", "bisom", "bison", "bitch", "biter"
"bites", "bitey", "bitos", "bitou", "bitsy", "bitte", "bitts"
"bitty", "bivia", "bivvy", "bizes", "bizzo", "bizzy", "blabs"
"black", "blade", "blads", "blady", "blaer", "blaes", "blaff"
"blags", "blahs", "blain", "blame", "blams", "blanc", "bland"
"blank", "blare", "blart", "blase", "blash", "blast", "blate"
"blats", "blatt", "blaud", "blawn", "blaws", "blays", "blaze"
"bleah", "bleak", "blear", "bleat", "blebs", "blech", "bleed"
"bleep", "blees", "blend", "blent", "blert", "bless", "blest"
"blets", "bleys", "blimp", "blimy", "blind", "bling", "blini"
"blink", "blins", "bliny", "blips", "bliss", "blist", "blite"
"blits", "blitz", "blive", "bloat", "blobs", "block", "blocs"
"blogs", "bloke", "blond", "blonx", "blood", "blook", "bloom"
"bloop", "blore", "blots", "blown", "blows", "blowy", "blubs"
"blude", "bluds", "bludy", "blued", "bluer", "blues", "bluet"
"bluey", "bluff", "bluid", "blume", "blunk", "blunt", "blurb"
"blurs", "blurt", "blush", "blype", "boabs", "boaks", "board"
"boars", "boart", "boast", "boats", "boaty", "bobac", "bobak"
"bobas", "bobby", "bobol", "bobos", "bocca", "bocce", "bocci"
"boche", "bocks", "boded", "bodes", "bodge", "bodgy", "bodhi"
"bodle", "bodoh", "boeps", "boers", "boeti", "boets", "boeuf"
"boffo", "boffs", "bogan", "bogey", "boggy", "bogie", "bogle"
"bogue", "bogus", "bohea", "bohos", "boils", "boing", "boink"
"boite", "boked", "bokeh", "bokes", "bokos", "bolar", "bolas"
"boldo", "bolds", "boles", "bolet", "bolix", "bolks", "bolls"
"bolos", "bolts", "bolus", "bomas", "bombe", "bombo", "bombs"
"bomoh", "bomor", "bonce", "bonds", "boned", "boner", "bones"
"boney", "bongo", "bongs", "bonie", "bonks", "bonne", "bonny"
"bonum", "bonus", "bonza", "bonze", "booai", "booay", "boobs"
"booby", "boody", "booed", "boofy", "boogy", "boohs", "books"
"booky", "bools", "booms", "boomy", "boong", "boons", "boord"
"boors", "boose", "boost", "booth", "boots", "booty", "booze"
"boozy", "boppy", "borak", "boral", "boras", "borax", "borde"
"bords", "bored", "boree", "borek", "borel", "borer", "bores"
"borgo", "boric", "borks", "borms", "borna", "borne", "boron"
"borts", "borty", "bortz", "bosey", "bosie", "bosks", "bosky"
"bosom", "boson", "bossa", "bossy", "bosun", "botas", "botch"
"boteh", "botel", "botes", "botew", "bothy", "botos", "botte"
"botts", "botty", "bouge", "bough", "bouks", "boule", "boult"
"bound", "bouns", "bourd", "bourg", "bourn", "bouse", "bousy"
"bouts", "boutu", "bovid", "bowat", "bowed", "bowel", "bower"
"bowes", "bowet", "bowie", "bowls", "bowne", "bowrs", "bowse"
"boxed", "boxen", "boxer", "boxes", "boxla", "boxty", "boyar"
"boyau", "boyed", "boyey", "boyfs", "boygs", "boyla", "boyly"
"boyos", "boysy", "bozos", "braai", "brace", "brach", "brack"
"bract", "brads", "braes", "brags", "brahs", "braid", "brail"
"brain", "brake", "braks", "braky", "brame", "brand", "brane"
"brank", "brans", "brant", "brash", "brass", "brast", "brats"
"brava", "brave", "bravi", "bravo", "brawl", "brawn", "braws"
"braxy", "brays", "braza", "braze", "bread", "break", "bream"
"brede", "breds", "breed", "breem", "breer", "brees", "breid"
"breis", "breme", "brens", "brent", "brere", "brers", "breve"
"brews", "breys", "briar", "bribe", "brick", "bride", "brief"
"brier", "bries", "brigs", "briki", "briks", "brill", "brims"
"brine", "bring", "brink", "brins", "briny", "brios", "brise"
"brisk", "briss", "brith", "brits", "britt", "brize", "broad"
"broch", "brock", "brods", "brogh", "brogs", "broil", "broke"
"brome", "bromo", "bronc", "brond", "brood", "brook", "brool"
"broom", "broos", "brose", "brosy", "broth", "brown", "brows"
"bruck", "brugh", "bruhs", "bruin", "bruit", "bruja", "brujo"
"brule", "brume", "brung", "brunt", "brush", "brusk", "brust"
"brute", "bruts", "bruvs", "buats", "buaze", "bubal", "bubas"
"bubba", "bubbe", "bubby", "bubus", "buchu", "bucko", "bucks"
"bucku", "budas", "buddy", "buded", "budes", "budge", "budis"
"budos", "buena", "buffa", "buffe", "buffi", "buffo", "buffs"
"buffy", "bufos", "bufty", "bugan", "buggy", "bugle", "buhls"
"buhrs", "buiks", "build", "built", "buist", "bukes", "bukos"
"bulbs", "bulge", "bulgy", "bulks", "bulky", "bulla", "bulls"
"bully", "bulse", "bumbo", "bumfs", "bumph", "bumps", "bumpy"
"bunas", "bunce", "bunch", "bunco", "bunde", "bundh", "bunds"
"bundt", "bundu", "bundy", "bungs", "bungy", "bunia", "bunje"
"bunjy", "bunko", "bunks", "bunns", "bunny", "bunts", "bunty"
"bunya", "buoys", "buppy", "buran", "buras", "burbs", "burds"
"buret", "burfi", "burgh", "burgs", "burin", "burka", "burke"
"burks", "burls", "burly", "burns", "burnt", "buroo", "burps"
"burqa", "burra", "burro", "burrs", "burry", "bursa", "burse"
"burst", "busby", "bused", "buses", "bushy", "busks", "busky"
"bussu", "busti", "busts", "busty", "butch", "buteo", "butes"
"butle", "butoh", "butte", "butts", "butty", "butut", "butyl"
"buxom", "buyer", "buyin", "buzzy", "bwana", "bwazi", "byded"
"bydes", "byked", "bykes", "bylaw", "byres", "byrls", "byssi"
"bytes", "byway", "caaed", "cabal", "cabas", "cabby", "caber"
"cabin", "cable", "cabob", "caboc", "cabre", "cacao", "cacas"
"cache", "cacks", "cacky", "cacti", "caddy", "cadee", "cades"
"cadet", "cadge", "cadgy", "cadie", "cadis", "cadre", "caeca"
"caese", "cafes", "caffe", "caffs", "caged", "cager", "cages"
"cagey", "cagot", "cahow", "caids", "cains", "caird", "cairn"
"cajon", "cajun", "caked", "cakes", "cakey", "calfs", "calid"
"calif", "calix", "calks", "calla", "calle", "calls", "calms"
"calmy", "calos", "calpa", "calps", "calve", "calyx", "caman"
"camas", "camel", "cameo", "cames", "camis", "camos", "campi"
"campo", "camps", "campy", "camus", "canal", "cando", "candy"
"caned", "caneh", "caner", "canes", "cangs", "canid", "canna"
"canns", "canny", "canoe", "canon", "canso", "canst", "canti"
"canto", "cants", "canty", "capas", "capax", "caped", "caper"
"capes", "capex", "caphs", "capiz", "caple", "capon", "capos"
"capot", "capri", "capul", "caput", "carap", "carat", "carbo"
"carbs", "carby", "cardi", "cards", "cardy", "cared", "carer"
"cares", "caret", "carex", "cargo", "carks", "carle", "carls"
"carne", "carns", "carny", "carob", "carol", "carom", "caron"
"carpe", "carpi", "carps", "carrs", "carry", "carse", "carta"
"carte", "carts", "carve", "carvy", "casas", "casco", "cased"
"caser", "cases", "casks", "casky", "caste", "casts", "casus"
"catch", "cater", "cates", "catty", "cauda", "cauks", "cauld"
"caulk", "cauls", "caums", "caups", "cauri", "causa", "cause"
"cavas", "caved", "cavel", "caver", "caves", "cavie", "cavil"
"cavus", "cawed", "cawks", "caxon", "cease", "ceaze", "cebid"
"cecal", "cecum", "cedar", "ceded", "ceder", "cedes", "cedis"
"ceiba", "ceili", "ceils", "celeb", "cella", "celli", "cello"
"cells", "celly", "celom", "celts", "cense", "cento", "cents"
"centu", "ceorl", "cepes", "cerci", "cered", "ceres", "cerge"
"ceria", "ceric", "cerne", "ceroc", "ceros", "certs", "certy"
"cesse", "cesta", "cesti", "cetes", "cetyl", "cezve", "chaap"
"chaat", "chace", "chack", "chaco", "chado", "chads", "chafe"
"chaff", "chaft", "chain", "chair", "chais", "chalk", "chals"
"champ", "chams", "chana", "chang", "chank", "chant", "chaos"
"chape", "chaps", "chapt", "chara", "chard", "chare", "chark"
"charm", "charr", "chars", "chart", "chary", "chase", "chasm"
"chats", "chava", "chave", "chavs", "chawk", "chawl", "chaws"
"chaya", "chays", "cheap", "cheat", "cheba", "check", "chedi"
"cheeb", "cheek", "cheep", "cheer", "cheet", "chefs", "cheka"
"chela", "chelp", "chemo", "chems", "chere", "chert", "chess"
"chest", "cheth", "chevy", "chews", "chewy", "chiao", "chias"
"chiba", "chibs", "chica", "chich", "chick", "chico", "chics"
"chide", "chief", "chiel", "chiko", "chiks", "child", "chile"
"chili", "chill", "chimb", "chime", "chimo", "chimp", "china"
"chine", "ching", "chink", "chino", "chins", "chips", "chirk"
"chirl", "chirm", "chiro", "chirp", "chirr", "chirt", "chiru"
"chiti", "chits", "chiva", "chive", "chivs", "chivy", "chizz"
"chock", "choco", "chocs", "chode", "chogs", "choil", "choir"
"choke", "choko", "choky", "chola", "choli", "cholo", "chomp"
"chons", "choof", "chook", "choom", "choon", "chops", "chord"
"chore", "chose", "choss", "chota", "chott", "chout", "choux"
"chowk", "chows", "chubs", "chuck", "chufa", "chuff", "chugs"
"chump", "chums", "chunk", "churl", "churn", "churr", "chuse"
"chute", "chuts", "chyle", "chyme", "chynd", "cibol", "cided"
"cider", "cides", "ciels", "cigar", "ciggy", "cilia", "cills"
"cimar", "cimex", "cinch", "cinct", "cines", "cinqs", "cions"
"cippi", "circa", "circs", "cires", "cirls", "cirri", "cisco"
"cissy", "cists", "cital", "cited", "citee", "citer", "cites"
"cives", "civet", "civic", "civie", "civil", "civvy", "clach"
"clack", "clade", "clads", "claes", "clags", "claim", "clair"
"clame", "clamp", "clams", "clang", "clank", "clans", "claps"
"clapt", "claro", "clart", "clary", "clash", "clasp", "class"
"clast", "clats", "claut", "clave", "clavi", "claws", "clays"
"clean", "clear", "cleat", "cleck", "cleek", "cleep", "clefs"
"cleft", "clegs", "cleik", "clems", "clepe", "clept", "clerk"
"cleve", "clews", "click", "clied", "clies", "cliff", "clift"
"climb", "clime", "cline", "cling", "clink", "clint", "clipe"
"clips", "clipt", "clits", "cloak", "cloam", "clock", "clods"
"cloff", "clogs", "cloke", "clomb", "clomp", "clone", "clonk"
"clons", "cloop", "cloot", "clops", "close", "clote", "cloth"
"clots", "cloud", "clour", "clous", "clout", "clove", "clown"
"clows", "cloye", "cloys", "cloze", "clubs", "cluck", "clued"
"clues", "cluey", "clump", "clung", "clunk", "clype", "cnida"
"coach", "coact", "coady", "coala", "coals", "coaly", "coapt"
"coarb", "coast", "coate", "coati", "coats", "cobbs", "cobby"
"cobia", "coble", "cobot", "cobra", "cobza", "cocas", "cocci"
"cocco", "cocks", "cocky", "cocoa", "cocos", "cocus", "codas"
"codec", "coded", "coden", "coder", "codes", "codex", "codon"
"coeds", "coffs", "cogie", "cogon", "cogue", "cohab", "cohen"
"cohoe", "cohog", "cohos", "coifs", "coign", "coils", "coins"
"coirs", "coits", "coked", "cokes", "cokey", "colas", "colby"
"colds", "coled", "coles", "coley", "colic", "colin", "colle"
"colls", "colly", "colog", "colon", "color", "colts", "colza"
"comae", "comal", "comas", "combe", "combi", "combo", "combs"
"comby", "comer", "comes", "comet", "comfy", "comic", "comix"
"comma", "comme", "commo", "comms", "commy", "compo", "comps"
"compt", "comte", "comus", "conch", "condo", "coned", "cones"
"conex", "coney", "confs", "conga", "conge", "congo", "conia"
"conic", "conin", "conks", "conky", "conne", "conns", "conte"
"conto", "conus", "convo", "cooch", "cooed", "cooee", "cooer"
"cooey", "coofs", "cooks", "cooky", "cools", "cooly", "coomb"
"cooms", "coomy", "coons", "coops", "coopt", "coost", "coots"
"cooty", "cooze", "copal", "copay", "coped", "copen", "coper"
"copes", "copha", "coppy", "copra", "copse", "copsy", "coqui"
"coral", "coram", "corbe", "corby", "corda", "cords", "cored"
"corer", "cores", "corey", "corgi", "coria", "corks", "corky"
"corms", "corni", "corno", "corns", "cornu", "corny", "corps"
"corse", "corso", "cosec", "cosed", "coses", "coset", "cosey"
"cosie", "costa", "coste", "costs", "cotan", "cotch", "coted"
"cotes", "coths", "cotta", "cotts", "couch", "coude", "cough"
"could", "count", "coupe", "coups", "courb", "courd", "coure"
"cours", "court", "couta", "couth", "coved", "coven", "cover"
"coves", "covet", "covey", "covin", "cowal", "cowan", "cowed"
"cower", "cowks", "cowls", "cowps", "cowry", "coxae", "coxal"
"coxed", "coxes", "coxib", "coyau", "coyed", "coyer", "coyly"
"coypu", "cozed", "cozen", "cozes", "cozey", "cozie", "craal"
"crabs", "crack", "craft", "crags", "craic", "craig", "crake"
"crame", "cramp", "crams", "crane", "crank", "crans", "crape"
"craps", "crapy", "crare", "crash", "crass", "crate", "crave"
"crawl", "craws", "crays", "craze", "crazy", "creak", "cream"
"credo", "creds", "creed", "creek", "creel", "creep", "crees"
"crein", "crema", "creme", "crems", "crena", "crepe", "creps"
"crept", "crepy", "cress", "crest", "crewe", "crews", "crias"
"cribo", "cribs", "crick", "cried", "crier", "cries", "crime"
"crimp", "crims", "crine", "crink", "crins", "crios", "cripe"
"crips", "crise", "crisp", "criss", "crith", "crits", "croak"
"croci", "crock", "crocs", "croft", "crogs", "cromb", "crome"
"crone", "cronk", "crons", "crony", "crook", "crool", "croon"
"crops", "crore", "cross", "crost", "croup", "crout", "crowd"
"crowl", "crown", "crows", "croze", "cruck", "crude", "crudo"
"cruds", "crudy", "cruel", "crues", "cruet", "cruft", "crumb"
"crump", "crunk", "cruor", "crura", "cruse", "crush", "crust"
"crusy", "cruve", "crwth", "cryer", "cryne", "crypt", "ctene"
"cubby", "cubeb", "cubed", "cuber", "cubes", "cubic", "cubit"
"cucks", "cudda", "cuddy", "cueca", "cuffo", "cuffs", "cuifs"
"cuing", "cuish", "cuits", "cukes", "culch", "culet", "culex"
"culls", "cully", "culms", "culpa", "culti", "cults", "culty"
"cumec", "cumin", "cundy", "cunei", "cunit", "cunny", "cunts"
"cupel", "cupid", "cuppa", "cuppy", "cupro", "curat", "curbs"
"curch", "curds", "curdy", "cured", "curer", "cures", "curet"
"curfs", "curia", "curie", "curio", "curli", "curls", "curly"
"curns", "curny", "currs", "curry", "curse", "cursi", "curst"
"curve", "curvy", "cusec", "cushy", "cusks", "cusps", "cuspy"
"cusso", "cusum", "cutch", "cuter", "cutes", "cutey", "cutie"
"cutin", "cutis", "cutto", "cutty", "cutup", "cuvee", "cuzes"
"cwtch", "cyano", "cyans", "cyber", "cycad", "cycas", "cycle"
"cyclo", "cyder", "cylix", "cymae", "cymar", "cymas", "cymes"
"cymol", "cynic", "cysts", "cytes", "cyton", "czars", "daals"
"dabba", "daces", "dacha", "dacks", "dadah", "dadas", "daddy"
"dadis", "dadla", "dados", "daffs", "daffy", "dagga", "daggy"
"dagos", "dahis", "dahls", "daiko", "daily", "daine", "daint"
"dairy", "daisy", "daker", "daled", "dalek", "dales", "dalis"
"dalle", "dally", "dalts", "daman", "damar", "dames", "damme"
"damna", "damns", "damps", "dampy", "dance", "dancy", "danda"
"dandy", "dangs", "danio", "danks", "danny", "danse", "dants"
"dappy", "daraf", "darbs", "darcy", "dared", "darer", "dares"
"darga", "dargs", "daric", "daris", "darks", "darky", "darls"
"darns", "darre", "darts", "darzi", "dashi", "dashy", "datal"
"dated", "dater", "dates", "datil", "datos", "datto", "datum"
"daube", "daubs", "dauby", "dauds", "dault", "daunt", "daurs"
"dauts", "daven", "davit", "dawah", "dawds", "dawed", "dawen"
"dawgs", "dawks", "dawns", "dawts", "dayal", "dayan", "daych"
"daynt", "dazed", "dazer", "dazes", "dbags", "deads", "deair"
"deals", "dealt", "deans", "deare", "dearn", "dears", "deary"
"deash", "death", "deave", "deaws", "deawy", "debag", "debar"
"debby", "debel", "debes", "debit", "debts", "debud", "debug"
"debur", "debus", "debut", "debye", "decad", "decaf", "decal"
"decan", "decay", "decim", "decko", "decks", "decor", "decos"
"decoy", "decry", "decyl", "dedal", "deeds", "deedy", "deely"
"deems", "deens", "deeps", "deere", "deers", "deets", "deeve"
"deevs", "defat", "defer", "deffo", "defis", "defog", "degas"
"degum", "degus", "deice", "deids", "deify", "deign", "deils"
"deink", "deism", "deist", "deity", "deked", "dekes", "dekko"
"delay", "deled", "deles", "delfs", "delft", "delis", "della"
"dells", "delly", "delos", "delph", "delta", "delts", "delve"
"deman", "demes", "demic", "demit", "demob", "demoi", "demon"
"demos", "demot", "dempt", "demur", "denar", "denay", "dench"
"denes", "denet", "denim", "denis", "dense", "dente", "dents"
"deoch", "deoxy", "depot", "depth", "derat", "deray", "derby"
"dered", "deres", "derig", "derma", "derms", "derns", "derny"
"deros", "derpy", "derro", "derry", "derth", "dervs", "desex"
"deshi", "desis", "desks", "desse", "detag", "deter", "detox"
"deuce", "devas", "devel", "devil", "devis", "devon", "devos"
"devot", "dewan", "dewar", "dewax", "dewed", "dexes", "dexie"
"dexys", "dhaba", "dhaks", "dhals", "dhikr", "dhobi", "dhole"
"dholl", "dhols", "dhoni", "dhoti", "dhows", "dhuti", "diact"
"dials", "diana", "diane", "diary", "diazo", "dibbs", "diced"
"dicer", "dices", "dicey", "dicht", "dicks", "dicky", "dicot"
"dicta", "dicto", "dicts", "dictu", "dicty", "diddy", "didie"
"didis", "didos", "didst", "diebs", "diels", "diene", "diets"
"diffs", "dight", "digit", "dikas", "diked", "diker", "dikes"
"dikey", "dildo", "dilli", "dills", "dilly", "dimbo", "dimer"
"dimes", "dimly", "dimps", "dinar", "dined", "diner", "dines"
"dinge", "dingo", "dings", "dingy", "dinic", "dinks", "dinky"
"dinlo", "dinna", "dinos", "dints", "dioch", "diode", "diols"
"diota", "dippy", "dipso", "diram", "direr", "dirge", "dirke"
"dirks", "dirls", "dirts", "dirty", "disas", "disci", "disco"
"discs", "dishy", "disks", "disme", "dital", "ditas", "ditch"
"dited", "dites", "ditsy", "ditto", "ditts", "ditty", "ditzy"
"divan", "divas", "dived", "diver", "dives", "divey", "divis"
"divna", "divos", "divot", "divvy", "diwan", "dixie", "dixit"
"diyas", "dizen", "dizzy", "djinn", "djins", "doabs", "doats"
"dobby", "dobes", "dobie", "dobla", "doble", "dobra", "dobro"
"docht", "docks", "docos", "docus", "doddy", "dodge", "dodgy"
"dodos", "doeks", "doers", "doest", "doeth", "doffs", "dogal"
"dogan", "doges", "dogey", "doggo", "doggy", "dogie", "dogly"
"dogma", "dohyo", "doilt", "doily", "doing", "doits", "dojos"
"dolce", "dolci", "doled", "dolee", "doles", "doley", "dolia"
"dolie", "dolls", "dolly", "dolma", "dolor", "dolos", "dolts"
"domal", "domed", "domes", "domic", "donah", "donas", "donee"
"doner", "donga", "dongs", "donko", "donna", "donne", "donny"
"donor", "donsy", "donut", "doobs", "dooce", "doody", "doofs"
"dooks", "dooky", "doole", "dools", "dooly", "dooms", "doomy"
"doona", "doorn", "doors", "doozy", "dopas", "doped", "doper"
"dopes", "dopey", "doppe", "dorad", "dorba", "dorbs", "doree"
"dores", "doric", "doris", "dorje", "dorks", "dorky", "dorms"
"dormy", "dorps", "dorrs", "dorsa", "dorse", "dorts", "dorty"
"dosai", "dosas", "dosed", "doseh", "doser", "doses", "dosha"
"dotal", "doted", "doter", "dotes", "dotty", "douar", "doubt"
"douce", "doucs", "dough", "douks", "doula", "douma", "doums"
"doups", "doura", "douse", "douts", "doved", "doven", "dover"
"doves", "dovie", "dowak", "dowar", "dowds", "dowdy", "dowed"
"dowel", "dower", "dowfs", "dowie", "dowle", "dowls", "dowly"
"downa", "downs", "downy", "dowps", "dowry", "dowse", "dowts"
"doxed", "doxes", "doxie", "doyen", "doyly", "dozed", "dozen"
"dozer", "dozes", "drabs", "drack", "draco", "draff", "draft"
"drags", "drail", "drain", "drake", "drama", "drams", "drank"
"drant", "drape", "draps", "drapy", "drats", "drave", "drawl"
"drawn", "draws", "drays", "dread", "dream", "drear", "dreck"
"dreed", "dreer", "drees", "dregs", "dreks", "drent", "drere"
"dress", "drest", "dreys", "dribs", "drice", "dried", "drier"
"dries", "drift", "drill", "drily", "drink", "drips", "dript"
"drive", "drock", "droid", "droil", "droit", "droke", "drole"
"droll", "drome", "drone", "drony", "droob", "droog", "drook"
"drool", "droop", "drops", "dropt", "dross", "drouk", "drove"
"drown", "drows", "drubs", "drugs", "druid", "drums", "drunk"
"drupe", "druse", "drusy", "druxy", "dryad", "dryas", "dryer"
"dryly", "dsobo", "dsomo", "duads", "duals", "duans", "duars"
"dubbo", "dubby", "ducal", "ducat", "duces", "duchy", "ducks"
"ducky", "ducti", "ducts", "duddy", "duded", "dudes", "duels"
"duets", "duett", "duffs", "dufus", "duing", "duits", "dukas"
"duked", "dukes", "dukka", "dukun", "dulce", "dules", "dulia"
"dulls", "dully", "dulse", "dumas", "dumbo", "dumbs", "dumka"
"dumky", "dummy", "dumps", "dumpy", "dunam", "dunce", "dunch"
"dunes", "dungs", "dungy", "dunks", "dunno", "dunny", "dunsh"
"dunts", "duomi", "duomo", "duped", "duper", "dupes", "duple"
"duply", "duppy", "dural", "duras", "dured", "dures", "durgy"
"durns", "duroc", "duros", "duroy", "durra", "durrs", "durry"
"durst", "durum", "durzi", "dusks", "dusky", "dusts", "dusty"
"dutch", "duvet", "duxes", "dwaal", "dwale", "dwalm", "dwams"
"dwamy", "dwang", "dwarf", "dwaum", "dweeb", "dwell", "dwelt"
"dwile", "dwine", "dyads", "dyers", "dying", "dyked", "dykes"
"dykey", "dykon", "dynel", "dynes", "dynos", "dzhos", "eager"
"eagle", "eagly", "eagre", "ealed", "eales", "eaned", "eards"
"eared", "earls", "early", "earns", "earnt", "earst", "earth"
"eased", "easel", "easer", "eases", "easle", "easts", "eaten"
"eater", "eathe", "eatin", "eaved", "eaver", "eaves", "ebank"
"ebbed", "ebbet", "ebena", "ebene", "ebike", "ebons", "ebony"
"ebook", "ecads", "ecard", "ecash", "eched", "eches", "echos"
"ecigs", "eclat", "ecole", "ecrus", "edema", "edged", "edger"
"edges", "edict", "edify", "edile", "edits", "educe", "educt"
"eejit", "eensy", "eerie", "eeven", "eever", "eevns", "effed"
"effer", "efits", "egads", "egers", "egest", "eggar", "egged"
"egger", "egmas", "egret", "ehing", "eider", "eidos", "eight"
"eigne", "eiked", "eikon", "eilds", "eiron", "eisel", "eject"
"ejido", "ekdam", "eking", "ekkas", "elain", "eland", "elans"
"elate", "elbow", "elchi", "elder", "eldin", "elect", "eleet"
"elegy", "elemi", "elfed", "elfin", "eliad", "elide", "elint"
"elite", "elmen", "eloge", "elogy", "eloin", "elope", "elops"
"elpee", "elsin", "elude", "elute", "elvan", "elven", "elver"
"elves", "emacs", "email", "embar", "embay", "embed", "ember"
"embog", "embow", "embox", "embus", "emcee", "emeer", "emend"
"emerg", "emery", "emeus", "emics", "emirs", "emits", "emmas"
"emmer", "emmet", "emmew", "emmys", "emoji", "emong", "emote"
"emove", "empts", "empty", "emule", "emure", "emyde", "emyds"
"enact", "enarm", "enate", "ended", "ender", "endew", "endow"
"endue", "enema", "enemy", "enews", "enfix", "eniac", "enjoy"
"enlit", "enmew", "ennog", "ennui", "enoki", "enols", "enorm"
"enows", "enrol", "ensew", "ensky", "ensue", "enter", "entia"
"entre", "entry", "enure", "enurn", "envoi", "envoy", "enzym"
"eolid", "eorls", "eosin", "epact", "epees", "epena", "epene"
"ephah", "ephas", "ephod", "ephor", "epics", "epoch", "epode"
"epopt", "epoxy", "eppie", "epris", "equal", "eques", "equid"
"equip", "erase", "erbia", "erect", "erevs", "ergon", "ergos"
"ergot", "erhus", "erica", "erick", "erics", "ering", "erned"
"ernes", "erode", "erose", "erred", "error", "erses", "eruct"
"erugo", "erupt", "eruvs", "erven", "ervil", "escar", "escot"
"esile", "eskar", "esker", "esnes", "esrog", "essay", "esses"
"ester", "estoc", "estop", "estro", "etage", "etape", "etats"
"etens", "ethal", "ether", "ethic", "ethne", "ethos", "ethyl"
"etics", "etnas", "etrog", "ettin", "ettle", "etude", "etuis"
"etwee", "etyma", "eughs", "euked", "eupad", "euros", "eusol"
"evade", "evegs", "evens", "event", "evert", "every", "evets"
"evhoe", "evict", "evils", "evite", "evohe", "evoke", "ewers"
"ewest", "ewhow", "ewked", "exact", "exalt", "exams", "excel"
"exeat", "execs", "exeem", "exeme", "exert", "exfil", "exier"
"exies", "exile", "exine", "exing", "exist", "exite", "exits"
"exode", "exome", "exons", "expat", "expel", "expos", "extol"
"extra", "exude", "exuls", "exult", "exurb", "eyass", "eyers"
"eying", "eyots", "eyras", "eyres", "eyrie", "eyrir", "ezine"
"fabbo", "fabby", "fable", "faced", "facer", "faces", "facet"
"facey", "facia", "facie", "facta", "facto", "facts", "facty"
"faddy", "faded", "fader", "fades", "fadge", "fados", "faena"
"faery", "faffs", "faffy", "faggy", "fagin", "fagot", "faiks"
"fails", "faine", "fains", "faint", "faire", "fairs", "fairy"
"faith", "faked", "faker", "fakes", "fakey", "fakie", "fakir"
"falaj", "fales", "falls", "false", "falsy", "famed", "fames"
"fanal", "fancy", "fands", "fanes", "fanga", "fango", "fangs"
"fanks", "fanny", "fanon", "fanos", "fanum", "faqir", "farad"
"farce", "farci", "farcy", "fards", "fared", "farer", "fares"
"farle", "farls", "farms", "faros", "farro", "farse", "farts"
"fasci", "fasti", "fasts", "fatal", "fated", "fates", "fatly"
"fatso", "fatty", "fatwa", "fauch", "faugh", "fauld", "fault"
"fauna", "fauns", "faurd", "faute", "fauts", "fauve", "favas"
"favel", "faver", "faves", "favor", "favus", "fawns", "fawny"
"faxed", "faxes", "fayed", "fayer", "fayne", "fayre", "fazed"
"fazes", "feals", "feard", "feare", "fears", "feart", "fease"
"feast", "feats", "feaze", "fecal", "feces", "fecht", "fecit"
"fecks", "fedai", "fedex", "feebs", "feeds", "feels", "feely"
"feens", "feers", "feese", "feeze", "fehme", "feign", "feint"
"feist", "felch", "felid", "felix", "fella", "fells", "felly"
"felon", "felts", "felty", "femal", "femes", "femic", "femme"
"femmy", "femur", "fence", "fends", "fendy", "fenis", "fenks"
"fenny", "fents", "feods", "feoff", "feral", "ferer", "feres"
"feria", "ferly", "fermi", "ferms", "ferns", "ferny", "ferox"
"ferry", "fesse", "festa", "fests", "festy", "fetal", "fetas"
"fetch", "feted", "fetes", "fetid", "fetor", "fetta", "fetts"
"fetus", "fetwa", "feuar", "feuds", "feued", "fever", "fewer"
"feyed", "feyer", "feyly", "fezes", "fezzy", "fiars", "fiats"
"fiber", "fibre", "fibro", "fices", "fiche", "fichu", "ficin"
"ficos", "ficta", "ficus", "fides", "fidge", "fidos", "fidus"
"fiefs", "field", "fiend", "fient", "fiere", "fieri", "fiers"
"fiery", "fiest", "fifed", "fifer", "fifes", "fifis", "fifth"
"fifty", "figgy", "fight", "figos", "fiked", "fikes", "filar"
"filch", "filed", "filer", "files", "filet", "filii", "filks"
"fille", "fillo", "fills", "filly", "filmi", "films", "filmy"
"filon", "filos", "filth", "filum", "final", "finca", "finch"
"finds", "fined", "finer", "fines", "finis", "finks", "finny"
"finos", "fiord", "fiqhs", "fique", "fired", "firer", "fires"
"firie", "firks", "firma", "firms", "firni", "firns", "firry"
"first", "firth", "fiscs", "fisho", "fishy", "fisks", "fists"
"fisty", "fitch", "fitly", "fitna", "fitte", "fitts", "fiver"
"fives", "fixed", "fixer", "fixes", "fixie", "fixit", "fizzy"
"fjeld", "fjord", "flabs", "flack", "flaff", "flags", "flail"
"flair", "flake", "flaks", "flaky", "flame", "flamm", "flams"
"flamy", "flane", "flank", "flans", "flaps", "flare", "flary"
"flash", "flask", "flats", "flava", "flawn", "flaws", "flawy"
"flaxy", "flays", "fleam", "fleas", "fleck", "fleek", "fleer"
"flees", "fleet", "flegs", "fleme", "flesh", "fleur", "flews"
"flexi", "flexo", "fleys", "flick", "flics", "flied", "flier"
"flies", "flimp", "flims", "fling", "flint", "flips", "flirs"
"flirt", "flisk", "flite", "flits", "flitt", "float", "flobs"
"flock", "flocs", "floes", "flogs", "flong", "flood", "floor"
"flops", "flora", "flore", "flors", "flory", "flosh", "floss"
"flota", "flote", "flour", "flout", "flown", "flows", "flowy"
"flubs", "flued", "flues", "fluey", "fluff", "fluid", "fluke"
"fluky", "flume", "flump", "flung", "flunk", "fluor", "flurr"
"flush", "flute", "fluty", "fluyt", "flyby", "flyer", "flyin"
"flype", "flyte", "fnarr", "foals", "foams", "foamy", "focal"
"focus", "foehn", "fogey", "foggy", "fogie", "fogle", "fogos"
"fogou", "fohns", "foids", "foils", "foins", "foist", "folds"
"foley", "folia", "folic", "folie", "folio", "folks", "folky"
"folly", "fomes", "fonda", "fonds", "fondu", "fones", "fonio"
"fonly", "fonts", "foods", "foody", "fools", "foots", "footy"
"foram", "foray", "forbs", "forby", "force", "fordo", "fords"
"forel", "fores", "forex", "forge", "forgo", "forks", "forky"
"forma", "forme", "forms", "forte", "forth", "forts", "forty"
"forum", "forza", "forze", "fossa", "fosse", "fouat", "fouds"
"fouer", "fouet", "foule", "fouls", "found", "fount", "fours"
"fouth", "fovea", "fowls", "fowth", "foxed", "foxes", "foxie"
"foyer", "foyle", "foyne", "frabs", "frack", "fract", "frags"
"frail", "fraim", "frais", "frame", "franc", "frank", "frape"
"fraps", "frass", "frate", "frati", "frats", "fraud", "fraus"
"frays", "freak", "freed", "freer", "frees", "freet", "freit"
"fremd", "frena", "freon", "frere", "fresh", "frets", "friar"
"fribs", "fried", "frier", "fries", "frigs", "frill", "frise"
"frisk", "frist", "frita", "frite", "frith", "frits", "fritt"
"fritz", "frize", "frizz", "frock", "froes", "frogs", "fromm"
"frond", "frons", "front", "froom", "frore", "frorn", "frory"
"frosh", "frost", "froth", "frown", "frows", "frowy", "froyo"
"froze", "frugs", "fruit", "frump", "frush", "frust", "fryer"
"fubar", "fubby", "fubsy", "fucks", "fucus", "fuddy", "fudge"
"fudgy", "fuels", "fuero", "fuffs", "fuffy", "fugal", "fuggy"
"fugie", "fugio", "fugis", "fugle", "fugly", "fugue", "fugus"
"fujis", "fulla", "fulls", "fully", "fulth", "fulwa", "fumed"
"fumer", "fumes", "fumet", "funda", "fundi", "fundo", "funds"
"fundy", "fungi", "fungo", "fungs", "funic", "funis", "funks"
"funky", "funny", "funsy", "funts", "fural", "furan", "furca"
"furls", "furol", "furor", "furos", "furrs", "furry", "furth"
"furze", "furzy", "fused", "fusee", "fusel", "fuses", "fusil"
"fusks", "fussy", "fusts", "fusty", "futon", "fuzed", "fuzee"
"fuzes", "fuzil", "fuzzy", "fyces", "fyked", "fykes", "fyles"
"fyrds", "fytte", "gabba", "gabby", "gable", "gaddi", "gades"
"gadge", "gadgy", "gadid", "gadis", "gadje", "gadjo", "gadso"
"gaffe", "gaffs", "gaged", "gager", "gages", "gaids", "gaily"
"gains", "gairs", "gaita", "gaits", "gaitt", "gajos", "galah"
"galas", "galax", "galea", "galed", "gales", "galia", "galis"
"galls", "gally", "galop", "galut", "galvo", "gamas", "gamay"
"gamba", "gambe", "gambo", "gambs", "gamed", "gamer", "games"
"gamey", "gamic", "gamin", "gamma", "gamme", "gammy", "gamps"
"gamut", "ganch", "gandy", "ganef", "ganev", "gangs", "ganja"
"ganks", "ganof", "gants", "gaols", "gaped", "gaper", "gapes"
"gapos", "gappy", "garam", "garba", "garbe", "garbo", "garbs"
"garda", "garde", "gares", "garis", "garms", "garni", "garre"
"garri", "garth", "garum", "gases", "gashy", "gasps", "gaspy"
"gassy", "gasts", "gatch", "gated", "gater", "gates", "gaths"
"gator", "gauch", "gaucy", "gauds", "gaudy", "gauge", "gauje"
"gault", "gaums", "gaumy", "gaunt", "gaups", "gaurs", "gauss"
"gauze", "gauzy", "gavel", "gavot", "gawcy", "gawds", "gawks"
"gawky", "gawps", "gawsy", "gayal", "gayer", "gayly", "gazal"
"gazar", "gazed", "gazer", "gazes", "gazon", "gazoo", "geals"
"geans", "geare", "gears", "geasa", "geats", "gebur", "gecko"
"gecks", "geeks", "geeky", "geeps", "geese", "geest", "geist"
"geits", "gelds", "gelee", "gelid", "gelly", "gelts", "gemel"
"gemma", "gemmy", "gemot", "genae", "genal", "genas", "genes"
"genet", "genic", "genie", "genii", "genin", "genio", "genip"
"genny", "genoa", "genom", "genre", "genro", "gents", "genty"
"genua", "genus", "geode", "geoid", "gerah", "gerbe", "geres"
"gerle", "germs", "germy", "gerne", "gesse", "gesso", "geste"
"gests", "getas", "getup", "geums", "geyan", "geyer", "ghast"
"ghats", "ghaut", "ghazi", "ghees", "ghest", "ghost", "ghoul"
"ghusl", "ghyll", "giant", "gibed", "gibel", "giber", "gibes"
"gibli", "gibus", "giddy", "gifts", "gigas", "gighe", "gigot"
"gigue", "gilas", "gilds", "gilet", "gilia", "gills", "gilly"
"gilpy", "gilts", "gimel", "gimme", "gimps", "gimpy", "ginch"
"ginga", "ginge", "gings", "ginks", "ginny", "ginzo", "gipon"
"gippo", "gippy", "gipsy", "girds", "girlf", "girls", "girly"
"girns", "giron", "giros", "girrs", "girsh", "girth", "girts"
"gismo", "gisms", "gists", "gitch", "gites", "giust", "gived"
"given", "giver", "gives", "gizmo", "glace", "glade", "glads"
"glady", "glaik", "glair", "glamp", "glams", "gland", "glans"
"glare", "glary", "glass", "glatt", "glaum", "glaur", "glaze"
"glazy", "gleam", "glean", "gleba", "glebe", "gleby", "glede"
"gleds", "gleed", "gleek", "glees", "gleet", "gleis", "glens"
"glent", "gleys", "glial", "glias", "glibs", "glide", "gliff"
"glift", "glike", "glime", "glims", "glint", "glisk", "glits"
"glitz", "gloam", "gloat", "globe", "globi", "globs", "globy"
"glode", "glogg", "gloms", "gloom", "gloop", "glops", "glory"
"gloss", "glost", "glout", "glove", "glows", "glowy", "gloze"
"glued", "gluer", "glues", "gluey", "glugg", "glugs", "glume"
"glums", "gluon", "glute", "gluts", "glyph", "gnapi", "gnarl"
"gnarr", "gnars", "gnash", "gnats", "gnawn", "gnaws", "gnome"
"gnows", "goads", "goafs", "goaft", "goals", "goary", "goats"
"goaty", "goave", "goban", "gobar", "gobbe", "gobbi", "gobbo"
"gobby", "gobis", "gobos", "godet", "godly", "godso", "goels"
"goers", "goest", "goeth", "goety", "gofer", "goffs", "gogga"
"gogos", "goier", "going", "gojis", "gokes", "golds", "goldy"
"golem", "goles", "golfs", "golly", "golpe", "golps", "gombo"
"gomer", "gompa", "gonad", "gonch", "gonef", "goner", "gongs"
"gonia", "gonif", "gonks", "gonna", "gonof", "gonys", "gonzo"
"gooby", "goodo", "goods", "goody", "gooey", "goofs", "goofy"
"googs", "gooks", "gooky", "goold", "gools", "gooly", "goomy"
"goons", "goony", "goops", "goopy", "goors", "goory", "goose"
"goosy", "gopak", "gopik", "goral", "goras", "goray", "gorbs"
"gordo", "gored", "gores", "gorge", "goris", "gorms", "gormy"
"gorps", "gorse", "gorsy", "gosht", "gosse", "gotch", "goths"
"gothy", "gotta", "gouch", "gouge", "gouks", "goura", "gourd"
"gouts", "gouty", "goved", "goves", "gowan", "gowds", "gowfs"
"gowks", "gowls", "gowns", "goxes", "goyim", "goyle", "graal"
"grabs", "grace", "grade", "grads", "graff", "graft", "grail"
"grain", "graip", "grama", "grame", "gramp", "grams", "grana"
"grand", "grano", "grans", "grant", "grape", "graph", "grapy"
"grasp", "grass", "grata", "grate", "grats", "grave", "gravs"
"gravy", "grays", "graze", "great", "grebe", "grebo", "grece"
"greed", "greek", "green", "grees", "greet", "grege", "grego"
"grein", "grens", "greps", "grese", "greve", "grews", "greys"
"grice", "gride", "grids", "grief", "griff", "grift", "grigs"
"grike", "grill", "grime", "grimy", "grind", "grins", "griot"
"gripe", "grips", "gript", "gripy", "grise", "grist", "grisy"
"grith", "grits", "grize", "groan", "groat", "grody", "grogs"
"groin", "groks", "groma", "groms", "grone", "groof", "groom"
"grope", "gross", "grosz", "grots", "grouf", "group", "grout"
"grove", "grovy", "growl", "grown", "grows", "grrls", "grrrl"
"grubs", "grued", "gruel", "grues", "grufe", "gruff", "grume"
"grump", "grund", "grunt", "gryce", "gryde", "gryke", "grype"
"grypt", "guaco", "guana", "guano", "guans", "guard", "guars"
"guava", "gubba", "gucks", "gucky", "gudes", "guess", "guest"
"guffs", "gugas", "guggl", "guide", "guido", "guids", "guild"
"guile", "guilt", "guimp", "guiro", "guise", "gulab", "gulag"
"gular", "gulas", "gulch", "gules", "gulet", "gulfs", "gulfy"
"gulls", "gully", "gulph", "gulps", "gulpy", "gumbo", "gumma"
"gummi", "gummy", "gumps", "gunas", "gundi", "gundy", "gunge"
"gungy", "gunks", "gunky", "gunny", "guppy", "guqin", "gurdy"
"gurge", "gurks", "gurls", "gurly", "gurns", "gurry", "gursh"
"gurus", "gushy", "gusla", "gusle", "gusli", "gussy", "gusto"
"gusts", "gusty", "gutsy", "gutta", "gutty", "guyed", "guyle"
"guyot", "guyse", "gwine", "gyals", "gyans", "gybed", "gybes"
"gyeld", "gymps", "gynae", "gynie", "gynny", "gynos", "gyoza"
"gypes", "gypos", "gyppo", "gyppy", "gypsy", "gyral", "gyred"
"gyres", "gyron", "gyros", "gyrus", "gytes", "gyved", "gyver"
"gyves", "haafs", "haars", "haats", "habit", "hable", "habus"
"hacek", "hacks", "hacky", "hadal", "haded", "hades", "hadji"
"hadst", "haems", "haere", "haets", "haffs", "hafiz", "hafta"
"hafts", "haggs", "haham", "hahas", "haick", "haika", "haiks"
"haiku", "hails", "haily", "hains", "haint", "hairs", "hairy"
"haith", "hajes", "hajis", "hajji", "hakam", "hakas", "hakea"
"hakes", "hakim", "hakus", "halal", "haldi", "haled", "haler"
"hales", "halfa", "halfs", "halid", "hallo", "halls", "halma"
"halms", "halon", "halos", "halse", "halsh", "halts", "halva"
"halve", "halwa", "hamal", "hamba", "hamed", "hamel", "hames"
"hammy", "hamza", "hanap", "hance", "hanch", "handi", "hands"
"handy", "hangi", "hangs", "hanks", "hanky", "hansa", "hanse"
"hants", "haole", "haoma", "hapas", "hapax", "haply", "happi"
"happy", "hapus", "haram", "hards", "hardy", "hared", "harem"
"hares", "harim", "harks", "harls", "harms", "harns", "haros"
"harps", "harpy", "harry", "harsh", "harts", "hashy", "hasks"
"hasps", "hasta", "haste", "hasty", "hatch", "hated", "hater"
"hates", "hatha", "hathi", "hatty", "hauds", "haufs", "haugh"
"haugo", "hauld", "haulm", "hauls", "hault", "hauns", "haunt"
"hause", "haute", "havan", "havel", "haven", "haver", "haves"
"havoc", "hawed", "hawks", "hawms", "hawse", "hayed", "hayer"
"hayey", "hayle", "hazan", "hazed", "hazel", "hazer", "hazes"
"hazle", "heads", "heady", "heald", "heals", "heame", "heaps"
"heapy", "heard", "heare", "hears", "heart", "heast", "heath"
"heats", "heaty", "heave", "heavy", "heben", "hebes", "hecht"
"hecks", "heder", "hedge", "hedgy", "heeds", "heedy", "heels"
"heeze", "hefte", "hefts", "hefty", "heiau", "heids", "heigh"
"heils", "heirs", "heist", "hejab", "hejra", "heled", "heles"
"helio", "helix", "hella", "hello", "hells", "helly", "helms"
"helos", "helot", "helps", "helve", "hemal", "hemes", "hemic"
"hemin", "hemps", "hempy", "hence", "hench", "hends", "henge"
"henna", "henny", "henry", "hents", "hepar", "herbs", "herby"
"herds", "heres", "herls", "herma", "herms", "herns", "heron"
"heros", "herps", "herry", "herse", "hertz", "herye", "hesps"
"hests", "hetes", "heths", "heuch", "heugh", "hevea", "hevel"
"hewed", "hewer", "hewgh", "hexad", "hexed", "hexer", "hexes"
"hexyl", "heyed", "hiant", "hibas", "hicks", "hided", "hider"
"hides", "hiems", "hifis", "highs", "hight", "hijab", "hijra"
"hiked", "hiker", "hikes", "hikoi", "hilar", "hilch", "hillo"
"hills", "hilly", "hilsa", "hilts", "hilum", "hilus", "himbo"
"hinau", "hinds", "hinge", "hings", "hinky", "hinny", "hints"
"hiois", "hiped", "hiper", "hipes", "hiply", "hippo", "hippy"
"hired", "hiree", "hirer", "hires", "hissy", "hists", "hitch"
"hithe", "hived", "hiver", "hives", "hizen", "hoach", "hoaed"
"hoagy", "hoard", "hoars", "hoary", "hoast", "hobby", "hobos"
"hocks", "hocus", "hodad", "hodja", "hoers", "hogan", "hogen"
"hoggs", "hoghs", "hogoh", "hogos", "hohed", "hoick", "hoied"
"hoiks", "hoing", "hoise", "hoist", "hokas", "hoked", "hokes"
"hokey", "hokis", "hokku", "hokum", "holds", "holed", "holes"
"holey", "holks", "holla", "hollo", "holly", "holme", "holms"
"holon", "holos", "holts", "homas", "homed", "homer", "homes"
"homey", "homie", "homme", "homos", "honan", "honda", "honds"
"honed", "honer", "hones", "honey", "hongi", "hongs", "honks"
"honky", "honor", "hooch", "hoods", "hoody", "hooey", "hoofs"
"hoogo", "hooha", "hooka", "hooks", "hooky", "hooly", "hoons"
"hoops", "hoord", "hoors", "hoosh", "hoots", "hooty", "hoove"
"hopak", "hoped", "hoper", "hopes", "hoppy", "horah", "horal"
"horas", "horde", "horis", "horks", "horme", "horns", "horny"
"horse", "horst", "horsy", "hosed", "hosel", "hosen", "hoser"
"hoses", "hosey", "hosta", "hosts", "hotch", "hotel", "hoten"
"hotis", "hotly", "hotte", "hotty", "houff", "houfs", "hough"
"hound", "houri", "hours", "house", "houts", "hovea", "hoved"
"hovel", "hoven", "hover", "hoves", "howay", "howbe", "howdy"
"howes", "howff", "howfs", "howks", "howls", "howre", "howso"
"howto", "hoxed", "hoxes", "hoyas", "hoyed", "hoyle", "hubba"
"hubby", "hucks", "hudna", "hudud", "huers", "huffs", "huffy"
"huger", "huggy", "huhus", "huias", "huies", "hukou", "hulas"
"hules", "hulks", "hulky", "hullo", "hulls", "hully", "human"
"humas", "humfs", "humic", "humid", "humor", "humph", "humps"
"humpy", "humus", "hunch", "hundo", "hunks", "hunky", "hunts"
"hurds", "hurls", "hurly", "hurra", "hurry", "hurst", "hurts"
"hurty", "hushy", "husks", "husky", "husos", "hussy", "hutch"
"hutia", "huzza", "huzzy", "hwyls", "hydel", "hydra", "hydro"
"hyena", "hyens", "hygge", "hying", "hykes", "hylas", "hyleg"
"hyles", "hylic", "hymen", "hymns", "hynde", "hyoid", "hyped"
"hyper", "hypes", "hypha", "hyphy", "hypos", "hyrax", "hyson"
"hythe", "iambi", "iambs", "ibrik", "icers", "iched", "iches"
"ichor", "icier", "icily", "icing", "icker", "ickle", "icons"
"ictal", "ictic", "ictus", "idant", "iddah", "iddat", "iddut"
"ideal", "ideas", "idees", "ident", "idiom", "idiot", "idled"
"idler", "idles", "idlis", "idola", "idols", "idyll", "idyls"
"iftar", "igapo", "igged", "igloo", "iglus", "ignis", "ihram"
"iiwis", "ikans", "ikats", "ikons", "ileac", "ileal", "ileum"
"ileus", "iliac", "iliad", "ilial", "ilium", "iller", "illth"
"image", "imago", "imagy", "imams", "imari", "imaum", "imbar"
"imbed", "imbos", "imbue", "imide", "imido", "imids", "imine"
"imino", "imlis", "immew", "immit", "immix", "imped", "impel"
"impis", "imply", "impot", "impro", "imshi", "imshy", "inane"
"inapt", "inarm", "inbox", "inbye", "incas", "incel", "incle"
"incog", "incur", "incus", "incut", "indew", "index", "india"
"indie", "indol", "indow", "indri", "indue", "inept", "inerm"
"inert", "infer", "infix", "infos", "infra", "ingan", "ingle"
"ingot", "inion", "inked", "inker", "inkle", "inlay", "inlet"
"inned", "inner", "innie", "innit", "inorb", "input", "inros"
"inrun", "insee", "inset", "inspo", "intel", "inter", "intil"
"intis", "intra", "intro", "inula", "inure", "inurn", "inust"
"invar", "inver", "inwit", "iodic", "iodid", "iodin", "ionic"
"ioras", "iotas", "ippon", "irade", "irate", "irids", "iring"
"irked", "iroko", "irone", "irons", "irony", "isbas", "ishes"
"isled", "isles", "islet", "isnae", "issei", "issue", "istle"
"itchy", "items", "ither", "ivied", "ivies", "ivory", "ixias"
"ixnay", "ixora", "ixtle", "izard", "izars", "izzat", "jaaps"
"jabot", "jacal", "jacet", "jacks", "jacky", "jaded", "jades"
"jafas", "jaffa", "jagas", "jager", "jaggs", "jaggy", "jagir"
"jagra", "jails", "jaker", "jakes", "jakey", "jakie", "jalap"
"jaleo", "jalop", "jambe", "jambo", "jambs", "jambu", "james"
"jammy", "jamon", "jamun", "janes", "janky", "janns", "janny"
"janty", "japan", "japed", "japer", "japes", "jarks", "jarls"
"jarps", "jarta", "jarul", "jasey", "jaspe", "jasps", "jatha"
"jatis", "jatos", "jauks", "jaune", "jaunt", "jaups", "javas"
"javel", "jawan", "jawed", "jawns", "jaxie", "jazzy", "jeans"
"jeats", "jebel", "jedis", "jeels", "jeely", "jeeps", "jeera"
"jeers", "jeeze", "jefes", "jeffs", "jehad", "jehus", "jelab"
"jello", "jells", "jelly", "jembe", "jemmy", "jenny", "jeons"
"jerid", "jerks", "jerky", "jerry", "jesse", "jessy", "jests"
"jesus", "jetee", "jetes", "jeton", "jetty", "jeune", "jewed"
"jewel", "jewie", "jhala", "jheel", "jhils", "jiaos", "jibba"
"jibbs", "jibed", "jiber", "jibes", "jiffs", "jiffy", "jiggy"
"jigot", "jihad", "jills", "jilts", "jimmy", "jimpy", "jingo"
"jings", "jinks", "jinne", "jinni", "jinns", "jirds", "jirga"
"jirre", "jisms", "jitis", "jitty", "jived", "jiver", "jives"
"jivey", "jnana", "jobed", "jobes", "jocko", "jocks", "jocky"
"jocos", "jodel", "joeys", "johns", "joins", "joint", "joist"
"joked", "joker", "jokes", "jokey", "jokol", "joled", "joles"
"jolie", "jollo", "jolls", "jolly", "jolts", "jolty", "jomon"
"jomos", "jones", "jongs", "jonty", "jooks", "joram", "jorts"
"jorum", "jotas", "jotty", "jotun", "joual", "jougs", "jouks"
"joule", "jours", "joust", "jowar", "jowed", "jowls", "jowly"
"joyed", "jubas", "jubes", "jucos", "judas", "judge", "judgy"
"judos", "jugal", "jugum", "juice", "juicy", "jujus", "juked"
"jukes", "jukus", "julep", "julia", "jumar", "jumbo", "jumby"
"jumps", "jumpy", "junco", "junks", "junky", "junta", "junto"
"jupes", "jupon", "jural", "jurat", "jurel", "jures", "juris"
"juror", "juste", "justs", "jutes", "jutty", "juves", "juvie"
"kaama", "kabab", "kabar", "kabob", "kacha", "kacks", "kadai"
"kades", "kadis", "kafir", "kagos", "kagus", "kahal", "kaiak"
"kaids", "kaies", "kaifs", "kaika", "kaiks", "kails", "kaims"
"kaing", "kains", "kajal", "kakas", "kakis", "kalam", "kalas"
"kales", "kalif", "kalis", "kalpa", "kalua", "kamas", "kames"
"kamik", "kamis", "kamme", "kanae", "kanal", "kanas", "kanat"
"kandy", "kaneh", "kanes", "kanga", "kangs", "kanji", "kants"
"kanzu", "kaons", "kapai", "kapas", "kapha", "kaphs", "kapok"
"kapow", "kappa", "kapur", "kapus", "kaput", "karai", "karas"
"karat", "karee", "karez", "karks", "karma", "karns", "karoo"
"karos", "karri", "karst", "karsy", "karts", "karzy", "kasha"
"kasme", "katal", "katas", "katis", "katti", "kaugh", "kauri"
"kauru", "kaury", "kaval", "kavas", "kawas", "kawau", "kawed"
"kayak", "kayle", "kayos", "kazis", "kazoo", "kbars", "kcals"
"keaki", "kebab", "kebar", "kebob", "kecks", "kedge", "kedgy"
"keech", "keefs", "keeks", "keels", "keema", "keeno", "keens"
"keeps", "keets", "keeve", "kefir", "kehua", "keirs", "kelep"
"kelim", "kells", "kelly", "kelps", "kelpy", "kelts", "kelty"
"kembo", "kembs", "kemps", "kempt", "kempy", "kenaf", "kench"
"kendo", "kenos", "kente", "kents", "kepis", "kerbs", "kerel"
"kerfs", "kerky", "kerma", "kerne", "kerns", "keros", "kerry"
"kerve", "kesar", "kests", "ketas", "ketch", "ketes", "ketol"
"kevel", "kevil", "kexes", "keyed", "keyer", "khadi", "khads"
"khafs", "khaki", "khana", "khans", "khaph", "khats", "khaya"
"khazi", "kheda", "kheer", "kheth", "khets", "khirs", "khoja"
"khors", "khoum", "khuds", "khula", "khyal", "kiaat", "kiack"
"kiaki", "kiang", "kiasu", "kibbe", "kibbi", "kibei", "kibes"
"kibla", "kicks", "kicky", "kiddo", "kiddy", "kidel", "kideo"
"kidge", "kiefs", "kiers", "kieve", "kievs", "kight", "kikay"
"kikes", "kikoi", "kiley", "kilig", "kilim", "kills", "kilns"
"kilos", "kilps", "kilts", "kilty", "kimbo", "kimet", "kinas"
"kinda", "kinds", "kindy", "kines", "kings", "kingy", "kinin"
"kinks", "kinky", "kinos", "kiore", "kiosk", "kipah", "kipas"
"kipes", "kippa", "kipps", "kipsy", "kirby", "kirks", "kirns"
"kirri", "kisan", "kissy", "kists", "kitab", "kited", "kiter"
"kites", "kithe", "kiths", "kitke", "kitty", "kitul", "kivas"
"kiwis", "klang", "klaps", "klett", "klick", "klieg", "kliks"
"klong", "kloof", "kluge", "klutz", "knack", "knags", "knaps"
"knarl", "knars", "knaur", "knave", "knawe", "knead", "kneed"
"kneel", "knees", "knell", "knelt", "knick", "knife", "knish"
"knits", "knive", "knobs", "knock", "knoll", "knoop", "knops"
"knosp", "knots", "knoud", "knout", "knowd", "knowe", "known"
"knows", "knubs", "knule", "knurl", "knurr", "knurs", "knuts"
"koala", "koans", "koaps", "koban", "kobos", "koels", "koffs"
"kofta", "kogal", "kohas", "kohen", "kohls", "koine", "koiwi"
"kojis", "kokam", "kokas", "koker", "kokra", "kokum", "kolas"
"kolos", "kombi", "kombu", "konbu", "kondo", "konks", "kooks"
"kooky", "koori", "kopek", "kophs", "kopje", "koppa", "korai"
"koran", "koras", "korat", "kores", "koris", "korma", "koros"
"korun", "korus", "koses", "kotch", "kotos", "kotow", "koura"
"kraal", "krabs", "kraft", "krais", "krait", "krang", "krans"
"kranz", "kraut", "krays", "kreef", "kreen", "kreep", "kreng"
"krewe", "krill", "kriol", "krona", "krone", "kroon", "krubi"
"krump", "krunk", "ksars", "kubie", "kudos", "kudus", "kudzu"
"kufis", "kugel", "kuias", "kukri", "kukus", "kulak", "kulan"
"kulas", "kulfi", "kumis", "kumys", "kunas", "kunds", "kuris"
"kurre", "kurta", "kurus", "kusso", "kusti", "kutai", "kutas"
"kutch", "kutis", "kutus", "kuyas", "kuzus", "kvass", "kvell"
"kwaai", "kwela", "kwink", "kwirl", "kyack", "kyaks", "kyang"
"kyars", "kyats", "kybos", "kydst", "kyles", "kylie", "kylin"
"kylix", "kyloe", "kynde", "kynds", "kypes", "kyrie", "kytes"
"kythe", "kyudo", "laarf", "laari", "labda", "label", "labia"
"labis", "labne", "labor", "labra", "laccy", "laced", "lacer"
"laces", "lacet", "lacey", "lacis", "lacka", "lacks", "lacky"
"laddu", "laddy", "laded", "ladee", "laden", "lader", "lades"
"ladle", "ladoo", "laers", "laevo", "lagan", "lagar", "lager"
"laggy", "lahal", "lahar", "laich", "laics", "laide", "laids"
"laigh", "laika", "laiks", "laird", "lairs", "lairy", "laith"
"laity", "laked", "laker", "lakes", "lakhs", "lakin", "laksa"
"laldy", "lalls", "lamas", "lambs", "lamby", "lamed", "lamer"
"lames", "lamia", "lammy", "lamps", "lanai", "lanas", "lance"
"lanch", "lande", "lands", "laned", "lanes", "lanks", "lanky"
"lants", "lapas", "lapel", "lapin", "lapis", "lapje", "lappa"
"lappy", "lapse", "larch", "lards", "lardy", "laree", "lares"
"larfs", "larga", "large", "largo", "laris", "larks", "larky"
"larns", "larnt", "larum", "larva", "lased", "laser", "lases"
"lassi", "lasso", "lassu", "lassy", "lasts", "latah", "latch"
"lated", "laten", "later", "latex", "lathe", "lathi", "laths"
"lathy", "latke", "latte", "latus", "lauan", "lauch", "laude"
"lauds", "laufs", "laugh", "laund", "laura", "laval", "lavas"
"laved", "laver", "laves", "lavra", "lavvy", "lawed", "lawer"
"lawin", "lawks", "lawns", "lawny", "lawsy", "laxed", "laxer"
"laxes", "laxly", "layby", "layed", "layer", "layin", "layup"
"lazar", "lazed", "lazes", "lazos", "lazzi", "lazzo", "leach"
"leads", "leady", "leafs", "leafy", "leaks", "leaky", "leams"
"leans", "leant", "leany", "leaps", "leapt", "leare", "learn"
"lears", "leary", "lease", "leash", "least", "leats", "leave"
"leavy", "leaze", "leben", "leccy", "leche", "ledes", "ledge"
"ledgy", "ledum", "leear", "leech", "leeks", "leeps", "leers"
"leery", "leese", "leets", "leeze", "lefte", "lefts", "lefty"
"legal", "leger", "leges", "legge", "leggo", "leggy", "legit"
"legno", "lehrs", "lehua", "leirs", "leish", "leman", "lemed"
"lemel", "lemes", "lemma", "lemme", "lemon", "lemur", "lends"
"lenes", "lengs", "lenis", "lenos", "lense", "lenti", "lento"
"leone", "lepak", "leper", "lepid", "lepra", "lepta", "lered"
"leres", "lerps", "lesbo", "leses", "lesos", "lests", "letch"
"lethe", "letty", "letup", "leuch", "leuco", "leuds", "leugh"
"levas", "levee", "level", "lever", "leves", "levin", "levis"
"lewis", "lexes", "lexis", "lezes", "lezza", "lezzo", "lezzy"
"liana", "liane", "liang", "liard", "liars", "liart", "libel"
"liber", "libor", "libra", "libre", "libri", "licet", "lichi"
"licht", "licit", "licks", "lidar", "lidos", "liefs", "liege"
"liens", "liers", "lieus", "lieve", "lifer", "lifes", "lifey"
"lifts", "ligan", "liger", "ligge", "light", "ligne", "liked"
"liken", "liker", "likes", "likin", "lilac", "lills", "lilos"
"lilts", "lilty", "liman", "limas", "limax", "limba", "limbi"
"limbo", "limbs", "limby", "limed", "limen", "limes", "limey"
"limit", "limma", "limns", "limos", "limpa", "limps", "linac"
"linch", "linds", "lindy", "lined", "linen", "liner", "lines"
"liney", "linga", "lingo", "lings", "lingy", "linin", "links"
"linky", "linns", "linny", "linos", "lints", "linty", "linum"
"linux", "lions", "lipas", "lipes", "lipid", "lipin", "lipos"
"lippy", "liras", "lirks", "lirot", "lises", "lisks", "lisle"