forked from milsaware/wordled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanswers.js
1034 lines (1031 loc) · 62.8 KB
/
answers.js
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
/*
A list of 100 words suitable for younger children obtained from:
http://www.yougowords.com/kindergarten-words/5-letters
*/
let level1 = ["about", "above", "after", "again", "alone",
"apple", "beach", "begin", "black", "bring", "brown", "bunny",
"camel", "candy", "carry", "child", "clean", "close", "color",
"count", "daddy", "dream", "dress", "drive", "eight", "every",
"fight", "floor", "found", "ghost", "goose", "great", "green",
"happy", "heard", "heart", "hippo", "horse", "house", "india",
"juice", "koala", "large", "light", "lucky", "mommy", "money",
"moose", "mouse", "music", "never", "nurse", "panda", "paper",
"party", "pizza", "plane", "plant", "plate", "price", "puppy",
"quack", "queen", "quiet", "right", "river", "robin", "robot",
"round", "seven", "sheep", "skunk", "sleep", "small", "spoon",
"stamp", "stand", "stick", "store", "story", "stray", "sunny",
"sweet", "table", "there", "thing", "three", "tiger", "today",
"train", "truck", "tummy", "under", "water", "white", "witch",
"woman", "women", "write", "zebra"];
/*
A list of over 1000 common words assembled from various five-letter word
lists found on the internet.
*/
let level2 = ["abled", "about", "above", "afoul", "after", "again",
"alone", "aping", "apple", "beach", "begat", "begin", "black",
"bluer", "bring", "brown", "camel", "candy", "carry", "child",
"clean", "close", "color", "count", "crump", "cyber", "dally",
"debar", "dream", "dress", "drive", "droit", "eight", "eking",
"elate", "elfin", "ester", "every", "false", "fight", "flint",
"flirt", "flock", "floor", "flora", "floss", "flout", "fluff",
"fluke", "flume", "flung", "flunk", "flush", "flute", "foamy",
"foggy", "foist", "folio", "folly", "foray", "forge", "forgo",
"forte", "found", "foyer", "frail", "frank", "freak", "freed",
"freer", "friar", "frill", "frisk", "fritz", "frock", "frond",
"froth", "frown", "froze", "fudge", "fugue", "fungi", "funky",
"furor", "furry", "fussy", "fuzzy", "gaffe", "gaily", "gamer",
"gamut", "gassy", "gaudy", "gaunt", "gauze", "gavel", "gawky",
"gayer", "gayly", "gazer", "gecko", "geeky", "geese", "genie",
"ghost", "ghoul", "giddy", "gipsy", "girly", "girth", "giver",
"glade", "glare", "glaze", "gleam", "glean", "glide", "glint",
"gloat", "gloom", "glyph", "gnash", "gnome", "godly", "golem",
"golly", "gonad", "goner", "goody", "gooey", "goofy", "goose",
"gorge", "gouge", "gourd", "graft", "grail", "grate", "gravy",
"graze", "great", "greed", "green", "grime", "grimy", "gripe",
"groan", "groin", "groom", "grope", "grout", "growl", "gruel",
"gruff", "grunt", "guava", "guile", "guise", "gulch", "gully",
"gumbo", "gummy", "guppy", "gusto", "gusty", "gypsy", "hairy",
"halve", "happy", "hardy", "harem", "harpy", "harry", "haste",
"hasty", "hatch", "hater", "haunt", "haute", "havoc", "hazel",
"heady", "heart", "heath", "heave", "hefty", "heist", "helix",
"heron", "hilly", "hinge", "hippo", "hippy", "hitch", "hoard",
"hoist", "homer", "horde", "horny", "hotly", "hound", "house",
"hovel", "howdy", "humid", "humph", "humus", "hunch", "hunky",
"hurry", "husky", "hussy", "hutch", "hydro", "hyena", "hymen",
"hyper", "icily", "icing", "idiom", "idler", "idyll", "igloo",
"iliac", "imbue", "impel", "inane", "inept", "inert", "infer",
"ingot", "inlay", "inlet", "inter", "ionic", "irate", "irony",
"islet", "itchy", "ivory", "jaunt", "jazzy", "jerky", "jetty",
"jiffy", "joist", "joker", "jolly", "joust", "juice", "jumbo",
"jumpy", "junta", "junto", "juror", "kappa", "karma", "kayak",
"kebab", "khaki", "kinky", "kiosk", "kitty", "knack", "knave",
"knead", "kneed", "kneel", "knelt", "knoll", "koala", "krill",
"laden", "ladle", "lager", "lance", "lanky", "lapel", "lapse",
"large", "larva", "lasso", "latch", "lathe", "latte", "leach",
"leafy", "leaky", "leant", "leapt", "leash", "ledge", "leech",
"leery", "lefty", "leggy", "lemur", "leper", "libel", "liege",
"light", "liken", "lilac", "limbo", "lingo", "lipid", "lithe",
"livid", "llama", "loamy", "loath", "locus", "lofty", "login",
"loopy", "lorry", "loser", "louse", "lousy", "lowly", "lucid",
"lucky", "lumen", "lumpy", "lunge", "lupus", "lurch", "lurid",
"lusty", "lymph", "lynch", "lyric", "macaw", "macho", "madam",
"madly", "mafia", "magma", "maize", "mambo", "mamma", "mammy",
"manga", "mange", "mango", "mangy", "mania", "manic", "manly",
"manor", "marsh", "mason", "masse", "matey", "mauve", "maxim",
"mealy", "meaty", "mecca", "medic", "melon", "midge", "milky",
"mimic", "mince", "miner", "minim", "minty", "mirth", "miser",
"missy", "mocha", "modal", "mogul", "molar", "moldy", "money",
"moody", "moose", "moron", "morph", "mossy", "motel", "motif",
"motto", "moult", "mound", "mourn", "mouse", "mover", "mower",
"mucky", "mucus", "muddy", "mulch", "mummy", "munch", "mural",
"murky", "mushy", "music", "musky", "musty", "myrrh", "nadir",
"naive", "nanny", "natal", "navel", "needy", "neigh", "nerdy",
"never", "niece", "ninny", "nobly", "nomad", "noose", "nosey",
"nudge", "nurse", "nutty", "nymph", "oaken", "obese", "octal",
"octet", "odder", "oddly", "offal", "olden", "ombre", "opine",
"opium", "otter", "outdo", "outgo", "ovary", "ovate", "overt",
"ovine", "ovoid", "owing", "ozone", "paddy", "pagan", "paler",
"palsy", "panda", "pansy", "papal", "paper", "parer", "parka",
"parry", "parse", "party", "pasty", "patsy", "patty", "payee",
"payer", "pecan", "penal", "pence", "penne", "perch", "peril",
"perky", "pesky", "pesto", "petal", "phony", "picky", "piety",
"piggy", "piney", "pinky", "pinto", "piper", "pique", "pithy",
"pivot", "pixie", "pizza", "plaid", "plait", "plank", "plant",
"plate", "plead", "pleat", "plied", "plier", "pluck", "plumb",
"plume", "plump", "plunk", "plush", "poesy", "poise", "polka",
"polyp", "pooch", "poppy", "poser", "posit", "posse", "pouty",
"prank", "prawn", "preen", "price", "prick", "pried", "primo",
"prism", "privy", "prong", "prose", "prowl", "prude", "prune",
"pubic", "pudgy", "puffy", "pulpy", "pupal", "puree", "purer",
"purge", "pushy", "putty", "pygmy", "quack", "quail", "quake",
"qualm", "quark", "quart", "quash", "quasi", "queen", "queer",
"quell", "quiet", "quill", "quirk", "quota", "quoth", "rabbi",
"rabid", "racer", "radii", "rajah", "ralph", "ramen", "randy",
"rarer", "raspy", "ratty", "raven", "rayon", "rearm", "rebar",
"rebus", "rebut", "recap", "recur", "recut", "reedy", "refit",
"regal", "rehab", "relic", "remit", "repay", "repel", "rerun",
"retch", "retry", "reuse", "revel", "revue", "rhino", "rhyme",
"right", "rigor", "ripen", "riper", "riser", "river", "rivet",
"roach", "roast", "robin", "robot", "rodeo", "roger", "roomy",
"roost", "rotor", "rouge", "round", "rouse", "rover", "rowdy",
"rower", "ruddy", "ruder", "rumba", "rumor", "rupee", "rusty",
"saint", "sally", "salsa", "salty", "salve", "salvo", "saner",
"sappy", "sassy", "satyr", "saucy", "sauna", "saute", "savor",
"savoy", "savvy", "scald", "scaly", "scamp", "scant", "scion",
"scoff", "scold", "scone", "scorn", "scour", "scowl", "scram",
"scree", "scrub", "scrum", "scuba", "sedan", "seedy", "segue",
"seize", "semen", "sepia", "serif", "seven", "sever", "shack",
"shady", "shaky", "shale", "shalt", "shank", "shard", "shave",
"shawl", "shear", "sheen", "sheik", "shied", "shire", "shirk",
"shoal", "shone", "shorn", "shout", "shove", "showy", "shrew",
"shrub", "shrug", "shuck", "shunt", "shush", "shyly", "sieve",
"silky", "sinew", "singe", "siren", "sissy", "sixty", "skate",
"skier", "skiff", "skimp", "skulk", "skunk", "slack", "slain",
"slang", "slant", "slash", "sleep", "sleet", "slick", "slime",
"slimy", "sling", "slink", "sloop", "slosh", "sloth", "slump",
"slung", "slunk", "slurp", "slush", "slyly", "smack", "small",
"smash", "smear", "smelt", "smirk", "smite", "smith", "smock",
"smoky", "smote", "snail", "snaky", "snare", "snarl", "sneer",
"snide", "sniff", "snipe", "snoop", "snore", "snort", "snout",
"snowy", "snuck", "snuff", "soapy", "sober", "soggy", "sonar",
"sooth", "sooty", "sower", "spade", "spank", "spasm", "spawn",
"spear", "speck", "spelt", "spied", "spiel", "spiky", "spill",
"spilt", "spiny", "spire", "splat", "spoil", "spoof", "spook",
"spool", "spoon", "spore", "spout", "spree", "sprig", "spunk",
"spurn", "spurt", "squat", "squib", "staid", "stair", "stale",
"stalk", "stall", "stamp", "stank", "stare", "stash", "stave",
"stead", "steed", "stein", "stern", "stick", "stilt", "sting",
"stink", "stint", "stoic", "stoke", "stomp", "stony", "stoop",
"stork", "story", "stout", "stray", "strut", "stump", "stung",
"stunk", "stunt", "suave", "suing", "sulky", "sully", "sumac",
"sunny", "surer", "surly", "swami", "swamp", "swarm", "swash",
"swath", "sweep", "sweet", "swell", "swill", "swine", "swirl",
"swish", "swoon", "swoop", "swore", "sworn", "swung", "synod",
"tabby", "table", "taboo", "tacit", "tacky", "taffy", "taint",
"taker", "tally", "talon", "tamer", "tango", "tangy", "taper",
"tapir", "tardy", "tarot", "tatty", "taunt", "tawny", "teary",
"tease", "teddy", "tenet", "tenor", "tense", "tepee", "tepid",
"terra", "terse", "testy", "there", "theta", "thing", "thong",
"thorn", "three", "throb", "thrum", "thump", "thyme", "tiara",
"tibia", "tidal", "tiger", "tilde", "timid", "tipsy", "titan",
"tithe", "today", "toddy", "tonal", "tonga", "tonic", "topaz",
"torso", "torus", "totem", "toxin", "train", "tramp", "trawl",
"tread", "triad", "trice", "tripe", "trite", "troll", "troop",
"trope", "trove", "truce", "truck", "truer", "truss", "tryst",
"tubal", "tuber", "tulip", "tulle", "tunic", "twang", "tweak",
"tweed", "twine", "twirl", "twixt", "tying", "udder", "ulcer",
"umbra", "uncut", "under", "undid", "undue", "unfed", "unfit",
"unify", "unlit", "unmet", "unset", "untie", "unwed", "unzip",
"usher", "usurp", "utile", "utter", "valet", "valor", "vapid",
"vaunt", "venom", "verge", "verso", "verve", "vicar", "vigil",
"vigor", "viola", "viper", "visor", "vista", "vixen", "vogue",
"voila", "vomit", "vouch", "vowel", "vying", "wacky", "wafer",
"wager", "waive", "waltz", "warty", "water", "waver", "waxen",
"weary", "weave", "wedge", "weedy", "welch", "wench", "whack",
"wharf", "whelp", "whiff", "whine", "whiny", "whirl", "whisk",
"white", "whoop", "widen", "wield", "wight", "willy", "wimpy",
"wince", "winch", "windy", "wiser", "wispy", "witch", "witty",
"woken", "woman", "women", "woody", "wooer", "wooly", "woozy",
"wordy", "woven", "wrack", "wreak", "wreck", "wrest", "wring",
"write", "wrung", "wryly", "yearn", "zebra", "zesty", "zonal"];
/*
A list of over 2500 words assembled from various five-letter word
lists found on the internet.
*/
let level3 = ["aback", "abase", "abate", "abaya", "abbey", "abbot",
"abets", "abhor", "abide", "abode", "abort", "about", "above",
"abuse", "abuts", "abyss", "ached", "aches", "acids", "acing",
"ackee", "acorn", "acres", "acrid", "acted", "actin", "actor",
"acute", "adage", "adapt", "added", "adder", "addle", "adept",
"adieu", "adios", "adits", "adman", "admin", "admit", "adobe",
"adobo", "adopt", "adore", "adorn", "adult", "adzes", "aegis",
"aeons", "aerie", "affix", "afire", "afoot", "afore", "after",
"again", "agape", "agate", "agave", "agent", "aggro", "agile",
"aging", "aglow", "agony", "agora", "agree", "ahead", "ahold",
"aided", "aider", "aides", "ailed", "aimed", "aimer", "aioli",
"aired", "aisle", "alarm", "album", "alder", "aleph", "alert",
"algae", "algal", "alias", "alibi", "alien", "align", "alike",
"alive", "alkyd", "alkyl", "allay", "alley", "allot", "allow",
"alloy", "allyl", "aloes", "aloft", "aloha", "alone", "along",
"aloof", "aloud", "alpha", "altar", "alter", "altos", "alums",
"amass", "amaze", "amber", "ambit", "amble", "ambos", "amend",
"amide", "amine", "amino", "amiss", "amity", "amnio", "among",
"amour", "amped", "ample", "amply", "amuse", "ancho", "angel",
"anger", "angle", "angry", "angst", "anima", "anime", "anion",
"anise", "ankle", "annas", "annex", "annoy", "annul", "anode",
"anole", "antic", "antis", "antsy", "anvil", "aorta", "apace",
"apart", "aphid", "apnea", "apple", "apply", "apron", "apses",
"apter", "aptly", "aquas", "arbor", "ardor", "areal", "areas",
"areca", "arena", "argon", "argot", "argue", "argus", "arias",
"arils", "arise", "armed", "armor", "aroma", "arose", "array",
"arrow", "arses", "arson", "artsy", "asana", "ascot", "ashen",
"ashes", "aside", "asked", "asker", "askew", "aspen", "aspic",
"assay", "asses", "asset", "aster", "astir", "asura", "atlas",
"atman", "atoll", "atoms", "atone", "atopy", "attic", "audio",
"audit", "auger", "aught", "augur", "aunts", "aunty", "aural",
"auras", "autos", "auxin", "avail", "avers", "avert", "avian",
"avoid", "avows", "await", "awake", "award", "aware", "awash",
"awful", "awoke", "axels", "axial", "axils", "axing", "axiom",
"axion", "axles", "axons", "azide", "azole", "azure", "babel",
"babes", "babka", "backs", "bacon", "baddy", "badge", "badly",
"bagel", "baggy", "bails", "bairn", "baits", "baize", "baked",
"baker", "bakes", "baldy", "baled", "baler", "bales", "balks",
"balky", "balls", "balms", "balmy", "balsa", "banal", "bands",
"bandy", "banes", "bangs", "banjo", "banks", "barbs", "bards",
"bared", "barer", "bares", "barge", "barks", "barmy", "barns",
"baron", "barre", "basal", "based", "baser", "bases", "basic",
"basil", "basin", "basis", "basks", "basso", "bassy", "baste",
"batch", "bated", "bathe", "baths", "batik", "baton", "batts",
"batty", "bawdy", "bawls", "bayed", "bayou", "beach", "beads",
"beady", "beaks", "beams", "beamy", "beans", "beard", "bears",
"beast", "beats", "beaus", "beaut", "beaux", "bebop", "becks",
"beech", "beefs", "beefy", "beeps", "beers", "beery", "beets",
"befit", "began", "beget", "begin", "begun", "beige", "being",
"belay", "belch", "belie", "belle", "bells", "belly", "below",
"belts", "bench", "bends", "bendy", "bento", "bents", "beret",
"bergs", "berms", "berry", "berth", "beryl", "beset", "bests",
"betas", "betel", "betta", "bevel", "bezel", "bhaji", "bible",
"bicep", "biddy", "bided", "bides", "bidet", "bight", "bigot",
"bijou", "biked", "biker", "bikes", "biles", "bilge", "bills",
"billy", "bimbo", "bindi", "binds", "binge", "bingo", "biome",
"biota", "bipod", "birch", "birds", "birth", "bison", "bitch",
"biter", "bites", "bitsy", "bitty", "black", "blade", "blame",
"bland", "blank", "blare", "blase", "blast", "blaze", "bleak",
"bleat", "blebs", "bleed", "bleep", "blend", "bless", "blimp",
"blind", "bling", "blini", "blink", "blips", "bliss", "blitz",
"bloat", "blobs", "block", "blocs", "blogs", "bloke", "blond",
"blood", "bloom", "bloop", "blots", "blown", "blows", "blued",
"blues", "bluey", "bluff", "blunt", "blurb", "blurs", "blurt",
"blush", "board", "boars", "boast", "boats", "bobby", "bocce",
"boche", "boded", "bodes", "boffo", "bogey", "boggy", "bogie",
"bogus", "boils", "bolas", "boles", "bolls", "bolts", "bolus",
"bombe", "bombs", "bonds", "boned", "boner", "bones", "boney",
"bongo", "bongs", "bonks", "bonny", "bonus", "boobs", "booby",
"booed", "books", "booms", "boomy", "boons", "boors", "boost",
"booth", "boots", "booty", "booze", "boozy", "boppy", "borax",
"bored", "borer", "bores", "boric", "borne", "boron", "bosom",
"boson", "bossy", "bosun", "botch", "bough", "boule", "bound",
"bouts", "bowed", "bowel", "bower", "bowls", "boxed", "boxer",
"boxes", "boyar", "boyos", "bozos", "brace", "bract", "brads",
"brags", "braid", "brain", "brake", "brand", "brans", "brash",
"brass", "brats", "brave", "bravo", "brawl", "brawn", "brays",
"braze", "bread", "break", "bream", "breed", "brews", "briar",
"bribe", "brick", "bride", "brief", "brier", "brigs", "brims",
"brine", "bring", "brink", "briny", "brisk", "brits", "broad",
"broch", "broil", "broke", "brome", "bronc", "brood", "brook",
"broom", "broth", "brown", "brows", "bruin", "bruit", "brunt",
"brush", "brute", "bubba", "bucks", "buddy", "budge", "buffs",
"buggy", "bugle", "build", "built", "bulbs", "bulge", "bulks",
"bulky", "bulla", "bulls", "bully", "bumps", "bumpy", "bunch",
"bunds", "bundt", "bunks", "bunny", "bunts", "buoys", "burbs",
"burgs", "burka", "burly", "burns", "burnt", "burps", "burqa",
"burro", "burrs", "bursa", "burst", "bused", "buses", "bushy",
"busts", "busty", "butch", "butte", "butts", "buxom", "buyer",
"buzzy", "bylaw", "byres", "bytes", "byway", "cabal", "cabby",
"caber", "cabin", "cable", "cacao", "cache", "cacti", "caddy",
"cadet", "cadre", "cafes", "caged", "cages", "cagey", "cairn",
"caked", "cakes", "cakey", "calfs", "calif", "calla", "calls",
"calms", "calve", "calyx", "camel", "cameo", "campo", "camps",
"campy", "canal", "candy", "caned", "canes", "canid", "canna",
"canny", "canoe", "canon", "canto", "caped", "caper", "capes",
"capon", "capos", "caput", "carat", "carbo", "carbs", "cards",
"cared", "carer", "cares", "cargo", "carob", "carol", "carom",
"carps", "carry", "carte", "carts", "carve", "cased", "cases",
"casks", "caste", "casts", "catch", "cater", "catty", "caulk",
"cause", "caved", "caver", "caves", "cavil", "cease", "cecal",
"cecum", "cedar", "ceded", "cedes", "ceili", "celeb", "cello",
"cells", "celts", "cents", "chads", "chafe", "chaff", "chain",
"chair", "chalk", "champ", "chana", "chant", "chaos", "chaps",
"chard", "charm", "chars", "chart", "chase", "chasm", "chats",
"cheap", "cheat", "check", "cheek", "cheep", "cheer", "chefs",
"chemo", "chert", "chess", "chest", "chews", "chewy", "chica",
"chick", "chico", "chide", "chief", "child", "chile", "chili",
"chill", "chime", "chimp", "china", "chine", "ching", "chino",
"chins", "chips", "chirp", "chits", "chive", "chock", "choir",
"choke", "chomp", "chops", "chord", "chore", "chose", "chows",
"chubs", "chuck", "chuff", "chugs", "chump", "chums", "chunk",
"churn", "chute", "cider", "cigar", "cinch", "circa", "cisco",
"cited", "cites", "civet", "civic", "civil", "civvy", "clack",
"clade", "claim", "clamp", "clams", "clang", "clank", "clans",
"claps", "clash", "clasp", "class", "clave", "claws", "clays",
"clean", "clear", "cleat", "clefs", "cleft", "clerk", "click",
"cliff", "climb", "clime", "cline", "cling", "clink", "clips",
"cloak", "clock", "clods", "clogs", "clomp", "clone", "close",
"cloth", "clots", "cloud", "clout", "clove", "clown", "clubs",
"cluck", "clued", "clues", "clump", "clung", "clunk", "coach",
"coals", "coast", "coati", "coats", "cobia", "cobra", "cocci",
"cocks", "cocky", "cocoa", "codas", "codec", "coded", "coder",
"codes", "codex", "codon", "coeds", "cohos", "coifs", "coils",
"coins", "cokes", "colas", "colds", "coles", "colic", "colin",
"colon", "color", "colts", "comas", "combo", "combs", "comer",
"comes", "comet", "comfy", "comic", "comma", "commo", "compo",
"comps", "comte", "conch", "condo", "coned", "cones", "conga",
"congo", "conic", "conks", "cooed", "cooks", "cools", "coops",
"coopt", "coped", "copes", "copra", "copse", "coral", "cords",
"cored", "corer", "cores", "corgi", "corks", "corky", "corms",
"corns", "cornu", "corny", "corps", "costs", "cotta", "couch",
"cough", "could", "count", "coupe", "coups", "court", "coven",
"cover", "coves", "covet", "covey", "cowed", "cower", "cowls",
"coyly", "crabs", "crack", "craft", "crags", "cramp", "crams",
"crane", "crank", "crape", "craps", "crash", "crass", "crate",
"crave", "crawl", "craws", "craze", "crazy", "creak", "cream",
"credo", "creed", "creek", "creel", "creep", "creme", "crepe",
"crept", "cress", "crest", "crews", "cribs", "crick", "cried",
"crier", "cries", "crime", "crimp", "crisp", "crits", "croak",
"crock", "crocs", "croft", "crone", "crony", "crook", "croon",
"crops", "cross", "croup", "crowd", "crown", "crows", "crude",
"cruel", "cruet", "crumb", "cruse", "crush", "crust", "crypt",
"cubby", "cubed", "cubes", "cubic", "cubit", "cuddy", "cuffs",
"culls", "culpa", "cults", "cumin", "cupid", "cuppa", "curbs",
"curds", "cured", "cures", "curia", "curio", "curls", "curly",
"curry", "curse", "curve", "curvy", "cushy", "cusps", "cuter",
"cutie", "cutis", "cutup", "cycad", "cycle", "cyclo", "cynic",
"cysts", "czars", "dacha", "daddy", "dados", "daffy", "daily",
"dairy", "daisy", "dales", "dames", "damns", "damps", "dance",
"dandy", "dared", "dares", "darks", "darns", "darts", "dashi",
"dated", "dater", "dates", "datum", "daubs", "daunt", "davit",
"dawns", "dazed", "deals", "dealt", "deans", "dears", "deary",
"death", "debit", "debts", "debug", "debut", "decaf", "decal",
"decay", "decks", "decor", "decoy", "decry", "deeds", "deems",
"deeps", "deers", "defer", "deify", "deign", "deism", "deist",
"deity", "dekes", "delay", "delft", "delis", "dells", "delta",
"delve", "demon", "demos", "demur", "denim", "dense", "dents",
"depot", "depth", "derby", "desks", "deter", "detox", "deuce",
"devil", "dewar", "dhikr", "dhows", "dials", "diary", "diced",
"dices", "dicey", "dicky", "dicta", "diets", "digit", "diked",
"dikes", "dills", "dilly", "dimer", "dimes", "dimly", "dinar",
"dined", "diner", "dines", "dingo", "dings", "dingy", "dinks",
"dinky", "dinos", "diode", "dippy", "direr", "dirge", "dirty",
"disco", "discs", "dishy", "disks", "ditch", "ditsy", "ditto",
"ditty", "ditzy", "divan", "divas", "dived", "diver", "dives",
"divot", "divvy", "dizzy", "docks", "dodge", "dodgy", "dodos",
"doers", "doffs", "doges", "doggy", "dogma", "doing", "doled",
"doles", "dolls", "dolly", "dolor", "dolts", "domed", "domes",
"donee", "dongs", "donna", "donor", "donut", "dooms", "doomy",
"doors", "doozy", "doped", "dopes", "dopey", "dorks", "dorky",
"dorms", "dosas", "dosed", "doses", "doted", "dotes", "dotty",
"doubt", "dough", "doula", "douse", "doves", "dowdy", "dowel",
"dower", "downs", "downy", "dowry", "dowse", "doyen", "dozed",
"dozen", "dozer", "dozes", "drabs", "draft", "drags", "drain",
"drake", "drama", "drams", "drank", "drape", "drawl", "drawn",
"draws", "drays", "dread", "dream", "dreck", "dregs", "dress",
"dribs", "dried", "drier", "dries", "drift", "drill", "drily",
"drink", "drips", "drive", "droid", "droll", "drone", "drool",
"droop", "drops", "dross", "drove", "drown", "drugs", "druid",
"drums", "drunk", "drupe", "dryad", "dryer", "dryly", "duals",
"ducal", "ducat", "duchy", "ducks", "ducky", "ducts", "dudes",
"duels", "duets", "duffs", "dukes", "dulls", "dully", "dulse",
"dumbo", "dummy", "dumps", "dumpy", "dunce", "dunes", "dunks",
"duomo", "duped", "dupes", "dural", "durum", "dusks", "dusky",
"dusts", "dusty", "dutch", "duvet", "dwarf", "dweeb", "dwell",
"dwelt", "dyads", "dyers", "dying", "dykes", "eager", "eagle",
"eared", "earls", "early", "earns", "earth", "eased", "easel",
"easer", "eases", "eaten", "eater", "eaves", "ebbed", "ebony",
"ebook", "echos", "eclat", "edema", "edged", "edger", "edges",
"edict", "edify", "edits", "eejit", "eerie", "egged", "egret",
"eider", "eidos", "eight", "eject", "ejido", "eland", "elbow",
"elder", "elect", "elegy", "elide", "elite", "elope", "elude",
"elute", "elven", "elves", "email", "embed", "ember", "emcee",
"emery", "emirs", "emits", "emote", "empty", "enact", "ended",
"endow", "enema", "enemy", "enjoy", "ennui", "enoki", "enrol",
"ensue", "enter", "entry", "envoy", "eosin", "epics", "epoch",
"epoxy", "equal", "equip", "erase", "erect", "ergot", "erode",
"erred", "error", "erupt", "essay", "ether", "ethic", "ethos",
"ethyl", "etude", "euros", "evade", "evens", "event", "every",
"evict", "evils", "evoke", "ewers", "exact", "exalt", "exams",
"excel", "execs", "exert", "exile", "exist", "exits", "expat",
"expel", "expos", "extol", "extra", "exude", "exult", "exurb",
"eying", "eyrie", "fable", "faced", "facer", "faces", "facet",
"facia", "facts", "faded", "fader", "fades", "faery", "fails",
"faint", "fairs", "fairy", "faith", "faked", "faker", "fakes",
"fakie", "fakir", "falls", "famed", "fancy", "fangs", "fanny",
"farce", "fared", "fares", "farms", "farts", "fasts", "fatal",
"fated", "fates", "fatso", "fatty", "fatwa", "fault", "fauna",
"fauns", "favas", "faves", "favor", "fawns", "faxed", "faxes",
"fazed", "fazes", "fears", "feast", "feats", "fecal", "feces",
"feeds", "feels", "feign", "feint", "fella", "fells", "felon",
"felts", "femme", "femur", "fence", "fends", "feral", "feria",
"ferns", "ferny", "ferry", "fests", "fetal", "fetch", "feted",
"fetes", "fetid", "fetus", "feuds", "fever", "fewer", "fiats",
"fiber", "fibre", "fiche", "ficus", "fiefs", "field", "fiend",
"fiery", "fifes", "fifth", "fifty", "fight", "filch", "filed",
"filer", "files", "filet", "fills", "filly", "films", "filmy",
"filth", "final", "finca", "finch", "finds", "fined", "finer",
"fines", "finis", "finks", "fiord", "fired", "fires", "firms",
"first", "fishy", "fists", "fitly", "fiver", "fives", "fixed",
"fixer", "fixes", "fizzy", "fjord", "flack", "flags", "flail",
"flair", "flake", "flaky", "flame", "flank", "flans", "flaps",
"flare", "flash", "flask", "flats", "flaws", "flays", "fleas",
"fleck", "flees", "fleet", "flesh", "flick", "flier", "flies",
"fling", "float", "flood", "floor", "flour", "flown", "flows",
"fluid", "flyer", "focal", "focus", "folks", "fonts", "foods",
"force", "forms", "forth", "forty", "forum", "found", "frame",
"fraud", "fresh", "fried", "fries", "front", "frost", "fruit",
"fuels", "fully", "funds", "funny", "gains", "games", "gamma",
"gases", "gates", "gauge", "gears", "genes", "genre", "ghost",
"giant", "gifts", "girls", "given", "gives", "gland", "glass",
"globe", "glory", "gloss", "glove", "glued", "goals", "goats",
"going", "goods", "grace", "grade", "grain", "grams", "grand",
"grant", "grape", "graph", "grasp", "grass", "grave", "great",
"greek", "green", "greet", "grief", "grill", "grind", "grips",
"gross", "group", "grove", "grown", "grows", "guard", "guess",
"guest", "guide", "guild", "guilt", "habit", "hairs", "halls",
"hands", "handy", "hangs", "happy", "harsh", "hated", "hates",
"haven", "hawks", "heads", "heard", "heart", "heavy", "hedge",
"heels", "hello", "helps", "hence", "herbs", "highs", "hills",
"hints", "hired", "hobby", "holds", "holes", "holly", "homes",
"honey", "honor", "hooks", "hoped", "hopes", "horns", "horse",
"hosts", "hotel", "hours", "house", "hover", "human", "humor",
"hurts", "icons", "ideal", "ideas", "idiot", "image", "imply",
"inbox", "incur", "index", "indie", "inner", "input", "intro",
"issue", "items", "jeans", "jelly", "jewel", "joins", "joint",
"jokes", "judge", "juice", "juicy", "jumps", "keeps", "kicks",
"kills", "kinda", "kinds", "kings", "knees", "knife", "knock",
"knots", "known", "knows", "label", "labor", "lacks", "lakes",
"lamps", "lands", "lanes", "large", "laser", "lasts", "later",
"laugh", "layer", "leads", "leaks", "learn", "lease", "least",
"leave", "legal", "lemon", "level", "lever", "light", "liked",
"likes", "limbs", "limit", "lined", "linen", "liner", "lines",
"links", "lions", "lists", "lived", "liver", "lives", "loads",
"loans", "lobby", "local", "locks", "lodge", "logic", "logos",
"looks", "loops", "loose", "lords", "loses", "loved", "lover",
"loves", "lower", "loyal", "lucky", "lunar", "lunch", "lungs",
"lying", "macro", "magic", "major", "maker", "makes", "males",
"maple", "march", "marks", "marry", "masks", "match", "mates",
"maths", "matte", "maybe", "mayor", "meals", "means", "meant",
"meats", "medal", "media", "meets", "melee", "menus", "mercy",
"merge", "merit", "merry", "messy", "metal", "meter", "metro",
"micro", "midst", "might", "miles", "minds", "mines", "minor",
"minus", "mixed", "mixer", "mixes", "model", "modem", "modes",
"moist", "money", "month", "moral", "motor", "mount", "mouse",
"mouth", "moved", "moves", "movie", "music", "myths", "nails",
"naked", "named", "names", "nasal", "nasty", "naval", "needs",
"nerve", "never", "newer", "newly", "nexus", "nicer", "niche",
"night", "ninja", "ninth", "noble", "nodes", "noise", "noisy",
"norms", "north", "notch", "noted", "notes", "novel", "nurse",
"nylon", "oasis", "occur", "ocean", "offer", "often", "older",
"olive", "omega", "onion", "onset", "opens", "opera", "opted",
"optic", "orbit", "order", "organ", "other", "ought", "ounce",
"outer", "owned", "owner", "oxide", "packs", "pages", "pains",
"paint", "pairs", "panda", "panel", "panic", "pants", "paper",
"parks", "parts", "party", "pasta", "paste", "patch", "paths",
"patio", "pause", "peace", "peach", "peaks", "pearl", "pedal",
"peers", "penis", "penny", "perks", "pests", "petty", "phase",
"phone", "photo", "piano", "picks", "piece", "piles", "pills",
"pilot", "pinch", "pipes", "pitch", "pixel", "pizza", "place",
"plain", "plane", "plans", "plant", "plate", "plays", "plaza",
"plots", "plugs", "poems", "point", "poker", "polar", "poles",
"polls", "pools", "porch", "pores", "ports", "posed", "poses",
"posts", "pouch", "pound", "power", "press", "price", "pride",
"prime", "print", "prior", "prize", "probe", "promo", "prone",
"proof", "props", "proud", "prove", "proxy", "psalm", "pulls",
"pulse", "pumps", "punch", "pupil", "puppy", "purse", "queen",
"query", "quest", "queue", "quick", "quiet", "quilt", "quite",
"quote", "races", "racks", "radar", "radio", "rails", "rainy",
"raise", "rally", "ranch", "range", "ranks", "rapid", "rated",
"rates", "ratio", "razor", "reach", "react", "reads", "ready",
"realm", "rebel", "refer", "reign", "relax", "relay", "renal",
"renew", "reply", "reset", "resin", "retro", "rider", "rides",
"ridge", "rifle", "right", "rigid", "rings", "rinse", "risen",
"rises", "risks", "risky", "rival", "river", "roads", "robot",
"rocks", "rocky", "rogue", "roles", "rolls", "roman", "rooms",
"roots", "ropes", "roses", "rough", "round", "route", "royal",
"rugby", "ruins", "ruled", "ruler", "rules", "rural", "sadly",
"safer", "salad", "sales", "salon", "sandy", "satin", "sauce",
"saved", "saves", "scale", "scalp", "scans", "scare", "scarf",
"scary", "scene", "scent", "scoop", "scope", "score", "scout",
"scrap", "screw", "seals", "seams", "seats", "seeds", "seeks",
"seems", "sells", "sends", "sense", "serum", "serve", "setup",
"seven", "sewer", "shade", "shaft", "shake", "shall", "shame",
"shape", "share", "shark", "sharp", "sheep", "sheer", "sheet",
"shelf", "shell", "shift", "shine", "shiny", "ships", "shirt",
"shock", "shoes", "shook", "shoot", "shops", "shore", "short",
"shots", "shown", "shows", "sides", "siege", "sight", "sigma",
"signs", "silly", "since", "sites", "sixth", "sized", "sizes",
"skies", "skill", "skins", "skirt", "skull", "slate", "slave",
"sleek", "sleep", "slept", "slice", "slide", "slope", "slots",
"small", "smart", "smell", "smile", "smoke", "snack", "snake",
"sneak", "socks", "soils", "solar", "solid", "solve", "songs",
"sonic", "sorry", "sorts", "souls", "sound", "south", "space",
"spare", "spark", "speak", "specs", "speed", "spell", "spend",
"spent", "sperm", "spice", "spicy", "spike", "spine", "spite",
"split", "spoke", "spoon", "sport", "spots", "spray", "spurs",
"squad", "stack", "staff", "stage", "stain", "stake", "stamp",
"stand", "stark", "stars", "start", "state", "stats", "stays",
"steak", "steal", "steam", "steel", "steep", "steer", "stems",
"steps", "stick", "stiff", "still", "stock", "stole", "stone",
"stood", "stool", "stops", "store", "storm", "story", "stove",
"strap", "straw", "strip", "stuck", "study", "stuff", "style",
"sucks", "sugar", "suite", "suits", "sunny", "super", "surge",
"sushi", "swear", "sweat", "sweet", "swept", "swift", "swing",
"swiss", "sword", "syrup", "table", "taken", "takes", "tales",
"talks", "tanks", "tapes", "tasks", "taste", "tasty", "taxes",
"teach", "teams", "tears", "teens", "teeth", "tells", "tempo",
"tends", "tense", "tenth", "tents", "terms", "tests", "texts",
"thank", "theft", "their", "theme", "there", "these", "thick",
"thief", "thigh", "thing", "think", "third", "those", "three",
"threw", "throw", "thumb", "tidal", "tiger", "tight", "tiles",
"timer", "times", "tired", "tires", "title", "toast", "today",
"token", "tones", "tools", "tooth", "topic", "torch", "total",
"touch", "tough", "tours", "towel", "tower", "towns", "toxic",
"trace", "track", "tract", "trade", "trail", "train", "trait",
"trans", "traps", "trash", "treat", "trees", "trend", "trial",
"tribe", "trick", "tried", "tries", "trips", "trout", "truck",
"truly", "trump", "trunk", "trust", "truth", "tubes", "tulip",
"tumor", "tuned", "tunes", "turbo", "turns", "tutor", "tweet",
"twice", "twins", "twist", "types", "tyres", "ultra", "uncle",
"under", "union", "unite", "units", "unity", "until", "upper",
"upset", "urban", "urged", "urine", "usage", "users", "using",
"usual", "vague", "valid", "value", "valve", "vapor", "vault",
"vegan", "veins", "vents", "venue", "verse", "video", "views",
"villa", "vinyl", "viper", "viral", "virus", "visas", "visit",
"vital", "vivid", "vocal", "vodka", "vogue", "voice", "volts",
"voted", "voter", "votes", "wages", "wagon", "waist", "walks",
"walls", "wants", "warns", "waste", "watch", "water", "watts",
"waves", "wears", "weeds", "weeks", "weigh", "weird", "wells",
"welsh", "whale", "wheat", "wheel", "where", "which", "while",
"white", "whole", "whose", "wider", "widow", "width", "winds",
"wines", "wings", "wiped", "wired", "wires", "witch", "wives",
"woman", "women", "woods", "words", "works", "world", "worms",
"worry", "worse", "worst", "worth", "would", "wound", "wrath",
"wreck", "wrist", "write", "wrong", "wrote", "yacht", "yards",
"years", "yeast", "yield", "young", "yours", "youth", "yummy",
"zebra", "zones"];
/*
A list of over 3400 words assembled from various five-letter word
lists found on the internet.
*/
let level4 = ["aback", "abase", "abate", "abaya", "abbey", "abbot",
"abeam", "abets", "abhor", "abide", "abled", "abode", "abort",
"about", "above", "abuse", "abuts", "abyss", "ached", "aches",
"acids", "acing", "ackee", "acorn", "acres", "acrid", "acted",
"actin", "actor", "acute", "adage", "adapt", "added", "adder",
"addle", "adept", "adieu", "adios", "adits", "adman", "admin",
"admit", "adobe", "adobo", "adopt", "adore", "adorn", "adult",
"adzes", "aegis", "aeons", "aerie", "affix", "afire", "afoot",
"afore", "afoul", "after", "again", "agape", "agate", "agave",
"agent", "aggro", "agile", "aging", "aglow", "agony", "agora",
"agree", "ahead", "ahold", "aided", "aider", "aides", "ailed",
"aimed", "aimer", "aioli", "aired", "aisle", "alarm", "album",
"alder", "aleph", "alert", "algae", "algal", "alias", "alibi",
"alien", "align", "alike", "alive", "alkyd", "alkyl", "allay",
"alley", "allot", "allow", "alloy", "allyl", "aloes", "aloft",
"aloha", "alone", "along", "aloof", "aloud", "alpha", "altar",
"alter", "altos", "alums", "amass", "amaze", "amber", "ambit",
"amble", "ambos", "amend", "amide", "amigo", "amine", "amino",
"amiss", "amity", "amnio", "among", "amour", "amped", "ample",
"amply", "amuse", "ancho", "angel", "anger", "angle", "angry",
"angst", "anima", "anime", "anion", "anise", "ankle", "annas",
"annex", "annoy", "annul", "anode", "anole", "antic", "antis",
"antsy", "anvil", "aorta", "apace", "apart", "aphid", "aping",
"apnea", "apple", "apply", "apron", "apses", "apter", "aptly",
"aquas", "arbor", "ardor", "areal", "areas", "areca", "arena",
"argon", "argot", "argue", "argus", "arias", "arils", "arise",
"armed", "armor", "aroma", "arose", "array", "arrow", "arses",
"arson", "artsy", "asana", "ascot", "ashen", "ashes", "aside",
"asked", "asker", "askew", "aspen", "aspic", "assay", "asses",
"asset", "aster", "astir", "asura", "atlas", "atman", "atoll",
"atoms", "atone", "atopy", "attic", "audio", "audit", "auger",
"aught", "augur", "aunts", "aunty", "aural", "auras", "autos",
"auxin", "avail", "avast", "avers", "avert", "avian", "avoid",
"avows", "await", "awake", "award", "aware", "awash", "awful",
"awoke", "axels", "axial", "axils", "axing", "axiom", "axion",
"axles", "axons", "azide", "azole", "azure", "babel", "babes",
"babka", "backs", "bacon", "baddy", "badge", "badly", "bagel",
"baggy", "bails", "bairn", "baits", "baize", "baked", "baker",
"bakes", "baldy", "baled", "baler", "bales", "balks", "balky",
"balls", "balms", "balmy", "balsa", "banal", "bands", "bandy",
"banes", "bangs", "banjo", "banks", "barbs", "bards", "bared",
"barer", "bares", "barge", "barks", "barmy", "barns", "baron",
"barre", "basal", "based", "baser", "bases", "basic", "basil",
"basin", "basis", "basks", "basso", "bassy", "baste", "batch",
"bated", "bathe", "baths", "batik", "baton", "batts", "batty",
"bawdy", "bawls", "bayed", "bayou", "beach", "beads", "beady",
"beaks", "beams", "beamy", "beans", "beard", "bears", "beast",
"beats", "beaus", "beaut", "beaux", "bebop", "becks", "beech",
"beefs", "beefy", "beeps", "beers", "beery", "beets", "befit",
"began", "begat", "beget", "begin", "begun", "beige", "being",
"belay", "belch", "belie", "belle", "bells", "belly", "below",
"belts", "bench", "bends", "bendy", "bento", "bents", "beret",
"bergs", "berms", "berry", "berth", "beryl", "beset", "bests",
"betas", "betel", "betta", "bevel", "bezel", "bhaji", "bible",
"bicep", "biddy", "bided", "bides", "bidet", "bight", "bigot",
"bijou", "biked", "biker", "bikes", "biles", "bilge", "bills",
"billy", "bimbo", "bindi", "binds", "binge", "bingo", "biome",
"biota", "bipod", "birch", "birds", "birth", "bison", "bitch",
"biter", "bites", "bitsy", "bitty", "black", "blade", "blame",
"bland", "blank", "blare", "blase", "blast", "blaze", "bleak",
"bleat", "blebs", "bleed", "bleep", "blend", "bless", "blimp",
"blind", "bling", "blini", "blink", "blips", "bliss", "blitz",
"bloat", "blobs", "block", "blocs", "blogs", "bloke", "blond",
"blood", "bloom", "bloop", "blots", "blown", "blows", "blued",
"bluer", "blues", "bluey", "bluff", "blunt", "blurb", "blurs",
"blurt", "blush", "board", "boars", "boast", "boats", "bobby",
"bocce", "boche", "boded", "bodes", "boffo", "bogey", "boggy",
"bogie", "bogus", "boils", "boink", "bolas", "boles", "bolls",
"bolts", "bolus", "bombe", "bombs", "bonds", "boned", "boner",
"bones", "boney", "bongo", "bongs", "bonks", "bonny", "bonus",
"boobs", "booby", "booed", "books", "booms", "boomy", "boons",
"boors", "boost", "booth", "boots", "booty", "booze", "boozy",
"boppy", "borax", "bored", "borer", "bores", "boric", "borne",
"boron", "bosom", "boson", "bossy", "bosun", "botch", "bough",
"boule", "bound", "bouts", "bowed", "bowel", "bower", "bowls",
"boxed", "boxer", "boxes", "boyar", "boyos", "bozos", "brace",
"bract", "brads", "brags", "braid", "brain", "brake", "brand",
"brans", "brash", "brass", "brats", "brave", "bravo", "brawl",
"brawn", "brays", "braze", "bread", "break", "bream", "breed",
"brews", "briar", "bribe", "brick", "bride", "brief", "brier",
"brigs", "brims", "brine", "bring", "brink", "briny", "brisk",
"brits", "broad", "broch", "broil", "broke", "brome", "bronc",
"brood", "brook", "broom", "broth", "brown", "brows", "bruin",
"bruit", "brunt", "brush", "brute", "bubba", "bucks", "buddy",
"budge", "buffs", "buggy", "bugle", "build", "built", "bulbs",
"bulge", "bulks", "bulky", "bulla", "bulls", "bully", "bumps",
"bumpy", "bunch", "bunds", "bundt", "bunks", "bunny", "bunts",
"buoys", "burbs", "burgs", "burka", "burly", "burns", "burnt",
"burps", "burqa", "burro", "burrs", "bursa", "burst", "bused",
"buses", "bushy", "busts", "busty", "butch", "butte", "butts",
"buxom", "buyer", "buzzy", "bylaw", "byres", "bytes", "byway",
"cabal", "cabby", "caber", "cabin", "cable", "cacao", "cache",
"cacti", "caddy", "cadet", "cadre", "cafes", "caged", "cages",
"cagey", "cairn", "cajun", "caked", "cakes", "cakey", "calfs",
"calif", "calla", "calls", "calms", "calve", "calyx", "camel",
"cameo", "campo", "camps", "campy", "canal", "candy", "caned",
"canes", "canid", "canna", "canny", "canoe", "canon", "canto",
"caped", "caper", "capes", "capon", "capos", "caput", "carat",
"carbo", "carbs", "cards", "cared", "carer", "cares", "cargo",
"carob", "carol", "carom", "carps", "carry", "carte", "carts",
"carve", "cased", "cases", "casks", "caste", "casts", "catch",
"cater", "catty", "caulk", "cause", "caved", "caver", "caves",
"cavil", "cease", "cecal", "cecum", "cedar", "ceded", "cedes",
"ceili", "celeb", "cello", "cells", "celts", "cents", "chads",
"chafe", "chaff", "chain", "chair", "chalk", "champ", "chana",
"chant", "chaos", "chaps", "chard", "charm", "chars", "chart",
"chase", "chasm", "chats", "cheap", "cheat", "check", "cheek",
"cheep", "cheer", "chefs", "chemo", "chert", "chess", "chest",
"chews", "chewy", "chica", "chick", "chico", "chide", "chief",
"child", "chile", "chili", "chill", "chime", "chimp", "china",
"chine", "ching", "chino", "chins", "chips", "chirp", "chits",
"chive", "chock", "choir", "choke", "chomp", "chops", "chord",
"chore", "chose", "chows", "chubs", "chuck", "chuff", "chugs",
"chump", "chums", "chunk", "churn", "chute", "cider", "cigar",
"cinch", "circa", "cisco", "cited", "cites", "civet", "civic",
"civil", "civvy", "clack", "clade", "claim", "clamp", "clams",
"clang", "clank", "clans", "claps", "clash", "clasp", "class",
"clave", "claws", "clays", "clean", "clear", "cleat", "clefs",
"cleft", "clerk", "click", "cliff", "climb", "clime", "cline",
"cling", "clink", "clips", "cloak", "clock", "clods", "clogs",
"clomp", "clone", "close", "cloth", "clots", "cloud", "clout",
"clove", "clown", "clubs", "cluck", "clued", "clues", "clump",
"clung", "clunk", "coach", "coals", "coast", "coati", "coats",
"cobia", "cobra", "cocci", "cocks", "cocky", "cocoa", "codas",
"codec", "coded", "coder", "codes", "codex", "codon", "coeds",
"cohos", "coifs", "coils", "coins", "cokes", "colas", "colds",
"coles", "colic", "colin", "colon", "color", "colts", "comas",
"combo", "combs", "comer", "comes", "comet", "comfy", "comic",
"comma", "commo", "compo", "comps", "comte", "conch", "condo",
"coned", "cones", "conga", "congo", "conic", "conks", "cooed",
"cooks", "cools", "coops", "coopt", "coped", "copes", "copra",
"copse", "coral", "cords", "cored", "corer", "cores", "corgi",
"corks", "corky", "corms", "corns", "cornu", "corny", "corps",
"costs", "cotta", "couch", "cough", "could", "count", "coupe",
"coups", "court", "coven", "cover", "coves", "covet", "covey",
"cowed", "cower", "cowls", "cowry", "coyly", "crabs", "crack",
"craft", "crags", "cramp", "crams", "crane", "crank", "crape",
"craps", "crash", "crass", "crate", "crave", "crawl", "craws",
"craze", "crazy", "creak", "cream", "credo", "creed", "creek",
"creel", "creep", "creme", "crepe", "crept", "cress", "crest",
"crews", "cribs", "crick", "cried", "crier", "cries", "crime",
"crimp", "crisp", "crits", "croak", "crock", "crocs", "croft",
"crone", "crony", "crook", "croon", "crops", "cross", "croup",
"crowd", "crown", "crows", "crude", "cruel", "cruet", "crumb",
"crump", "cruse", "crush", "crust", "crypt", "cubby", "cubed",
"cubes", "cubic", "cubit", "cuddy", "cuffs", "culls", "culpa",
"cults", "cumin", "cupid", "cuppa", "curbs", "curds", "cured",
"cures", "curia", "curio", "curls", "curly", "curry", "curse",
"curve", "curvy", "cushy", "cusps", "cuter", "cutie", "cutis",
"cutup", "cyber", "cycad", "cycle", "cyclo", "cynic", "cysts",
"czars", "dacha", "daddy", "dados", "daffy", "daily", "dairy",
"daisy", "dales", "dally", "dames", "damns", "damps", "dance",
"dandy", "dared", "dares", "darks", "darns", "darts", "dashi",
"dated", "dater", "dates", "datum", "daubs", "daunt", "davit",
"dawns", "dazed", "deals", "dealt", "deans", "dears", "deary",
"death", "debar", "debit", "debts", "debug", "debut", "decaf",
"decal", "decay", "decks", "decor", "decoy", "decry", "deeds",
"deems", "deeps", "deers", "defer", "deify", "deign", "deism",
"deist", "deity", "dekes", "delay", "delft", "delis", "dells",
"delta", "delve", "demon", "demos", "demur", "denim", "dense",
"dents", "depot", "depth", "derby", "desks", "deter", "detox",
"deuce", "devil", "dewar", "dhikr", "dhows", "dials", "diary",
"diced", "dices", "dicey", "dicky", "dicta", "diets", "digit",
"diked", "dikes", "dills", "dilly", "dimer", "dimes", "dimly",
"dinar", "dined", "diner", "dines", "dingo", "dings", "dingy",
"dinks", "dinky", "dinos", "diode", "dippy", "direr", "dirge",
"dirty", "disco", "discs", "dishy", "disks", "ditch", "ditsy",
"ditto", "ditty", "ditzy", "divan", "divas", "dived", "diver",
"dives", "divot", "divvy", "dizzy", "docks", "dodge", "dodgy",
"dodos", "doers", "doffs", "doges", "doggy", "dogma", "doing",
"doled", "doles", "dolls", "dolly", "dolor", "dolts", "domed",
"domes", "donee", "dongs", "donna", "donor", "donut", "dooms",
"doomy", "doors", "doozy", "doped", "dopes", "dopey", "dorks",
"dorky", "dorms", "dosas", "dosed", "doses", "doted", "dotes",
"dotty", "doubt", "dough", "doula", "douse", "doves", "dowdy",
"dowel", "dower", "downs", "downy", "dowry", "dowse", "doyen",
"dozed", "dozen", "dozer", "dozes", "drabs", "draft", "drags",
"drain", "drake", "drama", "drams", "drank", "drape", "drawl",
"drawn", "draws", "drays", "dread", "dream", "dreck", "dregs",
"dress", "dribs", "dried", "drier", "dries", "drift", "drill",
"drily", "drink", "drips", "drive", "droid", "droit", "droll",
"drone", "drool", "droop", "drops", "dross", "drove", "drown",
"drugs", "druid", "drums", "drunk", "drupe", "dryad", "dryer",
"dryly", "duals", "ducal", "ducat", "duchy", "ducks", "ducky",
"ducts", "dudes", "duels", "duets", "duffs", "dukes", "dulls",
"dully", "dulse", "dumbo", "dummy", "dumps", "dumpy", "dunce",
"dunes", "dunks", "duomo", "duped", "dupes", "dural", "durum",
"dusks", "dusky", "dusts", "dusty", "dutch", "duvet", "dwarf",
"dweeb", "dwell", "dwelt", "dyads", "dyers", "dying", "dykes",
"eager", "eagle", "eared", "earls", "early", "earns", "earth",
"eased", "easel", "easer", "eases", "eaten", "eater", "eaves",
"ebbed", "ebony", "ebook", "echos", "eclat", "edema", "edged",
"edger", "edges", "edict", "edify", "edits", "eejit", "eerie",
"egged", "egret", "eider", "eidos", "eight", "eject", "ejido",
"eking", "eland", "elate", "elbow", "elder", "elect", "elegy",
"elfin", "elide", "elite", "elope", "elude", "elute", "elven",
"elves", "email", "embed", "ember", "emcee", "emery", "emirs",
"emits", "emote", "empty", "enact", "ended", "endow", "enema",
"enemy", "enjoy", "ennui", "enoki", "enrol", "ensue", "enter",
"entry", "envoy", "eosin", "epics", "epoch", "epoxy", "equal",
"equip", "erase", "erect", "ergot", "erode", "erred", "error",
"erupt", "essay", "ester", "ether", "ethic", "ethos", "ethyl",
"etude", "euros", "evade", "evens", "event", "every", "evict",
"evils", "evoke", "ewers", "exact", "exalt", "exams", "excel",
"execs", "exert", "exile", "exist", "exits", "expat", "expel",
"expos", "extol", "extra", "exude", "exult", "exurb", "eying",
"eyrie", "fable", "faced", "facer", "faces", "facet", "facia",
"facts", "faded", "fader", "fades", "faery", "fails", "faint",
"fairs", "fairy", "faith", "faked", "faker", "fakes", "fakie",
"fakir", "falls", "false", "famed", "fancy", "fangs", "fanny",
"farce", "fared", "fares", "farms", "farts", "fasts", "fatal",
"fated", "fates", "fatso", "fatty", "fatwa", "fault", "fauna",
"fauns", "favas", "faves", "favor", "fawns", "faxed", "faxes",
"fazed", "fazes", "fears", "feast", "feats", "fecal", "feces",
"feeds", "feels", "feign", "feint", "fella", "fells", "felon",
"felts", "femme", "femur", "fence", "fends", "feral", "feria",
"ferns", "ferny", "ferry", "fests", "fetal", "fetch", "feted",
"fetes", "fetid", "fetus", "feuds", "fever", "fewer", "fiats",
"fiber", "fibre", "fiche", "ficus", "fiefs", "field", "fiend",
"fiery", "fifes", "fifth", "fifty", "fight", "filch", "filed",
"filer", "files", "filet", "fills", "filly", "films", "filmy",
"filth", "final", "finca", "finch", "finds", "fined", "finer",
"fines", "finis", "finks", "fiord", "fired", "fires", "firms",
"first", "fishy", "fists", "fitly", "fiver", "fives", "fixed",
"fixer", "fixes", "fizzy", "fjord", "flack", "flags", "flail",
"flair", "flake", "flaky", "flame", "flank", "flans", "flaps",
"flare", "flash", "flask", "flats", "flaws", "flays", "fleas",
"fleck", "flees", "fleet", "flesh", "flick", "flier", "flies",
"fling", "flint", "flirt", "float", "flock", "flood", "floor",
"flora", "floss", "flour", "flout", "flown", "flows", "fluff",
"fluid", "fluke", "flume", "flung", "flunk", "flush", "flute",
"flyer", "foamy", "focal", "focus", "foggy", "foist", "folio",
"folks", "folly", "fonts", "foods", "foray", "force", "forge",
"forgo", "forms", "forte", "forth", "forty", "forum", "found",
"foyer", "frail", "frame", "frank", "fraud", "freak", "freed",
"freer", "fresh", "friar", "fried", "fries", "frill", "frisk",
"fritz", "frock", "frond", "front", "frost", "froth", "frown",
"froze", "fruit", "fudge", "fuels", "fugue", "fully", "funds",
"fungi", "funky", "funny", "furor", "furry", "fussy", "fuzzy",
"gaffe", "gaily", "gains", "gamer", "games", "gamma", "gamut",
"gases", "gassy", "gates", "gaudy", "gauge", "gaunt", "gauze",
"gavel", "gawky", "gayer", "gayly", "gazer", "gears", "gecko",
"geeky", "geese", "genes", "genie", "genre", "ghost", "ghoul",
"giant", "giddy", "gifts", "gipsy", "girls", "girly", "girth",
"given", "giver", "gives", "glade", "gland", "glare", "glass",
"glaze", "gleam", "glean", "glide", "glint", "gloat", "globe",
"gloom", "glory", "gloss", "glove", "glued", "glyph", "gnash",
"gnome", "goals", "goats", "godly", "going", "golem", "golly",
"gonad", "goner", "goods", "goody", "gooey", "goofy", "goose",
"gorge", "gouge", "gourd", "grace", "grade", "graft", "grail",
"grain", "grams", "grand", "grant", "grape", "graph", "grasp",
"grass", "grate", "grave", "gravy", "graze", "great", "greed",
"greek", "green", "greet", "grief", "grill", "grime", "grimy",
"grind", "gripe", "grips", "groan", "groin", "groom", "grope",
"gross", "group", "grout", "grove", "growl", "grown", "grows",
"gruel", "gruff", "grunt", "guard", "guava", "guess", "guest",
"guide", "guild", "guile", "guilt", "guise", "gulch", "gully",
"gumbo", "gummy", "guppy", "gusto", "gusty", "gypsy", "habit",
"hairs", "hairy", "halls", "halve", "hands", "handy", "hangs",
"happy", "hardy", "harem", "harpy", "harry", "harsh", "haste",
"hasty", "hatch", "hated", "hater", "hates", "haunt", "haute",
"haven", "havoc", "hawks", "hazel", "heads", "heady", "heard",
"heart", "heath", "heave", "heavy", "hedge", "heels", "hefty",
"heist", "helix", "hello", "helps", "hence", "herbs", "heron",
"highs", "hills", "hilly", "hinge", "hints", "hippo", "hippy",
"hired", "hitch", "hoard", "hobby", "hoist", "holds", "holes",
"holly", "homer", "homes", "honey", "honor", "hooks", "hoped",
"hopes", "horde", "horns", "horny", "horse", "hosts", "hotel",
"hotly", "hound", "hours", "house", "hovel", "hover", "howdy",
"human", "humid", "humor", "humph", "humus", "hunch", "hunky",
"hurry", "hurts", "husky", "hussy", "hutch", "hydro", "hyena",
"hymen", "hyper", "icily", "icing", "icons", "ideal", "ideas",
"idiom", "idiot", "idler", "idyll", "igloo", "iliac", "image",
"imbue", "impel", "imply", "inane", "inbox", "incur", "index",
"indie", "inept", "inert", "infer", "ingot", "inlay", "inlet",
"inner", "input", "inter", "intro", "ionic", "irate", "irony",
"islet", "issue", "itchy", "items", "ivory", "jaunt", "jazzy",
"jeans", "jelly", "jerky", "jetty", "jewel", "jiffy", "joins",
"joint", "joist", "joker", "jokes", "jolly", "joust", "judge",
"juice", "juicy", "jumbo", "jumps", "jumpy", "junta", "junto",
"juror", "kappa", "karma", "kayak", "kebab", "keeps", "khaki",
"kicks", "kills", "kinda", "kinds", "kings", "kinky", "kiosk",
"kitty", "knack", "knave", "knead", "kneed", "kneel", "knees",
"knelt", "knife", "knock", "knoll", "knots", "known", "knows",
"koala", "krill", "label", "labor", "lacks", "laden", "ladle",
"lager", "lakes", "lamps", "lance", "lands", "lanes", "lanky",
"lapel", "lapse", "large", "larva", "laser", "lasso", "lasts",
"latch", "later", "lathe", "latte", "laugh", "layer", "leach",
"leads", "leafy", "leaks", "leaky", "leant", "leapt", "learn",
"lease", "leash", "least", "leave", "ledge", "leech", "leery",
"lefty", "legal", "leggy", "lemon", "lemur", "leper", "level",
"lever", "libel", "liege", "light", "liked", "liken", "likes",
"lilac", "limbo", "limbs", "limit", "lined", "linen", "liner",
"lines", "lingo", "links", "lions", "lipid", "lists", "lithe",
"lived", "liver", "lives", "livid", "llama", "loads", "loamy",
"loans", "loath", "lobby", "local", "locks", "locus", "lodge",
"lofty", "logic", "login", "logos", "looks", "loops", "loopy",
"loose", "lords", "lorry", "loser", "loses", "louse", "lousy",
"loved", "lover", "loves", "lower", "lowly", "loyal", "lucid",
"lucky", "lumen", "lumpy", "lunar", "lunch", "lunge", "lungs",
"lupus", "lurch", "lurid", "lusty", "lying", "lymph", "lynch",
"lyric", "macaw", "macho", "macro", "madam", "madly", "mafia",
"magic", "magma", "maize", "major", "maker", "makes", "males",
"mambo", "mamma", "mammy", "manga", "mange", "mango", "mangy",
"mania", "manic", "manly", "manor", "maple", "march", "marks",
"marry", "marsh", "masks", "mason", "masse", "match", "mates",
"matey", "maths", "matte", "mauve", "maxim", "maybe", "mayor",
"meals", "mealy", "means", "meant", "meats", "meaty", "mecca",
"medal", "media", "medic", "meets", "melee", "melon", "menus",
"mercy", "merge", "merit", "merry", "messy", "metal", "meter",
"metro", "micro", "midge", "midst", "might", "miles", "milky",
"mimic", "mince", "minds", "miner", "mines", "minim", "minor",
"minty", "minus", "mirth", "miser", "missy", "mixed", "mixer",
"mixes", "mocha", "modal", "model", "modem", "modes", "mogul",
"moist", "molar", "moldy", "money", "month", "moody", "moose",
"moral", "moron", "morph", "mossy", "motel", "motif", "motor",
"motto", "moult", "mound", "mount", "mourn", "mouse", "mouth",
"moved", "mover", "moves", "movie", "mower", "mucky", "mucus",
"muddy", "mulch", "mummy", "munch", "mural", "murky", "mushy",
"music", "musky", "musty", "myrrh", "myths", "nadir", "nails",
"naive", "naked", "named", "names", "nanny", "nasal", "nasty",
"natal", "naval", "navel", "needs", "needy", "neigh", "nerdy",
"nerve", "never", "newer", "newly", "nexus", "nicer", "niche",
"niece", "night", "ninja", "ninny", "ninth", "noble", "nobly",
"nodes", "noise", "noisy", "nomad", "noose", "norms", "north",
"nosey", "notch", "noted", "notes", "novel", "nudge", "nurse",
"nutty", "nylon", "nymph", "oaken", "oasis", "obese", "occur",
"ocean", "octal", "octet", "odder", "oddly", "offal", "offer",
"often", "olden", "older", "olive", "ombre", "omega", "onion",
"onset", "opens", "opera", "opine", "opium", "opted", "optic",
"orbit", "order", "organ", "other", "otter", "ought", "ounce",
"outdo", "outer", "outgo", "ovary", "ovate", "overt", "ovine",
"ovoid", "owing", "owned", "owner", "oxide", "ozone", "packs",
"paddy", "pagan", "pages", "pains", "paint", "pairs", "paler",
"palsy", "panda", "panel", "panic", "pansy", "pants", "papal",
"paper", "parer", "parka", "parks", "parry", "parse", "parts",
"party", "pasta", "paste", "pasty", "patch", "paths", "patio",
"patsy", "patty", "pause", "payee", "payer", "peace", "peach",
"peaks", "pearl", "pecan", "pedal", "peers", "penal", "pence",
"penis", "penne", "penny", "perch", "peril", "perks", "perky",
"pesky", "pesto", "pests", "petal", "petty", "phase", "phone",
"phony", "photo", "piano", "picks", "picky", "piece", "piety",
"piggy", "piles", "pills", "pilot", "pinch", "piney", "pinky",
"pinto", "piper", "pipes", "pique", "pitch", "pithy", "pivot",
"pixel", "pixie", "pizza", "place", "plaid", "plain", "plait",
"plane", "plank", "plans", "plant", "plate", "plays", "plaza",
"plead", "pleat", "plied", "plier", "plots", "pluck", "plugs",
"plumb", "plume", "plump", "plunk", "plush", "poems", "poesy",
"point", "poise", "poker", "polar", "poles", "polka", "polls",
"polyp", "pooch", "pools", "poppy", "porch", "pores", "ports",
"posed", "poser", "poses", "posit", "posse", "posts", "pouch",
"pound", "pouty", "power", "prank", "prawn", "preen", "press",
"price", "prick", "pride", "pried", "prime", "primo", "print",
"prior", "prism", "privy", "prize", "probe", "promo", "prone",
"prong", "proof", "props", "prose", "proud", "prove", "prowl",
"proxy", "prude", "prune", "psalm", "pubic", "pudgy", "puffy",
"pulls", "pulpy", "pulse", "pumps", "punch", "pupal", "pupil",
"puppy", "puree", "purer", "purge", "purse", "pushy", "putty",
"pygmy", "quack", "quail", "quake", "qualm", "quark", "quart",
"quash", "quasi", "queen", "queer", "quell", "query", "quest",
"queue", "quick", "quiet", "quill", "quilt", "quirk", "quite",
"quota", "quote", "quoth", "rabbi", "rabid", "racer", "races",
"racks", "radar", "radii", "radio", "rails", "rainy", "raise",
"rajah", "rally", "ralph", "ramen", "ranch", "randy", "range",
"ranks", "rapid", "rarer", "raspy", "rated", "rates", "ratio",
"ratty", "raven", "rayon", "razor", "reach", "react", "reads",
"ready", "realm", "rearm", "rebar", "rebel", "rebus", "rebut",
"recap", "recur", "recut", "reedy", "refer", "refit", "regal",
"rehab", "reign", "relax", "relay", "relic", "remit", "renal",
"renew", "repay", "repel", "reply", "rerun", "reset", "resin",
"retch", "retro", "retry", "reuse", "revel", "revue", "rhino",
"rhyme", "rider", "rides", "ridge", "rifle", "right", "rigid",
"rigor", "rings", "rinse", "ripen", "riper", "risen", "riser",
"rises", "risks", "risky", "rival", "river", "rivet", "roach",
"roads", "roast", "robin", "robot", "rocks", "rocky", "rodeo",
"roger", "rogue", "roles", "rolls", "roman", "rooms", "roomy",
"roost", "roots", "ropes", "roses", "rotor", "rouge", "rough",
"round", "rouse", "route", "rover", "rowdy", "rower", "royal",
"ruddy", "ruder", "rugby", "ruins", "ruled", "ruler", "rules",
"rumba", "rumor", "rupee", "rural", "rusty", "sadly", "safer",
"saint", "salad", "sales", "sally", "salon", "salsa", "salty",
"salve", "salvo", "sandy", "saner", "sappy", "sassy", "satin",
"satyr", "sauce", "saucy", "sauna", "saute", "saved", "saves",
"savor", "savoy", "savvy", "scald", "scale", "scalp", "scaly",
"scamp", "scans", "scant", "scare", "scarf", "scary", "scene",
"scent", "scion", "scoff", "scold", "scone", "scoop", "scope",
"score", "scorn", "scour", "scout", "scowl", "scram", "scrap",
"scree", "screw", "scrub", "scrum", "scuba", "seals", "seams",
"seats", "sedan", "seeds", "seedy", "seeks", "seems", "segue",
"seize", "sells", "semen", "sends", "sense", "sepia", "serif",
"serum", "serve", "setup", "seven", "sever", "sewer", "shack",
"shade", "shady", "shaft", "shake", "shaky", "shale", "shall",
"shalt", "shame", "shank", "shape", "shard", "share", "shark",
"sharp", "shave", "shawl", "shear", "sheen", "sheep", "sheer",
"sheet", "sheik", "shelf", "shell", "shied", "shift", "shine",
"shiny", "ships", "shire", "shirk", "shirt", "shoal", "shock",
"shoes", "shone", "shook", "shoot", "shops", "shore", "shorn",
"short", "shots", "shout", "shove", "shown", "shows", "showy",
"shrew", "shrub", "shrug", "shuck", "shunt", "shush", "shyly",
"sides", "siege", "sieve", "sight", "sigma", "signs", "silky",
"silly", "since", "sinew", "singe", "siren", "sissy", "sites",
"sixth", "sixty", "sized", "sizes", "skate", "skier", "skies",
"skiff", "skill", "skimp", "skins", "skirt", "skulk", "skull",
"skunk", "slack", "slain", "slang", "slant", "slash", "slate",
"slave", "sleek", "sleep", "sleet", "slept", "slice", "slick",
"slide", "slime", "slimy", "sling", "slink", "sloop", "slope",
"slosh", "sloth", "slots", "slump", "slung", "slunk", "slurp",
"slush", "slyly", "smack", "small", "smart", "smash", "smear",
"smell", "smelt", "smile", "smirk", "smite", "smith", "smock",
"smoke", "smoky", "smote", "snack", "snail", "snake", "snaky",
"snare", "snarl", "sneak", "sneer", "snide", "sniff", "snipe",
"snoop", "snore", "snort", "snout", "snowy", "snuck", "snuff",
"soapy", "sober", "socks", "soggy", "soils", "solar", "solid",
"solve", "sonar", "songs", "sonic", "sooth", "sooty", "sorry",
"sorts", "souls", "sound", "south", "sower", "space", "spade",
"spank", "spare", "spark", "spasm", "spawn", "speak", "spear",
"speck", "specs", "speed", "spell", "spelt", "spend", "spent",
"sperm", "spice", "spicy", "spied", "spiel", "spike", "spiky",
"spill", "spilt", "spine", "spiny", "spire", "spite", "splat",
"split", "spoil", "spoke", "spoof", "spook", "spool", "spoon",
"spore", "sport", "spots", "spout", "spray", "spree", "sprig",
"spunk", "spurn", "spurs", "spurt", "squad", "squat", "squib",
"stack", "staff", "stage", "staid", "stain", "stair", "stake",
"stale", "stalk", "stall", "stamp", "stand", "stank", "stare",
"stark", "stars", "start", "stash", "state", "stats", "stave",
"stays", "stead", "steak", "steal", "steam", "steed", "steel",
"steep", "steer", "stein", "stems", "steps", "stern", "stick",
"stiff", "still", "stilt", "sting", "stink", "stint", "stock",
"stoic", "stoke", "stole", "stomp", "stone", "stony", "stood",
"stool", "stoop", "stops", "store", "stork", "storm", "story",
"stout", "stove", "strap", "straw", "stray", "strip", "strut",
"stuck", "study", "stuff", "stump", "stung", "stunk", "stunt",
"style", "suave", "sucks", "sugar", "suing", "suite", "suits",
"sulky", "sully", "sumac", "sunny", "super", "surer", "surge",
"surly", "sushi", "swami", "swamp", "swarm", "swash", "swath",
"swear", "sweat", "sweep", "sweet", "swell", "swept", "swift",
"swill", "swine", "swing", "swirl", "swish", "swiss", "swoon",
"swoop", "sword", "swore", "sworn", "swung", "synod", "syrup",
"tabby", "table", "taboo", "tacit", "tacky", "taffy", "taint",
"taken", "taker", "takes", "tales", "talks", "tally", "talon",
"tamer", "tango", "tangy", "tanks", "taper", "tapes", "tapir",
"tardy", "tarot", "tasks", "taste", "tasty", "tatty", "taunt",
"tawny", "taxes", "teach", "teams", "tears", "teary", "tease",
"teddy", "teens", "teeth", "tells", "tempo", "tends", "tenet",
"tenor", "tense", "tenth", "tents", "tepee", "tepid", "terms",
"terra", "terse", "tests", "testy", "texts", "thank", "theft",
"their", "theme", "there", "these", "theta", "thick", "thief",
"thigh", "thing", "think", "third", "thong", "thorn", "those",
"three", "threw", "throb", "throw", "thrum", "thumb", "thump",
"thyme", "tiara", "tibia", "tidal", "tiger", "tight", "tilde",
"tiles", "timer", "times", "timid", "tipsy", "tired", "tires",
"titan", "tithe", "title", "toast", "today", "toddy", "token",
"tonal", "tones", "tonga", "tonic", "tools", "tooth", "topaz",
"topic", "torch", "torso", "torus", "total", "totem", "touch",
"tough", "tours", "towed", "towel", "tower", "towns", "toxic",
"toxin", "trace", "track", "tract", "trade", "trail", "train",
"trait", "tramp", "trans", "traps", "trash", "trawl", "tread",
"treat", "trees", "trend", "triad", "trial", "tribe", "trice",
"trick", "tried", "tries", "tripe", "trips", "trite", "troll",
"troop", "trope", "trout", "trove", "truce", "truck", "truer",