Generated on Thu Apr 11 13:58:53 2019 for Gecode by doxygen 1.6.3

scowl.hpp

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Christian Schulte <schulte@gecode.org>
00005  *
00006  *  This file is part of Gecode, the generic constraint
00007  *  development environment:
00008  *     http://www.gecode.org
00009  *
00010  *  Permission is hereby granted, free of charge, to any person obtaining
00011  *  a copy of this software and associated documentation files (the
00012  *  "Software"), to deal in the Software without restriction, including
00013  *  without limitation the rights to use, copy, modify, merge, publish,
00014  *  distribute, sublicense, and/or sell copies of the Software, and to
00015  *  permit persons to whom the Software is furnished to do so, subject to
00016  *  the following conditions:
00017  *
00018  *  The above copyright notice and this permission notice shall be
00019  *  included in all copies or substantial portions of the Software.
00020  *
00021  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00022  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00023  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00024  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00025  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00026  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00027  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00028  *
00029  */
00030 
00031 #include <string>
00032 #include <iostream>
00033 #include <fstream>
00034 #include <cctype>
00035 
00037 class FileSizeOptions : public Gecode::SizeOptions {
00038 protected:
00040   Gecode::Driver::StringValueOption _file;
00041 public:
00043   FileSizeOptions(const char* s);
00045   const char* file(void) const;
00046 };
00047 
00049 class Dictionary {
00050 protected:
00052   static const int limit_len = 64;
00054   int max_len;
00056   int n_all_words;
00058   int n_words[limit_len];
00060   char* s_words[limit_len];
00062   char* chunk;
00063 public:
00065   Dictionary(void);
00072   void init(const char* fn);
00074   int len(void) const;
00076   int words(void) const;
00078   int words(int l) const;
00080   const char* word(int l, int i) const;
00082   template<class Char, class Traits>
00083   std::basic_ostream<Char,Traits>&
00084   print(std::basic_ostream<Char,Traits>& os) const;
00086   ~Dictionary(void);
00087 };
00088 
00090 template<class Char, class Traits>
00091 std::basic_ostream<Char,Traits>&
00092 operator <<(std::basic_ostream<Char,Traits>& os, const Dictionary& d);
00093 
00095 Dictionary dict;
00096 
00097 namespace {
00098 
00099   /*
00100    * The following wordlists are taken from SCOWL, english-55. Please
00101    * see below for details and copyright information.
00102    *
00103    */
00104   const char* w_0[] = {
00105     ""
00106   };
00107 
00108   const char* w_1[] = {
00109     "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l",
00110     "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x",
00111     "y", "z"
00112   };
00113 
00114   const char* w_2[] = {
00115     "ad", "ah", "am", "an", "as", "at", "be", "by", "cs", "do",
00116     "eh", "em", "es", "ex", "fa", "go", "gs", "ha", "he", "hi",
00117     "hm", "ho", "id", "if", "in", "is", "it", "kc", "ks", "la",
00118     "lo", "ls", "ma", "me", "mi", "ms", "mu", "my", "no", "nu",
00119     "of", "oh", "oi", "on", "or", "ow", "ox", "pa", "pi", "re",
00120     "rs", "sh", "so", "ta", "ti", "to", "ts", "uh", "um", "up",
00121     "us", "vs", "we", "ya", "ye", "yo"
00122   };
00123 
00124   const char* w_3[] = {
00125     "aah", "ace", "act", "add", "ado", "ads", "adz", "aft",
00126     "age", "ago", "aha", "aid", "ail", "aim", "air", "alb",
00127     "ale", "all", "amp", "and", "ant", "any", "ape", "apt",
00128     "arc", "are", "ark", "arm", "art", "ash", "ask", "asp",
00129     "ate", "auk", "awe", "awl", "aye", "baa", "bad", "bag",
00130     "bah", "ban", "bap", "bar", "bat", "bay", "bed", "bee",
00131     "beg", "bet", "bib", "bid", "big", "bin", "bit", "biz",
00132     "boa", "bob", "bod", "bog", "boo", "bop", "bow", "box",
00133     "boy", "bra", "brr", "bub", "bud", "bug", "bum", "bun",
00134     "bur", "bus", "but", "buy", "bye", "cab", "cad", "cam",
00135     "can", "cap", "car", "cat", "caw", "chi", "cob", "cod",
00136     "cog", "con", "coo", "cop", "cot", "cow", "cox", "coy",
00137     "cry", "cub", "cud", "cue", "cup", "cur", "cut", "dab",
00138     "dad", "dag", "dam", "day", "deb", "den", "dew", "did",
00139     "die", "dig", "dim", "din", "dip", "dis", "dob", "doc",
00140     "doe", "dog", "don", "dos", "dot", "dry", "dub", "dud",
00141     "due", "dug", "duh", "dun", "duo", "dye", "ear", "eat",
00142     "ebb", "ecu", "eek", "eel", "eff", "egg", "ego", "eke",
00143     "elf", "elk", "ell", "elm", "ems", "emu", "end", "eon",
00144     "era", "ere", "erg", "err", "eta", "eve", "ewe", "eye",
00145     "fab", "fad", "fag", "fan", "far", "fat", "fax", "fed",
00146     "fee", "fen", "fer", "few", "fey", "fez", "fib", "fie",
00147     "fig", "fin", "fir", "fit", "fix", "flu", "fly", "fob",
00148     "foe", "fog", "fop", "for", "fox", "fro", "fry", "fug",
00149     "fun", "fur", "gab", "gad", "gag", "gal", "gap", "gas",
00150     "gay", "gee", "gel", "gem", "get", "gig", "gin", "git",
00151     "gnu", "gob", "god", "goo", "gos", "got", "gum", "gun",
00152     "gut", "guv", "guy", "gym", "gyp", "had", "hag", "haj",
00153     "ham", "has", "hat", "haw", "hay", "hem", "hen", "hep",
00154     "her", "hes", "hew", "hex", "hey", "hid", "hie", "him",
00155     "hip", "his", "hit", "hob", "hod", "hoe", "hog", "hop",
00156     "hos", "hot", "how", "hub", "hue", "hug", "huh", "hum",
00157     "hut", "ice", "icy", "ids", "ifs", "ilk", "ill", "imp",
00158     "ink", "inn", "ins", "ion", "ire", "irk", "ism", "its",
00159     "ivy", "jab", "jag", "jam", "jar", "jaw", "jay", "jet",
00160     "jib", "jig", "job", "jog", "jot", "joy", "jug", "jut",
00161     "keg", "ken", "key", "kid", "kin", "kip", "kit", "lab",
00162     "lad", "lag", "lam", "lap", "lav", "law", "lax", "lay",
00163     "lea", "led", "lee", "leg", "lei", "let", "lib", "lid",
00164     "lie", "lip", "lit", "lob", "log", "loo", "lop", "lot",
00165     "low", "lox", "lug", "luv", "lye", "mac", "mad", "mam",
00166     "man", "map", "mar", "mas", "mat", "maw", "may", "meg",
00167     "men", "mes", "met", "mew", "mic", "mid", "mil", "mix",
00168     "mob", "mod", "moi", "mom", "moo", "mop", "mow", "mud",
00169     "mug", "mum", "mys", "nab", "nae", "nag", "nah", "nan",
00170     "nap", "nay", "net", "new", "nib", "nil", "nip", "nit",
00171     "nix", "nob", "nod", "non", "nor", "not", "now", "nth",
00172     "nub", "nun", "nut", "oaf", "oak", "oar", "oat", "och",
00173     "odd", "ode", "off", "oft", "ohm", "oho", "ohs", "oik",
00174     "oil", "old", "one", "ooh", "ops", "opt", "orb", "ore",
00175     "our", "out", "ova", "owe", "owl", "own", "pad", "pah",
00176     "pal", "pan", "pap", "par", "pas", "pat", "paw", "pay",
00177     "pea", "pee", "peg", "pen", "pep", "per", "pet", "pew",
00178     "pic", "pie", "pig", "pin", "pip", "pis", "pit", "pix",
00179     "ply", "pod", "poi", "pol", "pom", "poo", "pop", "pot",
00180     "pow", "pox", "pro", "pry", "pub", "pud", "pug", "pun",
00181     "pup", "pus", "put", "pyx", "qua", "rag", "ram", "ran",
00182     "rap", "rat", "raw", "ray", "red", "ref", "rep", "rev",
00183     "rho", "rib", "rid", "rig", "rim", "rip", "rob", "rod",
00184     "roe", "rot", "row", "rub", "rue", "rug", "rum", "run",
00185     "rut", "rye", "sac", "sad", "sag", "sap", "sat", "saw",
00186     "sax", "say", "sea", "see", "set", "sew", "sex", "she",
00187     "shh", "shy", "sic", "sin", "sip", "sir", "sis", "sit",
00188     "six", "ska", "ski", "sky", "sly", "sob", "sod", "sol",
00189     "son", "sop", "sot", "sou", "sow", "soy", "spa", "spy",
00190     "ssh", "sty", "sub", "sue", "sum", "sun", "sup", "tab",
00191     "tad", "tag", "tam", "tan", "tap", "tar", "tat", "tax",
00192     "tea", "tee", "ten", "the", "tho", "thy", "tic", "tie",
00193     "til", "tin", "tip", "tit", "toe", "tog", "tom", "ton",
00194     "too", "top", "tor", "tot", "tow", "toy", "try", "tub",
00195     "tug", "tum", "tun", "tut", "tux", "two", "ugh", "ump",
00196     "uni", "ups", "urn", "use", "vac", "van", "vat", "veg",
00197     "vet", "vex", "via", "vie", "vim", "vow", "wad", "wag",
00198     "wan", "war", "was", "wax", "way", "web", "wed", "wee",
00199     "wen", "wet", "who", "why", "wig", "win", "wit", "woe",
00200     "wog", "wok", "won", "woo", "wop", "wot", "wow", "wry",
00201     "yak", "yam", "yap", "yaw", "yea", "yen", "yep", "yer",
00202     "yes", "yet", "yew", "yid", "yin", "yip", "yob", "yon",
00203     "you", "yuk", "yum", "yup", "zap", "zed", "zip", "zit",
00204     "zoo"
00205   };
00206 
00207   const char* w_4[] = {
00208     "abed", "abet", "able", "ably", "abut", "aced", "aces",
00209     "ache", "achy", "acid", "acme", "acne", "acre", "acts",
00210     "adds", "afar", "agar", "aged", "ages", "agog", "ague",
00211     "ahas", "ahem", "ahoy", "aide", "aids", "ails", "aims",
00212     "airs", "airy", "ajar", "akin", "alas", "albs", "ales",
00213     "alga", "ally", "alms", "aloe", "also", "alto", "alum",
00214     "amen", "amid", "ammo", "amok", "amps", "anal", "ands",
00215     "anew", "ankh", "anon", "ante", "anti", "ants", "anus",
00216     "aped", "apes", "apex", "apse", "aqua", "arch", "arcs",
00217     "area", "ares", "aria", "arid", "arks", "arms", "army",
00218     "arts", "arty", "ashy", "asks", "asps", "ates", "atom",
00219     "atop", "auks", "aunt", "aura", "auto", "aver", "avid",
00220     "avow", "away", "awed", "awes", "awls", "awry", "axed",
00221     "axes", "axis", "axle", "axon", "ayes", "baas", "babe",
00222     "baby", "back", "bade", "bags", "bahs", "bail", "bait",
00223     "bake", "bald", "bale", "balk", "ball", "balm", "band",
00224     "bane", "bang", "bani", "bank", "bans", "baps", "barb",
00225     "bard", "bare", "barf", "bark", "barn", "bars", "base",
00226     "bash", "bask", "bass", "bast", "bate", "bath", "bats",
00227     "baud", "bawl", "bays", "bead", "beak", "beam", "bean",
00228     "bear", "beat", "beau", "beck", "beds", "beef", "been",
00229     "beep", "beer", "bees", "beet", "begs", "bell", "belt",
00230     "bend", "bent", "berg", "berk", "berm", "best", "beta",
00231     "bets", "bevy", "bias", "bibs", "bide", "bids", "bier",
00232     "biff", "bike", "bile", "bilk", "bill", "bind", "bins",
00233     "bird", "bite", "bits", "blab", "blag", "blah", "bled",
00234     "blew", "blip", "blob", "bloc", "blot", "blow", "blue",
00235     "blur", "boar", "boas", "boat", "bobs", "bode", "bods",
00236     "body", "bogs", "boil", "bola", "bold", "bole", "boll",
00237     "bolt", "bomb", "bond", "bone", "bong", "bonk", "bony",
00238     "boob", "book", "boom", "boon", "boor", "boos", "boot",
00239     "bops", "bore", "born", "bosh", "boss", "both", "bout",
00240     "bowl", "bows", "boxy", "boys", "bozo", "brad", "brae",
00241     "brag", "bran", "bras", "brat", "bray", "bred", "brew",
00242     "brie", "brig", "brim", "brow", "bubs", "buck", "buds",
00243     "buff", "bugs", "bulb", "bulk", "bull", "bumf", "bump",
00244     "bums", "bung", "bunk", "buns", "bunt", "buoy", "burg",
00245     "burk", "burn", "burp", "burr", "burs", "bury", "bush",
00246     "busk", "buss", "bust", "busy", "buts", "butt", "buys",
00247     "buzz", "byes", "byre", "byte", "cabs", "cads", "caff",
00248     "cage", "cake", "calf", "call", "calm", "came", "camp",
00249     "cams", "cane", "cans", "cant", "cape", "caps", "card",
00250     "care", "carp", "cars", "cart", "case", "cash", "cask",
00251     "cast", "cats", "cave", "caws", "cede", "cell", "cent",
00252     "chap", "char", "chat", "chef", "chew", "chic", "chin",
00253     "chip", "chit", "choc", "chop", "chow", "chug", "chum",
00254     "ciao", "cine", "cite", "city", "clad", "clam", "clan",
00255     "clap", "claw", "clay", "clef", "clew", "clip", "clod",
00256     "clog", "clop", "clot", "cloy", "club", "clue", "coal",
00257     "coat", "coax", "cobs", "cock", "coda", "code", "cods",
00258     "coed", "cogs", "coif", "coil", "coin", "coir", "coke",
00259     "cola", "cold", "cols", "colt", "coma", "comb", "come",
00260     "cone", "conk", "cons", "cony", "cook", "cool", "coon",
00261     "coop", "coos", "coot", "cope", "cops", "copy", "cord",
00262     "core", "cork", "corm", "corn", "cosh", "cost", "cote",
00263     "cots", "coup", "cove", "cowl", "cows", "crab", "crag",
00264     "cram", "crap", "craw", "cred", "crew", "crib", "crop",
00265     "crow", "crud", "crux", "cube", "cubs", "cuds", "cued",
00266     "cues", "cuff", "cull", "cult", "cums", "cunt", "cups",
00267     "curd", "cure", "curl", "curs", "curt", "cusp", "cuss",
00268     "cute", "cuts", "cyan", "cyst", "dabs", "dado", "dads",
00269     "daft", "dago", "dags", "dais", "dale", "dame", "damn",
00270     "damp", "dams", "dang", "dank", "dare", "dark", "darn",
00271     "dart", "dash", "data", "date", "daub", "dawn", "days",
00272     "daze", "dead", "deaf", "deal", "dean", "dear", "debs",
00273     "debt", "deck", "deed", "deem", "deep", "deer", "deft",
00274     "defy", "deli", "dell", "demo", "dens", "dent", "deny",
00275     "derv", "desk", "dewy", "dhow", "dial", "dice", "dick",
00276     "died", "dies", "diet", "digs", "dike", "dill", "dime",
00277     "dims", "dine", "ding", "dins", "dint", "dips", "dire",
00278     "dirk", "dirt", "disc", "dish", "disk", "diva", "dive",
00279     "dobs", "dock", "docs", "dodo", "doer", "does", "doff",
00280     "dogs", "dole", "doll", "dolt", "dome", "done", "dons",
00281     "doom", "door", "dope", "dork", "dorm", "dory", "dose",
00282     "dosh", "doss", "dost", "dote", "doth", "dots", "dour",
00283     "dove", "down", "doze", "dozy", "drab", "drag", "dram",
00284     "drat", "draw", "dray", "drew", "drip", "drop", "drub",
00285     "drug", "drum", "drys", "dual", "dubs", "duck", "duct",
00286     "dude", "duds", "duel", "dues", "duet", "duff", "duke",
00287     "dull", "duly", "dumb", "dump", "dune", "dung", "dunk",
00288     "duns", "duos", "dupe", "dusk", "dust", "duty", "dyed",
00289     "dyer", "dyes", "each", "earl", "earn", "ears", "ease",
00290     "east", "easy", "eats", "eave", "ebbs", "echo", "ecru",
00291     "eddy", "edge", "edgy", "edit", "eels", "effs", "eggs",
00292     "egos", "eked", "ekes", "elks", "ells", "elms", "else",
00293     "emir", "emit", "emus", "ends", "envy", "eons", "epic",
00294     "eras", "ergo", "ergs", "errs", "espy", "etch", "euro",
00295     "even", "ever", "eves", "evil", "ewer", "ewes", "exam",
00296     "exec", "exes", "exit", "expo", "eyed", "eyes", "face",
00297     "fact", "fade", "fads", "faff", "fags", "fail", "fain",
00298     "fair", "fake", "fall", "fame", "fang", "fans", "fare",
00299     "farm", "fart", "fast", "fate", "fats", "faun", "fave",
00300     "fawn", "faze", "fear", "feat", "feds", "feed", "feel",
00301     "fees", "feet", "fell", "felt", "fems", "fend", "fens",
00302     "fern", "fess", "fest", "feta", "feud", "fiat", "fibs",
00303     "fief", "fies", "fife", "figs", "file", "fill", "film",
00304     "filo", "find", "fine", "fink", "fins", "fire", "firm",
00305     "firs", "fish", "fist", "fits", "five", "fizz", "flab",
00306     "flag", "flak", "flan", "flap", "flat", "flaw", "flax",
00307     "flay", "flea", "fled", "flee", "flew", "flex", "flip",
00308     "flit", "floe", "flog", "flop", "flow", "flub", "flue",
00309     "flux", "foal", "foam", "fobs", "foes", "fogs", "foil",
00310     "fold", "folk", "fond", "font", "food", "fool", "foot",
00311     "fops", "ford", "fore", "fork", "form", "fort", "foul",
00312     "four", "fowl", "foxy", "frat", "fray", "free", "fret",
00313     "frig", "frog", "from", "fuck", "fuel", "full", "fume",
00314     "fund", "funk", "furl", "furs", "fury", "fuse", "fuss",
00315     "futz", "fuzz", "gabs", "gads", "gaff", "gaga", "gags",
00316     "gain", "gait", "gala", "gale", "gall", "gals", "game",
00317     "gamy", "gang", "gaol", "gape", "gaps", "garb", "gash",
00318     "gasp", "gate", "gave", "gawd", "gawk", "gawp", "gays",
00319     "gaze", "gear", "geed", "geek", "gees", "geld", "gels",
00320     "gems", "gene", "gens", "gent", "germ", "gets", "ghee",
00321     "gibe", "gift", "gigs", "gild", "gill", "gilt", "gins",
00322     "gird", "girl", "giro", "girt", "gist", "gite", "gits",
00323     "give", "glad", "glam", "glee", "glen", "glib", "glob",
00324     "glop", "glow", "glue", "glum", "glut", "gnat", "gnaw",
00325     "gnus", "goad", "goal", "goat", "gobs", "gods", "goer",
00326     "goes", "gold", "golf", "gone", "gong", "good", "goof",
00327     "gook", "goon", "goop", "gore", "gory", "gosh", "goth",
00328     "gout", "govs", "gown", "grab", "grad", "gram", "gran",
00329     "grew", "grid", "grim", "grin", "grip", "grit", "grog",
00330     "grow", "grub", "guff", "gulf", "gull", "gulp", "gums",
00331     "gunk", "guns", "guru", "gush", "gust", "guts", "guvs",
00332     "guys", "gyms", "gyps", "gyro", "hack", "haft", "hags",
00333     "hail", "hair", "hajj", "hake", "hale", "half", "hall",
00334     "halo", "halt", "hams", "hand", "hang", "hank", "hard",
00335     "hare", "hark", "harm", "harp", "hart", "hash", "hasp",
00336     "hast", "hate", "hath", "hats", "haul", "have", "hawk",
00337     "haws", "hays", "haze", "hazy", "head", "heal", "heap",
00338     "hear", "heat", "heck", "heed", "heel", "heft", "heir",
00339     "held", "hell", "helm", "help", "hemp", "hems", "hens",
00340     "heps", "herb", "herd", "here", "hero", "hers", "hews",
00341     "hick", "hide", "hied", "hies", "high", "hike", "hill",
00342     "hilt", "hims", "hind", "hint", "hips", "hire", "hiss",
00343     "hits", "hive", "hiya", "hoax", "hobo", "hobs", "hock",
00344     "hods", "hoed", "hoes", "hogs", "hold", "hole", "hols",
00345     "holy", "home", "hone", "honk", "hood", "hoof", "hook",
00346     "hoop", "hoot", "hope", "hops", "horn", "hose", "host",
00347     "hots", "hour", "hove", "howl", "hows", "hubs", "hued",
00348     "hues", "huff", "huge", "hugs", "huhs", "hula", "hulk",
00349     "hull", "hump", "hums", "hung", "hunk", "hunt", "hurl",
00350     "hurt", "hush", "husk", "huts", "hymn", "hype", "hypo",
00351     "iamb", "ibex", "ibis", "iced", "ices", "icky", "icon",
00352     "idea", "idem", "ides", "idle", "idly", "idol", "iffy",
00353     "ilks", "ills", "imam", "imps", "inch", "info", "inks",
00354     "inky", "inns", "inti", "into", "ions", "iota", "ired",
00355     "ires", "iris", "irks", "iron", "isle", "isms", "itch",
00356     "item", "jabs", "jack", "jade", "jags", "jail", "jamb",
00357     "jams", "jape", "jars", "jaws", "jays", "jazz", "jeep",
00358     "jeer", "jeez", "jell", "jerk", "jest", "jets", "jibs",
00359     "jigs", "jilt", "jink", "jinn", "jinx", "jive", "jobs",
00360     "jock", "joey", "jogs", "john", "join", "joke", "jolt",
00361     "josh", "jots", "jowl", "joys", "judo", "jugs", "jump",
00362     "junk", "jury", "just", "jute", "juts", "kale", "kart",
00363     "keel", "keen", "keep", "kegs", "kelp", "kens", "kept",
00364     "keys", "khan", "kick", "kids", "kike", "kill", "kiln",
00365     "kilo", "kilt", "kind", "king", "kink", "kins", "kips",
00366     "kirk", "kiss", "kite", "kith", "kits", "kiwi", "knee",
00367     "knew", "knit", "knob", "knot", "know", "kohl", "kook",
00368     "labs", "lace", "lack", "lacy", "lade", "lads", "lady",
00369     "lags", "laid", "lain", "lair", "lake", "lama", "lamb",
00370     "lame", "lamp", "lams", "land", "lane", "lank", "laps",
00371     "lard", "lark", "lash", "lass", "last", "late", "lath",
00372     "lats", "laud", "lava", "lavs", "lawn", "laws", "lays",
00373     "laze", "lazy", "lead", "leaf", "leak", "lean", "leap",
00374     "leas", "lech", "leek", "leer", "lees", "left", "legs",
00375     "leis", "lend", "lens", "lent", "less", "lest", "lets",
00376     "levy", "lewd", "liar", "libs", "lice", "lick", "lido",
00377     "lids", "lied", "lief", "lien", "lies", "lieu", "life",
00378     "lift", "like", "lilo", "lilt", "lily", "limb", "lime",
00379     "limn", "limo", "limp", "limy", "line", "link", "lino",
00380     "lint", "lion", "lips", "lira", "lire", "lisp", "list",
00381     "lite", "live", "load", "loaf", "loam", "loan", "lobe",
00382     "lobs", "loch", "loci", "lock", "loco", "lode", "loft",
00383     "loge", "logo", "logs", "loin", "loll", "lone", "long",
00384     "look", "loom", "loon", "loop", "loos", "loot", "lope",
00385     "lops", "lord", "lore", "lorn", "lose", "loss", "lost",
00386     "lots", "loud", "lour", "lout", "love", "lows", "luau",
00387     "lube", "luck", "ludo", "luge", "lugs", "lull", "lulu",
00388     "lump", "lung", "lure", "lurk", "lush", "lust", "lute",
00389     "luvs", "lynx", "lyre", "mace", "mack", "macs", "made",
00390     "mags", "maid", "mail", "maim", "main", "make", "male",
00391     "mall", "malt", "mama", "mams", "mane", "mans", "many",
00392     "maps", "mare", "mark", "mars", "mart", "mash", "mask",
00393     "mass", "mast", "mate", "math", "mats", "maul", "maws",
00394     "mayo", "maze", "mead", "meal", "mean", "meat", "meek",
00395     "meet", "mega", "megs", "meld", "melt", "memo", "mend",
00396     "menu", "mere", "mesa", "mesh", "mess", "mete", "mewl",
00397     "mews", "mica", "mice", "mick", "mics", "mien", "miff",
00398     "mike", "mild", "mile", "milk", "mill", "mils", "mime",
00399     "mind", "mine", "mini", "mink", "mint", "minx", "mire",
00400     "miss", "mist", "mite", "mitt", "moan", "moat", "mobs",
00401     "mock", "mode", "mods", "mole", "moll", "molt", "moms",
00402     "monk", "mono", "mood", "moon", "moor", "moos", "moot",
00403     "mope", "mops", "more", "morn", "mosh", "moss", "most",
00404     "mote", "moth", "move", "mows", "much", "muck", "muff",
00405     "mugs", "mule", "mull", "mums", "murk", "muse", "mush",
00406     "musk", "muss", "must", "mute", "mutt", "myna", "myth",
00407     "nabs", "naff", "nags", "nail", "name", "nans", "nape",
00408     "naps", "narc", "nary", "nave", "navy", "nays", "near",
00409     "neat", "neck", "need", "negs", "neon", "nerd", "nest",
00410     "nets", "nett", "news", "newt", "next", "nibs", "nice",
00411     "nick", "niff", "nigh", "nils", "nine", "nips", "nits",
00412     "nobs", "node", "nods", "noel", "noes", "none", "nook",
00413     "noon", "nope", "norm", "nose", "nosh", "note", "noun",
00414     "nous", "nova", "nowt", "nubs", "nude", "nuke", "null",
00415     "numb", "nuns", "nuts", "oafs", "oaks", "oars", "oath",
00416     "oats", "obey", "obit", "oboe", "odds", "odes", "offs",
00417     "ogle", "ogre", "ohms", "ohos", "oiks", "oils", "oily",
00418     "oink", "okay", "okra", "oleo", "omen", "omit", "once",
00419     "ones", "only", "onto", "onus", "onyx", "oohs", "oops",
00420     "ooze", "oozy", "opal", "open", "opts", "opus", "oral",
00421     "orbs", "ores", "orgy", "ouch", "ours", "oust", "outs",
00422     "ouzo", "oval", "oven", "over", "ovum", "owed", "owes",
00423     "owls", "owns", "oxen", "oxes", "pace", "pack", "pact",
00424     "pacy", "pads", "page", "paid", "pail", "pain", "pair",
00425     "pale", "pall", "palm", "pals", "pane", "pang", "pans",
00426     "pant", "papa", "paps", "para", "pare", "park", "pars",
00427     "part", "pass", "past", "pate", "path", "pats", "pave",
00428     "pawl", "pawn", "paws", "pays", "peak", "peal", "pear",
00429     "peas", "peat", "peck", "pecs", "peed", "peek", "peel",
00430     "peep", "peer", "pees", "pegs", "peke", "pelt", "pens",
00431     "pent", "peon", "peps", "perk", "perm", "pert", "peso",
00432     "pest", "pets", "pews", "phew", "pica", "pick", "pics",
00433     "pied", "pier", "pies", "pigs", "pike", "pile", "pill",
00434     "pimp", "pine", "ping", "pink", "pins", "pint", "piny",
00435     "pipe", "pips", "piss", "pita", "pith", "pits", "pity",
00436     "plan", "play", "plea", "pleb", "plod", "plop", "plot",
00437     "ploy", "plug", "plum", "plus", "pock", "pods", "poem",
00438     "poet", "poke", "poky", "pole", "poll", "polo", "pols",
00439     "poly", "pomp", "poms", "pond", "pone", "pong", "pony",
00440     "poof", "pooh", "pool", "poop", "poor", "poos", "pope",
00441     "pops", "pore", "pork", "porn", "port", "pose", "posh",
00442     "post", "posy", "pots", "pouf", "pour", "pout", "poxy",
00443     "pram", "prat", "pray", "prep", "prey", "prig", "prim",
00444     "prod", "prof", "prom", "prop", "pros", "prow", "psst",
00445     "pubs", "puce", "puck", "puds", "puff", "pugs", "puke",
00446     "pull", "pulp", "puma", "pump", "punk", "puns", "punt",
00447     "puny", "pupa", "pups", "pure", "purl", "purr", "push",
00448     "puss", "puts", "putt", "putz", "pyre", "quad", "quay",
00449     "quid", "quin", "quip", "quit", "quiz", "race", "rack",
00450     "racy", "raft", "raga", "rage", "rags", "raid", "rail",
00451     "rain", "rake", "ramp", "rams", "rand", "rang", "rank",
00452     "rant", "rape", "raps", "rapt", "rare", "rash", "rasp",
00453     "rate", "rats", "rave", "rays", "raze", "razz", "read",
00454     "real", "ream", "reap", "rear", "redo", "reds", "reed",
00455     "reef", "reek", "reel", "refs", "rein", "rely", "rend",
00456     "rent", "reps", "rest", "revs", "rhea", "ribs", "rice",
00457     "rich", "rick", "ride", "rids", "rife", "riff", "rift",
00458     "rigs", "rile", "rill", "rime", "rims", "rind", "ring",
00459     "rink", "riot", "ripe", "rips", "rise", "risk", "rite",
00460     "rive", "road", "roam", "roan", "roar", "robe", "robs",
00461     "rock", "rode", "rods", "roes", "roil", "role", "roll",
00462     "romp", "rood", "roof", "rook", "room", "root", "rope",
00463     "rose", "rosy", "rota", "rote", "rots", "rout", "roux",
00464     "rove", "rows", "rube", "rubs", "ruby", "ruck", "rude",
00465     "rued", "rues", "ruff", "rugs", "ruin", "rule", "rump",
00466     "rums", "rune", "rung", "runs", "runt", "ruse", "rush",
00467     "rusk", "rust", "ruts", "sack", "sacs", "safe", "saga",
00468     "sage", "sago", "sags", "said", "sail", "sake", "sale",
00469     "salt", "same", "sand", "sane", "sang", "sank", "sans",
00470     "saps", "sari", "sash", "sass", "sate", "save", "saws",
00471     "says", "scab", "scad", "scam", "scan", "scar", "scat",
00472     "scow", "scud", "scum", "seal", "seam", "sear", "seas",
00473     "seat", "secs", "sect", "seed", "seek", "seem", "seen",
00474     "seep", "seer", "sees", "self", "sell", "semi", "send",
00475     "sent", "sere", "serf", "sets", "sett", "sewn", "sews",
00476     "sexy", "shad", "shag", "shah", "sham", "shat", "shed",
00477     "shes", "shim", "shin", "ship", "shit", "shod", "shoe",
00478     "shoo", "shop", "shot", "show", "shun", "shut", "sick",
00479     "sics", "side", "sift", "sigh", "sign", "silk", "sill",
00480     "silo", "silt", "sine", "sing", "sink", "sins", "sips",
00481     "sire", "sirs", "site", "sits", "size", "skew", "skid",
00482     "skim", "skin", "skip", "skis", "skit", "skua", "slab",
00483     "slag", "slam", "slap", "slat", "slaw", "slay", "sled",
00484     "slew", "slid", "slim", "slip", "slit", "slob", "sloe",
00485     "slog", "slop", "slot", "slow", "slue", "slug", "slum",
00486     "slur", "slut", "smog", "smug", "smut", "snag", "snap",
00487     "snip", "snit", "snob", "snog", "snot", "snow", "snub",
00488     "snug", "soak", "soap", "soar", "sobs", "sock", "soda",
00489     "sods", "sofa", "soft", "soil", "sold", "sole", "solo",
00490     "sols", "some", "song", "sons", "soon", "soot", "sops",
00491     "sore", "sort", "sots", "souk", "soul", "soup", "sour",
00492     "sown", "sows", "spam", "span", "spar", "spas", "spat",
00493     "spay", "spec", "sped", "spew", "spic", "spin", "spit",
00494     "spiv", "spot", "spry", "spud", "spun", "spur", "stab",
00495     "stag", "star", "stay", "stem", "step", "stew", "stir",
00496     "stop", "stow", "stub", "stud", "stun", "subs", "such",
00497     "suck", "suds", "sued", "sues", "suet", "suit", "sulk",
00498     "sumo", "sump", "sums", "sung", "sunk", "suns", "sups",
00499     "sure", "surf", "suss", "swab", "swag", "swam", "swan",
00500     "swap", "swat", "sway", "swig", "swim", "swiz", "swot",
00501     "swum", "sync", "tabs", "tack", "taco", "tact", "tads",
00502     "tags", "tail", "take", "talc", "tale", "talk", "tall",
00503     "tame", "tamp", "tams", "tang", "tank", "tans", "tape",
00504     "taps", "tare", "tarn", "taro", "tarp", "tars", "tart",
00505     "task", "tats", "taut", "taxi", "teak", "teal", "team",
00506     "tear", "teas", "teat", "teds", "teed", "teem", "teen",
00507     "tees", "tell", "temp", "tend", "tens", "tent", "term",
00508     "tern", "test", "text", "than", "that", "thaw", "thee",
00509     "them", "then", "they", "thin", "this", "thou", "thud",
00510     "thug", "thus", "tick", "tics", "tide", "tidy", "tied",
00511     "tier", "ties", "tiff", "tile", "till", "tilt", "time",
00512     "ting", "tins", "tint", "tiny", "tips", "tits", "tizz",
00513     "toad", "toed", "toes", "toff", "tofu", "toga", "togs",
00514     "toil", "toke", "told", "toll", "tomb", "tome", "toms",
00515     "tone", "tong", "tons", "tony", "took", "tool", "toot",
00516     "tops", "tore", "torn", "tors", "tort", "tosh", "toss",
00517     "tote", "tots", "tour", "tout", "town", "tows", "toys",
00518     "trad", "tram", "trap", "tray", "tree", "trek", "trig",
00519     "trim", "trio", "trip", "trod", "trot", "troy", "true",
00520     "trug", "tuba", "tube", "tubs", "tuck", "tuft", "tugs",
00521     "tums", "tuna", "tune", "tuns", "turd", "turf", "turn",
00522     "tush", "tusk", "tuts", "tutu", "twat", "twee", "twig",
00523     "twin", "twit", "twos", "tyke", "type", "typo", "tyro",
00524     "ugly", "ulna", "umps", "undo", "unis", "unit", "unto",
00525     "upon", "urea", "urge", "uric", "urns", "used", "user",
00526     "uses", "vacs", "vain", "vale", "vamp", "vane", "vans",
00527     "vary", "vase", "vast", "vats", "veal", "veep", "veer",
00528     "veil", "vein", "veld", "vend", "vent", "verb", "very",
00529     "vest", "veto", "vets", "vial", "vibe", "vice", "vied",
00530     "vies", "view", "vile", "vine", "vino", "viol", "visa",
00531     "vise", "viva", "void", "vole", "volt", "vote", "vows",
00532     "wade", "wadi", "wads", "waft", "wage", "wags", "waif",
00533     "wail", "wait", "wake", "wale", "walk", "wall", "wand",
00534     "wane", "wank", "want", "ward", "ware", "warm", "warn",
00535     "warp", "wars", "wart", "wary", "wash", "wasp", "watt",
00536     "wave", "wavy", "waxy", "ways", "weak", "weal", "wean",
00537     "wear", "webs", "weds", "weed", "week", "weep", "weer",
00538     "wees", "weft", "weir", "weld", "well", "welt", "wend",
00539     "wens", "went", "wept", "were", "west", "wets", "wham",
00540     "what", "when", "whet", "whew", "whey", "whim", "whip",
00541     "whir", "whit", "whoa", "whom", "whop", "whup", "whys",
00542     "wick", "wide", "wife", "wigs", "wild", "wile", "will",
00543     "wilt", "wily", "wimp", "wind", "wine", "wing", "wink",
00544     "wino", "wins", "wipe", "wire", "wiry", "wise", "wish",
00545     "wisp", "wist", "with", "wits", "wive", "woad", "woes",
00546     "wogs", "woke", "woks", "wold", "wolf", "womb", "wonk",
00547     "wont", "wood", "woof", "wool", "woos", "wops", "word",
00548     "wore", "work", "worm", "worn", "wost", "wove", "wows",
00549     "wrap", "wren", "writ", "wuss", "yaks", "yams", "yang",
00550     "yank", "yaps", "yard", "yarn", "yawl", "yawn", "yaws",
00551     "yeah", "year", "yeas", "yell", "yelp", "yens", "yeps",
00552     "yest", "yeti", "yews", "yids", "yips", "yobs", "yoga",
00553     "yogi", "yoke", "yolk", "yore", "your", "yous", "yowl",
00554     "yuan", "yuck", "yuks", "yule", "yups", "zany", "zaps",
00555     "zeal", "zebu", "zeds", "zero", "zest", "zeta", "zinc",
00556     "zine", "zing", "zips", "zits", "zone", "zoom", "zoos"
00557   };
00558 
00559   const char* w_5[] = {
00560     "aback", "abaft", "abase", "abash", "abate", "abbey", "abbot",
00561     "abeam", "abets", "abhor", "abide", "abler", "ables", "abode",
00562     "abort", "about", "above", "abuse", "abuts", "abuzz", "abyss",
00563     "ached", "aches", "achoo", "acids", "acing", "acmes", "acorn",
00564     "acres", "acrid", "acted", "actor", "acute", "adage", "adapt",
00565     "added", "adder", "addle", "adept", "adieu", "adman", "admen",
00566     "admit", "adobe", "adopt", "adore", "adorn", "adult", "adzes",
00567     "aegis", "aerie", "affix", "afire", "afoot", "afoul", "after",
00568     "again", "agape", "agate", "agave", "agent", "aggro", "agile",
00569     "aglow", "agony", "agree", "ahead", "ahems", "ahoys", "aided",
00570     "aides", "ailed", "aimed", "aired", "aisle", "aitch", "alarm",
00571     "album", "alder", "alert", "algae", "algal", "alias", "alibi",
00572     "alien", "align", "alike", "alive", "allay", "alley", "allot",
00573     "allow", "alloy", "aloes", "aloft", "aloha", "alone", "along",
00574     "aloof", "aloud", "alpha", "altar", "alter", "altos", "alums",
00575     "amass", "amaze", "amber", "ambit", "amble", "amend", "amens",
00576     "amids", "amigo", "amiss", "amity", "among", "amour", "amped",
00577     "ample", "amply", "amuse", "angel", "anger", "angle", "angry",
00578     "angst", "anion", "anise", "ankhs", "ankle", "annex", "annoy",
00579     "annul", "anode", "anons", "anted", "antes", "antic", "antis",
00580     "antsy", "anvil", "aorta", "apace", "apart", "aphid", "aping",
00581     "apple", "apply", "apron", "apses", "apter", "aptly", "aquas",
00582     "arced", "areas", "arena", "argon", "argot", "argue", "arias",
00583     "arise", "armed", "aroma", "arose", "array", "arrow", "arsed",
00584     "arson", "artsy", "ascot", "ashed", "ashen", "ashes", "aside",
00585     "asked", "askew", "aspen", "aspic", "assay", "asset", "aster",
00586     "astir", "atlas", "atoll", "atoms", "atone", "atria", "attar",
00587     "attic", "audio", "audit", "auger", "aught", "augur", "aunts",
00588     "aural", "auras", "autos", "avail", "avast", "avers", "avert",
00589     "avian", "avoid", "avows", "await", "awake", "award", "aware",
00590     "awash", "aways", "awful", "awing", "awoke", "axial", "axing",
00591     "axiom", "axles", "axons", "azure", "baaed", "babel", "babes",
00592     "baccy", "backs", "bacon", "badge", "badly", "bagel", "baggy",
00593     "bails", "bairn", "baits", "baize", "baked", "baker", "bakes",
00594     "balds", "baldy", "baled", "bales", "balks", "balky", "balls",
00595     "bally", "balms", "balmy", "balsa", "banal", "bands", "bandy",
00596     "baned", "banes", "bangs", "banjo", "banks", "banns", "barbs",
00597     "bards", "bared", "barer", "bares", "barfs", "barge", "barks",
00598     "barmy", "barns", "baron", "basal", "based", "baser", "bases",
00599     "basic", "basil", "basin", "basis", "basks", "basso", "baste",
00600     "basts", "batch", "bated", "bates", "bathe", "baths", "batik",
00601     "baton", "batty", "baulk", "bawdy", "bawls", "bayed", "bayou",
00602     "beach", "beads", "beady", "beaks", "beams", "beans", "beard",
00603     "bears", "beast", "beats", "beaus", "beaut", "bebop", "becks",
00604     "beech", "beefs", "beefy", "beeps", "beers", "beery", "beets",
00605     "befit", "befog", "began", "beget", "begin", "begot", "begum",
00606     "begun", "beige", "being", "belay", "belch", "belie", "belle",
00607     "bells", "belly", "below", "belts", "bench", "bends", "bendy",
00608     "bents", "beret", "bergs", "berks", "berms", "berry", "berth",
00609     "beryl", "beset", "besom", "besot", "bests", "betas", "betel",
00610     "bevel", "bevvy", "bhaji", "bible", "bicep", "biddy", "bides",
00611     "bidet", "biers", "biffs", "bight", "bigot", "bijou", "biked",
00612     "biker", "bikes", "bilge", "bilks", "bills", "billy", "bimbo",
00613     "binds", "binge", "bingo", "biped", "birch", "birds", "birth",
00614     "bison", "bitch", "bites", "bitty", "blabs", "black", "blade",
00615     "blags", "blahs", "blame", "bland", "blank", "blare", "blast",
00616     "blaze", "bleak", "bleat", "bleed", "bleep", "blend", "bless",
00617     "blimp", "blind", "blink", "blips", "bliss", "blitz", "bloat",
00618     "blobs", "block", "blocs", "bloke", "blond", "blood", "bloom",
00619     "blots", "blown", "blows", "blowy", "blued", "bluer", "blues",
00620     "bluff", "blunt", "blurb", "blurs", "blurt", "blush", "board",
00621     "boars", "boast", "boats", "bobby", "boded", "bodes", "bodge",
00622     "bogey", "boggy", "bogus", "boils", "bolas", "bolds", "boles",
00623     "bolls", "bolts", "bombs", "bonce", "bonds", "boned", "boner",
00624     "bones", "bongo", "bongs", "bonks", "bonny", "bonus", "boobs",
00625     "booby", "booed", "books", "booms", "boons", "boors", "boost",
00626     "booth", "boots", "booty", "booze", "boozy", "borax", "bored",
00627     "borer", "bores", "borne", "boron", "bosom", "bossy", "botch",
00628     "bough", "bound", "bouts", "bowed", "bowel", "bower", "bowls",
00629     "boxed", "boxer", "boxes", "bozos", "brace", "bract", "brads",
00630     "brags", "braid", "brain", "brake", "brand", "brash", "brass",
00631     "brats", "brave", "bravo", "brawl", "brawn", "brays", "bread",
00632     "break", "bream", "breed", "brews", "bribe", "brick", "bride",
00633     "brief", "brier", "brigs", "brill", "brims", "brine", "bring",
00634     "brink", "briny", "brisk", "broad", "broil", "broke", "brood",
00635     "brook", "broom", "broth", "brown", "brows", "bruin", "bruit",
00636     "brunt", "brush", "brute", "bucks", "buddy", "budge", "buffs",
00637     "buggy", "bugle", "build", "built", "bulbs", "bulge", "bulgy",
00638     "bulks", "bulky", "bulls", "bully", "bumph", "bumps", "bumpy",
00639     "bunch", "bungs", "bunks", "bunny", "bunts", "buoys", "burgh",
00640     "burgs", "burks", "burly", "burns", "burnt", "burps", "burro",
00641     "burrs", "burst", "busby", "bused", "buses", "bushy", "busks",
00642     "busts", "busty", "butch", "butte", "butts", "butty", "buxom",
00643     "buyer", "bylaw", "byres", "bytes", "byway", "cabal", "caber",
00644     "cabin", "cable", "cacao", "cache", "cacti", "cadet", "cadge",
00645     "cadre", "caffs", "caged", "cages", "cagey", "cairn", "caked",
00646     "cakes", "calls", "calms", "calve", "calyx", "camel", "cameo",
00647     "camps", "campy", "canal", "candy", "caned", "canes", "canny",
00648     "canoe", "canon", "canto", "cants", "caped", "caper", "capes",
00649     "capon", "carat", "cards", "cared", "carer", "cares", "caret",
00650     "cargo", "carob", "carol", "carom", "carpi", "carps", "carry",
00651     "carts", "carve", "cased", "cases", "casks", "caste", "casts",
00652     "catch", "cater", "catty", "caulk", "cause", "caved", "caver",
00653     "caves", "cavil", "cawed", "cease", "cedar", "ceded", "cedes",
00654     "celeb", "cello", "cells", "cents", "certs", "chafe", "chaff",
00655     "chain", "chair", "chalk", "champ", "chant", "chaos", "chaps",
00656     "chard", "charm", "chars", "chart", "chary", "chase", "chasm",
00657     "chats", "cheap", "cheat", "cheek", "cheep", "cheer", "chefs",
00658     "chess", "chest", "chews", "chewy", "chick", "chide", "chief",
00659     "child", "chili", "chill", "chime", "chimp", "china", "chink",
00660     "chino", "chins", "chips", "chirp", "chits", "chive", "chivy",
00661     "chock", "chocs", "choir", "choke", "chomp", "chops", "chord",
00662     "chore", "chose", "chows", "chuck", "chugs", "chump", "chums",
00663     "chunk", "churl", "churn", "chute", "cider", "cigar", "ciggy",
00664     "cilia", "cinch", "circa", "cissy", "cited", "cites", "civet",
00665     "civic", "civil", "clack", "claim", "clamp", "clams", "clang",
00666     "clank", "clans", "claps", "clash", "clasp", "class", "claws",
00667     "clean", "clear", "cleat", "clefs", "cleft", "clerk", "clews",
00668     "click", "cliff", "climb", "clime", "cling", "clink", "clips",
00669     "cloak", "clock", "clods", "clogs", "clomp", "clone", "clonk",
00670     "clops", "close", "cloth", "clots", "cloud", "clout", "clove",
00671     "clown", "cloys", "clubs", "cluck", "clued", "clues", "clump",
00672     "clung", "clunk", "coach", "coals", "coast", "coats", "cobra",
00673     "cocci", "cocks", "cocky", "cocoa", "codas", "coded", "codes",
00674     "codex", "coeds", "coifs", "coils", "coins", "coked", "cokes",
00675     "colas", "colds", "coled", "coley", "colic", "colon", "colts",
00676     "comae", "comas", "combo", "combs", "comer", "comes", "comet",
00677     "comfy", "comic", "comma", "conch", "condo", "coned", "cones",
00678     "conga", "conic", "conks", "cooed", "cooks", "cools", "coons",
00679     "coops", "coots", "coped", "copes", "copra", "copse", "coral",
00680     "cords", "cored", "cores", "corgi", "corks", "corms", "corns",
00681     "corny", "corps", "costs", "cotes", "couch", "cough", "could",
00682     "count", "coupe", "coups", "court", "coven", "cover", "coves",
00683     "covet", "covey", "cowed", "cower", "cowls", "coxed", "coxes",
00684     "coyer", "coyly", "coypu", "cozen", "crabs", "crack", "craft",
00685     "crags", "cramp", "crams", "crane", "crank", "crape", "craps",
00686     "crash", "crass", "crate", "crave", "crawl", "craws", "craze",
00687     "crazy", "creak", "cream", "credo", "creed", "creek", "creel",
00688     "creep", "crepe", "crept", "cress", "crest", "crews", "cribs",
00689     "crick", "cried", "crier", "cries", "crime", "crimp", "crisp",
00690     "croak", "crock", "croft", "crone", "crony", "crook", "croon",
00691     "crops", "cross", "croup", "crowd", "crown", "crows", "crude",
00692     "cruel", "cruet", "crumb", "crush", "crust", "crypt", "cubed",
00693     "cubes", "cubic", "cubit", "cuffs", "cuing", "culls", "cults",
00694     "cumin", "cunts", "cupid", "cuppa", "curds", "cured", "curer",
00695     "cures", "curie", "curio", "curls", "curly", "curry", "curse",
00696     "curve", "curvy", "cushy", "cusps", "cuter", "cutes", "cutey",
00697     "cutie", "cutup", "cycle", "cynic", "cysts", "dacha", "daddy",
00698     "daffy", "dagos", "daily", "dairy", "daisy", "dales", "dally",
00699     "dames", "damns", "damps", "dance", "dandy", "dared", "dares",
00700     "darns", "darts", "dated", "dates", "datum", "daubs", "daunt",
00701     "davit", "dawns", "dazed", "dazes", "deals", "dealt", "deans",
00702     "dears", "deary", "death", "debar", "debit", "debts", "debug",
00703     "debut", "decaf", "decal", "decay", "decks", "decor", "decoy",
00704     "decry", "deeds", "deems", "deeps", "defer", "defog", "deice",
00705     "deify", "deign", "deism", "deity", "delay", "delis", "dells",
00706     "delta", "delve", "demob", "demon", "demos", "demur", "denim",
00707     "dense", "dents", "depot", "depth", "derby", "desks", "deter",
00708     "detox", "deuce", "devil", "dhoti", "dhows", "dials", "diary",
00709     "diced", "dices", "dicey", "dicks", "dicta", "diets", "digit",
00710     "dikes", "dildo", "dills", "dilly", "dimer", "dimes", "dimly",
00711     "dinar", "dined", "diner", "dines", "dingo", "dings", "dingy",
00712     "dinky", "diode", "dippy", "dipso", "direr", "dirge", "dirks",
00713     "dirty", "disco", "discs", "dishy", "disks", "ditch", "ditto",
00714     "ditty", "divan", "divas", "dived", "diver", "dives", "divot",
00715     "divvy", "dizzy", "docks", "dodge", "dodgy", "dodos", "doers",
00716     "doest", "doffs", "doggy", "dogie", "dogma", "doily", "doing",
00717     "doled", "doles", "dolls", "dolly", "dolts", "domed", "domes",
00718     "donor", "dooms", "doors", "doped", "dopes", "dopey", "dorks",
00719     "dorky", "dorms", "dosed", "doses", "doted", "dotes", "dotty",
00720     "doubt", "dough", "douse", "doves", "dowdy", "dowel", "downs",
00721     "downy", "dowry", "dowse", "doyen", "dozed", "dozen", "dozes",
00722     "drabs", "drags", "drain", "drake", "drama", "drams", "drank",
00723     "drape", "drawl", "drawn", "draws", "drays", "dread", "dream",
00724     "drear", "dregs", "dress", "dried", "drier", "dries", "drift",
00725     "drill", "drink", "drips", "drive", "droll", "drone", "drool",
00726     "droop", "drops", "dross", "drove", "drown", "drubs", "drugs",
00727     "druid", "drums", "drunk", "dryad", "dryer", "dryly", "ducal",
00728     "ducat", "duchy", "ducks", "ducky", "ducts", "duded", "dudes",
00729     "duels", "duets", "duffs", "duked", "dukes", "dulls", "dully",
00730     "dumbo", "dumbs", "dummy", "dumps", "dumpy", "dunce", "dunes",
00731     "dungs", "dunks", "dunno", "duped", "dupes", "dusky", "dusts",
00732     "dusty", "duvet", "dwarf", "dweeb", "dwell", "dwelt", "dyers",
00733     "dying", "eager", "eagle", "earls", "early", "earns", "earth",
00734     "eased", "easel", "eases", "eaten", "eater", "eaves", "ebbed",
00735     "ebony", "edged", "edger", "edges", "edict", "edify", "edits",
00736     "eerie", "effed", "egged", "egret", "eider", "eight", "eject",
00737     "eking", "elate", "elbow", "elder", "elect", "elegy", "elfin",
00738     "elide", "elite", "elope", "elude", "elves", "email", "embed",
00739     "ember", "emcee", "emend", "emery", "emirs", "emits", "emote",
00740     "empty", "enact", "ended", "endow", "endue", "enema", "enemy",
00741     "enjoy", "ennui", "ensue", "enter", "entry", "envoy", "epics",
00742     "epoch", "epoxy", "equal", "equip", "erase", "erect", "erode",
00743     "erred", "error", "erupt", "essay", "ester", "ether", "ethic",
00744     "ethos", "euros", "evade", "evens", "event", "every", "evict",
00745     "evils", "evoke", "ewers", "exact", "exalt", "exams", "excel",
00746     "execs", "exert", "exile", "exist", "exits", "expat", "expel",
00747     "expos", "extol", "extra", "exude", "exult", "fable", "faced",
00748     "faces", "facet", "facts", "faddy", "faded", "fades", "faffs",
00749     "fails", "fains", "faint", "fairs", "fairy", "faith", "faked",
00750     "faker", "fakes", "fakir", "falls", "false", "famed", "fancy",
00751     "fangs", "fanny", "farce", "fared", "fares", "farms", "farts",
00752     "fasts", "fatal", "fated", "fates", "fatso", "fatty", "fatwa",
00753     "fault", "fauna", "fauns", "faves", "fawns", "faxed", "faxes",
00754     "fazed", "fazes", "fears", "feast", "feats", "fecal", "feces",
00755     "feeds", "feels", "feign", "feint", "fella", "fells", "felon",
00756     "felts", "femur", "fence", "fends", "feral", "ferns", "ferny",
00757     "ferry", "fests", "fetch", "feted", "fetid", "feuds", "fever",
00758     "fewer", "fiats", "fiche", "fiefs", "field", "fiend", "fiery",
00759     "fifes", "fifth", "fifty", "fight", "filch", "filed", "files",
00760     "fills", "filly", "films", "filmy", "filth", "final", "finch",
00761     "finds", "fined", "finer", "fines", "finis", "finks", "finny",
00762     "fired", "fires", "firms", "first", "firth", "fishy", "fists",
00763     "fitly", "fiver", "fives", "fixed", "fixer", "fixes", "fizzy",
00764     "fjord", "flack", "flags", "flail", "flair", "flake", "flaks",
00765     "flaky", "flame", "flank", "flans", "flaps", "flare", "flash",
00766     "flask", "flats", "flaws", "flays", "fleas", "fleck", "flees",
00767     "fleet", "flesh", "flick", "flied", "flier", "flies", "fling",
00768     "flint", "flips", "flirt", "flits", "float", "flock", "floes",
00769     "flogs", "flood", "floor", "flops", "flora", "floss", "flour",
00770     "flout", "flown", "flows", "flubs", "flues", "fluff", "fluid",
00771     "fluke", "fluky", "flume", "flung", "flunk", "flush", "flute",
00772     "flyby", "foals", "foams", "foamy", "focal", "focus", "foggy",
00773     "foils", "foist", "folds", "folio", "folks", "folly", "fonds",
00774     "fonts", "foods", "fools", "foots", "footy", "foray", "force",
00775     "fords", "fores", "forge", "forgo", "forks", "forms", "forte",
00776     "forth", "forts", "forty", "forum", "fouls", "found", "fount",
00777     "fours", "fowls", "foxed", "foxes", "foyer", "frail", "frame",
00778     "franc", "frank", "frats", "fraud", "frays", "freak", "freed",
00779     "freer", "frees", "fresh", "frets", "friar", "fried", "fries",
00780     "frigs", "frill", "frisk", "frizz", "frock", "frogs", "frond",
00781     "front", "frosh", "frost", "froth", "frown", "froze", "fruit",
00782     "frump", "fryer", "fucks", "fudge", "fuels", "fuggy", "fugue",
00783     "fulls", "fully", "fumed", "fumes", "funds", "fungi", "funks",
00784     "funky", "funny", "furls", "furor", "furry", "furze", "fused",
00785     "fuses", "fussy", "fusty", "futon", "fuzzy", "gabby", "gable",
00786     "gaffe", "gaffs", "gaily", "gains", "gaits", "galas", "gales",
00787     "galls", "gamed", "gamer", "games", "gamin", "gamma", "gammy",
00788     "gamut", "gangs", "ganja", "gaols", "gaped", "gapes", "garbs",
00789     "gases", "gasps", "gassy", "gated", "gates", "gator", "gaudy",
00790     "gaunt", "gauze", "gauzy", "gavel", "gawks", "gawky", "gawps",
00791     "gayer", "gazed", "gazer", "gazes", "gears", "gecko", "geeks",
00792     "geeky", "geese", "gelds", "gelid", "genes", "genie", "genii",
00793     "genre", "gents", "genus", "geode", "germs", "getup", "ghost",
00794     "ghoul", "giant", "gibed", "gibes", "giddy", "gifts", "gilds",
00795     "gills", "gilts", "gimme", "gimpy", "girds", "girls", "giros",
00796     "girth", "girts", "gites", "given", "giver", "gives", "glade",
00797     "glads", "gland", "glare", "glass", "glaze", "gleam", "glean",
00798     "glens", "glide", "glint", "glitz", "gloat", "globe", "globs",
00799     "gloom", "glops", "glory", "gloss", "glove", "glows", "glued",
00800     "glues", "gluey", "glums", "gluts", "glyph", "gnarl", "gnash",
00801     "gnats", "gnaws", "gnome", "goads", "goals", "goats", "godly",
00802     "goers", "gofer", "going", "golds", "golfs", "golly", "gonad",
00803     "goner", "gongs", "gonna", "goods", "goody", "gooey", "goofs",
00804     "goofy", "gooks", "goons", "goose", "gored", "gores", "gorge",
00805     "gorse", "goths", "gotta", "gouge", "gourd", "gouty", "gowns",
00806     "grabs", "grace", "grade", "grads", "graft", "grail", "grain",
00807     "grams", "grand", "grans", "grant", "grape", "graph", "grasp",
00808     "grass", "grate", "grave", "gravy", "graze", "great", "grebe",
00809     "greed", "green", "greet", "grids", "grief", "grill", "grime",
00810     "grimy", "grind", "grins", "gripe", "grips", "grist", "grits",
00811     "groan", "groin", "groom", "grope", "gross", "group", "grout",
00812     "grove", "growl", "grown", "grows", "grubs", "gruel", "gruff",
00813     "grump", "grunt", "guano", "guard", "guava", "guess", "guest",
00814     "guide", "guild", "guile", "guilt", "guise", "gulag", "gulch",
00815     "gulfs", "gulls", "gully", "gulps", "gumbo", "gummy", "gunge",
00816     "gungy", "gunny", "guppy", "gurus", "gushy", "gusto", "gusts",
00817     "gusty", "gutsy", "guyed", "gypsy", "gyros", "habit", "hacks",
00818     "haded", "hades", "hafts", "haiku", "hails", "hairs", "hairy",
00819     "hakes", "halal", "haled", "haler", "hales", "hallo", "halls",
00820     "halon", "halos", "halts", "halve", "hammy", "hands", "handy",
00821     "hangs", "hanks", "happy", "hardy", "hared", "harem", "hares",
00822     "harks", "harms", "harps", "harpy", "harry", "harsh", "harts",
00823     "hasps", "haste", "hasty", "hatch", "hated", "hater", "hates",
00824     "hauls", "haunt", "haven", "haves", "havoc", "hawed", "hawks",
00825     "hayed", "hazed", "hazel", "hazes", "heads", "heady", "heals",
00826     "heaps", "heard", "hears", "heart", "heath", "heats", "heave",
00827     "heavy", "hedge", "heeds", "heels", "hefts", "hefty", "heirs",
00828     "heist", "helix", "hello", "hells", "helms", "helot", "helps",
00829     "hence", "henna", "herbs", "herds", "heron", "hertz", "hewed",
00830     "hewer", "hexed", "hexes", "hicks", "hided", "hides", "highs",
00831     "hiked", "hiker", "hikes", "hills", "hilly", "hilts", "hinds",
00832     "hinge", "hints", "hippo", "hired", "hires", "hitch", "hived",
00833     "hives", "hoard", "hoary", "hobby", "hobos", "hocks", "hogan",
00834     "hoick", "hoist", "hokey", "hokum", "holds", "holed", "holes",
00835     "holly", "homed", "homer", "homes", "homey", "honed", "honer",
00836     "hones", "honey", "honks", "honky", "hooch", "hoods", "hooey",
00837     "hoofs", "hooks", "hooky", "hoops", "hoots", "hoped", "hopes",
00838     "horde", "horns", "horny", "horse", "hosed", "hoses", "hosts",
00839     "hotel", "hotly", "hound", "hours", "house", "hovel", "hover",
00840     "howdy", "howls", "hubby", "huffs", "huffy", "huger", "hulas",
00841     "hulks", "hullo", "hulls", "human", "humid", "humph", "humps",
00842     "humus", "hunch", "hunks", "hunky", "hunts", "hurls", "hurry",
00843     "hurts", "husks", "husky", "hussy", "hutch", "hydra", "hyena",
00844     "hying", "hymen", "hymns", "hyped", "hyper", "hypes", "hypos",
00845     "iambs", "icier", "icily", "icing", "icons", "ideal", "ideas",
00846     "idiom", "idiot", "idled", "idler", "idles", "idols", "idyll",
00847     "igloo", "image", "imams", "imbue", "impel", "imply", "inane",
00848     "inapt", "incur", "index", "indie", "inept", "inert", "infer",
00849     "infix", "ingot", "inked", "inlay", "inlet", "inned", "inner",
00850     "innit", "input", "inset", "inter", "inure", "iotas", "irate",
00851     "iring", "irked", "irons", "irony", "isles", "islet", "issue",
00852     "itchy", "items", "ivied", "ivies", "ivory", "jabot", "jacks",
00853     "jaded", "jades", "jails", "jambs", "jammy", "japan", "japed",
00854     "japes", "jaunt", "jawed", "jazzy", "jeans", "jeeps", "jeers",
00855     "jells", "jelly", "jemmy", "jerks", "jerky", "jests", "jetty",
00856     "jewel", "jiffy", "jihad", "jilts", "jimmy", "jinks", "jinns",
00857     "jived", "jives", "jocks", "joeys", "johns", "joins", "joint",
00858     "joist", "joked", "joker", "jokes", "jokey", "jolly", "jolts",
00859     "joule", "joust", "jowls", "jowly", "joyed", "judge", "juice",
00860     "juicy", "julep", "jumbo", "jumps", "jumpy", "junco", "junks",
00861     "junta", "juror", "kabob", "kapok", "kaput", "karat", "karma",
00862     "karts", "kayak", "kazoo", "kebab", "keels", "keens", "keeps",
00863     "ketch", "keyed", "khaki", "khans", "kicks", "kicky", "kiddo",
00864     "kikes", "kills", "kilns", "kilos", "kilts", "kinda", "kinds",
00865     "kings", "kinks", "kinky", "kiosk", "kirks", "kited", "kites",
00866     "kiths", "kitty", "kiwis", "klutz", "knack", "knave", "knead",
00867     "kneed", "kneel", "knees", "knell", "knelt", "knife", "knits",
00868     "knobs", "knock", "knoll", "knots", "known", "knows", "koala",
00869     "kooks", "kooky", "korma", "krill", "krone", "kudos", "kudzu",
00870     "label", "labia", "laced", "laces", "lacks", "laded", "laden",
00871     "lades", "ladle", "lager", "laird", "lairs", "laity", "laked",
00872     "lakes", "lamas", "lambs", "lamed", "lamer", "lames", "lamps",
00873     "lance", "lands", "lanes", "lanky", "lapel", "lapse", "larch",
00874     "lards", "large", "largo", "larks", "larva", "laser", "lasso",
00875     "lasts", "latch", "later", "latex", "lathe", "laths", "latte",
00876     "lauds", "laugh", "lawns", "laxer", "laxes", "laxly", "layer",
00877     "lazed", "lazes", "leach", "leads", "leafs", "leafy", "leaks",
00878     "leaky", "leans", "leaps", "learn", "lease", "leash", "least",
00879     "leave", "ledge", "leech", "leeks", "leers", "leery", "lefts",
00880     "lefty", "legal", "leggy", "legit", "lemma", "lemme", "lemon",
00881     "lemur", "lends", "leper", "letch", "letup", "levee", "level",
00882     "lever", "lexis", "liars", "libel", "licit", "licks", "lidos",
00883     "liefs", "liege", "liens", "lifer", "lifts", "light", "liked",
00884     "liken", "liker", "likes", "lilac", "lilos", "lilts", "limbo",
00885     "limbs", "limed", "limes", "limey", "limit", "limns", "limos",
00886     "limps", "lined", "linen", "liner", "lines", "lingo", "lings",
00887     "links", "lints", "lions", "lipid", "lippy", "lisle", "lisps",
00888     "lists", "lites", "lithe", "lived", "liven", "liver", "lives",
00889     "livid", "llama", "llano", "loads", "loafs", "loamy", "loans",
00890     "loath", "lobby", "lobed", "lobes", "local", "lochs", "locks",
00891     "locos", "locum", "locus", "lodes", "lodge", "lofts", "lofty",
00892     "loges", "logic", "logos", "loins", "lolls", "lolly", "loner",
00893     "longs", "looks", "looms", "loons", "loony", "loops", "loopy",
00894     "loose", "loots", "loped", "lopes", "lords", "lorry", "loser",
00895     "loses", "lotto", "lotus", "lough", "lours", "louse", "lousy",
00896     "louts", "loved", "lover", "loves", "lovey", "lowed", "lower",
00897     "lowly", "loxed", "loxes", "loyal", "luaus", "lubed", "lubes",
00898     "lucid", "lucks", "lucky", "lucre", "luges", "lulls", "lulus",
00899     "lumps", "lumpy", "lunar", "lunch", "lunge", "lungs", "lupus",
00900     "lurch", "lured", "lures", "lurgy", "lurid", "lurks", "lusts",
00901     "lusty", "lutes", "lying", "lymph", "lynch", "lyres", "lyric",
00902     "macaw", "maced", "maces", "macho", "macks", "macro", "madam",
00903     "madly", "mafia", "magic", "magma", "maids", "mails", "maims",
00904     "mains", "maize", "major", "maker", "makes", "males", "malls",
00905     "malts", "mamas", "mamba", "mambo", "mammy", "manes", "mange",
00906     "mango", "mangy", "mania", "manic", "manky", "manly", "manna",
00907     "manor", "manse", "maple", "march", "mares", "marge", "maria",
00908     "marks", "marry", "marsh", "marts", "masks", "mason", "masts",
00909     "match", "mated", "mater", "mates", "matey", "matte", "matzo",
00910     "mauls", "mauve", "maven", "mawed", "maxed", "maxes", "maxim",
00911     "maybe", "mayor", "mazes", "meals", "mealy", "means", "meant",
00912     "meats", "meaty", "mecca", "medal", "media", "medic", "meets",
00913     "melds", "melon", "melts", "memos", "mends", "menus", "mercy",
00914     "mered", "merer", "meres", "merge", "merit", "merry", "mesas",
00915     "messy", "metal", "meted", "metes", "meths", "metro", "mewed",
00916     "mewls", "mezzo", "micks", "micro", "middy", "midge", "midst",
00917     "miens", "miffs", "might", "miked", "mikes", "milch", "miler",
00918     "miles", "milks", "milky", "mills", "mimed", "mimes", "mimic",
00919     "mince", "minds", "mined", "miner", "mines", "mingy", "minim",
00920     "minis", "minks", "minor", "mints", "minty", "minus", "mired",
00921     "mires", "mirth", "misdo", "miser", "mists", "misty", "mites",
00922     "mitts", "mixed", "mixer", "mixes", "moans", "moats", "mocha",
00923     "mocks", "modal", "model", "modem", "moder", "modes", "moggy",
00924     "mogul", "moire", "moist", "molar", "moles", "molls", "molts",
00925     "momma", "mommy", "money", "monks", "month", "mooch", "moods",
00926     "moody", "mooed", "moons", "moors", "moose", "moots", "moped",
00927     "mopes", "moral", "moray", "mores", "morns", "moron", "moses",
00928     "mosey", "mossy", "motel", "motes", "motet", "moths", "motif",
00929     "motor", "motto", "moult", "mound", "mount", "mourn", "mouse",
00930     "mousy", "mouth", "moved", "mover", "moves", "movie", "mowed",
00931     "mower", "moxie", "mucks", "mucky", "mucus", "muddy", "muffs",
00932     "mufti", "muggy", "mulch", "muled", "mules", "mulls", "mummy",
00933     "mumps", "munch", "mural", "murks", "murky", "mused", "muses",
00934     "mushy", "music", "musks", "musky", "mussy", "musts", "musty",
00935     "muted", "muter", "mutes", "mutts", "muzak", "muzzy", "mynas",
00936     "myrrh", "myths", "nabob", "nacho", "nacre", "nadir", "naiad",
00937     "nails", "naive", "naked", "named", "names", "nanny", "napes",
00938     "nappy", "narcs", "narky", "nasal", "nasty", "natal", "natch",
00939     "natty", "naval", "navel", "naves", "navvy", "nears", "neath",
00940     "necks", "needs", "needy", "negro", "neigh", "nerds", "nerdy",
00941     "nerve", "nervy", "nests", "never", "newed", "newel", "newer",
00942     "newly", "newsy", "newts", "nexus", "nicer", "niche", "nicks",
00943     "niece", "niffy", "nifty", "night", "nimbi", "nimby", "nines",
00944     "ninja", "ninny", "ninth", "nippy", "nixed", "nixes", "noble",
00945     "nobly", "nodal", "noddy", "nodes", "noels", "nohow", "noise",
00946     "noisy", "nomad", "nonce", "nones", "nooks", "nooky", "noons",
00947     "noose", "nopes", "norms", "north", "nosed", "noses", "notch",
00948     "noted", "notes", "nouns", "novae", "novas", "novel", "noway",
00949     "nuder", "nudes", "nudge", "nuked", "nukes", "nulls", "numbs",
00950     "nurse", "nutty", "nylon", "nymph", "oaken", "oakum", "oared",
00951     "oases", "oasis", "oaten", "oaths", "obese", "obeys", "obits",
00952     "oboes", "occur", "ocean", "ocker", "octal", "octet", "odder",
00953     "oddly", "odium", "offal", "offed", "offer", "often", "ofter",
00954     "ogled", "ogles", "ogres", "oiled", "oinks", "okays", "okras",
00955     "olden", "older", "oldie", "olive", "omega", "omens", "omits",
00956     "onion", "onset", "oohed", "oomph", "oozed", "oozes", "opals",
00957     "opens", "opera", "opine", "opium", "opted", "optic", "orals",
00958     "orate", "orbit", "order", "organ", "osier", "other", "otter",
00959     "ought", "ounce", "ousts", "outdo", "outed", "outer", "outgo",
00960     "outta", "ouzos", "ovals", "ovary", "ovens", "overs", "overt",
00961     "ovoid", "ovule", "owing", "owlet", "owned", "owner", "oxbow",
00962     "oxide", "ozone", "paced", "paces", "pacey", "packs", "pacts",
00963     "paddy", "padre", "paean", "pagan", "paged", "pager", "pages",
00964     "pails", "pains", "paint", "pairs", "paled", "paler", "pales",
00965     "palls", "pally", "palms", "palmy", "palsy", "panda", "panel",
00966     "panes", "pangs", "panic", "pansy", "panto", "pants", "papal",
00967     "papas", "papaw", "paper", "pappy", "paras", "parch", "pared",
00968     "pares", "parka", "parks", "parky", "parry", "parse", "parts",
00969     "party", "pasha", "pasta", "paste", "pasts", "pasty", "patch",
00970     "pater", "pates", "paths", "patio", "patsy", "patty", "pause",
00971     "paved", "paves", "pawed", "pawls", "pawns", "payed", "payee",
00972     "payer", "peace", "peach", "peaks", "peaky", "peals", "pearl",
00973     "pears", "peaty", "pecan", "pecks", "pedal", "peeks", "peels",
00974     "peeps", "peers", "peeve", "pekes", "pekoe", "pelts", "penal",
00975     "pence", "pends", "penis", "penny", "pents", "peons", "peony",
00976     "peppy", "perch", "peril", "perks", "perky", "perms", "perts",
00977     "pervs", "pesky", "pesos", "pesto", "pests", "petal", "peter",
00978     "petty", "pewee", "phase", "phial", "phlox", "phone", "phony",
00979     "photo", "phyla", "piano", "picks", "picky", "piece", "piers",
00980     "piety", "piggy", "piing", "piked", "piker", "pikes", "pilaf",
00981     "piled", "piles", "pills", "pilot", "pimps", "pinch", "pined",
00982     "pines", "pings", "pinko", "pinks", "pinny", "pinto", "pints",
00983     "pinup", "pious", "piped", "piper", "pipes", "pipit", "pique",
00984     "piste", "pitas", "pitch", "pithy", "piton", "pitta", "pivot",
00985     "pixel", "pixie", "pizza", "place", "plaid", "plain", "plait",
00986     "plane", "plank", "plans", "plant", "plate", "plays", "plaza",
00987     "plead", "pleas", "pleat", "plebe", "plebs", "plied", "plies",
00988     "plods", "plonk", "plops", "plots", "ploys", "pluck", "plugs",
00989     "plumb", "plume", "plump", "plums", "plunk", "plush", "poach",
00990     "pocks", "poems", "poesy", "poets", "point", "poise", "poked",
00991     "poker", "pokes", "polar", "poled", "poles", "polio", "polka",
00992     "polls", "polyp", "pommy", "ponce", "poncy", "ponds", "pones",
00993     "pongs", "pooch", "pooed", "poofs", "poohs", "pools", "poops",
00994     "popes", "poppa", "poppy", "porch", "pored", "pores", "porky",
00995     "porno", "ports", "posed", "poser", "poses", "posit", "posse",
00996     "posts", "potty", "pouch", "poufs", "pound", "pours", "pouts",
00997     "power", "poxed", "poxes", "prams", "prang", "prank", "prate",
00998     "prats", "prawn", "prays", "preen", "preps", "press", "preys",
00999     "price", "prick", "pride", "pried", "prier", "pries", "prigs",
01000     "prime", "primp", "print", "prion", "prior", "prism", "privy",
01001     "probe", "prods", "profs", "prole", "promo", "proms", "prone",
01002     "prong", "proof", "props", "prose", "prosy", "proud", "prove",
01003     "prowl", "prows", "proxy", "prude", "prune", "psalm", "pshaw",
01004     "pssts", "psych", "pubes", "pubic", "pubis", "pucks", "pudgy",
01005     "puffs", "puffy", "puked", "pukes", "pukka", "pulls", "pulps",
01006     "pulpy", "pulse", "pumas", "pumps", "punch", "punks", "punts",
01007     "pupae", "pupal", "pupil", "puppy", "pured", "puree", "purer",
01008     "purge", "purls", "purrs", "purse", "pushy", "pussy", "putts",
01009     "putty", "pygmy", "pylon", "pyres", "pyxed", "pyxes", "pzazz",
01010     "quack", "quads", "quaff", "quail", "quake", "qualm", "quark",
01011     "quart", "quash", "quasi", "quays", "queen", "queer", "quell",
01012     "query", "quest", "queue", "quick", "quids", "quiet", "quiff",
01013     "quill", "quilt", "quins", "quint", "quips", "quire", "quirk",
01014     "quite", "quits", "quoit", "quota", "quote", "quoth", "rabbi",
01015     "rabid", "raced", "racer", "races", "racks", "radar", "radii",
01016     "radio", "radon", "rafts", "ragas", "raged", "rages", "ragga",
01017     "raids", "rails", "rains", "rainy", "raise", "rajah", "raked",
01018     "rakes", "rally", "ramps", "ranch", "randy", "ranee", "range",
01019     "rangy", "ranks", "rants", "raped", "rapes", "rapid", "rared",
01020     "rarer", "rares", "rasps", "raspy", "rated", "rates", "ratio",
01021     "ratty", "raved", "ravel", "raven", "raver", "raves", "rawer",
01022     "rayon", "razed", "razes", "razor", "reach", "react", "reads",
01023     "ready", "realm", "reams", "reaps", "rearm", "rears", "rebel",
01024     "rebus", "rebut", "recap", "recce", "recon", "recto", "recur",
01025     "redid", "reeds", "reedy", "reefs", "reeks", "reels", "reeve",
01026     "refer", "refit", "regal", "rehab", "reign", "reins", "rejig",
01027     "relax", "relay", "relic", "remit", "remix", "renal", "rends",
01028     "renew", "rents", "repay", "repel", "reply", "reran", "rerun",
01029     "resat", "reset", "resin", "resit", "rests", "retch", "retro",
01030     "retry", "reuse", "revel", "revue", "rheas", "rheum", "rhino",
01031     "rhyme", "riced", "rices", "ricks", "rider", "rides", "ridge",
01032     "rifer", "riffs", "rifle", "rifts", "right", "rigid", "riled",
01033     "riles", "rills", "rimed", "rimes", "rinds", "rings", "rinks",
01034     "rinse", "riots", "riped", "ripen", "riper", "ripes", "risen",
01035     "riser", "rises", "risks", "risky", "rites", "ritzy", "rival",
01036     "riven", "river", "rives", "rivet", "roach", "roads", "roams",
01037     "roans", "roars", "roast", "robed", "robes", "robin", "robot",
01038     "rocks", "rocky", "roded", "rodeo", "rodes", "roger", "rogue",
01039     "roils", "roles", "rolls", "roman", "romps", "rondo", "roods",
01040     "roofs", "rooks", "rooms", "roomy", "roost", "roots", "roped",
01041     "ropes", "ropey", "roses", "rosin", "rotas", "roted", "rotes",
01042     "rotor", "rouge", "rough", "round", "rouse", "roust", "route",
01043     "routs", "roved", "rover", "roves", "rowan", "rowdy", "rowed",
01044     "rowel", "rower", "royal", "rubes", "rucks", "ruddy", "ruder",
01045     "ruffs", "rugby", "ruing", "ruins", "ruled", "ruler", "rules",
01046     "rumba", "rummy", "rumps", "runes", "rungs", "runic", "runny",
01047     "runts", "rupee", "rural", "ruses", "rusks", "rusts", "rusty",
01048     "sable", "sacks", "sades", "sadhu", "sadly", "safer", "safes",
01049     "sagas", "sager", "sages", "saggy", "sahib", "sails", "saint",
01050     "saith", "salad", "sales", "sally", "salon", "salsa", "salts",
01051     "salty", "salve", "salvo", "samba", "sames", "samey", "sands",
01052     "sandy", "saned", "saner", "sanes", "sangs", "sappy", "sarge",
01053     "saris", "sarky", "sassy", "satay", "sated", "sates", "satin",
01054     "satyr", "sauce", "saucy", "sauna", "saved", "saver", "saves",
01055     "savoy", "savvy", "sawed", "saxes", "scabs", "scads", "scald",
01056     "scale", "scalp", "scaly", "scamp", "scams", "scans", "scant",
01057     "scare", "scarf", "scarp", "scars", "scary", "scats", "scene",
01058     "scent", "schwa", "scion", "scoff", "scold", "scone", "scoop",
01059     "scoot", "scope", "score", "scorn", "scour", "scout", "scowl",
01060     "scows", "scram", "scrap", "scree", "screw", "scrip", "scrod",
01061     "scrub", "scrum", "scuba", "scuds", "scuff", "scull", "scums",
01062     "scurf", "seals", "seams", "seamy", "sears", "seats", "sebum",
01063     "sects", "sedan", "sedge", "seeds", "seedy", "seeks", "seems",
01064     "seeps", "seers", "segue", "seize", "sells", "semen", "semis",
01065     "sends", "senna", "sense", "sepal", "sepia", "septa", "sered",
01066     "serer", "seres", "serfs", "serge", "serif", "serum", "serve",
01067     "servo", "setts", "setup", "seven", "sever", "sewed", "sewer",
01068     "sexed", "sexes", "shack", "shade", "shads", "shady", "shaft",
01069     "shags", "shahs", "shake", "shaky", "shale", "shall", "shalt",
01070     "shame", "shams", "shank", "shape", "shard", "share", "shark",
01071     "sharp", "shave", "shawl", "sheaf", "shear", "sheds", "sheen",
01072     "sheep", "sheer", "sheet", "sheik", "shelf", "shell", "shied",
01073     "shies", "shift", "shill", "shims", "shine", "shins", "shiny",
01074     "ships", "shire", "shirk", "shirr", "shirt", "shite", "shits",
01075     "shoal", "shock", "shoes", "shone", "shook", "shoos", "shoot",
01076     "shops", "shore", "short", "shots", "shout", "shove", "shown",
01077     "shows", "showy", "shred", "shrew", "shrub", "shrug", "shuck",
01078     "shuns", "shunt", "shush", "shuts", "shyer", "shyly", "sibyl",
01079     "sicko", "sicks", "sided", "sides", "sidle", "siege", "sieve",
01080     "sifts", "sighs", "sight", "sigma", "signs", "silks", "silky",
01081     "sills", "silly", "silos", "silts", "since", "sines", "sinew",
01082     "singe", "sings", "sinks", "sinus", "sired", "siren", "sires",
01083     "sisal", "sises", "sissy", "sitar", "sited", "sites", "sixes",
01084     "sixth", "sixty", "sized", "sizer", "sizes", "skate", "skeet",
01085     "skein", "skews", "skids", "skied", "skier", "skies", "skiff",
01086     "skill", "skimp", "skims", "skins", "skint", "skips", "skirt",
01087     "skits", "skive", "skuas", "skulk", "skull", "skunk", "slabs",
01088     "slack", "slags", "slain", "slake", "slams", "slang", "slant",
01089     "slaps", "slash", "slate", "slats", "slave", "slays", "sleds",
01090     "sleek", "sleep", "sleet", "slept", "slews", "slice", "slick",
01091     "slide", "slier", "slime", "slims", "slimy", "sling", "slink",
01092     "slips", "slits", "slobs", "sloes", "slogs", "sloop", "slope",
01093     "slops", "slosh", "sloth", "slots", "slows", "slued", "slues",
01094     "slugs", "slump", "slums", "slung", "slunk", "slurp", "slurs",
01095     "slush", "sluts", "slyly", "smack", "small", "smart", "smash",
01096     "smear", "smell", "smelt", "smile", "smirk", "smite", "smith",
01097     "smock", "smogs", "smoke", "smoky", "smote", "smugs", "smuts",
01098     "snack", "snafu", "snags", "snail", "snake", "snaky", "snaps",
01099     "snare", "snarl", "sneak", "sneer", "snick", "snide", "sniff",
01100     "snipe", "snips", "snits", "snobs", "snogs", "snoop", "snoot",
01101     "snore", "snort", "snots", "snout", "snows", "snowy", "snubs",
01102     "snuff", "snugs", "soaks", "soaps", "soapy", "soars", "sober",
01103     "socks", "sodas", "sofas", "softy", "soggy", "soils", "solar",
01104     "soled", "soles", "solid", "solos", "solve", "sonar", "songs",
01105     "sonic", "sonny", "sooth", "sooty", "soppy", "sored", "sorer",
01106     "sores", "sorry", "sorta", "sorts", "sough", "souks", "souls",
01107     "sound", "soups", "soupy", "sours", "souse", "south", "sowed",
01108     "sower", "space", "spade", "spake", "spams", "spank", "spans",
01109     "spare", "spark", "spars", "spasm", "spate", "spats", "spawn",
01110     "spays", "speak", "spear", "speck", "specs", "speed", "spell",
01111     "spend", "spent", "sperm", "spews", "spice", "spics", "spicy",
01112     "spied", "spiel", "spies", "spiff", "spike", "spiky", "spill",
01113     "spine", "spins", "spiny", "spire", "spite", "spits", "spivs",
01114     "splat", "splay", "split", "spoil", "spoke", "spoof", "spook",
01115     "spool", "spoon", "spoor", "spore", "sport", "spots", "spout",
01116     "sprat", "spray", "spree", "sprig", "sprog", "spuds", "spume",
01117     "spunk", "spurn", "spurs", "spurt", "squab", "squad", "squat",
01118     "squaw", "squib", "squid", "stabs", "stack", "staff", "stage",
01119     "stags", "stagy", "staid", "stain", "stair", "stake", "stale",
01120     "stalk", "stall", "stamp", "stand", "stank", "staph", "stare",
01121     "stark", "stars", "start", "stash", "state", "stats", "stave",
01122     "stays", "stead", "steak", "steal", "steam", "steed", "steel",
01123     "steep", "steer", "stein", "stems", "steno", "steps", "stern",
01124     "stews", "stick", "sties", "stiff", "stile", "still", "stilt",
01125     "sting", "stink", "stint", "stirs", "stoat", "stock", "stogy",
01126     "stoic", "stoke", "stole", "stomp", "stone", "stony", "stood",
01127     "stool", "stoop", "stops", "store", "stork", "storm", "stoup",
01128     "stout", "stove", "stows", "strap", "straw", "stray", "strep",
01129     "strew", "strip", "strop", "strum", "strut", "stubs", "stuck",
01130     "studs", "study", "stuff", "stump", "stung", "stunk", "stuns",
01131     "stunt", "style", "styli", "suave", "sucks", "sudsy", "suede",
01132     "sugar", "suing", "suite", "suits", "sulks", "sulky", "sully",
01133     "sumac", "sumps", "sunks", "sunny", "sunup", "super", "surer",
01134     "surfs", "surge", "surly", "sushi", "swabs", "swags", "swain",
01135     "swami", "swamp", "swank", "swans", "swaps", "sward", "swarm",
01136     "swash", "swath", "swats", "sways", "swear", "sweat", "swede",
01137     "sweep", "sweet", "swell", "swept", "swift", "swigs", "swill",
01138     "swims", "swine", "swing", "swipe", "swirl", "swish", "swizz",
01139     "swoon", "swoop", "sword", "swore", "sworn", "swots", "swung",
01140     "sylph", "syncs", "synod", "syrup", "tabby", "table", "taboo",
01141     "tacit", "tacks", "tacky", "tacos", "taffy", "tails", "taint",
01142     "taken", "taker", "takes", "tales", "talks", "tally", "talon",
01143     "tamed", "tamer", "tames", "tamps", "tango", "tangs", "tangy",
01144     "tanks", "tansy", "tapas", "taped", "taper", "tapes", "tapir",
01145     "tardy", "tared", "tares", "tarns", "taros", "tarot", "tarps",
01146     "tarry", "tarts", "tarty", "tasks", "taste", "tasty", "tater",
01147     "tatty", "taunt", "taupe", "tauts", "tawny", "taxed", "taxes",
01148     "taxis", "teach", "teaed", "teaks", "teals", "teams", "tears",
01149     "teary", "tease", "teats", "techs", "teddy", "teems", "teens",
01150     "teeny", "teeth", "telex", "tells", "telly", "tempo", "temps",
01151     "tempt", "tench", "tends", "tenet", "tenon", "tenor", "tense",
01152     "tenth", "tents", "tepee", "tepid", "terms", "terns", "terry",
01153     "terse", "tests", "testy", "texts", "thank", "thaws", "theed",
01154     "thees", "theft", "their", "theme", "there", "therm", "these",
01155     "theta", "thick", "thief", "thigh", "thine", "thing", "think",
01156     "thins", "third", "thong", "thorn", "those", "thous", "three",
01157     "threw", "throb", "throe", "throw", "thrum", "thuds", "thugs",
01158     "thumb", "thump", "thyme", "tiara", "tibia", "ticks", "tidal",
01159     "tided", "tides", "tiers", "tiffs", "tiger", "tight", "tilde",
01160     "tiled", "tiler", "tiles", "tills", "tilts", "timed", "timer",
01161     "times", "timid", "tinge", "tings", "tinny", "tints", "tipsy",
01162     "titan", "titch", "tithe", "title", "titty", "tizzy", "toads",
01163     "toady", "toast", "today", "toddy", "toffs", "togas", "toils",
01164     "toked", "token", "tokes", "tolls", "tombs", "tomes", "tonal",
01165     "toned", "toner", "tones", "tongs", "tonic", "tonne", "tools",
01166     "tooth", "toots", "topaz", "topee", "topic", "toque", "torch",
01167     "torso", "torte", "torts", "torus", "total", "toted", "totem",
01168     "totes", "touch", "tough", "tours", "touts", "towed", "towel",
01169     "tower", "towns", "toxic", "toxin", "toyed", "trace", "track",
01170     "tract", "trade", "trail", "train", "trait", "tramp", "trams",
01171     "traps", "trash", "trawl", "trays", "tread", "treat", "treed",
01172     "trees", "treks", "trend", "tress", "trews", "triad", "trial",
01173     "tribe", "trice", "trick", "tried", "trier", "tries", "trike",
01174     "trill", "trims", "trios", "tripe", "trips", "trite", "troll",
01175     "tromp", "troop", "trope", "troth", "trots", "trout", "troys",
01176     "truce", "truck", "trued", "truer", "trues", "trugs", "truly",
01177     "trump", "trunk", "truss", "trust", "truth", "tryst", "tubae",
01178     "tubas", "tubby", "tubed", "tuber", "tubes", "tucks", "tufts",
01179     "tulip", "tulle", "tumid", "tummy", "tunas", "tuned", "tuner",
01180     "tunes", "tunic", "tunny", "tuque", "turbo", "turds", "turfs",
01181     "turns", "turps", "tusks", "tutor", "tutus", "tuxes", "twain",
01182     "twang", "twats", "tweak", "tweed", "tweet", "twerp", "twice",
01183     "twigs", "twill", "twine", "twins", "twirl", "twist", "twits",
01184     "twixt", "tying", "tykes", "typed", "types", "typos", "tyros",
01185     "udder", "ulcer", "ulnae", "ultra", "umbel", "umber", "umiak",
01186     "umped", "unbar", "uncle", "uncut", "under", "undid", "undue",
01187     "unfit", "unify", "union", "unite", "units", "unity", "unlit",
01188     "unman", "unmet", "unpin", "unsay", "unset", "untie", "until",
01189     "unwed", "unzip", "upend", "upped", "upper", "upset", "urban",
01190     "urged", "urges", "urine", "urned", "usage", "users", "usher",
01191     "using", "usual", "usurp", "usury", "uteri", "utter", "uvula",
01192     "vague", "vales", "valet", "valid", "value", "valve", "vamps",
01193     "vanes", "vapid", "vases", "vasts", "vault", "vaunt", "veals",
01194     "veeps", "veers", "vegan", "veges", "veils", "veins", "velar",
01195     "velds", "venal", "vends", "venom", "vents", "venue", "verbs",
01196     "verge", "verse", "verso", "verve", "vests", "vetch", "vexed",
01197     "vexes", "vials", "viand", "vibes", "vicar", "viced", "vices",
01198     "video", "views", "vigil", "viler", "villa", "vined", "vines",
01199     "vinyl", "viola", "viols", "viper", "viral", "vireo", "virus",
01200     "visas", "vised", "vises", "visit", "visor", "vista", "vital",
01201     "vivas", "vivid", "vixen", "vocal", "vodka", "vogue", "voice",
01202     "voids", "voile", "voled", "voles", "volts", "vomit", "voted",
01203     "voter", "votes", "vouch", "vowed", "vowel", "vulva", "vying",
01204     "wacko", "wacky", "waded", "wader", "wades", "wadge", "wadis",
01205     "wafer", "wafts", "waged", "wager", "wages", "waifs", "wails",
01206     "waist", "waits", "waive", "waked", "waken", "wakes", "waled",
01207     "wales", "walks", "walla", "walls", "wally", "waltz", "wands",
01208     "waned", "wanes", "wanks", "wanly", "wanna", "wants", "wards",
01209     "wares", "warms", "warns", "warps", "warts", "warty", "wases",
01210     "wasps", "waste", "watch", "water", "watts", "waved", "waver",
01211     "waves", "waxed", "waxen", "waxes", "wazoo", "weals", "weans",
01212     "wears", "weary", "weave", "wedge", "weeds", "weedy", "weeks",
01213     "weeny", "weeps", "weepy", "weest", "wefts", "weigh", "weird",
01214     "weirs", "welds", "wells", "welly", "welsh", "welts", "wench",
01215     "wends", "wests", "wetly", "whack", "whale", "whams", "wharf",
01216     "whats", "wheal", "wheat", "wheel", "whelk", "whelp", "whens",
01217     "where", "whets", "whews", "which", "whiff", "while", "whims",
01218     "whine", "whiny", "whips", "whirl", "whirs", "whisk", "whist",
01219     "white", "whits", "whole", "whoop", "whops", "whore", "whorl",
01220     "whose", "whups", "wicks", "widen", "wider", "widow", "width",
01221     "wield", "wight", "wilds", "wiled", "wiles", "wills", "willy",
01222     "wilts", "wimps", "wimpy", "wince", "winch", "winds", "windy",
01223     "wined", "wines", "wings", "winks", "winos", "wiped", "wiper",
01224     "wipes", "wired", "wires", "wised", "wiser", "wises", "wisps",
01225     "wispy", "witch", "withe", "withs", "witty", "wives", "wodge",
01226     "woken", "wolds", "wolfs", "woman", "wombs", "women", "wonks",
01227     "wonky", "woods", "woody", "wooed", "wooer", "woofs", "woozy",
01228     "words", "wordy", "works", "world", "worms", "wormy", "worry",
01229     "worse", "worst", "worth", "would", "wound", "woven", "wowed",
01230     "wrack", "wraps", "wrath", "wreak", "wreck", "wrens", "wrest",
01231     "wried", "wries", "wring", "wrist", "write", "writs", "wrong",
01232     "wrote", "wroth", "wrung", "wryer", "wryly", "xenon", "xerox",
01233     "xylem", "yacht", "yahoo", "yanks", "yards", "yarns", "yawed",
01234     "yawls", "yawns", "yeahs", "yearn", "years", "yeast", "yells",
01235     "yelps", "yeses", "yetis", "yield", "yikes", "yobbo", "yodel",
01236     "yogic", "yogis", "yoked", "yokel", "yokes", "yolks", "yonks",
01237     "young", "yours", "youth", "yowls", "yucca", "yucks", "yucky",
01238     "yukky", "yummy", "zappy", "zebra", "zebus", "zeros", "zests",
01239     "zilch", "zincs", "zines", "zings", "zingy", "zippy", "zonal",
01240     "zoned", "zones", "zooms"
01241   };
01242 
01243   const char* w_6[] = {
01244     "abacus", "abased", "abases", "abated", "abates", "abbess",
01245     "abbeys", "abbots", "abduct", "abhors", "abides", "abject",
01246     "abjure", "ablaze", "ablest", "abloom", "aboard", "aboded",
01247     "abodes", "aborts", "abound", "abouts", "abrade", "abroad",
01248     "abrupt", "abseil", "absent", "absorb", "absurd", "abused",
01249     "abuser", "abuses", "acacia", "accede", "accent", "accept",
01250     "access", "accord", "accost", "accrue", "accuse", "acetic",
01251     "achier", "aching", "acidic", "acidly", "acorns", "acquit",
01252     "across", "acting", "action", "active", "actors", "actual",
01253     "acuity", "acumen", "acuter", "acutes", "adages", "adagio",
01254     "adapts", "addend", "adders", "addict", "adding", "addled",
01255     "addles", "adduce", "adepts", "adhere", "adieus", "adjoin",
01256     "adjure", "adjust", "admire", "admits", "adobes", "adopts",
01257     "adored", "adores", "adorns", "adrift", "adroit", "adults",
01258     "advent", "adverb", "advert", "advice", "advise", "aerate",
01259     "aerial", "aerier", "aeries", "affair", "affect", "affirm",
01260     "afford", "affray", "afghan", "afield", "aflame", "afloat",
01261     "afraid", "afresh", "afters", "agates", "ageism", "ageist",
01262     "agency", "agenda", "agents", "aghast", "agiler", "agleam",
01263     "agreed", "agrees", "ahchoo", "aiding", "ailing", "aiming",
01264     "airbag", "airbed", "airgun", "airier", "airily", "airing",
01265     "airman", "airmen", "airway", "aisled", "aisles", "akimbo",
01266     "alarms", "alases", "albeit", "albino", "albums", "alcove",
01267     "alders", "alerts", "alibis", "aliens", "alight", "aligns",
01268     "alkali", "allays", "allege", "alleys", "allied", "allies",
01269     "allots", "allows", "alloys", "allude", "allure", "almond",
01270     "almost", "alohas", "alpaca", "alphas", "alpine", "altars",
01271     "alters", "alumna", "alumni", "always", "amazed", "amazes",
01272     "amazon", "ambled", "ambles", "ambush", "amends", "amened",
01273     "amidst", "amigos", "amoeba", "amoral", "amount", "amours",
01274     "ampere", "amping", "ampler", "ampule", "amulet", "amused",
01275     "amuses", "anally", "analog", "anchor", "angels", "angers",
01276     "angina", "angled", "angler", "angles", "angora", "animal",
01277     "animus", "anions", "ankled", "ankles", "anklet", "annals",
01278     "anneal", "annexe", "annoys", "annual", "annuls", "anodes",
01279     "anoint", "anorak", "answer", "anthem", "anther", "antics",
01280     "anting", "antler", "anuses", "anvils", "anyhow", "anyone",
01281     "anyway", "aortas", "apathy", "apexes", "aphids", "apiary",
01282     "apiece", "aplomb", "apogee", "appeal", "appear", "append",
01283     "apples", "applet", "aprons", "aptest", "arable", "arcade",
01284     "arcane", "arched", "archer", "arches", "archly", "arcing",
01285     "arctic", "ardent", "arenas", "argosy", "argots", "argued",
01286     "argues", "argyle", "arider", "aright", "arisen", "arises",
01287     "armada", "armful", "armies", "arming", "armlet", "armpit",
01288     "aromas", "around", "arouse", "arrant", "arrays", "arrest",
01289     "arrive", "arrows", "arroyo", "arsing", "artery", "artful",
01290     "artier", "artist", "ascend", "ascent", "ascots", "ashcan",
01291     "ashier", "ashing", "ashore", "ashram", "asides", "asking",
01292     "aslant", "asleep", "aspect", "aspens", "aspics", "aspire",
01293     "assail", "assays", "assent", "assert", "assess", "assets",
01294     "assign", "assist", "assize", "assort", "assume", "assure",
01295     "astern", "asters", "asthma", "astral", "astray", "astute",
01296     "asylum", "atolls", "atomic", "atonal", "atoned", "atones",
01297     "atrium", "attach", "attack", "attain", "attend", "attest",
01298     "attics", "attire", "attune", "auburn", "audios", "audits",
01299     "augers", "aughts", "augurs", "augury", "august", "auntie",
01300     "author", "autism", "autoed", "autumn", "avails", "avasts",
01301     "avatar", "avenge", "avenue", "averse", "averts", "avians",
01302     "aviary", "avider", "avidly", "avoids", "avowal", "avowed",
01303     "awaits", "awaken", "awakes", "awards", "awarer", "aweigh",
01304     "awhile", "awning", "awoken", "axioms", "axises", "azalea",
01305     "azures", "baaing", "babble", "babels", "babied", "babier",
01306     "babies", "baboon", "backed", "backer", "backup", "badder",
01307     "baddie", "badger", "badges", "baffle", "bagels", "bagful",
01308     "bagged", "baggie", "bailed", "bailey", "bairns", "baited",
01309     "bakers", "bakery", "baking", "balded", "balder", "baldly",
01310     "baleen", "baling", "balked", "ballad", "balled", "ballet",
01311     "ballot", "ballsy", "balsam", "balsas", "bamboo", "banana",
01312     "banded", "bandit", "banged", "banger", "bangle", "baning",
01313     "banish", "banjos", "banked", "banker", "banned", "banner",
01314     "bantam", "banter", "banyan", "baobab", "barbed", "barber",
01315     "barbie", "barely", "barest", "barfed", "barfly", "barged",
01316     "barges", "baring", "barium", "barked", "barker", "barley",
01317     "barman", "barmen", "barney", "barons", "barony", "barred",
01318     "barrel", "barren", "barrio", "barrow", "barter", "basalt",
01319     "basely", "basest", "bashed", "bashes", "basics", "basing",
01320     "basins", "basked", "basket", "basque", "basses", "basset",
01321     "bassos", "basted", "bastes", "bathed", "bather", "bathes",
01322     "bathos", "batiks", "bating", "batman", "batmen", "batons",
01323     "batted", "batten", "batter", "battle", "bauble", "baulks",
01324     "bawled", "baying", "bayous", "bazaar", "beacon", "beaded",
01325     "beagle", "beaked", "beaker", "beamed", "beaned", "beanie",
01326     "beards", "bearer", "beasts", "beaten", "beater", "beauts",
01327     "beauty", "beaver", "bebops", "becalm", "became", "beckon",
01328     "become", "bedaub", "bedbug", "bedded", "bedder", "bedeck",
01329     "bedlam", "bedpan", "bedsit", "beefed", "beeped", "beeper",
01330     "beetle", "beeves", "befall", "befell", "befits", "befogs",
01331     "before", "befoul", "begets", "beggar", "begged", "begins",
01332     "begone", "begums", "behalf", "behave", "behead", "beheld",
01333     "behest", "behind", "behold", "beings", "belays", "belfry",
01334     "belied", "belief", "belies", "belled", "belles", "bellow",
01335     "belong", "belows", "belted", "bemoan", "bemuse", "bender",
01336     "benign", "benumb", "berate", "bereft", "berets", "berths",
01337     "beryls", "besets", "beside", "besoms", "besots", "bested",
01338     "bestir", "bestow", "betake", "betcha", "betide", "betook",
01339     "betray", "better", "bettor", "bevels", "bevies", "bewail",
01340     "beware", "beyond", "biased", "biases", "bibles", "bicarb",
01341     "biceps", "bicker", "bidden", "bidder", "bidets", "biding",
01342     "biffed", "bigamy", "bigger", "biggie", "bights", "bigots",
01343     "bigwig", "bikers", "biking", "bikini", "bilges", "bilked",
01344     "billed", "billet", "billow", "bimbos", "binary", "binder",
01345     "binged", "binges", "binman", "binmen", "binned", "bionic",
01346     "biopic", "biopsy", "bipeds", "birded", "birdie", "births",
01347     "bisect", "bishop", "bisque", "bistro", "bitchy", "biting",
01348     "bitmap", "bitten", "bitter", "blacks", "bladed", "blades",
01349     "blahed", "blamed", "blamer", "blames", "blanch", "blanks",
01350     "blared", "blares", "blasts", "blazed", "blazer", "blazes",
01351     "blazon", "bleach", "bleary", "bleats", "bleeds", "bleeps",
01352     "blench", "blends", "blight", "blimey", "blimps", "blinds",
01353     "blinks", "blintz", "blithe", "bloats", "blocks", "blokes",
01354     "blonds", "bloods", "bloody", "blooms", "blotch", "blotto",
01355     "blouse", "blower", "blowup", "blowzy", "bluest", "bluesy",
01356     "bluffs", "bluing", "bluish", "blunts", "blurbs", "blurry",
01357     "blurts", "boards", "boasts", "boated", "boater", "bobbed",
01358     "bobbin", "bobble", "bobcat", "bodega", "bodged", "bodges",
01359     "bodice", "bodies", "bodily", "boding", "bodkin", "boffin",
01360     "bogeys", "bogged", "boggle", "boiled", "boiler", "bolder",
01361     "boldly", "bolero", "bolled", "bolshy", "bolted", "bombed",
01362     "bomber", "bonbon", "bonces", "bonded", "boners", "bonged",
01363     "bongos", "bonier", "boning", "bonito", "bonked", "bonnet",
01364     "bonnie", "bonsai", "boobed", "boodle", "booger", "boogie",
01365     "boohoo", "booing", "booked", "bookie", "boomed", "boomer",
01366     "boosts", "booted", "bootee", "booths", "boozed", "boozer",
01367     "boozes", "bopped", "border", "borers", "boring", "borrow",
01368     "bosoms", "bosomy", "bossed", "bosser", "bosses", "botany",
01369     "bother", "bottle", "bottom", "boughs", "bought", "boules",
01370     "bounce", "bouncy", "bounds", "bounty", "bovine", "bovver",
01371     "bowels", "bowers", "bowing", "bowled", "bowler", "bowman",
01372     "bowmen", "boxcar", "boxers", "boxing", "boyish", "braced",
01373     "braces", "bracts", "braids", "brains", "brainy", "braise",
01374     "braked", "brakes", "branch", "brands", "brandy", "brassy",
01375     "bratty", "braved", "braver", "braves", "bravos", "brawls",
01376     "brawny", "brayed", "brazen", "breach", "breads", "breaks",
01377     "breams", "breast", "breath", "breded", "bredes", "breech",
01378     "breeds", "breeze", "breezy", "brewed", "brewer", "bribed",
01379     "bribes", "bricks", "bridal", "brides", "bridge", "bridle",
01380     "briefs", "briers", "bright", "brings", "brinks", "brisks",
01381     "broach", "broads", "brogan", "brogue", "broils", "broken",
01382     "broker", "brolly", "bronco", "bronze", "brooch", "broods",
01383     "broody", "brooks", "brooms", "broths", "browns", "browse",
01384     "bruins", "bruise", "bruits", "brunch", "brunet", "brunts",
01385     "brutal", "brutes", "bubble", "bubbly", "bucked", "bucket",
01386     "buckle", "budded", "budged", "budges", "budget", "budgie",
01387     "buffed", "buffer", "buffet", "bugged", "bugger", "bugled",
01388     "bugler", "bugles", "builds", "bulbed", "bulged", "bulges",
01389     "bulked", "bulled", "bullet", "bumbag", "bumble", "bummed",
01390     "bummer", "bumped", "bumper", "bundle", "bunged", "bungee",
01391     "bungle", "bunion", "bunked", "bunker", "bunkum", "bunted",
01392     "buoyed", "burble", "burden", "bureau", "burger", "burghs",
01393     "burgle", "burial", "buried", "buries", "burlap", "burned",
01394     "burner", "burped", "burred", "burros", "burrow", "bursar",
01395     "bursts", "busboy", "bushed", "bushel", "bushes", "busied",
01396     "busier", "busies", "busily", "busing", "busked", "busker",
01397     "bussed", "busted", "buster", "bustle", "butane", "butler",
01398     "butted", "butter", "buttes", "button", "buyers", "buying",
01399     "buyout", "buzzed", "buzzer", "buzzes", "bygone", "bylaws",
01400     "byline", "bypass", "byplay", "byways", "byword", "cabals",
01401     "cabana", "cabbed", "cabers", "cabins", "cabled", "cables",
01402     "cacaos", "cached", "caches", "cachet", "cackle", "cactus",
01403     "cadets", "cadged", "cadger", "cadges", "cadres", "caftan",
01404     "cagier", "cagily", "caging", "cahoot", "cairns", "cajole",
01405     "caking", "calico", "caliph", "called", "caller", "callow",
01406     "callus", "calmed", "calmer", "calmly", "calved", "calves",
01407     "camber", "camels", "cameos", "camera", "camped", "camper",
01408     "campus", "canals", "canard", "canary", "cancan", "cancel",
01409     "cancer", "candid", "candle", "canine", "caning", "canker",
01410     "canned", "cannon", "cannot", "canoed", "canoes", "canons",
01411     "canopy", "canted", "canter", "canton", "cantor", "cantos",
01412     "canvas", "canyon", "capers", "caplet", "capons", "capped",
01413     "captor", "carafe", "carats", "carbon", "carboy", "carded",
01414     "careen", "career", "carers", "caress", "carets", "carhop",
01415     "caries", "caring", "carnal", "carobs", "carols", "caroms",
01416     "carpal", "carped", "carpel", "carpet", "carpus", "carrel",
01417     "carrot", "carted", "cartel", "carter", "carton", "carved",
01418     "carver", "carves", "casein", "cashed", "cashes", "cashew",
01419     "casing", "casino", "casket", "cassia", "casted", "caster",
01420     "castes", "castle", "casual", "catchy", "caters", "catgut",
01421     "cation", "catkin", "catnap", "catnip", "cattle", "caucus",
01422     "caudal", "caught", "caulks", "causal", "caused", "causes",
01423     "caveat", "cavern", "cavers", "caviar", "cavils", "caving",
01424     "cavity", "cavort", "cawing", "cayman", "ceased", "ceases",
01425     "cedars", "ceding", "celebs", "celery", "cellar", "celled",
01426     "cellos", "cement", "censer", "censor", "census", "cereal",
01427     "cerise", "cervix", "chafed", "chafes", "chaffs", "chains",
01428     "chairs", "chaise", "chalet", "chalks", "chalky", "champs",
01429     "chance", "chancy", "change", "chants", "chapel", "chappy",
01430     "charge", "charms", "charts", "chased", "chaser", "chases",
01431     "chasms", "chaste", "chatty", "cheapo", "cheats", "cheeks",
01432     "cheeky", "cheeps", "cheers", "cheery", "cheese", "cheesy",
01433     "cherry", "cherub", "chests", "chesty", "chewed", "chewer",
01434     "chicer", "chichi", "chicks", "chicle", "chided", "chides",
01435     "chiefs", "chills", "chilly", "chimed", "chimes", "chimps",
01436     "chinks", "chinos", "chintz", "chippy", "chirps", "chirpy",
01437     "chisel", "chitin", "chived", "chives", "chivvy", "chocks",
01438     "choice", "choirs", "choked", "choker", "chokes", "choler",
01439     "chomps", "choose", "choosy", "choppy", "choral", "chords",
01440     "chored", "chores", "chorus", "chosen", "chowed", "chrome",
01441     "chubby", "chucks", "chummy", "chumps", "chunks", "chunky",
01442     "church", "churls", "churns", "chutes", "cicada", "ciders",
01443     "cigars", "cilium", "cinder", "cinema", "cipher", "circle",
01444     "circus", "cirrus", "cities", "citing", "citric", "citron",
01445     "citrus", "civets", "civics", "clacks", "claims", "clammy",
01446     "clamps", "clangs", "clanks", "claret", "clasps", "classy",
01447     "clause", "clawed", "clayey", "cleans", "clears", "cleats",
01448     "cleave", "clefts", "clench", "clergy", "cleric", "clerks",
01449     "clever", "clewed", "clicks", "client", "cliffs", "climax",
01450     "climbs", "climes", "clinch", "clings", "clingy", "clinic",
01451     "clinks", "clique", "cloaks", "cloche", "clocks", "clomps",
01452     "cloned", "clones", "clonks", "closed", "closer", "closes",
01453     "closet", "clothe", "cloths", "clouds", "cloudy", "clouts",
01454     "cloven", "clover", "cloves", "clowns", "cloyed", "clucks",
01455     "cluing", "clumps", "clumpy", "clumsy", "clunks", "clunky",
01456     "clutch", "coaled", "coarse", "coasts", "coated", "coater",
01457     "coaxed", "coaxes", "cobalt", "cobbed", "cobber", "cobble",
01458     "cobnut", "cobras", "cobweb", "coccis", "coccus", "coccyx",
01459     "cocked", "cockle", "cocoas", "cocoon", "codded", "coddle",
01460     "codger", "codify", "coding", "coerce", "coeval", "coffee",
01461     "coffer", "coffin", "cogent", "cognac", "cohere", "cohort",
01462     "coiled", "coined", "coital", "coitus", "coking", "colder",
01463     "coldly", "coleys", "collar", "collie", "colons", "colony",
01464     "column", "combat", "combed", "combos", "comedy", "comely",
01465     "comers", "comets", "comics", "coming", "comity", "commas",
01466     "commie", "commit", "common", "compel", "comply", "conchs",
01467     "concur", "condom", "condor", "condos", "confab", "confer",
01468     "congas", "conger", "conics", "conies", "coning", "conked",
01469     "conker", "conned", "consul", "convex", "convey", "convoy",
01470     "cooing", "cooked", "cooker", "cookie", "cooled", "cooler",
01471     "coolie", "coolly", "cooped", "cooper", "cootie", "copied",
01472     "copier", "copies", "coping", "copped", "copper", "copsed",
01473     "copses", "copter", "copula", "corals", "corded", "cordon",
01474     "corgis", "coring", "corked", "corker", "cornea", "corned",
01475     "corner", "cornet", "corona", "corpse", "corpus", "corral",
01476     "corrie", "corset", "cortex", "coshed", "coshes", "cosign",
01477     "cosily", "cosine", "cosmic", "cosmos", "cosset", "costar",
01478     "costly", "coting", "cotted", "cotter", "cotton", "cougar",
01479     "coughs", "coulis", "counts", "county", "couped", "coupes",
01480     "couple", "coupon", "course", "courts", "cousin", "covens",
01481     "covers", "covert", "covets", "coveys", "coward", "cowboy",
01482     "cowers", "cowing", "cowpat", "cowpox", "cowrie", "coxing",
01483     "coyest", "coyote", "coypus", "cozens", "cozily", "crabby",
01484     "cracks", "cradle", "crafts", "crafty", "craggy", "cramps",
01485     "craned", "cranes", "cranks", "cranky", "cranny", "crapes",
01486     "crappy", "crated", "crater", "crates", "cravat", "craved",
01487     "craven", "craves", "crawls", "crayon", "crazed", "crazes",
01488     "creaks", "creaky", "creams", "creamy", "crease", "create",
01489     "credit", "credos", "creeds", "creeks", "creels", "creeps",
01490     "creepy", "creole", "crepes", "crests", "cretin", "crewed",
01491     "cricks", "criers", "crikey", "crimed", "crimes", "crimps",
01492     "cringe", "cripes", "crises", "crisis", "crisps", "crispy",
01493     "critic", "croaks", "crocks", "crocus", "crofts", "crones",
01494     "crooks", "croons", "crotch", "crouch", "croups", "croupy",
01495     "crowds", "crowed", "crowns", "cruddy", "cruder", "cruels",
01496     "cruets", "cruise", "crumbs", "crumby", "crummy", "crunch",
01497     "crusts", "crusty", "crutch", "cruxes", "crying", "crypts",
01498     "cubing", "cubism", "cubist", "cubits", "cuboid", "cuckoo",
01499     "cuddle", "cuddly", "cudgel", "cuffed", "culled", "cumuli",
01500     "cupful", "cupids", "cupola", "cuppas", "cupped", "curacy",
01501     "curate", "curdle", "curfew", "curies", "curing", "curios",
01502     "curled", "curler", "curlew", "curred", "cursed", "curses",
01503     "cursor", "curter", "curtly", "curtsy", "curved", "curves",
01504     "cuspid", "cussed", "cusses", "custom", "cutely", "cutest",
01505     "cutesy", "cuteys", "cuties", "cutlet", "cutoff", "cutout",
01506     "cutter", "cutups", "cyborg", "cycled", "cycles", "cyclic",
01507     "cygnet", "cymbal", "cynics", "cypher", "cystic", "dabbed",
01508     "dabble", "dachas", "dactyl", "dadoes", "daemon", "dafter",
01509     "dagger", "dagoes", "dahlia", "dainty", "daises", "damage",
01510     "damask", "dammed", "dammit", "damned", "damped", "dampen",
01511     "damper", "damply", "damsel", "damson", "danced", "dancer",
01512     "dances", "dander", "dandle", "danger", "dangle", "danker",
01513     "dankly", "dapper", "dapple", "daring", "darken", "darker",
01514     "darkie", "darkly", "darned", "darted", "dashed", "dashes",
01515     "dating", "dative", "datums", "daubed", "dauber", "daunts",
01516     "davits", "dawdle", "dawned", "daybed", "dazing", "dazzle",
01517     "deacon", "deaden", "deader", "deadly", "deafen", "deafer",
01518     "dealer", "deaned", "dearer", "dearly", "dearth", "deaths",
01519     "deaves", "debark", "debars", "debase", "debate", "debits",
01520     "debris", "debtor", "debugs", "debunk", "debuts", "decade",
01521     "decaff", "decafs", "decals", "decamp", "decant", "decays",
01522     "deceit", "decent", "decide", "decked", "decode", "decors",
01523     "decoys", "decree", "deduce", "deduct", "deeded", "deejay",
01524     "deemed", "deepen", "deeper", "deeply", "deface", "defame",
01525     "defeat", "defect", "defend", "defers", "defied", "defies",
01526     "defile", "define", "defogs", "deform", "defray", "defter",
01527     "deftly", "defuse", "degree", "deiced", "deicer", "deices",
01528     "deigns", "deject", "delays", "delete", "deltas", "delude",
01529     "deluge", "deluxe", "delved", "delves", "demand", "demean",
01530     "demise", "demist", "demobs", "demoed", "demons", "demote",
01531     "demure", "demurs", "denial", "denied", "denier", "denies",
01532     "denims", "denote", "denser", "dental", "dented", "dentin",
01533     "denude", "depart", "depend", "depict", "deploy", "deport",
01534     "depose", "depots", "depths", "depute", "deputy", "derail",
01535     "deride", "derive", "dermis", "descry", "desert", "design",
01536     "desire", "desist", "despot", "detach", "detail", "detain",
01537     "detect", "deters", "detest", "detour", "deuced", "deuces",
01538     "device", "devils", "devise", "devoid", "devote", "devour",
01539     "devout", "dewier", "dewlap", "dhotis", "diadem", "diaper",
01540     "diatom", "dibble", "dicier", "dicing", "dicker", "dickey",
01541     "dictum", "diddle", "diddly", "dieing", "diesel", "dieted",
01542     "dieter", "differ", "digest", "digger", "digits", "diktat",
01543     "dilate", "dildos", "dilled", "dilute", "dimmed", "dimmer",
01544     "dimple", "dimwit", "dinars", "diners", "dinged", "dinghy",
01545     "dining", "dinned", "dinner", "diodes", "dioxin", "dipole",
01546     "dipped", "dipper", "dipsos", "direct", "direst", "dirges",
01547     "disarm", "disbar", "discos", "discus", "dished", "dishes",
01548     "dismal", "dismay", "disown", "dispel", "dissed", "disses",
01549     "disuse", "dither", "dittos", "divans", "divers", "divert",
01550     "divest", "divide", "divine", "diving", "divots", "doable",
01551     "dobbed", "docent", "docile", "docked", "docker", "docket",
01552     "doctor", "dodder", "doddle", "dodged", "dodgem", "dodger",
01553     "dodges", "doffed", "dogged", "dogies", "dogleg", "dogmas",
01554     "doings", "doling", "dollar", "dolled", "dollop", "dolmen",
01555     "domain", "doming", "domino", "donate", "donkey", "donned",
01556     "donors", "doodad", "doodah", "doodle", "doomed", "doored",
01557     "dopier", "doping", "dories", "dormer", "dorsal", "dosage",
01558     "dosing", "dossed", "dosser", "dotage", "doting", "dotted",
01559     "double", "doubly", "doubts", "douche", "doughy", "dourer",
01560     "dourly", "doused", "douses", "dovish", "dowels", "downed",
01561     "downer", "dowsed", "dowser", "dowses", "doyens", "dozens",
01562     "dozier", "dozily", "dozing", "drably", "dragon", "drains",
01563     "drakes", "dramas", "draped", "draper", "drapes", "drawer",
01564     "drawls", "dreads", "dreams", "dreamy", "dreary", "dredge",
01565     "drench", "dressy", "driers", "driest", "drifts", "drills",
01566     "drinks", "drippy", "drivel", "driven", "driver", "drives",
01567     "drolly", "droned", "drones", "drools", "droops", "droopy",
01568     "dropsy", "drover", "droves", "drowns", "drowse", "drowsy",
01569     "drudge", "druids", "drunks", "dryads", "dryers", "drying",
01570     "dubbed", "dubbin", "ducats", "ducked", "duding", "duffed",
01571     "duffer", "dugout", "duking", "dulcet", "dulled", "duller",
01572     "dumbed", "dumber", "dumbly", "dumbos", "dumped", "dumper",
01573     "dunces", "dunged", "dunked", "dunned", "dunner", "duping",
01574     "duplex", "duress", "during", "dusted", "duster", "duties",
01575     "duvets", "dwarfs", "dweebs", "dwells", "dyadic", "dyeing",
01576     "dynamo", "eagles", "eaglet", "earful", "earned", "earner",
01577     "earths", "earthy", "earwax", "earwig", "easels", "easier",
01578     "easies", "easily", "easing", "eaters", "eatery", "eating",
01579     "ebbing", "echoed", "echoes", "eczema", "eddied", "eddies",
01580     "edgier", "edgily", "edging", "edible", "edicts", "edited",
01581     "editor", "eerier", "eerily", "efface", "effect", "effete",
01582     "effigy", "effing", "effort", "eggcup", "egging", "eggnog",
01583     "egoism", "egoist", "egress", "egrets", "eiders", "eighth",
01584     "eights", "eighty", "either", "ejects", "elapse", "elated",
01585     "elates", "elbows", "elders", "eldest", "elects", "eleven",
01586     "elfish", "elicit", "elided", "elides", "elites", "elixir",
01587     "eloped", "elopes", "eluded", "eludes", "emails", "embalm",
01588     "embark", "embeds", "embers", "emblem", "embody", "emboss",
01589     "embryo", "emceed", "emcees", "emends", "emerge", "emetic",
01590     "emoted", "emotes", "empire", "employ", "enable", "enacts",
01591     "enamel", "encamp", "encase", "encode", "encore", "endear",
01592     "ending", "endive", "endows", "endued", "endues", "endure",
01593     "enemas", "energy", "enfold", "engage", "engine", "engulf",
01594     "enigma", "enjoin", "enjoys", "enlist", "enmesh", "enmity",
01595     "enough", "enrage", "enrich", "ensign", "ensued", "ensues",
01596     "ensure", "entail", "enters", "entice", "entire", "entity",
01597     "entomb", "entrap", "envied", "envies", "envoys", "enzyme",
01598     "epochs", "equals", "equate", "equine", "equips", "equity",
01599     "erased", "eraser", "erases", "erects", "ermine", "eroded",
01600     "erodes", "erotic", "errand", "errant", "errata", "erring",
01601     "errors", "ersatz", "erupts", "escape", "eschew", "escort",
01602     "escrow", "escudo", "espied", "espies", "essays", "estate",
01603     "esteem", "esters", "etched", "etcher", "etches", "ethics",
01604     "ethnic", "eulogy", "eunuch", "eureka", "evaded", "evades",
01605     "evened", "evener", "evenly", "events", "evicts", "evilly",
01606     "evince", "evoked", "evokes", "evolve", "exacts", "exalts",
01607     "exceed", "excels", "except", "excess", "excise", "excite",
01608     "excuse", "exempt", "exerts", "exeunt", "exhale", "exhort",
01609     "exhume", "exiled", "exiles", "exists", "exited", "exodus",
01610     "exotic", "expand", "expats", "expect", "expels", "expend",
01611     "expert", "expire", "expiry", "export", "expose", "extant",
01612     "extend", "extent", "extols", "extort", "extras", "exuded",
01613     "exudes", "exults", "eyeful", "eyelet", "eyelid", "fabled",
01614     "fables", "fabric", "facade", "facets", "facial", "facile",
01615     "facing", "factor", "fading", "faffed", "fagged", "failed",
01616     "fained", "fainer", "faints", "fairer", "fairly", "faiths",
01617     "fakers", "faking", "fakirs", "falcon", "fallen", "fallow",
01618     "falser", "falsie", "falter", "family", "famine", "famish",
01619     "famous", "fanned", "farces", "farina", "faring", "farmed",
01620     "farmer", "farrow", "farted", "fascia", "fasted", "fasten",
01621     "faster", "father", "fathom", "fating", "fatsos", "fatten",
01622     "fatter", "fatwas", "faucet", "faults", "faulty", "faunas",
01623     "fawned", "faxing", "fazing", "fealty", "feared", "feasts",
01624     "fecund", "fedora", "feeble", "feebly", "feeder", "feeler",
01625     "feigns", "feints", "feisty", "feline", "fellas", "felled",
01626     "feller", "fellow", "felons", "felony", "felted", "female",
01627     "femurs", "fenced", "fencer", "fences", "fended", "fender",
01628     "fennel", "ferret", "ferric", "fervid", "fessed", "fesses",
01629     "festal", "fester", "feting", "fetish", "fetter", "fettle",
01630     "feudal", "feuded", "fevers", "fewest", "fezzes", "fiasco",
01631     "fibbed", "fibber", "fibula", "fiches", "fickle", "fiddle",
01632     "fiddly", "fidget", "fields", "fiends", "fierce", "fiesta",
01633     "fifths", "figged", "fights", "figure", "filial", "filing",
01634     "filled", "filler", "fillet", "fillip", "filmed", "filter",
01635     "filthy", "finale", "finals", "finder", "finely", "finery",
01636     "finest", "finger", "fining", "finish", "finite", "finked",
01637     "finner", "firing", "firmed", "firmer", "firmly", "firsts",
01638     "firths", "fiscal", "fished", "fisher", "fishes", "fitful",
01639     "fitted", "fitter", "fivers", "fixate", "fixers", "fixing",
01640     "fixity", "fizzed", "fizzes", "fizzle", "fjords", "flabby",
01641     "flacks", "flagon", "flails", "flairs", "flaked", "flakes",
01642     "flamed", "flames", "flange", "flanks", "flared", "flares",
01643     "flashy", "flasks", "flatly", "flaunt", "flawed", "flaxen",
01644     "flayed", "flecks", "fleece", "fleecy", "fleets", "fleshy",
01645     "flexed", "flexes", "flicks", "fliers", "fliest", "flight",
01646     "flimsy", "flinch", "flings", "flints", "flinty", "flirts",
01647     "flirty", "floats", "flocks", "floods", "floors", "floozy",
01648     "floppy", "floral", "floras", "floret", "florid", "florin",
01649     "flours", "floury", "flouts", "flowed", "flower", "fluent",
01650     "fluffs", "fluffy", "fluids", "fluked", "flukes", "flumes",
01651     "flunks", "flunky", "flurry", "fluted", "flutes", "fluxed",
01652     "fluxes", "flybys", "flying", "foaled", "foamed", "fobbed",
01653     "fodder", "foetid", "fogged", "foible", "foiled", "foists",
01654     "folded", "folder", "folios", "folksy", "follow", "foment",
01655     "fonded", "fonder", "fondle", "fondly", "fondue", "foodie",
01656     "fooled", "footed", "footer", "footie", "fopped", "forage",
01657     "forays", "forbid", "forced", "forces", "forded", "forest",
01658     "forged", "forger", "forges", "forget", "forgot", "forked",
01659     "formal", "format", "formed", "former", "fortes", "forums",
01660     "fossil", "foster", "fought", "fouled", "fouler", "foully",
01661     "founds", "founts", "fourth", "fowled", "foxier", "foxing",
01662     "foyers", "fracas", "framed", "framer", "frames", "francs",
01663     "franks", "frauds", "frayed", "freaks", "freaky", "freely",
01664     "freest", "freeze", "french", "frenzy", "fresco", "friars",
01665     "friary", "fridge", "friend", "frieze", "fright", "frigid",
01666     "frills", "frilly", "fringe", "frisks", "frisky", "frizzy",
01667     "frocks", "frolic", "fronds", "fronts", "frosts", "frosty",
01668     "froths", "frothy", "frowns", "frowzy", "frozen", "frugal",
01669     "fruits", "fruity", "frumps", "frumpy", "fryers", "frying",
01670     "fucked", "fucker", "fuddle", "fudged", "fudges", "fugues",
01671     "fulled", "fuller", "fumble", "fuming", "funded", "fungal",
01672     "fungus", "funked", "funnel", "funner", "furies", "furled",
01673     "furore", "furors", "furred", "furrow", "fusing", "fusion",
01674     "fussed", "fusses", "futile", "futons", "future", "futzed",
01675     "futzes", "fuzzed", "fuzzes", "gabbed", "gabble", "gabled",
01676     "gables", "gadded", "gadfly", "gadget", "gaffed", "gaffer",
01677     "gaffes", "gagged", "gaggle", "gaiety", "gained", "gainer",
01678     "gaiter", "galaxy", "galena", "galled", "galley", "gallon",
01679     "gallop", "galore", "galosh", "gambit", "gamble", "gambol",
01680     "gamely", "gamest", "gamete", "gamier", "gamine", "gaming",
01681     "gamins", "gammas", "gammon", "gamuts", "gander", "ganged",
01682     "gannet", "gantry", "gaoled", "gaoler", "gaping", "garage",
01683     "garbed", "garble", "garden", "gargle", "garish", "garlic",
01684     "garner", "garnet", "garret", "garter", "gasbag", "gashed",
01685     "gashes", "gasket", "gasman", "gasmen", "gasped", "gassed",
01686     "gateau", "gather", "gating", "gators", "gauche", "gaucho",
01687     "gaunts", "gavels", "gawked", "gawped", "gayest", "gazebo",
01688     "gazers", "gazing", "gazump", "geared", "geckos", "geddit",
01689     "geeing", "geezer", "geisha", "gelded", "gelled", "gender",
01690     "genera", "genial", "genies", "genius", "genned", "genome",
01691     "genres", "gentle", "gently", "gentry", "geodes", "gerbil",
01692     "gerund", "gewgaw", "geyser", "ghetto", "ghosts", "ghouls",
01693     "giants", "gibber", "gibbet", "gibbon", "gibing", "giblet",
01694     "gifted", "gigged", "giggle", "giggly", "gigolo", "gilded",
01695     "gillie", "gimlet", "ginger", "ginkgo", "ginned", "girded",
01696     "girder", "girdle", "girlie", "girted", "girths", "givens",
01697     "givers", "giving", "glades", "gladly", "glance", "glands",
01698     "glared", "glares", "glassy", "glazed", "glazes", "gleams",
01699     "gleans", "glibly", "glided", "glider", "glides", "glints",
01700     "glitch", "glitzy", "gloats", "global", "globed", "globes",
01701     "gloomy", "glossy", "gloved", "gloves", "glowed", "glower",
01702     "gluier", "gluing", "glumly", "gluten", "gnarls", "gnarly",
01703     "gnawed", "gneiss", "gnomes", "gnomic", "goaded", "goaled",
01704     "goalie", "goatee", "gobbed", "gobbet", "gobble", "goblet",
01705     "goblin", "godson", "gofers", "goggle", "goings", "golden",
01706     "golder", "golfed", "golfer", "gonads", "goners", "gonged",
01707     "goober", "goodly", "goofed", "googly", "gooier", "goosed",
01708     "gooses", "gopher", "gorged", "gorges", "gorgon", "gorier",
01709     "goring", "goshes", "gospel", "gossip", "gotcha", "gotten",
01710     "gouged", "gouger", "gouges", "gourds", "govern", "gowned",
01711     "grabby", "graced", "graces", "graded", "grader", "grades",
01712     "grafts", "grains", "grainy", "gramme", "grands", "grange",
01713     "granny", "grants", "graped", "grapes", "graphs", "grasps",
01714     "grassy", "grated", "grater", "grates", "gratin", "gratis",
01715     "graved", "gravel", "graven", "graver", "graves", "grazed",
01716     "grazes", "grease", "greasy", "greats", "grebes", "greedy",
01717     "greens", "greets", "griefs", "grieve", "grille", "grills",
01718     "grimed", "grimes", "grimly", "grinds", "gringo", "griped",
01719     "gripes", "grippe", "grisly", "gritty", "groans", "grocer",
01720     "groggy", "groins", "grooms", "groove", "groovy", "groped",
01721     "gropes", "grotto", "grotty", "grouch", "ground", "groups",
01722     "grouse", "grouts", "grovel", "groves", "grower", "growls",
01723     "growth", "groyne", "grubby", "grudge", "gruels", "gruffs",
01724     "grumps", "grumpy", "grunge", "grungy", "grunts", "guards",
01725     "guavas", "guests", "guffaw", "guided", "guides", "guilds",
01726     "guiled", "guiles", "guilty", "guinea", "guises", "guitar",
01727     "gulags", "gulled", "gullet", "gulped", "gumbos", "gummed",
01728     "gunman", "gunmen", "gunned", "gunner", "gurgle", "gurney",
01729     "gushed", "gusher", "gushes", "gusset", "gusted", "gutted",
01730     "gutter", "guvnor", "guying", "guzzle", "gypped", "gypsum",
01731     "gyrate", "habits", "hacked", "hacker", "hackle", "hading",
01732     "hagged", "haggis", "haggle", "hailed", "hairdo", "haired",
01733     "hajjes", "halest", "haling", "hallos", "hallow", "haloed",
01734     "halted", "halter", "halved", "halves", "hamlet", "hammed",
01735     "hammer", "hamper", "handed", "handle", "hangar", "hanged",
01736     "hanger", "hanker", "hankie", "hansom", "happen", "harass",
01737     "harden", "harder", "hardly", "harems", "haring", "harked",
01738     "harlot", "harmed", "harped", "harrow", "hashed", "hashes",
01739     "hassle", "hasted", "hasten", "hastes", "hatbox", "haters",
01740     "hating", "hatpin", "hatred", "hatted", "hatter", "hauled",
01741     "hauler", "haunch", "haunts", "havens", "having", "hawing",
01742     "hawked", "hawker", "hawser", "haying", "haymow", "hazard",
01743     "hazels", "hazier", "hazily", "hazing", "headed", "header",
01744     "healed", "healer", "health", "heaped", "hearer", "hearse",
01745     "hearth", "hearts", "hearty", "heated", "heater", "heaths",
01746     "heaved", "heaven", "heaves", "heckle", "hectic", "hector",
01747     "hedged", "hedges", "heeded", "heehaw", "heeled", "hefted",
01748     "heifer", "height", "heists", "helium", "hellos", "helmet",
01749     "helots", "helped", "helper", "hemmed", "hempen", "hences",
01750     "hennas", "hepper", "herald", "herbal", "herded", "hereby",
01751     "herein", "hereof", "heresy", "hereto", "hermit", "hernia",
01752     "heroes", "heroic", "heroin", "herons", "herpes", "hetero",
01753     "hewers", "hewing", "hexing", "heyday", "hiatus", "hickey",
01754     "hidden", "hiding", "hieing", "higher", "highly", "hijack",
01755     "hikers", "hiking", "hinder", "hinged", "hinges", "hinted",
01756     "hipped", "hipper", "hippie", "hippos", "hiring", "hissed",
01757     "hisses", "hither", "hitter", "hiving", "hoards", "hoarse",
01758     "hoaxed", "hoaxer", "hoaxes", "hobbit", "hobble", "hobnob",
01759     "hoboed", "hocked", "hockey", "hoeing", "hogans", "hogged",
01760     "hoicks", "hoists", "hokier", "holder", "holdup", "holier",
01761     "holing", "holism", "holler", "hollow", "homage", "homely",
01762     "homers", "homeys", "homier", "homily", "homing", "hominy",
01763     "honcho", "honest", "honeys", "honing", "honked", "hooded",
01764     "hoodoo", "hoofed", "hoofer", "hookah", "hooked", "hooker",
01765     "hookup", "hooped", "hoopla", "hooray", "hooted", "hooter",
01766     "hoover", "hooves", "hoping", "hopped", "hopper", "horded",
01767     "hordes", "horned", "hornet", "horrid", "horror", "horsed",
01768     "horses", "horsey", "hosing", "hosted", "hostel", "hotbed",
01769     "hotels", "hotpot", "hotted", "hotter", "hounds", "hourly",
01770     "housed", "houses", "hovels", "hovers", "howdah", "howled",
01771     "howler", "hubbub", "hubcap", "hubris", "huddle", "huffed",
01772     "hugely", "hugest", "hugged", "hugger", "hulaed", "hulled",
01773     "hullos", "humane", "humans", "humble", "humbly", "humbug",
01774     "humeri", "hummed", "hummus", "humped", "hunger", "hungry",
01775     "hunker", "hunted", "hunter", "hurdle", "hurled", "hurler",
01776     "hurtle", "hushed", "hushes", "husked", "husker", "hussar",
01777     "hustle", "hybrid", "hydras", "hyenas", "hymens", "hymnal",
01778     "hymned", "hyphen", "hyping", "iambic", "ibexes", "ibises",
01779     "icebox", "icecap", "icicle", "iciest", "icings", "ickier",
01780     "iconic", "ideals", "idiocy", "idioms", "idiots", "idlers",
01781     "idlest", "idling", "idylls", "iffier", "igloos", "ignite",
01782     "ignore", "iguana", "imaged", "images", "imbibe", "imbued",
01783     "imbues", "immune", "immure", "impact", "impair", "impala",
01784     "impale", "impart", "impede", "impels", "impend", "impish",
01785     "import", "impose", "impugn", "impure", "impute", "inaner",
01786     "inborn", "inbred", "incest", "inched", "inches", "incise",
01787     "incite", "income", "incurs", "indeed", "indent", "indict",
01788     "indies", "indigo", "indoor", "induce", "induct", "inerts",
01789     "infamy", "infant", "infect", "infers", "infest", "infill",
01790     "infirm", "inflow", "influx", "inform", "infuse", "ingest",
01791     "ingots", "inhale", "inhere", "inject", "injure", "injury",
01792     "inkier", "inking", "inlaid", "inland", "inlays", "inlets",
01793     "inmate", "inmost", "innate", "inners", "inning", "inputs",
01794     "inroad", "insane", "inseam", "insect", "insert", "insets",
01795     "inside", "insist", "insole", "instep", "insult", "insure",
01796     "intact", "intake", "intend", "intent", "intern", "inters",
01797     "intone", "intros", "intuit", "inured", "inures", "invade",
01798     "invent", "invert", "invest", "invite", "invoke", "inward",
01799     "iodine", "ipecac", "irater", "irises", "irking", "ironed",
01800     "ironic", "island", "islets", "isobar", "issued", "issues",
01801     "italic", "itched", "itches", "itself", "jabbed", "jabber",
01802     "jabots", "jackal", "jacked", "jacket", "jading", "jagged",
01803     "jaguar", "jailed", "jailer", "jalopy", "jambed", "jammed",
01804     "jangle", "japans", "japing", "jargon", "jarred", "jasper",
01805     "jaunts", "jaunty", "jawing", "jazzed", "jazzes", "jeered",
01806     "jejune", "jelled", "jerked", "jerkin", "jersey", "jested",
01807     "jester", "jetsam", "jetted", "jewels", "jibbed", "jigged",
01808     "jigger", "jiggle", "jigsaw", "jihads", "jilted", "jingle",
01809     "jinked", "jinxed", "jinxes", "jitney", "jiving", "jobbed",
01810     "jobber", "jocked", "jockey", "jocose", "jocund", "jogged",
01811     "jogger", "joggle", "johnny", "joined", "joiner", "joints",
01812     "joists", "jojoba", "jokers", "jokier", "joking", "jolted",
01813     "joshed", "joshes", "jostle", "jotted", "jotter", "joules",
01814     "jounce", "journo", "jousts", "jovial", "joyful", "joying",
01815     "joyous", "judder", "judged", "judges", "jugful", "jugged",
01816     "juggle", "juiced", "juicer", "juices", "jujube", "juleps",
01817     "jumble", "jumbos", "jumped", "jumper", "juncos", "jungle",
01818     "junior", "junked", "junker", "junket", "junkie", "juntas",
01819     "juries", "jurist", "jurors", "juster", "justly", "jutted",
01820     "kabobs", "kaboom", "kabuki", "kaolin", "karate", "karats",
01821     "kayaks", "kazoos", "kebabs", "keeled", "keened", "keener",
01822     "keenly", "keeper", "kegged", "kelvin", "kenned", "kennel",
01823     "kernel", "kettle", "keying", "keypad", "khakis", "kibitz",
01824     "kibosh", "kicked", "kicker", "kidded", "kidder", "kiddie",
01825     "kiddos", "kidnap", "kidney", "killed", "killer", "kilned",
01826     "kilted", "kilter", "kimono", "kinder", "kindle", "kindly",
01827     "kingly", "kinked", "kiosks", "kipped", "kipper", "kirked",
01828     "kirsch", "kismet", "kissed", "kisser", "kisses", "kithed",
01829     "kiting", "kitsch", "kitted", "kitten", "klaxon", "klutzy",
01830     "knacks", "knaves", "kneads", "kneels", "knells", "knifed",
01831     "knifes", "knight", "knives", "knobby", "knocks", "knolls",
01832     "knotty", "koalas", "kooked", "kopeck", "kosher", "kowtow",
01833     "kroner", "kronor", "kudzus", "kvetch", "labels", "labial",
01834     "labium", "lacier", "lacing", "lacked", "lackey", "lactic",
01835     "lacuna", "ladder", "laddie", "ladies", "lading", "ladled",
01836     "ladles", "lagers", "lagged", "lagoon", "lairds", "laking",
01837     "lambda", "lambed", "lamely", "lament", "lamest", "laming",
01838     "lammed", "lammer", "lanced", "lancer", "lances", "lancet",
01839     "landed", "lander", "lanker", "lapdog", "lapels", "lapped",
01840     "lapsed", "lapses", "laptop", "larded", "larder", "larger",
01841     "larges", "largos", "lariat", "larked", "larvae", "larval",
01842     "larynx", "lasers", "lashed", "lashes", "lasses", "lassie",
01843     "lassos", "lasted", "lastly", "lately", "latent", "latest",
01844     "lathed", "lather", "lathes", "latter", "lattes", "lauded",
01845     "laughs", "launch", "laurel", "lavish", "lawful", "lawman",
01846     "lawmen", "lawyer", "laxest", "laxity", "layers", "laying",
01847     "layman", "laymen", "layoff", "layout", "lazied", "lazier",
01848     "lazies", "lazily", "lazing", "leaded", "leaden", "leader",
01849     "leafed", "league", "leaked", "leaned", "leaner", "leaped",
01850     "learns", "leased", "leases", "leaved", "leaven", "leaver",
01851     "leaves", "leched", "lecher", "leches", "ledger", "ledges",
01852     "leered", "leeway", "lefter", "legacy", "legals", "legate",
01853     "legato", "legend", "legged", "legion", "legman", "legmen",
01854     "legume", "lemmas", "lemons", "lemony", "lemurs", "lender",
01855     "length", "lenses", "lentil", "lepers", "lesion", "lessee",
01856     "lessen", "lesser", "lesson", "lessor", "lethal", "letter",
01857     "letups", "levees", "levels", "levers", "levied", "levies",
01858     "levity", "lewder", "lewdly", "liable", "liaise", "libbed",
01859     "libels", "libido", "lichen", "licked", "lidded", "liefer",
01860     "lieges", "lifers", "lifted", "lights", "likely", "likens",
01861     "likest", "liking", "lilacs", "lilies", "lilted", "limber",
01862     "limbos", "limeys", "limier", "liming", "limits", "limned",
01863     "limped", "limper", "limpet", "limpid", "limply", "linage",
01864     "linden", "lineal", "linear", "linens", "liners", "lineup",
01865     "linger", "lining", "linked", "linker", "linkup", "linnet",
01866     "lintel", "lipids", "liquid", "liquor", "lisped", "listed",
01867     "listen", "litany", "litchi", "lither", "litmus", "litter",
01868     "little", "lively", "livens", "livers", "livery", "livest",
01869     "living", "lizard", "llamas", "llanos", "loaded", "loader",
01870     "loafed", "loafer", "loaned", "loaner", "loathe", "loaves",
01871     "lobbed", "lobing", "locale", "locals", "locate", "locked",
01872     "locker", "locket", "lockup", "locums", "locust", "lodged",
01873     "lodger", "lodges", "lofted", "logged", "logger", "logjam",
01874     "loiter", "lolled", "lollop", "lonely", "loners", "longed",
01875     "longer", "loofah", "looked", "looker", "loomed", "looped",
01876     "loosed", "loosen", "looser", "looses", "looted", "looter",
01877     "loping", "lopped", "lorded", "lordly", "losers", "losing",
01878     "losses", "lotion", "louche", "louder", "loudly", "loughs",
01879     "lounge", "loured", "loused", "louses", "lovely", "lovers",
01880     "loveys", "loving", "lowers", "lowest", "lowing", "lowish",
01881     "loxing", "lubber", "lubing", "lucked", "lugged", "lulled",
01882     "lumbar", "lumber", "lummox", "lumped", "lumpen", "lunacy",
01883     "lunged", "lunges", "luring", "lurked", "lusher", "lushes",
01884     "lusted", "luvvie", "luxury", "lyceum", "lynxes", "lyrics",
01885     "macaws", "macing", "macron", "macros", "madame", "madams",
01886     "madcap", "madden", "madder", "madman", "madmen", "madras",
01887     "mafias", "maggot", "magics", "magnet", "magnum", "magpie",
01888     "maiden", "mailed", "mailer", "maimed", "mainly", "maizes",
01889     "majors", "makers", "makeup", "making", "malady", "malice",
01890     "malign", "malled", "mallet", "mallow", "malted", "mambas",
01891     "mambos", "mammal", "mammon", "manage", "manful", "manged",
01892     "manger", "manges", "mangle", "maniac", "manias", "manics",
01893     "manila", "manioc", "manned", "manner", "manors", "manses",
01894     "mantel", "mantis", "mantle", "mantra", "manual", "manure",
01895     "maples", "mapped", "mapper", "maraca", "maraud", "marble",
01896     "margin", "marina", "marine", "marked", "marker", "market",
01897     "markup", "marlin", "marmot", "maroon", "marque", "marred",
01898     "marrow", "marshy", "marted", "marten", "martin", "martyr",
01899     "marvel", "mascot", "mashed", "masher", "mashes", "masked",
01900     "masons", "masque", "massed", "masses", "massif", "master",
01901     "mastic", "mateys", "mating", "matins", "matrix", "matron",
01902     "matted", "matter", "mattes", "mature", "matzoh", "matzos",
01903     "matzot", "mauled", "mavens", "mawing", "maxims", "maxing",
01904     "maybes", "mayday", "mayfly", "mayhem", "mayors", "meadow",
01905     "mealed", "meaner", "meanie", "meanly", "measly", "meccas",
01906     "medals", "meddle", "medial", "median", "medias", "medico",
01907     "medics", "medium", "medley", "meeker", "meekly", "meeter",
01908     "melded", "mellow", "melody", "melons", "melted", "member",
01909     "memoir", "memory", "menace", "menage", "mended", "mender",
01910     "menial", "menses", "mental", "mentor", "merely", "merest",
01911     "merged", "merger", "merges", "mering", "merino", "merits",
01912     "merman", "mermen", "mescal", "meshed", "meshes", "messed",
01913     "messes", "metals", "meteor", "method", "meting", "metric",
01914     "metros", "mettle", "mewing", "mewled", "mezzos", "miasma",
01915     "mickey", "micron", "micros", "midair", "midday", "middle",
01916     "midges", "midget", "midway", "miffed", "mighty", "miking",
01917     "milder", "mildew", "mildly", "milers", "milieu", "milked",
01918     "milker", "milled", "miller", "millet", "mimics", "miming",
01919     "mimosa", "minced", "mincer", "minces", "minded", "minder",
01920     "miners", "mingle", "minims", "mining", "minion", "minnow",
01921     "minors", "minted", "minuet", "minute", "minxes", "mirage",
01922     "miring", "mirror", "miscue", "misdid", "misers", "misery",
01923     "misfit", "mishap", "mishit", "mislay", "misled", "missal",
01924     "missed", "misses", "missus", "misted", "mister", "misuse",
01925     "mitten", "mixers", "mixing", "mizzen", "moaned", "moaner",
01926     "moated", "mobbed", "mobile", "mocked", "mocker", "modals",
01927     "models", "modems", "modern", "modest", "modify", "modish",
01928     "module", "moggie", "moguls", "mohair", "moiety", "moires",
01929     "molars", "molder", "molest", "molted", "molten", "moment",
01930     "mommas", "moneys", "monger", "mongol", "monies", "monkey",
01931     "months", "mooing", "mooned", "moored", "mooted", "mooter",
01932     "mopeds", "moping", "mopped", "moppet", "morale", "morals",
01933     "morass", "morays", "morbid", "morgue", "morned", "morons",
01934     "morose", "morphs", "morrow", "morsel", "mortal", "mortar",
01935     "mosaic", "moseys", "moshed", "moshes", "mosque", "mossed",
01936     "mosses", "mostly", "motels", "motets", "mother", "motifs",
01937     "motile", "motion", "motive", "motley", "motors", "mottle",
01938     "moults", "mounds", "mounts", "mourns", "moused", "mouser",
01939     "mouses", "mousse", "mouths", "mouthy", "movers", "movies",
01940     "moving", "mowers", "mowing", "mucked", "mucous", "muddle",
01941     "muesli", "muffed", "muffin", "muffle", "muftis", "mugged",
01942     "mugger", "mukluk", "muling", "mulish", "mullah", "mulled",
01943     "mullet", "mumble", "mummer", "murals", "murder", "murmur",
01944     "muscat", "muscle", "muscly", "museum", "mushed", "musher",
01945     "mushes", "musics", "musing", "musked", "musket", "muslin",
01946     "mussed", "mussel", "musses", "muster", "mutant", "mutate",
01947     "mutely", "mutest", "muting", "mutiny", "mutter", "mutton",
01948     "mutual", "muumuu", "muzzle", "myopia", "myopic", "myriad",
01949     "myrtle", "myself", "mystic", "mythic", "nabbed", "nabobs",
01950     "nachos", "nadirs", "naffer", "nagged", "naiads", "nailed",
01951     "naiver", "naives", "namely", "naming", "napalm", "napkin",
01952     "napped", "narced", "narrow", "nasals", "nation", "native",
01953     "natter", "nature", "nausea", "navels", "navies", "nearby",
01954     "neared", "nearer", "nearly", "neaten", "neater", "neatly",
01955     "nebula", "necked", "nectar", "needed", "needle", "negate",
01956     "neighs", "nephew", "nerved", "nerves", "nested", "nestle",
01957     "nether", "netted", "nettle", "neural", "neuron", "neuter",
01958     "newbie", "newels", "newest", "newing", "newsed", "newses",
01959     "newton", "niacin", "nibbed", "nibble", "nicely", "nicest",
01960     "nicety", "niches", "nicked", "nickel", "nieces", "nigger",
01961     "niggle", "nigher", "nights", "nilled", "nimble", "nimbly",
01962     "nimbus", "ninety", "ninjas", "ninths", "nipped", "nipper",
01963     "nipple", "nitwit", "nixing", "nobble", "nobler", "nobles",
01964     "nobody", "nodded", "noddle", "nodule", "noggin", "noised",
01965     "noises", "nomads", "noncom", "nonfat", "noodle", "nookie",
01966     "nooned", "nooses", "normal", "normed", "noshed", "noshes",
01967     "nosing", "notary", "notice", "notify", "noting", "notion",
01968     "nougat", "novels", "novice", "noways", "nowise", "nozzle",
01969     "nuance", "nubile", "nuclei", "nudest", "nudged", "nudges",
01970     "nudism", "nudist", "nudity", "nugget", "nuking", "numbed",
01971     "number", "numbly", "nuncio", "nursed", "nurses", "nutmeg",
01972     "nutria", "nutted", "nutter", "nuzzle", "nylons", "nympho",
01973     "nymphs", "oafish", "oaring", "obeyed", "object", "oblate",
01974     "oblige", "oblong", "oboist", "obsess", "obtain", "obtuse",
01975     "occult", "occupy", "occurs", "oceans", "ocelot", "ockers",
01976     "octane", "octave", "octets", "ocular", "oddest", "oddity",
01977     "odious", "oeuvre", "offend", "offers", "office", "offing",
01978     "offish", "offset", "oftest", "ogling", "oilcan", "oilier",
01979     "oiling", "oilman", "oilmen", "oinked", "oldens", "oldest",
01980     "oldies", "oldish", "olives", "omegas", "omelet", "onions",
01981     "onrush", "onsets", "onside", "onuses", "onward", "onyxes",
01982     "oodles", "oohing", "oopses", "oozing", "opaque", "opened",
01983     "opener", "openly", "operas", "opiate", "opined", "opines",
01984     "oppose", "optics", "optima", "opting", "option", "opuses",
01985     "oracle", "orally", "orange", "orated", "orates", "orator",
01986     "orbits", "orchid", "ordain", "ordeal", "orders", "ordure",
01987     "organs", "orgasm", "orgies", "orient", "origin", "oriole",
01988     "ormolu", "ornate", "ornery", "orphan", "osiers", "osprey",
01989     "ossify", "ostler", "others", "otiose", "otters", "ounces",
01990     "ousted", "ouster", "outage", "outbid", "outcry", "outdid",
01991     "outers", "outfit", "outfox", "outgun", "outing", "outlaw",
01992     "outlay", "outlet", "output", "outran", "outrun", "outset",
01993     "outwit", "overdo", "overly", "ovoids", "ovules", "owlets",
01994     "owlish", "owners", "owning", "oxbows", "oxcart", "oxford",
01995     "oxides", "oxtail", "oxygen", "oyster", "pacier", "pacify",
01996     "pacing", "packed", "packer", "packet", "padded", "paddle",
01997     "padres", "paeans", "paella", "pagans", "pagers", "paging",
01998     "pagoda", "pained", "paints", "paired", "palace", "palate",
01999     "palest", "paling", "palish", "palled", "pallet", "pallid",
02000     "pallor", "palmed", "paltry", "pampas", "pamper", "panama",
02001     "pandas", "pander", "panels", "panged", "panics", "panned",
02002     "panted", "pantie", "pantos", "pantry", "papacy", "papaws",
02003     "papaya", "papers", "papery", "papist", "papped", "papyri",
02004     "parade", "parcel", "pardon", "parent", "pariah", "paring",
02005     "parish", "parity", "parkas", "parked", "parlay", "parley",
02006     "parody", "parole", "parred", "parrot", "parsec", "parsed",
02007     "parser", "parses", "parson", "parted", "partly", "pashas",
02008     "passed", "passel", "passer", "passes", "passim", "pastas",
02009     "pasted", "pastel", "pastes", "pastor", "pastry", "patchy",
02010     "patent", "paters", "pathos", "patina", "patios", "patois",
02011     "patrol", "patron", "patted", "patter", "paunch", "pauper",
02012     "paused", "pauses", "paving", "pawing", "pawned", "payday",
02013     "payees", "payers", "paying", "payoff", "payola", "payout",
02014     "peaces", "peachy", "peahen", "peaked", "pealed", "peanut",
02015     "pearls", "pearly", "pebble", "pebbly", "pecans", "pecked",
02016     "pecker", "pectin", "pedalo", "pedals", "pedant", "peddle",
02017     "peeing", "peeked", "peeled", "peeler", "peepbo", "peeped",
02018     "peeper", "peered", "peeved", "peeves", "peewee", "peewit",
02019     "pegged", "pellet", "pelmet", "pelted", "pelvic", "pelvis",
02020     "pencil", "pended", "penile", "penned", "pennon", "penury",
02021     "people", "pepped", "pepper", "pepsin", "peptic", "perils",
02022     "period", "perish", "perked", "permed", "permit", "person",
02023     "perter", "pertly", "peruse", "peseta", "pester", "pestle",
02024     "petals", "petard", "peters", "petite", "petrel", "petrol",
02025     "petted", "pewees", "pewter", "peyote", "phalli", "phased",
02026     "phases", "phenom", "phials", "phlegm", "phloem", "phobia",
02027     "phobic", "phoebe", "phoned", "phones", "phonic", "phooey",
02028     "photon", "photos", "phrase", "phylae", "phylum", "physic",
02029     "physio", "pianos", "piazza", "pickax", "picked", "picker",
02030     "picket", "pickle", "pickup", "picnic", "piddle", "pidgin",
02031     "pieced", "pieces", "pieing", "pierce", "piffle", "pigeon",
02032     "pigged", "piglet", "pigpen", "pigsty", "pikers", "piking",
02033     "pilafs", "pileup", "pilfer", "piling", "pillar", "pillow",
02034     "pilots", "pimped", "pimple", "pimply", "pincer", "pinged",
02035     "pining", "pinion", "pinked", "pinker", "pinkie", "pinkos",
02036     "pinned", "pintos", "pinups", "pipers", "piping", "pipits",
02037     "pipped", "pippin", "piqued", "piques", "piracy", "pirate",
02038     "pissed", "pisser", "pisses", "pistes", "pistil", "pistol",
02039     "piston", "pitied", "pities", "pitons", "pittas", "pitted",
02040     "pivots", "pixels", "pixies", "pizazz", "pizzas", "placed",
02041     "placer", "places", "placid", "plague", "plaice", "plaids",
02042     "plains", "plaint", "plaits", "planar", "planed", "planer",
02043     "planes", "planet", "planks", "plants", "plaque", "plasma",
02044     "plated", "platen", "plates", "played", "player", "plazas",
02045     "pleads", "please", "pleats", "plebby", "plebes", "pledge",
02046     "plenty", "plenum", "plexus", "pliant", "pliers", "plight",
02047     "plinth", "plonks", "plover", "plucks", "plucky", "plumbs",
02048     "plumed", "plumes", "plummy", "plumps", "plunge", "plunks",
02049     "plural", "pluses", "plushy", "plying", "pocked", "pocket",
02050     "podded", "podium", "poetic", "poetry", "pogrom", "points",
02051     "pointy", "poised", "poises", "poison", "pokers", "pokier",
02052     "poking", "polars", "police", "policy", "poling", "polios",
02053     "polish", "polite", "polity", "polkas", "polled", "pollen",
02054     "polyps", "pomade", "pommel", "pompom", "ponced", "ponces",
02055     "poncey", "poncho", "ponder", "ponged", "ponied", "ponies",
02056     "poodle", "poohed", "pooing", "pooled", "pooped", "poorer",
02057     "poorly", "popgun", "poplar", "poplin", "poppas", "popped",
02058     "popper", "poppet", "poring", "porker", "porous", "portal",
02059     "ported", "porter", "portly", "posers", "poseur", "poshed",
02060     "posher", "poshes", "posies", "posing", "posits", "posses",
02061     "possum", "postal", "posted", "poster", "postie", "potash",
02062     "potato", "potent", "potful", "potion", "potpie", "potted",
02063     "potter", "pouffe", "pounce", "pounds", "poured", "pouted",
02064     "powder", "powers", "powwow", "poxing", "praise", "prance",
02065     "prangs", "pranks", "prated", "prates", "prawns", "prayed",
02066     "prayer", "preach", "preens", "prefab", "prefer", "prefix",
02067     "prepay", "preppy", "preses", "preset", "presto", "pretax",
02068     "pretty", "prewar", "preyed", "priced", "prices", "pricey",
02069     "pricks", "prided", "prides", "priest", "primal", "primed",
02070     "primer", "primes", "primly", "primps", "prince", "prints",
02071     "prions", "priors", "priory", "prisms", "prison", "prissy",
02072     "privet", "probed", "probes", "profit", "proles", "prolix",
02073     "promos", "prompt", "prongs", "pronto", "proofs", "propel",
02074     "proper", "proses", "proton", "proved", "proves", "prowls",
02075     "prudes", "pruned", "prunes", "prying", "psalms", "pseudo",
02076     "pseuds", "pseudy", "pshaws", "psyche", "psycho", "psychs",
02077     "pubbed", "public", "pucked", "pucker", "puddle", "pueblo",
02078     "puffed", "puffer", "puffin", "puking", "pulled", "puller",
02079     "pullet", "pulley", "pulped", "pulpit", "pulsar", "pulsed",
02080     "pulses", "pumice", "pummel", "pumped", "punchy", "pundit",
02081     "punier", "punish", "punker", "punned", "punnet", "punted",
02082     "punter", "pupate", "pupils", "pupped", "puppet", "purdah",
02083     "pureed", "purees", "purely", "purest", "purged", "purges",
02084     "purify", "puring", "purism", "purist", "purity", "purled",
02085     "purple", "purred", "pursed", "purser", "purses", "pursue",
02086     "purvey", "pushed", "pusher", "pushes", "pusses", "putrid",
02087     "putsch", "putted", "putter", "putzes", "puzzle", "pylons",
02088     "pyrite", "python", "pyxing", "quacks", "quaffs", "quahog",
02089     "quails", "quaint", "quaked", "quakes", "qualms", "quango",
02090     "quanta", "quarks", "quarry", "quarto", "quarts", "quartz",
02091     "quasar", "quaver", "queasy", "queens", "queers", "quells",
02092     "quench", "quests", "queued", "queues", "quiche", "quiets",
02093     "quiffs", "quills", "quilts", "quince", "quints", "quires",
02094     "quirks", "quirky", "quited", "quites", "quiver", "quoits",
02095     "quorum", "quotas", "quoted", "quotes", "qwerty", "rabbis",
02096     "rabbit", "rabble", "rabies", "raceme", "racers", "racial",
02097     "racier", "racily", "racing", "racism", "racist", "racked",
02098     "racket", "radars", "radial", "radios", "radish", "radium",
02099     "radius", "raffia", "raffle", "rafted", "rafter", "ragbag",
02100     "ragged", "raging", "raglan", "ragout", "ragtag", "raided",
02101     "raider", "railed", "rained", "raised", "raises", "raisin",
02102     "rajahs", "raking", "rakish", "ramble", "ramify", "rammed",
02103     "ramrod", "rancid", "random", "ranees", "ranged", "ranger",
02104     "ranges", "ranked", "ranker", "rankle", "ransom", "ranted",
02105     "ranter", "rapids", "rapier", "rapine", "raping", "rapist",
02106     "rapped", "rappel", "rapper", "raptor", "rarefy", "rarely",
02107     "rarest", "raring", "rarity", "rascal", "rasher", "rashes",
02108     "rashly", "rasped", "raster", "ratbag", "rather", "ratify",
02109     "rating", "ration", "ratios", "rattan", "ratted", "rattle",
02110     "ravage", "ravels", "ravens", "ravers", "ravine", "raving",
02111     "ravish", "rawest", "razing", "razors", "razzed", "razzes",
02112     "reacts", "reader", "realer", "really", "realms", "realty",
02113     "reamed", "reamer", "reaped", "reaper", "reared", "rearms",
02114     "reason", "rebate", "rebels", "rebind", "reboot", "reborn",
02115     "rebuff", "rebuke", "rebuts", "recall", "recant", "recaps",
02116     "recast", "recces", "recede", "recent", "recess", "recipe",
02117     "recite", "reckon", "recoil", "recons", "recopy", "record",
02118     "recoup", "rectal", "rector", "rectos", "rectum", "recurs",
02119     "redcap", "redden", "redder", "redeem", "redoes", "redone",
02120     "redraw", "redrew", "reduce", "reefed", "reefer", "reeked",
02121     "reeled", "reeves", "refers", "reffed", "refile", "refill",
02122     "refine", "refits", "reflex", "reform", "refuel", "refuge",
02123     "refund", "refuse", "refute", "regain", "regale", "regals",
02124     "regard", "regent", "reggae", "regime", "region", "regret",
02125     "rehabs", "rehash", "reheat", "rehire", "reigns", "reined",
02126     "reject", "rejigs", "rejoin", "relaid", "relate", "relays",
02127     "relent", "relics", "relied", "relief", "relies", "relish",
02128     "relive", "reload", "remade", "remain", "remake", "remand",
02129     "remark", "remedy", "remind", "remiss", "remits", "remold",
02130     "remote", "remove", "rename", "render", "renege", "renews",
02131     "rennet", "renown", "rental", "rented", "renter", "reopen",
02132     "repaid", "repair", "repast", "repays", "repeal", "repeat",
02133     "repels", "repent", "replay", "report", "repose", "repute",
02134     "reread", "reruns", "resale", "rescue", "resell", "resend",
02135     "resent", "resets", "reside", "resign", "resins", "resist",
02136     "resits", "resold", "resort", "rested", "result", "resume",
02137     "retail", "retain", "retake", "retard", "retell", "retina",
02138     "retire", "retold", "retook", "retool", "retort", "retrod",
02139     "return", "retype", "reused", "reuses", "revamp", "reveal",
02140     "revels", "revere", "revert", "review", "revile", "revise",
02141     "revive", "revoke", "revolt", "revues", "revved", "reward",
02142     "rewind", "rewire", "reword", "rework", "rheumy", "rhinos",
02143     "rhymed", "rhymes", "rhythm", "ribald", "ribbed", "ribbon",
02144     "richer", "riches", "richly", "ricing", "ricked", "ridden",
02145     "riddle", "riders", "ridged", "ridges", "riding", "rifest",
02146     "riffed", "riffle", "rifled", "rifles", "rifted", "rigged",
02147     "righto", "rights", "riling", "rilled", "riming", "rimmed",
02148     "rinded", "ringed", "ringer", "rinked", "rinsed", "rinses",
02149     "rioted", "rioter", "ripely", "ripens", "ripest", "riping",
02150     "ripped", "ripper", "ripple", "ripsaw", "risers", "rising",
02151     "risked", "ritual", "rivals", "rivers", "rivets", "roadie",
02152     "roamed", "roamer", "roared", "roasts", "robbed", "robber",
02153     "robing", "robins", "robots", "robust", "rocked", "rocker",
02154     "rocket", "rococo", "rodent", "rodeos", "roding", "rogers",
02155     "rogues", "roiled", "rolled", "roller", "romped", "romper",
02156     "rondos", "roofed", "roofer", "rooked", "rookie", "roomed",
02157     "roomer", "roosts", "rooted", "rooter", "roping", "rosary",
02158     "rosier", "rosily", "rosins", "roster", "rotary", "rotate",
02159     "roting", "rotors", "rotted", "rotten", "rotter", "rotund",
02160     "rouged", "rouges", "roughs", "rounds", "roused", "rouses",
02161     "rousts", "routed", "router", "routes", "rovers", "roving",
02162     "rowans", "rowels", "rowers", "rowing", "royals", "rubbed",
02163     "rubber", "rubble", "rubied", "rubier", "rubies", "rubric",
02164     "ruched", "rucked", "ruckus", "rudder", "rudely", "rudest",
02165     "rueful", "ruffed", "ruffle", "rugged", "rugger", "ruined",
02166     "rulers", "ruling", "rumbas", "rumble", "rummer", "rumped",
02167     "rumple", "rumpus", "runnel", "runner", "runoff", "runway",
02168     "rupees", "rushed", "rushes", "russet", "rusted", "rustic",
02169     "rustle", "rutted", "sabled", "sables", "sachem", "sachet",
02170     "sacked", "sacred", "sadden", "sadder", "saddle", "sadhus",
02171     "sadism", "sadist", "safari", "safely", "safest", "safety",
02172     "sagely", "sagest", "sagged", "sagger", "sahibs", "sailed",
02173     "sailor", "saints", "saiths", "salaam", "salads", "salami",
02174     "salary", "saline", "saliva", "sallow", "salmon", "salons",
02175     "saloon", "salsas", "salted", "salter", "salute", "salved",
02176     "salver", "salves", "salvos", "sambas", "samosa", "sampan",
02177     "sample", "sandal", "sanded", "sander", "sanely", "sanest",
02178     "saning", "sanity", "sapped", "sapper", "sarges", "sarnie",
02179     "sarong", "sashay", "sashes", "sassed", "sasses", "sateen",
02180     "sating", "satins", "satiny", "satire", "satrap", "satyrs",
02181     "sauced", "saucer", "sauces", "saunas", "savage", "savant",
02182     "savers", "saving", "savoys", "sawing", "sawyer", "saying",
02183     "scabby", "scalar", "scalds", "scaled", "scales", "scalps",
02184     "scampi", "scamps", "scants", "scanty", "scarab", "scarce",
02185     "scared", "scares", "scarfs", "scarps", "scatty", "scened",
02186     "scenes", "scenic", "scents", "schema", "scheme", "schism",
02187     "schist", "schizo", "schlep", "school", "schuss", "schwas",
02188     "scions", "scoffs", "scolds", "sconce", "scones", "scoops",
02189     "scoots", "scoped", "scopes", "scorch", "scored", "scorer",
02190     "scores", "scorns", "scotch", "scours", "scouts", "scowls",
02191     "scrams", "scrape", "scraps", "scrawl", "scream", "screed",
02192     "screen", "screes", "screws", "screwy", "scribe", "scrimp",
02193     "scrips", "script", "scroll", "scrota", "scrubs", "scruff",
02194     "scrump", "scrums", "scubas", "scuffs", "sculls", "sculpt",
02195     "scummy", "scurfy", "scurry", "scurvy", "scuzzy", "scythe",
02196     "seabed", "sealed", "sealer", "seaman", "seamed", "seamen",
02197     "search", "seared", "season", "seated", "seaway", "secede",
02198     "second", "secret", "sector", "secure", "sedans", "sedate",
02199     "seduce", "seeded", "seeing", "seeker", "seemed", "seemly",
02200     "seeped", "seesaw", "seethe", "segued", "segues", "seized",
02201     "seizes", "seldom", "select", "seller", "selves", "senate",
02202     "sender", "senile", "senior", "sensed", "senses", "sensor",
02203     "sentry", "sepals", "sepsis", "septet", "septic", "septum",
02204     "sequel", "sequin", "serape", "seraph", "serene", "serest",
02205     "serial", "series", "serifs", "sering", "sermon", "serous",
02206     "serums", "served", "server", "serves", "servos", "sesame",
02207     "settee", "setter", "settle", "setups", "sevens", "severe",
02208     "severs", "sewage", "sewers", "sewing", "sexier", "sexily",
02209     "sexing", "sexism", "sexist", "sexpot", "sextet", "sexton",
02210     "sexual", "shabby", "shacks", "shaded", "shades", "shadow",
02211     "shafts", "shaggy", "shaikh", "shaken", "shaker", "shakes",
02212     "shalom", "shaman", "shamed", "shames", "shandy", "shanks",
02213     "shanty", "shaped", "shapes", "shards", "shared", "shares",
02214     "sharia", "sharks", "sharps", "shaved", "shaver", "shaves",
02215     "shawls", "shears", "sheath", "sheave", "sheers", "sheets",
02216     "sheiks", "sheila", "shekel", "shells", "shelve", "sherry",
02217     "shield", "shifts", "shifty", "shills", "shimmy", "shined",
02218     "shiner", "shines", "shinny", "shires", "shirks", "shirrs",
02219     "shirts", "shirty", "shites", "shitty", "shiver", "shoals",
02220     "shocks", "shoddy", "shogun", "shooed", "shoots", "shored",
02221     "shores", "shorts", "shorty", "should", "shouts", "shoved",
02222     "shovel", "shoves", "showed", "shower", "shrank", "shreds",
02223     "shrewd", "shrews", "shriek", "shrift", "shrike", "shrill",
02224     "shrimp", "shrine", "shrink", "shrive", "shroud", "shrubs",
02225     "shrugs", "shrunk", "shtick", "shucks", "shunts", "shyest",
02226     "shying", "sibyls", "sicked", "sicken", "sicker", "sickie",
02227     "sickle", "sickly", "sickos", "siding", "sidled", "sidles",
02228     "sieges", "sienna", "sierra", "siesta", "sieved", "sieves",
02229     "sifted", "sifter", "sighed", "sights", "signal", "signed",
02230     "signer", "signet", "silage", "silent", "silica", "silken",
02231     "silted", "silver", "simian", "simile", "simmer", "simper",
02232     "simple", "simply", "sinews", "sinewy", "sinful", "singed",
02233     "singer", "singes", "single", "singly", "sinker", "sinned",
02234     "sinner", "sipped", "sirens", "siring", "sirrah", "sirred",
02235     "sister", "sitars", "sitcom", "siting", "sitter", "sixths",
02236     "sizing", "sizzle", "skated", "skater", "skates", "skeins",
02237     "sketch", "skewed", "skewer", "skibob", "skiers", "skiffs",
02238     "skiing", "skills", "skimps", "skimpy", "skinny", "skirts",
02239     "skited", "skived", "skiver", "skives", "skivvy", "skulks",
02240     "skulls", "skunks", "skycap", "skying", "slacks", "slaked",
02241     "slakes", "slalom", "slangy", "slants", "slated", "slates",
02242     "slaved", "slaver", "slaves", "slayed", "slayer", "sleaze",
02243     "sleazy", "sledge", "sleeks", "sleeps", "sleepy", "sleets",
02244     "sleety", "sleeve", "sleigh", "sleuth", "slewed", "sliced",
02245     "slicer", "slices", "slicks", "slided", "slider", "slides",
02246     "sliest", "slight", "slings", "slinks", "slinky", "slippy",
02247     "sliver", "slogan", "sloops", "sloped", "slopes", "sloppy",
02248     "sloths", "slouch", "slough", "sloven", "slowed", "slower",
02249     "slowly", "sludge", "sludgy", "sluice", "sluing", "slummy",
02250     "slumps", "slurps", "slurry", "slushy", "slutty", "smacks",
02251     "smalls", "smarmy", "smarts", "smears", "smells", "smelly",
02252     "smelts", "smiled", "smiles", "smiley", "smirch", "smirks",
02253     "smites", "smiths", "smithy", "smocks", "smoggy", "smoked",
02254     "smoker", "smokes", "smokey", "smooch", "smooth", "smudge",
02255     "smudgy", "smugly", "smutty", "snacks", "snafus", "snails",
02256     "snaked", "snakes", "snappy", "snared", "snares", "snarls",
02257     "snatch", "snazzy", "sneaks", "sneaky", "sneers", "sneeze",
02258     "snicks", "snider", "snides", "sniffs", "sniffy", "sniped",
02259     "sniper", "snipes", "snippy", "snitch", "snivel", "snobby",
02260     "snoops", "snoopy", "snoots", "snooty", "snooze", "snored",
02261     "snorer", "snores", "snorts", "snotty", "snouts", "snowed",
02262     "snuffs", "snugly", "soaked", "soaped", "soared", "sobbed",
02263     "sobers", "soccer", "social", "socked", "socket", "sodded",
02264     "sodden", "sodium", "sodomy", "soften", "softer", "softly",
02265     "soiled", "solace", "solder", "solely", "solemn", "solids",
02266     "soling", "soloed", "solved", "solver", "solves", "somber",
02267     "sombre", "sonars", "sonata", "sonics", "sonnet", "sooner",
02268     "soothe", "sooths", "sopped", "sorbet", "sordid", "sorely",
02269     "sorest", "soring", "sorrel", "sorrow", "sorted", "sorter",
02270     "sortie", "soughs", "sought", "sounds", "souped", "source",
02271     "soured", "sourer", "sourly", "soused", "souses", "soviet",
02272     "sowers", "sowing", "spaced", "spaces", "spacey", "spaded",
02273     "spades", "spanks", "spared", "sparer", "spares", "sparks",
02274     "sparky", "sparse", "spasms", "spates", "spawns", "spayed",
02275     "speaks", "spears", "specie", "specks", "speech", "speeds",
02276     "speedy", "spells", "spends", "sperms", "spewed", "sphere",
02277     "sphinx", "spiced", "spices", "spider", "spiels", "spiffs",
02278     "spiffy", "spigot", "spiked", "spikes", "spills", "spinal",
02279     "spines", "spinet", "spiral", "spirea", "spires", "spirit",
02280     "spited", "spites", "splash", "splats", "splays", "spleen",
02281     "splice", "spliff", "spline", "splint", "splits", "splosh",
02282     "spoils", "spoken", "spokes", "sponge", "spongy", "spoofs",
02283     "spooks", "spooky", "spools", "spoons", "spoors", "spored",
02284     "spores", "sports", "sporty", "spotty", "spouse", "spouts",
02285     "sprain", "sprang", "sprats", "sprawl", "sprays", "spread",
02286     "spreed", "sprees", "sprier", "sprigs", "spring", "sprint",
02287     "sprite", "spritz", "sprogs", "sprout", "spruce", "sprung",
02288     "spryly", "spumed", "spumes", "spunks", "spunky", "spurns",
02289     "spurts", "sputum", "spying", "squabs", "squads", "squall",
02290     "square", "squash", "squats", "squawk", "squaws", "squeak",
02291     "squeal", "squibs", "squids", "squint", "squire", "squirm",
02292     "squirt", "squish", "stable", "stably", "stacks", "staffs",
02293     "staged", "stages", "stains", "stairs", "staked", "stakes",
02294     "staled", "staler", "stales", "stalks", "stalls", "stamen",
02295     "stamps", "stance", "stanch", "stands", "stanks", "stanza",
02296     "staple", "starch", "stared", "stares", "starks", "starry",
02297     "starts", "starve", "stasis", "stated", "stater", "states",
02298     "static", "statue", "status", "staved", "stayed", "steads",
02299     "steady", "steaks", "steals", "steams", "steamy", "steeds",
02300     "steels", "steely", "steeps", "steers", "steins", "stench",
02301     "stenos", "steppe", "stereo", "sterns", "stewed", "sticks",
02302     "sticky", "stiffs", "stifle", "stigma", "stiled", "stiles",
02303     "stills", "stilts", "stings", "stingy", "stinks", "stints",
02304     "stitch", "stoats", "stocks", "stocky", "stodge", "stodgy",
02305     "stoics", "stoked", "stoker", "stokes", "stolen", "stoles",
02306     "stolid", "stomps", "stoned", "stones", "stooge", "stools",
02307     "stoops", "stored", "stores", "storks", "storms", "stormy",
02308     "stoups", "stouts", "stoves", "stowed", "strafe", "strain",
02309     "strait", "strand", "straps", "strata", "straws", "strays",
02310     "streak", "stream", "street", "stress", "strewn", "strews",
02311     "strict", "stride", "strife", "strike", "string", "stripe",
02312     "strips", "stripy", "strive", "strobe", "strode", "stroke",
02313     "stroll", "strong", "strops", "strove", "struck", "strums",
02314     "strung", "struts", "stubby", "stucco", "studio", "stuffs",
02315     "stuffy", "stumps", "stumpy", "stunts", "stupid", "stupor",
02316     "sturdy", "stying", "styled", "styles", "stylus", "stymie",
02317     "suaver", "subbed", "subdue", "sublet", "submit", "suborn",
02318     "subset", "subtle", "subtly", "suburb", "subway", "sucked",
02319     "sucker", "suckle", "sudden", "suffer", "suffix", "sugars",
02320     "sugary", "suited", "suites", "suitor", "sulked", "sullen",
02321     "sultan", "sultry", "summat", "summed", "summer", "summit",
02322     "summon", "sunbed", "sundae", "sunder", "sundry", "sunhat",
02323     "sunken", "sunlit", "sunned", "sunset", "suntan", "superb",
02324     "supers", "supine", "supped", "supper", "supple", "supply",
02325     "surely", "surest", "surety", "surfed", "surfer", "surged",
02326     "surges", "surrey", "surtax", "survey", "sussed", "susses",
02327     "suttee", "suture", "svelte", "swains", "swamis", "swamps",
02328     "swampy", "swanks", "swanky", "swards", "swarms", "swatch",
02329     "swathe", "swaths", "swayed", "swears", "sweats", "sweaty",
02330     "swedes", "sweeps", "sweets", "swells", "swerve", "swifts",
02331     "swills", "swines", "swings", "swiped", "swipes", "swirls",
02332     "swirly", "switch", "swivel", "swoons", "swoops", "swoosh",
02333     "swords", "sylphs", "sylvan", "symbol", "synced", "synods",
02334     "syntax", "syrupy", "system", "tabbed", "tabled", "tables",
02335     "tablet", "taboos", "tacked", "tackle", "tactic", "tagged",
02336     "tailed", "tailor", "taints", "takers", "taking", "talent",
02337     "talked", "talker", "talkie", "taller", "tallow", "talons",
02338     "tamale", "tamely", "tamers", "tamest", "taming", "tamped",
02339     "tamper", "tampon", "tandem", "tangle", "tangos", "tanked",
02340     "tanker", "tanned", "tanner", "tannin", "tapers", "taping",
02341     "tapirs", "tapped", "tappet", "target", "tariff", "taring",
02342     "tarmac", "tarots", "tarpon", "tarred", "tartan", "tartar",
02343     "tarted", "tarter", "tartly", "tasked", "tassel", "tasted",
02344     "taster", "tastes", "taters", "tatted", "tatter", "tattie",
02345     "tattle", "tattoo", "taught", "taunts", "tauted", "tauten",
02346     "tauter", "tautly", "tavern", "tawdry", "taxied", "taxing",
02347     "taxman", "taxmen", "teabag", "teacup", "teaing", "teamed",
02348     "teapot", "teared", "teased", "teasel", "teaser", "teases",
02349     "techie", "techno", "tedium", "teeing", "teemed", "teeter",
02350     "teethe", "teller", "temped", "temper", "temple", "tempos",
02351     "tempts", "tenant", "tended", "tender", "tendon", "tenets",
02352     "tenner", "tennis", "tenons", "tenors", "tenpin", "tensed",
02353     "tenser", "tenses", "tensor", "tented", "tenths", "tenure",
02354     "tepees", "termed", "termly", "terned", "terror", "terser",
02355     "tested", "tester", "testes", "testis", "tetchy", "tether",
02356     "thanks", "thatch", "thawed", "thefts", "theirs", "theism",
02357     "theist", "themed", "themes", "thence", "theory", "therms",
02358     "theses", "thesis", "thicko", "thieve", "thighs", "things",
02359     "thingy", "thinks", "thinly", "thirds", "thirst", "thirty",
02360     "thongs", "thorax", "thorns", "thorny", "though", "thrall",
02361     "thrash", "thread", "threat", "threes", "thresh", "thrice",
02362     "thrift", "thrill", "thrive", "throat", "throbs", "throed",
02363     "throes", "throne", "throng", "thrown", "throws", "thrums",
02364     "thrush", "thrust", "thumbs", "thumps", "thwack", "thwart",
02365     "thymus", "tiaras", "tibiae", "ticked", "ticker", "ticket",
02366     "tickle", "tidbit", "tiddly", "tidied", "tidier", "tidies",
02367     "tidily", "tiding", "tiepin", "tiered", "tiffed", "tigers",
02368     "tights", "tildes", "tilers", "tiling", "tilled", "tiller",
02369     "tilted", "timber", "timbre", "timely", "timers", "timing",
02370     "tinder", "tinged", "tinges", "tingle", "tingly", "tinier",
02371     "tinker", "tinkle", "tinned", "tinpot", "tinsel", "tinted",
02372     "tipped", "tipper", "tippex", "tipple", "tiptoe", "tiptop",
02373     "tirade", "tissue", "titans", "titchy", "tithed", "tithes",
02374     "titian", "titled", "titles", "titted", "titter", "tittle",
02375     "toasts", "toasty", "tocsin", "toddle", "toecap", "toeing",
02376     "toerag", "toffee", "togged", "toggle", "toiled", "toiler",
02377     "toilet", "tokens", "toking", "tolled", "tomato", "tombed",
02378     "tomboy", "tomcat", "toners", "tongue", "tonics", "tonier",
02379     "toning", "tonnes", "tonsil", "tooled", "tooted", "toothy",
02380     "tootle", "topees", "topics", "topped", "topper", "topple",
02381     "toques", "torpid", "torpor", "torque", "torrid", "torsos",
02382     "tortes", "tossed", "tosser", "tosses", "tossup", "totals",
02383     "totems", "toting", "totted", "totter", "toucan", "touchy",
02384     "toughs", "toupee", "toured", "tousle", "touted", "toward",
02385     "towels", "towers", "towing", "townee", "townie", "toxins",
02386     "toyboy", "toying", "traced", "tracer", "traces", "tracks",
02387     "tracts", "traded", "trader", "trades", "tragic", "trails",
02388     "trains", "traits", "tramps", "trance", "trashy", "trauma",
02389     "travel", "trawls", "treads", "treats", "treaty", "treble",
02390     "tremor", "trench", "trends", "trendy", "triads", "triage",
02391     "trials", "tribal", "tribes", "tricks", "tricky", "triers",
02392     "trifle", "triked", "trikes", "trilby", "trills", "trimly",
02393     "triple", "triply", "tripod", "tripos", "triter", "trites",
02394     "trivet", "trivia", "trodes", "troika", "trolls", "tromps",
02395     "troops", "tropes", "trophy", "tropic", "troths", "trough",
02396     "troupe", "trouts", "trowel", "truant", "truces", "trucks",
02397     "trudge", "truest", "truing", "truism", "trumps", "trunks",
02398     "trusts", "trusty", "truths", "trying", "tryout", "trysts",
02399     "tubers", "tubing", "tucked", "tucker", "tufted", "tugged",
02400     "tulips", "tumble", "tumult", "tundra", "tuners", "tunics",
02401     "tuning", "tunnel", "tuques", "turban", "turbid", "turbos",
02402     "turbot", "tureen", "turfed", "turgid", "turkey", "turned",
02403     "turner", "turnip", "turret", "turtle", "tushed", "tushes",
02404     "tusked", "tussle", "tutors", "tutted", "tuxedo", "twangs",
02405     "tweaks", "tweeds", "tweedy", "tweets", "twelve", "twenty",
02406     "twerps", "twiggy", "twilit", "twined", "twines", "twinge",
02407     "twirls", "twirly", "twists", "twisty", "twitch", "twofer",
02408     "tycoon", "typhus", "typify", "typing", "typist", "tyrant",
02409     "udders", "uglied", "uglier", "uglies", "ulcers", "ultras",
02410     "umbels", "umiaks", "umlaut", "umping", "umpire", "unable",
02411     "unbars", "unbend", "unbent", "unbind", "unbolt", "unborn",
02412     "uncled", "uncles", "uncoil", "uncool", "uncork", "uncurl",
02413     "undies", "undoes", "undone", "unduly", "unease", "uneasy",
02414     "uneven", "unfair", "unfits", "unfold", "unfurl", "unhand",
02415     "unholy", "unhook", "unhurt", "unions", "unique", "unisex",
02416     "unison", "united", "unites", "unjust", "unkind", "unlace",
02417     "unless", "unlike", "unload", "unlock", "unmade", "unmake",
02418     "unmans", "unmask", "unpack", "unpaid", "unpick", "unpins",
02419     "unplug", "unread", "unreal", "unrest", "unripe", "unroll",
02420     "unruly", "unsafe", "unsaid", "unsays", "unseal", "unseat",
02421     "unseen", "unsent", "unsnap", "unsold", "unstop", "unsung",
02422     "unsure", "untidy", "untied", "unties", "untold", "untrue",
02423     "unused", "unveil", "unwary", "unwell", "unwind", "unwise",
02424     "unwrap", "unzips", "upbeat", "update", "upends", "upheld",
02425     "uphill", "uphold", "upkeep", "upland", "uplift", "upload",
02426     "uppers", "upping", "uppity", "uproar", "uproot", "upsets",
02427     "upshot", "upside", "uptake", "uptown", "upturn", "upward",
02428     "upwind", "urbane", "urchin", "urgent", "urging", "urinal",
02429     "urning", "usable", "usages", "useful", "ushers", "usurer",
02430     "usurps", "uterus", "utmost", "utopia", "utters", "uvular",
02431     "uvulas", "vacant", "vacate", "vacuum", "vagary", "vagina",
02432     "vagued", "vaguer", "vagues", "vainer", "vainly", "valets",
02433     "valise", "valley", "valued", "valuer", "values", "valved",
02434     "valves", "vamped", "vandal", "vanish", "vanity", "vanned",
02435     "varied", "varies", "varlet", "vassal", "vaster", "vastly",
02436     "vatted", "vaults", "vaunts", "vealed", "vector", "veered",
02437     "vegans", "vegged", "vegges", "veggie", "veiled", "veined",
02438     "velars", "vellum", "velvet", "vended", "vendor", "veneer",
02439     "venial", "venous", "vented", "venues", "verbal", "verged",
02440     "verger", "verges", "verier", "verify", "verily", "verity",
02441     "vermin", "vernal", "versed", "verses", "versos", "versus",
02442     "vertex", "vesper", "vessel", "vested", "vestry", "vetoed",
02443     "vetoes", "vetted", "vexing", "viable", "viably", "viands",
02444     "vicars", "vicing", "victim", "victor", "videos", "viewed",
02445     "viewer", "vigils", "vilely", "vilest", "vilify", "villas",
02446     "vining", "vinyls", "violas", "violet", "violin", "vipers",
02447     "virago", "vireos", "virgin", "virile", "virtue", "visaed",
02448     "visage", "viscid", "viscus", "vising", "vision", "visits",
02449     "visors", "vistas", "visual", "vitals", "vivace", "vivaed",
02450     "vivify", "vixens", "vizier", "vocals", "vodkas", "vogued",
02451     "vogues", "voiced", "voices", "voided", "voling", "volley",
02452     "volume", "vomits", "voodoo", "vortex", "votary", "voters",
02453     "voting", "votive", "vowels", "vowing", "voyage", "voyeur",
02454     "vulgar", "vulvae", "wackos", "wadded", "waddle", "waders",
02455     "wadges", "wading", "wafers", "waffle", "wafted", "wagers",
02456     "wagged", "waggle", "waging", "waifed", "wailed", "waists",
02457     "waited", "waiter", "waived", "waiver", "waives", "wakens",
02458     "waking", "waling", "walked", "walker", "wallah", "wallas",
02459     "walled", "wallet", "wallop", "wallow", "walnut", "walrus",
02460     "wampum", "wander", "wangle", "waning", "wanked", "wanker",
02461     "wanner", "wanted", "wanton", "wapiti", "warble", "warded",
02462     "warden", "warder", "warier", "warily", "warmed", "warmer",
02463     "warmly", "warmth", "warned", "warped", "warred", "warren",
02464     "washed", "washer", "washes", "wasted", "waster", "wastes",
02465     "waters", "watery", "watter", "wattle", "wavers", "wavier",
02466     "waving", "waxier", "waxing", "waylay", "wazoos", "weaken",
02467     "weaker", "weakly", "wealth", "weaned", "weapon", "wearer",
02468     "weasel", "weaved", "weaver", "weaves", "webbed", "wedded",
02469     "wedder", "wedged", "wedges", "weeded", "weeder", "weeing",
02470     "weekly", "weenie", "weeper", "weevil", "wefted", "weighs",
02471     "weight", "weirdo", "weirds", "weired", "welded", "welder",
02472     "welkin", "welled", "wellie", "welted", "welter", "wended",
02473     "wested", "wetter", "whacks", "whaled", "whaler", "whales",
02474     "whammy", "wharfs", "wheals", "wheels", "wheeze", "wheezy",
02475     "whelks", "whelps", "whence", "wheres", "whewed", "whiffs",
02476     "whiled", "whiles", "whilst", "whimsy", "whined", "whiner",
02477     "whines", "whinge", "whinny", "whirls", "whisks", "whited",
02478     "whiten", "whiter", "whites", "whitey", "wholes", "wholly",
02479     "whoops", "whoosh", "whores", "whorls", "wicked", "wicker",
02480     "wicket", "widely", "widens", "widest", "widget", "widows",
02481     "widths", "wields", "wiener", "wienie", "wifely", "wigeon",
02482     "wigged", "wiggle", "wiggly", "wights", "wigwag", "wigwam",
02483     "wilded", "wilder", "wildly", "wilier", "wiling", "willed",
02484     "willie", "willow", "wilted", "wimped", "wimple", "winced",
02485     "winces", "winded", "window", "windup", "winery", "winged",
02486     "winger", "wining", "winked", "winkle", "winner", "winnow",
02487     "winter", "wintry", "wipers", "wiping", "wirier", "wiring",
02488     "wisdom", "wisely", "wisest", "wished", "wisher", "wishes",
02489     "wising", "withal", "withed", "wither", "withes", "within",
02490     "witter", "wizard", "wobble", "wobbly", "wodges", "woeful",
02491     "wolfed", "wolves", "wombat", "wonder", "wonted", "wooded",
02492     "wooden", "woodsy", "wooers", "woofed", "woofer", "wooing",
02493     "woolly", "worded", "worked", "worker", "worlds", "wormed",
02494     "worsen", "worsts", "worthy", "wotcha", "woulds", "wounds",
02495     "wovens", "wowing", "wracks", "wraith", "wraths", "wreaks",
02496     "wreath", "wrecks", "wrench", "wrests", "wretch", "wright",
02497     "wrings", "wrists", "writer", "writes", "writhe", "wrongs",
02498     "wryest", "wrying", "wusses", "yachts", "yahoos", "yakked",
02499     "yammer", "yanked", "yapped", "yawing", "yawned", "yearly",
02500     "yearns", "yeasts", "yeasty", "yelled", "yellow", "yelped",
02501     "yeoman", "yeomen", "yessed", "yields", "yipped", "yippee",
02502     "yobbos", "yodels", "yogurt", "yokels", "yoking", "yonder",
02503     "youths", "yowled", "yuccas", "yucked", "yukked", "yuppie",
02504     "zanied", "zanier", "zanies", "zapped", "zapper", "zealot",
02505     "zebras", "zenith", "zephyr", "zeroed", "zigzag", "zinged",
02506     "zinger", "zinnia", "zipped", "zipper", "zircon", "zither",
02507     "zodiac", "zombie", "zoning", "zonked", "zoomed", "zydeco",
02508     "zygote"
02509   };
02510 
02511   const char* w_7[] = {
02512     "abalone", "abandon", "abashed", "abashes", "abasing", "abating",
02513     "abdomen", "abducts", "abetted", "abettor", "abiding", "ability",
02514     "abjects", "abjured", "abjures", "aboding", "abolish", "aborted",
02515     "abounds", "abraded", "abrades", "abreast", "abridge", "abscess",
02516     "abscond", "abseils", "absence", "absents", "absolve", "absorbs",
02517     "abstain", "abusers", "abusing", "abusive", "abutted", "abysmal",
02518     "abysses", "acacias", "academe", "academy", "acceded", "accedes",
02519     "accents", "accepts", "acclaim", "accords", "accosts", "account",
02520     "accrual", "accrued", "accrues", "accused", "accuser", "accuses",
02521     "acerbic", "acetate", "acetone", "achiest", "achieve", "acidify",
02522     "acidity", "acolyte", "aconite", "acquire", "acquits", "acreage",
02523     "acrider", "acrobat", "acronym", "acrylic", "actions", "actives",
02524     "actress", "actuary", "actuate", "acutely", "acutest", "adagios",
02525     "adamant", "adapted", "addenda", "addends", "addicts", "addling",
02526     "address", "adduced", "adduces", "adenoid", "adepter", "adeptly",
02527     "adhered", "adheres", "adipose", "adjoins", "adjourn", "adjudge",
02528     "adjunct", "adjured", "adjures", "adjusts", "admiral", "admired",
02529     "admirer", "admires", "adopted", "adoring", "adorned", "adrenal",
02530     "adulate", "advance", "advents", "adverbs", "adverse", "adverts",
02531     "advised", "adviser", "advises", "aerated", "aerates", "aerator",
02532     "aerials", "aeriest", "aerobic", "aerosol", "affable", "affably",
02533     "affairs", "affects", "affirms", "affixed", "affixes", "afflict",
02534     "affords", "affrays", "affront", "afghans", "against", "ageists",
02535     "ageless", "agendas", "agilely", "agilest", "agility", "agitate",
02536     "agonies", "aground", "aileron", "ailment", "aimless", "airbags",
02537     "airbase", "airbeds", "aircrew", "airdrop", "airfare", "airflow",
02538     "airguns", "airhead", "airiest", "airings", "airless", "airlift",
02539     "airline", "airlock", "airmail", "airplay", "airport", "airship",
02540     "airshow", "airsick", "airtime", "airways", "aisling", "aitches",
02541     "alarmed", "albinos", "albumen", "albumin", "alchemy", "alcohol",
02542     "alcoves", "alerted", "alerter", "alertly", "alfalfa", "algebra",
02543     "aliased", "aliases", "alibied", "aliened", "alights", "aligned",
02544     "alimony", "allayed", "alleged", "alleges", "allegro", "allergy",
02545     "allover", "allowed", "alloyed", "alluded", "alludes", "allured",
02546     "allures", "allying", "almanac", "almonds", "almoner", "alpacas",
02547     "alpines", "already", "alright", "altered", "alumnae", "alumnus",
02548     "amalgam", "amassed", "amasses", "amateur", "amatory", "amazing",
02549     "amazons", "ambient", "ambling", "amended", "amening", "amenity",
02550     "amiable", "amiably", "ammeter", "ammonia", "amnesia", "amnesty",
02551     "amoebas", "amoebic", "amongst", "amorous", "amounts", "amperes",
02552     "amphora", "amplest", "amplify", "ampules", "amputee", "amulets",
02553     "amusing", "anagram", "analogs", "analogy", "analyst", "anapest",
02554     "anarchy", "anatomy", "anchors", "anchovy", "ancient", "andante",
02555     "andiron", "android", "anemone", "angelic", "angered", "anglers",
02556     "angling", "angoras", "angrier", "angrily", "anguish", "angular",
02557     "animals", "animate", "animism", "animist", "aniseed", "anklets",
02558     "ankling", "anneals", "annexed", "annexes", "annoyed", "annuals",
02559     "annuity", "annular", "anodyne", "anoints", "anomaly", "anoraks",
02560     "another", "answers", "antacid", "anteing", "antenna", "anthems",
02561     "anthers", "anthill", "anthrax", "antigen", "antique", "antiwar",
02562     "antlers", "antonym", "anxiety", "anxious", "anybody", "anymore",
02563     "anytime", "anyways", "aphasia", "aphasic", "aphelia", "aplenty",
02564     "apogees", "apology", "apostle", "apparel", "appeals", "appears",
02565     "appease", "appends", "applaud", "applets", "applied", "applies",
02566     "appoint", "apprise", "approve", "apricot", "apropos", "aptness",
02567     "aquatic", "aquavit", "aqueous", "aquifer", "arbiter", "arbutus",
02568     "arcades", "archaic", "archers", "archery", "archest", "arching",
02569     "archive", "archway", "arctics", "arduous", "arguing", "argyles",
02570     "aridest", "aridity", "arising", "armadas", "armband", "armfuls",
02571     "armhole", "armlets", "armload", "armpits", "armrest", "arousal",
02572     "aroused", "arouses", "arraign", "arrange", "arrayed", "arrears",
02573     "arrests", "arrival", "arrived", "arrives", "arroyos", "arsenal",
02574     "arsenic", "article", "artiest", "artisan", "artiste", "artists",
02575     "artless", "artsier", "artwork", "arugula", "ascends", "ascents",
02576     "ascetic", "ascribe", "aseptic", "asexual", "ashamed", "ashcans",
02577     "ashiest", "ashrams", "ashtray", "asinine", "askance", "asocial",
02578     "aspects", "asphalt", "aspired", "aspires", "aspirin", "assails",
02579     "assault", "assayed", "assents", "asserts", "assigns", "assists",
02580     "assizes", "assorts", "assuage", "assumed", "assumes", "assured",
02581     "assures", "astound", "astrals", "astride", "astuter", "asunder",
02582     "asylums", "atavism", "atelier", "atheism", "atheist", "athlete",
02583     "atishoo", "atlases", "atomics", "atoning", "atrophy", "attacks",
02584     "attains", "attempt", "attends", "attests", "attired", "attires",
02585     "attract", "attuned", "attunes", "auction", "audible", "audibly",
02586     "audited", "auditor", "augment", "augured", "augusts", "aunties",
02587     "aurally", "aureole", "auricle", "auspice", "austere", "authors",
02588     "autoing", "autopsy", "autumns", "availed", "avarice", "avatars",
02589     "avenged", "avenger", "avenges", "avenues", "average", "averred",
02590     "averted", "aviator", "avidest", "avidity", "avionic", "avocado",
02591     "avoided", "avowals", "avowing", "awaited", "awakens", "awaking",
02592     "awarded", "awarest", "awesome", "awfully", "awkward", "awnings",
02593     "azaleas", "azimuth", "babbled", "babbler", "babbles", "babiest",
02594     "baboons", "babying", "babyish", "babysat", "babysit", "bacilli",
02595     "backbit", "backers", "backhoe", "backing", "backlog", "backups",
02596     "baddest", "baddies", "badgers", "badness", "baffled", "baffles",
02597     "bagfuls", "baggage", "baggier", "baggies", "bagging", "bagpipe",
02598     "baileys", "bailiff", "bailing", "bailout", "baiting", "balance",
02599     "balcony", "baldest", "baldies", "balding", "baleful", "balkier",
02600     "balking", "ballads", "ballast", "ballets", "balling", "balloon",
02601     "ballots", "ballsed", "ballses", "balmier", "baloney", "balsams",
02602     "bamboos", "banaler", "bananas", "bandage", "bandied", "bandier",
02603     "bandies", "banding", "bandits", "baneful", "bangers", "banging",
02604     "bangles", "bankers", "banking", "banners", "banning", "bannock",
02605     "banquet", "banshee", "bantams", "banters", "banyans", "baobabs",
02606     "baptism", "baptist", "barbell", "barbers", "barbies", "barbing",
02607     "barfing", "bargain", "barging", "barkers", "barking", "barmaid",
02608     "barmier", "barneys", "baronet", "baroque", "barrack", "barrage",
02609     "barrels", "barrens", "barrier", "barring", "barrios", "barroom",
02610     "barrows", "barters", "baseman", "basemen", "bashful", "bashing",
02611     "baskets", "basking", "basques", "bassets", "bassist", "bassoon",
02612     "bastard", "basting", "bastion", "batched", "batches", "bathers",
02613     "bathing", "bathmat", "bathtub", "batsman", "batsmen", "battens",
02614     "batters", "battery", "battier", "batting", "battled", "battler",
02615     "battles", "baubles", "baulked", "bauxite", "bawdier", "bawdily",
02616     "bawling", "bayonet", "bazaars", "bazooka", "beached", "beaches",
02617     "beacons", "beadier", "beading", "beagled", "beagles", "beakers",
02618     "beaming", "beanbag", "beanies", "beaning", "bearded", "bearers",
02619     "bearing", "bearish", "beastly", "beaters", "beatify", "beating",
02620     "beatnik", "beavers", "becalms", "because", "beckons", "becomes",
02621     "bedaubs", "bedbugs", "bedding", "bedecks", "bedevil", "bedhead",
02622     "bedlams", "bedpans", "bedpost", "bedrock", "bedroll", "bedroom",
02623     "bedside", "bedsits", "bedsore", "bedtime", "beeches", "beefier",
02624     "beefing", "beehive", "beeline", "beepers", "beeping", "beeswax",
02625     "beetled", "beetles", "befalls", "befouls", "beggars", "begging",
02626     "begonia", "beguile", "behaved", "behaves", "beheads", "behests",
02627     "behinds", "beholds", "bejewel", "belated", "belayed", "belched",
02628     "belches", "beliefs", "believe", "bellboy", "bellhop", "bellied",
02629     "bellies", "belling", "bellows", "belongs", "beloved", "belting",
02630     "beltway", "belying", "bemoans", "bemused", "bemuses", "benched",
02631     "benches", "benders", "bendier", "bending", "beneath", "benefit",
02632     "benumbs", "benzene", "bequest", "berated", "berates", "bereave",
02633     "berried", "berries", "berserk", "berthed", "beseech", "besides",
02634     "besiege", "besomed", "bespeak", "bespoke", "bestial", "besting",
02635     "bestirs", "bestows", "betaken", "betakes", "bethink", "betided",
02636     "betides", "betoken", "betrays", "betroth", "betters", "betting",
02637     "bettors", "between", "betwixt", "bevvies", "bewails", "bewared",
02638     "bewares", "bewitch", "beyonds", "biasing", "bickers", "bicycle",
02639     "bidders", "biddies", "bidding", "biffing", "bifocal", "biggest",
02640     "biggies", "bighorn", "bigness", "bigoted", "bigotry", "bigwigs",
02641     "bikinis", "bilious", "bilking", "billets", "billies", "billing",
02642     "billion", "billows", "billowy", "binders", "bindery", "binding",
02643     "binging", "binning", "biology", "biomass", "bionics", "biopics",
02644     "bipedal", "biplane", "bipolar", "birched", "birches", "birdied",
02645     "birdies", "birding", "biretta", "birthed", "biscuit", "bisects",
02646     "bishops", "bismuth", "bistros", "bitched", "bitches", "bitings",
02647     "bitmaps", "bittern", "bitters", "bitumen", "bivalve", "bivouac",
02648     "bizarre", "blabbed", "blabber", "blacked", "blacken", "blacker",
02649     "bladder", "blading", "blagged", "blahing", "blaming", "blander",
02650     "blandly", "blanked", "blanker", "blanket", "blankly", "blaring",
02651     "blarney", "blasted", "blaster", "blatant", "blather", "blazers",
02652     "blazing", "blazons", "bleaker", "bleakly", "bleated", "bleeder",
02653     "bleeped", "bleeper", "blemish", "blended", "blender", "blessed",
02654     "blesses", "blether", "blights", "blinded", "blinder", "blindly",
02655     "blinked", "blinker", "blintze", "blissed", "blisses", "blister",
02656     "blither", "blitzed", "blitzes", "bloated", "bloater", "blobbed",
02657     "blocked", "blokish", "blonder", "blooded", "bloomed", "bloomer",
02658     "blooper", "blossom", "blotchy", "blotted", "blotter", "bloused",
02659     "blouses", "blowers", "blowgun", "blowing", "blowout", "blowups",
02660     "blubber", "blueish", "bluffed", "bluffer", "blunder", "blunted",
02661     "blunter", "bluntly", "blurred", "blurted", "blushed", "blusher",
02662     "blushes", "bluster", "boarded", "boarder", "boasted", "boaster",
02663     "boaters", "boating", "boatman", "boatmen", "bobbies", "bobbing",
02664     "bobbins", "bobbled", "bobbles", "bobcats", "bobsled", "bobtail",
02665     "bodegas", "bodging", "bodices", "bodkins", "boffins", "bogeyed",
02666     "boggier", "bogging", "boggled", "boggles", "boilers", "boiling",
02667     "boldest", "boleros", "bollard", "bolling", "bologna", "bolshie",
02668     "bolster", "bolting", "bombard", "bombast", "bombers", "bombing",
02669     "bonanza", "bonbons", "bondage", "bonding", "bonfire", "bonging",
02670     "boniest", "bonitos", "bonkers", "bonking", "bonnets", "bonnier",
02671     "bonsais", "bonuses", "boobies", "boobing", "boodles", "boogers",
02672     "boogied", "boogies", "bookend", "bookies", "booking", "bookish",
02673     "booklet", "boomers", "booming", "boonies", "boorish", "boosted",
02674     "booster", "bootees", "booties", "booting", "bootleg", "boozers",
02675     "boozier", "boozing", "bopping", "borders", "boredom", "borough",
02676     "borrows", "borscht", "borstal", "bossier", "bossily", "bossing",
02677     "botched", "botches", "bothers", "bottled", "bottler", "bottles",
02678     "bottoms", "boudoir", "boulder", "bounced", "bouncer", "bounces",
02679     "bounded", "bounden", "bounder", "bouquet", "bourbon", "bovines",
02680     "bowlers", "bowling", "boxcars", "boxroom", "boxwood", "boycott",
02681     "boyhood", "bracing", "bracken", "bracket", "bradawl", "bragged",
02682     "bragger", "braided", "braille", "brained", "braised", "braises",
02683     "braking", "bramble", "branded", "brasher", "brashly", "brassed",
02684     "brasses", "bravado", "bravely", "bravery", "bravest", "braving",
02685     "bravura", "brawled", "brawler", "braying", "brazens", "brazier",
02686     "breaded", "breadth", "breaker", "breakup", "breasts", "breathe",
02687     "breaths", "breathy", "breding", "breeder", "breezed", "breezes",
02688     "brevity", "brewers", "brewery", "brewing", "bribery", "bribing",
02689     "bricked", "brickie", "bridals", "bridged", "bridges", "bridled",
02690     "bridles", "briefed", "briefer", "briefly", "brigade", "brigand",
02691     "brights", "brimful", "brimmed", "brinier", "brioche", "brisked",
02692     "brisker", "brisket", "briskly", "bristle", "bristly", "brittle",
02693     "broaden", "broader", "broadly", "brocade", "brogans", "brogues",
02694     "broiled", "broiler", "brokers", "bromide", "bromine", "bronchi",
02695     "broncos", "bronzed", "bronzes", "brooded", "brooder", "brooked",
02696     "brothel", "brother", "brought", "browned", "browner", "brownie",
02697     "browsed", "browser", "browses", "bruised", "bruiser", "bruises",
02698     "bruited", "brunets", "brunted", "brushed", "brushes", "brusque",
02699     "brutish", "bubbled", "bubbles", "buckets", "buckeye", "bucking",
02700     "buckled", "buckler", "buckles", "buckram", "bucksaw", "bucolic",
02701     "buddies", "budding", "budgets", "budgies", "budging", "buffalo",
02702     "buffers", "buffets", "buffing", "buffoon", "bugaboo", "bugbear",
02703     "buggers", "buggery", "buggier", "buggies", "bugging", "buglers",
02704     "bugling", "builder", "buildup", "bulbing", "bulbous", "bulgier",
02705     "bulging", "bulimia", "bulimic", "bulkier", "bulking", "bulldog",
02706     "bullets", "bullied", "bullier", "bullies", "bulling", "bullion",
02707     "bullish", "bullock", "bullpen", "bulrush", "bulwark", "bumbags",
02708     "bumbled", "bumbler", "bumbles", "bummers", "bummest", "bumming",
02709     "bumpers", "bumpier", "bumping", "bumpkin", "bunched", "bunches",
02710     "bundled", "bundles", "bungees", "bunging", "bungled", "bungler",
02711     "bungles", "bunions", "bunkers", "bunking", "bunnies", "bunting",
02712     "buoyant", "buoying", "burbled", "burbles", "burdens", "burdock",
02713     "bureaus", "burgeon", "burgers", "burgher", "burglar", "burgled",
02714     "burgles", "burials", "burlier", "burners", "burning", "burnish",
02715     "burnout", "burping", "burring", "burrito", "burrows", "bursars",
02716     "bursary", "burying", "busbies", "busboys", "bushels", "bushier",
02717     "bushing", "bushman", "bushmen", "busiest", "buskers", "busking",
02718     "busload", "busters", "bustier", "busting", "bustled", "bustles",
02719     "busying", "butcher", "butches", "butlers", "butters", "buttery",
02720     "butties", "butting", "buttock", "buttons", "buxomer", "buyouts",
02721     "buzzard", "buzzers", "buzzing", "bygones", "bylines", "bywords",
02722     "cabanas", "cabaret", "cabbage", "cabbing", "cabinet", "cabling",
02723     "caboose", "cachets", "caching", "cackled", "cackles", "cadaver",
02724     "caddied", "caddies", "caddish", "cadence", "cadenza", "cadgers",
02725     "cadging", "cadmium", "caducei", "caesura", "caftans", "cagiest",
02726     "cagoule", "cahoots", "caisson", "cajoled", "cajoles", "calcify",
02727     "calcine", "calcite", "calcium", "calculi", "caliphs", "callers",
02728     "calling", "callous", "calmest", "calming", "caloric", "calorie",
02729     "calumny", "calving", "calypso", "calyxes", "cambers", "cambium",
02730     "cambric", "cameoed", "camerae", "cameras", "campers", "campest",
02731     "camphor", "campier", "camping", "canards", "canasta", "cancans",
02732     "cancels", "cancers", "candida", "candied", "candies", "candled",
02733     "candles", "canines", "cankers", "cannery", "cannier", "cannily",
02734     "canning", "cannons", "cantata", "canteen", "canters", "canting",
02735     "cantons", "cantors", "canvass", "canyons", "capable", "capably",
02736     "capered", "capital", "capitol", "caplets", "capping", "caprice",
02737     "capsize", "capstan", "capsule", "captain", "caption", "captive",
02738     "captors", "capture", "carafes", "caramel", "caravan", "caraway",
02739     "carbide", "carbine", "carbons", "carboys", "carcase", "carcass",
02740     "cardiac", "cardies", "carding", "careens", "careers", "careful",
02741     "carfare", "cargoes", "carhops", "caribou", "carjack", "carload",
02742     "carmine", "carnage", "caromed", "carotid", "carouse", "carpals",
02743     "carpels", "carpets", "carping", "carpool", "carport", "carrels",
02744     "carried", "carrier", "carries", "carrion", "carrots", "carroty",
02745     "carsick", "cartels", "carters", "carting", "cartons", "cartoon",
02746     "carvers", "carvery", "carving", "cascade", "cashews", "cashier",
02747     "cashing", "casings", "casinos", "caskets", "cassava", "cassias",
02748     "cassock", "casters", "casting", "castled", "castles", "castoff",
02749     "casuals", "casuist", "catalpa", "catarrh", "catbird", "catboat",
02750     "catcall", "catcher", "catches", "catered", "caterer", "catfish",
02751     "cathode", "cations", "catkins", "catnaps", "catsuit", "cattail",
02752     "cattery", "cattier", "cattily", "catwalk", "caulked", "causals",
02753     "causing", "caustic", "caution", "cavalry", "caveats", "caveman",
02754     "cavemen", "caverns", "cavorts", "cayenne", "caymans", "ceasing",
02755     "cedilla", "ceilidh", "ceiling", "celesta", "cellars", "celling",
02756     "cellist", "cements", "censers", "censors", "censure", "centaur",
02757     "centime", "central", "century", "ceramic", "cereals", "cerebra",
02758     "certain", "certify", "cession", "cesspit", "chaffed", "chafing",
02759     "chagrin", "chained", "chaired", "chaises", "chalets", "chalice",
02760     "chalked", "chamber", "chamois", "champed", "chanced", "chancel",
02761     "chances", "changed", "changes", "channel", "chanted", "chanter",
02762     "chantey", "chaotic", "chapati", "chapels", "chaplet", "chapped",
02763     "chapter", "charade", "charged", "charger", "charges", "charier",
02764     "charily", "chariot", "charity", "charlie", "charmed", "charmer",
02765     "charred", "charted", "charter", "chasers", "chasing", "chassis",
02766     "chasten", "chaster", "chatted", "chattel", "chatter", "cheapen",
02767     "cheaper", "cheaply", "cheated", "cheater", "checked", "checkup",
02768     "cheddar", "cheeked", "cheeped", "cheered", "cheerio", "cheesed",
02769     "cheeses", "cheetah", "cheffed", "chemise", "chemist", "cherish",
02770     "cheroot", "cherubs", "chervil", "chevron", "chewers", "chewier",
02771     "chewing", "chicane", "chicest", "chichis", "chicken", "chicory",
02772     "chiding", "chiefer", "chiefly", "chiffon", "chigger", "chignon",
02773     "childed", "childes", "chilies", "chilled", "chiller", "chimera",
02774     "chiming", "chimney", "chinked", "chinned", "chintzy", "chinwag",
02775     "chipped", "chipper", "chippie", "chirped", "chirrup", "chisels",
02776     "chivied", "chivies", "chiving", "chocked", "choicer", "choices",
02777     "chokers", "choking", "cholera", "chomped", "chooses", "chopped",
02778     "chopper", "chorale", "chorals", "choring", "chortle", "chowder",
02779     "chowing", "chromed", "chromes", "chronic", "chucked", "chuckle",
02780     "chuffed", "chugged", "chummed", "chunder", "chunter", "churned",
02781     "chutney", "cicadas", "ciggies", "cinched", "cinches", "cinders",
02782     "cinemas", "ciphers", "circled", "circles", "circlet", "circuit",
02783     "cissies", "cistern", "citadel", "citizen", "citrons", "civilly",
02784     "civvies", "clacked", "claimed", "clamber", "clammed", "clamped",
02785     "clanged", "clanger", "clanked", "clapped", "clapper", "clarets",
02786     "clarify", "clarion", "clarity", "clashed", "clashes", "clasped",
02787     "classed", "classes", "classic", "clatter", "clauses", "clawing",
02788     "clayier", "cleaned", "cleaner", "cleanly", "cleanse", "cleanup",
02789     "cleared", "clearer", "clearly", "cleaved", "cleaver", "cleaves",
02790     "clefted", "clement", "clerics", "clerked", "clewing", "clicked",
02791     "clients", "climate", "climbed", "climber", "clinics", "clinked",
02792     "clinker", "clipped", "clipper", "cliques", "cliquey", "cloaked",
02793     "clobber", "cloches", "clocked", "clodded", "clogged", "clomped",
02794     "cloning", "clonked", "clopped", "closely", "closest", "closets",
02795     "closing", "closure", "clothed", "clothes", "clotted", "cloture",
02796     "clouded", "clouted", "clovers", "clowned", "cloying", "clubbed",
02797     "clubber", "clucked", "clumped", "clunked", "clunker", "cluster",
02798     "clutter", "coached", "coaches", "coaling", "coarsen", "coarser",
02799     "coastal", "coasted", "coaster", "coating", "coaxing", "cobbers",
02800     "cobbing", "cobbled", "cobbler", "cobbles", "cobnuts", "cobwebs",
02801     "cocaine", "cochlea", "cockade", "cockier", "cockily", "cocking",
02802     "cockles", "cockney", "cockpit", "coconut", "cocoons", "codding",
02803     "coddled", "coddles", "codeine", "codfish", "codgers", "codices",
02804     "codicil", "coequal", "coerced", "coerces", "coevals", "coexist",
02805     "coffees", "coffers", "coffins", "cogency", "cognacs", "cognate",
02806     "cohabit", "cohered", "coheres", "cohorts", "coiffed", "coiling",
02807     "coinage", "coining", "coldest", "colicky", "colitis", "collage",
02808     "collars", "collate", "collect", "colleen", "college", "collide",
02809     "collied", "collier", "collies", "colling", "colloid", "collude",
02810     "cologne", "colonel", "colossi", "coltish", "columns", "combats",
02811     "combine", "combing", "comedic", "comfier", "comfort", "comical",
02812     "comings", "command", "commend", "comment", "commies", "commits",
02813     "commode", "commons", "commune", "commute", "compact", "company",
02814     "compare", "compass", "compels", "compete", "compile", "complex",
02815     "comport", "compose", "compost", "compote", "compute", "comrade",
02816     "concave", "conceal", "concede", "conceit", "concept", "concern",
02817     "concert", "conched", "conchie", "concise", "concoct", "concord",
02818     "concurs", "concuss", "condemn", "condole", "condoms", "condone",
02819     "condors", "conduce", "conduct", "conduit", "confabs", "confers",
02820     "confess", "confide", "confine", "confirm", "conform", "confuse",
02821     "confute", "congaed", "congeal", "congers", "congest", "conical",
02822     "conifer", "conjoin", "conjure", "conkers", "conking", "connect",
02823     "conning", "connive", "connote", "conquer", "consent", "consign",
02824     "consist", "console", "consort", "consuls", "consult", "consume",
02825     "contact", "contain", "contend", "content", "contest", "context",
02826     "contort", "contour", "control", "contuse", "convene", "convent",
02827     "convert", "conveys", "convict", "convoke", "convoys", "cookers",
02828     "cookery", "cookies", "cooking", "cookout", "coolant", "coolers",
02829     "coolest", "coolies", "cooling", "coopers", "cooping", "cooties",
02830     "copiers", "copilot", "copings", "copious", "coppers", "coppery",
02831     "copping", "copsing", "copters", "copulas", "copycat", "copying",
02832     "copyist", "coracle", "cordial", "cording", "cordite", "cordons",
02833     "corkage", "corkers", "corking", "corncob", "corneal", "corneas",
02834     "corners", "cornets", "cornice", "cornier", "corning", "cornrow",
02835     "corolla", "coronas", "coroner", "coronet", "corpora", "corpses",
02836     "corrals", "correct", "corries", "corrode", "corrupt", "corsage",
02837     "corsair", "corsets", "coshing", "cosigns", "cosines", "cossets",
02838     "costars", "costing", "costume", "coterie", "cottage", "cotters",
02839     "cottons", "couched", "couches", "cougars", "coughed", "council",
02840     "counsel", "counted", "counter", "country", "couping", "coupled",
02841     "couples", "couplet", "coupons", "courage", "courier", "coursed",
02842     "courser", "courses", "courted", "courtly", "cousins", "couture",
02843     "covered", "coverts", "coveted", "cowards", "cowbell", "cowbird",
02844     "cowboys", "cowered", "cowgirl", "cowhand", "cowhide", "cowlick",
02845     "cowling", "cowpats", "cowpoke", "cowries", "cowshed", "cowslip",
02846     "coxcomb", "coyness", "coyotes", "cozened", "crabbed", "cracked",
02847     "cracker", "crackle", "crackly", "crackup", "cradled", "cradles",
02848     "crafted", "crammed", "crammer", "cramped", "crampon", "cranial",
02849     "craning", "cranium", "cranked", "cranker", "crapped", "crapper",
02850     "crappie", "crashed", "crashes", "crasser", "crassly", "craters",
02851     "crating", "cravats", "cravens", "craving", "crawled", "crawler",
02852     "crayons", "crazier", "crazies", "crazily", "crazing", "creaked",
02853     "creamed", "creamer", "creased", "creases", "created", "creates",
02854     "creator", "credits", "creeled", "creeper", "cremate", "creoles",
02855     "crested", "cretins", "crevice", "crewing", "crewman", "crewmen",
02856     "cribbed", "cricked", "cricket", "criming", "crimped", "crimson",
02857     "cringed", "cringes", "crinkle", "crinkly", "cripple", "crisped",
02858     "crisper", "crisply", "critics", "critter", "croaked", "crochet",
02859     "crocked", "crofter", "cronies", "crooked", "crooned", "crooner",
02860     "cropped", "cropper", "croquet", "crosier", "crossed", "crosser",
02861     "crosses", "crossly", "crouped", "crowbar", "crowded", "crowing",
02862     "crowned", "crucial", "crucify", "crudely", "crudest", "crudity",
02863     "crueler", "cruelly", "cruelty", "cruised", "cruiser", "cruises",
02864     "cruller", "crumbed", "crumble", "crumbly", "crumpet", "crumple",
02865     "crunchy", "crusade", "crushed", "crusher", "crushes", "crusted",
02866     "crybaby", "cryings", "cryptic", "crystal", "cubical", "cubicle",
02867     "cubists", "cuboids", "cuckold", "cuckoos", "cuddled", "cuddles",
02868     "cudgels", "cuffing", "cuisine", "culling", "culotte", "culprit",
02869     "culture", "culvert", "cumming", "cumulus", "cunning", "cupcake",
02870     "cupfuls", "cupolas", "cupping", "curable", "curated", "curates",
02871     "curator", "curdled", "curdles", "curfews", "curious", "curlers",
02872     "curlews", "curlier", "curling", "currant", "current", "curried",
02873     "curries", "curring", "cursing", "cursive", "cursors", "cursory",
02874     "curtail", "curtain", "curtest", "curvier", "curving", "cushier",
02875     "cushion", "cuspids", "cussing", "custard", "custody", "customs",
02876     "cutaway", "cutback", "cuticle", "cutlass", "cutlery", "cutlets",
02877     "cutoffs", "cutouts", "cutters", "cutting", "cyanide", "cyborgs",
02878     "cycling", "cyclist", "cyclone", "cygnets", "cymbals", "cynical",
02879     "cyphers", "cypress", "czarina", "czarism", "czarist", "dabbing",
02880     "dabbled", "dabbler", "dabbles", "dactyls", "daddies", "daemons",
02881     "daffier", "daftest", "daggers", "dahlias", "dailies", "dairies",
02882     "daisies", "dallied", "dallies", "damaged", "damages", "damasks",
02883     "damming", "damning", "dampens", "dampers", "dampest", "damping",
02884     "damsels", "damsons", "dancers", "dancing", "danders", "dandier",
02885     "dandies", "dandify", "dandled", "dandles", "dangers", "dangled",
02886     "dangles", "dankest", "dappers", "dappled", "dapples", "daresay",
02887     "darkens", "darkest", "darkies", "darling", "darning", "darting",
02888     "dashiki", "dashing", "datives", "daubers", "daubing", "daunted",
02889     "dauphin", "dawdled", "dawdler", "dawdles", "dawning", "daybeds",
02890     "daycare", "daylong", "daytime", "dazzled", "dazzles", "deacons",
02891     "deadens", "deadest", "deadpan", "deafens", "deafest", "dealers",
02892     "dealing", "deanery", "deaning", "dearest", "dearies", "dearths",
02893     "deathly", "debacle", "debarks", "debased", "debases", "debated",
02894     "debater", "debates", "debauch", "debited", "debrief", "debtors",
02895     "debunks", "debuted", "decades", "decaffs", "decamps", "decants",
02896     "decayed", "decease", "deceits", "deceive", "decency", "decibel",
02897     "decided", "decider", "decides", "decimal", "decking", "declaim",
02898     "declare", "decline", "decoded", "decoder", "decodes", "decorum",
02899     "decoyed", "decreed", "decrees", "decried", "decries", "deduced",
02900     "deduces", "deducts", "deeding", "deejays", "deeming", "deepens",
02901     "deepest", "defaced", "defaces", "defamed", "defames", "default",
02902     "defeats", "defects", "defends", "defiant", "deficit", "defiled",
02903     "defiles", "defined", "definer", "defines", "deflate", "deflect",
02904     "deforms", "defraud", "defrays", "defrock", "defrost", "deftest",
02905     "defunct", "defused", "defuses", "defying", "degrade", "degrees",
02906     "deicers", "deicing", "deified", "deifies", "deigned", "deities",
02907     "dejects", "delayed", "deleted", "deletes", "delight", "delimit",
02908     "deliver", "delouse", "deluded", "deludes", "deluged", "deluges",
02909     "delving", "demands", "demeans", "demerit", "demesne", "demigod",
02910     "demised", "demises", "demists", "demoing", "demonic", "demoted",
02911     "demotes", "demotic", "demount", "demurer", "denials", "deniers",
02912     "denizen", "denoted", "denotes", "densely", "densest", "density",
02913     "denting", "dentist", "denture", "denuded", "denudes", "denying",
02914     "departs", "depends", "depicts", "deplane", "deplete", "deplore",
02915     "deploys", "deports", "deposed", "deposes", "deposit", "deprave",
02916     "depress", "deprive", "deputed", "deputes", "derails", "derange",
02917     "derbies", "derided", "derides", "derived", "derives", "derrick",
02918     "dervish", "descale", "descant", "descend", "descent", "deserts",
02919     "deserve", "designs", "desired", "desires", "desists", "deskill",
02920     "desktop", "despair", "despise", "despite", "despoil", "despots",
02921     "dessert", "destine", "destiny", "destroy", "details", "detains",
02922     "detects", "detests", "detours", "detoxed", "detoxes", "detract",
02923     "deucing", "devalue", "develop", "deviant", "deviate", "devices",
02924     "devilry", "devious", "devised", "devises", "devolve", "devoted",
02925     "devotee", "devotes", "devours", "dewdrop", "dewiest", "dewlaps",
02926     "diadems", "diagram", "dialect", "diamond", "diapers", "diaries",
02927     "diarist", "diatoms", "dibbled", "dibbles", "diciest", "dickens",
02928     "dickers", "dickeys", "dickier", "dictate", "diction", "diddled",
02929     "diddles", "diddums", "diesels", "dietary", "dieters", "dieting",
02930     "differs", "diffuse", "digests", "diggers", "digging", "digital",
02931     "dignify", "dignity", "digraph", "digress", "diktats", "dilated",
02932     "dilates", "dilemma", "dillies", "dilling", "diluted", "dilutes",
02933     "dimmers", "dimmest", "dimming", "dimness", "dimpled", "dimples",
02934     "dimwits", "dinette", "dingbat", "dingier", "dingies", "dingily",
02935     "dinging", "dingoes", "dinkier", "dinkies", "dinners", "dinning",
02936     "diocese", "diorama", "dioxide", "dioxins", "diploma", "dippers",
02937     "dippier", "dipping", "directs", "dirtied", "dirtier", "dirties",
02938     "disable", "disarms", "disavow", "disband", "disbars", "discard",
02939     "discern", "discoed", "discord", "discuss", "disdain", "disease",
02940     "disgust", "dishing", "dishpan", "dishrag", "dislike", "dismays",
02941     "dismiss", "disobey", "disowns", "dispels", "display", "disport",
02942     "dispose", "dispute", "disrobe", "disrupt", "dissect", "dissent",
02943     "dissing", "distaff", "distant", "distend", "distill", "distort",
02944     "disturb", "disused", "disuses", "ditched", "ditches", "dithers",
02945     "ditties", "dittoed", "diurnal", "diverge", "diverse", "diverts",
02946     "divests", "divided", "divider", "divides", "divined", "diviner",
02947     "divines", "divisor", "divorce", "divulge", "divvied", "divvies",
02948     "dizzied", "dizzier", "dizzies", "dizzily", "dobbing", "docents",
02949     "dockers", "dockets", "docking", "doctors", "dodders", "doddery",
02950     "dodgems", "dodgers", "dodgier", "dodging", "doffing", "dogcart",
02951     "dogfish", "doggier", "doggies", "dogging", "doggone", "doglegs",
02952     "dogsled", "dogtrot", "dogwood", "doilies", "doleful", "dollars",
02953     "dollies", "dolling", "dollops", "dolmens", "dolphin", "doltish",
02954     "domains", "donated", "donates", "donkeys", "donning", "donnish",
02955     "doodads", "doodahs", "doodled", "doodler", "doodles", "dooming",
02956     "dooring", "doorman", "doormat", "doormen", "doorway", "dopiest",
02957     "dorkier", "dormant", "dormers", "dormice", "dorsals", "dosages",
02958     "dossers", "dossier", "dossing", "dotings", "dottier", "dotting",
02959     "doubled", "doubles", "doublet", "doubted", "doubter", "douched",
02960     "douches", "doughty", "dourest", "dousing", "dovecot", "dowager",
02961     "dowdier", "dowdies", "dowdily", "downers", "downier", "downing",
02962     "dowries", "dowsers", "dowsing", "doyenne", "doziest", "drabber",
02963     "drachma", "draftee", "dragged", "dragnet", "dragons", "dragoon",
02964     "drained", "drainer", "drapers", "drapery", "draping", "drastic",
02965     "dratted", "drawers", "drawing", "drawled", "dreaded", "dreamer",
02966     "dredged", "dredger", "dredges", "dressed", "dresser", "dresses",
02967     "dribble", "driblet", "drifted", "drifter", "drilled", "drinker",
02968     "dripped", "drivels", "drivers", "driving", "drizzle", "drizzly",
02969     "droller", "droning", "drooled", "drooped", "droplet", "dropout",
02970     "dropped", "dropper", "drought", "drovers", "drowned", "drowsed",
02971     "drowses", "drubbed", "drudged", "drudges", "drugged", "druggie",
02972     "drummed", "drummer", "drunken", "drunker", "dryness", "drywall",
02973     "dualism", "duality", "dubbing", "dubiety", "dubious", "duchess",
02974     "duchies", "duckies", "ducking", "ductile", "ducting", "dudgeon",
02975     "duffers", "duffing", "dugouts", "dukedom", "dullard", "dullest",
02976     "dulling", "dumbest", "dumbing", "dummies", "dumpers", "dumpier",
02977     "dumpies", "dumping", "dungeon", "dunging", "dunking", "dunnest",
02978     "dunning", "duodena", "duopoly", "durable", "durably", "duskier",
02979     "dustbin", "dusters", "dustier", "dusting", "dustman", "dustmen",
02980     "dustpan", "duteous", "dutiful", "dwarfed", "dwarfer", "dweller",
02981     "dwindle", "dynamic", "dynamos", "dynasty", "eagerer", "eagerly",
02982     "eaglets", "earache", "eardrum", "earfuls", "earldom", "earlier",
02983     "earlobe", "earmark", "earmuff", "earners", "earnest", "earning",
02984     "earplug", "earring", "earshot", "earthed", "earthen", "earthly",
02985     "earwigs", "easiest", "eastern", "eatable", "ebonies", "echelon",
02986     "echoing", "eclipse", "ecology", "economy", "ecstasy", "eddying",
02987     "edgiest", "edgings", "edibles", "edifice", "edified", "edifies",
02988     "editing", "edition", "editors", "educate", "eeriest", "effaced",
02989     "effaces", "effects", "efforts", "eggcups", "egghead", "egoists",
02990     "egotism", "egotist", "eighths", "ejected", "elapsed", "elapses",
02991     "elastic", "elating", "elation", "elbowed", "elderly", "elected",
02992     "elector", "elegant", "elegiac", "elegies", "element", "elevate",
02993     "elevens", "elicits", "eliding", "elision", "elitism", "elitist",
02994     "elixirs", "ellipse", "eloping", "eluding", "elusive", "emailed",
02995     "emanate", "embalms", "embargo", "embarks", "embassy", "emblems",
02996     "embrace", "embroil", "embryos", "emended", "emerald", "emerged",
02997     "emerges", "emeried", "emeries", "emetics", "eminent", "emirate",
02998     "emitted", "emoting", "emotion", "emotive", "empathy", "emperor",
02999     "empires", "employs", "empower", "empress", "emptied", "emptier",
03000     "empties", "emptily", "emulate", "enabled", "enabler", "enables",
03001     "enacted", "enamels", "encamps", "encased", "encases", "enchant",
03002     "enclave", "enclose", "encoded", "encoder", "encodes", "encored",
03003     "encores", "encrust", "encrypt", "endears", "endemic", "endgame",
03004     "endings", "endives", "endless", "endorse", "endowed", "enduing",
03005     "endured", "endures", "endways", "enemies", "enfolds", "enforce",
03006     "engaged", "engages", "engined", "engines", "engorge", "engrave",
03007     "engross", "engulfs", "enhance", "enigmas", "enjoins", "enjoyed",
03008     "enlarge", "enlists", "enliven", "ennoble", "enraged", "enrages",
03009     "ensigns", "enslave", "ensnare", "ensuing", "ensured", "ensures",
03010     "entails", "entente", "entered", "enthuse", "enticed", "entices",
03011     "entitle", "entombs", "entrant", "entraps", "entreat", "entries",
03012     "entropy", "entrust", "entwine", "envelop", "envious", "envying",
03013     "enzymes", "epaulet", "epicure", "epigram", "episode", "epistle",
03014     "epitaph", "epithet", "epitome", "epochal", "epoxied", "epoxies",
03015     "epsilon", "equable", "equably", "equally", "equated", "equates",
03016     "equator", "equerry", "equines", "equinox", "erasers", "erasing",
03017     "erasure", "erected", "erectly", "ermines", "eroding", "erosion",
03018     "erosive", "erotica", "errands", "errants", "erratas", "erratic",
03019     "erratum", "erudite", "erupted", "escaped", "escapee", "escapes",
03020     "eschews", "escorts", "escrows", "escudos", "espouse", "espying",
03021     "esquire", "essayed", "essence", "estates", "esteems", "estuary",
03022     "etchers", "etching", "eternal", "ethanol", "ethical", "ethnics",
03023     "eugenic", "eunuchs", "euphony", "eurekas", "evacuee", "evading",
03024     "evasion", "evasive", "evenest", "evening", "evicted", "evident",
03025     "evinced", "evinces", "evoking", "evolved", "evolves", "exacted",
03026     "exacter", "exactly", "exalted", "examine", "example", "exceeds",
03027     "excepts", "excerpt", "excised", "excises", "excited", "excites",
03028     "exclaim", "exclude", "excreta", "excrete", "excused", "excuses",
03029     "execute", "exempts", "exerted", "exhaled", "exhales", "exhaust",
03030     "exhibit", "exhorts", "exhumed", "exhumes", "exigent", "exiling",
03031     "existed", "exiting", "exotica", "exotics", "expands", "expanse",
03032     "expects", "expends", "expense", "experts", "expiate", "expired",
03033     "expires", "explain", "explode", "exploit", "explore", "exports",
03034     "exposed", "exposes", "expound", "express", "expunge", "extends",
03035     "extents", "extinct", "extorts", "extract", "extreme", "extrude",
03036     "exuding", "exulted", "eyeball", "eyebrow", "eyefuls", "eyelash",
03037     "eyelets", "eyelids", "eyesore", "fabrics", "facades", "faceted",
03038     "facials", "facings", "faction", "factors", "factory", "factual",
03039     "faculty", "faddish", "faffing", "fagging", "failing", "failure",
03040     "fainest", "faining", "fainted", "fainter", "faintly", "fairest",
03041     "fairies", "fairway", "faithed", "falcons", "fallacy", "falling",
03042     "falloff", "fallout", "fallows", "falsely", "falsest", "falsies",
03043     "falsify", "falsity", "falters", "famines", "fanatic", "fancied",
03044     "fancier", "fancies", "fancily", "fanfare", "fannies", "fanning",
03045     "fantasy", "fanzine", "faraway", "farmers", "farming", "farrago",
03046     "farrier", "farrows", "farther", "farting", "fascias", "fascism",
03047     "fascist", "fashion", "fastens", "fastest", "fasting", "fatally",
03048     "fateful", "fathead", "fathers", "fathoms", "fatigue", "fatness",
03049     "fattens", "fattest", "fattier", "fatties", "fatuous", "faucets",
03050     "faulted", "fawning", "fearful", "fearing", "feasted", "feather",
03051     "feature", "febrile", "federal", "fedoras", "feebler", "feedbag",
03052     "feeders", "feeding", "feelers", "feeling", "feigned", "feinted",
03053     "felines", "fellers", "fellest", "felling", "fellows", "felting",
03054     "females", "femoral", "fencers", "fencing", "fenders", "fending",
03055     "ferment", "ferrets", "ferried", "ferries", "ferrous", "ferrule",
03056     "fertile", "fervent", "fessing", "festals", "festers", "festive",
03057     "festoon", "fetched", "fetches", "fetlock", "fetters", "feuding",
03058     "fevered", "fibbers", "fibbing", "fibroid", "fibrous", "fibulae",
03059     "fickler", "fiction", "fiddled", "fiddler", "fiddles", "fidgets",
03060     "fidgety", "fielded", "fielder", "fiercer", "fierier", "fiestas",
03061     "fifteen", "fifties", "figging", "fighter", "figment", "figured",
03062     "figures", "filbert", "filched", "filches", "filings", "fillers",
03063     "fillets", "fillies", "filling", "fillips", "filmier", "filming",
03064     "filters", "finagle", "finales", "finally", "finance", "finches",
03065     "finders", "finding", "finesse", "fingers", "finicky", "finises",
03066     "finking", "finnier", "firearm", "firebug", "firefly", "fireman",
03067     "firemen", "firings", "firmest", "firming", "firring", "firstly",
03068     "fiscals", "fishers", "fishery", "fishier", "fishing", "fishnet",
03069     "fissile", "fission", "fissure", "fistful", "fitment", "fitness",
03070     "fitters", "fittest", "fitting", "fixable", "fixated", "fixates",
03071     "fixedly", "fixings", "fixture", "fizzier", "fizzing", "fizzled",
03072     "fizzles", "flaccid", "flagged", "flagons", "flailed", "flakier",
03073     "flaking", "flambes", "flaming", "flanges", "flanked", "flannel",
03074     "flapped", "flapper", "flaring", "flashed", "flasher", "flashes",
03075     "flatbed", "flatcar", "flatlet", "flatted", "flatten", "flatter",
03076     "flattop", "flaunts", "flawing", "flaying", "fleabag", "fleapit",
03077     "flecked", "fledged", "fleeced", "fleeces", "fleeing", "fleeted",
03078     "fleeter", "fleshed", "fleshes", "fleshly", "flexing", "flicked",
03079     "flicker", "flights", "flighty", "flipped", "flipper", "flirted",
03080     "flitted", "floated", "floater", "flocked", "flogged", "flooded",
03081     "flooder", "floored", "flopped", "florets", "florins", "florist",
03082     "flossed", "flosses", "flotsam", "flounce", "floured", "flouted",
03083     "flowers", "flowery", "flowing", "flubbed", "fluency", "fluents",
03084     "fluffed", "fluidly", "flukier", "fluking", "flummox", "flunked",
03085     "flushed", "flusher", "flushes", "fluster", "fluting", "flutist",
03086     "flutter", "fluvial", "fluxing", "flyaway", "flyleaf", "flyover",
03087     "flypast", "foaling", "foamier", "foaming", "fobbing", "focused",
03088     "focuses", "fodders", "foggier", "fogging", "foghorn", "foibles",
03089     "foiling", "foisted", "folders", "folding", "foliage", "follies",
03090     "follows", "foments", "fondant", "fondest", "fonding", "fondled",
03091     "fondles", "fondues", "foodies", "foolery", "fooling", "foolish",
03092     "footage", "footers", "footing", "footman", "footmen", "footsie",
03093     "fopping", "foppish", "foraged", "forager", "forages", "forayed",
03094     "forbade", "forbear", "forbids", "forbore", "forceps", "forcing",
03095     "fording", "forearm", "foreign", "foreleg", "foreman", "foremen",
03096     "foresaw", "foresee", "forests", "forever", "forfeit", "forgave",
03097     "forgers", "forgery", "forgets", "forging", "forgive", "forgoes",
03098     "forgone", "forkful", "forking", "forlorn", "formals", "formats",
03099     "forming", "formula", "forsake", "forsook", "forties", "fortify",
03100     "fortune", "forward", "forwent", "fossils", "fosters", "foulest",
03101     "fouling", "founded", "founder", "foundry", "fourths", "fowling",
03102     "foxhole", "foxhunt", "foxiest", "foxtrot", "fractal", "fragile",
03103     "frailer", "frailty", "framers", "framing", "franked", "franker",
03104     "frankly", "frantic", "frappes", "fraught", "fraying", "frazzle",
03105     "freaked", "freckle", "freebie", "freedom", "freeing", "freeman",
03106     "freemen", "freesia", "freeway", "freezer", "freezes", "freight",
03107     "freshen", "fresher", "freshet", "freshly", "fretful", "fretted",
03108     "friable", "fridges", "friends", "friezed", "friezes", "frigate",
03109     "frigged", "frights", "frilled", "fringed", "fringes", "frisked",
03110     "frisson", "fritter", "frizzed", "frizzes", "frizzle", "frogman",
03111     "frogmen", "frolics", "frontal", "fronted", "frosted", "frothed",
03112     "frowned", "fruited", "fuchsia", "fuckers", "fucking", "fuddled",
03113     "fuddles", "fudging", "fulcrum", "fullest", "fulling", "fulsome",
03114     "fumbled", "fumbler", "fumbles", "funding", "funeral", "funfair",
03115     "fungals", "fungoid", "fungous", "funkier", "funking", "funnels",
03116     "funnest", "funnier", "funnies", "funnily", "furbish", "furious",
03117     "furling", "furlong", "furnace", "furnish", "furrier", "furring",
03118     "furrows", "further", "furtive", "fusible", "fusions", "fussier",
03119     "fussily", "fussing", "fusspot", "fustian", "fustier", "futures",
03120     "futzing", "fuzzier", "fuzzily", "fuzzing", "gabbier", "gabbing",
03121     "gabbled", "gabbles", "gabling", "gadding", "gadgets", "gaffers",
03122     "gaffing", "gagging", "gaggles", "gainers", "gainful", "gaining",
03123     "gainsay", "gaiters", "gallant", "galleon", "gallery", "galleys",
03124     "galling", "gallium", "gallons", "gallops", "gallows", "galores",
03125     "galumph", "gambits", "gambled", "gambler", "gambles", "gambols",
03126     "gametes", "gamiest", "gamines", "ganders", "ganging", "ganglia",
03127     "gangsta", "gangway", "gannets", "gantlet", "gaolers", "gaoling",
03128     "gapings", "garaged", "garages", "garbage", "garbing", "garbled",
03129     "garbles", "gardens", "gargled", "gargles", "garland", "garlics",
03130     "garment", "garners", "garnets", "garnish", "garrets", "garrote",
03131     "garters", "gasbags", "gaseous", "gashing", "gaskets", "gasohol",
03132     "gasping", "gassier", "gassing", "gastric", "gateaux", "gateway",
03133     "gathers", "gaucher", "gauchos", "gaudier", "gaudily", "gaunted",
03134     "gaunter", "gauzier", "gavotte", "gawkier", "gawkies", "gawkily",
03135     "gawking", "gawping", "gayness", "gazebos", "gazelle", "gazette",
03136     "gazumps", "gearbox", "gearing", "geekier", "geezers", "gelatin",
03137     "gelding", "gelling", "genders", "general", "generic", "geneses",
03138     "genesis", "genetic", "genital", "genning", "genomes", "genteel",
03139     "gentian", "gentile", "gentled", "gentler", "gentles", "genuine",
03140     "geology", "gerbils", "germane", "gerunds", "gestalt", "gestate",
03141     "gesture", "getaway", "getting", "gewgaws", "geysers", "ghastly",
03142     "gherkin", "ghettos", "ghosted", "ghostly", "gibbers", "gibbets",
03143     "gibbons", "giblets", "giddier", "giddily", "gifting", "gigging",
03144     "giggled", "giggler", "giggles", "gigolos", "gilding", "gillies",
03145     "gimlets", "gimmick", "gimpier", "gingers", "gingery", "gingham",
03146     "ginning", "ginseng", "giraffe", "girders", "girding", "girdled",
03147     "girdles", "girlish", "girting", "gizzard", "glacial", "glacier",
03148     "gladden", "gladder", "glanced", "glances", "glaring", "glassed",
03149     "glasses", "glazier", "glazing", "gleamed", "gleaned", "gleeful",
03150     "glibber", "gliders", "gliding", "glimmer", "glimpse", "glinted",
03151     "glisten", "glitter", "gloated", "globing", "globule", "glopped",
03152     "gloried", "glories", "glorify", "glossed", "glosses", "glottis",
03153     "gloving", "glowers", "glowing", "glucose", "gluiest", "glummer",
03154     "glutted", "glutton", "gnarled", "gnashed", "gnashes", "gnawing",
03155     "gnocchi", "gnomish", "goading", "goalies", "goaling", "goatees",
03156     "gobbets", "gobbing", "gobbled", "gobbler", "gobbles", "goblets",
03157     "goblins", "goddamn", "goddess", "godhood", "godless", "godlier",
03158     "godlike", "godsend", "godsons", "goggled", "goggles", "goldest",
03159     "golfers", "golfing", "gollies", "gondola", "gonging", "goobers",
03160     "goodbye", "goodies", "goodish", "goofier", "goofing", "gooiest",
03161     "goosing", "gophers", "gorging", "gorgons", "goriest", "gorilla",
03162     "gosling", "gospels", "gossips", "gossipy", "gouache", "gougers",
03163     "gouging", "goulash", "gourmet", "goutier", "governs", "gowning",
03164     "grabbed", "grabber", "gracing", "grackle", "graders", "grading",
03165     "gradual", "grafted", "grafter", "grammar", "grammes", "granary",
03166     "grandad", "grandee", "grander", "grandly", "grandma", "grandpa",
03167     "granges", "granite", "granola", "granted", "granule", "graphed",
03168     "graphic", "graping", "grapnel", "grapple", "grasped", "grassed",
03169     "grasses", "graters", "gratify", "grating", "gratins", "gravels",
03170     "gravely", "gravest", "gravies", "graving", "gravity", "grayish",
03171     "grazing", "greased", "greaser", "greases", "greater", "greatly",
03172     "greened", "greener", "greeted", "gremlin", "grenade", "gridded",
03173     "griddle", "griding", "grieved", "grieves", "griffin", "grilled",
03174     "grilles", "grimace", "grimier", "griming", "grimmer", "grinder",
03175     "gringos", "grinned", "griping", "gripped", "grippes", "gristle",
03176     "gristly", "gritted", "gritter", "grizzle", "grizzly", "groaned",
03177     "grocers", "grocery", "grommet", "groomed", "grooved", "grooves",
03178     "groping", "grossed", "grosser", "grosses", "grossly", "grouchy",
03179     "grounds", "grouped", "grouper", "groupie", "groused", "grouses",
03180     "grouted", "grovels", "growers", "growing", "growled", "grownup",
03181     "growths", "groynes", "grubbed", "grudged", "grudges", "gruffed",
03182     "gruffer", "gruffly", "grumble", "grunted", "guarded", "guessed",
03183     "guesser", "guesses", "guested", "guffaws", "guiding", "guilder",
03184     "guiling", "guineas", "guitars", "gulches", "gullets", "gullies",
03185     "gulling", "gulping", "gumball", "gumboot", "gumdrop", "gummier",
03186     "gumming", "gumshoe", "gunboat", "gunfire", "gunners", "gunnery",
03187     "gunning", "gunshot", "gunwale", "guppies", "gurgled", "gurgles",
03188     "gurneys", "gushers", "gushier", "gushing", "gussets", "gustier",
03189     "gusting", "gutless", "gutsier", "gutters", "gutting", "guvnors",
03190     "guzzled", "guzzler", "guzzles", "gymnast", "gymslip", "gypping",
03191     "gypsies", "gyrated", "gyrates", "habitat", "hackers", "hacking",
03192     "hackles", "hackney", "hacksaw", "haddock", "hafnium", "haggard",
03193     "hagging", "haggled", "haggler", "haggles", "hailing", "haircut",
03194     "hairdos", "hairier", "hairnet", "hairpin", "halberd", "halcyon",
03195     "halfway", "halfwit", "halibut", "hallows", "hallway", "halogen",
03196     "haloing", "halters", "halting", "halving", "halyard", "hamlets",
03197     "hammers", "hamming", "hammock", "hampers", "hamster", "handbag",
03198     "handcar", "handful", "handgun", "handier", "handily", "handing",
03199     "handled", "handler", "handles", "handout", "handsaw", "handset",
03200     "hangars", "hangdog", "hangers", "hanging", "hangman", "hangmen",
03201     "hangout", "hankers", "hankies", "hansoms", "hapless", "happens",
03202     "happier", "happily", "hardens", "hardest", "hardier", "hardily",
03203     "hardtop", "harelip", "haricot", "harking", "harlots", "harmful",
03204     "harming", "harmony", "harness", "harpies", "harping", "harpist",
03205     "harpoon", "harried", "harries", "harrows", "harsher", "harshly",
03206     "harvest", "hashing", "hashish", "hassled", "hassles", "hassock",
03207     "hastens", "hastier", "hastily", "hasting", "hatband", "hatched",
03208     "hatches", "hatchet", "hateful", "hatpins", "hatreds", "hatters",
03209     "hatting", "haughty", "haulage", "haulers", "haulier", "hauling",
03210     "haunted", "hauteur", "hawkers", "hawking", "hawkish", "hawsers",
03211     "haycock", "hayloft", "haymows", "hayrick", "hayride", "hayseed",
03212     "haywire", "hazards", "haziest", "hazings", "headers", "headier",
03213     "heading", "headman", "headmen", "headset", "headway", "healers",
03214     "healing", "healthy", "heaping", "hearers", "hearing", "hearken",
03215     "hearsay", "hearsed", "hearses", "hearted", "hearten", "hearths",
03216     "heaters", "heathen", "heather", "heating", "heavens", "heavier",
03217     "heavies", "heavily", "heaving", "heckled", "heckler", "heckles",
03218     "hectare", "hectics", "hectors", "hedging", "heedful", "heeding",
03219     "heehaws", "heeling", "heftier", "heftily", "hefting", "heifers",
03220     "heights", "heinous", "heiress", "heisted", "helical", "helices",
03221     "helipad", "helling", "hellion", "hellish", "helluva", "helmets",
03222     "helpers", "helpful", "helping", "hemline", "hemlock", "hemming",
03223     "hennaed", "henpeck", "hepatic", "heppest", "heralds", "herbage",
03224     "herbals", "herding", "heretic", "hermits", "hernias", "heroics",
03225     "heroine", "heroins", "heroism", "herring", "herself", "hessian",
03226     "heteros", "hexagon", "heydays", "hibachi", "hickeys", "hickory",
03227     "hideous", "hideout", "hidings", "highboy", "highers", "highest",
03228     "highway", "hijacks", "hillier", "hillock", "hilltop", "himself",
03229     "hinders", "hinging", "hinting", "hipbath", "hippest", "hippier",
03230     "hippies", "hipping", "hipster", "hirsute", "hissing", "history",
03231     "hitched", "hitches", "hitters", "hitting", "hoarded", "hoarder",
03232     "hoarier", "hoarser", "hoaxers", "hoaxing", "hobbies", "hobbled",
03233     "hobbles", "hobnail", "hobnobs", "hoboing", "hocking", "hoedown",
03234     "hogging", "hoggish", "hogwash", "hoicked", "hoisted", "hokiest",
03235     "holdall", "holders", "holding", "holdout", "holdups", "holiday",
03236     "holiest", "hollers", "hollies", "hollows", "holster", "homaged",
03237     "homages", "homburg", "homeboy", "homered", "homiest", "homonym",
03238     "honchos", "honesty", "honeyed", "honkies", "honking", "hooding",
03239     "hoodlum", "hoodoos", "hoofers", "hoofing", "hookahs", "hookers",
03240     "hookier", "hooking", "hookups", "hooping", "hoorays", "hooters",
03241     "hooting", "hoovers", "hopeful", "hoppers", "hopping", "hording",
03242     "horizon", "hormone", "hornets", "hornier", "horrify", "horrors",
03243     "horsier", "horsing", "hosanna", "hosiery", "hospice", "hostage",
03244     "hostels", "hostess", "hostile", "hosting", "hostler", "hotbeds",
03245     "hotcake", "hotfoot", "hothead", "hotness", "hotpots", "hotshot",
03246     "hottest", "hotting", "hounded", "housing", "hovered", "howdahs",
03247     "howdied", "howdies", "however", "howlers", "howling", "hubbies",
03248     "hubbubs", "hubcaps", "huddled", "huddles", "huffier", "huffily",
03249     "huffing", "hugging", "hulaing", "hulking", "hulling", "humaner",
03250     "humanly", "humbled", "humbler", "humbles", "humbugs", "humdrum",
03251     "humerus", "humidor", "humming", "hummock", "humping", "hunched",
03252     "hunches", "hundred", "hungers", "hunkers", "hunkier", "hunters",
03253     "hunting", "hurdled", "hurdler", "hurdles", "hurlers", "hurling",
03254     "hurried", "hurries", "hurtful", "hurting", "hurtled", "hurtles",
03255     "husband", "hushing", "huskers", "huskier", "huskies", "huskily",
03256     "husking", "hussars", "hussies", "hustled", "hustler", "hustles",
03257     "hutched", "hutches", "hybrids", "hydrant", "hydrate", "hygiene",
03258     "hymnals", "hymning", "hyphens", "iambics", "iceberg", "icecaps",
03259     "icicles", "iciness", "ickiest", "ideally", "idiotic", "idyllic",
03260     "iffiest", "igneous", "ignited", "ignites", "ignoble", "ignobly",
03261     "ignored", "ignores", "iguanas", "illegal", "illicit", "illness",
03262     "imagery", "imagine", "imaging", "imbibed", "imbibes", "imbuing",
03263     "imitate", "immense", "immerse", "immoral", "immured", "immures",
03264     "impacts", "impairs", "impalas", "impaled", "impales", "impanel",
03265     "imparts", "impasse", "impeach", "impeded", "impedes", "impends",
03266     "imperil", "impetus", "impiety", "impinge", "impious", "implant",
03267     "implied", "implies", "implode", "implore", "imports", "imposed",
03268     "imposes", "impound", "impress", "imprint", "improve", "impugns",
03269     "impulse", "impurer", "imputed", "imputes", "inanely", "inanest",
03270     "inanity", "inboard", "inbound", "inbreds", "inbreed", "inbuilt",
03271     "incense", "inching", "incised", "incises", "incisor", "incited",
03272     "incites", "incline", "include", "incomer", "incomes", "incubus",
03273     "indeeds", "indents", "indexed", "indexes", "indicts", "indoors",
03274     "induced", "induces", "inducts", "indulge", "ineptly", "inertia",
03275     "inertly", "inexact", "infancy", "infants", "infects", "inferno",
03276     "infests", "infidel", "infield", "infills", "inflame", "inflate",
03277     "inflect", "inflict", "inflows", "informs", "infused", "infuses",
03278     "ingests", "ingrain", "ingrate", "ingress", "ingrown", "inhabit",
03279     "inhaled", "inhaler", "inhales", "inhered", "inheres", "inherit",
03280     "inhibit", "inhuman", "initial", "injects", "injured", "injures",
03281     "inkblot", "inkiest", "inkling", "inkwell", "inmates", "innards",
03282     "innings", "inquest", "inroads", "insaner", "inseams", "insects",
03283     "inserts", "inshore", "insider", "insides", "insight", "insipid",
03284     "insists", "insofar", "insoles", "inspect", "inspire", "install",
03285     "instant", "instead", "insteps", "instill", "insular", "insulin",
03286     "insults", "insured", "insurer", "insures", "intakes", "integer",
03287     "intends", "intense", "intents", "interim", "interns", "intoned",
03288     "intones", "intrude", "intuits", "inuring", "invaded", "invader",
03289     "invades", "invalid", "inveigh", "invents", "inverse", "inverts",
03290     "invests", "invited", "invites", "invoice", "invoked", "invokes",
03291     "involve", "inwards", "ipecacs", "irately", "iratest", "iridium",
03292     "irksome", "ironies", "ironing", "islands", "isobars", "isolate",
03293     "isotope", "issuing", "isthmus", "italics", "itchier", "itching",
03294     "iterate", "ivories", "jabbers", "jabbing", "jackals", "jackass",
03295     "jackdaw", "jackets", "jacking", "jackpot", "jaguars", "jailers",
03296     "jailing", "jambing", "jammier", "jamming", "jangled", "jangles",
03297     "janitor", "jarring", "jasmine", "jaunted", "javelin", "jawbone",
03298     "jawline", "jaywalk", "jazzier", "jazzing", "jealous", "jeering",
03299     "jellied", "jellies", "jelling", "jemmied", "jemmies", "jerkier",
03300     "jerkily", "jerking", "jerkins", "jerseys", "jesters", "jesting",
03301     "jetties", "jetting", "jewelry", "jibbing", "jiffies", "jiggers",
03302     "jigging", "jiggled", "jiggles", "jigsaws", "jilting", "jimmied",
03303     "jimmies", "jingled", "jingles", "jinking", "jinxing", "jitneys",
03304     "jitters", "jittery", "jobbers", "jobbing", "jobless", "jockeys",
03305     "jocking", "jocular", "joggers", "jogging", "joggled", "joggles",
03306     "joiners", "joinery", "joining", "jointed", "jointly", "jokiest",
03307     "jollied", "jollier", "jollies", "jollity", "jolting", "jonquil",
03308     "joshing", "jostled", "jostles", "jotters", "jotting", "jounced",
03309     "jounces", "journal", "journey", "journos", "jousted", "joyless",
03310     "joyride", "joyrode", "jubilee", "judders", "judging", "jugfuls",
03311     "jugging", "juggled", "juggler", "juggles", "jugular", "juicers",
03312     "juicier", "juicing", "jujitsu", "jujubes", "jukebox", "jumbled",
03313     "jumbles", "jumpers", "jumpier", "jumping", "jungles", "juniors",
03314     "juniper", "junkers", "junkets", "junkier", "junkies", "junking",
03315     "jurists", "juryman", "jurymen", "justest", "justice", "justify",
03316     "jutting", "karakul", "karaoke", "katydid", "kayaked", "keeling",
03317     "keenest", "keening", "keepers", "keeping", "kegging", "kelvins",
03318     "kennels", "kenning", "keratin", "kernels", "kestrel", "ketches",
03319     "ketchup", "kettles", "keyhole", "keynote", "keypads", "keyword",
03320     "kibbutz", "kickers", "kickier", "kicking", "kickoff", "kidders",
03321     "kiddied", "kiddies", "kidding", "kidnaps", "kidneys", "killers",
03322     "killing", "killjoy", "kilning", "kiloton", "kimonos", "kindest",
03323     "kindled", "kindles", "kindred", "kinetic", "kinfolk", "kingdom",
03324     "kingpin", "kinkier", "kinking", "kinship", "kinsman", "kinsmen",
03325     "kippers", "kipping", "kirking", "kissers", "kissing", "kitchen",
03326     "kithing", "kitschy", "kittens", "kitties", "kitting", "klaxons",
03327     "klutzes", "knacked", "knacker", "knavery", "knavish", "kneaded",
03328     "kneader", "kneecap", "kneeing", "knelled", "knicker", "knifing",
03329     "knights", "knitted", "knitter", "knobbly", "knocked", "knocker",
03330     "knotted", "knowing", "knuckle", "kookier", "kooking", "kopecks",
03331     "koshers", "kowtows", "krypton", "kumquat", "labials", "laciest",
03332     "lackeys", "lacking", "laconic", "lacquer", "lactate", "lactose",
03333     "lacunae", "ladders", "laddies", "laddish", "ladings", "ladling",
03334     "ladybug", "laggard", "lagging", "lagoons", "lambada", "lambent",
03335     "lambing", "lambkin", "laments", "lamming", "lampoon", "lamprey",
03336     "lancers", "lancets", "lancing", "landing", "languid", "languor",
03337     "lankest", "lankier", "lanolin", "lantern", "lanyard", "lapdogs",
03338     "lapping", "lapsing", "laptops", "lapwing", "larceny", "larches",
03339     "larders", "larding", "largely", "largess", "largest", "largish",
03340     "lariats", "larking", "lasagna", "lashing", "lassies", "lassoed",
03341     "lasting", "latched", "latches", "latency", "latents", "lateral",
03342     "lathers", "lathery", "lathing", "latrine", "lattice", "lauding",
03343     "laughed", "launder", "laundry", "laurels", "lawless", "lawsuit",
03344     "lawyers", "laxness", "layaway", "layered", "layette", "layoffs",
03345     "layouts", "layover", "laziest", "lazying", "leached", "leaches",
03346     "leaders", "leading", "leafier", "leafing", "leaflet", "leagued",
03347     "leagues", "leakage", "leakier", "leaking", "leanest", "leaning",
03348     "leaping", "learner", "leashed", "leashes", "leasing", "leather",
03349     "leavens", "leavers", "leaving", "lechers", "lechery", "leching",
03350     "lectern", "lecture", "ledgers", "leeched", "leeches", "leerier",
03351     "leering", "leeward", "leftest", "lefties", "leftism", "leftist",
03352     "legally", "legated", "legatee", "legates", "legatos", "legends",
03353     "leggier", "legging", "legible", "legibly", "legions", "legless",
03354     "legroom", "legumes", "legwork", "leisure", "lemming", "lemoned",
03355     "lenders", "lending", "lengths", "lengthy", "lenient", "lentils",
03356     "leonine", "leopard", "leotard", "leprosy", "leprous", "lesbian",
03357     "lesions", "lessees", "lessens", "lessons", "lessors", "letches",
03358     "letdown", "lethals", "letters", "letting", "lettuce", "levered",
03359     "levying", "lewdest", "lexical", "lexicon", "liaised", "liaises",
03360     "liaison", "libbing", "liberal", "liberty", "libidos", "library",
03361     "lichens", "licking", "liefest", "lifting", "liftoff", "lighted",
03362     "lighten", "lighter", "lightly", "lignite", "likable", "likened",
03363     "lilting", "limbers", "limboed", "limeade", "limiest", "limited",
03364     "limning", "limpest", "limpets", "limping", "linctus", "lindens",
03365     "lineage", "lineman", "linemen", "lineups", "lingers", "lingoes",
03366     "lingual", "linings", "linkage", "linking", "linkman", "linkmen",
03367     "linkups", "linnets", "linseed", "lintels", "lioness", "lipread",
03368     "liquefy", "liqueur", "liquids", "liquors", "lisping", "lissome",
03369     "listens", "listing", "litchis", "literal", "lithely", "lithest",
03370     "lithium", "litters", "littler", "liturgy", "livable", "livened",
03371     "lividly", "livings", "lizards", "loaders", "loading", "loafers",
03372     "loafing", "loamier", "loaners", "loaning", "loathed", "loather",
03373     "loathes", "lobbied", "lobbies", "lobbing", "lobster", "localed",
03374     "locales", "locally", "located", "locates", "lockers", "lockets",
03375     "locking", "lockjaw", "lockout", "lockups", "locusts", "lodgers",
03376     "lodging", "loftier", "loftily", "lofting", "logbook", "loggers",
03377     "logging", "logical", "logjams", "loiters", "lollies", "lolling",
03378     "lollops", "longbow", "longest", "longing", "longish", "loofahs",
03379     "lookers", "looking", "lookout", "looming", "loonier", "loonies",
03380     "loopier", "looping", "loosely", "loosens", "loosest", "loosing",
03381     "looters", "looting", "lopping", "lording", "lorries", "lotions",
03382     "lottery", "lotuses", "loudest", "lounged", "lounger", "lounges",
03383     "louring", "lousier", "lousing", "loutish", "lovable", "lovings",
03384     "lowbrow", "lowdown", "lowered", "lowland", "lowlier", "lowness",
03385     "loyaler", "loyally", "loyalty", "lozenge", "lubbers", "lucidly",
03386     "luckier", "luckily", "lucking", "luggage", "lugging", "lughole",
03387     "lullaby", "lulling", "lumbago", "lumbers", "lumpier", "lumping",
03388     "lumpish", "lunatic", "lunched", "lunches", "lungful", "lunging",
03389     "lurched", "lurches", "luridly", "lurking", "lushest", "lustful",
03390     "lustier", "lustily", "lusting", "luvvies", "lyceums", "lynched",
03391     "lynches", "lyrical", "macabre", "macadam", "machete", "machine",
03392     "macrons", "madcaps", "maddens", "madders", "maddest", "madness",
03393     "maestro", "mafiosi", "mafioso", "magenta", "maggots", "magical",
03394     "magnate", "magneto", "magnets", "magnify", "magnums", "magpies",
03395     "mahatma", "maidens", "mailbag", "mailbox", "mailers", "mailing",
03396     "mailman", "mailmen", "maiming", "majesty", "majored", "majorly",
03397     "makeups", "makings", "malaise", "malaria", "maliced", "malices",
03398     "maligns", "mallard", "mallets", "malling", "mallows", "malteds",
03399     "malting", "mamboed", "mammals", "mammary", "mammies", "mammoth",
03400     "manacle", "managed", "manager", "manages", "manatee", "mandala",
03401     "mandate", "mangers", "mangier", "manging", "mangled", "mangles",
03402     "mangoes", "manhole", "manhood", "manhunt", "maniacs", "manikin",
03403     "mankind", "manlier", "manners", "manning", "mannish", "mansard",
03404     "mansion", "mantels", "mantled", "mantles", "mantras", "manuals",
03405     "manumit", "manured", "manures", "mapping", "marabou", "maracas",
03406     "marauds", "marbled", "marbles", "marched", "marcher", "marches",
03407     "margins", "marimba", "marinas", "mariner", "marines", "marital",
03408     "markers", "markets", "marking", "markups", "marlins", "marmots",
03409     "maroons", "marquee", "marques", "marquis", "married", "marries",
03410     "marring", "marrows", "marshal", "marshes", "martens", "martial",
03411     "marting", "martini", "martins", "martyrs", "marvels", "mascara",
03412     "mascots", "mashers", "mashing", "masking", "masonic", "masonry",
03413     "masques", "massage", "masseur", "massifs", "massing", "massive",
03414     "masters", "mastery", "mastiff", "mastoid", "matador", "matched",
03415     "matches", "matrons", "matters", "matting", "mattock", "matured",
03416     "maturer", "matures", "matzohs", "matzoth", "maudlin", "mauling",
03417     "maunder", "mawkish", "maxilla", "maximal", "maximum", "maydays",
03418     "mayoral", "maypole", "meadows", "mealier", "mealies", "mealing",
03419     "meander", "meanest", "meanies", "meaning", "measles", "measure",
03420     "meatier", "meddled", "meddler", "meddles", "medians", "mediate",
03421     "medical", "medicos", "mediums", "medleys", "medulla", "meekest",
03422     "meeting", "megaton", "melange", "melanin", "melding", "mellows",
03423     "melodic", "melting", "members", "memento", "memoirs", "menaced",
03424     "menaces", "menages", "menders", "mending", "menfolk", "menials",
03425     "menorah", "menthol", "mention", "mentors", "mercies", "mercury",
03426     "mergers", "merging", "merinos", "merited", "mermaid", "merrier",
03427     "merrily", "mescals", "meshing", "message", "messiah", "messier",
03428     "messily", "messing", "mestizo", "meteors", "methane", "methods",
03429     "metrics", "mewling", "miasmas", "mickeys", "microbe", "microns",
03430     "middies", "middles", "midgets", "midland", "midmost", "midriff",
03431     "midterm", "midtown", "midways", "midweek", "midwife", "midyear",
03432     "miffing", "migrant", "migrate", "mildest", "mildews", "mileage",
03433     "milieus", "militia", "milkier", "milking", "milkman", "milkmen",
03434     "milksop", "millage", "millers", "milling", "million", "mimetic",
03435     "mimicry", "mimosas", "minaret", "mincers", "mincing", "minders",
03436     "mindful", "minding", "mindset", "mineral", "mingled", "mingles",
03437     "minibar", "minibus", "minicab", "minicam", "minimal", "minimum",
03438     "minions", "minivan", "minnows", "minored", "minster", "mintier",
03439     "minting", "minuend", "minuets", "minuses", "minuted", "minuter",
03440     "minutes", "minutia", "miracle", "mirages", "mirrors", "miscall",
03441     "miscast", "miscued", "miscues", "misdeal", "misdeed", "misdoes",
03442     "misdone", "miserly", "misfire", "misfits", "mishaps", "mishear",
03443     "mishits", "mislaid", "mislays", "mislead", "misname", "misplay",
03444     "misread", "misrule", "missals", "missile", "missing", "mission",
03445     "missive", "misstep", "mistake", "misters", "mistier", "mistily",
03446     "mistime", "misting", "mistook", "mistype", "misused", "misuses",
03447     "mitosis", "mittens", "mixture", "mizzens", "moaners", "moaning",
03448     "moating", "mobbing", "mobiles", "mobster", "mockers", "mockery",
03449     "mocking", "moderns", "modesty", "modicum", "modular", "modules",
03450     "modulus", "moggies", "moisten", "moister", "moistly", "molders",
03451     "molests", "mollify", "mollusk", "molting", "moments", "mommies",
03452     "monarch", "moneyed", "mongers", "mongols", "mongrel", "moniker",
03453     "monitor", "monkeys", "monocle", "monsoon", "monster", "montage",
03454     "monthly", "mooched", "moocher", "mooches", "moodier", "moodily",
03455     "mooning", "moonlit", "moorhen", "mooring", "mooting", "moppets",
03456     "mopping", "moraine", "morally", "mordant", "moreish", "morgues",
03457     "morning", "morocco", "moronic", "morphed", "morphia", "morrows",
03458     "morsels", "mortals", "mortars", "mortify", "mortise", "mosaics",
03459     "moseyed", "moshing", "mosques", "mossier", "mossies", "mossing",
03460     "mothers", "motiles", "motions", "motives", "motleys", "motlier",
03461     "motored", "mottled", "mottles", "mottoes", "moulder", "moulted",
03462     "mounded", "mounted", "mourned", "mourner", "mousers", "mousier",
03463     "mousing", "moussed", "mousses", "mouthed", "movable", "muckier",
03464     "mucking", "muddied", "muddier", "muddies", "muddled", "muddles",
03465     "mudflap", "mudflat", "mudpack", "muezzin", "muffing", "muffins",
03466     "muffled", "muffler", "muffles", "muggers", "muggier", "mugging",
03467     "muggins", "mukluks", "mulatto", "mulched", "mulches", "mullahs",
03468     "mullets", "mulling", "mullion", "mumbled", "mumbler", "mumbles",
03469     "mummers", "mummery", "mummies", "mummify", "munched", "munches",
03470     "mundane", "murders", "murkier", "murkily", "murmurs", "muscled",
03471     "muscles", "museums", "mushers", "mushier", "mushing", "musical",
03472     "musings", "muskets", "muskier", "musking", "muskrat", "mussels",
03473     "mussier", "mussing", "mustang", "mustard", "musters", "mustier",
03474     "mutable", "mutants", "mutated", "mutates", "mutters", "muumuus",
03475     "muzzily", "muzzled", "muzzles", "myopics", "myriads", "myrtles",
03476     "mystery", "mystics", "mystify", "nabbing", "naffest", "nagging",
03477     "nailing", "naively", "naivest", "naivety", "nakeder", "nakedly",
03478     "nannied", "nannies", "napalms", "naphtha", "napkins", "nappier",
03479     "nappies", "napping", "narcing", "narrate", "narrows", "narwhal",
03480     "nasally", "nascent", "nastier", "nastily", "nations", "natives",
03481     "natters", "nattier", "nattily", "natural", "natured", "natures",
03482     "naughty", "navvies", "nearest", "nearing", "neatens", "neatest",
03483     "nebulae", "nebular", "necking", "necktie", "needful", "needier",
03484     "needing", "needled", "needles", "negated", "negates", "neglect",
03485     "negroid", "neighed", "neither", "nemeses", "nemesis", "neonate",
03486     "nephews", "nerdier", "nervier", "nerving", "nervous", "nesting",
03487     "nestled", "nestles", "netball", "netting", "nettled", "nettles",
03488     "network", "neurone", "neurons", "neuters", "neutral", "neutron",
03489     "newbies", "newborn", "newness", "newsboy", "newsier", "newsing",
03490     "newsman", "newsmen", "newtons", "nexuses", "nibbing", "nibbled",
03491     "nibbler", "nibbles", "nickels", "nicking", "niftier", "niggard",
03492     "niggers", "niggled", "niggles", "nighest", "nightie", "nightly",
03493     "nilling", "nimbler", "ninepin", "ninnies", "nippers", "nippier",
03494     "nipping", "nippled", "nipples", "nirvana", "nitpick", "nitrate",
03495     "nitwits", "nobbled", "nobbles", "noblest", "nodding", "noddles",
03496     "nodular", "nodules", "noggins", "noisier", "noisily", "noising",
03497     "noisome", "nomadic", "nominal", "nominee", "noncoms", "nonplus",
03498     "nonskid", "nonstop", "nonuser", "nonzero", "noodled", "noodles",
03499     "noonday", "nooning", "norming", "nosebag", "nosegay", "noshing",
03500     "nostril", "nostrum", "notable", "notably", "notched", "notches",
03501     "notelet", "notepad", "nothing", "noticed", "notices", "notions",
03502     "nougats", "nourish", "novella", "novelty", "novices", "nowhere",
03503     "noxious", "nozzles", "nuanced", "nuances", "nuclear", "nucleic",
03504     "nucleus", "nudging", "nudists", "nuggets", "nullify", "nullity",
03505     "numbers", "numbest", "numbing", "numeral", "numeric", "nuncios",
03506     "nunnery", "nuptial", "nursery", "nursing", "nurture", "nutcase",
03507     "nutmeat", "nutmegs", "nutrias", "nutters", "nuttier", "nutting",
03508     "nuzzled", "nuzzles", "nymphet", "nymphos", "oarlock", "oarsman",
03509     "oarsmen", "oatcake", "oatmeal", "obelisk", "obesity", "obeying",
03510     "objects", "obliged", "obliges", "oblique", "oblongs", "obloquy",
03511     "oboists", "obscene", "obscure", "obsequy", "observe", "obtains",
03512     "obtrude", "obtuser", "obverse", "obviate", "obvious", "ocarina",
03513     "occlude", "oceanic", "ocelots", "octagon", "octanes", "octaves",
03514     "octopus", "oculars", "oculist", "oddball", "oddment", "oddness",
03515     "odorous", "odyssey", "oeuvres", "offbeat", "offends", "offered",
03516     "offhand", "officer", "offices", "offings", "offload", "offsets",
03517     "offside", "oftener", "oilcans", "oiliest", "oilskin", "oinking",
03518     "oldened", "oldster", "omelets", "ominous", "omitted", "omnibus",
03519     "oneness", "onerous", "oneself", "onetime", "ongoing", "onioned",
03520     "onliest", "onshore", "onstage", "onwards", "opacity", "opaqued",
03521     "opaquer", "opaques", "openers", "openest", "opening", "operand",
03522     "operate", "opiates", "opining", "opinion", "opossum", "opposed",
03523     "opposes", "oppress", "optical", "optimal", "optimum", "options",
03524     "opulent", "oracled", "oracles", "oranges", "orating", "oration",
03525     "orators", "oratory", "orbital", "orbited", "orchard", "orchids",
03526     "ordains", "ordeals", "ordered", "orderly", "ordinal", "oregano",
03527     "organdy", "organic", "orgasms", "orients", "orifice", "origami",
03528     "origins", "orioles", "orotund", "orphans", "osmosis", "osmotic",
03529     "ospreys", "ostlers", "ostrich", "ottered", "ottoman", "ousters",
03530     "ousting", "outages", "outback", "outbids", "outcast", "outcome",
03531     "outcrop", "outdoes", "outdone", "outdoor", "outface", "outfall",
03532     "outfits", "outflow", "outgoes", "outgrew", "outgrow", "outguns",
03533     "outings", "outlaid", "outlast", "outlaws", "outlays", "outlets",
03534     "outline", "outlive", "outlook", "outpace", "outplay", "outpost",
03535     "outputs", "outrage", "outrank", "outruns", "outsell", "outsets",
03536     "outside", "outsize", "outsold", "outstay", "outtake", "outvote",
03537     "outward", "outwear", "outwith", "outwits", "outwore", "outwork",
03538     "outworn", "ovarian", "ovaries", "ovation", "overact", "overage",
03539     "overall", "overarm", "overate", "overawe", "overbid", "overdid",
03540     "overdue", "overeat", "overfly", "overjoy", "overlap", "overlay",
03541     "overlie", "overpay", "overran", "overrun", "oversaw", "oversee",
03542     "overtax", "overtly", "overuse", "oviduct", "ovulate", "oxcarts",
03543     "oxfords", "oxtails", "oxymora", "oysters", "paciest", "pacific",
03544     "package", "packers", "packets", "packing", "paddies", "padding",
03545     "paddled", "paddles", "paddock", "padlock", "paellas", "pageant",
03546     "pageboy", "pagodas", "pailful", "painful", "paining", "painted",
03547     "painter", "pairing", "paisley", "palaces", "palatal", "palates",
03548     "palaver", "palette", "palings", "pallets", "palling", "palmier",
03549     "palming", "palmist", "palmtop", "palpate", "palsied", "palsies",
03550     "pampers", "panacea", "panache", "panamas", "pancake", "panders",
03551     "panging", "panicky", "pannier", "panning", "panoply", "pansies",
03552     "panther", "panties", "panting", "papayas", "papered", "papilla",
03553     "papists", "papoose", "papping", "paprika", "papyrus", "parable",
03554     "paraded", "parades", "paradox", "paragon", "parapet", "parasol",
03555     "parboil", "parcels", "parched", "parches", "pardner", "pardons",
03556     "parents", "parfait", "pariahs", "parings", "parking", "parkway",
03557     "parlays", "parleys", "parlous", "paroled", "parolee", "paroles",
03558     "parquet", "parried", "parries", "parring", "parrots", "parsecs",
03559     "parsing", "parsley", "parsnip", "parsons", "partake", "partial",
03560     "partied", "parties", "parting", "partner", "partook", "partway",
03561     "parvenu", "paschal", "passage", "passels", "passing", "passion",
03562     "passive", "passkey", "pastels", "pastern", "pastier", "pasties",
03563     "pastime", "pasting", "pastors", "pasture", "patched", "patches",
03564     "patella", "patents", "pathway", "patient", "patinas", "patriot",
03565     "patrols", "patrons", "patsies", "pattern", "patters", "patties",
03566     "patting", "paucity", "paunchy", "paupers", "pausing", "pavings",
03567     "pavlova", "pawning", "payable", "payback", "paydays", "payload",
03568     "payment", "payoffs", "payouts", "payroll", "payslip", "peaches",
03569     "peacock", "peafowl", "peahens", "peaking", "pealing", "peanuts",
03570     "pearled", "peasant", "pebbled", "pebbles", "peccary", "peckers",
03571     "pecking", "peckish", "pedalos", "pedants", "peddled", "peddler",
03572     "peddles", "peeking", "peelers", "peeling", "peepers", "peeping",
03573     "peerage", "peeress", "peering", "peeving", "peevish", "peewees",
03574     "peewits", "pegging", "pelagic", "pelican", "pellets", "pelmets",
03575     "pelting", "pelvics", "penalty", "penance", "pencils", "pendant",
03576     "pendent", "pending", "penguin", "penises", "pennant", "pennies",
03577     "penning", "pennons", "pension", "pensive", "peonage", "peonies",
03578     "peopled", "peoples", "peppers", "peppery", "peppier", "pepping",
03579     "peptics", "percale", "percent", "perched", "perches", "perfect",
03580     "perfidy", "perform", "perfume", "pergola", "perhaps", "perigee",
03581     "periods", "periwig", "perjure", "perjury", "perkier", "perkily",
03582     "perking", "perming", "permits", "permute", "perplex", "persist",
03583     "persona", "persons", "perspex", "pertain", "pertest", "perturb",
03584     "perusal", "perused", "peruses", "pervade", "pervert", "pesetas",
03585     "peskier", "pessary", "pesters", "pestled", "pestles", "petards",
03586     "petered", "petiole", "petites", "petrels", "petrify", "pettier",
03587     "petties", "pettily", "petting", "petunia", "pewters", "pfennig",
03588     "phalanx", "phallic", "phallus", "phantom", "pharaoh", "pharynx",
03589     "phasing", "phenoms", "philter", "philtre", "phobias", "phobics",
03590     "phoebes", "phoenix", "phoneme", "phonics", "phonied", "phonier",
03591     "phonies", "phoning", "phooeys", "photoed", "photons", "phrasal",
03592     "phrased", "phrases", "physics", "physios", "pianist", "pianola",
03593     "piazzas", "picador", "piccolo", "pickers", "pickets", "pickier",
03594     "picking", "pickled", "pickles", "pickups", "picnics", "picture",
03595     "piddled", "piddles", "pidgins", "piebald", "piecing", "pierced",
03596     "pierces", "pigeons", "piggery", "piggier", "piggies", "pigging",
03597     "piggish", "piglets", "pigment", "pigpens", "pigskin", "pigtail",
03598     "pileups", "pilfers", "pilgrim", "pilings", "pillage", "pillars",
03599     "pillbox", "pillion", "pillock", "pillory", "pillows", "piloted",
03600     "pimento", "pimping", "pimpled", "pimples", "pinball", "pincers",
03601     "pinched", "pinches", "pinging", "pinhead", "pinhole", "pinions",
03602     "pinkest", "pinkeye", "pinkies", "pinking", "pinkish", "pinnate",
03603     "pinnies", "pinning", "pioneer", "piously", "pipette", "pipping",
03604     "pippins", "piquant", "piquing", "piranha", "pirated", "pirates",
03605     "pissers", "pissing", "pissoir", "pistils", "pistols", "pistons",
03606     "pitched", "pitcher", "pitches", "piteous", "pitfall", "pithead",
03607     "pithier", "pithily", "pitiful", "pitting", "pitying", "pivotal",
03608     "pivoted", "placard", "placate", "placebo", "placers", "placing",
03609     "placket", "plagued", "plagues", "plaided", "plainer", "plainly",
03610     "plaints", "plaited", "planers", "planets", "planing", "planked",
03611     "planned", "planner", "planted", "planter", "plaques", "plaster",
03612     "plastic", "plateau", "platens", "plating", "platoon", "platter",
03613     "plaudit", "playact", "playboy", "players", "playful", "playing",
03614     "playoff", "playpen", "pleaded", "pleader", "pleased", "pleases",
03615     "pleated", "plectra", "pledged", "pledges", "plenary", "plenums",
03616     "pliable", "pliancy", "plights", "plinths", "plodded", "plodder",
03617     "plonked", "plonker", "plopped", "plosive", "plotted", "plotter",
03618     "plovers", "plucked", "plugged", "plumage", "plumbed", "plumber",
03619     "pluming", "plummet", "plumped", "plumper", "plunder", "plunged",
03620     "plunger", "plunges", "plunked", "plurals", "plusher", "plussed",
03621     "plywood", "poached", "poacher", "poaches", "pockets", "pocking",
03622     "podding", "podiums", "poesied", "poesies", "poetess", "pogroms",
03623     "pointed", "pointer", "poising", "poisons", "pokiest", "poleaxe",
03624     "polecat", "polemic", "policed", "polices", "politer", "politic",
03625     "polkaed", "pollard", "polling", "pollute", "polygon", "polymer",
03626     "pomaded", "pomades", "pommels", "pommies", "pompoms", "pompous",
03627     "ponchos", "poncing", "ponders", "ponging", "poniard", "pontiff",
03628     "pontoon", "ponying", "pooched", "pooches", "poodles", "poofter",
03629     "poohing", "pooling", "pooping", "poorest", "popcorn", "popguns",
03630     "poplars", "popover", "poppers", "poppets", "poppies", "popping",
03631     "popular", "porches", "porcine", "porkers", "porkies", "portage",
03632     "portals", "portend", "portent", "porters", "portico", "porting",
03633     "portion", "portray", "poseurs", "poshest", "poshing", "posited",
03634     "possess", "possums", "postage", "postbag", "postbox", "postdoc",
03635     "posters", "posties", "posting", "postman", "postmen", "posture",
03636     "postwar", "potable", "potency", "potfuls", "pothead", "pothole",
03637     "pothook", "potions", "potluck", "potpies", "potshot", "pottage",
03638     "potters", "pottery", "pottier", "potties", "potting", "pouched",
03639     "pouches", "pouffes", "poultry", "pounced", "pounces", "pounded",
03640     "pouring", "pouting", "poverty", "powders", "powdery", "powered",
03641     "powwows", "prairie", "praised", "praises", "praline", "pranced",
03642     "prancer", "prances", "pranged", "prating", "prattle", "prawned",
03643     "prayers", "praying", "preachy", "precast", "precede", "precept",
03644     "precise", "precook", "predate", "predict", "preemie", "preempt",
03645     "preened", "prefabs", "preface", "prefect", "prefers", "preheat",
03646     "prelate", "prelims", "prelude", "premier", "premise", "premium",
03647     "prepaid", "prepare", "prepays", "prepped", "prequel", "presage",
03648     "present", "presets", "preside", "pressed", "presses", "pressie",
03649     "prestos", "presume", "preteen", "pretend", "pretext", "pretzel",
03650     "prevail", "prevent", "preview", "preying", "prezzie", "pricier",
03651     "pricing", "pricked", "prickle", "prickly", "priding", "priests",
03652     "primacy", "primary", "primate", "primers", "priming", "primmer",
03653     "primped", "primula", "princes", "printed", "printer", "prisons",
03654     "prithee", "privacy", "private", "privets", "privier", "privies",
03655     "probate", "probing", "probity", "problem", "proceed", "process",
03656     "proctor", "procure", "prodded", "prodigy", "produce", "product",
03657     "profane", "profess", "proffer", "profile", "profits", "profuse",
03658     "progeny", "project", "prolong", "promise", "promote", "prompts",
03659     "pronged", "pronoun", "proofed", "propane", "propels", "prophet",
03660     "propose", "propped", "prorate", "prosaic", "prosier", "prosody",
03661     "prosper", "protean", "protect", "protein", "protest", "protons",
03662     "prouder", "proudly", "proverb", "provide", "proving", "proviso",
03663     "provoke", "provost", "prowess", "prowled", "prowler", "proxies",
03664     "prudent", "prudery", "prudish", "pruning", "psyched", "psyches",
03665     "psychic", "psychos", "pubbing", "puberty", "publish", "puckers",
03666     "pucking", "puckish", "pudding", "puddled", "puddles", "pudenda",
03667     "pudgier", "pueblos", "puerile", "puffers", "puffier", "puffing",
03668     "puffins", "pullers", "pullets", "pulleys", "pulling", "pullout",
03669     "pulpier", "pulping", "pulpits", "pulsars", "pulsate", "pulsing",
03670     "pumices", "pummels", "pumping", "pumpkin", "punched", "punches",
03671     "pundits", "pungent", "puniest", "punkest", "punnets", "punning",
03672     "punster", "punters", "punting", "pupated", "pupates", "puppets",
03673     "puppied", "puppies", "pupping", "purging", "purists", "puritan",
03674     "purling", "purloin", "purpler", "purples", "purport", "purpose",
03675     "purring", "pursers", "pursing", "pursued", "pursuer", "pursues",
03676     "pursuit", "purveys", "purview", "pushers", "pushier", "pushily",
03677     "pushing", "pushpin", "pussier", "pussies", "pustule", "putrefy",
03678     "putters", "puttied", "putties", "putting", "puzzled", "puzzler",
03679     "puzzles", "pygmies", "pyramid", "pyrites", "pythons", "quacked",
03680     "quaffed", "quahogs", "quailed", "quaking", "qualify", "quality",
03681     "quangos", "quantum", "quarrel", "quarter", "quartet", "quartos",
03682     "quasars", "quashed", "quashes", "quavers", "quavery", "queened",
03683     "queenly", "queered", "queerer", "queerly", "quelled", "queried",
03684     "queries", "quested", "quibble", "quiches", "quicken", "quicker",
03685     "quickie", "quickly", "quieted", "quieten", "quieter", "quietly",
03686     "quietus", "quilted", "quilter", "quinces", "quinine", "quintet",
03687     "quipped", "quirked", "quiting", "quitter", "quivers", "quizzed",
03688     "quizzes", "quoited", "quondam", "quorate", "quorums", "quoting",
03689     "rabbits", "rabbles", "rabidly", "raccoon", "racemes", "raceway",
03690     "raciest", "racists", "rackets", "racking", "raddled", "radials",
03691     "radiant", "radiate", "radical", "radioed", "raffish", "raffled",
03692     "raffles", "rafters", "rafting", "raggedy", "ragging", "raglans",
03693     "ragouts", "ragtags", "ragtime", "ragweed", "ragwort", "raiders",
03694     "raiding", "railing", "railway", "raiment", "rainbow", "rainier",
03695     "raining", "raising", "raisins", "rallied", "rallies", "rambled",
03696     "rambler", "rambles", "ramekin", "ramming", "rampage", "rampant",
03697     "rampart", "ramrods", "ranched", "rancher", "ranches", "randier",
03698     "rangers", "rangier", "ranging", "rankest", "ranking", "rankled",
03699     "rankles", "ransack", "ransoms", "ranting", "rapider", "rapidly",
03700     "rapiers", "rapists", "rappels", "rappers", "rapping", "rapport",
03701     "raptors", "rapture", "rascals", "rashers", "rashest", "raspier",
03702     "rasping", "ratbags", "ratchet", "ratings", "rations", "rattans",
03703     "rattier", "ratting", "rattled", "rattler", "rattles", "rattrap",
03704     "raucous", "raunchy", "ravaged", "ravages", "ravened", "ravined",
03705     "ravines", "ravings", "ravioli", "rawhide", "rawness", "razzing",
03706     "reached", "reaches", "reacted", "reactor", "readers", "readied",
03707     "readier", "readies", "readily", "reading", "readmit", "readout",
03708     "reagent", "realest", "realign", "realism", "realist", "reality",
03709     "reamers", "reaming", "reapers", "reaping", "reapply", "rearing",
03710     "rearmed", "reasons", "rebated", "rebates", "rebinds", "rebirth",
03711     "reboots", "rebound", "rebuffs", "rebuild", "rebuilt", "rebuked",
03712     "rebukes", "rebuses", "recalls", "recants", "recasts", "receded",
03713     "recedes", "receipt", "receive", "recheck", "recipes", "recital",
03714     "recited", "recites", "reckons", "reclaim", "recline", "recluse",
03715     "recoils", "records", "recount", "recoups", "recover", "recruit",
03716     "rectify", "rectors", "rectory", "rectums", "recycle", "redcaps",
03717     "redcoat", "reddens", "reddest", "reddish", "redeems", "redhead",
03718     "redneck", "redness", "redoing", "redoubt", "redound", "redraft",
03719     "redrawn", "redraws", "redress", "redskin", "reduced", "reduces",
03720     "redwood", "reedier", "reefers", "reefing", "reeking", "reelect",
03721     "reeling", "reenact", "reenter", "reentry", "reeving", "referee",
03722     "reffing", "refiled", "refiles", "refills", "refined", "refiner",
03723     "refines", "reflate", "reflect", "refocus", "reforms", "refract",
03724     "refrain", "refresh", "refuels", "refugee", "refuges", "refunds",
03725     "refusal", "refused", "refuses", "refuted", "refutes", "regains",
03726     "regaled", "regales", "regalia", "regally", "regards", "regatta",
03727     "regency", "regents", "regimen", "regimes", "regions", "regress",
03728     "regrets", "regroup", "regular", "reheats", "rehired", "rehires",
03729     "rehouse", "reigned", "reining", "reissue", "rejects", "rejoice",
03730     "rejoins", "relabel", "relapse", "related", "relates", "relaxed",
03731     "relaxes", "relayed", "relearn", "release", "relents", "reliant",
03732     "reliefs", "relieve", "relived", "relives", "reloads", "relying",
03733     "remades", "remains", "remakes", "remands", "remarks", "remarry",
03734     "rematch", "reminds", "remixed", "remixes", "remnant", "remodel",
03735     "remolds", "remorse", "remoter", "remotes", "remould", "remount",
03736     "removal", "removed", "remover", "removes", "renamed", "renames",
03737     "renders", "rending", "reneged", "reneges", "renewal", "renewed",
03738     "renowns", "rentals", "renters", "renting", "reoccur", "reopens",
03739     "reorder", "repaint", "repairs", "repasts", "repeals", "repeats",
03740     "repents", "replace", "replays", "replete", "replica", "replied",
03741     "replies", "reports", "reposed", "reposes", "repress", "reprint",
03742     "reprise", "reproof", "reprove", "reptile", "repulse", "reputed",
03743     "reputes", "request", "requiem", "require", "requite", "rereads",
03744     "reroute", "resales", "rescind", "rescued", "rescuer", "rescues",
03745     "resells", "resents", "reserve", "reshape", "resided", "resides",
03746     "residue", "resigns", "resists", "resolve", "resorts", "resound",
03747     "respect", "respell", "respire", "respite", "respond", "restart",
03748     "restate", "restful", "resting", "restive", "restock", "restore",
03749     "restudy", "results", "resumed", "resumes", "retails", "retains",
03750     "retaken", "retakes", "retards", "retched", "retches", "retells",
03751     "rethink", "retinal", "retinas", "retinue", "retired", "retiree",
03752     "retires", "retools", "retorts", "retouch", "retrace", "retract",
03753     "retrain", "retread", "retreat", "retrial", "retried", "retries",
03754     "retsina", "returns", "retyped", "retypes", "reunify", "reunion",
03755     "reunite", "reusing", "revalue", "revamps", "reveals", "revelry",
03756     "revenge", "revenue", "revered", "reveres", "reverie", "reverse",
03757     "reverts", "reviews", "reviled", "reviler", "reviles", "revised",
03758     "revises", "revisit", "revival", "revived", "revives", "revoked",
03759     "revokes", "revolts", "revolve", "revving", "rewards", "rewinds",
03760     "rewired", "rewires", "rewords", "reworks", "rewound", "rewrite",
03761     "rewrote", "rhizome", "rhodium", "rhombus", "rhubarb", "rhyming",
03762     "rhythms", "ribbing", "ribbons", "richest", "rickets", "rickety",
03763     "ricking", "ricotta", "ridding", "riddled", "riddles", "ridging",
03764     "riffing", "riffled", "riffles", "rifling", "rifting", "rigging",
03765     "righted", "righter", "rightly", "rigidly", "rilling", "rimless",
03766     "rimming", "rinding", "ringers", "ringing", "ringlet", "rinking",
03767     "rinsing", "rioters", "rioting", "riotous", "ripcord", "ripened",
03768     "riposte", "rippers", "ripping", "rippled", "ripples", "ripsaws",
03769     "risible", "risings", "riskier", "riskily", "risking", "risotto",
03770     "rissole", "rituals", "ritzier", "rivalry", "riveted", "riviera",
03771     "rivulet", "roaches", "roadbed", "roadies", "roadway", "roamers",
03772     "roaming", "roaring", "roasted", "roaster", "robbers", "robbery",
03773     "robbing", "robotic", "rockers", "rockery", "rockets", "rockier",
03774     "rocking", "rodents", "roebuck", "rogered", "roguery", "roguish",
03775     "roiling", "roister", "rollers", "rollick", "rolling", "rollmop",
03776     "romaine", "romance", "rompers", "romping", "roofers", "roofing",
03777     "rooftop", "rookery", "rookier", "rookies", "rooking", "roomers",
03778     "roomful", "roomier", "rooming", "roosted", "rooster", "rooting",
03779     "roseate", "rosebud", "rosette", "rosiest", "rosined", "rosters",
03780     "rostrum", "rotated", "rotates", "rottens", "rotters", "rotting",
03781     "rotunda", "rotunds", "roughed", "roughen", "rougher", "roughly",
03782     "rouging", "rounded", "roundel", "rounder", "roundly", "roundup",
03783     "rousing", "rousted", "routine", "routing", "rowboat", "rowdier",
03784     "rowdies", "rowdily", "rowlock", "royally", "royalty", "rubbers",
03785     "rubbery", "rubbing", "rubbish", "rubbled", "rubbles", "rubdown",
03786     "rubella", "rubiest", "rubrics", "rubying", "rucking", "rudders",
03787     "ruddied", "ruddier", "ruddies", "ruffian", "ruffing", "ruffled",
03788     "ruffles", "rugging", "ruining", "ruinous", "rulered", "rulings",
03789     "rumbaed", "rumbled", "rumbles", "rummage", "rummest", "rumping",
03790     "rumpled", "rumples", "runaway", "rundown", "runnels", "runners",
03791     "runnier", "running", "runoffs", "runways", "rupture", "rushing",
03792     "russets", "rustics", "rustier", "rusting", "rustled", "rustler",
03793     "rustles", "rutting", "sabling", "sachems", "sachets", "sackful",
03794     "sacking", "saddens", "saddest", "saddled", "saddler", "saddles",
03795     "sadists", "sadness", "safaris", "saffron", "sagging", "saguaro",
03796     "sailing", "sailors", "sainted", "saintly", "salaams", "salamis",
03797     "salient", "salines", "sallied", "sallies", "salmons", "saloons",
03798     "saltbox", "saltest", "saltier", "salties", "saltine", "salting",
03799     "saluted", "salutes", "salvage", "salvers", "salving", "sambaed",
03800     "samosas", "samovar", "sampans", "sampled", "sampler", "samples",
03801     "samurai", "sanctum", "sandals", "sandbag", "sandbar", "sandbox",
03802     "sanders", "sandhog", "sandier", "sanding", "sandlot", "sandman",
03803     "sandmen", "sandpit", "sangria", "sapient", "sapling", "sappers",
03804     "sappier", "sapping", "sarcasm", "sarcoma", "sardine", "sarnies",
03805     "sarongs", "sashays", "sassier", "sassing", "satanic", "satchel",
03806     "satiate", "satiety", "satined", "satires", "satiric", "satisfy",
03807     "satraps", "satsuma", "saucers", "saucier", "saucily", "saucing",
03808     "saunaed", "saunter", "sausage", "savaged", "savager", "savages",
03809     "savanna", "savants", "savings", "savvied", "savvier", "savvies",
03810     "sawdust", "sawmill", "sawyers", "sayings", "scabbed", "scabies",
03811     "scalars", "scalded", "scalene", "scalier", "scaling", "scallop",
03812     "scalped", "scalpel", "scalper", "scammed", "scamper", "scandal",
03813     "scanned", "scanner", "scanted", "scanter", "scapula", "scarabs",
03814     "scarcer", "scarfed", "scarier", "scarify", "scaring", "scarlet",
03815     "scarper", "scarred", "scarves", "scatted", "scatter", "scenery",
03816     "scening", "scented", "schemed", "schemer", "schemes", "scherzo",
03817     "schisms", "schizos", "schleps", "schlock", "schmuck", "schnook",
03818     "scholar", "schools", "sciatic", "science", "scissor", "scoffed",
03819     "scolded", "sconces", "scooped", "scooted", "scooter", "scoping",
03820     "scorers", "scoring", "scorned", "scotchs", "scoured", "scourer",
03821     "scourge", "scouted", "scouter", "scowled", "scraggy", "scraped",
03822     "scraper", "scrapes", "scrapie", "scrappy", "scratch", "scrawls",
03823     "scrawny", "screams", "screech", "screeds", "screens", "screwed",
03824     "scribes", "scrimps", "scripts", "scrolls", "scrooge", "scrotum",
03825     "scrubby", "scruffs", "scruffy", "scrumps", "scrumpy", "scrunch",
03826     "scruple", "scubaed", "scudded", "scuffed", "scuffle", "sculled",
03827     "sculpts", "scumbag", "scummed", "scupper", "scuttle", "scythed",
03828     "scythes", "seabeds", "seabird", "seafood", "seagull", "sealant",
03829     "sealers", "sealing", "seamier", "seaming", "seaport", "searing",
03830     "seasick", "seaside", "seasons", "seating", "seaward", "seaways",
03831     "seaweed", "seceded", "secedes", "seclude", "seconds", "secrecy",
03832     "secrete", "secrets", "section", "sectors", "secular", "secured",
03833     "securer", "secures", "sedated", "sedater", "sedates", "seduced",
03834     "seducer", "seduces", "seedbed", "seedier", "seeding", "seeings",
03835     "seekers", "seeking", "seeming", "seepage", "seeping", "seesaws",
03836     "seethed", "seethes", "segment", "seismic", "seizing", "seizure",
03837     "selects", "selfish", "sellers", "selling", "sellout", "seltzer",
03838     "selvage", "seminal", "seminar", "senates", "senator", "senders",
03839     "sending", "seniors", "sensing", "sensors", "sensory", "sensual",
03840     "septets", "septics", "sequels", "sequins", "sequoia", "serapes",
03841     "seraphs", "serened", "serener", "serenes", "serfdom", "serials",
03842     "serious", "sermons", "serpent", "serried", "servant", "servers",
03843     "servery", "service", "servile", "serving", "sesames", "session",
03844     "setback", "settees", "setters", "setting", "settled", "settler",
03845     "settles", "seventh", "seventy", "several", "severed", "severer",
03846     "sexiest", "sexists", "sexless", "sexpots", "sextant", "sextets",
03847     "sextons", "shacked", "shackle", "shadier", "shading", "shadows",
03848     "shadowy", "shafted", "shagged", "shaikhs", "shakers", "shakeup",
03849     "shakier", "shakily", "shaking", "shallot", "shallow", "shamans",
03850     "shamble", "shaming", "shammed", "shampoo", "shapely", "shaping",
03851     "shariah", "sharing", "sharked", "sharped", "sharpen", "sharper",
03852     "sharply", "shatter", "shavers", "shaving", "shawled", "sheared",
03853     "shearer", "sheathe", "sheaths", "sheaves", "shebang", "shebeen",
03854     "sheered", "sheerer", "sheilas", "shekels", "shellac", "shelled",
03855     "sheller", "shelter", "shelved", "shelves", "sherbet", "sheriff",
03856     "shiatsu", "shields", "shifted", "shilled", "shimmed", "shimmer",
03857     "shindig", "shiners", "shingle", "shinier", "shining", "shinned",
03858     "shipped", "shipper", "shirked", "shirker", "shirred", "shirted",
03859     "shitted", "shivers", "shivery", "shoaled", "shocked", "shocker",
03860     "shoeing", "shoguns", "shooing", "shooter", "shopped", "shopper",
03861     "shoring", "shorted", "shorten", "shorter", "shortly", "shotgun",
03862     "shouted", "shovels", "shoving", "showbiz", "showers", "showery",
03863     "showier", "showily", "showing", "showman", "showmen", "showoff",
03864     "shrewed", "shrieks", "shrikes", "shrills", "shrilly", "shrimps",
03865     "shrines", "shrinks", "shrived", "shrivel", "shriven", "shrives",
03866     "shrouds", "shrubby", "shticks", "shucked", "shudder", "shuffle",
03867     "shunned", "shunted", "shushed", "shushes", "shuteye", "shutout",
03868     "shutter", "shuttle", "shyness", "shyster", "sibling", "sickbay",
03869     "sickbed", "sickens", "sickest", "sickies", "sicking", "sickled",
03870     "sickles", "sickout", "sidearm", "sidebar", "sidecar", "sidings",
03871     "sidling", "sierras", "siestas", "sieving", "sifters", "sifting",
03872     "sighing", "sighted", "signals", "signers", "signets", "signify",
03873     "signing", "silaged", "silages", "silence", "silents", "silicon",
03874     "silkens", "silkier", "silkies", "sillier", "sillies", "silting",
03875     "silvers", "silvery", "simians", "similar", "similes", "simmers",
03876     "simpers", "simpled", "simpler", "simples", "simplex", "sincere",
03877     "singers", "singing", "singled", "singles", "singlet", "sinkers",
03878     "sinking", "sinners", "sinning", "sinuous", "sinuses", "sipping",
03879     "sirloin", "sirocco", "sirring", "sissier", "sissies", "sisters",
03880     "sitcoms", "sitters", "sitting", "situate", "sixfold", "sixteen",
03881     "sixties", "sizable", "sizzled", "sizzler", "sizzles", "skaters",
03882     "skating", "skeeter", "skeined", "sketchy", "skewers", "skewing",
03883     "skibobs", "skidded", "skidpan", "skiffed", "skiffle", "skilled",
03884     "skillet", "skimmed", "skimped", "skinful", "skinned", "skipped",
03885     "skipper", "skirted", "skiting", "skitter", "skittle", "skivers",
03886     "skiving", "skulked", "skunked", "skycaps", "skydive", "skyjack",
03887     "skylark", "skyline", "skyward", "slabbed", "slacked", "slacken",
03888     "slacker", "slackly", "slagged", "slaking", "slaloms", "slammed",
03889     "slammer", "slander", "slanted", "slapped", "slapper", "slashed",
03890     "slashes", "slather", "slating", "slatted", "slavers", "slavery",
03891     "slaving", "slavish", "slayers", "slaying", "sleazes", "sledded",
03892     "sledged", "sledges", "sleeked", "sleeker", "sleekly", "sleeper",
03893     "sleeted", "sleeves", "sleighs", "slender", "sleuths", "slewing",
03894     "slicers", "slicing", "slicked", "slicker", "slickly", "sliders",
03895     "sliding", "slights", "slimier", "slimmed", "slimmer", "slipped",
03896     "slipper", "slipway", "slither", "slitted", "slitter", "slivers",
03897     "slobbed", "slobber", "slogans", "slogged", "sloping", "slopped",
03898     "sloshed", "sloshes", "slothed", "slotted", "slouchy", "sloughs",
03899     "slovens", "slowest", "slowing", "sludged", "sludges", "slugged",
03900     "slugger", "sluiced", "sluices", "slumber", "slummed", "slummer",
03901     "slumped", "slurped", "slurred", "slyness", "smacked", "smacker",
03902     "smalled", "smaller", "smarted", "smarten", "smarter", "smartly",
03903     "smashed", "smasher", "smashes", "smeared", "smelled", "smelted",
03904     "smelter", "smidgen", "smiling", "smirked", "smiting", "smitten",
03905     "smocked", "smokers", "smokier", "smokies", "smoking", "smoochy",
03906     "smooths", "smother", "smudged", "smudges", "smugged", "smugger",
03907     "smuggle", "snacked", "snaffle", "snagged", "snailed", "snakier",
03908     "snaking", "snapped", "snapper", "snaring", "snarled", "sneaked",
03909     "sneaker", "sneered", "sneezed", "sneezes", "snicked", "snicker",
03910     "snidely", "snidest", "sniffed", "sniffer", "sniffle", "snifter",
03911     "snipers", "sniping", "snipped", "snippet", "snivels", "snogged",
03912     "snooker", "snooped", "snooper", "snoozed", "snoozes", "snorers",
03913     "snoring", "snorkel", "snorted", "snotted", "snouted", "snowier",
03914     "snowing", "snowman", "snowmen", "snubbed", "snuffed", "snuffer",
03915     "snuffle", "snugged", "snugger", "snuggle", "soaking", "soapbox",
03916     "soapier", "soaping", "soaring", "sobbing", "sobered", "soberer",
03917     "soberly", "socials", "society", "sockets", "socking", "sodding",
03918     "softens", "softest", "softies", "soggier", "soggily", "soiling",
03919     "sojourn", "solaced", "solaces", "solaria", "solders", "soldier",
03920     "solicit", "solider", "solidly", "soloing", "soloist", "soluble",
03921     "solvent", "solvers", "solving", "someday", "somehow", "someone",
03922     "someway", "sonatas", "sonnets", "sonnies", "soonest", "soothed",
03923     "soother", "soothes", "sootier", "sophism", "sophist", "soppier",
03924     "sopping", "soprano", "sorbets", "sorcery", "sorghum", "sorrels",
03925     "sorrier", "sorrows", "sorters", "sortied", "sorties", "sorting",
03926     "sottish", "soughed", "soulful", "sounded", "sounder", "soundly",
03927     "soupier", "souping", "sourced", "sources", "sourest", "souring",
03928     "sousing", "soviets", "soybean", "sozzled", "spacial", "spacier",
03929     "spacing", "spading", "spammed", "spandex", "spangle", "spangly",
03930     "spaniel", "spanked", "spanned", "spanner", "sparely", "sparest",
03931     "sparing", "sparked", "sparkle", "sparkly", "sparred", "sparrer",
03932     "sparrow", "sparser", "spartan", "spasmed", "spastic", "spatial",
03933     "spatted", "spatter", "spatula", "spawned", "spaying", "speaker",
03934     "speared", "special", "species", "specify", "specked", "speckle",
03935     "spectra", "speeder", "speedup", "speller", "spender", "spewing",
03936     "spheres", "spicier", "spicing", "spiders", "spidery", "spieled",
03937     "spiffed", "spigots", "spikier", "spiking", "spinach", "spinals",
03938     "spindle", "spindly", "spinets", "spinier", "spinner", "spinney",
03939     "spirals", "spireas", "spirits", "spiting", "spitted", "spittle",
03940     "splashy", "splayed", "spleens", "spliced", "splicer", "splices",
03941     "spliffs", "splines", "splints", "splodge", "splotch", "splurge",
03942     "spoiler", "sponged", "sponger", "sponges", "sponsor", "spoofed",
03943     "spooked", "spooled", "spooned", "spoored", "sporing", "sporran",
03944     "sported", "spotlit", "spotted", "spotter", "spousal", "spouses",
03945     "spouted", "sprains", "sprangs", "sprawls", "sprayed", "sprayer",
03946     "spreads", "spriest", "springs", "springy", "sprints", "sprites",
03947     "sprouts", "spruced", "sprucer", "spruces", "spuming", "spumoni",
03948     "spunked", "spurned", "spurred", "spurted", "sputter", "squalid",
03949     "squalls", "squally", "squalor", "squared", "squarer", "squares",
03950     "squashy", "squawks", "squeaks", "squeaky", "squeals", "squeeze",
03951     "squelch", "squidgy", "squiffy", "squints", "squired", "squires",
03952     "squirms", "squirmy", "squirts", "squishy", "stabbed", "stabled",
03953     "stabler", "stables", "stacked", "stadium", "staffed", "staffer",
03954     "stagger", "staging", "staider", "staidly", "stained", "staking",
03955     "stalest", "staling", "stalked", "stalker", "stalled", "stamens",
03956     "stamina", "stammer", "stamped", "stances", "standby", "stanzas",
03957     "stapled", "stapler", "staples", "starchy", "stardom", "staring",
03958     "starked", "starker", "starkly", "starlet", "starlit", "starred",
03959     "started", "starter", "startle", "starved", "starves", "stashed",
03960     "stashes", "stately", "statics", "stating", "station", "statues",
03961     "stature", "statute", "staunch", "staving", "staying", "stealth",
03962     "steamed", "steamer", "steeled", "steeped", "steepen", "steeper",
03963     "steeple", "steeply", "steered", "steined", "stellar", "stemmed",
03964     "stencil", "stepped", "steppes", "stepson", "stereos", "sterile",
03965     "sterned", "sterner", "sternly", "sternum", "steroid", "stetson",
03966     "steward", "stewing", "sticker", "stickup", "stiffed", "stiffen",
03967     "stiffer", "stiffly", "stifled", "stifles", "stigmas", "stiling",
03968     "stilled", "stiller", "stilted", "stimuli", "stinger", "stinker",
03969     "stinted", "stipend", "stipple", "stirred", "stirrer", "stirrup",
03970     "stocked", "stogies", "stoical", "stokers", "stoking", "stomach",
03971     "stomped", "stonier", "stonily", "stoning", "stooges", "stooped",
03972     "stopgap", "stopped", "stopper", "storage", "storied", "storing",
03973     "stormed", "stouter", "stoutly", "stowage", "stowing", "strafed",
03974     "strafes", "strains", "straits", "strands", "strange", "stratum",
03975     "strawed", "strayed", "streaks", "streaky", "streams", "streets",
03976     "stretch", "strewed", "strewth", "strides", "striker", "strikes",
03977     "strings", "stringy", "striped", "stripes", "stripey", "striven",
03978     "strives", "strobes", "stroked", "strokes", "strolls", "strophe",
03979     "stroppy", "strudel", "stubbed", "stubble", "stubbly", "studded",
03980     "student", "studied", "studies", "studios", "stuffed", "stumble",
03981     "stumped", "stunned", "stunner", "stunted", "stupefy", "stupids",
03982     "stupors", "stutter", "styling", "stylish", "stylist", "stymied",
03983     "stymies", "styptic", "suavely", "suavest", "suavity", "subaqua",
03984     "subbing", "subdued", "subdues", "subhead", "subject", "subjoin",
03985     "sublets", "sublime", "submits", "suborns", "subplot", "subsets",
03986     "subside", "subsidy", "subsist", "subsoil", "subsume", "subteen",
03987     "subtend", "subtext", "subtler", "suburbs", "subvert", "subways",
03988     "subzero", "succeed", "success", "succubi", "succumb", "suckers",
03989     "sucking", "suckled", "suckles", "sucrose", "suction", "sudsier",
03990     "suffers", "suffice", "suffuse", "sugared", "suggest", "suicide",
03991     "suiting", "suitors", "sulfate", "sulfide", "sulkier", "sulkies",
03992     "sulkily", "sulking", "sullied", "sullies", "sultana", "sultans",
03993     "summary", "summers", "summery", "summing", "summits", "summons",
03994     "sunbeam", "sunbeds", "sunbelt", "sunburn", "sundaes", "sundeck",
03995     "sunders", "sundial", "sundown", "sunfish", "sunhats", "sunlamp",
03996     "sunless", "sunnier", "sunnies", "sunning", "sunrise", "sunroof",
03997     "sunsets", "sunspot", "suntans", "suntrap", "supered", "suppers",
03998     "supping", "suppler", "support", "suppose", "supreme", "supremo",
03999     "surface", "surfeit", "surfers", "surfing", "surgeon", "surgery",
04000     "surging", "surlier", "surmise", "surname", "surpass", "surplus",
04001     "surreal", "surreys", "surveys", "survive", "suspect", "suspend",
04002     "sussing", "sustain", "sutured", "sutures", "svelter", "swabbed",
04003     "swaddle", "swagged", "swagger", "swallow", "swamped", "swanked",
04004     "swanker", "swanned", "swapped", "swarmed", "swarthy", "swashed",
04005     "swashes", "swathed", "swathes", "swatted", "swatter", "swaying",
04006     "swearer", "sweater", "sweeper", "sweeten", "sweeter", "sweetie",
04007     "sweetly", "swelled", "sweller", "swelter", "swerved", "swerves",
04008     "swifted", "swifter", "swiftly", "swigged", "swilled", "swimmer",
04009     "swindle", "swinger", "swinish", "swiping", "swirled", "swished",
04010     "swisher", "swishes", "swivels", "swollen", "swooned", "swooped",
04011     "sworded", "swotted", "symbols", "symptom", "synapse", "syncing",
04012     "synergy", "synonym", "syringe", "systems", "tabbies", "tabbing",
04013     "tableau", "tablets", "tabling", "tabloid", "tabooed", "tabular",
04014     "tacitly", "tackier", "tackies", "tacking", "tackled", "tackler",
04015     "tackles", "tactful", "tactics", "tactile", "tadpole", "taffeta",
04016     "taffies", "tagging", "tailing", "tailors", "tainted", "takeoff",
04017     "takeout", "takings", "talents", "talkers", "talkies", "talking",
04018     "tallboy", "tallest", "tallied", "tallies", "tallyho", "tamable",
04019     "tamales", "tampers", "tamping", "tampons", "tanager", "tandems",
04020     "tangelo", "tangent", "tangier", "tangies", "tangled", "tangles",
04021     "tangoed", "tankard", "tankers", "tankful", "tanking", "tanners",
04022     "tannery", "tannest", "tanning", "tantrum", "tapered", "tapioca",
04023     "tappets", "tapping", "taproom", "taproot", "tardier", "tardies",
04024     "tardily", "targets", "tariffs", "tarmacs", "tarnish", "tarpons",
04025     "tarried", "tarrier", "tarries", "tarring", "tartans", "tartars",
04026     "tartest", "tarting", "tasking", "tasters", "tastier", "tasting",
04027     "tatters", "tattier", "tatties", "tatting", "tattled", "tattler",
04028     "tattles", "tattoos", "taunted", "tautens", "tautest", "tauting",
04029     "taverns", "tawnier", "taxable", "taxicab", "taxiing", "taxings",
04030     "taxiway", "teabags", "teacake", "teacher", "teaches", "teacups",
04031     "teaming", "teapots", "tearful", "teargas", "tearier", "tearing",
04032     "tearoom", "teasels", "teasers", "teasing", "teatime", "techies",
04033     "teddies", "tedious", "teeming", "teenage", "teenier", "teeters",
04034     "teethed", "teethes", "telexed", "telexes", "tellers", "tellies",
04035     "telling", "temblor", "tempera", "tempers", "tempest", "temping",
04036     "temples", "tempted", "tempter", "tempura", "tenable", "tenancy",
04037     "tenants", "tenders", "tending", "tendons", "tendril", "tenfold",
04038     "tenners", "tenpins", "tensely", "tensest", "tensile", "tensing",
04039     "tension", "tensors", "tenting", "tenuous", "tenured", "tenures",
04040     "tequila", "terming", "termini", "termite", "terning", "terrace",
04041     "terrain", "terrier", "terrify", "terrine", "terrors", "tersely",
04042     "tersest", "testate", "testers", "testier", "testify", "testily",
04043     "testing", "tetanus", "tethers", "textile", "textual", "texture",
04044     "thalami", "thanked", "thawing", "theeing", "theists", "theorem",
04045     "therapy", "thereby", "therein", "thereof", "thereon", "thereto",
04046     "thermal", "thermos", "thicken", "thicker", "thicket", "thickly",
04047     "thickos", "thieved", "thieves", "thimble", "thinker", "thinned",
04048     "thinner", "thirded", "thirdly", "thirsts", "thirsty", "thistle",
04049     "thither", "thorium", "thought", "thralls", "threads", "threats",
04050     "thrifts", "thrifty", "thrills", "thrived", "thrives", "throats",
04051     "throaty", "thrones", "throngs", "through", "thrower", "thrusts",
04052     "thruway", "thudded", "thumbed", "thumped", "thunder", "thwacks",
04053     "thwarts", "thyroid", "thyself", "tickers", "tickets", "ticking",
04054     "tickled", "tickles", "tidbits", "tiddler", "tidiest", "tidings",
04055     "tidying", "tiepins", "tiffing", "tighten", "tighter", "tightly",
04056     "tigress", "tillage", "tillers", "tilling", "tilting", "timbers",
04057     "timbres", "timider", "timidly", "timings", "timpani", "tinfoil",
04058     "tinging", "tingled", "tingles", "tiniest", "tinkers", "tinkled",
04059     "tinkles", "tinnier", "tinnies", "tinning", "tinsels", "tinting",
04060     "tippers", "tipping", "tippled", "tippler", "tipples", "tipsier",
04061     "tipsily", "tipster", "tiptoed", "tiptoes", "tiptops", "tirades",
04062     "tireder", "tiredly", "tirings", "tissues", "titanic", "titches",
04063     "tithing", "titling", "titmice", "titters", "titties", "titting",
04064     "tittled", "tittles", "titular", "tizzies", "toadied", "toadies",
04065     "toasted", "toaster", "tobacco", "toccata", "tocsins", "toddies",
04066     "toddled", "toddler", "toddles", "toecaps", "toehold", "toenail",
04067     "toerags", "toffees", "togging", "toggled", "toggles", "toilers",
04068     "toilets", "toiling", "tolling", "tombing", "tombola", "tomboys",
04069     "tomcats", "tongued", "tongues", "toniest", "tonight", "tonnage",
04070     "tonsils", "tonsure", "toolbar", "toolbox", "tooling", "toolkit",
04071     "toothed", "tooting", "tootled", "tootles", "tootsie", "topazes",
04072     "topcoat", "topiary", "topical", "topknot", "topless", "topmast",
04073     "topmost", "toppers", "topping", "toppled", "topples", "topsail",
04074     "topside", "topsoil", "topspin", "torched", "torches", "torment",
04075     "tornado", "torpedo", "torqued", "torques", "torrent", "torsion",
04076     "torture", "tossers", "tossing", "tossups", "totally", "totemic",
04077     "totters", "totting", "toucans", "touched", "touches", "toughed",
04078     "toughen", "tougher", "toughie", "toughly", "toupees", "touring",
04079     "tourism", "tourist", "tourney", "tousled", "tousles", "touting",
04080     "towards", "towered", "towhead", "townees", "townies", "towpath",
04081     "towrope", "toyboys", "tracers", "tracery", "trachea", "tracing",
04082     "tracked", "tracker", "tractor", "traders", "trading", "traduce",
04083     "traffic", "tragedy", "tragics", "trailed", "trailer", "trained",
04084     "trainee", "trainer", "traipse", "traitor", "tramcar", "trammed",
04085     "trammel", "tramped", "trample", "tramway", "trances", "tranche",
04086     "transit", "transom", "trapeze", "trapped", "trapper", "trashed",
04087     "trashes", "traumas", "travail", "travels", "trawled", "trawler",
04088     "treacle", "treacly", "treadle", "treason", "treated", "trebled",
04089     "trebles", "treeing", "treetop", "trefoil", "trekked", "trellis",
04090     "tremble", "tremolo", "tremors", "trended", "tresses", "trestle",
04091     "trialed", "tribune", "tribute", "triceps", "tricked", "trickle",
04092     "trident", "trifled", "trifler", "trifles", "trigger", "triking",
04093     "trilled", "trilogy", "trimmed", "trimmer", "trinity", "trinket",
04094     "tripled", "triples", "triplet", "tripods", "tripped", "tripper",
04095     "trisect", "tritely", "tritest", "triumph", "trivets", "trivial",
04096     "trochee", "trodden", "troikas", "trolled", "trolley", "trollop",
04097     "tromped", "trooped", "trooper", "tropics", "tropism", "trothed",
04098     "trotted", "trotter", "trouble", "troughs", "trounce", "trouped",
04099     "trouper", "troupes", "trouser", "trowels", "truancy", "truants",
04100     "trucked", "trucker", "truckle", "trudged", "trudges", "truffle",
04101     "truisms", "trumped", "trumpet", "trundle", "trunked", "trussed",
04102     "trusses", "trusted", "trustee", "tryings", "tryouts", "trysted",
04103     "tsarism", "tsarist", "tsunami", "tubbier", "tubular", "tuckers",
04104     "tucking", "tufting", "tugboat", "tugging", "tuition", "tumbled",
04105     "tumbler", "tumbles", "tumbrel", "tummies", "tumults", "tundras",
04106     "tuneful", "tunnels", "tunnies", "turbans", "turbine", "turbots",
04107     "tureens", "turfing", "turkeys", "turmoil", "turners", "turning",
04108     "turnips", "turnkey", "turnoff", "turnout", "turrets", "turtles",
04109     "tushing", "tussled", "tussles", "tussock", "tutored", "tutting",
04110     "tuxedos", "twaddle", "twanged", "tweaked", "tweeted", "tweeter",
04111     "twelfth", "twelves", "twiddle", "twiddly", "twigged", "twilled",
04112     "twinged", "twinges", "twining", "twinkle", "twinned", "twinset",
04113     "twirled", "twirler", "twisted", "twister", "twitchy", "twitted",
04114     "twitter", "twofers", "twofold", "twosome", "tycoons", "typeset",
04115     "typhoid", "typhoon", "typical", "typists", "tyranny", "tyrants",
04116     "ugliest", "uglying", "ukulele", "ulcered", "ululate", "umbrage",
04117     "umlauts", "umpired", "umpires", "umpteen", "unaided", "unarmed",
04118     "unasked", "unaware", "unbends", "unbinds", "unblock", "unbolts",
04119     "unbosom", "unbound", "unbowed", "uncanny", "uncased", "uncivil",
04120     "unclasp", "unclean", "unclear", "uncling", "uncoils", "uncorks",
04121     "uncouth", "uncover", "unction", "uncurls", "undated", "undergo",
04122     "undoing", "undress", "undying", "unearth", "uneaten", "unequal",
04123     "unfazed", "unfolds", "unfrock", "unfunny", "unfurls", "ungodly",
04124     "unguent", "unhands", "unhappy", "unheard", "unhinge", "unhitch",
04125     "unhooks", "unhorse", "unicorn", "unified", "unifies", "uniform",
04126     "uniquer", "unitary", "unities", "uniting", "unkempt", "unknown",
04127     "unlaced", "unlaces", "unlatch", "unlearn", "unleash", "unlikes",
04128     "unloads", "unlocks", "unloose", "unloved", "unlucky", "unmakes",
04129     "unmanly", "unmasks", "unmoral", "unmoved", "unnamed", "unnerve",
04130     "unpacks", "unpaved", "unpicks", "unplugs", "unquiet", "unquote",
04131     "unravel", "unready", "unrests", "unriper", "unrolls", "unsafer",
04132     "unscrew", "unseals", "unseats", "unseens", "unsnaps", "unsnarl",
04133     "unsound", "unstops", "unstuck", "untamed", "untiled", "untiles",
04134     "untried", "untruer", "untruth", "untwist", "untying", "unusual",
04135     "unveils", "unwaged", "unwinds", "unwiser", "unwound", "unwraps",
04136     "upbeats", "upbraid", "upchuck", "updated", "updater", "updates",
04137     "upended", "upfront", "upgrade", "uphills", "upholds", "uplands",
04138     "uplifts", "uploads", "upraise", "upright", "upriver", "uproars",
04139     "uproots", "upscale", "upshots", "upsides", "upstage", "upstart",
04140     "upstate", "upsurge", "upswing", "uptakes", "uptempo", "uptight",
04141     "uptrend", "upturns", "upwards", "uranium", "urbaner", "urchins",
04142     "urethra", "urgency", "urinals", "urinary", "urinate", "urology",
04143     "useless", "ushered", "usually", "usurers", "usurped", "usurper",
04144     "utensil", "uterine", "utility", "utopias", "uttered", "utterer",
04145     "utterly", "uvulars", "vacancy", "vacated", "vacates", "vaccine",
04146     "vacuity", "vacuous", "vacuums", "vaginae", "vaginal", "vagrant",
04147     "vaguely", "vaguest", "vainest", "valance", "valence", "valency",
04148     "valeted", "valiant", "validly", "valises", "valleys", "valuers",
04149     "valuing", "valving", "vamoose", "vamping", "vampire", "vandals",
04150     "vanilla", "vanning", "vantage", "variant", "variate", "variety",
04151     "various", "varlets", "varmint", "varnish", "varsity", "varying",
04152     "vassals", "vastest", "vatting", "vaulted", "vaulter", "vaunted",
04153     "vealing", "vectors", "veering", "veggies", "vegging", "vehicle",
04154     "veiling", "veining", "velvets", "velvety", "venally", "vending",
04155     "vendors", "veneers", "venison", "venting", "ventral", "venture",
04156     "veranda", "verbals", "verbena", "verbose", "verdant", "verdict",
04157     "verdure", "vergers", "verging", "veriest", "verruca", "versify",
04158     "versing", "version", "vertigo", "vesicle", "vespers", "vessels",
04159     "vestige", "vesting", "vetches", "veteran", "vetoing", "vetting",
04160     "viaduct", "vibrant", "vibrate", "vibrato", "viceroy", "vicious",
04161     "victims", "victors", "victory", "victual", "videoed", "viewers",
04162     "viewing", "village", "villain", "villein", "vinegar", "vintage",
04163     "vintner", "violate", "violent", "violets", "violins", "violist",
04164     "virgins", "virgule", "virtual", "virtues", "viruses", "visages",
04165     "visaing", "viscera", "viscose", "viscous", "visible", "visibly",
04166     "visions", "visited", "visitor", "vistaed", "visuals", "vitally",
04167     "vitamin", "vitiate", "vitriol", "vivaces", "vivaing", "vivider",
04168     "vividly", "viziers", "vocalic", "vocally", "voguing", "voguish",
04169     "voicing", "voiding", "volcano", "volleys", "voltage", "voltaic",
04170     "voluble", "volubly", "volumed", "volumes", "vomited", "voodoos",
04171     "vouched", "voucher", "vouches", "voyaged", "voyager", "voyages",
04172     "voyeurs", "vulture", "wackier", "wadding", "waddled", "waddles",
04173     "waffled", "waffles", "wafting", "wagered", "wagging", "waggish",
04174     "waggled", "waggles", "wagtail", "waifing", "wailing", "waisted",
04175     "waiters", "waiting", "waivers", "waiving", "wakeful", "wakened",
04176     "walkers", "walkies", "walking", "walkout", "walkway", "wallaby",
04177     "wallahs", "wallets", "walleye", "wallies", "walling", "wallops",
04178     "wallows", "walnuts", "waltzed", "waltzes", "wanders", "wangled",
04179     "wangles", "wankers", "wanking", "wannabe", "wannest", "wanting",
04180     "wantons", "wapitis", "warbled", "warbler", "warbles", "wardens",
04181     "warders", "warding", "warfare", "warhead", "wariest", "warlike",
04182     "warlock", "warlord", "warmers", "warmest", "warming", "warning",
04183     "warpath", "warping", "warrant", "warrens", "warring", "warrior",
04184     "warship", "warthog", "wartier", "wartime", "washers", "washing",
04185     "washout", "washtub", "waspish", "wassail", "wastage", "wasters",
04186     "wasting", "wastrel", "watched", "watcher", "watches", "watered",
04187     "wattage", "wattest", "wattled", "wattles", "wavelet", "wavered",
04188     "waviest", "waxiest", "waxwing", "waxwork", "waylaid", "waylays",
04189     "wayside", "wayward", "weakens", "weakest", "wealthy", "weaning",
04190     "weapons", "wearers", "wearied", "wearier", "wearies", "wearily",
04191     "wearing", "weasels", "weather", "weavers", "weaving", "webbing",
04192     "website", "wedding", "wedging", "wedlock", "weeders", "weedier",
04193     "weeding", "weekday", "weekend", "weenies", "weepers", "weepier",
04194     "weepies", "weeping", "weevils", "wefting", "weighed", "weights",
04195     "weighty", "weirded", "weirder", "weirdly", "weirdos", "weiring",
04196     "welcome", "welders", "welding", "welfare", "wellies", "welling",
04197     "welshed", "welshes", "welters", "welting", "wenches", "wending",
04198     "western", "westing", "wetback", "wetland", "wetness", "wettest",
04199     "wetting", "whacked", "whalers", "whaling", "whammed", "wharves",
04200     "whatnot", "whatsit", "wheaten", "wheedle", "wheeled", "wheeler",
04201     "wheelie", "wheezed", "wheezes", "whelked", "whelped", "whences",
04202     "whereas", "whereat", "whereby", "wherein", "whereof", "whereon",
04203     "whether", "whetted", "whewing", "whiffed", "whiling", "whimmed",
04204     "whimper", "whiners", "whinged", "whinger", "whinges", "whinier",
04205     "whining", "whipped", "whippet", "whirled", "whirred", "whisked",
04206     "whisker", "whisper", "whistle", "whitens", "whitest", "whiteys",
04207     "whither", "whiting", "whitish", "whitter", "whittle", "whizzed",
04208     "whizzes", "whoever", "whooped", "whoopee", "whopped", "whopper",
04209     "whoring", "whorled", "whupped", "wickers", "wickets", "widened",
04210     "widgets", "widowed", "widower", "wielded", "wieners", "wienies",
04211     "wigeons", "wigging", "wiggled", "wiggler", "wiggles", "wighted",
04212     "wigwags", "wigwams", "wildcat", "wildest", "wilding", "wiliest",
04213     "willies", "willing", "willows", "willowy", "wilting", "wimpier",
04214     "wimping", "wimpish", "wimpled", "wimples", "winched", "winches",
04215     "wincing", "windbag", "windier", "winding", "windows", "windups",
04216     "wingers", "winging", "wingtip", "winking", "winkled", "winkles",
04217     "winners", "winning", "winnows", "winsome", "winters", "wiretap",
04218     "wiriest", "wiseguy", "wishers", "wishful", "wishing", "wispier",
04219     "wistful", "witched", "witches", "withers", "withing", "without",
04220     "witless", "witness", "witters", "wittier", "wittily", "witting",
04221     "wizards", "wizened", "wobbled", "wobbles", "wolfing", "wolfish",
04222     "wolfram", "womanly", "wombats", "wonders", "woodcut", "woodier",
04223     "woodies", "wooding", "woodman", "woodmen", "woofers", "woofing",
04224     "woozier", "wordier", "wording", "workday", "workers", "working",
04225     "workman", "workmen", "workout", "workshy", "worktop", "worldly",
04226     "wormier", "worming", "worried", "worrier", "worries", "worsens",
04227     "worship", "worsted", "wounded", "wounder", "wracked", "wraiths",
04228     "wrangle", "wrapped", "wrapper", "wrathed", "wreaked", "wreathe",
04229     "wreaths", "wrecked", "wrecker", "wrested", "wrestle", "wriggle",
04230     "wriggly", "wringer", "wrinkle", "wrinkly", "writers", "writhed",
04231     "writhes", "writing", "written", "wronged", "wronger", "wrongly",
04232     "wrought", "wryness", "xeroxed", "xeroxes", "yachted", "yakking",
04233     "yammers", "yanking", "yapping", "yardage", "yardarm", "yashmak",
04234     "yawning", "yearned", "yelling", "yellows", "yellowy", "yelping",
04235     "yeshiva", "yessing", "yielded", "yippees", "yipping", "yogurts",
04236     "younger", "yowling", "yttrium", "yuckier", "yucking", "yukking",
04237     "yummier", "yuppies", "yuppify", "zaniest", "zanying", "zappers",
04238     "zapping", "zealots", "zealous", "zeniths", "zephyrs", "zeroing",
04239     "zestful", "zigzags", "zillion", "zincked", "zingers", "zinging",
04240     "zinnias", "zippers", "zippier", "zipping", "zircons", "zithers",
04241     "zodiacs", "zombies", "zonally", "zoology", "zooming", "zygotes"
04242   };
04243 
04244   const char* w_8[] = {
04245     "aardvark", "abacuses", "abalones", "abandons", "abashing",
04246     "abattoir", "abbesses", "abdicate", "abdomens", "abducted",
04247     "abductor", "aberrant", "abetting", "abettors", "abeyance",
04248     "abhorred", "abidings", "abjected", "abjectly", "abjuring",
04249     "ablative", "ablution", "abnegate", "abnormal", "aborting",
04250     "abortion", "abortive", "abounded", "abrading", "abrasion",
04251     "abrasive", "abridged", "abridges", "abrogate", "abrupter",
04252     "abruptly", "abscissa", "absconds", "abseiled", "absences",
04253     "absented", "absentee", "absently", "absinthe", "absolute",
04254     "absolved", "absolves", "absorbed", "abstains", "abstract",
04255     "abstruse", "absurder", "absurdly", "abundant", "abutment",
04256     "abutting", "academia", "academic", "acanthus", "acceding",
04257     "accented", "accepted", "accessed", "accesses", "accident",
04258     "acclaims", "accolade", "accorded", "accosted", "accounts",
04259     "accredit", "accruals", "accruing", "accuracy", "accurate",
04260     "accursed", "accusers", "accusing", "accustom", "acerbity",
04261     "acetates", "achieved", "achiever", "achieves", "achingly",
04262     "acolytes", "aconites", "acoustic", "acquaint", "acquired",
04263     "acquirer", "acquires", "acreages", "acridest", "acrimony",
04264     "acrobats", "acronyms", "acrostic", "acrylics", "actinium",
04265     "actioned", "activate", "actively", "activism", "activist",
04266     "activity", "actually", "actuated", "actuates", "actuator",
04267     "adapting", "adaption", "adaptive", "addendum", "addicted",
04268     "addition", "additive", "adducing", "adenoids", "adeptest",
04269     "adequacy", "adequate", "adherent", "adhering", "adhesion",
04270     "adhesive", "adjacent", "adjoined", "adjourns", "adjudged",
04271     "adjudges", "adjuncts", "adjuring", "adjusted", "adjuster",
04272     "adjutant", "admirals", "admirers", "admiring", "admitted",
04273     "admonish", "adopting", "adoption", "adoptive", "adorable",
04274     "adorably", "adorning", "adrenals", "adroiter", "adroitly",
04275     "adulated", "adulates", "adultery", "advanced", "advances",
04276     "adverser", "adverted", "advisers", "advising", "advisory",
04277     "advocacy", "advocate", "aerating", "aeration", "aerators",
04278     "aerobics", "aerogram", "aerosols", "aesthete", "affabler",
04279     "affected", "affinity", "affirmed", "affixing", "afflicts",
04280     "affluent", "afforded", "afforest", "affronts", "aflutter",
04281     "agencies", "aggrieve", "agitated", "agitates", "agitator",
04282     "agitprop", "aglitter", "agnostic", "agrarian", "agreeing",
04283     "agronomy", "ailerons", "ailments", "airbases", "airborne",
04284     "airbrush", "aircraft", "aircrews", "airdrome", "airdrops",
04285     "airfares", "airfield", "airheads", "airiness", "airlifts",
04286     "airliner", "airlines", "airlocks", "airmails", "airports",
04287     "airships", "airshows", "airspace", "airspeed", "airstrip",
04288     "airtight", "airwaves", "airwoman", "airwomen", "alacrity",
04289     "alarming", "alarmist", "albacore", "alcohols", "alderman",
04290     "aldermen", "alehouse", "alertest", "alerting", "alfresco",
04291     "algebras", "aliasing", "alibiing", "alienate", "aliening",
04292     "alighted", "aligning", "alkalies", "alkaline", "alkaloid",
04293     "allaying", "alleging", "allegory", "allegros", "alleluia",
04294     "allergen", "allergic", "alleyway", "alliance", "allocate",
04295     "allotted", "allowing", "alloying", "allspice", "alluding",
04296     "alluring", "allusion", "allusive", "alluvial", "alluvium",
04297     "almanack", "almanacs", "almighty", "almoners", "alphabet",
04298     "altering", "although", "altitude", "altruism", "altruist",
04299     "alveolar", "amalgams", "amaranth", "amassing", "amateurs",
04300     "ambiance", "ambition", "ambrosia", "ambushed", "ambushes",
04301     "amenable", "amending", "amethyst", "amicable", "amicably",
04302     "ammeters", "amnesiac", "amorally", "amounted", "amperage",
04303     "amputate", "amputees", "anaconda", "anagrams", "analogue",
04304     "analysis", "analysts", "analytic", "anapests", "anarchic",
04305     "anathema", "anatomic", "ancestor", "ancestry", "anchored",
04306     "ancients", "andantes", "andirons", "androgen", "androids",
04307     "anecdote", "anemones", "aneurysm", "angelica", "angering",
04308     "angriest", "angstrom", "animated", "animates", "animator",
04309     "animists", "annealed", "annexing", "annotate", "announce",
04310     "annoying", "annually", "annulars", "annulled", "anodynes",
04311     "anointed", "anorexia", "anorexic", "answered", "antacids",
04312     "anteater", "antedate", "antelope", "antennae", "antennas",
04313     "anterior", "anteroom", "anthills", "antibody", "anticked",
04314     "antidote", "antigens", "antihero", "antimony", "antiqued",
04315     "antiques", "antlered", "antonyms", "anyplace", "anything",
04316     "anywhere", "aperitif", "aperture", "aphasics", "aphelion",
04317     "aphorism", "apiaries", "apologia", "apoplexy", "apostasy",
04318     "apostate", "apostles", "appalled", "apparels", "apparent",
04319     "appealed", "appeared", "appeased", "appeaser", "appeases",
04320     "appended", "appendix", "appetite", "applauds", "applause",
04321     "applying", "appoints", "apposite", "appraise", "apprised",
04322     "apprises", "approach", "approval", "approved", "approves",
04323     "apricots", "aptitude", "aquanaut", "aquarium", "aquatics",
04324     "aquatint", "aqueduct", "aquifers", "aquiline", "arachnid",
04325     "arbiters", "arboreal", "archaism", "archduke", "archival",
04326     "archived", "archives", "archness", "archways", "ardently",
04327     "argosies", "arguable", "arguably", "argument", "armament",
04328     "armature", "armbands", "armchair", "armholes", "armloads",
04329     "armrests", "aromatic", "arousing", "arpeggio", "arraigns",
04330     "arranged", "arranger", "arranges", "arraying", "arrested",
04331     "arrivals", "arriving", "arrogant", "arrogate", "arsenals",
04332     "arsonist", "arterial", "arteries", "artfully", "articled",
04333     "articles", "artifact", "artifice", "artisans", "artistes",
04334     "artistic", "artistry", "artsiest", "artworks", "asbestos",
04335     "ascended", "ascetics", "ascribed", "ascribes", "ashtrays",
04336     "asocials", "asperity", "asphalts", "asphyxia", "aspirant",
04337     "aspirate", "aspiring", "aspirins", "assailed", "assassin",
04338     "assaults", "assaying", "assemble", "assembly", "assented",
04339     "asserted", "assessed", "assesses", "assessor", "assigned",
04340     "assisted", "assorted", "assuaged", "assuages", "assuming",
04341     "assureds", "assuring", "asterisk", "asteroid", "astonish",
04342     "astounds", "astutely", "astutest", "ateliers", "atheists",
04343     "athletes", "athletic", "atlantes", "atrocity", "attached",
04344     "attacked", "attacker", "attained", "attempts", "attended",
04345     "attendee", "attender", "attested", "attiring", "attitude",
04346     "attorney", "attracts", "attuning", "atwitter", "atypical",
04347     "auctions", "audacity", "audibles", "audience", "auditing",
04348     "audition", "auditors", "auditory", "augments", "auguries",
04349     "auguring", "auguster", "aureoled", "aureoles", "auricles",
04350     "auspices", "austerer", "authored", "autistic", "autobahn",
04351     "autocrat", "automate", "autonomy", "autumnal", "availing",
04352     "avengers", "avenging", "averaged", "averages", "averring",
04353     "aversion", "averting", "aviaries", "aviation", "aviators",
04354     "aviatrix", "avionics", "avocados", "avoiding", "avowedly",
04355     "awaiting", "awakened", "awarding", "awfuller", "azimuths",
04356     "babblers", "babbling", "babushka", "babyhood", "babysits",
04357     "bachelor", "bacillus", "backache", "backbite", "backbone",
04358     "backchat", "backcomb", "backdate", "backdoor", "backdrop",
04359     "backfire", "backhand", "backhoes", "backings", "backlash",
04360     "backless", "backlogs", "backpack", "backrest", "backroom",
04361     "backside", "backslid", "backspin", "backstop", "backward",
04362     "backwash", "backyard", "bacteria", "badgered", "badinage",
04363     "badlands", "badmouth", "baffling", "baggiest", "bagpipes",
04364     "baguette", "bailiffs", "bailouts", "bakeries", "balanced",
04365     "balances", "baldness", "balkiest", "ballasts", "ballcock",
04366     "balletic", "ballgirl", "ballgown", "balloons", "balloted",
04367     "ballpark", "ballroom", "ballsier", "ballsing", "ballyhoo",
04368     "balmiest", "balsamed", "baluster", "banalest", "banality",
04369     "bandaged", "bandages", "bandanna", "bandiest", "banditry",
04370     "bandsman", "bandsmen", "bandying", "banished", "banishes",
04371     "banister", "banjoist", "bankable", "bankbook", "banknote",
04372     "bankroll", "bankrupt", "bannered", "bannocks", "banquets",
04373     "banshees", "bantered", "baptisms", "baptists", "barbaric",
04374     "barbecue", "barbells", "barbered", "barberry", "bareback",
04375     "barefoot", "bareness", "barflies", "bargains", "baritone",
04376     "barmaids", "barmiest", "barnacle", "barnyard", "baroness",
04377     "baronets", "baronial", "baronies", "barracks", "barraged",
04378     "barrages", "barrener", "barrette", "barriers", "barrings",
04379     "barrooms", "bartered", "baseball", "baseless", "baseline",
04380     "basement", "baseness", "basilica", "basilisk", "basketry",
04381     "bassinet", "bassists", "bassoons", "bastards", "bastions",
04382     "batching", "bathmats", "bathrobe", "bathroom", "bathtubs",
04383     "battened", "battered", "battiest", "battlers", "battling",
04384     "baulking", "bawdiest", "bayberry", "bayonets", "bazookas",
04385     "beaching", "beadiest", "beagling", "beanbags", "beanpole",
04386     "bearable", "bearding", "bearings", "bearskin", "beatific",
04387     "beatings", "beatniks", "beauties", "beautify", "beavered",
04388     "becalmed", "beckoned", "becoming", "bedaubed", "bedazzle",
04389     "bedecked", "bedevils", "bedheads", "bedposts", "bedrocks",
04390     "bedrolls", "bedrooms", "bedsides", "bedsores", "bedstead",
04391     "bedtimes", "beechnut", "beefcake", "beefiest", "beehives",
04392     "beelined", "beelines", "beetling", "beetroot", "befallen",
04393     "befitted", "befogged", "befouled", "befriend", "befuddle",
04394     "begetter", "beggared", "beggarly", "beginner", "begonias",
04395     "begotten", "begrudge", "beguiled", "beguiles", "behalves",
04396     "behaving", "beheaded", "behemoth", "beholden", "beholder",
04397     "bejewels", "belaying", "belching", "belfries", "believed",
04398     "believer", "believes", "belittle", "bellboys", "bellhops",
04399     "bellowed", "bellyful", "bellying", "belonged", "beloveds",
04400     "beltways", "bemoaned", "bemusing", "benching", "bendable",
04401     "bendiest", "benefice", "benefits", "benignly", "benumbed",
04402     "bequeath", "bequests", "berating", "bereaved", "bereaves",
04403     "beriberi", "berrying", "berthing", "besieged", "besieger",
04404     "besieges", "besmirch", "besoming", "besotted", "besought",
04405     "bespeaks", "bespoken", "bestiary", "bestowal", "bestowed",
04406     "bestride", "bestrode", "betaking", "bethinks", "betiding",
04407     "betokens", "betrayal", "betrayed", "betrayer", "betroths",
04408     "bettered", "beverage", "bewailed", "bewaring", "bewigged",
04409     "bewilder", "biannual", "biathlon", "biblical", "bibulous",
04410     "bickered", "bicuspid", "bicycled", "bicycles", "biennial",
04411     "bifocals", "bigamist", "bigamous", "bighorns", "bigmouth",
04412     "bilabial", "bilberry", "billeted", "billfold", "billhook",
04413     "billiard", "billings", "billions", "billowed", "billycan",
04414     "binaries", "bindings", "bindweed", "binnacle", "binomial",
04415     "biopsied", "biopsies", "biplanes", "biracial", "birching",
04416     "birdbath", "birdcage", "birdlike", "birdseed", "birdsong",
04417     "birdying", "birettas", "birthday", "birthing", "biscuits",
04418     "bisected", "bisector", "bisexual", "bitchier", "bitching",
04419     "bitingly", "bitterer", "bitterly", "bitterns", "bivalves",
04420     "bivouacs", "biweekly", "bizarres", "blabbers", "blabbing",
04421     "blackens", "blackest", "blacking", "blackish", "blackleg",
04422     "blackout", "blacktop", "bladders", "blagging", "blanched",
04423     "blanches", "blandest", "blankest", "blankets", "blanking",
04424     "blarneys", "blasters", "blasting", "blastoff", "blathers",
04425     "blazoned", "bleached", "bleacher", "bleaches", "bleakest",
04426     "blearier", "blearily", "bleating", "bleeders", "bleeding",
04427     "bleepers", "bleeping", "blenched", "blenches", "blenders",
04428     "blending", "blessing", "blethers", "blighted", "blighter",
04429     "blimpish", "blinders", "blindest", "blinding", "blinkers",
04430     "blinking", "blintzes", "blissful", "blissing", "blisters",
04431     "blithely", "blithest", "blitzing", "blizzard", "bloaters",
04432     "bloating", "blobbing", "blockade", "blockage", "blocking",
04433     "blondest", "bloodied", "bloodier", "bloodies", "bloodily",
04434     "blooding", "bloomers", "blooming", "bloopers", "blossoms",
04435     "blotched", "blotches", "blotters", "blotting", "blousing",
04436     "blowguns", "blowhard", "blowhole", "blowlamp", "blowouts",
04437     "blowpipe", "blowzier", "blubbers", "bludgeon", "bluebell",
04438     "bluebird", "bluefish", "bluenose", "bluffers", "bluffest",
04439     "bluffing", "blunders", "bluntest", "blunting", "blurrier",
04440     "blurring", "blurting", "blushers", "blushing", "blusters",
04441     "blustery", "boarders", "boarding", "boasters", "boastful",
04442     "boasting", "boatload", "boatyard", "bobbling", "bobolink",
04443     "bobsleds", "bobtails", "bobwhite", "bodysuit", "bodywork",
04444     "bogeying", "bogeyman", "bogeymen", "boggiest", "boggling",
04445     "bohemian", "boilings", "boldface", "boldness", "bollards",
04446     "bollocks", "bolsters", "bolthole", "bombards", "bombings",
04447     "bombsite", "bonanzas", "bondsman", "bondsmen", "bonehead",
04448     "boneless", "bonfires", "bonhomie", "bonniest", "bookable",
04449     "bookcase", "bookends", "bookings", "booklets", "bookmark",
04450     "bookshop", "bookworm", "boosters", "boosting", "bootlace",
04451     "bootlegs", "bootless", "booziest", "bordello", "bordered",
04452     "borehole", "boringly", "boroughs", "borrowed", "borrower",
04453     "borstals", "bossiest", "botanist", "botching", "bothered",
04454     "bottlers", "bottling", "bottomed", "botulism", "boudoirs",
04455     "bouffant", "bouillon", "boulders", "bouncers", "bouncier",
04456     "bouncing", "boundary", "bounders", "bounding", "bounties",
04457     "bouquets", "bourbons", "boutique", "bowsprit", "boxrooms",
04458     "boycotts", "boyhoods", "boyishly", "bracelet", "brackets",
04459     "brackish", "bradawls", "braggart", "braggers", "bragging",
04460     "braiding", "brainier", "braining", "braising", "brakeman",
04461     "brakemen", "brambles", "branched", "branches", "brandied",
04462     "brandies", "branding", "brandish", "brashest", "brassier",
04463     "brassing", "brattier", "bravuras", "brawlers", "brawling",
04464     "brawnier", "brazened", "brazenly", "braziers", "breached",
04465     "breaches", "breadbox", "breading", "breadths", "breakage",
04466     "breakers", "breaking", "breakout", "breakups", "breasted",
04467     "breathed", "breather", "breathes", "breeches", "breeders",
04468     "breeding", "breezier", "breezily", "breezing", "brethren",
04469     "breviary", "brickbat", "brickies", "bricking", "bridging",
04470     "bridling", "briefest", "briefing", "brigades", "brigands",
04471     "brighten", "brighter", "brightly", "brimming", "brindled",
04472     "bringing", "briniest", "brioches", "briskest", "briskets",
04473     "brisking", "bristled", "bristles", "britches", "brittler",
04474     "broached", "broaches", "broadens", "broadest", "brocaded",
04475     "brocades", "broccoli", "brochure", "broilers", "broiling",
04476     "brokered", "brollies", "bromides", "bronchus", "bronzing",
04477     "brooches", "brooders", "broodily", "brooding", "brooking",
04478     "brothels", "brothers", "brougham", "brouhaha", "browbeat",
04479     "brownest", "brownier", "brownies", "browning", "brownish",
04480     "brownout", "browsers", "browsing", "bruisers", "bruising",
04481     "bruiting", "brunched", "brunches", "brunette", "brunting",
04482     "brushing", "brusquer", "brutally", "bubblier", "bubbling",
04483     "bucketed", "buckeyes", "bucklers", "buckling", "bucksaws",
04484     "buckshot", "buckskin", "bucolics", "buddings", "budgeted",
04485     "buffered", "buffeted", "buffoons", "bugaboos", "bugbears",
04486     "buggered", "buggiest", "builders", "building", "buildups",
04487     "bulgiest", "bulimics", "bulkhead", "bulkiest", "bulldogs",
04488     "bulldoze", "bulletin", "bullfrog", "bullhorn", "bulliest",
04489     "bullocks", "bullpens", "bullring", "bullshit", "bullwhip",
04490     "bullying", "bulwarks", "bumblers", "bumbling", "bumpiest",
04491     "bumpkins", "bunching", "bundling", "bungalow", "bunghole",
04492     "bunglers", "bungling", "buntings", "buoyancy", "burbling",
04493     "burdened", "burgeons", "burghers", "burglars", "burglary",
04494     "burgling", "burgundy", "burliest", "burnoose", "burnouts",
04495     "burritos", "burrowed", "bursitis", "bursting", "bushiest",
04496     "bushings", "business", "busloads", "bustiers", "bustiest",
04497     "bustling", "busybody", "busyness", "busywork", "butchers",
04498     "butchery", "butlered", "buttered", "buttocks", "buttoned",
04499     "buttress", "buxomest", "buzzards", "buzzword", "bypassed",
04500     "bypasses", "cabarets", "cabbages", "cabinets", "caboodle",
04501     "cabooses", "cacheted", "cackling", "cadavers", "cadences",
04502     "cadenzas", "caduceus", "caesuras", "caffeine", "caginess",
04503     "cagoules", "caissons", "cajolery", "cajoling", "cakewalk",
04504     "calabash", "calamine", "calamity", "calcined", "calcines",
04505     "calculus", "calendar", "calfskin", "calicoes", "callable",
04506     "callings", "calliope", "callower", "callused", "calluses",
04507     "calmness", "calories", "calypsos", "cambered", "cambiums",
04508     "camellia", "cameoing", "camisole", "campaign", "campfire",
04509     "campiest", "campsite", "campused", "campuses", "camshaft",
04510     "canaries", "candider", "candidly", "candling", "candying",
04511     "canister", "cankered", "cannabis", "cannibal", "canniest",
04512     "cannoned", "canoeist", "canoodle", "canopied", "canopies",
04513     "cantatas", "canteens", "cantered", "canticle", "canvased",
04514     "canvases", "capabler", "capacity", "capering", "capitals",
04515     "capitols", "caprices", "capsicum", "capsized", "capsizes",
04516     "capstans", "capsuled", "capsules", "captains", "captions",
04517     "captious", "captives", "captured", "captures", "caramels",
04518     "carapace", "caravans", "caraways", "carbides", "carbines",
04519     "carbolic", "carcases", "cardamom", "cardamon", "cardigan",
04520     "cardinal", "careened", "careered", "carefree", "careless",
04521     "caressed", "caresses", "careworn", "caribous", "carillon",
04522     "carjacks", "carloads", "carmines", "carnally", "carnival",
04523     "caroming", "carotids", "carousal", "caroused", "carousel",
04524     "carouser", "carouses", "carpeted", "carpools", "carports",
04525     "carriage", "carriers", "carryall", "carrycot", "carrying",
04526     "carryout", "cartload", "cartoons", "carvings", "caryatid",
04527     "cascaded", "cascades", "casebook", "caseload", "casement",
04528     "casework", "cashiers", "cashless", "cashmere", "cassavas",
04529     "cassette", "cassocks", "castanet", "castaway", "castings",
04530     "castling", "castoffs", "castrate", "casually", "casualty",
04531     "casuists", "catacomb", "catalpas", "catalyst", "catapult",
04532     "cataract", "catbirds", "catboats", "catcalls", "catchall",
04533     "catchers", "catchier", "catching", "category", "caterers",
04534     "catering", "catheter", "cathodes", "catholic", "catsuits",
04535     "cattails", "cattiest", "catwalks", "caucused", "caucuses",
04536     "cauldron", "caulking", "causally", "causeway", "caustics",
04537     "cautions", "cautious", "cavalier", "cavities", "cavorted",
04538     "cedillas", "ceilidhs", "ceilings", "celeriac", "celerity",
04539     "celestas", "celibacy", "celibate", "cellists", "cellmate",
04540     "cellular", "cemented", "cemetery", "cenotaph", "censored",
04541     "censured", "censures", "censused", "censuses", "centaurs",
04542     "centimes", "centrals", "centrist", "cephalic", "ceramics",
04543     "cerebral", "cerebrum", "ceremony", "cerulean", "cervical",
04544     "cervices", "cesarean", "cessions", "cesspits", "cesspool",
04545     "cetacean", "chaffing", "chagrins", "chaining", "chainsaw",
04546     "chairing", "chairman", "chairmen", "chalices", "chalkier",
04547     "chalking", "chambers", "chambray", "champers", "champing",
04548     "champion", "chancels", "chancery", "chancier", "chancing",
04549     "chandler", "changing", "channels", "chanters", "chanteys",
04550     "chanting", "chapatis", "chapatti", "chaperon", "chaplain",
04551     "chaplets", "chappies", "chapping", "chapters", "charades",
04552     "charcoal", "chargers", "charging", "chariest", "chariots",
04553     "charisma", "charlady", "charlies", "charmers", "charming",
04554     "charring", "charters", "charting", "chastely", "chastens",
04555     "chastest", "chastise", "chastity", "chasuble", "chateaus",
04556     "chatline", "chattels", "chatters", "chattier", "chattily",
04557     "chatting", "cheapens", "cheapest", "cheaters", "cheating",
04558     "checking", "checkout", "checkups", "cheekier", "cheekily",
04559     "cheeking", "cheeping", "cheerful", "cheerier", "cheerily",
04560     "cheering", "cheerses", "cheesier", "cheesing", "cheetahs",
04561     "cheffing", "chemical", "chemises", "chemists", "chenille",
04562     "cheroots", "cherries", "cherubic", "cherubim", "chessman",
04563     "chessmen", "chestnut", "chevrons", "chewiest", "chicanes",
04564     "chichier", "chickens", "chickpea", "chiefest", "chiggers",
04565     "chignons", "childing", "childish", "children", "chillers",
04566     "chillest", "chillier", "chillies", "chilling", "chimeras",
04567     "chimneys", "chinking", "chinless", "chinning", "chinwags",
04568     "chipmunk", "chippers", "chippies", "chipping", "chirpier",
04569     "chirpily", "chirping", "chirrups", "chiseled", "chiseler",
04570     "chitchat", "chivalry", "chivvied", "chivvies", "chivying",
04571     "chloride", "chlorine", "chocking", "choicest", "choirboy",
04572     "choleric", "chomping", "choosier", "choosing", "choppers",
04573     "choppier", "choppily", "chopping", "chorales", "chortled",
04574     "chortles", "chorused", "choruses", "chowders", "christen",
04575     "chroming", "chromium", "chronics", "chubbier", "chucking",
04576     "chuckled", "chuckles", "chugging", "chummier", "chummies",
04577     "chummily", "chumming", "chunders", "chunkier", "chunters",
04578     "churches", "churlish", "churning", "chutneys", "chutzpah",
04579     "cilantro", "cinching", "cinchona", "cincture", "cindered",
04580     "cinnabar", "cinnamon", "ciphered", "circlets", "circling",
04581     "circuits", "circular", "circuses", "cisterns", "citadels",
04582     "citation", "citizens", "citruses", "citywide", "civilian",
04583     "civility", "clacking", "cladding", "claimant", "claiming",
04584     "clambake", "clambers", "clammier", "clamming", "clamping",
04585     "clangers", "clanging", "clanking", "clannish", "clansman",
04586     "clansmen", "clappers", "clapping", "claptrap", "clareted",
04587     "clarinet", "clarions", "clashing", "clasping", "classics",
04588     "classier", "classify", "classing", "clatters", "clavicle",
04589     "clayiest", "cleaners", "cleanest", "cleaning", "cleansed",
04590     "cleanser", "cleanses", "cleanups", "clearest", "clearing",
04591     "clearway", "cleavage", "cleavers", "cleaving", "clefting",
04592     "clematis", "clemency", "clenched", "clenches", "clergies",
04593     "clerical", "clerking", "cleverer", "cleverly", "clicking",
04594     "clifftop", "climates", "climatic", "climaxed", "climaxes",
04595     "climbers", "climbing", "clinched", "clincher", "clinches",
04596     "clingier", "clinging", "clinical", "clinkers", "clinking",
04597     "clippers", "clipping", "cliquish", "clitoral", "clitoris",
04598     "cloaking", "clobbers", "clocking", "clodding", "clogging",
04599     "cloister", "clomping", "clonking", "clopping", "closeout",
04600     "closeted", "closures", "clothier", "clothing", "clotting",
04601     "clotures", "cloudier", "clouding", "clouting", "clowning",
04602     "clownish", "clubbers", "clubbing", "clubfeet", "clubfoot",
04603     "clubland", "clucking", "clueless", "clumping", "clumsier",
04604     "clumsily", "clunkers", "clunkier", "clunking", "clusters",
04605     "clutched", "clutches", "clutters", "coaching", "coachman",
04606     "coachmen", "coalesce", "coalface", "coalmine", "coarsely",
04607     "coarsens", "coarsest", "coasters", "coasting", "coatings",
04608     "coatroom", "coattail", "coattest", "coauthor", "cobblers",
04609     "cobbling", "coccyges", "cochleae", "cochleas", "cockades",
04610     "cockatoo", "cockerel", "cockeyed", "cockiest", "cockneys",
04611     "cockpits", "cocksure", "cocktail", "coconuts", "cocooned",
04612     "coddling", "codicils", "codified", "codifies", "codpiece",
04613     "coequals", "coercing", "coercion", "coercive", "coexists",
04614     "coffined", "cogently", "cogitate", "cognates", "cognomen",
04615     "cogwheel", "cohabits", "coherent", "cohering", "cohesion",
04616     "cohesive", "coiffing", "coiffure", "coinages", "coincide",
04617     "colander", "coldness", "coleslaw", "coliseum", "collagen",
04618     "collages", "collapse", "collared", "collated", "collates",
04619     "collects", "colleens", "colleges", "collided", "collides",
04620     "colliers", "colliery", "colloids", "colloquy", "colluded",
04621     "colludes", "collying", "colognes", "colonels", "colonial",
04622     "colonies", "colonist", "colossal", "colossus", "columned",
04623     "comatose", "combated", "combined", "combines", "comeback",
04624     "comedian", "comedies", "comedown", "comelier", "comfiest",
04625     "comforts", "commando", "commands", "commence", "commends",
04626     "comments", "commerce", "commodes", "commoner", "commonly",
04627     "communal", "communed", "communes", "commuted", "commuter",
04628     "commutes", "compacts", "compared", "compares", "competed",
04629     "competes", "compiled", "compiler", "compiles", "complain",
04630     "complete", "complied", "complies", "comports", "composed",
04631     "composer", "composes", "composts", "compotes", "compound",
04632     "compress", "comprise", "computed", "computer", "computes",
04633     "comrades", "conceals", "conceded", "concedes", "conceits",
04634     "conceive", "concepts", "concerns", "concerto", "concerts",
04635     "conchies", "conching", "conciser", "conclave", "conclude",
04636     "concocts", "concrete", "condemns", "condense", "condoled",
04637     "condoles", "condoned", "condones", "conduced", "conduces",
04638     "conducts", "conduits", "confetti", "confided", "confides",
04639     "confined", "confines", "confirms", "conflate", "conflict",
04640     "conforms", "confound", "confront", "confused", "confuses",
04641     "confuted", "confutes", "congaing", "congeals", "congests",
04642     "congress", "conicals", "conifers", "conjoins", "conjoint",
04643     "conjugal", "conjured", "conjurer", "conjures", "connects",
04644     "connived", "conniver", "connives", "connoted", "connotes",
04645     "conquers", "conquest", "consents", "conserve", "consider",
04646     "consigns", "consists", "consoled", "consoles", "consorts",
04647     "conspire", "constant", "construe", "consular", "consults",
04648     "consumed", "consumer", "consumes", "contacts", "contains",
04649     "contempt", "contends", "contents", "contests", "contexts",
04650     "continua", "continue", "contorts", "contours", "contract",
04651     "contrail", "contrary", "contrast", "contrite", "contrive",
04652     "controls", "contused", "contuses", "convened", "convener",
04653     "convenes", "convents", "converge", "converse", "converts",
04654     "convexed", "convexes", "conveyed", "conveyor", "convicts",
04655     "convince", "convoked", "convokes", "convoyed", "convulse",
04656     "cookbook", "cookouts", "cookware", "coolants", "coolness",
04657     "coopered", "copilots", "copulate", "copybook", "copycats",
04658     "copyists", "coquetry", "coquette", "coracles", "cordials",
04659     "cordless", "cordoned", "corduroy", "cornball", "corncobs",
04660     "cornered", "cornices", "corniest", "cornmeal", "cornrows",
04661     "corollas", "coronary", "coroners", "coronets", "corporal",
04662     "corporas", "corrects", "corridor", "corroded", "corrodes",
04663     "corrupts", "corsages", "corsairs", "corseted", "cortical",
04664     "cortices", "corvette", "cosigned", "cosigner", "cosiness",
04665     "cosmetic", "cosmoses", "cosseted", "costings", "costlier",
04666     "costumed", "costumer", "costumes", "coteries", "cottaged",
04667     "cottager", "cottages", "cottoned", "couching", "coughing",
04668     "councils", "counsels", "counters", "countess", "counties",
04669     "counting", "couplets", "coupling", "couriers", "coursing",
04670     "courtesy", "courtier", "courting", "couscous", "covenant",
04671     "coverage", "coverall", "covering", "coverlet", "covertly",
04672     "coveting", "covetous", "cowardly", "cowbells", "cowbirds",
04673     "cowering", "cowgirls", "cowhands", "cowhides", "cowlicks",
04674     "cowlings", "coworker", "cowpokes", "cowsheds", "cowslips",
04675     "coxcombs", "coxswain", "cozening", "coziness", "crabbier",
04676     "crabbily", "crabbing", "crabwise", "crackers", "cracking",
04677     "crackled", "crackles", "crackpot", "crackups", "cradling",
04678     "craftier", "craftily", "crafting", "craggier", "crammers",
04679     "cramming", "cramping", "crampons", "craniums", "crankest",
04680     "crankier", "cranking", "crannied", "crannies", "crappers",
04681     "crappier", "crappies", "crapping", "crashing", "crassest",
04682     "cratered", "cravenly", "cravings", "crawlers", "crawling",
04683     "crayfish", "crayoned", "craziest", "creakier", "creakily",
04684     "creaking", "creamers", "creamery", "creamier", "creaming",
04685     "creasing", "creating", "creation", "creative", "creators",
04686     "creature", "credence", "credenza", "credible", "credibly",
04687     "credited", "creditor", "creeling", "creepers", "creepier",
04688     "creepies", "creepily", "creeping", "cremated", "cremates",
04689     "creosote", "crescent", "cresting", "crevasse", "crevices",
04690     "cribbage", "cribbing", "crickets", "cricking", "criminal",
04691     "crimping", "crimsons", "cringing", "crinkled", "crinkles",
04692     "crippled", "cripples", "crispest", "crispier", "crisping",
04693     "criteria", "critical", "critique", "critters", "croaking",
04694     "crochets", "crockery", "crocuses", "crofters", "crofting",
04695     "cronyism", "crooking", "crooners", "crooning", "croppers",
04696     "cropping", "crosiers", "crossbar", "crossbow", "crossest",
04697     "crossing", "crotches", "crotchet", "crouched", "crouches",
04698     "croupier", "crouping", "crowbars", "crowding", "crowning",
04699     "crucible", "crucifix", "cruddier", "cruelest", "cruisers",
04700     "cruising", "crullers", "crumbier", "crumbing", "crumbled",
04701     "crumbles", "crummier", "crumpets", "crumpled", "crumples",
04702     "crunched", "cruncher", "crunches", "crusaded", "crusader",
04703     "crusades", "crushers", "crushing", "crustier", "crusties",
04704     "crusting", "crutches", "cryonics", "crystals", "cubicles",
04705     "cuckolds", "cucumber", "cuddlier", "cuddling", "cuisines",
04706     "culinary", "culottes", "culpable", "culpably", "culprits",
04707     "cultural", "cultured", "cultures", "culverts", "cupboard",
04708     "cupcakes", "cupidity", "cupolaed", "curacies", "curating",
04709     "curative", "curators", "curbside", "curdling", "curlicue",
04710     "curliest", "currants", "currency", "currents", "currying",
04711     "curseder", "cursored", "curtails", "curtains", "curtness",
04712     "curtsied", "curtsies", "curviest", "cushiest", "cushions",
04713     "cuspidor", "cussedly", "custards", "customer", "cutaways",
04714     "cutbacks", "cuteness", "cutesier", "cuticles", "cuttings",
04715     "cyclamen", "cyclical", "cyclists", "cyclones", "cyclonic",
04716     "cylinder", "cynicism", "cynosure", "cystitis", "cytology",
04717     "czarinas", "czarists", "dabblers", "dabbling", "dactylic",
04718     "daffiest", "daffodil", "daftness", "daintier", "dainties",
04719     "daintily", "daiquiri", "dairying", "dairyman", "dairymen",
04720     "dallying", "damaging", "damasked", "damnable", "damnably",
04721     "damneder", "dampened", "dampness", "dandered", "dandiest",
04722     "dandling", "dandruff", "dangered", "dangling", "dankness",
04723     "dapperer", "dappling", "daringly", "darkened", "darklier",
04724     "darkness", "darkroom", "darlings", "darneder", "dashikis",
04725     "database", "datebook", "dateline", "daughter", "daunting",
04726     "dauphins", "dawdlers", "dawdling", "daybreak", "daydream",
04727     "daylight", "dazzling", "deadbeat", "deadbolt", "deadened",
04728     "deadhead", "deadlier", "deadline", "deadlock", "deadpans",
04729     "deadwood", "deafened", "deafness", "dealings", "dearests",
04730     "dearness", "deathbed", "debacles", "debarked", "debarred",
04731     "debasing", "debaters", "debating", "debility", "debiting",
04732     "debonair", "debriefs", "debugged", "debugger", "debunked",
04733     "debuting", "decadent", "decamped", "decanted", "decanter",
04734     "decaying", "deceased", "deceases", "decedent", "deceived",
04735     "deceiver", "deceives", "decenter", "decently", "decibels",
04736     "deciders", "deciding", "decimals", "decimate", "decipher",
04737     "decision", "decisive", "deckhand", "declaims", "declared",
04738     "declares", "declined", "declines", "decoders", "decoding",
04739     "decorate", "decorous", "decouple", "decoying", "decrease",
04740     "decrepit", "decrying", "dedicate", "deducing", "deducted",
04741     "deejayed", "deepened", "deepness", "deerskin", "defacing",
04742     "defaming", "defaults", "defeated", "defecate", "defected",
04743     "defector", "defended", "defender", "deferral", "deferred",
04744     "defiance", "deficits", "defiling", "definers", "defining",
04745     "definite", "deflated", "deflates", "deflects", "deflower",
04746     "defogged", "defogger", "deforest", "deformed", "defrauds",
04747     "defrayal", "defrayed", "defrocks", "defrosts", "deftness",
04748     "defuncts", "defusing", "degraded", "degrades", "deifying",
04749     "deigning", "dejected", "delaying", "delegate", "deleting",
04750     "deletion", "delicacy", "delicate", "delights", "delimits",
04751     "delirium", "delivers", "delivery", "deloused", "delouses",
04752     "deluding", "deluging", "delusion", "delusive", "demagogy",
04753     "demanded", "demeaned", "demented", "dementia", "demerits",
04754     "demesnes", "demigods", "demijohn", "demising", "demisted",
04755     "demister", "demobbed", "democrat", "demolish", "demoniac",
04756     "demoting", "demotion", "demurely", "demurest", "demurred",
04757     "demurrer", "denature", "dendrite", "deniable", "denizens",
04758     "denoting", "denounce", "dentists", "dentures", "denuding",
04759     "departed", "depended", "depicted", "deplaned", "deplanes",
04760     "depleted", "depletes", "deplored", "deplores", "deployed",
04761     "deported", "deportee", "deposing", "deposits", "depraved",
04762     "depraves", "deprived", "deprives", "deputies", "deputing",
04763     "derailed", "deranged", "deranges", "derelict", "deriding",
04764     "derision", "derisive", "derisory", "deriving", "derogate",
04765     "derricks", "descaled", "descales", "descants", "descends",
04766     "descents", "describe", "descried", "descries", "deselect",
04767     "deserted", "deserter", "deserved", "deserves", "designed",
04768     "designer", "desiring", "desirous", "desisted", "deskills",
04769     "desktops", "desolate", "despairs", "despised", "despises",
04770     "despoils", "despotic", "desserts", "destined", "destines",
04771     "destroys", "destruct", "detached", "detaches", "detailed",
04772     "detained", "detainee", "detected", "detector", "detentes",
04773     "deterred", "detested", "dethrone", "detonate", "detoured",
04774     "detoxify", "detoxing", "detracts", "detritus", "devalued",
04775     "devalues", "develops", "deviance", "deviancy", "deviants",
04776     "deviated", "deviates", "devilish", "deviltry", "devising",
04777     "devolved", "devolves", "devotees", "devoting", "devotion",
04778     "devoured", "devouter", "devoutly", "dewberry", "dewdrops",
04779     "dextrose", "diabetes", "diabetic", "diabolic", "diagnose",
04780     "diagonal", "diagrams", "dialects", "dialysis", "diameter",
04781     "diamonds", "diapered", "diarists", "diaspora", "diatonic",
04782     "diatribe", "dibbling", "dickered", "dickhead", "dickiest",
04783     "dictated", "dictates", "dictator", "didactic", "diddling",
04784     "diereses", "dieresis", "dieseled", "dietetic", "differed",
04785     "diffract", "diffused", "diffuses", "digested", "digraphs",
04786     "dilating", "dilation", "dilatory", "dilemmas", "diligent",
04787     "diluting", "dilution", "diminish", "dimpling", "dinettes",
04788     "dingbats", "dinghies", "dingiest", "dinkiest", "dinnered",
04789     "dinosaur", "diocesan", "dioceses", "dioramas", "dioxides",
04790     "diplomas", "diplomat", "dippiest", "dipstick", "directed",
04791     "directer", "directly", "director", "dirtiest", "dirtying",
04792     "disabled", "disables", "disabuse", "disagree", "disallow",
04793     "disarmed", "disarray", "disaster", "disavows", "disbands",
04794     "disburse", "discards", "discerns", "disciple", "disclaim",
04795     "disclose", "discoing", "discords", "discount", "discover",
04796     "discreet", "discrete", "discuses", "disdains", "diseased",
04797     "diseases", "disgorge", "disgrace", "disguise", "disgusts",
04798     "dishevel", "dishpans", "dishrags", "disinter", "disjoint",
04799     "diskette", "disliked", "dislikes", "dislodge", "disloyal",
04800     "dismaler", "dismally", "dismayed", "dismount", "disobeys",
04801     "disorder", "disowned", "dispatch", "dispense", "disperse",
04802     "dispirit", "displace", "displays", "disports", "disposal",
04803     "disposed", "disposes", "disproof", "disprove", "disputed",
04804     "disputes", "disquiet", "disrobed", "disrobes", "disrupts",
04805     "dissects", "dissents", "dissolve", "dissuade", "distaffs",
04806     "distance", "distaste", "distends", "distills", "distinct",
04807     "distorts", "distract", "distrait", "distress", "district",
04808     "distrust", "disturbs", "disunite", "disunity", "disusing",
04809     "ditching", "dithered", "ditherer", "dittoing", "diuretic",
04810     "diverged", "diverges", "diverted", "divested", "dividend",
04811     "dividers", "dividing", "divinely", "diviners", "divinest",
04812     "divining", "divinity", "division", "divisive", "divisors",
04813     "divorced", "divorces", "divulged", "divulges", "divvying",
04814     "dizziest", "dizzying", "doberman", "docilely", "docility",
04815     "docketed", "dockland", "dockside", "dockyard", "doctoral",
04816     "doctored", "doctrine", "document", "doddered", "dodgiest",
04817     "dogcarts", "dogfight", "doggedly", "doggerel", "doggiest",
04818     "doggoned", "doggoner", "doggones", "doghouse", "dogmatic",
04819     "dogsbody", "dogsleds", "dogtrots", "dogwoods", "doldrums",
04820     "dolloped", "dolorous", "dolphins", "domestic", "domicile",
04821     "dominant", "dominate", "domineer", "dominion", "dominoes",
04822     "donating", "donation", "doodlers", "doodling", "doolally",
04823     "doomsday", "doomster", "doorbell", "doorjamb", "doorknob",
04824     "doormats", "doorpost", "doorstep", "doorstop", "doorways",
04825     "dorkiest", "dormancy", "dormants", "dormouse", "dossiers",
04826     "dotingly", "dottiest", "doublets", "doubling", "doubloon",
04827     "doubters", "doubtful", "doubting", "douching", "doughier",
04828     "dovecote", "dovecots", "dovetail", "dowagers", "dowdiest",
04829     "downbeat", "downcast", "downfall", "downhill", "downiest",
04830     "download", "downplay", "downpour", "downside", "downsize",
04831     "downtime", "downtown", "downturn", "downward", "downwind",
04832     "doxology", "doyennes", "doziness", "drabbest", "drabness",
04833     "drachmas", "draftees", "dragging", "dragnets", "dragoons",
04834     "dragster", "drainage", "drainers", "draining", "dramatic",
04835     "drawback", "drawings", "drawling", "dreadful", "dreading",
04836     "dreamers", "dreamier", "dreamily", "dreaming", "drearier",
04837     "drearies", "drearily", "dredgers", "dredging", "drenched",
04838     "drenches", "dressage", "dressers", "dressier", "dressing",
04839     "dribbled", "dribbler", "dribbles", "driblets", "drifters",
04840     "drifting", "driftnet", "drilling", "drinkers", "drinking",
04841     "drippier", "dripping", "driveway", "drivings", "drizzled",
04842     "drizzles", "drollery", "drollest", "drooling", "droopier",
04843     "drooping", "droplets", "dropouts", "droppers", "dropping",
04844     "droughts", "drowning", "drowsier", "drowsily", "drowsing",
04845     "drubbing", "drudgery", "drudging", "druggies", "drugging",
04846     "druggist", "drumbeat", "drummers", "drumming", "drunkard",
04847     "drunkest", "drywalls", "duckbill", "duckling", "duckweed",
04848     "ductless", "dukedoms", "dulcimer", "dullards", "dullness",
04849     "dumbbell", "dumbness", "dumpiest", "dumpling", "dumpster",
04850     "dungaree", "dungeons", "duodenal", "duodenum", "duplexes",
04851     "duration", "duskiest", "dustbins", "dustcart", "dustiest",
04852     "dustless", "dustpans", "dutiable", "dwarfest", "dwarfing",
04853     "dwarfish", "dwarfism", "dwellers", "dwelling", "dwindled",
04854     "dwindles", "dyestuff", "dynamics", "dynamism", "dynamite",
04855     "dynastic", "dyslexia", "dyslexic", "eagerest", "earaches",
04856     "eardrums", "earldoms", "earliest", "earlobes", "earmarks",
04857     "earmuffs", "earnests", "earnings", "earphone", "earpiece",
04858     "earplugs", "earrings", "earthier", "earthing", "easiness",
04859     "easterly", "eastward", "eatables", "eateries", "echelons",
04860     "eclectic", "eclipsed", "eclipses", "ecliptic", "economic",
04861     "ecstatic", "edgewise", "edginess", "edifices", "edifying",
04862     "editable", "editions", "educable", "educated", "educates",
04863     "educator", "eeriness", "effacing", "effected", "efficacy",
04864     "effigies", "effluent", "effusion", "effusive", "eggheads",
04865     "eggplant", "eggshell", "egoistic", "egomania", "egotists",
04866     "egresses", "eighteen", "eighties", "ejecting", "ejection",
04867     "elapsing", "elastics", "elbowing", "electing", "election",
04868     "elective", "electors", "electric", "electron", "elegance",
04869     "elegiacs", "elements", "elephant", "elevated", "elevates",
04870     "elevator", "eleventh", "elicited", "eligible", "elisions",
04871     "elitists", "ellipses", "ellipsis", "elliptic", "elongate",
04872     "eloquent", "emaciate", "emailing", "emanated", "emanates",
04873     "embalmed", "embalmer", "embarked", "embedded", "embezzle",
04874     "embitter", "emblazon", "embodied", "embodies", "embolden",
04875     "embolism", "embossed", "embosses", "embraced", "embraces",
04876     "embroils", "emceeing", "emending", "emeralds", "emergent",
04877     "emerging", "emeritus", "emerying", "emigrant", "emigrate",
04878     "eminence", "emirates", "emissary", "emission", "emitting",
04879     "emotions", "emperors", "emphases", "emphasis", "emphatic",
04880     "employed", "employee", "employer", "emporium", "empowers",
04881     "emptiest", "emptying", "emulated", "emulates", "emulator",
04882     "emulsify", "emulsion", "enablers", "enabling", "enacting",
04883     "encamped", "encasing", "enchants", "encircle", "enclaves",
04884     "enclosed", "encloses", "encoders", "encoding", "encoring",
04885     "encroach", "encrusts", "encrypts", "encumber", "endanger",
04886     "endeared", "endemics", "endgames", "endorsed", "endorser",
04887     "endorses", "endowing", "endpoint", "enduring", "energies",
04888     "enervate", "enfeeble", "enfolded", "enforced", "enforcer",
04889     "enforces", "engaging", "engender", "engineer", "engining",
04890     "engorged", "engorges", "engraved", "engraver", "engraves",
04891     "engulfed", "enhanced", "enhancer", "enhances", "enjoined",
04892     "enjoying", "enlarged", "enlarger", "enlarges", "enlisted",
04893     "enlistee", "enlivens", "enmeshed", "enmeshes", "enmities",
04894     "ennobled", "ennobles", "enormity", "enormous", "enquirer",
04895     "enraging", "enriched", "enriches", "enrolled", "ensconce",
04896     "ensemble", "enshrine", "enshroud", "enslaved", "enslaves",
04897     "ensnared", "ensnares", "ensuring", "entailed", "entangle",
04898     "ententes", "entering", "enthrone", "enthused", "enthuses",
04899     "enticing", "entirely", "entirety", "entities", "entitled",
04900     "entitles", "entombed", "entrails", "entrance", "entrants",
04901     "entreats", "entreaty", "entrench", "entrusts", "entryway",
04902     "entwined", "entwines", "envelope", "envelops", "enviable",
04903     "enviably", "environs", "envisage", "envision", "epaulets",
04904     "ephemera", "epicures", "epidemic", "epidural", "epigrams",
04905     "epigraph", "epilepsy", "epilogue", "epiphany", "episodes",
04906     "episodic", "epistles", "epitaphs", "epithets", "epitomes",
04907     "epoxying", "equality", "equating", "equation", "equators",
04908     "equipage", "equipped", "equities", "erasures", "erectile",
04909     "erecting", "erection", "erratics", "ersatzes", "erupting",
04910     "eruption", "escalate", "escalope", "escapade", "escapees",
04911     "escaping", "escapism", "escapist", "escarole", "eschewed",
04912     "escorted", "esoteric", "especial", "espousal", "espoused",
04913     "espouses", "espresso", "esquires", "essaying", "essayist",
04914     "essences", "esteemed", "estimate", "estrange", "etchings",
04915     "eternity", "ethereal", "ethicals", "etiology", "eugenics",
04916     "eulogies", "eulogist", "euphoria", "euphoric", "eutectic",
04917     "evacuate", "evacuees", "evaluate", "evasions", "evenings",
04918     "evenness", "evensong", "eventful", "eventide", "eventual",
04919     "evermore", "everyday", "everyone", "evicting", "eviction",
04920     "evidence", "evidents", "evildoer", "evincing", "evolving",
04921     "exactest", "exacting", "exalting", "examined", "examiner",
04922     "examines", "exampled", "examples", "excavate", "exceeded",
04923     "excelled", "excepted", "excerpts", "excesses", "exchange",
04924     "excising", "excision", "exciting", "exclaims", "excluded",
04925     "excludes", "excreted", "excretes", "excusing", "execrate",
04926     "executed", "executes", "executor", "exegeses", "exegesis",
04927     "exemplar", "exempted", "exercise", "exerting", "exertion",
04928     "exhaling", "exhausts", "exhibits", "exhorted", "exhuming",
04929     "exigency", "exigents", "exiguous", "existent", "existing",
04930     "exoduses", "exorcise", "exorcism", "exorcist", "expanded",
04931     "expanses", "expected", "expedite", "expelled", "expended",
04932     "expenses", "expertly", "expiated", "expiates", "expiring",
04933     "explains", "explicit", "exploded", "explodes", "exploits",
04934     "explored", "explorer", "explores", "exponent", "exported",
04935     "exporter", "exposing", "exposure", "expounds", "expunged",
04936     "expunges", "extended", "exterior", "external", "extincts",
04937     "extolled", "extorted", "extracts", "extremer", "extremes",
04938     "extruded", "extrudes", "exultant", "exulting", "eyeballs",
04939     "eyebrows", "eyeglass", "eyeliner", "eyepiece", "eyesight",
04940     "eyesores", "eyeteeth", "eyetooth", "fabulous", "faceless",
04941     "faceting", "facially", "facility", "factions", "factored",
04942     "factotum", "failings", "failures", "faintest", "fainting",
04943     "fairness", "fairways", "faithful", "faithing", "falconer",
04944     "falconry", "fallback", "fallible", "fallibly", "falloffs",
04945     "fallowed", "falsetto", "faltered", "familial", "familiar",
04946     "families", "famished", "famishes", "famously", "fanatics",
04947     "fanciers", "fanciest", "fanciful", "fancying", "fandango",
04948     "fanfares", "fanlight", "fantasia", "fanzines", "farcical",
04949     "farewell", "farmhand", "farmland", "farmyard", "farriers",
04950     "farrowed", "farthest", "farthing", "fascists", "fashions",
04951     "fastball", "fastened", "fastener", "fastness", "fatalism",
04952     "fatalist", "fatality", "fatheads", "fathered", "fatherly",
04953     "fathomed", "fatigued", "fatigues", "fattened", "fattiest",
04954     "faultier", "faultily", "faulting", "fearless", "fearsome",
04955     "feasible", "feasibly", "feasting", "feathers", "feathery",
04956     "featured", "features", "feckless", "federals", "federate",
04957     "feeblest", "feedback", "feedbags", "feedings", "feelgood",
04958     "feelings", "feigning", "feinting", "feistier", "feldspar",
04959     "felicity", "fellatio", "felonies", "feminine", "feminism",
04960     "feminist", "ferments", "ferocity", "ferreted", "ferrules",
04961     "ferrying", "ferryman", "ferrymen", "fervency", "fervidly",
04962     "festered", "festival", "festoons", "fetching", "fetishes",
04963     "fetlocks", "fettered", "feverish", "fiascoes", "ficklest",
04964     "fictions", "fiddlers", "fiddlier", "fiddling", "fidelity",
04965     "fidgeted", "fielders", "fielding", "fiendish", "fiercely",
04966     "fiercest", "fieriest", "fifteens", "fiftieth", "fighters",
04967     "fighting", "figments", "figurine", "figuring", "filament",
04968     "filberts", "filching", "filigree", "filleted", "fillings",
04969     "filliped", "filmiest", "filtered", "filthier", "filthily",
04970     "filtrate", "finagled", "finagler", "finagles", "finalist",
04971     "finality", "financed", "finances", "findings", "fineness",
04972     "finessed", "finesses", "fingered", "finished", "finisher",
04973     "finishes", "finitely", "finniest", "firearms", "fireball",
04974     "firebomb", "firebugs", "fireplug", "fireside", "firetrap",
04975     "firewall", "firewood", "firework", "firmness", "firmware",
04976     "fiscally", "fishbowl", "fishcake", "fishhook", "fishiest",
04977     "fishnets", "fishtail", "fishwife", "fissures", "fistfuls",
04978     "fitfully", "fitments", "fittings", "fixating", "fixation",
04979     "fixative", "fixtures", "fizziest", "fizzling", "flabbier",
04980     "flagella", "flagging", "flagpole", "flagrant", "flagship",
04981     "flailing", "flakiest", "flamenco", "flamingo", "flamings",
04982     "flanking", "flannels", "flapjack", "flappers", "flapping",
04983     "flashers", "flashest", "flashgun", "flashier", "flashily",
04984     "flashing", "flatbeds", "flatboat", "flatcars", "flatfeet",
04985     "flatfish", "flatfoot", "flatiron", "flatlets", "flatmate",
04986     "flatness", "flattens", "flatters", "flattery", "flattest",
04987     "flatting", "flattops", "flatware", "flaunted", "flautist",
04988     "flawless", "fleabags", "fleabite", "fleapits", "flecking",
04989     "fleecier", "fleecing", "fleetest", "fleeting", "fleshier",
04990     "fleshing", "fleshpot", "flexible", "flexibly", "flextime",
04991     "flickers", "flicking", "flimflam", "flimsier", "flimsily",
04992     "flinched", "flinches", "flinging", "flintier", "flippant",
04993     "flippers", "flippest", "flipping", "flirting", "flitting",
04994     "floaters", "floating", "flocking", "flogging", "flooding",
04995     "floodlit", "flooring", "floozies", "floppier", "floppies",
04996     "flopping", "floridly", "florists", "flossing", "flotilla",
04997     "flounced", "flounces", "flounder", "flourier", "flouring",
04998     "flourish", "flouting", "flowered", "flubbing", "fluently",
04999     "fluffier", "fluffing", "fluidity", "flukiest", "flunkies",
05000     "flunking", "fluoride", "fluorine", "fluorite", "flurried",
05001     "flurries", "flushest", "flushing", "flusters", "flutists",
05002     "flutters", "fluttery", "flyblown", "flyovers", "flypaper",
05003     "flypasts", "flysheet", "flyspeck", "flywheel", "foamiest",
05004     "focusing", "fogbound", "foggiest", "foghorns", "foisting",
05005     "foldaway", "folklore", "folksier", "follicle", "followed",
05006     "follower", "fomented", "fondants", "fondling", "fondness",
05007     "foolscap", "football", "footfall", "foothill", "foothold",
05008     "footings", "footling", "footnote", "footpath", "footrest",
05009     "footsies", "footsore", "footstep", "footwear", "footwork",
05010     "foragers", "foraging", "foraying", "forbears", "forborne",
05011     "forceful", "forcible", "forcibly", "forearms", "forebear",
05012     "forebode", "forecast", "foredoom", "forefeet", "forefoot",
05013     "foregone", "forehand", "forehead", "forelegs", "forelock",
05014     "foremast", "foremost", "forename", "forenoon", "forensic",
05015     "foreplay", "foresail", "foreseen", "foresees", "foreskin",
05016     "forested", "forester", "forestry", "foretell", "foretold",
05017     "forewarn", "forewent", "foreword", "forfeits", "forgiven",
05018     "forgives", "forgoing", "forkfuls", "forklift", "formalin",
05019     "formally", "formerly", "formless", "forsaken", "forsakes",
05020     "forsooth", "forswear", "forswore", "forsworn", "fortieth",
05021     "fortress", "fortunes", "forwards", "fostered", "foulness",
05022     "founders", "founding", "fountain", "fourfold", "foursome",
05023     "fourteen", "fourthly", "foxglove", "foxholes", "foxhound",
05024     "foxhunts", "foxtrots", "fracases", "fractals", "fraction",
05025     "fracture", "fragment", "fragrant", "frailest", "frankest",
05026     "franking", "fraughts", "frazzled", "frazzles", "freakier",
05027     "freaking", "freakish", "freckled", "freckles", "freebase",
05028     "freebies", "freedman", "freedmen", "freedoms", "freehand",
05029     "freehold", "freeload", "freesias", "freeware", "freeways",
05030     "freewill", "freezers", "freezing", "freights", "frenetic",
05031     "frenzied", "frenzies", "frequent", "frescoes", "freshens",
05032     "freshers", "freshest", "freshets", "freshman", "freshmen",
05033     "fretting", "fretwork", "friaries", "friction", "friendly",
05034     "friezing", "frigates", "frigging", "frighted", "frighten",
05035     "frigidly", "frillier", "frillies", "fringing", "frippery",
05036     "friskier", "friskily", "frisking", "frissons", "fritters",
05037     "frizzier", "frizzing", "frizzled", "frizzles", "frontage",
05038     "frontier", "fronting", "frostbit", "frostier", "frostily",
05039     "frosting", "frothier", "frothing", "frowning", "frowzier",
05040     "fructify", "fructose", "frugally", "fruitful", "fruitier",
05041     "fruiting", "fruition", "frumpier", "frumpish", "fuchsias",
05042     "fuckhead", "fuddling", "fugitive", "fulcrums", "fullback",
05043     "fullness", "fumblers", "fumbling", "fumigate", "function",
05044     "funerals", "funerary", "funereal", "funfairs", "funkiest",
05045     "funniest", "funnyman", "funnymen", "furbelow", "furlongs",
05046     "furlough", "furnaces", "furriers", "furriest", "furrowed",
05047     "furthers", "furthest", "fuselage", "fusilier", "fussiest",
05048     "fusspots", "fustiest", "futilely", "futility", "futurism",
05049     "futurist", "futurity", "fuzziest", "gabbiest", "gabbling",
05050     "gadabout", "gadflies", "gadgetry", "gainsaid", "gainsays",
05051     "galactic", "galaxies", "gallants", "galleons", "galloped",
05052     "galoshed", "galoshes", "galumphs", "galvanic", "gamblers",
05053     "gambling", "gamecock", "gameness", "gangland", "gangling",
05054     "ganglion", "gangrene", "gangstas", "gangster", "gangways",
05055     "gantlets", "gantries", "gaolbird", "garaging", "garbanzo",
05056     "garbling", "gardened", "gardener", "gardenia", "gargling",
05057     "gargoyle", "garishly", "garlands", "garlicky", "garments",
05058     "garnered", "garrison", "garroted", "garrotes", "gaslight",
05059     "gasoline", "gassiest", "gasworks", "gatepost", "gateways",
05060     "gathered", "gatherer", "gauchest", "gaudiest", "gauntest",
05061     "gaunting", "gauntlet", "gauziest", "gavottes", "gawkiest",
05062     "gazelles", "gazetted", "gazettes", "gazpacho", "gazumped",
05063     "geekiest", "geldings", "gemstone", "gendarme", "generals",
05064     "generate", "generics", "generous", "genetics", "genially",
05065     "genitals", "genitive", "geniuses", "genocide", "gentians",
05066     "gentiles", "gentlest", "gentling", "gentries", "gentrify",
05067     "geodesic", "geologic", "geometer", "geometry", "geranium",
05068     "germinal", "gestalts", "gestated", "gestates", "gestured",
05069     "gestures", "getaways", "gherkins", "ghosting", "ghoulish",
05070     "giantess", "gibbered", "gibbeted", "giddiest", "gigabyte",
05071     "gigantic", "gigglers", "gigglier", "giggling", "gimcrack",
05072     "gimleted", "gimmicks", "gimmicky", "gimpiest", "gingered",
05073     "gingerly", "ginkgoes", "giraffes", "girdling", "girlhood",
05074     "giveaway", "gizzards", "glaciers", "gladdens", "gladdest",
05075     "gladiola", "gladioli", "gladlier", "gladness", "glancing",
05076     "glasnost", "glassful", "glassier", "glassing", "glaucoma",
05077     "glaziers", "gleaming", "gleaning", "glibbest", "glibness",
05078     "glimmers", "glimpsed", "glimpses", "glinting", "glistens",
05079     "glitches", "glitters", "glittery", "glitzier", "gloaming",
05080     "gloating", "globally", "globular", "globules", "gloomier",
05081     "gloomily", "glopping", "glorious", "glorying", "glossary",
05082     "glossier", "glossies", "glossing", "glowered", "glowworm",
05083     "glummest", "glumness", "glutting", "gluttons", "gluttony",
05084     "glycerin", "glycerol", "glycogen", "gnarlier", "gnarling",
05085     "gnashing", "goalless", "goalpost", "goatherd", "goatskin",
05086     "gobblers", "gobbling", "godawful", "godchild", "godliest",
05087     "godsends", "godspeed", "goggling", "goldener", "goldfish",
05088     "goldmine", "golliwog", "gondolas", "goodbyes", "goodlier",
05089     "goodness", "goodwill", "goofiest", "googlies", "gorgeous",
05090     "gorillas", "goriness", "gormless", "goslings", "gossamer",
05091     "gouaches", "gourmand", "gourmets", "goutiest", "governed",
05092     "governor", "grabbier", "grabbing", "graceful", "gracious",
05093     "grackles", "gradable", "gradient", "graduate", "graffiti",
05094     "graffito", "grafters", "grafting", "grainier", "grammars",
05095     "grandads", "granddad", "grandees", "grandest", "grandeur",
05096     "grandmas", "grandpas", "grandson", "grannies", "granting",
05097     "granular", "granules", "graphics", "graphing", "graphite",
05098     "grapnels", "grappled", "grapples", "grasping", "grassier",
05099     "grassing", "grateful", "gratings", "gratuity", "gravelly",
05100     "gravitas", "grayness", "greasers", "greasier", "greasing",
05101     "greatest", "greedier", "greedily", "greenery", "greenest",
05102     "greenfly", "greening", "greenish", "greeting", "gremlins",
05103     "grenades", "greyness", "griddles", "gridiron", "gridlock",
05104     "grieving", "grievous", "griffins", "grilling", "grimaced",
05105     "grimaces", "grimiest", "grimmest", "grimness", "grinders",
05106     "grinding", "grinning", "gripping", "grislier", "gritters",
05107     "grittier", "gritting", "grizzled", "grizzles", "groaning",
05108     "groggier", "groggily", "grommets", "grooming", "groovier",
05109     "grooving", "grosbeak", "grossest", "grossing", "grottier",
05110     "grottoes", "grouched", "grouches", "grounded", "grounder",
05111     "groupers", "groupies", "grouping", "grousing", "grouting",
05112     "growling", "grownups", "grubbier", "grubbing", "grudging",
05113     "gruesome", "gruffest", "gruffing", "grumbled", "grumbler",
05114     "grumbles", "grumpier", "grumpily", "grungier", "grunting",
05115     "guaranty", "guardian", "guarding", "guessers", "guessing",
05116     "guesting", "guffawed", "guidance", "guilders", "guileful",
05117     "guiltier", "guiltily", "gullible", "gumballs", "gumboots",
05118     "gumdrops", "gummiest", "gumption", "gumshoes", "gunboats",
05119     "gunfight", "gunmetal", "gunpoint", "gunshots", "gunsmith",
05120     "gunwales", "gurgling", "gushiest", "gusseted", "gustiest",
05121     "gutsiest", "guttered", "guttural", "guzzlers", "guzzling",
05122     "gymkhana", "gymnasts", "gymslips", "gyrating", "gyration",
05123     "habitats", "habitual", "hacienda", "hackneys", "hacksaws",
05124     "haddocks", "haggises", "hagglers", "haggling", "hairband",
05125     "haircuts", "hairgrip", "hairiest", "hairless", "hairline",
05126     "hairnets", "hairpins", "halberds", "halfback", "halftime",
05127     "halftone", "halfwits", "halibuts", "hallmark", "hallowed",
05128     "hallways", "halogens", "haltered", "haltings", "halyards",
05129     "hammered", "hammocks", "hampered", "hamsters", "handbags",
05130     "handball", "handbill", "handbook", "handcars", "handcart",
05131     "handcuff", "handfuls", "handguns", "handhold", "handicap",
05132     "handiest", "handlers", "handling", "handmade", "handmaid",
05133     "handouts", "handover", "handpick", "handrail", "handsaws",
05134     "handsets", "handsome", "handwork", "handyman", "handymen",
05135     "hangings", "hangnail", "hangouts", "hangover", "hankered",
05136     "happened", "happiest", "harangue", "harassed", "harasses",
05137     "hardback", "hardball", "hardcore", "hardened", "hardener",
05138     "hardiest", "hardness", "hardship", "hardtack", "hardtops",
05139     "hardware", "hardwood", "harebell", "harelips", "haricots",
05140     "harmless", "harmonic", "harpists", "harpoons", "harridan",
05141     "harrowed", "harrumph", "harrying", "harshest", "harvests",
05142     "hassling", "hassocks", "hastened", "hastiest", "hatbands",
05143     "hatboxes", "hatchery", "hatchets", "hatching", "hatchway",
05144     "hatstand", "hauliers", "haunched", "haunches", "haunting",
05145     "hawthorn", "haycocks", "haylofts", "hayricks", "hayrides",
05146     "hayseeds", "haystack", "hazarded", "hazelnut", "haziness",
05147     "headache", "headband", "headbutt", "headcase", "headgear",
05148     "headhunt", "headiest", "headings", "headlamp", "headland",
05149     "headless", "headline", "headlock", "headlong", "headrest",
05150     "headroom", "headsets", "headship", "headwind", "headword",
05151     "hearings", "hearkens", "hearsing", "heartens", "heartier",
05152     "hearties", "heartily", "hearting", "heatedly", "heathens",
05153     "heatwave", "heavenly", "heaviest", "heavyset", "hecklers",
05154     "heckling", "hectares", "hectored", "hedgehog", "hedgerow",
05155     "hedonism", "hedonist", "heedless", "heehawed", "heftiest",
05156     "hegemony", "heighten", "heirloom", "heisting", "helipads",
05157     "heliport", "hellhole", "hellions", "helmeted", "helmsman",
05158     "helmsmen", "helpings", "helpless", "helpline", "helpmate",
05159     "hemlines", "hemlocks", "henchman", "henchmen", "hennaing",
05160     "henpecks", "hepatics", "heptagon", "heralded", "heraldic",
05161     "heraldry", "herdsman", "herdsmen", "heredity", "heresies",
05162     "heretics", "hereupon", "herewith", "heritage", "hermetic",
05163     "heroines", "herrings", "hesitant", "hesitate", "hexagons",
05164     "hiatuses", "hibachis", "hibiscus", "hideaway", "hideouts",
05165     "highball", "highborn", "highboys", "highbrow", "highland",
05166     "highness", "hightail", "highways", "hijacked", "hijacker",
05167     "hilarity", "hilliest", "hillocks", "hillside", "hilltops",
05168     "hindered", "hindmost", "hipbaths", "hippiest", "hipsters",
05169     "hireling", "historic", "hitching", "hitherto", "hoarders",
05170     "hoarding", "hoariest", "hoarsely", "hoarsest", "hobbling",
05171     "hobbyist", "hobnails", "hockshop", "hoedowns", "hogshead",
05172     "hoicking", "hoisting", "holdalls", "holdings", "holdouts",
05173     "holdover", "holidays", "holiness", "holistic", "hollered",
05174     "hollowed", "hollower", "hollowly", "hologram", "holsters",
05175     "homaging", "homburgs", "homebody", "homeboys", "homeland",
05176     "homeless", "homelier", "homemade", "homepage", "homering",
05177     "homeroom", "homesick", "homespun", "hometown", "homeward",
05178     "homework", "homicide", "homilies", "homonyms", "honester",
05179     "honestly", "honeybee", "honeydew", "honeying", "honeypot",
05180     "honorary", "hoodlums", "hoodooed", "hoodwink", "hookiest",
05181     "hookworm", "hooligan", "hoorayed", "hoovered", "hopefuls",
05182     "hopeless", "horizons", "hormonal", "hormones", "horniest",
05183     "hornless", "hornpipe", "horology", "horrible", "horribly",
05184     "horridly", "horrific", "horsebox", "horsefly", "horseman",
05185     "horsemen", "horsiest", "hosannas", "hosepipe", "hospices",
05186     "hospital", "hostages", "hosteled", "hosteler", "hostelry",
05187     "hostiles", "hostlers", "hotcakes", "hotelier", "hotfoots",
05188     "hotheads", "hothouse", "hotplate", "hotshots", "hounding",
05189     "hourlies", "houseboy", "housefly", "houseful", "houseman",
05190     "housemen", "housetop", "housings", "hovering", "howdying",
05191     "howitzer", "huckster", "huddling", "huffiest", "hugeness",
05192     "humanely", "humanest", "humanism", "humanist", "humanity",
05193     "humanoid", "humblest", "humbling", "humidify", "humidity",
05194     "humidors", "humility", "hummocks", "humorist", "humorous",
05195     "humpback", "hunching", "hundreds", "hungered", "hungover",
05196     "hungrier", "hungrily", "hunkered", "hunkiest", "huntress",
05197     "huntsman", "huntsmen", "hurdlers", "hurdling", "hurrying",
05198     "hurtling", "husbands", "huskiest", "hustings", "hustlers",
05199     "hustling", "hutching", "hyacinth", "hydrants", "hydrated",
05200     "hydrates", "hydrogen", "hygienic", "hyphened", "hypnoses",
05201     "hypnosis", "hypnotic", "hysteria", "hysteric", "icebergs",
05202     "icebound", "iceboxes", "idealism", "idealist", "identify",
05203     "identity", "ideogram", "ideology", "idiocies", "idleness",
05204     "idolater", "idolatry", "igniting", "ignition", "ignominy",
05205     "ignorant", "ignoring", "illegals", "illumine", "illusion",
05206     "illusive", "illusory", "imagined", "imagines", "imbecile",
05207     "imbibing", "imitated", "imitates", "imitator", "immanent",
05208     "immature", "immenser", "immersed", "immerses", "imminent",
05209     "immobile", "immodest", "immolate", "immortal", "immunity",
05210     "immuring", "impacted", "impaired", "impaling", "impanels",
05211     "imparted", "impasses", "impeding", "impelled", "impended",
05212     "imperial", "imperils", "impetigo", "impinged", "impinges",
05213     "impishly", "implants", "implicit", "imploded", "implodes",
05214     "implored", "implores", "implying", "impolite", "imported",
05215     "importer", "imposing", "impostor", "impotent", "impounds",
05216     "imprints", "imprison", "improper", "improved", "improves",
05217     "impudent", "impugned", "impulsed", "impulses", "impunity",
05218     "impurely", "impurest", "impurity", "imputing", "inaction",
05219     "inactive", "inasmuch", "inboards", "inbounds", "inbreeds",
05220     "incensed", "incenses", "inchoate", "incident", "incising",
05221     "incision", "incisive", "incisors", "inciting", "inclined",
05222     "inclines", "included", "includes", "incomers", "incoming",
05223     "increase", "incubate", "incurred", "indebted", "indecent",
05224     "indented", "indexing", "indicate", "indicted", "indigent",
05225     "indirect", "indolent", "inducing", "inducted", "inductee",
05226     "indulged", "indulges", "industry", "inedible", "inequity",
05227     "inertial", "inexpert", "infamies", "infamous", "infantry",
05228     "infected", "inferior", "infernal", "infernos", "inferred",
05229     "infested", "infidels", "infields", "infilled", "infinite",
05230     "infinity", "inflamed", "inflames", "inflated", "inflates",
05231     "inflects", "inflicts", "influxes", "informal", "informed",
05232     "informer", "infrared", "infringe", "infusing", "infusion",
05233     "ingested", "ingrains", "ingrates", "inhabits", "inhalant",
05234     "inhalers", "inhaling", "inherent", "inhering", "inherits",
05235     "inhibits", "inhumane", "inimical", "iniquity", "initials",
05236     "initiate", "injected", "injector", "injuries", "injuring",
05237     "inkblots", "inkiness", "inklings", "inkstand", "inkwells",
05238     "inlaying", "innately", "innocent", "innovate", "innuendo",
05239     "inputted", "inquests", "inquirer", "insanely", "insanest",
05240     "insanity", "inscribe", "insecure", "inserted", "insiders",
05241     "insights", "insignia", "insisted", "insolent", "insomnia",
05242     "inspects", "inspired", "inspires", "installs", "instance",
05243     "instants", "instills", "instinct", "instruct", "insulate",
05244     "insulted", "insureds", "insurers", "insuring", "intaglio",
05245     "integers", "integral", "intended", "intenser", "intently",
05246     "interact", "intercom", "interest", "interior", "internal",
05247     "interned", "internee", "interred", "interval", "interwar",
05248     "intimacy", "intimate", "intoning", "intranet", "intrepid",
05249     "intrigue", "intruded", "intruder", "intrudes", "intuited",
05250     "inundate", "invaders", "invading", "invalids", "invasion",
05251     "invasive", "inveighs", "inveigle", "invented", "inventor",
05252     "inverses", "inverted", "invested", "investor", "inviting",
05253     "invoiced", "invoices", "invoking", "involved", "involves",
05254     "inwardly", "ironclad", "ironical", "ironware", "ironwork",
05255     "irrigate", "irritant", "irritate", "islander", "isolated",
05256     "isolates", "isotherm", "isotopes", "isotopic", "issuance",
05257     "itchiest", "iterated", "iterates", "iterator", "jabbered",
05258     "jabberer", "jackboot", "jackdaws", "jackpots", "jaggeder",
05259     "jaggedly", "jailbird", "jalopies", "jalousie", "jamboree",
05260     "jammiest", "jangling", "janitors", "japanned", "jasmines",
05261     "jaundice", "jauntier", "jaunties", "jauntily", "jaunting",
05262     "javelins", "jawboned", "jawbones", "jawlines", "jaywalks",
05263     "jazziest", "jealousy", "jellying", "jemmying", "jeopardy",
05264     "jeremiad", "jerkiest", "jeroboam", "jerrycan", "jetliner",
05265     "jettison", "jiggered", "jiggling", "jigsawed", "jimmying",
05266     "jingling", "jingoism", "jingoist", "jobshare", "jockeyed",
05267     "jocosely", "jocosity", "jocundly", "jodhpurs", "joggling",
05268     "johnnies", "jointing", "jokingly", "jolliest", "jollying",
05269     "jonquils", "jostling", "jottings", "jouncing", "journals",
05270     "journeys", "jousting", "jovially", "joyfully", "joyously",
05271     "joyrider", "joyrides", "joystick", "jubilant", "jubilees",
05272     "juddered", "judicial", "jugglers", "juggling", "jugulars",
05273     "juiciest", "julienne", "jumbling", "jumpiest", "jumpsuit",
05274     "junction", "juncture", "junipers", "junketed", "junkiest",
05275     "junkyard", "justices", "justness", "juvenile", "kamikaze",
05276     "kangaroo", "karaokes", "katydids", "kayaking", "kedgeree",
05277     "keelhaul", "keenness", "keepsake", "kerbside", "kerchief",
05278     "kerosene", "kestrels", "keyboard", "keyholes", "keynoted",
05279     "keynotes", "keypunch", "keystone", "keywords", "kibitzed",
05280     "kibitzer", "kibitzes", "kickback", "kickiest", "kickoffs",
05281     "kiddying", "kielbasa", "killdeer", "killings", "killjoys",
05282     "kilobyte", "kilotons", "kilowatt", "kindlier", "kindling",
05283     "kindness", "kinetics", "kinfolks", "kingdoms", "kinglier",
05284     "kingpins", "kingship", "kinkiest", "kinsfolk", "kippered",
05285     "kirsches", "kitchens", "klutzier", "knackers", "knacking",
05286     "knapsack", "kneaders", "kneading", "kneecaps", "kneeling",
05287     "knelling", "knickers", "knighted", "knightly", "knitters",
05288     "knitting", "knitwear", "knobbier", "knockers", "knocking",
05289     "knockoff", "knockout", "knothole", "knottier", "knotting",
05290     "knowable", "knowings", "knuckled", "knuckles", "kohlrabi",
05291     "kookiest", "koshered", "kowtowed", "kumquats", "kvetched",
05292     "kvetches", "laburnum", "lacerate", "lacquers", "lacrosse",
05293     "lactated", "lactates", "laddered", "ladybird", "ladybugs",
05294     "ladylike", "ladyship", "laggards", "lakeside", "lamasery",
05295     "lambadas", "lambaste", "lambkins", "lambskin", "lameness",
05296     "lamented", "laminate", "lampoons", "lamppost", "lampreys",
05297     "landfall", "landfill", "landings", "landlady", "landless",
05298     "landlord", "landmark", "landmass", "landmine", "landslid",
05299     "landslip", "landward", "language", "languish", "languors",
05300     "lankiest", "lanterns", "lanyards", "lapidary", "lapwings",
05301     "larboard", "lariated", "larkspur", "larynges", "lasagnas",
05302     "lashings", "lassoing", "latching", "latchkey", "lateness",
05303     "laterals", "lathered", "latitude", "latrines", "latterly",
05304     "latticed", "lattices", "laudable", "laudably", "laudanum",
05305     "laughing", "laughter", "launched", "launcher", "launches",
05306     "launders", "laureate", "lavatory", "lavender", "lavished",
05307     "lavisher", "lavishes", "lavishly", "lawfully", "lawgiver",
05308     "lawmaker", "lawsuits", "laxative", "layabout", "layering",
05309     "layettes", "layovers", "laywoman", "laywomen", "laziness",
05310     "leaching", "leafiest", "leafless", "leaflets", "leaguing",
05311     "leakages", "leakiest", "leanings", "leanness", "leapfrog",
05312     "learners", "learning", "leashing", "leathers", "leathery",
05313     "leavened", "leavings", "lecithin", "lecterns", "lectured",
05314     "lecturer", "lectures", "ledgered", "leeching", "leeriest",
05315     "leewards", "leftists", "leftmost", "leftover", "leftward",
05316     "legacies", "legalese", "legalism", "legality", "legatees",
05317     "legating", "legation", "leggiest", "leggings", "legrooms",
05318     "leisured", "lemmings", "lemonade", "lemoning", "lengthen",
05319     "leniency", "lenients", "leopards", "leotards", "lesbians",
05320     "lessened", "letdowns", "lethally", "lethargy", "lettered",
05321     "lettings", "lettuces", "leverage", "levering", "levitate",
05322     "lewdness", "lexicons", "liaising", "liaisons", "libation",
05323     "liberals", "liberate", "libretto", "licensee", "lickings",
05324     "licorice", "lifebelt", "lifeboat", "lifeless", "lifelike",
05325     "lifeline", "lifelong", "lifespan", "lifetime", "lifework",
05326     "liftoffs", "ligament", "ligature", "lightens", "lighters",
05327     "lightest", "lighting", "likelier", "likeness", "likening",
05328     "likewise", "limbered", "limberer", "limbless", "limboing",
05329     "limeades", "limerick", "limiting", "limpidly", "limpness",
05330     "linchpin", "lineages", "lineally", "linearly", "linefeed",
05331     "linesman", "linesmen", "lingered", "lingerer", "lingerie",
05332     "linguist", "liniment", "linkages", "linoleum", "lipreads",
05333     "lipstick", "liqueurs", "liquored", "listened", "listener",
05334     "listeria", "listings", "listless", "litanies", "literacy",
05335     "literals", "literary", "literate", "literati", "litigant",
05336     "litigate", "littered", "littlest", "littoral", "livelier",
05337     "livelong", "livening", "liveried", "liveries", "liverish",
05338     "loadable", "loamiest", "loanword", "loathing", "lobbying",
05339     "lobbyist", "lobotomy", "lobsters", "localing", "locality",
05340     "locating", "location", "lockable", "lockouts", "lockstep",
05341     "locoweed", "locution", "lodestar", "lodgings", "loftiest",
05342     "logbooks", "logician", "logistic", "logotype", "loitered",
05343     "loiterer", "lollipop", "lolloped", "lonelier", "lonesome",
05344     "longboat", "longbows", "longhair", "longhand", "longhorn",
05345     "longings", "longtime", "longueur", "longways", "lookouts",
05346     "looniest", "loophole", "loopiest", "loosened", "lopsided",
05347     "lordlier", "lordship", "loudlier", "loudness", "loungers",
05348     "lounging", "lousiest", "lovebird", "loveless", "lovelier",
05349     "lovelies", "lovelorn", "lovesick", "lovingly", "lowbrows",
05350     "lowering", "lowlands", "lowliest", "loyalest", "loyalist",
05351     "lozenges", "lucidity", "luckiest", "luckless", "lugholes",
05352     "lukewarm", "lumbered", "luminary", "luminous", "lummoxes",
05353     "lumpiest", "lunacies", "lunatics", "lunchbox", "luncheon",
05354     "lunching", "lungfuls", "lurching", "luscious", "lushness",
05355     "lustiest", "lustrous", "luxuries", "lychgate", "lymphoma",
05356     "lynching", "lyrebird", "lyricism", "lyricist", "macaroni",
05357     "macaroon", "macerate", "machetes", "machined", "machines",
05358     "machismo", "mackerel", "mackinaw", "maddened", "madhouse",
05359     "madrases", "madrigal", "madwoman", "madwomen", "maestros",
05360     "magazine", "magician", "magicked", "magnates", "magnesia",
05361     "magnetic", "magnetos", "magnolia", "maharani", "mahatmas",
05362     "mahogany", "maidenly", "mailbags", "mailings", "mailshot",
05363     "mainland", "mainline", "mainmast", "mainsail", "mainstay",
05364     "maintain", "majestic", "majoring", "majority", "makeover",
05365     "maladies", "malarial", "malarkey", "maleness", "malicing",
05366     "maligned", "malinger", "mallards", "maltreat", "mamboing",
05367     "mammoths", "manacled", "manacles", "managers", "managing",
05368     "manatees", "mandalas", "mandarin", "mandated", "mandates",
05369     "mandible", "mandolin", "mandrake", "mandrill", "manfully",
05370     "mangiest", "mangling", "mangrove", "manholes", "manhunts",
05371     "maniacal", "manicure", "manifest", "manifold", "manikins",
05372     "manliest", "mannered", "mannerly", "manorial", "manpower",
05373     "mansards", "mansions", "mantilla", "mantises", "mantissa",
05374     "mantling", "manually", "manumits", "manuring", "mappings",
05375     "marabous", "marathon", "marauded", "marauder", "marbling",
05376     "marchers", "marching", "marginal", "mariachi", "marigold",
05377     "marimbas", "marinade", "marinate", "mariners", "maritime",
05378     "marjoram", "markdown", "markedly", "marketed", "marketer",
05379     "markings", "marksman", "marksmen", "marmoset", "marooned",
05380     "marquees", "marquess", "marquise", "marriage", "marrieds",
05381     "marrowed", "marrying", "marshals", "marshier", "martinet",
05382     "martinis", "martyred", "marzipan", "mascaras", "massacre",
05383     "massaged", "massages", "masseurs", "masseuse", "mastered",
05384     "masterly", "masthead", "mastiffs", "mastitis", "mastodon",
05385     "mastoids", "matadors", "matchbox", "matching", "material",
05386     "maternal", "matrices", "matronly", "mattered", "mattocks",
05387     "mattress", "maturely", "maturest", "maturing", "maturity",
05388     "maunders", "maverick", "maxillae", "maximals", "maximums",
05389     "mayflies", "mayoress", "maypoles", "meagerly", "mealiest",
05390     "mealtime", "meanders", "meanings", "meanness", "meantime",
05391     "measlier", "measured", "measures", "meatball", "meatiest",
05392     "meatloaf", "mechanic", "meddlers", "meddling", "mediated",
05393     "mediates", "mediator", "medicals", "medicate", "medicine",
05394     "medieval", "mediocre", "meditate", "medullas", "meekness",
05395     "meetings", "megabyte", "megalith", "megastar", "megatons",
05396     "megawatt", "melamine", "melanges", "melanoma", "mellowed",
05397     "mellower", "melodics", "melodies", "meltdown", "membrane",
05398     "mementos", "memorial", "memories", "memsahib", "menacing",
05399     "menhaden", "menially", "menorahs", "menswear", "mentally",
05400     "mentions", "mentored", "merchant", "merciful", "mercuric",
05401     "meridian", "meringue", "meriting", "mermaids", "merriest",
05402     "mescalin", "mesdames", "mesmeric", "mesquite", "messaged",
05403     "messages", "messiahs", "messiest", "mestizos", "metallic",
05404     "metaphor", "meteoric", "methanol", "methinks", "metrical",
05405     "microbes", "middling", "midfield", "midlands", "midmosts",
05406     "midnight", "midpoint", "midriffs", "midsized", "midterms",
05407     "midweeks", "midwifed", "midwifes", "midwives", "midyears",
05408     "mightier", "mightily", "migraine", "migrants", "migrated",
05409     "migrates", "mildewed", "mildness", "mileages", "milepost",
05410     "militant", "military", "militate", "militias", "milkiest",
05411     "milkmaid", "milksops", "milkweed", "millibar", "milliner",
05412     "millions", "millpond", "millrace", "mimicked", "minarets",
05413     "minatory", "mindless", "mindsets", "minerals", "mingling",
05414     "minibars", "minibike", "minicabs", "minicams", "minimals",
05415     "minimums", "minister", "ministry", "minivans", "minoring",
05416     "minority", "minsters", "minstrel", "mintiest", "minuends",
05417     "minutely", "minutest", "minutiae", "minuting", "miracles",
05418     "mirrored", "mirthful", "misapply", "miscalls", "miscarry",
05419     "miscasts", "mischief", "miscount", "miscuing", "misdeals",
05420     "misdealt", "misdeeds", "misdoing", "miseries", "misfired",
05421     "misfires", "misguide", "misheard", "mishears", "mishmash",
05422     "misjudge", "misleads", "mismatch", "misnamed", "misnames",
05423     "misnomer", "misogyny", "misplace", "misplays", "misprint",
05424     "misquote", "misreads", "misruled", "misrules", "missiles",
05425     "missions", "missives", "misspell", "misspend", "misspent",
05426     "misstate", "missteps", "mistaken", "mistakes", "mistiest",
05427     "mistimed", "mistimes", "mistreat", "mistress", "mistrial",
05428     "mistrust", "mistypes", "misusing", "mitigate", "mixtures",
05429     "mnemonic", "mobility", "mobsters", "moccasin", "moderate",
05430     "moderner", "modester", "modestly", "modicums", "modified",
05431     "modifier", "modifies", "modishly", "modulate", "moieties",
05432     "moistens", "moistest", "moisture", "molasses", "moldered",
05433     "molecule", "molehill", "moleskin", "molested", "molester",
05434     "mollusks", "momentum", "monarchs", "monarchy", "monastic",
05435     "monaural", "monetary", "moneybag", "moneybox", "mongered",
05436     "mongoose", "mongrels", "monikers", "monitors", "monkeyed",
05437     "monocles", "monogamy", "monogram", "monolith", "monopoly",
05438     "monorail", "monotone", "monotony", "monoxide", "monsieur",
05439     "monsoons", "monsters", "montages", "monument", "moochers",
05440     "mooching", "moodiest", "moonbeam", "moonless", "moonshot",
05441     "moorhens", "moorings", "moorland", "moraines", "moralist",
05442     "morality", "moralled", "morasses", "morbidly", "mordants",
05443     "moreover", "moribund", "mornings", "morosely", "morpheme",
05444     "morphine", "morphing", "mortally", "mortared", "mortgage",
05445     "mortised", "mortises", "mortuary", "moseying", "mosquito",
05446     "mossiest", "mothball", "mothered", "motherly", "motioned",
05447     "motivate", "motliest", "motorcar", "motoring", "motorist",
05448     "motorman", "motormen", "motorway", "mottling", "moulders",
05449     "moulting", "mounding", "mountain", "mounting", "mourners",
05450     "mournful", "mourning", "mousiest", "moussaka", "moussing",
05451     "mouthful", "mouthing", "movables", "movement", "movingly",
05452     "mucilage", "muckiest", "muckrake", "muddiest", "muddling",
05453     "muddying", "mudflaps", "mudflats", "mudguard", "mudpacks",
05454     "mudslide", "muezzins", "mufflers", "muffling", "muggiest",
05455     "muggings", "mulberry", "mulching", "muleteer", "mulishly",
05456     "mullions", "multiple", "multiply", "mumblers", "mumbling",
05457     "munchies", "munching", "mundanes", "munition", "muralist",
05458     "murdered", "murderer", "murkiest", "murmured", "muscatel",
05459     "muscling", "muscular", "mushiest", "mushroom", "musicale",
05460     "musicals", "musician", "musicked", "musketry", "muskiest",
05461     "muskrats", "mussiest", "mustangs", "mustered", "mustiest",
05462     "mutating", "mutation", "muteness", "mutilate", "mutineer",
05463     "mutinied", "mutinies", "mutinous", "muttered", "mutually",
05464     "muzzling", "mycology", "mystical", "mystique", "mythical",
05465     "nakedest", "nameless", "namesake", "nannying", "napalmed",
05466     "nappiest", "narcosis", "narcotic", "narrated", "narrates",
05467     "narrator", "narrowed", "narrower", "narrowly", "narwhals",
05468     "nastiest", "national", "nativity", "nattered", "nattiest",
05469     "naturals", "naturing", "naturism", "naturist", "nauseate",
05470     "nauseous", "nautical", "nautilus", "navigate", "naysayer",
05471     "nearlier", "nearness", "nearside", "neatened", "neatness",
05472     "nebulous", "neckband", "necklace", "neckline", "neckties",
05473     "necrosis", "needfuls", "neediest", "needless", "needling",
05474     "negating", "negation", "negative", "neglects", "negligee",
05475     "neighing", "nematode", "neonatal", "neonates", "neophyte",
05476     "neoprene", "nepotism", "nerdiest", "nerviest", "nestling",
05477     "nettling", "networks", "neuritis", "neurones", "neuroses",
05478     "neurosis", "neurotic", "neutered", "neutrals", "neutrino",
05479     "neutrons", "newborns", "newcomer", "newlywed", "newsboys",
05480     "newscast", "newsiest", "newsreel", "newsroom", "nibblers",
05481     "nibbling", "niceness", "niceties", "nickname", "nicotine",
05482     "niftiest", "niggards", "niggling", "nightcap", "nighties",
05483     "nihilism", "nihilist", "nimblest", "ninepins", "nineteen",
05484     "nineties", "nippered", "nippiest", "nippling", "nitpicks",
05485     "nitrated", "nitrates", "nitrogen", "nobbling", "nobility",
05486     "nobleman", "noblemen", "nobodies", "nocturne", "noisiest",
05487     "nominate", "nominees", "nondairy", "nonempty", "nonesuch",
05488     "nonevent", "nonfatal", "nonhuman", "nonrigid", "nonsense",
05489     "nonstick", "nontoxic", "nonunion", "nonusers", "nonwhite",
05490     "noodling", "noontime", "normalcy", "normally", "northern",
05491     "nosebags", "nosedive", "nosegays", "nosiness", "nostrils",
05492     "nostrums", "notables", "notaries", "notation", "notching",
05493     "notebook", "notelets", "notepads", "nothings", "noticing",
05494     "notified", "notifies", "notional", "novelist", "novellas",
05495     "nowadays", "nugatory", "nuisance", "numbered", "numbness",
05496     "numeracy", "numerals", "numerate", "numerous", "numinous",
05497     "numskull", "nuptials", "nurtured", "nurtures", "nutcases",
05498     "nuthatch", "nuthouse", "nutmeats", "nutrient", "nutshell",
05499     "nuttiest", "nuzzling", "nymphets", "oarlocks", "oatcakes",
05500     "obduracy", "obdurate", "obedient", "obeisant", "obelisks",
05501     "obituary", "objected", "objector", "oblation", "obligate",
05502     "obliging", "obliques", "oblivion", "obscener", "obscured",
05503     "obscurer", "obscures", "observed", "observer", "observes",
05504     "obsessed", "obsesses", "obsidian", "obsolete", "obstacle",
05505     "obstruct", "obtained", "obtruded", "obtrudes", "obtusely",
05506     "obtusest", "obverses", "obviated", "obviates", "ocarinas",
05507     "occasion", "occluded", "occludes", "occupant", "occupied",
05508     "occupier", "occupies", "occurred", "octagons", "oculists",
05509     "oddballs", "oddities", "oddments", "odiously", "odometer",
05510     "odysseys", "offbeats", "offended", "offender", "offering",
05511     "officers", "official", "offloads", "offshoot", "offshore",
05512     "offsides", "offstage", "oftenest", "oilcloth", "oilfield",
05513     "oiliness", "oilskins", "ointment", "oldening", "oleander",
05514     "oligarch", "omission", "omitting", "omnivore", "oncology",
05515     "oncoming", "ongoings", "onioning", "onlooker", "onrushes",
05516     "ontology", "opaquely", "opaquest", "opaquing", "opencast",
05517     "openings", "openness", "openwork", "operable", "operands",
05518     "operated", "operates", "operatic", "operator", "operetta",
05519     "opinions", "opossums", "opponent", "opposing", "opposite",
05520     "optician", "optimism", "optimist", "optimums", "optional",
05521     "optioned", "opulence", "oracling", "oracular", "orangery",
05522     "orations", "oratorio", "orbitals", "orbiting", "orchards",
05523     "ordained", "ordering", "ordinals", "ordinary", "ordnance",
05524     "organics", "organism", "organist", "orgasmic", "oriental",
05525     "oriented", "orifices", "original", "ornament", "ornately",
05526     "ornerier", "orphaned", "orthodox", "ossified", "ossifies",
05527     "ottering", "ottomans", "outbacks", "outboard", "outbound",
05528     "outbreak", "outbroke", "outburst", "outcasts", "outclass",
05529     "outcomes", "outcries", "outcrops", "outdated", "outdoing",
05530     "outdoors", "outfaced", "outfaces", "outfalls", "outfield",
05531     "outflank", "outflows", "outfoxed", "outfoxes", "outgoing",
05532     "outgrown", "outgrows", "outguess", "outhouse", "outlasts",
05533     "outlawed", "outlined", "outlines", "outlived", "outlives",
05534     "outlooks", "outlying", "outmoded", "outpaced", "outpaces",
05535     "outplays", "outpoint", "outposts", "outraged", "outrages",
05536     "outranks", "outreach", "outrider", "outright", "outsells",
05537     "outshine", "outshone", "outsider", "outsides", "outsizes",
05538     "outskirt", "outsmart", "outstays", "outstrip", "outtakes",
05539     "outvoted", "outvotes", "outwards", "outwears", "outweigh",
05540     "ovations", "ovenware", "overacts", "overages", "overalls",
05541     "overawed", "overawes", "overbear", "overbids", "overbite",
05542     "overbook", "overbore", "overcame", "overcast", "overcoat",
05543     "overcome", "overcook", "overdoes", "overdone", "overdose",
05544     "overdraw", "overdrew", "overeats", "overflew", "overflow",
05545     "overfull", "overgrew", "overgrow", "overhand", "overhang",
05546     "overhaul", "overhead", "overhear", "overheat", "overhung",
05547     "overjoys", "overkill", "overlaid", "overlain", "overland",
05548     "overlaps", "overlays", "overleaf", "overlies", "overload",
05549     "overlong", "overlook", "overlord", "overmuch", "overpaid",
05550     "overpass", "overpays", "overplay", "overrate", "override",
05551     "overripe", "overrode", "overrule", "overruns", "overseas",
05552     "overseen", "overseer", "oversees", "oversell", "overshoe",
05553     "overshot", "oversize", "oversold", "overstay", "overstep",
05554     "overtake", "overtime", "overtire", "overtone", "overtook",
05555     "overture", "overturn", "overused", "overuses", "overview",
05556     "overwork", "oviducts", "ovulated", "ovulates", "owlishly",
05557     "oxymoron", "pacified", "pacifier", "pacifies", "pacifism",
05558     "pacifist", "packaged", "packages", "paddling", "paddocks",
05559     "padlocks", "paganism", "pageants", "pageboys", "paginate",
05560     "pailfuls", "painless", "paintbox", "painters", "painting",
05561     "pairings", "pairwise", "paisleys", "palatals", "palatial",
05562     "palavers", "paleface", "paleness", "palettes", "palimony",
05563     "palisade", "palliate", "palmetto", "palmiest", "palmists",
05564     "palmtops", "palomino", "palpable", "palpably", "palpated",
05565     "palpates", "palsying", "paltrier", "pampered", "pamphlet",
05566     "panaceas", "pancaked", "pancakes", "pancreas", "pandemic",
05567     "pandered", "panderer", "panelist", "panicked", "panniers",
05568     "panorama", "panpipes", "pantheon", "panthers", "pantries",
05569     "pantsuit", "papacies", "paperboy", "papering", "papillae",
05570     "papooses", "parabled", "parables", "parabola", "paradigm",
05571     "parading", "paradise", "paraffin", "paragons", "parakeet",
05572     "parallax", "parallel", "paramour", "paranoia", "paranoid",
05573     "parapets", "paraquat", "parasite", "parasols", "parboils",
05574     "parching", "pardners", "pardoned", "parental", "parented",
05575     "parfaits", "parishes", "parities", "parkland", "parkways",
05576     "parlance", "parlayed", "parleyed", "parodied", "parodies",
05577     "parodist", "parolees", "paroling", "paroxysm", "parquets",
05578     "parroted", "parrying", "parsnips", "partaken", "partaker",
05579     "partakes", "parterre", "partials", "particle", "partings",
05580     "partisan", "partners", "partying", "parvenus", "passable",
05581     "passably", "passages", "passbook", "passerby", "passions",
05582     "passives", "passkeys", "passport", "password", "pasterns",
05583     "pastiche", "pastiest", "pastille", "pastimes", "pastoral",
05584     "pastrami", "pastries", "pastured", "pastures", "patchier",
05585     "patchily", "patching", "patellae", "patellas", "patented",
05586     "patently", "paternal", "pathetic", "pathogen", "pathways",
05587     "patience", "patients", "patriots", "pattered", "patterns",
05588     "paunched", "paunches", "pavement", "pavilion", "pavlovas",
05589     "pawnshop", "paybacks", "paycheck", "payloads", "payments",
05590     "payphone", "payrolls", "payslips", "peaceful", "peacocks",
05591     "peafowls", "pearlier", "pearling", "peasants", "pebblier",
05592     "pebbling", "pectoral", "peculiar", "pedagogy", "pedantic",
05593     "pedantry", "peddlers", "peddling", "pederast", "pedestal",
05594     "pedicure", "pedigree", "pediment", "peekaboo", "peelings",
05595     "peephole", "peepshow", "peerages", "peerless", "pelicans",
05596     "pellagra", "pelleted", "pellucid", "pelvises", "penanced",
05597     "penances", "penchant", "pendants", "pendents", "pendulum",
05598     "penguins", "penitent", "penknife", "penlight", "pennants",
05599     "penology", "pensions", "pentagon", "penumbra", "peopling",
05600     "peppered", "peppiest", "percales", "perceive", "percents",
05601     "perching", "perfects", "perforce", "performs", "perfumed",
05602     "perfumes", "pergolas", "perigees", "perilous", "periodic",
05603     "perished", "perisher", "perishes", "periwigs", "perjured",
05604     "perjurer", "perjures", "perkiest", "permeate", "permuted",
05605     "permutes", "peroxide", "persists", "personae", "personal",
05606     "perspire", "persuade", "pertains", "pertness", "perturbs",
05607     "perusals", "perusing", "pervaded", "pervades", "perverse",
05608     "perverts", "peskiest", "pestered", "pestling", "petering",
05609     "petioles", "petition", "pettiest", "pettifog", "petulant",
05610     "petunias", "pfennigs", "phantasm", "phantoms", "pharaohs",
05611     "pharmacy", "pheasant", "phialled", "philters", "philtres",
05612     "phonemes", "phonemic", "phonetic", "phoniest", "phonying",
05613     "phosphor", "photoing", "phrasing", "physical", "physique",
05614     "pianists", "pianolas", "picadors", "picayune", "piccolos",
05615     "pickaxed", "pickaxes", "pickerel", "picketed", "picketer",
05616     "pickiest", "pickings", "pickling", "pictured", "pictures",
05617     "piddling", "piebalds", "piercing", "piffling", "pigeoned",
05618     "piggiest", "pigments", "pigskins", "pigsties", "pigswill",
05619     "pigtails", "pilaster", "pilchard", "pilfered", "pilferer",
05620     "pilgrims", "pillaged", "pillages", "pillared", "pillions",
05621     "pillocks", "pillowed", "piloting", "pimentos", "pimiento",
05622     "pimplier", "pinafore", "pinching", "pinewood", "pinheads",
05623     "pinholes", "pinioned", "pinkness", "pinnacle", "pinochle",
05624     "pinpoint", "pinprick", "pinwheel", "pioneers", "pipeline",
05625     "pipettes", "pipework", "piquancy", "piranhas", "pirating",
05626     "pissoirs", "pitchers", "pitching", "pitchman", "pitchmen",
05627     "pitfalls", "pitheads", "pithiest", "pitiable", "pitiably",
05628     "pitiless", "pittance", "pivoting", "pizzeria", "placards",
05629     "placated", "placates", "placebos", "placenta", "placidly",
05630     "placings", "plackets", "plaguing", "plaiding", "plainest",
05631     "plaiting", "plangent", "planking", "plankton", "planners",
05632     "planning", "plantain", "planters", "planting", "plasters",
05633     "plastics", "plateaus", "plateful", "platelet", "platform",
05634     "platinum", "platonic", "platoons", "platters", "platypus",
05635     "plaudits", "playable", "playacts", "playback", "playbill",
05636     "playboys", "playgoer", "playmate", "playoffs", "playpens",
05637     "playroom", "playtime", "pleaders", "pleading", "pleasant",
05638     "pleasing", "pleasure", "pleating", "plebeian", "plectrum",
05639     "pledging", "plethora", "pleurisy", "plexuses", "pliantly",
05640     "plighted", "plimsoll", "plodders", "plodding", "plonkers",
05641     "plonking", "plopping", "plosives", "plotters", "plotting",
05642     "pluckier", "plucking", "plugging", "plughole", "plumbers",
05643     "plumbing", "plummets", "plumpest", "plumping", "plunders",
05644     "plungers", "plunging", "plunking", "plushest", "plushier",
05645     "plussing", "poachers", "poaching", "pocketed", "pockmark",
05646     "podiatry", "poesying", "poetical", "pogromed", "poignant",
05647     "pointers", "pointier", "pointing", "poisoned", "poisoner",
05648     "polarity", "poleaxed", "poleaxes", "polecats", "polemics",
05649     "polestar", "policies", "policing", "polished", "polisher",
05650     "polishes", "politely", "politest", "politico", "politics",
05651     "polities", "polkaing", "pollards", "polliwog", "pollster",
05652     "polluted", "polluter", "pollutes", "polonium", "poltroon",
05653     "polygamy", "polyglot", "polygons", "polymath", "polymers",
05654     "pomading", "pomander", "pondered", "poniards", "pontiffs",
05655     "pontoons", "ponytail", "pooching", "poofters", "poolside",
05656     "popinjay", "popovers", "poppadom", "populace", "populars",
05657     "populate", "populism", "populist", "populous", "porosity",
05658     "porphyry", "porpoise", "porridge", "portable", "portaged",
05659     "portages", "portends", "portents", "portered", "porthole",
05660     "portions", "portlier", "portrait", "portrays", "positing",
05661     "position", "positive", "positron", "possible", "possibly",
05662     "postbags", "postcard", "postcode", "postdate", "postdocs",
05663     "postings", "postlude", "postmark", "postpaid", "postpone",
05664     "postural", "postured", "postures", "potables", "potatoes",
05665     "potbelly", "potently", "potheads", "potholed", "potholer",
05666     "potholes", "pothooks", "potlucks", "potsherd", "potshots",
05667     "pottered", "pottiest", "pouching", "poultice", "pouncing",
05668     "poundage", "pounding", "powdered", "powerful", "powering",
05669     "powwowed", "prairies", "praising", "pralines", "prancers",
05670     "prancing", "pranging", "pratfall", "prattled", "prattler",
05671     "prattles", "prawning", "preached", "preacher", "preaches",
05672     "preamble", "preceded", "precedes", "precepts", "precinct",
05673     "precious", "preciser", "precises", "preclude", "precooks",
05674     "predated", "predates", "predator", "predicts", "preemies",
05675     "preempts", "preening", "preexist", "prefaced", "prefaces",
05676     "prefects", "prefixed", "prefixes", "pregnant", "preheats",
05677     "prejudge", "prelates", "preludes", "premiere", "premiers",
05678     "premised", "premises", "premiums", "prenatal", "prepared",
05679     "prepares", "preppier", "preppies", "prepping", "prequels",
05680     "presaged", "presages", "presence", "presents", "preserve",
05681     "presided", "presides", "pressies", "pressing", "pressman",
05682     "pressmen", "pressure", "prestige", "presumed", "presumes",
05683     "preteens", "pretends", "preterit", "pretexts", "prettied",
05684     "prettier", "pretties", "prettify", "prettily", "pretzels",
05685     "prevails", "prevents", "previews", "previous", "prezzies",
05686     "priciest", "pricking", "prickled", "prickles", "priestly",
05687     "priggish", "primates", "primeval", "primmest", "primness",
05688     "primping", "primrose", "primulas", "princely", "princess",
05689     "printers", "printing", "printout", "prioress", "priories",
05690     "priority", "prisoned", "prisoner", "prissier", "prissies",
05691     "prissily", "pristine", "prithees", "privater", "privates",
05692     "priviest", "probable", "probably", "probated", "probates",
05693     "probings", "problems", "proceeds", "proclaim", "proctors",
05694     "procured", "procurer", "procures", "prodding", "prodigal",
05695     "produced", "producer", "produces", "products", "profaned",
05696     "profanes", "proffers", "profiled", "profiles", "profited",
05697     "proforma", "profound", "progress", "prohibit", "projects",
05698     "prolapse", "prolific", "prologue", "prolongs", "promised",
05699     "promises", "promoted", "promoter", "promotes", "prompted",
05700     "prompter", "promptly", "pronouns", "proofing", "properer",
05701     "properly", "property", "prophecy", "prophesy", "prophets",
05702     "proposal", "proposed", "proposer", "proposes", "propound",
05703     "propping", "prorated", "prorates", "prosiest", "prospect",
05704     "prospers", "prostate", "proteans", "protects", "proteins",
05705     "protests", "protocol", "protozoa", "protract", "protrude",
05706     "proudest", "provable", "provably", "proverbs", "provided",
05707     "provider", "provides", "province", "provisos", "provoked",
05708     "provokes", "provosts", "prowlers", "prowling", "prudence",
05709     "prurient", "psalmist", "psychics", "psyching", "ptomaine",
05710     "publican", "publicly", "puckered", "puddings", "puddling",
05711     "pudendum", "pudgiest", "puffball", "puffiest", "pugilism",
05712     "pugilist", "pullback", "pullouts", "pullover", "pulpiest",
05713     "pulsated", "pulsates", "pumpkins", "punchbag", "punchier",
05714     "punching", "punctual", "puncture", "pungency", "punished",
05715     "punishes", "punitive", "punsters", "pupating", "puppetry",
05716     "puppying", "purblind", "purchase", "purebred", "pureeing",
05717     "pureness", "purified", "purifier", "purifies", "puritans",
05718     "purloins", "purplest", "purplish", "purports", "purposed",
05719     "purposes", "pursuant", "pursuers", "pursuing", "pursuits",
05720     "purulent", "purveyed", "purveyor", "pushbike", "pushcart",
05721     "pushiest", "pushover", "pushpins", "pussiest", "pussycat",
05722     "pustules", "putative", "putsches", "puttered", "puttying",
05723     "puzzlers", "puzzling", "pyramids", "quackery", "quacking",
05724     "quadrant", "quaffing", "quagmire", "quailing", "quainter",
05725     "quaintly", "quandary", "quantify", "quantity", "quarrels",
05726     "quarried", "quarries", "quarters", "quartets", "quashing",
05727     "quatrain", "quavered", "quayside", "queasier", "queasily",
05728     "queening", "queerest", "queering", "quelling", "quenched",
05729     "quenches", "querying", "questing", "question", "quibbled",
05730     "quibbler", "quibbles", "quickens", "quickest", "quickies",
05731     "quietens", "quietest", "quieting", "quietism", "quietude",
05732     "quilters", "quilting", "quintets", "quipping", "quirkier",
05733     "quirking", "quisling", "quitters", "quitting", "quivered",
05734     "quixotic", "quizzing", "quoiting", "quotable", "quotient",
05735     "rabbinic", "rabbited", "raccoons", "racegoer", "raceways",
05736     "racially", "raciness", "racketed", "radially", "radiance",
05737     "radiated", "radiates", "radiator", "radicals", "radioing",
05738     "radishes", "raffling", "raggeder", "raggedly", "railcard",
05739     "railings", "raillery", "railroad", "railways", "rainbows",
05740     "raincoat", "raindrop", "rainfall", "rainiest", "rakishly",
05741     "rallying", "ramblers", "rambling", "ramekins", "ramified",
05742     "ramifies", "rampaged", "rampages", "ramparts", "ranchers",
05743     "ranching", "randiest", "randomly", "rangiest", "rankings",
05744     "rankling", "rankness", "ransacks", "ransomed", "rantings",
05745     "rapacity", "rapidest", "rapidity", "rapports", "raptures",
05746     "rarefied", "rarefies", "rareness", "rarities", "rascally",
05747     "rashness", "raspiest", "ratchets", "ratified", "ratifies",
05748     "rational", "rationed", "rattiest", "rattlers", "rattling",
05749     "rattraps", "ravaging", "ravening", "ravenous", "ravining",
05750     "raviolis", "ravished", "ravishes", "rawboned", "reaching",
05751     "reactant", "reacting", "reaction", "reactive", "reactors",
05752     "readable", "readiest", "readings", "readjust", "readmits",
05753     "readouts", "readying", "reaffirm", "reagents", "realigns",
05754     "realists", "reallied", "reallies", "reappear", "rearming",
05755     "rearmost", "rearward", "reasoned", "reassert", "reassess",
05756     "reassign", "reassure", "reawaken", "rebating", "rebelled",
05757     "rebirths", "rebooted", "rebounds", "rebuffed", "rebuilds",
05758     "rebuking", "rebuttal", "rebutted", "recalled", "recanted",
05759     "recapped", "receding", "receipts", "received", "receiver",
05760     "receives", "recenter", "recently", "receptor", "recessed",
05761     "recesses", "recharge", "rechecks", "recitals", "reciting",
05762     "reckless", "reckoned", "reclaims", "reclined", "recliner",
05763     "reclines", "recluses", "recoiled", "recopied", "recopies",
05764     "recorded", "recorder", "recounts", "recouped", "recourse",
05765     "recovers", "recovery", "recreant", "recreate", "recruits",
05766     "recurred", "recycled", "recycles", "redbrick", "redcoats",
05767     "reddened", "redeemed", "redeemer", "redefine", "redeploy",
05768     "redesign", "redheads", "redirect", "rednecks", "redolent",
05769     "redouble", "redoubts", "redounds", "redrafts", "redskins",
05770     "reducing", "redwoods", "reediest", "reelects", "reemerge",
05771     "reenacts", "reenlist", "reenters", "refereed", "referees",
05772     "referent", "referral", "referred", "refiling", "refilled",
05773     "refiners", "refinery", "refining", "refinish", "refitted",
05774     "reflated", "reflates", "reflects", "reflexes", "reforest",
05775     "reformat", "reformed", "reformer", "refracts", "refrains",
05776     "refugees", "refunded", "refusals", "refusing", "refuting",
05777     "regained", "regaling", "regarded", "regattas", "regicide",
05778     "regimens", "regiment", "regional", "register", "registry",
05779     "regroups", "regulars", "regulate", "rehabbed", "rehashed",
05780     "rehashes", "rehearse", "reheated", "rehiring", "rehoused",
05781     "rehouses", "reigning", "reimpose", "reindeer", "reinsert",
05782     "reinvent", "reinvest", "reissued", "reissues", "rejected",
05783     "rejigged", "rejigger", "rejoiced", "rejoices", "rejoined",
05784     "rekindle", "relabels", "relapsed", "relapses", "relating",
05785     "relation", "relative", "relaunch", "relaxant", "relaxing",
05786     "relaying", "relearns", "released", "releases", "relegate",
05787     "relented", "relevant", "reliable", "reliably", "reliance",
05788     "relieved", "relieves", "religion", "relished", "relishes",
05789     "reliving", "reloaded", "relocate", "remained", "remaking",
05790     "remanded", "remarked", "remaster", "remedial", "remedied",
05791     "remedies", "remember", "reminded", "reminder", "remitted",
05792     "remixing", "remnants", "remodels", "remolded", "remotely",
05793     "remotest", "remoulds", "remounts", "removals", "removers",
05794     "removing", "renaming", "rendered", "renegade", "reneging",
05795     "renewals", "renewing", "renounce", "renovate", "renowned",
05796     "renumber", "reoccupy", "reoccurs", "reopened", "reorders",
05797     "repaints", "repaired", "repairer", "repartee", "repasted",
05798     "repaying", "repealed", "repeated", "repeater", "repelled",
05799     "repented", "rephrase", "replaced", "replaces", "replayed",
05800     "repleted", "repletes", "replicas", "replying", "reported",
05801     "reporter", "reposing", "reprieve", "reprints", "reprisal",
05802     "reprises", "reproach", "reproofs", "reproved", "reproves",
05803     "reptiles", "republic", "repulsed", "repulses", "reputing",
05804     "requests", "requiems", "required", "requires", "requital",
05805     "requited", "requites", "rerouted", "reroutes", "rescinds",
05806     "rescuers", "rescuing", "research", "resemble", "resented",
05807     "reserved", "reserves", "resettle", "reshaped", "reshapes",
05808     "resident", "residing", "residual", "residues", "resigned",
05809     "resinous", "resisted", "resister", "resistor", "resolute",
05810     "resolved", "resolver", "resolves", "resonant", "resonate",
05811     "resorted", "resounds", "resource", "respects", "respells",
05812     "respired", "respires", "respites", "responds", "response",
05813     "restarts", "restated", "restates", "restless", "restocks",
05814     "restored", "restorer", "restores", "restrain", "restrict",
05815     "restroom", "resubmit", "resulted", "resuming", "resupply",
05816     "retailed", "retailer", "retained", "retainer", "retaking",
05817     "retarded", "retching", "rethinks", "reticent", "retinues",
05818     "retirees", "retiring", "retooled", "retorted", "retraced",
05819     "retraces", "retracts", "retrains", "retreads", "retreats",
05820     "retrench", "retrials", "retrieve", "retrofit", "retrying",
05821     "returned", "returnee", "returner", "retyping", "reunions",
05822     "reunited", "reunites", "reusable", "revalued", "revalues",
05823     "revamped", "revealed", "reveille", "revenged", "revenges",
05824     "revenues", "reverend", "reverent", "reveries", "revering",
05825     "reversal", "reversed", "reverses", "reverted", "reviewed",
05826     "reviewer", "revilers", "reviling", "revising", "revision",
05827     "revisits", "revivals", "revivify", "reviving", "revoking",
05828     "revolted", "revolved", "revolver", "revolves", "rewarded",
05829     "rewiring", "reworded", "reworked", "rewrites", "rhapsody",
05830     "rheostat", "rhetoric", "rheumier", "rhizomes", "rhomboid",
05831     "rhubarbs", "rhythmic", "ribaldry", "richness", "rickshaw",
05832     "ricochet", "riddance", "riddling", "ridicule", "riffling",
05833     "riffraff", "rifleman", "riflemen", "rightest", "rightful",
05834     "righting", "rightist", "rigidity", "rigorous", "ringlets",
05835     "ringside", "ringworm", "ripcords", "ripeness", "ripening",
05836     "riposted", "ripostes", "rippling", "risibles", "riskiest",
05837     "risottos", "rissoles", "ritually", "ritziest", "riverbed",
05838     "riveting", "rivieras", "rivulets", "roadbeds", "roadkill",
05839     "roadshow", "roadside", "roadster", "roadways", "roadwork",
05840     "roasters", "roasting", "robotics", "robuster", "robustly",
05841     "rocketed", "rocketry", "rockfall", "rockiest", "roebucks",
05842     "roentgen", "rogering", "roisters", "rollback", "rollicks",
05843     "rollmops", "rollover", "romaines", "romanced", "romances",
05844     "romantic", "roofless", "rooftops", "rookiest", "roomfuls",
05845     "roomiest", "roommate", "roosters", "roosting", "rootless",
05846     "rosaries", "rosebuds", "rosebush", "rosemary", "rosetted",
05847     "rosettes", "rosewood", "rosiness", "rosining", "rostered",
05848     "rostrums", "rotaries", "rotating", "rotation", "rottener",
05849     "rotundas", "rotunded", "roughage", "roughens", "roughest",
05850     "roughing", "roulette", "roundels", "rounders", "roundest",
05851     "rounding", "roundish", "roundups", "rousting", "routines",
05852     "rowboats", "rowdiest", "rowdyism", "rowlocks", "royalist",
05853     "rubbings", "rubbishy", "rubbling", "rubdowns", "rubicund",
05854     "rucksack", "ruckuses", "ructions", "ruddiest", "ruddying",
05855     "rudeness", "rudiment", "ruefully", "ruffians", "ruffling",
05856     "ruggeder", "ruggedly", "rulering", "rumbaing", "rumbling",
05857     "ruminant", "ruminate", "rummaged", "rummages", "rumpling",
05858     "rumpuses", "runabout", "runaways", "rundowns", "runniest",
05859     "ruptured", "ruptures", "russeted", "rustiest", "rustlers",
05860     "rustling", "rutabaga", "ruthless", "sabotage", "saboteur",
05861     "sackfuls", "sackings", "sacredly", "sacristy", "saddened",
05862     "saddlers", "saddlery", "saddling", "sadistic", "safaried",
05863     "safeness", "safetied", "safeties", "saffrons", "sagacity",
05864     "saguaros", "sailboat", "sailfish", "sailings", "salaamed",
05865     "salaried", "salaries", "saleroom", "salesman", "salesmen",
05866     "salience", "salients", "salinity", "salivary", "salivate",
05867     "sallower", "sallying", "saltiest", "saltines", "salutary",
05868     "saluting", "salvaged", "salvages", "sambaing", "sameness",
05869     "samovars", "samplers", "sampling", "sanctify", "sanction",
05870     "sanctity", "sanctums", "sandbags", "sandbank", "sandbars",
05871     "sandhogs", "sandiest", "sandlots", "sandpits", "sandwich",
05872     "sanguine", "sanitary", "sanserif", "sapience", "saplings",
05873     "sapphire", "sappiest", "sarcasms", "sarcomas", "sardined",
05874     "sardines", "sardonic", "sashayed", "sassiest", "satanism",
05875     "satanist", "satchels", "satiated", "satiates", "satining",
05876     "satirist", "satsumas", "saturate", "saucepan", "sauciest",
05877     "saunaing", "saunters", "sausages", "savagely", "savagery",
05878     "savagest", "savaging", "savannas", "savviest", "savvying",
05879     "sawdusts", "sawhorse", "sawmills", "scabbard", "scabbier",
05880     "scabbing", "scabrous", "scaffold", "scalawag", "scalding",
05881     "scaliest", "scallion", "scallops", "scalpels", "scalpers",
05882     "scalping", "scamming", "scampers", "scandals", "scanners",
05883     "scanning", "scansion", "scantest", "scantier", "scanties",
05884     "scantily", "scanting", "scapulae", "scarcely", "scarcest",
05885     "scarcity", "scarfing", "scariest", "scarlets", "scarpers",
05886     "scarring", "scathing", "scatters", "scatting", "scavenge",
05887     "scenario", "scenting", "schedule", "schemata", "schemers",
05888     "scheming", "scherzos", "schizoid", "schlocky", "schmaltz",
05889     "schmooze", "schmucks", "schnapps", "schnooks", "scholars",
05890     "schooled", "schooner", "schussed", "schusses", "sciatica",
05891     "sciences", "scimitar", "scissors", "scoffing", "scofflaw",
05892     "scolding", "scooping", "scooters", "scooting", "scorched",
05893     "scorcher", "scorches", "scornful", "scorning", "scorpion",
05894     "scotched", "scotches", "scourers", "scourged", "scourges",
05895     "scouring", "scouters", "scouting", "scowling", "scrabble",
05896     "scraggly", "scramble", "scrammed", "scrapers", "scraping",
05897     "scrapped", "scratchy", "scrawled", "screamed", "screechy",
05898     "screened", "screwier", "screwing", "scribble", "scrimped",
05899     "scripted", "scrofula", "scrolled", "scrooges", "scrounge",
05900     "scrubbed", "scrubber", "scrummed", "scrumped", "scrunchy",
05901     "scrupled", "scruples", "scrutiny", "scubaing", "scudding",
05902     "scuffing", "scuffled", "scuffles", "scullery", "sculling",
05903     "scullion", "sculpted", "sculptor", "scumbags", "scummier",
05904     "scumming", "scuppers", "scurfier", "scurried", "scurries",
05905     "scurvier", "scuttled", "scuttles", "scuzzier", "scything",
05906     "seabirds", "seaboard", "seaborne", "seacoast", "seafarer",
05907     "seafloor", "seafront", "seagoing", "seagulls", "seahorse",
05908     "sealants", "sealskin", "seamiest", "seamless", "seaplane",
05909     "seaports", "searched", "searcher", "searches", "seascape",
05910     "seashell", "seashore", "seasides", "seasonal", "seasoned",
05911     "seawards", "seaweeds", "seceding", "secluded", "secludes",
05912     "seconded", "seconder", "secondly", "secreted", "secreter",
05913     "secretes", "secretly", "sections", "securely", "securest",
05914     "securing", "security", "sedately", "sedatest", "sedating",
05915     "sedation", "sedative", "sediment", "sedition", "seducers",
05916     "seducing", "sedulous", "seedbeds", "seediest", "seedless",
05917     "seedling", "seemlier", "seesawed", "seething", "segments",
05918     "segueing", "seizures", "selected", "selector", "selenium",
05919     "selfless", "selfsame", "sellouts", "seltzers", "selvaged",
05920     "selvages", "semantic", "semester", "seminars", "seminary",
05921     "semiotic", "semitone", "semolina", "senators", "senility",
05922     "sensible", "sensibly", "sensuous", "sentence", "sentient",
05923     "sentinel", "sentries", "separate", "sequence", "sequined",
05924     "sequoias", "seraglio", "seraphic", "serenade", "serenely",
05925     "serenest", "serening", "serenity", "sergeant", "serially",
05926     "sermoned", "serpents", "serrated", "servants", "serviced",
05927     "services", "serviles", "servings", "sessions", "setbacks",
05928     "settable", "settings", "settlers", "settling", "sevenths",
05929     "severely", "severest", "severing", "severity", "sewerage",
05930     "sexiness", "sexology", "sextants", "sexually", "shabbier",
05931     "shabbily", "shacking", "shackled", "shackles", "shadiest",
05932     "shadings", "shadowed", "shafting", "shaggier", "shagging",
05933     "shakeout", "shakeups", "shakiest", "shallots", "shallows",
05934     "shambled", "shambles", "shameful", "shamming", "shampoos",
05935     "shamrock", "shandies", "shanghai", "shanties", "shantung",
05936     "sharking", "sharpens", "sharpers", "sharpest", "sharping",
05937     "sharpish", "shatters", "shavings", "shawling", "shearers",
05938     "shearing", "sheathed", "sheathes", "shebangs", "shebeens",
05939     "shedding", "sheepdog", "sheepish", "sheerest", "sheering",
05940     "sheeting", "sheikdom", "shellacs", "shelling", "shelters",
05941     "shelving", "shepherd", "sherbets", "sheriffs", "sherries",
05942     "shielded", "shiftier", "shiftily", "shifting", "shilling",
05943     "shimmers", "shimmery", "shimmied", "shimmies", "shimming",
05944     "shinbone", "shindigs", "shingled", "shingles", "shiniest",
05945     "shinnied", "shinnies", "shinning", "shipload", "shipmate",
05946     "shipment", "shippers", "shipping", "shipyard", "shirkers",
05947     "shirking", "shirring", "shirting", "shithead", "shitload",
05948     "shittier", "shitting", "shivered", "shoaling", "shockers",
05949     "shocking", "shoddier", "shoddily", "shoehorn", "shoelace",
05950     "shoetree", "shooters", "shooting", "shootout", "shoplift",
05951     "shoppers", "shopping", "shoptalk", "shopworn", "shortage",
05952     "shortcut", "shortens", "shortest", "shorties", "shorting",
05953     "shortish", "shotguns", "shoulder", "shouting", "showboat",
05954     "showcase", "showdown", "showered", "showgirl", "showiest",
05955     "showings", "showoffs", "showroom", "showtime", "shrapnel",
05956     "shredded", "shredder", "shrewder", "shrewdly", "shrewing",
05957     "shrewish", "shrieked", "shrilled", "shriller", "shrimped",
05958     "shrimper", "shrivels", "shriving", "shrouded", "shrubbed",
05959     "shrugged", "shrunken", "shucking", "shuckses", "shudders",
05960     "shuffled", "shuffler", "shuffles", "shunning", "shunting",
05961     "shushing", "shutdown", "shutouts", "shutters", "shutting",
05962     "shuttled", "shuttles", "shysters", "sibilant", "siblings",
05963     "sickbays", "sickbeds", "sickened", "sicklier", "sickling",
05964     "sickness", "sickouts", "sickroom", "sidearms", "sidebars",
05965     "sidecars", "sidekick", "sideline", "sidelong", "sidereal",
05966     "sideshow", "sidestep", "sidewalk", "sidewall", "sideways",
05967     "sighting", "signally", "signings", "signpost", "silaging",
05968     "silenced", "silencer", "silences", "silenter", "silently",
05969     "silicate", "silicone", "silkened", "silkiest", "silkworm",
05970     "silliest", "silvered", "simmered", "simpered", "simplest",
05971     "simplify", "simpling", "simulate", "sincerer", "sinecure",
05972     "sinfully", "singeing", "singlets", "singling", "singsong",
05973     "singular", "sinister", "sinkable", "sinkhole", "sinology",
05974     "sirloins", "siroccos", "sissiest", "sistered", "sisterly",
05975     "sittings", "situated", "situates", "sixpence", "sixteens",
05976     "sixtieth", "sizzlers", "sizzling", "skeeters", "skeining",
05977     "skeletal", "skeleton", "sketched", "sketches", "skewbald",
05978     "skewered", "skidding", "skidpans", "skiffing", "skillets",
05979     "skillful", "skimming", "skimpier", "skimping", "skincare",
05980     "skinhead", "skinless", "skinnier", "skinning", "skippers",
05981     "skipping", "skirmish", "skirting", "skitters", "skittish",
05982     "skittles", "skivvied", "skivvies", "skulking", "skullcap",
05983     "skunking", "skydived", "skydiver", "skydives", "skyjacks",
05984     "skylarks", "skylight", "skylines", "skywards", "slabbing",
05985     "slackens", "slackers", "slackest", "slacking", "slagging",
05986     "slagheap", "slalomed", "slammers", "slamming", "slanders",
05987     "slangier", "slanting", "slapdash", "slappers", "slapping",
05988     "slashing", "slathers", "slattern", "slavered", "slayings",
05989     "sleazier", "sleazily", "sledding", "sledging", "sleekest",
05990     "sleeking", "sleepers", "sleepier", "sleepily", "sleeping",
05991     "sleetier", "sleeting", "sleighed", "slickers", "slickest",
05992     "slicking", "slighted", "slighter", "slightly", "slimiest",
05993     "slimline", "slimmers", "slimmest", "slimming", "slimness",
05994     "slinging", "slinkier", "slinking", "slipcase", "slipknot",
05995     "slippage", "slippers", "slippery", "slipping", "slipshod",
05996     "slipways", "slithers", "slithery", "slitting", "slivered",
05997     "slobbers", "slobbery", "slobbing", "slogging", "sloppier",
05998     "sloppily", "slopping", "sloshing", "slothful", "slothing",
05999     "slotting", "slouched", "slouches", "sloughed", "slovenly",
06000     "slowdown", "slowness", "slowpoke", "sludging", "sluggard",
06001     "sluggers", "slugging", "sluggish", "sluicing", "slumbers",
06002     "slumlord", "slumming", "slumping", "slurping", "slurring",
06003     "slushier", "sluttish", "smackers", "smacking", "smallest",
06004     "smalling", "smallish", "smallpox", "smarmier", "smartens",
06005     "smartest", "smarting", "smashers", "smashing", "smearing",
06006     "smellier", "smelling", "smelters", "smelting", "smidgens",
06007     "smirched", "smirches", "smirking", "smithies", "smocking",
06008     "smoggier", "smokiest", "smolders", "smooched", "smooches",
06009     "smoothed", "smoother", "smoothie", "smoothly", "smothers",
06010     "smudgier", "smudging", "smuggest", "smugging", "smuggled",
06011     "smuggler", "smuggles", "smugness", "smuttier", "snacking",
06012     "snaffled", "snaffles", "snagging", "snailing", "snakiest",
06013     "snappers", "snappier", "snappily", "snapping", "snappish",
06014     "snapshot", "snarling", "snatched", "snatcher", "snatches",
06015     "snazzier", "snazzily", "sneakers", "sneakier", "sneakily",
06016     "sneaking", "sneering", "sneezing", "snickers", "snicking",
06017     "sniffers", "sniffier", "sniffing", "sniffled", "sniffles",
06018     "snifters", "snippets", "snippier", "snipping", "snitched",
06019     "snitches", "snobbery", "snobbier", "snobbish", "snogging",
06020     "snookers", "snoopers", "snoopier", "snooping", "snootier",
06021     "snootily", "snoozing", "snorkels", "snorting", "snottier",
06022     "snotting", "snouting", "snowball", "snowdrop", "snowfall",
06023     "snowiest", "snowline", "snowplow", "snowshoe", "snowsuit",
06024     "snubbing", "snuffbox", "snuffers", "snuffing", "snuffled",
06025     "snuffles", "snuggest", "snugging", "snuggled", "snuggles",
06026     "snugness", "soakings", "soapiest", "soapsuds", "soberest",
06027     "sobering", "sobriety", "sociable", "sociably", "socially",
06028     "societal", "sodomite", "softback", "softball", "softened",
06029     "softener", "softness", "software", "softwood", "soggiest",
06030     "sojourns", "solacing", "solarium", "soldered", "soldiers",
06031     "soldiery", "solecism", "solemner", "solemnly", "solenoid",
06032     "solicits", "solidest", "solidify", "solidity", "solitary",
06033     "solitude", "soloists", "solstice", "solubles", "solution",
06034     "solvable", "solvency", "solvents", "sombrero", "somebody",
06035     "someones", "sometime", "someways", "somewhat", "songbird",
06036     "songbook", "songster", "sonogram", "sonority", "sonorous",
06037     "soothest", "soothing", "sootiest", "sophists", "soppiest",
06038     "soppings", "sopranos", "sorcerer", "sordidly", "sorehead",
06039     "soreness", "sorority", "sorriest", "sorrowed", "soughing",
06040     "soulless", "soundest", "sounding", "soupiest", "sourcing",
06041     "sourness", "sourpuss", "southern", "southpaw", "souvenir",
06042     "soybeans", "spaceman", "spacemen", "spaciest", "spacious",
06043     "spadeful", "spamming", "spangled", "spangles", "spaniels",
06044     "spanking", "spanners", "spanning", "sparkier", "sparking",
06045     "sparkled", "sparkler", "sparkles", "sparring", "sparrows",
06046     "sparsely", "sparsest", "sparsity", "spasming", "spastics",
06047     "spatters", "spatting", "spatulas", "spawning", "speakers",
06048     "speaking", "spearing", "specials", "specific", "specimen",
06049     "specious", "specking", "speckled", "speckles", "spectate",
06050     "spectral", "spectrum", "speeched", "speeches", "speeders",
06051     "speedier", "speedily", "speeding", "speedups", "speedway",
06052     "spellers", "spelling", "spenders", "spending", "sphagnum",
06053     "spheroid", "sphinxes", "spiciest", "spieling", "spiffied",
06054     "spiffier", "spiffies", "spiffing", "spikiest", "spillage",
06055     "spilling", "spillway", "spindled", "spindles", "spiniest",
06056     "spinners", "spinneys", "spinning", "spinster", "spirally",
06057     "spirited", "spitball", "spiteful", "spitfire", "spitting",
06058     "spittoon", "splashed", "splashes", "splatted", "splatter",
06059     "splaying", "splendid", "splicers", "splicing", "splinted",
06060     "splinter", "splodges", "sploshed", "sploshes", "splotchy",
06061     "splurged", "splurges", "splutter", "spoilage", "spoilers",
06062     "spoiling", "spongers", "spongier", "sponging", "sponsors",
06063     "spoofing", "spookier", "spooking", "spooling", "spoonful",
06064     "spooning", "spooring", "sporadic", "sporrans", "sportier",
06065     "sporting", "sportive", "spotless", "spotters", "spottier",
06066     "spotting", "spouting", "sprained", "sprawled", "sprayers",
06067     "spraying", "spreader", "spreeing", "sprigged", "sprinkle",
06068     "sprinted", "sprinter", "spritzed", "spritzer", "spritzes",
06069     "sprocket", "sprouted", "sprucest", "sprucing", "spryness",
06070     "spunkier", "spunkies", "spunking", "spurious", "spurning",
06071     "spurring", "spurting", "sputters", "spyglass", "squabbed",
06072     "squabble", "squadded", "squaddie", "squadron", "squalled",
06073     "squander", "squarely", "squarest", "squaring", "squarish",
06074     "squashed", "squashes", "squatted", "squatter", "squawked",
06075     "squeaked", "squealed", "squealer", "squeegee", "squeezed",
06076     "squeezer", "squeezes", "squelchy", "squidded", "squiggle",
06077     "squiggly", "squinted", "squinter", "squiring", "squirmed",
06078     "squirrel", "squirted", "squished", "squishes", "stabbing",
06079     "stablest", "stabling", "staccato", "stacking", "stadiums",
06080     "staffers", "staffing", "staggers", "stagings", "stagnant",
06081     "stagnate", "staidest", "staining", "stairway", "stakeout",
06082     "stalkers", "stalking", "stalling", "stallion", "stalwart",
06083     "stammers", "stampede", "stamping", "stanched", "stancher",
06084     "stanches", "standard", "standbys", "standing", "standoff",
06085     "standout", "staplers", "stapling", "starched", "starches",
06086     "stardust", "starfish", "stargaze", "starkers", "starkest",
06087     "starking", "starless", "starlets", "starling", "starrier",
06088     "starring", "starters", "starting", "startled", "startles",
06089     "starving", "stashing", "stations", "statuary", "statures",
06090     "statuses", "statutes", "steadied", "steadier", "steadies",
06091     "steadily", "stealing", "stealthy", "steamers", "steamier",
06092     "steamies", "steaming", "steelier", "steelies", "steeling",
06093     "steepens", "steepest", "steeping", "steeples", "steerage",
06094     "steering", "steining", "stemming", "stenched", "stenches",
06095     "stencils", "stepping", "stepsons", "sterling", "sternest",
06096     "sterning", "sternums", "steroids", "stetsons", "stewards",
06097     "stickers", "stickied", "stickier", "stickies", "sticking",
06098     "stickler", "stickpin", "stickups", "stiffens", "stiffest",
06099     "stiffing", "stifling", "stigmata", "stiletto", "stillest",
06100     "stilling", "stimulus", "stingers", "stingier", "stingily",
06101     "stinging", "stingray", "stinkers", "stinking", "stinting",
06102     "stipends", "stippled", "stipples", "stirrers", "stirring",
06103     "stirrups", "stitched", "stitches", "stockade", "stockier",
06104     "stockily", "stocking", "stockist", "stodgier", "stoicism",
06105     "stolider", "stolidly", "stomachs", "stomping", "stoniest",
06106     "stonking", "stooping", "stopcock", "stopgaps", "stopover",
06107     "stoppage", "stoppers", "stopping", "stormier", "stormily",
06108     "storming", "stoutest", "stowaway", "straddle", "strafing",
06109     "straggle", "straggly", "straight", "strained", "strainer",
06110     "straited", "straiten", "stranded", "stranger", "strangle",
06111     "strapped", "strategy", "stratify", "strawing", "straying",
06112     "streaked", "streaker", "streamed", "streamer", "strength",
06113     "stressed", "stresses", "stretchy", "strewing", "striated",
06114     "stricken", "stricter", "strictly", "stridden", "strident",
06115     "striding", "strikers", "striking", "stringed", "stringer",
06116     "striping", "stripped", "stripper", "striving", "stroking",
06117     "strolled", "stroller", "stronger", "strongly", "strophes",
06118     "stropped", "strudels", "struggle", "strummed", "strumpet",
06119     "strutted", "stubbier", "stubbies", "stubbing", "stubborn",
06120     "stuccoed", "stuccoes", "studbook", "studding", "students",
06121     "studious", "studying", "stuffier", "stuffily", "stuffing",
06122     "stultify", "stumbled", "stumbler", "stumbles", "stumpier",
06123     "stumping", "stunners", "stunning", "stunting", "stuntman",
06124     "stuntmen", "stupider", "stupidly", "sturdier", "sturdily",
06125     "sturgeon", "stutters", "stylists", "styluses", "styptics",
06126     "subclass", "subduing", "subgroup", "subheads", "subhuman",
06127     "subjects", "subjoins", "sublease", "sublimed", "sublimer",
06128     "sublimes", "submerge", "submerse", "suborned", "subplots",
06129     "subpoena", "subsided", "subsides", "subsists", "subsoils",
06130     "subsonic", "subspace", "subsumed", "subsumes", "subteens",
06131     "subtends", "subtexts", "subtitle", "subtlest", "subtlety",
06132     "subtotal", "subtract", "suburban", "suburbia", "subverts",
06133     "succeeds", "succinct", "succubus", "succumbs", "suchlike",
06134     "suckered", "suckling", "suctions", "suddenly", "sudsiest",
06135     "suffered", "sufferer", "sufficed", "suffices", "suffixed",
06136     "suffixes", "suffrage", "suffused", "suffuses", "sugarier",
06137     "sugaring", "suggests", "suicidal", "suicides", "suitable",
06138     "suitably", "suitcase", "sukiyaki", "sulfates", "sulfides",
06139     "sulkiest", "sullener", "sullenly", "sullying", "sulphate",
06140     "sulphide", "sultanas", "sultrier", "summered", "summitry",
06141     "summoned", "summoner", "sunbathe", "sunbeams", "sunblock",
06142     "sunburns", "sundecks", "sundered", "sundials", "sundowns",
06143     "sundress", "sundries", "sunlamps", "sunlight", "sunniest",
06144     "sunrises", "sunroofs", "sunshade", "sunshine", "sunspots",
06145     "suntraps", "superber", "superbly", "superego", "supering",
06146     "superior", "superman", "supermen", "supinely", "supplant",
06147     "supplest", "supplied", "supplier", "supplies", "supports",
06148     "supposed", "supposes", "suppress", "supremer", "supremos",
06149     "surcease", "surefire", "sureness", "sureties", "surfaced",
06150     "surfaces", "surfeits", "surgeons", "surgical", "surliest",
06151     "surmised", "surmises", "surmount", "surnames", "surplice",
06152     "surprise", "surreals", "surround", "surtaxed", "surtaxes",
06153     "surtitle", "surveyed", "surveyor", "survival", "survived",
06154     "survives", "survivor", "suspects", "suspends", "suspense",
06155     "sustains", "suturing", "sveltest", "swabbing", "swaddled",
06156     "swaddles", "swaggers", "swagging", "swallows", "swampier",
06157     "swamping", "swankest", "swankier", "swankies", "swanking",
06158     "swanning", "swansong", "swapping", "swarming", "swashing",
06159     "swastika", "swatches", "swathing", "swatters", "swatting",
06160     "swearers", "swearing", "sweaters", "sweatier", "sweating",
06161     "sweepers", "sweeping", "sweetens", "sweetest", "sweeties",
06162     "sweetish", "swellest", "swelling", "swelters", "swerving",
06163     "swiftest", "swifting", "swigging", "swilling", "swimmers",
06164     "swimming", "swimsuit", "swimwear", "swindled", "swindler",
06165     "swindles", "swingers", "swinging", "swirlier", "swirling",
06166     "swishest", "swishing", "switched", "switcher", "switches",
06167     "swooning", "swooping", "swooshed", "swooshes", "swording",
06168     "swotting", "sybarite", "sycamore", "syllabic", "syllable",
06169     "syllabub", "syllabus", "symbolic", "symmetry", "sympathy",
06170     "symphony", "symptoms", "synapses", "synaptic", "syndrome",
06171     "synonyms", "synopses", "synopsis", "syphilis", "syringed",
06172     "syringes", "systemic", "systolic", "tableaux", "tabloids",
06173     "tabooing", "tabulate", "taciturn", "tackiest", "tacklers",
06174     "tackling", "tactical", "tactless", "tadpoles", "tailback",
06175     "tailbone", "tailcoat", "tailgate", "tailless", "tailored",
06176     "tailpipe", "tailspin", "tailwind", "tainting", "takeaway",
06177     "takeoffs", "takeouts", "takeover", "talented", "talisman",
06178     "tallboys", "tallness", "tallyhos", "tallying", "tamarind",
06179     "tameness", "tampered", "tanagers", "tandoori", "tangelos",
06180     "tangents", "tangible", "tangibly", "tangiest", "tangling",
06181     "tangoing", "tankards", "tankfuls", "tantrums", "tapering",
06182     "tapestry", "tapeworm", "taprooms", "taproots", "tardiest",
06183     "targeted", "tarragon", "tarriest", "tarrying", "tartiest",
06184     "tartness", "tasteful", "tastiest", "tastings", "tattered",
06185     "tattiest", "tattlers", "tattling", "tattooed", "taunting",
06186     "tautened", "tautness", "tawdrier", "tawniest", "taxation",
06187     "taxicabs", "taxiways", "taxonomy", "taxpayer", "teacakes",
06188     "teachers", "teaching", "teammate", "teamster", "teamwork",
06189     "tearaway", "teardrop", "teariest", "tearooms", "teaspoon",
06190     "teatimes", "tectonic", "teenager", "teeniest", "teetered",
06191     "teething", "teetotal", "telecast", "telegram", "teletext",
06192     "telethon", "teletype", "televise", "telexing", "tellered",
06193     "telltale", "temblors", "temerity", "temperas", "tempered",
06194     "tempests", "template", "temporal", "tempters", "tempting",
06195     "tenacity", "tenanted", "tendency", "tendered", "tenderer",
06196     "tenderly", "tendrils", "tenement", "tenfolds", "tensions",
06197     "tentacle", "tenuring", "tequilas", "terminal", "terminus",
06198     "termites", "terraced", "terraces", "terrains", "terrapin",
06199     "terrible", "terribly", "terriers", "terrific", "terrines",
06200     "tertiary", "testable", "testates", "testicle", "testiest",
06201     "tetchier", "tetchily", "tethered", "textbook", "textiles",
06202     "textural", "textured", "textures", "thalamus", "thallium",
06203     "thankful", "thanking", "thatched", "thatcher", "thatches",
06204     "theistic", "thematic", "theology", "theorems", "theories",
06205     "theorist", "thermals", "thesauri", "thespian", "thiamine",
06206     "thickens", "thickest", "thickets", "thickset", "thievery",
06207     "thieving", "thievish", "thimbled", "thimbles", "thingies",
06208     "thinkers", "thinking", "thinners", "thinness", "thinnest",
06209     "thinning", "thirding", "thirsted", "thirteen", "thirties",
06210     "thistles", "thoracic", "thoraxes", "thornier", "thorough",
06211     "thoughts", "thousand", "thralled", "thrashed", "thrasher",
06212     "thrashes", "threaded", "threaten", "threnody", "threshed",
06213     "thresher", "threshes", "thrilled", "thriller", "thriving",
06214     "throbbed", "throeing", "thronged", "throttle", "throwers",
06215     "throwing", "thrummed", "thrushes", "thruways", "thudding",
06216     "thuggery", "thuggish", "thumbing", "thumping", "thunders",
06217     "thundery", "thwacked", "thwarted", "thymuses", "thyroids",
06218     "ticketed", "tickling", "ticklish", "tiddlers", "tidemark",
06219     "tidiness", "tiebreak", "tightens", "tightest", "tightwad",
06220     "tillable", "timbered", "timeless", "timelier", "timeworn",
06221     "timezone", "timidest", "timidity", "timorous", "tincture",
06222     "tingeing", "tinglier", "tingling", "tinkered", "tinkling",
06223     "tinniest", "tinnitus", "tinplate", "tinsmith", "tippexed",
06224     "tippexes", "tipplers", "tippling", "tipsiest", "tipsters",
06225     "tiredest", "tireless", "tiresome", "titanium", "titivate",
06226     "titmouse", "tittered", "tittling", "toadying", "toasters",
06227     "toastier", "toasties", "toasting", "tobaccos", "toboggan",
06228     "toccatas", "toddlers", "toddling", "toeholds", "toenails",
06229     "together", "toggling", "toileted", "toiletry", "toilette",
06230     "toilsome", "tokenism", "tolerant", "tolerate", "tollgate",
06231     "tomahawk", "tomatoes", "tombolas", "tomorrow", "tonality",
06232     "toneless", "tonguing", "tonnages", "tonsured", "tonsures",
06233     "toolbars", "toothier", "tootling", "tootsies", "topcoats",
06234     "topknots", "topmasts", "topology", "toppings", "toppling",
06235     "topsails", "topsides", "torching", "toreador", "torments",
06236     "torpidly", "torquing", "torrents", "torrider", "tortilla",
06237     "tortoise", "tortuous", "tortured", "torturer", "tortures",
06238     "totality", "tottered", "touchier", "touchily", "touching",
06239     "toughens", "toughest", "toughies", "toughing", "tourists",
06240     "touristy", "tourneys", "tousling", "towering", "towheads",
06241     "township", "townsman", "townsmen", "towpaths", "towropes",
06242     "toxicity", "tracheae", "tracings", "trackers", "tracking",
06243     "traction", "tractors", "traduced", "traduces", "traffics",
06244     "trailers", "trailing", "trainees", "trainers", "training",
06245     "traipsed", "traipses", "traitors", "tramcars", "trammels",
06246     "tramming", "tramping", "trampled", "tramples", "tramways",
06247     "tranches", "tranquil", "transact", "transept", "transfer",
06248     "transfix", "transits", "transmit", "transoms", "trapdoor",
06249     "trapezed", "trapezes", "trappers", "trapping", "trashcan",
06250     "trashier", "trashing", "travails", "traverse", "travesty",
06251     "trawlers", "trawling", "treacled", "treacles", "treading",
06252     "treadled", "treadles", "treasure", "treasury", "treaties",
06253     "treating", "treatise", "trebling", "treeless", "treeline",
06254     "treetops", "trefoils", "trekking", "trembled", "trembles",
06255     "tremolos", "trenched", "trencher", "trenches", "trendier",
06256     "trendies", "trendily", "trending", "trespass", "trestles",
06257     "trialing", "trialled", "triangle", "tribunal", "tribunes",
06258     "tributes", "trickery", "trickier", "tricking", "trickled",
06259     "trickles", "tricycle", "tridents", "triflers", "trifling",
06260     "triggers", "triggest", "trilbies", "trilling", "trillion",
06261     "trimaran", "trimmers", "trimmest", "trimming", "trimness",
06262     "trinkets", "triplets", "triplied", "triplies", "tripling",
06263     "trippers", "tripping", "triptych", "tripwire", "trisects",
06264     "triumphs", "trochees", "trolleys", "trolling", "trollops",
06265     "trombone", "tromping", "troopers", "trooping", "trophied",
06266     "trophies", "tropical", "tropisms", "trothing", "trotters",
06267     "trotting", "troubled", "troubles", "trounced", "trounces",
06268     "troupers", "trouping", "trousers", "truanted", "truckers",
06269     "trucking", "truckled", "truckles", "trudging", "truelove",
06270     "truffles", "trumpery", "trumpets", "trumping", "truncate",
06271     "trundled", "trundles", "trunking", "trussing", "trustees",
06272     "trustful", "trustier", "trusties", "trusting", "truthful",
06273     "trysting", "tsarists", "tsunamis", "tubbiest", "tubeless",
06274     "tubercle", "tuberous", "tuckered", "tugboats", "tumblers",
06275     "tumbling", "tumbrels", "tumulted", "tuneless", "tungsten",
06276     "tuppence", "tuppenny", "turbaned", "turbines", "turbojet",
06277     "turgidly", "turmeric", "turmoils", "turncoat", "turnings",
06278     "turniped", "turnkeys", "turnoffs", "turnouts", "turnover",
06279     "turnpike", "turreted", "tussling", "tussocks", "tutelage",
06280     "tutorial", "tutoring", "twaddled", "twaddles", "twanging",
06281     "tweaking", "tweedier", "tweeters", "tweeting", "tweezers",
06282     "twelfths", "twenties", "twiddled", "twiddles", "twiggier",
06283     "twigging", "twilight", "twinging", "twinkled", "twinkles",
06284     "twinning", "twinsets", "twirlers", "twirling", "twisters",
06285     "twisting", "twitched", "twitches", "twitters", "twitting",
06286     "twofolds", "twopence", "twopenny", "twosomes", "tympanum",
06287     "typecast", "typeface", "typesets", "typhoons", "typified",
06288     "typifies", "typology", "ubiquity", "ugliness", "ukuleles",
06289     "ulcerate", "ulcering", "ulcerous", "ulterior", "ultimate",
06290     "ululated", "ululates", "umbilici", "umbraged", "umbrages",
06291     "umbrella", "umpiring", "unabated", "unafraid", "unawares",
06292     "unbarred", "unbeaten", "unbelief", "unbiased", "unbidden",
06293     "unblocks", "unbolted", "unbosoms", "unbroken", "unbuckle",
06294     "unburden", "unbutton", "uncalled", "uncaring", "unclasps",
06295     "unclothe", "uncoiled", "uncommon", "uncooked", "uncorked",
06296     "uncouple", "uncovers", "unctions", "unctuous", "uncurled",
06297     "underact", "underage", "underarm", "underbid", "undercut",
06298     "underdog", "underfed", "underlay", "underlie", "underpay",
06299     "underpin", "undersea", "undertow", "underway", "undoings",
06300     "undulant", "undulate", "unearned", "unearths", "uneasier",
06301     "uneasily", "unedited", "unending", "unequals", "unerring",
06302     "unevener", "unevenly", "unfairer", "unfairly", "unfasten",
06303     "unfetter", "unfilled", "unfitted", "unfolded", "unformed",
06304     "unfrocks", "unfurled", "ungainly", "unguents", "ungulate",
06305     "unhanded", "unharmed", "unheeded", "unhinged", "unhinges",
06306     "unholier", "unhooked", "unhorsed", "unhorses", "unicorns",
06307     "unicycle", "uniforms", "unifying", "unionism", "unionist",
06308     "uniquely", "uniquest", "universe", "unjustly", "unkinder",
06309     "unkindly", "unknowns", "unlacing", "unlawful", "unleaded",
06310     "unlearns", "unlikely", "unlisted", "unloaded", "unlocked",
06311     "unloosed", "unlooses", "unlovely", "unmaking", "unmanned",
06312     "unmarked", "unmasked", "unneeded", "unnerved", "unnerves",
06313     "unopened", "unpacked", "unpicked", "unpinned", "unplaced",
06314     "unproved", "unproven", "unquoted", "unquotes", "unravels",
06315     "unrested", "unripest", "unrolled", "unrulier", "unsaddle",
06316     "unsafest", "unsalted", "unsaying", "unscrews", "unsealed",
06317     "unseated", "unseeded", "unseeing", "unseemly", "unsettle",
06318     "unshaken", "unshaven", "unsigned", "unsnarls", "unsocial",
06319     "unsolved", "unspoilt", "unspoken", "unstable", "unstated",
06320     "unsteady", "unstrung", "unsubtle", "unsuited", "untangle",
06321     "untapped", "untaught", "untested", "untidier", "untidily",
06322     "untiling", "untimely", "untiring", "untitled", "untoward",
06323     "untruest", "untruths", "untwists", "unusable", "unveiled",
06324     "unversed", "unvoiced", "unwanted", "unwarier", "unwashed",
06325     "unwieldy", "unwisely", "unwisest", "unwonted", "unworthy",
06326     "unzipped", "upbraids", "upchucks", "upcoming", "updating",
06327     "upending", "upgraded", "upgrades", "upheaval", "upholder",
06328     "uplifted", "uploaded", "upmarket", "uppercut", "upraised",
06329     "upraises", "uprights", "uprising", "uprooted", "upstaged",
06330     "upstages", "upstairs", "upstarts", "upstream", "upsurged",
06331     "upsurges", "upswings", "upturned", "upwardly", "urbanely",
06332     "urbanest", "urbanity", "urethrae", "urgently", "urinated",
06333     "urinates", "usefully", "ushering", "usurious", "usurpers",
06334     "usurping", "utensils", "utterest", "uttering", "vacantly",
06335     "vacating", "vacation", "vaccines", "vacuumed", "vagabond",
06336     "vagaries", "vagrancy", "vagrants", "vagueing", "valanced",
06337     "valances", "valences", "valeting", "validate", "validity",
06338     "valorous", "valuable", "vamoosed", "vamooses", "vampired",
06339     "vampires", "vanadium", "vanguard", "vanillas", "vanished",
06340     "vanishes", "vanities", "vanquish", "vantages", "vapidity",
06341     "vaporise", "vaporous", "variable", "variably", "variance",
06342     "variants", "varicose", "varmints", "vascular", "vassaled",
06343     "vastness", "vaulters", "vaulting", "vaunting", "vectored",
06344     "vegetate", "vehement", "vehicles", "velocity", "velveted",
06345     "venality", "vendetta", "veneered", "venerate", "venereal",
06346     "vengeful", "venomous", "ventrals", "ventured", "ventures",
06347     "veracity", "verandas", "verbally", "verbatim", "verbenas",
06348     "verbiage", "verdicts", "verified", "verifies", "verities",
06349     "vermouth", "verrucae", "verrucas", "versions", "vertebra",
06350     "vertexes", "vertical", "vesicles", "vestiges", "vestment",
06351     "vestries", "veterans", "vexation", "viaducts", "vibrancy",
06352     "vibrated", "vibrates", "vibrator", "vibratos", "viburnum",
06353     "vicarage", "viceroys", "vicinity", "victuals", "videoing",
06354     "viewings", "vigilant", "vignette", "vigorous", "vileness",
06355     "vilified", "vilifies", "villager", "villages", "villains",
06356     "villainy", "villeins", "vinegary", "vineyard", "vintages",
06357     "vintners", "violable", "violated", "violates", "violator",
06358     "violence", "violists", "viragoes", "virginal", "virgules",
06359     "virility", "virology", "virtuoso", "virtuous", "virulent",
06360     "visceral", "viscount", "visioned", "visiting", "visitors",
06361     "vistaing", "visually", "vitality", "vitamins", "vitiated",
06362     "vitiates", "vitreous", "vivacity", "vividest", "vivified",
06363     "vivifies", "vixenish", "vocalics", "vocalist", "vocation",
06364     "vocative", "vogueing", "volatile", "volcanic", "volition",
06365     "volleyed", "voltages", "voluming", "vomiting", "voodooed",
06366     "voracity", "vortexes", "votaries", "vouchers", "vouching",
06367     "voyagers", "voyaging", "vulgarer", "vulgarly", "vultures",
06368     "wackiest", "waddling", "waffling", "wagering", "waggling",
06369     "wagtails", "wainscot", "waisting", "waitress", "wakening",
06370     "walkaway", "walkouts", "walkover", "walkways", "walleyed",
06371     "walleyes", "walloped", "wallowed", "walruses", "waltzing",
06372     "wandered", "wanderer", "wangling", "wannabee", "wannabes",
06373     "wantings", "wantoned", "wantoner", "wantonly", "warblers",
06374     "warbling", "wardened", "wardered", "wardress", "wardrobe",
06375     "wardroom", "warheads", "warhorse", "wariness", "warlocks",
06376     "warlords", "warnings", "warpaint", "warpaths", "warplane",
06377     "warrants", "warranty", "warriors", "warships", "warthogs",
06378     "wartiest", "washable", "washbowl", "washered", "washouts",
06379     "washroom", "washtubs", "wassails", "wasteful", "wastered",
06380     "wastrels", "watchdog", "watchers", "watchful", "watching",
06381     "watchman", "watchmen", "waterier", "watering", "waterway",
06382     "wattling", "waveband", "waveform", "wavelets", "wavering",
06383     "waviness", "waxiness", "waxwings", "waxworks", "wayfarer",
06384     "waysides", "weakened", "weakfish", "weaklier", "weakling",
06385     "weakness", "weaponry", "wearable", "weariest", "wearying",
06386     "weathers", "websites", "weddings", "weediest", "weekdays",
06387     "weekends", "weeklies", "weepiest", "weepings", "weighing",
06388     "weighted", "weirdest", "weirding", "welcomed", "welcomes",
06389     "wellness", "welshing", "weltered", "werewolf", "westerly",
06390     "westerns", "westward", "wetbacks", "wetlands", "whacking",
06391     "whammies", "whamming", "whatever", "whatsits", "wheatens",
06392     "wheedled", "wheedles", "wheelies", "wheeling", "wheezier",
06393     "wheezily", "wheezing", "whelping", "whenever", "wherever",
06394     "whetting", "whiffing", "whimming", "whimpers", "whimsier",
06395     "whimsies", "whingers", "whinging", "whiniest", "whinnied",
06396     "whinnier", "whinnies", "whipcord", "whiplash", "whippets",
06397     "whipping", "whirling", "whirring", "whiskers", "whiskery",
06398     "whisking", "whispers", "whistled", "whistler", "whistles",
06399     "whitecap", "whitened", "whitener", "whiteout", "whithers",
06400     "whitings", "whittled", "whittler", "whittles", "whizzing",
06401     "whodunit", "whomever", "whoopees", "whooping", "whooshed",
06402     "whooshes", "whoppers", "whopping", "whupping", "wickeder",
06403     "wickedly", "wideness", "widening", "widowers", "widowing",
06404     "wielding", "wifelier", "wigglers", "wigglier", "wiggling",
06405     "wighting", "wildcats", "wildfire", "wildfowl", "wildlife",
06406     "wildness", "wiliness", "wimpiest", "wimpling", "winching",
06407     "windbags", "windburn", "windfall", "windiest", "windlass",
06408     "windless", "windmill", "windowed", "windpipe", "windsock",
06409     "windsurf", "windward", "wineries", "wingless", "wingspan",
06410     "wingtips", "winkling", "winnings", "winnowed", "winsomer",
06411     "wintered", "wintrier", "wireless", "wiretaps", "wiriness",
06412     "wiseacre", "wiseguys", "wiselier", "wishbone", "wispiest",
06413     "wisteria", "witchery", "witching", "withdraw", "withdrew",
06414     "withered", "withheld", "withhold", "wittered", "wittiest",
06415     "wizardry", "wobblier", "wobblies", "wobbling", "woefully",
06416     "womanish", "wondered", "wondrous", "woodbine", "woodcock",
06417     "woodcuts", "woodener", "woodenly", "woodiest", "woodland",
06418     "woodlice", "woodpile", "woodshed", "woodsier", "woodsman",
06419     "woodsmen", "woodwind", "woodwork", "woodworm", "woollier",
06420     "woollies", "wooziest", "wordiest", "wordings", "wordless",
06421     "wordplay", "workable", "workaday", "workbook", "workdays",
06422     "workfare", "workings", "workload", "workmate", "workouts",
06423     "workroom", "workshop", "worktops", "workweek", "wormhole",
06424     "wormiest", "wormwood", "worriers", "worrying", "worsened",
06425     "worships", "worsting", "worthier", "worthies", "worthily",
06426     "wounding", "wracking", "wrangled", "wrangler", "wrangles",
06427     "wrappers", "wrapping", "wrathful", "wrathing", "wreaking",
06428     "wreathed", "wreathes", "wreckage", "wreckers", "wrecking",
06429     "wrenched", "wrenches", "wresting", "wrestled", "wrestler",
06430     "wrestles", "wretched", "wretches", "wriggled", "wriggler",
06431     "wriggles", "wringers", "wringing", "wrinkled", "wrinkles",
06432     "writable", "writhing", "writings", "wrongest", "wrongful",
06433     "wronging", "xeroxing", "yachting", "yammered", "yardages",
06434     "yardarms", "yarmulke", "yashmaks", "yearbook", "yearlies",
06435     "yearling", "yearning", "yeastier", "yellowed", "yellower",
06436     "yeshivas", "yielding", "youngest", "youngish", "yourself",
06437     "youthful", "yuckiest", "yuletide", "yummiest", "zaniness",
06438     "zealotry", "zeppelin", "zillions", "zincking", "zippered",
06439     "zippiest", "zodiacal", "zucchini", "zwieback"
06440   };
06441 
06442   const char* w_9[] = {
06443     "aardvarks", "abandoned", "abasement", "abatement", "abattoirs",
06444     "abdicated", "abdicates", "abdominal", "abducting", "abduction",
06445     "abductors", "abhorrent", "abhorring", "abilities", "abjecting",
06446     "ablatives", "ablutions", "abnegated", "abnegates", "abolished",
06447     "abolishes", "abolition", "abominate", "aborigine", "abortions",
06448     "abounding", "abrasions", "abrasives", "abridging", "abrogated",
06449     "abrogates", "abruptest", "abscessed", "abscesses", "abscissas",
06450     "absconded", "abseiling", "absentees", "absenting", "absoluter",
06451     "absolutes", "absolving", "absorbent", "absorbing", "abstained",
06452     "abstainer", "abstinent", "abstracts", "abstruser", "absurdest",
06453     "absurdity", "abundance", "abusively", "abutments", "abysmally",
06454     "academics", "academies", "accenting", "accepting", "accessing",
06455     "accession", "accessory", "accidents", "acclaimed", "acclimate",
06456     "accoladed", "accolades", "accompany", "according", "accordion",
06457     "accosting", "accounted", "accredits", "accretion", "accustoms",
06458     "acetylene", "achievers", "achieving", "acidified", "acidifies",
06459     "acidulous", "acoustics", "acquaints", "acquiesce", "acquirers",
06460     "acquiring", "acquittal", "acquitted", "acrobatic", "acrostics",
06461     "actioning", "activated", "activates", "activists", "actresses",
06462     "actuality", "actuarial", "actuaries", "actuating", "actuators",
06463     "acuteness", "adamantly", "adaptable", "adaptions", "addicting",
06464     "addiction", "addictive", "additions", "additives", "addressed",
06465     "addressee", "addresses", "adenoidal", "adeptness", "adherence",
06466     "adherents", "adhesives", "adiabatic", "adjective", "adjoining",
06467     "adjourned", "adjudging", "adjusters", "adjusting", "adjutants",
06468     "admirable", "admirably", "admiralty", "admission", "admitting",
06469     "admixture", "adoptions", "adoration", "adoringly", "adornment",
06470     "adrenalin", "adroitest", "adulating", "adulation", "adulatory",
06471     "adulterer", "adulthood", "adumbrate", "advancing", "advantage",
06472     "adventure", "adverbial", "adversary", "adversely", "adversest",
06473     "adversity", "adverting", "advertise", "advisable", "advisedly",
06474     "advocated", "advocates", "aerialist", "aerobatic", "aerodrome",
06475     "aerograms", "aerospace", "aesthetes", "aesthetic", "aetiology",
06476     "affablest", "affecting", "affection", "affidavit", "affiliate",
06477     "affirming", "afflicted", "affluence", "affording", "afforests",
06478     "affronted", "aforesaid", "aftercare", "afterglow", "afterlife",
06479     "aftermath", "afternoon", "afterword", "aggravate", "aggregate",
06480     "aggressor", "aggrieved", "aggrieves", "agitating", "agitation",
06481     "agitators", "agnostics", "agrarians", "agreeable", "agreeably",
06482     "agreement", "aimlessly", "airdromes", "airfields", "airletter",
06483     "airlifted", "airliners", "airmailed", "airstrips", "airworthy",
06484     "alabaster", "alarmists", "albacores", "albatross", "alchemist",
06485     "alcoholic", "alehouses", "alertness", "algebraic", "algorithm",
06486     "alienable", "alienated", "alienates", "alighting", "alignment",
06487     "alkaloids", "allegedly", "alleluias", "allergens", "allergies",
06488     "allergist", "alleviate", "alleyways", "alliances", "alligator",
06489     "allocated", "allocates", "allotment", "allotting", "allowable",
06490     "allowance", "allusions", "alluviums", "almanacks", "almshouse",
06491     "alongside", "aloofness", "alphabets", "alterable", "alternate",
06492     "altimeter", "altitudes", "altruists", "alveolars", "amaranths",
06493     "amaryllis", "amazement", "amazingly", "amazonian", "ambergris",
06494     "ambiances", "ambiguity", "ambiguous", "ambitions", "ambitious",
06495     "ambulance", "ambushing", "amendable", "amendment", "amenities",
06496     "amethysts", "amidships", "amnesiacs", "amnestied", "amnesties",
06497     "amorality", "amorously", "amorphous", "amounting", "ampersand",
06498     "amphibian", "amplified", "amplifier", "amplifies", "amplitude",
06499     "amputated", "amputates", "amusement", "amusingly", "anacondas",
06500     "anaerobic", "analgesia", "analgesic", "analogies", "analogous",
06501     "analogues", "analytics", "anarchism", "anarchist", "anathemas",
06502     "anatomies", "anatomist", "ancestors", "ancestral", "anchorage",
06503     "anchoring", "anchorite", "anchorman", "anchormen", "anchovies",
06504     "ancienter", "anciently", "ancillary", "androgyny", "anecdotal",
06505     "anecdotes", "aneurysms", "angleworm", "anglicism", "angostura",
06506     "angstroms", "anguished", "anguishes", "animating", "animation",
06507     "animators", "animistic", "animosity", "annealing", "annotated",
06508     "annotates", "announced", "announcer", "announces", "annoyance",
06509     "annuities", "annulling", "annulment", "anointing", "anomalies",
06510     "anomalous", "anonymity", "anonymous", "anopheles", "anorexics",
06511     "answering", "antarctic", "anteaters", "antedated", "antedates",
06512     "antelopes", "antenatal", "anterooms", "anthology", "anticking",
06513     "antidotes", "antiknock", "antipasti", "antipasto", "antipathy",
06514     "antipodes", "antiquary", "antiquate", "antiquing", "antiquity",
06515     "antitoxin", "antitrust", "antiviral", "anxieties", "anxiously",
06516     "anybodies", "anythings", "anywheres", "apartheid", "apartment",
06517     "apathetic", "aperitifs", "apertures", "aphelions", "aphorisms",
06518     "apologias", "apologies", "apologist", "apostates", "apostolic",
06519     "appalling", "apparatus", "appealing", "appearing", "appeasers",
06520     "appeasing", "appellant", "appellate", "appendage", "appending",
06521     "appertain", "appetites", "applauded", "applejack", "appliance",
06522     "applicant", "appointed", "appointee", "apportion", "appraisal",
06523     "appraised", "appraiser", "appraises", "apprehend", "apprising",
06524     "approvals", "approving", "aptitudes", "aquanauts", "aquaplane",
06525     "aquariums", "aquatints", "aqueducts", "arabesque", "arachnids",
06526     "arbitrage", "arbitrary", "arbitrate", "arboretum", "arbutuses",
06527     "archaisms", "archangel", "archdukes", "archenemy", "archetype",
06528     "architect", "archiving", "archivist", "arduously", "arguments",
06529     "armadillo", "armaments", "armatured", "armatures", "armchairs",
06530     "armistice", "aromatics", "arpeggios", "arraigned", "arrangers",
06531     "arranging", "arresting", "arrogance", "arrogated", "arrogates",
06532     "arrowhead", "arrowroot", "arsonists", "arthritic", "arthritis",
06533     "arthropod", "artichoke", "artifacts", "artificer", "artifices",
06534     "artillery", "artlessly", "ascendant", "ascending", "ascension",
06535     "ascertain", "ascribing", "asexually", "ashamedly", "asparagus",
06536     "aspartame", "aspersion", "asphalted", "aspirants", "aspirated",
06537     "aspirates", "assailant", "assailing", "assassins", "assaulted",
06538     "assaulter", "assembled", "assembler", "assembles", "assenting",
06539     "asserting", "assertion", "assertive", "assessing", "assessors",
06540     "assiduity", "assiduous", "assigning", "assistant", "assisting",
06541     "associate", "assonance", "assorting", "assuaging", "assurance",
06542     "assuredly", "asterisks", "asteroids", "asthmatic", "astounded",
06543     "astrakhan", "astrology", "astronaut", "astronomy", "asymmetry",
06544     "atavistic", "atheistic", "athletics", "atonality", "atonement",
06545     "atrocious", "atrophied", "atrophies", "attaching", "attackers",
06546     "attacking", "attaining", "attempted", "attendant", "attendees",
06547     "attenders", "attending", "attention", "attentive", "attenuate",
06548     "attesting", "attitudes", "attorneys", "attracted", "attribute",
06549     "attrition", "aubergine", "auctioned", "audacious", "audiences",
06550     "audiotape", "auditions", "augmented", "augustest", "aureoling",
06551     "austerely", "austerest", "austerity", "authentic", "authoress",
06552     "authorial", "authoring", "authority", "autistics", "autobahns",
06553     "autocracy", "autocrats", "autocross", "autograph", "automaker",
06554     "automated", "automates", "automatic", "automaton", "autopilot",
06555     "autopsied", "autopsies", "auxiliary", "available", "avalanche",
06556     "averagely", "averaging", "aversions", "avocation", "avoidable",
06557     "avoidably", "avoidance", "avuncular", "awakening", "awareness",
06558     "awesomely", "awestruck", "awfullest", "awfulness", "awkwarder",
06559     "awkwardly", "axiomatic", "ayatollah", "babushkas", "bacchanal",
06560     "bachelors", "backaches", "backbench", "backbiter", "backbites",
06561     "backboard", "backbones", "backcloth", "backcombs", "backdated",
06562     "backdates", "backdrops", "backfield", "backfired", "backfires",
06563     "backhands", "backpacks", "backpedal", "backrests", "backrooms",
06564     "backsides", "backslash", "backslide", "backspace", "backstage",
06565     "backstops", "backtrack", "backwards", "backwater", "backwoods",
06566     "backyards", "bacterial", "bacterias", "bacterium", "badgering",
06567     "badminton", "badmouths", "bagatelle", "bagginess", "baguettes",
06568     "bailiwick", "balaclava", "balalaika", "balancing", "balconies",
06569     "balefully", "balladeer", "ballasted", "ballcocks", "ballerina",
06570     "ballgirls", "ballgowns", "ballistic", "ballooned", "balloting",
06571     "ballparks", "ballpoint", "ballrooms", "ballsiest", "ballyhoos",
06572     "balminess", "balsaming", "balusters", "bamboozle", "bandaging",
06573     "bandannas", "bandoleer", "bandstand", "bandwagon", "bandwidth",
06574     "banishing", "banisters", "banjoists", "bankbooks", "banknotes",
06575     "bankrolls", "bankrupts", "bannering", "banqueted", "banquette",
06576     "bantering", "baptismal", "barbarian", "barbarism", "barbarity",
06577     "barbarous", "barbecued", "barbecues", "barbering", "barefaced",
06578     "bargained", "bargainer", "baritones", "barkeeper", "barnacles",
06579     "barnstorm", "barnyards", "barometer", "baronetcy", "barracked",
06580     "barracuda", "barraging", "barrenest", "barrettes", "barricade",
06581     "barrister", "bartender", "bartering", "baseballs", "baseboard",
06582     "baselines", "basements", "bashfully", "basically", "basilicas",
06583     "basilisks", "bassinets", "bathhouse", "bathrobes", "bathrooms",
06584     "bathwater", "battalion", "battening", "batteries", "battering",
06585     "bawdiness", "bayoneted", "bazillion", "beachhead", "beachwear",
06586     "beanfeast", "beanpoles", "bearskins", "beastlier", "beatified",
06587     "beatifies", "beatitude", "beauteous", "beautiful", "beavering",
06588     "becalming", "beckoning", "becomings", "becquerel", "bedaubing",
06589     "bedazzled", "bedazzles", "bedecking", "bedfellow", "bedraggle",
06590     "bedridden", "bedsitter", "bedspread", "bedsteads", "beechnuts",
06591     "beefcakes", "beefsteak", "beekeeper", "beelining", "beetroots",
06592     "befalling", "befitting", "befogging", "befouling", "befriends",
06593     "befuddled", "befuddles", "begetters", "begetting", "beggaring",
06594     "beginners", "beginning", "begrudged", "begrudges", "beguiling",
06595     "beheading", "behemoths", "beholders", "beholding", "belatedly",
06596     "beleaguer", "believers", "believing", "belittled", "belittles",
06597     "bellicose", "bellowing", "bellyache", "bellyfuls", "belonging",
06598     "bemoaning", "benchmark", "benefices", "benefited", "benighted",
06599     "benumbing", "bequeaths", "bereaving", "beryllium", "beseeches",
06600     "besetting", "besiegers", "besieging", "besotting", "bestirred",
06601     "bestowals", "bestowing", "bestrides", "bethought", "betokened",
06602     "betrayals", "betrayers", "betraying", "betrothal", "betrothed",
06603     "bettering", "beverages", "bewailing", "bewilders", "bewitched",
06604     "bewitches", "biathlons", "bicameral", "bickering", "bicuspids",
06605     "bicycling", "bicyclist", "biennials", "bifurcate", "bigamists",
06606     "bigmouths", "bigotries", "bilabials", "bilateral", "bilingual",
06607     "billboard", "billeting", "billfolds", "billhooks", "billiards",
06608     "billionth", "billowier", "billowing", "billycans", "bimonthly",
06609     "binderies", "binnacles", "binocular", "binomials", "biography",
06610     "biologist", "biopsying", "biorhythm", "biosphere", "bipartite",
06611     "birdbaths", "birdbrain", "birdcages", "birdhouse", "birdieing",
06612     "birthdays", "birthmark", "birthrate", "bisecting", "bisection",
06613     "bisectors", "bisexuals", "bishopric", "bitchiest", "bitterest",
06614     "bizarrely", "blabbered", "blackball", "blackbird", "blackened",
06615     "blackhead", "blackjack", "blacklegs", "blacklist", "blackmail",
06616     "blackness", "blackouts", "blacktops", "blameless", "blanching",
06617     "blandness", "blanketed", "blankness", "blarneyed", "blaspheme",
06618     "blasphemy", "blastoffs", "blatantly", "blathered", "blazoning",
06619     "bleachers", "bleaching", "bleakness", "bleariest", "blemished",
06620     "blemishes", "blenching", "blesseder", "blessedly", "blessings",
06621     "blethered", "blighters", "blighting", "blindfold", "blindness",
06622     "blindside", "blinkered", "blistered", "blizzards", "blockaded",
06623     "blockades", "blockages", "blockhead", "blondness", "bloodbath",
06624     "bloodiest", "bloodless", "bloodline", "bloodshed", "bloodshot",
06625     "bloodying", "blossomed", "blotchier", "blotching", "blowhards",
06626     "blowholes", "blowlamps", "blowpipes", "blowtorch", "blowziest",
06627     "blubbered", "bludgeons", "bluebells", "blueberry", "bluebirds",
06628     "bluegrass", "bluenoses", "blueprint", "blundered", "blunderer",
06629     "bluntness", "blurriest", "blustered", "boardroom", "boardwalk",
06630     "boathouse", "boatloads", "boatswain", "boatyards", "bobolinks",
06631     "bobsleigh", "bobwhites", "bodacious", "bodyguard", "bodysuits",
06632     "bohemians", "bolstered", "boltholes", "bombarded", "bombastic",
06633     "bombshell", "bombsites", "boneheads", "boogieing", "bookcases",
06634     "bookended", "bookmaker", "bookmarks", "bookplate", "bookshelf",
06635     "bookshops", "bookstall", "bookstore", "bookworms", "boomerang",
06636     "boondocks", "boorishly", "bootblack", "bootlaces", "bootstrap",
06637     "bordellos", "bordering", "boreholes", "borrowers", "borrowing",
06638     "bossiness", "botanical", "botanists", "bothering", "bottoming",
06639     "bouffants", "bouillons", "bouldered", "boulevard", "bounciest",
06640     "boundless", "bounteous", "bountiful", "bourgeois", "boutiques",
06641     "bowlegged", "bowsprits", "bowstring", "boycotted", "boyfriend",
06642     "bracelets", "bracketed", "braggarts", "brainiest", "brainless",
06643     "brainwash", "brainwave", "branching", "brandying", "brashness",
06644     "brasserie", "brassiere", "brassiest", "brattiest", "brawniest",
06645     "brazening", "breaching", "breadline", "breakable", "breakages",
06646     "breakaway", "breakdown", "breakfast", "breakneck", "breakouts",
06647     "breastfed", "breasting", "breathers", "breathier", "breathing",
06648     "breeziest", "breweries", "brickbats", "brickwork", "brickyard",
06649     "bridleway", "briefcase", "briefings", "briefness", "brigadier",
06650     "brightens", "brightest", "brilliant", "brimstone", "briquette",
06651     "briskness", "bristlier", "bristling", "brittlest", "broaching",
06652     "broadcast", "broadened", "broadloom", "broadness", "broadside",
06653     "brocading", "brochures", "brokerage", "brokering", "bronchial",
06654     "brothered", "brotherly", "broughams", "brouhahas", "browbeats",
06655     "browniest", "brownouts", "brunching", "brunettes", "brushwood",
06656     "brushwork", "brusquely", "brusquest", "brutality", "brutishly",
06657     "bubblegum", "bubbliest", "buccaneer", "buckboard", "bucketful",
06658     "bucketing", "buckskins", "buckteeth", "bucktooth", "buckwheat",
06659     "budgetary", "budgeting", "buffaloed", "buffaloes", "buffering",
06660     "buffeting", "buggering", "buildings", "bulkheads", "bulkiness",
06661     "bulldozed", "bulldozer", "bulldozes", "bulletins", "bullfight",
06662     "bullfinch", "bullfrogs", "bullhorns", "bullrings", "bullshits",
06663     "bullwhips", "bulrushes", "bumblebee", "bumblings", "bumptious",
06664     "bungalows", "bungholes", "bunkhouse", "buoyantly", "burdening",
06665     "burgeoned", "burlesque", "burliness", "burnished", "burnishes",
06666     "burnooses", "burrowing", "bursaries", "bushiness", "bushwhack",
06667     "butchered", "butlering", "buttercup", "butterfat", "butterfly",
06668     "butterier", "butteries", "buttering", "butternut", "buttocked",
06669     "buttoning", "buzzwords", "bypassing", "byproduct", "bystander",
06670     "byzantine", "cabdriver", "cablecast", "cablegram", "cacheting",
06671     "cacophony", "cafeteria", "cafetiere", "calamined", "calamines",
06672     "calcified", "calcifies", "calcining", "calculate", "calendars",
06673     "calibrate", "caliphate", "calliopes", "calloused", "callouses",
06674     "callously", "callowest", "callusing", "calorific", "calumnies",
06675     "cambering", "camcorder", "camellias", "cameraman", "cameramen",
06676     "camisoles", "campaigns", "campanile", "campfires", "campsites",
06677     "campusing", "camshafts", "cancerous", "candidacy", "candidate",
06678     "candidest", "candlelit", "canisters", "cankering", "cankerous",
06679     "canneries", "cannibals", "canniness", "cannonade", "cannoning",
06680     "canoeists", "canonical", "canoodled", "canoodles", "canopying",
06681     "cantering", "canticles", "canvasing", "canvassed", "canvasser",
06682     "canvasses", "canyoning", "capablest", "capacious", "capacitor",
06683     "caparison", "capillary", "capsicums", "capsizing", "capsuling",
06684     "captaincy", "captained", "captioned", "captivate", "captivity",
06685     "capturing", "carapaces", "carbonate", "carbuncle", "carcasses",
06686     "carcinoma", "cardamoms", "cardamons", "cardboard", "cardigans",
06687     "cardinals", "cardsharp", "careening", "careering", "careerism",
06688     "careerist", "carefully", "caregiver", "caressing", "caretaker",
06689     "carillons", "carjacked", "carjacker", "carnation", "carnelian",
06690     "carnivals", "carnivore", "carousals", "carousels", "carousers",
06691     "carousing", "carpenter", "carpentry", "carpetbag", "carpeting",
06692     "carpooled", "carriages", "carryalls", "carrycots", "carryouts",
06693     "carthorse", "cartilage", "cartloads", "cartooned", "cartridge",
06694     "cartwheel", "carveries", "caryatids", "cascading", "casebooks",
06695     "caseloads", "casements", "cashiered", "cashpoint", "casserole",
06696     "cassettes", "castanets", "castaways", "castigate", "castrated",
06697     "castrates", "casuistry", "cataclysm", "catacombs", "catalepsy",
06698     "catalysis", "catalysts", "catalytic", "catamaran", "catapults",
06699     "cataracts", "catatonic", "catcalled", "catchalls", "catchiest",
06700     "catchings", "catchment", "catchword", "catechism", "caterings",
06701     "caterwaul", "catfishes", "catharses", "catharsis", "cathartic",
06702     "cathedral", "catheters", "catholics", "catnapped", "catteries",
06703     "cattiness", "cattleman", "cattlemen", "caucusing", "cauldrons",
06704     "causality", "causation", "causative", "causeless", "causeways",
06705     "cautioned", "cavalcade", "cavaliers", "cavalries", "caveatted",
06706     "cavernous", "cavorting", "ceasefire", "ceaseless", "celebrant",
06707     "celebrate", "celebrity", "celestial", "celibates", "cellmates",
06708     "cellphone", "cellulars", "cellulite", "celluloid", "cellulose",
06709     "cementing", "cenotaphs", "censoring", "censuring", "censusing",
06710     "centenary", "centipede", "centraler", "centrally", "centrists",
06711     "centuries", "centurion", "cephalics", "cerebrums", "certainer",
06712     "certainly", "certainty", "certified", "certifies", "certitude",
06713     "cesareans", "cessation", "cesspools", "cetaceans", "chaffinch",
06714     "chagrined", "chainsaws", "chairlift", "chalkiest", "challenge",
06715     "chameleon", "chamomile", "champagne", "champions", "chanciest",
06716     "chandlers", "chaparral", "chapattis", "chaperons", "chaplains",
06717     "charabanc", "character", "charbroil", "charcoals", "charities",
06718     "charlatan", "charmless", "chartered", "charwoman", "charwomen",
06719     "chastened", "chastised", "chastises", "chasubles", "chatlines",
06720     "chattered", "chatterer", "chattiest", "chauffeur", "cheapened",
06721     "cheapness", "checklist", "checkmate", "checkouts", "checkroom",
06722     "cheekbone", "cheekiest", "cheeriest", "cheerless", "cheesiest",
06723     "chemicals", "chemistry", "cherished", "cherishes", "chestnuts",
06724     "chicanery", "chichiest", "chickadee", "chickened", "chickpeas",
06725     "chickweed", "chicories", "chieftain", "chihuahua", "chilblain",
06726     "childcare", "childhood", "childless", "childlike", "chilliest",
06727     "chillings", "chinstrap", "chintzier", "chipboard", "chipmunks",
06728     "chipolata", "chippings", "chiropody", "chirpiest", "chirruped",
06729     "chiselers", "chiseling", "chitchats", "chivvying", "chlorides",
06730     "chocolate", "choirboys", "choosiest", "choppered", "choppiest",
06731     "chopstick", "chorister", "chortling", "chorusing", "chowdered",
06732     "christens", "christian", "chromatic", "chronicle", "chrysalis",
06733     "chubbiest", "chuckhole", "chuckling", "chummiest", "chundered",
06734     "chunkiest", "chuntered", "churchman", "churchmen", "cicatrice",
06735     "cigarette", "cigarillo", "cinchonas", "cinctures", "cindering",
06736     "cinematic", "ciphering", "circadian", "circuited", "circuitry",
06737     "circulars", "circulate", "cirrhosis", "citations", "citizenry",
06738     "civilians", "claimants", "clambakes", "clambered", "clammiest",
06739     "clamorous", "clampdown", "clapboard", "clappered", "clareting",
06740     "clarified", "clarifies", "clarinets", "clarioned", "classical",
06741     "classiest", "classless", "classmate", "classroom", "clattered",
06742     "clavicles", "cleanings", "cleanlier", "cleanness", "cleansers",
06743     "cleansing", "clearance", "clearings", "clearness", "clearways",
06744     "cleavages", "clenching", "clergyman", "clergymen", "cleverest",
06745     "clifftops", "climactic", "climaxing", "clinchers", "clinching",
06746     "clingfilm", "clingiest", "clinician", "clipboard", "clippings",
06747     "cloakroom", "clobbered", "clockwise", "clockwork", "cloisters",
06748     "closeness", "closeouts", "closeting", "clothiers", "cloudiest",
06749     "cloudless", "cloyingly", "clubbable", "clubhouse", "clumsiest",
06750     "clunkiest", "clustered", "clutching", "cluttered", "coachload",
06751     "coachwork", "coagulant", "coagulate", "coalesced", "coalesces",
06752     "coalfaces", "coalfield", "coalition", "coalmines", "coarsened",
06753     "coastline", "coatrooms", "coattails", "coauthors", "coaxingly",
06754     "cobwebbed", "cochineal", "cockatoos", "cockerels", "cockfight",
06755     "cockiness", "cockroach", "cockscomb", "cocktails", "cocooning",
06756     "codfishes", "codifying", "codpieces", "coexisted", "coffeepot",
06757     "cofferdam", "coffining", "cogitated", "cogitates", "cognition",
06758     "cognitive", "cognomens", "cogwheels", "cohabited", "coherence",
06759     "coiffured", "coiffures", "coincided", "coincides", "colanders",
06760     "coliseums", "collapsed", "collapses", "collaring", "collating",
06761     "collation", "colleague", "collected", "collector", "collegian",
06762     "colliding", "collision", "collocate", "colluding", "collusion",
06763     "collusive", "colonials", "colonists", "colonnade", "columbine",
06764     "columnist", "combatant", "combating", "combative", "combining",
06765     "comebacks", "comedians", "comedowns", "comeliest", "comforted",
06766     "comforter", "comically", "commanded", "commander", "commandos",
06767     "commenced", "commences", "commended", "commented", "commerced",
06768     "commerces", "commingle", "commissar", "committal", "committed",
06769     "committee", "commodity", "commodore", "commoners", "commonest",
06770     "commotion", "communing", "communion", "communism", "communist",
06771     "community", "commuters", "commuting", "compacted", "compacter",
06772     "compactly", "compactor", "companies", "companion", "comparing",
06773     "compassed", "compasses", "compelled", "competent", "competing",
06774     "compilers", "compiling", "complains", "complaint", "completed",
06775     "completer", "completes", "complexer", "complexes", "compliant",
06776     "complying", "component", "comported", "composers", "composing",
06777     "composite", "composted", "composure", "compounds", "comprised",
06778     "comprises", "computers", "computing", "comradely", "concavity",
06779     "concealed", "conceding", "conceited", "conceived", "conceives",
06780     "concerned", "concerted", "concertos", "concierge", "concisely",
06781     "concisest", "concision", "conclaves", "concluded", "concludes",
06782     "concocted", "concordat", "concourse", "concreted", "concretes",
06783     "concubine", "concurred", "concussed", "concusses", "condemned",
06784     "condensed", "condenser", "condenses", "condiment", "condition",
06785     "condoling", "condoning", "conducing", "conducive", "conducted",
06786     "conductor", "confabbed", "conferred", "conferrer", "confessed",
06787     "confesses", "confessor", "confidant", "confident", "confiding",
06788     "configure", "confining", "confirmed", "conflated", "conflates",
06789     "conflicts", "confluent", "conformed", "confounds", "confronts",
06790     "confusing", "confusion", "confuting", "congealed", "congenial",
06791     "congested", "congruent", "congruity", "congruous", "conjoined",
06792     "conjugate", "conjurers", "conjuring", "connected", "connector",
06793     "connexion", "connivers", "conniving", "connoting", "connubial",
06794     "conquered", "conqueror", "conquests", "conscious", "conscript",
06795     "consensus", "consented", "conserved", "conserves", "considers",
06796     "consigned", "consignee", "consisted", "consoling", "consonant",
06797     "consorted", "consortia", "conspired", "conspires", "constable",
06798     "constancy", "constants", "constrain", "constrict", "construct",
06799     "construed", "construes", "consulars", "consulate", "consulted",
06800     "consumers", "consuming", "contacted", "contagion", "contained",
06801     "container", "contended", "contender", "contented", "contested",
06802     "continent", "continual", "continued", "continues", "continuum",
06803     "contorted", "contoured", "contracts", "contrails", "contralto",
06804     "contrasts", "contrived", "contrives", "contumely", "contusing",
06805     "contusion", "conundrum", "convector", "conveners", "convening",
06806     "convented", "converged", "converges", "conversed", "converses",
06807     "converted", "converter", "convexing", "convexity", "conveying",
06808     "conveyors", "convicted", "convinced", "convinces", "convivial",
06809     "convoking", "convoying", "convulsed", "convulses", "cookbooks",
06810     "cookeries", "cookhouse", "cooperate", "coopering", "copiously",
06811     "copulated", "copulates", "copyright", "coquetted", "coquettes",
06812     "cordially", "cordoning", "corduroys", "coriander", "corkscrew",
06813     "cormorant", "cornballs", "cornbread", "corncrake", "cornering",
06814     "cornfield", "cornflour", "cornrowed", "cornstalk", "corollary",
06815     "corporals", "corporate", "corporeal", "corpulent", "corpuscle",
06816     "corralled", "corrected", "correcter", "correctly", "corrector",
06817     "correlate", "corridors", "corroding", "corrosion", "corrosive",
06818     "corrugate", "corrupted", "corrupter", "corruptly", "corseting",
06819     "cortisone", "coruscate", "cosigners", "cosigning", "cosmetics",
06820     "cosmogony", "cosmology", "cosmonaut", "cosponsor", "cosseting",
06821     "cossetted", "costarred", "costliest", "costumers", "costuming",
06822     "cotillion", "cottagers", "cottaging", "cottoning", "cotyledon",
06823     "couchette", "countable", "countably", "countdown", "countered",
06824     "countless", "countries", "couplings", "courgette", "couriered",
06825     "courteous", "courtesan", "courtiers", "courtlier", "courtroom",
06826     "courtship", "courtyard", "couturier", "covenants", "coveralls",
06827     "coverings", "coverlets", "cowardice", "coworkers", "coxswains",
06828     "crabbiest", "crabgrass", "crackdown", "cracklier", "crackling",
06829     "crackpots", "craftiest", "craftsman", "craftsmen", "craggiest",
06830     "cranberry", "crankcase", "crankiest", "crannying", "crappiest",
06831     "crassness", "cratering", "cravatted", "crayoning", "craziness",
06832     "creakiest", "creamiest", "creations", "creatures", "credenzas",
06833     "crediting", "creditors", "credulity", "credulous", "creepiest",
06834     "cremating", "cremation", "crematory", "creosoted", "creosotes",
06835     "crescendo", "crescents", "cretinous", "crevasses", "cricketer",
06836     "criminals", "crimsoned", "crinklier", "crinklies", "crinkling",
06837     "crinoline", "crippling", "crispiest", "crispness", "criterion",
06838     "criticism", "critiqued", "critiques", "crocheted", "crocodile",
06839     "croissant", "crookeder", "crookedly", "croquette", "crossbars",
06840     "crossbeam", "crossbows", "crossbred", "crossfire", "crossings",
06841     "crossness", "crossover", "crossroad", "crosstown", "crosswalk",
06842     "crosswind", "crosswise", "crossword", "crotchets", "crotchety",
06843     "crouching", "croupiers", "croupiest", "crucially", "crucibles",
06844     "crucified", "crucifies", "cruciform", "cruddiest", "crudeness",
06845     "crudities", "cruelties", "crumbiest", "crumblier", "crumblies",
06846     "crumbling", "crummiest", "crumpling", "crunchier", "crunching",
06847     "crusaders", "crusading", "crustiest", "crybabies", "cryogenic",
06848     "cubbyhole", "cuckolded", "cucumbers", "cuddliest", "culminate",
06849     "cultivate", "culturing", "cuneiform", "cunninger", "cunningly",
06850     "cupboards", "cupolaing", "curatives", "curiosity", "curiouser",
06851     "curiously", "curlicued", "curlicues", "curliness", "currently",
06852     "curricula", "currycomb", "cursedest", "cursorily", "cursoring",
06853     "curtailed", "curtained", "curtsying", "curvature", "cushioned",
06854     "cuspidors", "custodial", "custodian", "customary", "customers",
06855     "cutesiest", "cutlasses", "cutthroat", "cyberpunk", "cyclamens",
06856     "cyclotron", "cylinders", "cynically", "cynosures", "cypresses",
06857     "cytoplasm", "dachshund", "dactylics", "daffodils", "daintiest",
06858     "daiquiris", "dairymaid", "dalliance", "dalmatian", "damasking",
06859     "damnation", "damnedest", "dampening", "dandelion", "dandering",
06860     "dandified", "dandifies", "dangering", "dangerous", "dapperest",
06861     "daredevil", "darkening", "darkliest", "darkrooms", "darnedest",
06862     "dartboard", "dashboard", "dashingly", "dastardly", "databased",
06863     "databases", "datebooks", "datelined", "datelines", "daughters",
06864     "dauntless", "davenport", "daydreams", "daylights", "dazzlings",
06865     "deaconess", "deadbeats", "deadbolts", "deadening", "deadheads",
06866     "deadliest", "deadlined", "deadlines", "deadlocks", "deafening",
06867     "deaneries", "deathbeds", "deathblow", "deathless", "deathlier",
06868     "deathlike", "deathtrap", "debarking", "debarment", "debarring",
06869     "debatable", "debauched", "debauchee", "debauches", "debenture",
06870     "debriefed", "debuggers", "debugging", "debunking", "decadence",
06871     "decadents", "decamping", "decanters", "decanting", "decathlon",
06872     "deceasing", "decedents", "deceitful", "deceivers", "deceiving",
06873     "decencies", "decentest", "deception", "deceptive", "decidedly",
06874     "deciduous", "decimated", "decimates", "deciphers", "decisions",
06875     "deckchair", "deckhands", "declaimed", "declaring", "declining",
06876     "declivity", "decompose", "decontrol", "decorated", "decorates",
06877     "decorator", "decoupled", "decouples", "decreased", "decreases",
06878     "decreeing", "dedicated", "dedicates", "deducible", "deducting",
06879     "deduction", "deductive", "deejaying", "deepening", "defaulted",
06880     "defaulter", "defeating", "defeatism", "defeatist", "defecated",
06881     "defecates", "defecting", "defection", "defective", "defectors",
06882     "defendant", "defenders", "defending", "deference", "deferment",
06883     "deferrals", "deferring", "defiantly", "deficient", "definable",
06884     "deflating", "deflation", "deflected", "deflector", "deflowers",
06885     "defoggers", "defogging", "defoliant", "defoliate", "deforests",
06886     "deforming", "deformity", "defrauded", "defraying", "defrocked",
06887     "defrosted", "defroster", "degrading", "dehydrate", "dejecting",
06888     "dejection", "delegated", "delegates", "deletions", "delicious",
06889     "delighted", "delimited", "delimiter", "delineate", "delirious",
06890     "deliriums", "delivered", "deliverer", "delousing", "delusions",
06891     "demagogic", "demagogue", "demanding", "demarcate", "demeaning",
06892     "demerited", "demijohns", "demisters", "demisting", "demitasse",
06893     "demobbing", "democracy", "democrats", "demotions", "demurring",
06894     "demystify", "denatured", "denatures", "dendrites", "denigrate",
06895     "denounced", "denounces", "denseness", "densities", "dentistry",
06896     "deodorant", "departing", "departure", "depending", "depicting",
06897     "depiction", "deplaning", "depleting", "depletion", "deploring",
06898     "deploying", "deportees", "deporting", "deposited", "depositor",
06899     "depraving", "depravity", "deprecate", "depressed", "depresses",
06900     "depriving", "deprogram", "derailing", "deranging", "derelicts",
06901     "derivable", "derogated", "derogates", "derringer", "dervishes",
06902     "descaling", "descanted", "descended", "descender", "described",
06903     "describes", "descrying", "desecrate", "deselects", "deserters",
06904     "deserting", "desertion", "deserving", "desiccate", "designate",
06905     "designers", "designing", "desirable", "desirably", "desisting",
06906     "deskilled", "desolated", "desolates", "despaired", "desperado",
06907     "desperate", "despising", "despoiled", "despotism", "destinies",
06908     "destining", "destitute", "destroyed", "destroyer", "destructs",
06909     "desultory", "detaching", "detailing", "detainees", "detaining",
06910     "detecting", "detection", "detective", "detectors", "detention",
06911     "detergent", "determine", "deterrent", "deterring", "detesting",
06912     "dethroned", "dethrones", "detonated", "detonates", "detonator",
06913     "detouring", "detracted", "detractor", "detriment", "deuterium",
06914     "devaluing", "devastate", "developed", "developer", "deviating",
06915     "deviation", "devilment", "devilries", "deviously", "devolving",
06916     "devotedly", "devotions", "devouring", "devoutest", "dexterity",
06917     "dexterous", "diabetics", "diacritic", "diagnosed", "diagnoses",
06918     "diagnosis", "diagonals", "dialectal", "dialectic", "diameters",
06919     "diapering", "diaphragm", "diastolic", "diatribes", "dichotomy",
06920     "dickering", "dickheads", "dickybird", "dictating", "dictation",
06921     "dictators", "didactics", "dieseling", "dietaries", "dietetics",
06922     "dietitian", "different", "differing", "difficult", "diffident",
06923     "diffracts", "diffusely", "diffusing", "diffusion", "digesting",
06924     "digestion", "digestive", "digitalis", "digitally", "dignified",
06925     "dignifies", "dignitary", "dignities", "digressed", "digresses",
06926     "diligence", "dilutions", "dimension", "dimwitted", "dinginess",
06927     "dinnering", "dinosaurs", "diocesans", "diphthong", "diplomacy",
06928     "diplomata", "diplomats", "dipsticks", "directest", "directing",
06929     "direction", "directive", "directors", "directory", "dirigible",
06930     "dirtiness", "disabling", "disabused", "disabuses", "disaffect",
06931     "disagreed", "disagrees", "disallows", "disappear", "disarming",
06932     "disarrays", "disasters", "disavowal", "disavowed", "disbanded",
06933     "disbarred", "disbelief", "disbursed", "disburses", "discarded",
06934     "discerned", "discharge", "disciples", "disclaims", "disclosed",
06935     "discloses", "discomfit", "discorded", "discounts", "discourse",
06936     "discovers", "discovery", "discredit", "discussed", "discusses",
06937     "disdained", "disembark", "disembody", "disengage", "disfigure",
06938     "disgorged", "disgorges", "disgraced", "disgraces", "disguised",
06939     "disguises", "disgusted", "dishcloth", "dishevels", "dishonest",
06940     "dishtowel", "dishwater", "disinfect", "disinters", "disjoints",
06941     "diskettes", "disliking", "dislocate", "dislodged", "dislodges",
06942     "dismalest", "dismantle", "dismaying", "dismember", "dismissal",
06943     "dismissed", "dismisses", "dismounts", "disobeyed", "disoblige",
06944     "disorders", "disorient", "disowning", "disparage", "disparate",
06945     "disparity", "dispelled", "dispensed", "dispenser", "dispenses",
06946     "dispersal", "dispersed", "disperses", "dispirits", "displaced",
06947     "displaces", "displayed", "displease", "disported", "disposals",
06948     "disposing", "disproved", "disproves", "disputant", "disputing",
06949     "disquiets", "disregard", "disrepair", "disrepute", "disrobing",
06950     "disrupted", "dissected", "dissemble", "dissented", "dissenter",
06951     "dissident", "dissipate", "dissolute", "dissolved", "dissolves",
06952     "dissonant", "dissuaded", "dissuades", "distanced", "distances",
06953     "distantly", "distastes", "distemper", "distended", "distilled",
06954     "distiller", "distorted", "distorter", "distracts", "districts",
06955     "distrusts", "disturbed", "disunited", "disunites", "ditherers",
06956     "dithering", "diuretics", "diurnally", "divergent", "diverging",
06957     "diversely", "diversify", "diversion", "diversity", "diverting",
06958     "divesting", "dividends", "divisible", "divisions", "divorcing",
06959     "divulging", "dixieland", "dizziness", "dobermans", "docketing",
06960     "docklands", "dockyards", "doctorate", "doctoring", "doctrinal",
06961     "doctrines", "docudrama", "documents", "doddering", "dogfights",
06962     "dogfishes", "dogfought", "doggonest", "doggoning", "doghouses",
06963     "dogmatics", "dogmatism", "dogmatist", "dolefully", "dollhouse",
06964     "dolloping", "domestics", "domiciled", "domiciles", "dominance",
06965     "dominants", "dominated", "dominates", "domineers", "dominions",
06966     "donations", "doohickey", "doomsayer", "doomsters", "doorbells",
06967     "doorjambs", "doorknobs", "doorposts", "doorsteps", "doorstops",
06968     "dormitory", "dosshouse", "doubloons", "doubtless", "doughiest",
06969     "doughtier", "dovecotes", "dovetails", "dowdiness", "downbeats",
06970     "downfalls", "downgrade", "downhills", "downloads", "downplays",
06971     "downpours", "downright", "downriver", "downscale", "downshift",
06972     "downsized", "downsizes", "downspout", "downstage", "downstate",
06973     "downswing", "downtrend", "downturns", "downwards", "draconian",
06974     "dragonfly", "dragooned", "dragsters", "drainpipe", "dramatics",
06975     "dramatist", "draperies", "drawbacks", "dreamboat", "dreamiest",
06976     "dreamland", "dreamless", "dreamlike", "dreariest", "drenching",
06977     "dressiest", "dressings", "dribblers", "dribbling", "driftnets",
06978     "driftwood", "drinkable", "drinkings", "drippiest", "drippings",
06979     "driveways", "drizzlier", "drizzling", "drollness", "dromedary",
06980     "droopiest", "droppings", "drownings", "drowsiest", "drubbings",
06981     "druggists", "drugstore", "drumbeats", "drumstick", "drunkards",
06982     "drunkenly", "drywalled", "dubiously", "duchesses", "duckbills",
06983     "ducklings", "ductility", "dulcimers", "dumbbells", "dumbfound",
06984     "dumplings", "dungarees", "dungeoned", "duopolies", "duplicate",
06985     "duplicity", "dustcarts", "dustiness", "dustsheet", "dutifully",
06986     "dwellings", "dwindling", "dynamical", "dynamited", "dynamites",
06987     "dynasties", "dysentery", "dyslexics", "dyspepsia", "dyspeptic",
06988     "eagerness", "earliness", "earmarked", "earnestly", "earphones",
06989     "earpieces", "earthiest", "earthlier", "earthling", "earthward",
06990     "earthwork", "earthworm", "eastbound", "easterner", "eastwards",
06991     "easygoing", "eavesdrop", "ebullient", "eccentric", "eclectics",
06992     "eclipsing", "ecologist", "economics", "economies", "economist",
06993     "ecosystem", "ecstasies", "edelweiss", "edibility", "editorial",
06994     "educables", "educating", "education", "educative", "educators",
06995     "effecting", "effective", "effectual", "efficient", "effluents",
06996     "effulgent", "effusions", "eggbeater", "eggplants", "eggshells",
06997     "eglantine", "egomaniac", "egotistic", "egregious", "eiderdown",
06998     "eighteens", "eightieth", "ejaculate", "ejections", "elaborate",
06999     "elbowroom", "elections", "electives", "electoral", "electrics",
07000     "electrify", "electrode", "electrons", "elegantly", "elemental",
07001     "elephants", "elevating", "elevation", "elevators", "elevenses",
07002     "elevenths", "eliciting", "eliminate", "elocution", "elongated",
07003     "elongates", "elopement", "eloquence", "elsewhere", "elucidate",
07004     "elusively", "emaciated", "emaciates", "emanating", "emanation",
07005     "embalmers", "embalming", "embargoed", "embargoes", "embarking",
07006     "embarrass", "embassies", "embattled", "embedding", "embellish",
07007     "embezzled", "embezzler", "embezzles", "embitters", "emblazons",
07008     "embodying", "emboldens", "embolisms", "embossing", "embracing",
07009     "embroider", "embroiled", "embryonic", "emergence", "emergency",
07010     "emigrants", "emigrated", "emigrates", "eminences", "eminently",
07011     "emissions", "emollient", "emolument", "emotional", "emotively",
07012     "emphysema", "empirical", "employees", "employers", "employing",
07013     "emporiums", "empowered", "empresses", "emptiness", "emulating",
07014     "emulation", "emulators", "emulsions", "enactment", "encamping",
07015     "enchanted", "enchanter", "enchilada", "encircled", "encircles",
07016     "enclosing", "enclosure", "encompass", "encounter", "encourage",
07017     "encrusted", "encrypted", "encumbers", "endangers", "endearing",
07018     "endlessly", "endocrine", "endorphin", "endorsers", "endorsing",
07019     "endowment", "endpoints", "endurable", "endurance", "energetic",
07020     "enervated", "enervates", "enfeebled", "enfeebles", "enfolding",
07021     "enforcers", "enforcing", "engenders", "engineers", "engorging",
07022     "engravers", "engraving", "engrossed", "engrosses", "engulfing",
07023     "enhancers", "enhancing", "enigmatic", "enjoining", "enjoyable",
07024     "enjoyably", "enjoyment", "enlargers", "enlarging", "enlighten",
07025     "enlistees", "enlisting", "enlivened", "enmeshing", "ennobling",
07026     "enquirers", "enrapture", "enriching", "enrolling", "ensconced",
07027     "ensconces", "ensembles", "enshrined", "enshrines", "enshrouds",
07028     "enslaving", "ensnaring", "entailing", "entangled", "entangles",
07029     "enteritis", "entertain", "enthroned", "enthrones", "enthusing",
07030     "enticings", "entitling", "entombing", "entourage", "entranced",
07031     "entrances", "entrapped", "entreated", "entrusted", "entryways",
07032     "entwining", "enumerate", "enunciate", "enveloped", "envelopes",
07033     "enviously", "envisaged", "envisages", "envisions", "ephemeral",
07034     "epicurean", "epidemics", "epidermal", "epidermis", "epidurals",
07035     "epigraphs", "epileptic", "epilogued", "epilogues", "episcopal",
07036     "eponymous", "equations", "equerries", "equinoxes", "equipages",
07037     "equipment", "equipoise", "equipping", "equitable", "equitably",
07038     "equivocal", "eradicate", "erections", "erectness", "ergonomic",
07039     "erogenous", "eroticism", "erroneous", "erstwhile", "eruditely",
07040     "erudition", "eruptions", "escalated", "escalates", "escalator",
07041     "escalopes", "escapades", "escapists", "escaroles", "eschewing",
07042     "escorting", "espionage", "esplanade", "espousing", "espressos",
07043     "essayists", "essential", "establish", "esteeming", "estimable",
07044     "estimated", "estimates", "estimator", "estranged", "estranges",
07045     "estuaries", "eternally", "ethically", "ethnicity", "ethnology",
07046     "etiolated", "etiquette", "etymology", "eucalypti", "eulogists",
07047     "euphemism", "evacuated", "evacuates", "evaluated", "evaluates",
07048     "evaporate", "evasively", "eventuate", "everglade", "evergreen",
07049     "everybody", "evictions", "evidenced", "evidences", "evidently",
07050     "evildoers", "evocation", "evocative", "evolution", "exactness",
07051     "examiners", "examining", "exampling", "excavated", "excavates",
07052     "excavator", "exceeding", "excellent", "excelling", "excepting",
07053     "exception", "excerpted", "excessive", "exchanged", "exchanges",
07054     "exchequer", "excisions", "excitable", "excitedly", "exclaimed",
07055     "excluding", "exclusion", "exclusive", "excoriate", "excrement",
07056     "excreting", "excretion", "excretory", "exculpate", "excursion",
07057     "excusable", "execrable", "execrably", "execrated", "execrates",
07058     "executing", "execution", "executive", "executors", "executrix",
07059     "exemplars", "exemplary", "exemplify", "exempting", "exemption",
07060     "exercised", "exercises", "exertions", "exfoliate", "exhausted",
07061     "exhibited", "exhibitor", "exhorting", "existence", "exonerate",
07062     "exorcised", "exorcises", "exorcisms", "exorcists", "exoticism",
07063     "expanding", "expansion", "expansive", "expatiate", "expectant",
07064     "expecting", "expedient", "expedited", "expediter", "expedites",
07065     "expelling", "expending", "expensive", "expertise", "expiating",
07066     "expiation", "explained", "expletive", "explicate", "explicits",
07067     "exploding", "exploited", "exploiter", "explorers", "exploring",
07068     "explosion", "explosive", "exponents", "exporters", "exporting",
07069     "exposures", "expounded", "expressed", "expresses", "expressly",
07070     "expulsion", "expunging", "expurgate", "exquisite", "extempore",
07071     "extending", "extension", "extensive", "extenuate", "exteriors",
07072     "externals", "extincted", "extirpate", "extolling", "extorting",
07073     "extortion", "extracted", "extractor", "extradite", "extremely",
07074     "extremest", "extremism", "extremist", "extremity", "extricate",
07075     "extrinsic", "extrovert", "extruding", "extrusion", "exuberant",
07076     "eyeballed", "eyelashes", "eyeliners", "eyepieces", "eyestrain",
07077     "fabricate", "facecloth", "facetious", "facsimile", "factional",
07078     "factorial", "factories", "factoring", "factotums", "factually",
07079     "faculties", "faddiness", "faintness", "fairyland", "faithfuls",
07080     "faithless", "falconers", "fallacies", "fallowing", "falsehood",
07081     "falseness", "falsettos", "falsified", "falsifies", "falsities",
07082     "faltering", "familiars", "famishing", "fanatical", "fanciable",
07083     "fanciness", "fandangos", "fanlights", "fantasias", "fantasied",
07084     "fantasies", "fantasist", "fantastic", "farewells", "farmhands",
07085     "farmhouse", "farmlands", "farmstead", "farmyards", "farragoes",
07086     "farrowing", "farthings", "fascinate", "fashioned", "fastballs",
07087     "fasteners", "fastening", "fatalists", "fatefully", "fatheaded",
07088     "fathering", "fathoming", "fatiguing", "fattening", "fatuously",
07089     "faultiest", "faultless", "fearfully", "feathered", "featuring",
07090     "fecundity", "federally", "federated", "federates", "feelingly",
07091     "feistiest", "felonious", "feminines", "feminists", "fermented",
07092     "ferocious", "ferreting", "ferryboat", "fertility", "fervently",
07093     "festering", "festivals", "festively", "festivity", "festooned",
07094     "fetishism", "fetishist", "fettering", "feudalism", "fictional",
07095     "fiddliest", "fidgeting", "fiduciary", "fieldsman", "fieldsmen",
07096     "fieldwork", "fieriness", "fifteenth", "fiftieths", "fightback",
07097     "figurines", "filaments", "filigreed", "filigrees", "filleting",
07098     "filliping", "filmmaker", "filmstrip", "filtering", "filthiest",
07099     "filtrated", "filtrates", "finaglers", "finagling", "finalists",
07100     "financial", "financier", "financing", "finessing", "fingering",
07101     "fingertip", "finickier", "finishers", "finishing", "fireballs",
07102     "firebombs", "firebrand", "firebreak", "firebrick", "firefight",
07103     "fireflies", "fireguard", "firehouse", "firelight", "fireplace",
07104     "fireplugs", "firepower", "fireproof", "firesides", "firestorm",
07105     "firetraps", "firewalls", "firewater", "fireworks", "firmament",
07106     "firstborn", "firsthand", "fishbowls", "fishcakes", "fisheries",
07107     "fisherman", "fishermen", "fishhooks", "fishtails", "fishwives",
07108     "fittingly", "fixations", "fixatives", "flabbiest", "flagellum",
07109     "flagpoles", "flagships", "flagstaff", "flagstone", "flakiness",
07110     "flambeing", "flamencos", "flamingos", "flammable", "flapjacks",
07111     "flashback", "flashbulb", "flashcard", "flashguns", "flashiest",
07112     "flatboats", "flatfoots", "flatirons", "flatmates", "flattened",
07113     "flattered", "flatterer", "flatulent", "flaunting", "flautists",
07114     "fleabites", "fledgling", "fleeciest", "fleetness", "fleshiest",
07115     "fleshlier", "fleshpots", "flickered", "flightier", "flimflams",
07116     "flimsiest", "flinching", "flintiest", "flintlock", "flippancy",
07117     "floggings", "floodgate", "flophouse", "floppiest", "flotation",
07118     "flotillas", "flouncing", "flounders", "flouriest", "flowerbed",
07119     "flowerier", "flowering", "flowerpot", "fluctuate", "fluffiest",
07120     "flummoxed", "flummoxes", "fluoresce", "fluorides", "flurrying",
07121     "flustered", "fluttered", "flyleaves", "flypapers", "flysheets",
07122     "flyspecks", "flyweight", "flywheels", "fogginess", "folksiest",
07123     "follicles", "followers", "following", "fomenting", "foodstuff",
07124     "fooleries", "foolhardy", "foolisher", "foolishly", "foolproof",
07125     "footballs", "footfalls", "foothills", "footholds", "footloose",
07126     "footnoted", "footnotes", "footpaths", "footplate", "footprint",
07127     "footrests", "footsteps", "footstool", "forbidden", "forearmed",
07128     "forebears", "foreboded", "forebodes", "forecasts", "foreclose",
07129     "forecourt", "foredooms", "forefront", "foregoing", "forehands",
07130     "foreheads", "foreigner", "forelocks", "foremasts", "forenames",
07131     "forenoons", "forensics", "foresails", "foreshore", "foresight",
07132     "foreskins", "forestall", "foresters", "foresting", "foretaste",
07133     "foretells", "forewarns", "forewoman", "forewomen", "forewords",
07134     "forfeited", "forgather", "forgeries", "forgetful", "forgiving",
07135     "forgotten", "forklifts", "forlorner", "forlornly", "formalism",
07136     "formalist", "formality", "formation", "formative", "formatted",
07137     "formulaic", "formulate", "fornicate", "forsaking", "forswears",
07138     "forsythia", "forthwith", "fortieths", "fortified", "fortifies",
07139     "fortitude", "fortnight", "fortunate", "forwarded", "forwarder",
07140     "fostering", "foundered", "foundling", "foundries", "fountains",
07141     "fourscore", "foursomes", "fourteens", "foxgloves", "foxhounds",
07142     "fractions", "fractious", "fractured", "fractures", "fragility",
07143     "fragments", "fragrance", "frailties", "framework", "franchise",
07144     "frankness", "fraternal", "fraudster", "fraughted", "frazzling",
07145     "freakiest", "freckling", "freebased", "freebases", "freeholds",
07146     "freelance", "freeloads", "freephone", "freestyle", "freewheel",
07147     "freighted", "freighter", "frequency", "frequents", "freshened",
07148     "freshness", "fretfully", "fricassee", "fricative", "frictions",
07149     "frightens", "frightful", "frighting", "frigidity", "frilliest",
07150     "friskiest", "frittered", "frivolity", "frivolous", "frizziest",
07151     "frizzling", "frogmarch", "frogspawn", "frolicked", "frontages",
07152     "frontally", "frontiers", "frostbite", "frostiest", "frothiest",
07153     "frowziest", "frugality", "fruitcake", "fruiterer", "fruitiest",
07154     "fruitless", "frumpiest", "frustrate", "fuckheads", "fugitives",
07155     "fulfilled", "fullbacks", "fulminate", "fulsomely", "fumigated",
07156     "fumigates", "fumigator", "functions", "fungicide", "funicular",
07157     "funniness", "furbished", "furbishes", "furiously", "furloughs",
07158     "furnished", "furnishes", "furniture", "furrowing", "furthered",
07159     "furtively", "fuselages", "fusiliers", "fusillade", "fussiness",
07160     "futurists", "fuzziness", "gabardine", "gadabouts", "gainfully",
07161     "gallantly", "gallantry", "galleried", "galleries", "gallivant",
07162     "galloping", "gallstone", "galoshing", "galumphed", "gamecocks",
07163     "gangplank", "gangrened", "gangrenes", "gangsters", "gaolbirds",
07164     "gaolbreak", "garbanzos", "gardeners", "gardenias", "gardening",
07165     "gargoyles", "garlanded", "garlicked", "garnering", "garnished",
07166     "garnishee", "garnishes", "garrisons", "garroting", "garrulity",
07167     "garrulous", "gasholder", "gaslights", "gasometer", "gastritis",
07168     "gatecrash", "gatehouse", "gateposts", "gatherers", "gathering",
07169     "gaudiness", "gauntlets", "gauntness", "gawkiness", "gazetteer",
07170     "gazetting", "gazillion", "gazumping", "gearboxes", "gearshift",
07171     "gearwheel", "gelignite", "gemstones", "gendarmes", "genealogy",
07172     "generally", "generated", "generates", "generator", "geniality",
07173     "genitalia", "genitives", "genocidal", "genocides", "genteeler",
07174     "genteelly", "gentility", "gentleman", "gentlemen", "genuflect",
07175     "genuinely", "geodesics", "geography", "geologies", "geologist",
07176     "geometric", "geraniums", "geriatric", "germanium", "germicide",
07177     "germinate", "gestating", "gestation", "gesturing", "ghastlier",
07178     "ghostlier", "gibbering", "gibberish", "gibbeting", "giddiness",
07179     "gigabytes", "giggliest", "gimcracks", "gimleting", "gimmickry",
07180     "gingering", "ginormous", "girlhoods", "girlishly", "giveaways",
07181     "glacially", "gladdened", "gladiator", "gladiolas", "gladiolus",
07182     "gladliest", "glamorous", "glandular", "glaringly", "glassfuls",
07183     "glassiest", "glassware", "gleamings", "gleefully", "glimmered",
07184     "glimpsing", "glissandi", "glissando", "glistened", "glittered",
07185     "glitziest", "gloamings", "gloomiest", "glorified", "glorifies",
07186     "glossiest", "glottises", "glowering", "glowingly", "glowworms",
07187     "glutinous", "gnarliest", "goalmouth", "goalposts", "goatherds",
07188     "goatskins", "goddammit", "goddesses", "godfather", "godlessly",
07189     "godliness", "godmother", "godparent", "goldbrick", "goldenest",
07190     "goldenrod", "goldfield", "goldfinch", "goldmines", "goldsmith",
07191     "golliwogs", "gondolier", "goodliest", "goodnight", "goosestep",
07192     "goulashes", "gourmands", "governess", "governing", "governors",
07193     "grabbiest", "graceless", "gradation", "gradients", "gradually",
07194     "graduated", "graduates", "grainiest", "granaries", "grandaddy",
07195     "granddads", "grandiose", "grandness", "grandsons", "granulate",
07196     "grapevine", "graphical", "grappling", "grassiest", "grassland",
07197     "gratified", "gratifies", "gratitude", "graveside", "graveyard",
07198     "gravitate", "graybeard", "greasiest", "greatcoat", "greatness",
07199     "greediest", "greenback", "greengage", "greenhorn", "greenness",
07200     "greetings", "grenadier", "grenadine", "greyhound", "gridirons",
07201     "gridlocks", "grievance", "grillings", "grimacing", "grisliest",
07202     "gristlier", "grittiest", "grizzlier", "grizzlies", "grizzling",
07203     "groceries", "groggiest", "groomsman", "groomsmen", "grooviest",
07204     "grosbeaks", "grossness", "grotesque", "grottiest", "grouchier",
07205     "grouching", "grounders", "groundhog", "grounding", "groundnut",
07206     "groupings", "grubbiest", "grubstake", "grudgings", "gruesomer",
07207     "gruffness", "grumblers", "grumbling", "grumpiest", "grungiest",
07208     "guacamole", "guarantee", "guarantor", "guardedly", "guardians",
07209     "guardrail", "guardroom", "guardsman", "guardsmen", "guerrilla",
07210     "guessable", "guesswork", "guestroom", "guffawing", "guidebook",
07211     "guideline", "guildhall", "guileless", "guillemot", "guiltiest",
07212     "guiltless", "guitarist", "gunfights", "gunfought", "gunnysack",
07213     "gunpowder", "gunrunner", "gunsmiths", "gushingly", "gusseting",
07214     "gustatory", "guttering", "gutturals", "gymkhanas", "gymnasium",
07215     "gymnastic", "gyrations", "gyroscope", "habitable", "habituals",
07216     "habituate", "haciendas", "hackneyed", "hacksawed", "hailstone",
07217     "hailstorm", "hairbands", "hairbrush", "hairdryer", "hairgrips",
07218     "hairiness", "hairlines", "hairpiece", "hairspray", "hairstyle",
07219     "halfbacks", "halfpence", "halfpenny", "halftimes", "halftones",
07220     "halitosis", "hallmarks", "hallowing", "haltering", "haltingly",
07221     "hamburger", "hammering", "hampering", "hamstring", "hamstrung",
07222     "handballs", "handbills", "handbooks", "handbrake", "handcarts",
07223     "handcraft", "handcuffs", "handholds", "handicaps", "handiness",
07224     "handiwork", "handlebar", "handmaids", "handovers", "handpicks",
07225     "handrails", "handshake", "handsomer", "handstand", "hangnails",
07226     "hangovers", "hankering", "haphazard", "happening", "happiness",
07227     "harangued", "harangues", "harassing", "harbinger", "hardbacks",
07228     "hardboard", "hardcover", "hardeners", "hardening", "hardiness",
07229     "hardliner", "hardships", "hardwoods", "harebells", "harlequin",
07230     "harmfully", "harmonica", "harmonics", "harmonies", "harnessed",
07231     "harnesses", "harpooned", "harridans", "harrowing", "harrumphs",
07232     "harshness", "harvested", "harvester", "hastening", "hastiness",
07233     "hatchback", "hatchways", "hatefully", "hatstands", "haughtier",
07234     "haughtily", "haunching", "haversack", "hawthorns", "haymaking",
07235     "haystacks", "hazarding", "hazardous", "hazelnuts", "headaches",
07236     "headbands", "headboard", "headbutts", "headcases", "headcount",
07237     "headdress", "headfirst", "headhunts", "headlamps", "headlands",
07238     "headlight", "headlined", "headliner", "headlines", "headlocks",
07239     "headphone", "headrests", "headscarf", "headships", "headstone",
07240     "headwinds", "headwords", "healthful", "healthier", "healthily",
07241     "hearkened", "heartache", "heartbeat", "heartburn", "heartened",
07242     "heartfelt", "hearthrug", "heartiest", "heartland", "heartless",
07243     "heartsick", "heatproof", "heatwaves", "heaviness", "hectoring",
07244     "hedgehogs", "hedgerows", "hedonists", "heehawing", "hegemonic",
07245     "heightens", "heinously", "heiresses", "heirlooms", "heliports",
07246     "hellebore", "hellholes", "hellishly", "helmeting", "helpfully",
07247     "helplines", "helpmates", "hemstitch", "henpecked", "hepatitis",
07248     "heptagons", "heralding", "herbalist", "herbicide", "herbivore",
07249     "herculean", "hereabout", "hereafter", "heretical", "heritages",
07250     "hermetics", "hermitage", "hesitancy", "hesitated", "hesitates",
07251     "heterodox", "heuristic", "hexagonal", "hexameter", "hibernate",
07252     "hickories", "hideaways", "hidebound", "hideously", "hierarchy",
07253     "highballs", "highbrows", "highchair", "highlands", "highlight",
07254     "hightails", "hijackers", "hijacking", "hilarious", "hillbilly",
07255     "hillsides", "hindering", "hindrance", "hindsight", "hirelings",
07256     "histamine", "histogram", "historian", "histories", "hitchhike",
07257     "hoardings", "hoarfrost", "hoariness", "hobbyists", "hobgoblin",
07258     "hobnailed", "hobnobbed", "hockshops", "hogsheads", "holdovers",
07259     "holidayed", "hollering", "hollowest", "hollowing", "hollyhock",
07260     "holocaust", "holograms", "holograph", "holstered", "homegrown",
07261     "homelands", "homeliest", "homemaker", "homeowner", "homepages",
07262     "homerooms", "homestead", "hometowns", "homeyness", "homicidal",
07263     "homicides", "homograph", "homophone", "honestest", "honeybees",
07264     "honeycomb", "honeydews", "honeymoon", "honeypots", "honorific",
07265     "hoodooing", "hoodwinks", "hookworms", "hooligans", "hooraying",
07266     "hoovering", "hopefully", "hopscotch", "hornpipes", "horoscope",
07267     "horribles", "horrified", "horrifies", "horseback", "horsehair",
07268     "horsehide", "horseplay", "horseshit", "horseshoe", "horsetail",
07269     "horsewhip", "hosepipes", "hospitals", "hostelers", "hosteling",
07270     "hostessed", "hostesses", "hostilely", "hostility", "hoteliers",
07271     "hotfooted", "hotheaded", "hothoused", "hothouses", "hotplates",
07272     "hourglass", "houseboat", "houseboys", "housecoat", "household",
07273     "housemaid", "housemate", "houseroom", "housetops", "housewife",
07274     "housework", "howitzers", "howsoever", "hucksters", "humanists",
07275     "humankind", "humanness", "humanoids", "humblings", "humbugged",
07276     "humdinger", "humiliate", "hummocked", "humongous", "humorists",
07277     "humpbacks", "hunchback", "hundredth", "hungering", "hungriest",
07278     "hunkering", "hurricane", "hurriedly", "hurtfully", "husbanded",
07279     "husbandry", "huskiness", "hyacinths", "hydrangea", "hydrating",
07280     "hydration", "hydraulic", "hydrofoil", "hydrology", "hygienics",
07281     "hygienist", "hyperbola", "hyperbole", "hyperlink", "hypertext",
07282     "hyphenate", "hyphening", "hypnotics", "hypnotism", "hypnotist",
07283     "hypocrisy", "hypocrite", "hysterics", "ibuprofen", "idealists",
07284     "identical", "identikit", "ideograms", "ideograph", "ideologue",
07285     "idiomatic", "idolaters", "ignitions", "ignoramus", "ignorance",
07286     "ignorants", "illegally", "illegible", "illegibly", "illiberal",
07287     "illicitly", "illnesses", "illogical", "illumined", "illumines",
07288     "illusions", "imaginary", "imagining", "imbalance", "imbeciles",
07289     "imbecilic", "imbroglio", "imitating", "imitation", "imitative",
07290     "imitators", "immanence", "immatures", "immediacy", "immediate",
07291     "immensely", "immensest", "immensity", "immersing", "immersion",
07292     "immigrant", "immigrate", "imminence", "immodesty", "immolated",
07293     "immolates", "immorally", "immortals", "immovable", "immovably",
07294     "immutable", "immutably", "impacting", "impairing", "impartial",
07295     "imparting", "impassive", "impatient", "impeached", "impeaches",
07296     "impedance", "impelling", "impending", "imperfect", "imperials",
07297     "imperious", "impetuous", "impetuses", "impieties", "impinging",
07298     "impiously", "implanted", "implement", "implicate", "imploding",
07299     "imploring", "implosion", "impolitic", "important", "importers",
07300     "importing", "importune", "impostors", "imposture", "impotence",
07301     "impounded", "imprecise", "impressed", "impresses", "imprinted",
07302     "imprisons", "impromptu", "improving", "improvise", "imprudent",
07303     "impudence", "impugning", "impulsing", "impulsion", "impulsive",
07304     "inability", "inamorata", "inanimate", "inanities", "inaudible",
07305     "inaudibly", "inaugural", "inbounded", "incapable", "incarnate",
07306     "incensing", "incentive", "inception", "incessant", "inchoated",
07307     "inchoates", "incidence", "incidents", "incipient", "incisions",
07308     "inclement", "inclining", "including", "inclusion", "inclusive",
07309     "incognito", "incorrect", "increased", "increases", "increment",
07310     "incubated", "incubates", "incubator", "incubuses", "inculcate",
07311     "inculpate", "incumbent", "incurable", "incurably", "incurious",
07312     "incurring", "incursion", "indecency", "indelible", "indelibly",
07313     "indemnify", "indemnity", "indenting", "indenture", "indicated",
07314     "indicates", "indicator", "indicting", "indigence", "indigents",
07315     "indignant", "indignity", "indolence", "inductees", "inducting",
07316     "induction", "inductive", "indulgent", "indulging", "inebriate",
07317     "ineffable", "ineffably", "inelastic", "inelegant", "ineptness",
07318     "inertness", "inexperts", "infantile", "infatuate", "infecting",
07319     "infection", "inference", "inferiors", "inferring", "infertile",
07320     "infesting", "infielder", "infilling", "infirmary", "infirmity",
07321     "inflaming", "inflating", "inflation", "inflected", "inflexion",
07322     "inflicted", "influence", "influenza", "informant", "informers",
07323     "informing", "infringed", "infringes", "infuriate", "infusions",
07324     "ingenious", "ingenuity", "ingenuous", "ingesting", "ingestion",
07325     "inglenook", "ingrained", "ingresses", "ingrowing", "inhabited",
07326     "inhalants", "inhalator", "inherited", "inheritor", "inhibited",
07327     "inhumanly", "initially", "initiated", "initiates", "initiator",
07328     "injecting", "injection", "injectors", "injurious", "injustice",
07329     "inkstands", "innermost", "innkeeper", "innocence", "innocents",
07330     "innocuous", "innovated", "innovates", "innovator", "innuendos",
07331     "inoculate", "inorganic", "inpatient", "inputting", "inquirers",
07332     "inquorate", "inscribed", "inscribes", "insensate", "inserting",
07333     "insertion", "insetting", "insidious", "insignias", "insincere",
07334     "insinuate", "insipidly", "insistent", "insisting", "insolence",
07335     "insoluble", "insolvent", "insomniac", "inspected", "inspector",
07336     "inspiring", "installed", "instanced", "instances", "instantly",
07337     "instigate", "instilled", "instincts", "institute", "instructs",
07338     "insulated", "insulates", "insulator", "insulting", "insurance",
07339     "insurgent", "intaglios", "integrals", "integrate", "integrity",
07340     "intellect", "intendeds", "intending", "intensely", "intensest",
07341     "intensify", "intensity", "intensive", "intention", "interacts",
07342     "interbred", "intercede", "intercept", "intercity", "intercoms",
07343     "interdict", "interests", "interface", "interfere", "interiors",
07344     "interject", "interlace", "interlard", "interlink", "interlock",
07345     "interlude", "interment", "internals", "internees", "interning",
07346     "internist", "interplay", "interpose", "interpret", "interring",
07347     "interrupt", "intersect", "intervals", "intervene", "interview",
07348     "interwove", "intestate", "intestine", "intimated", "intimates",
07349     "intranets", "intricacy", "intricate", "intrigued", "intrigues",
07350     "intrinsic", "introduce", "introvert", "intruders", "intruding",
07351     "intrusion", "intrusive", "intuiting", "intuition", "intuitive",
07352     "inundated", "inundates", "invalided", "invariant", "invasions",
07353     "invective", "inveighed", "inveigled", "inveigles", "inventing",
07354     "invention", "inventive", "inventors", "inventory", "inversely",
07355     "inversion", "inverting", "investing", "investors", "invidious",
07356     "inviolate", "invisible", "invisibly", "invoicing", "involving",
07357     "irascible", "irascibly", "irateness", "ironclads", "ironstone",
07358     "irradiate", "irregular", "irrigated", "irrigates", "irritable",
07359     "irritably", "irritants", "irritated", "irritates", "irruption",
07360     "isinglass", "islanders", "isolating", "isolation", "isometric",
07361     "isosceles", "isotherms", "isotropic", "isthmuses", "itchiness",
07362     "iterating", "iteration", "iterative", "iterators", "itinerant",
07363     "itinerary", "jabberers", "jabbering", "jackasses", "jackboots",
07364     "jackknife", "jaggedest", "jailbirds", "jailbreak", "jailhouse",
07365     "jalousies", "jamborees", "japanning", "jaundiced", "jaundices",
07366     "jauntiest", "jawboning", "jaywalked", "jaywalker", "jealously",
07367     "jeeringly", "jellybean", "jellyfish", "jeremiads", "jerkiness",
07368     "jerkwater", "jeroboams", "jerrycans", "jetliners", "jettisons",
07369     "jewelries", "jiggering", "jigsawing", "jingoists", "jitterbug",
07370     "jitterier", "jobshares", "jobsworth", "jockeying", "jockstrap",
07371     "jocularly", "jocundity", "jolliness", "journeyed", "joviality",
07372     "joyfuller", "joylessly", "joyridden", "joyriders", "joyriding",
07373     "joysticks", "juddering", "judgeship", "judiciary", "judicious",
07374     "juiciness", "jukeboxes", "julienned", "juliennes", "jumpiness",
07375     "jumpsuits", "junctions", "junctures", "junketing", "junkyards",
07376     "juridical", "jurywoman", "jurywomen", "justified", "justifies",
07377     "juveniles", "juxtapose", "kamikazes", "kangaroos", "keelhauls",
07378     "keepsakes", "kerchiefs", "kerfuffle", "keyboards", "keynoting",
07379     "keystones", "keystroke", "kibbutzes", "kibbutzim", "kibitzers",
07380     "kibitzing", "kickbacks", "kickstand", "kidnapped", "kidnapper",
07381     "kielbasas", "killdeers", "kilobytes", "kilocycle", "kilohertz",
07382     "kilowatts", "kindliest", "kinematic", "kingliest", "kingmaker",
07383     "kinswoman", "kinswomen", "kippering", "kissogram", "kitchened",
07384     "kittenish", "klutziest", "knackered", "knapsacks", "knighting",
07385     "knobbiest", "knockdown", "knockoffs", "knockouts", "knotholes",
07386     "knottiest", "knowinger", "knowingly", "knowledge", "knuckling",
07387     "kookiness", "koshering", "kowtowing", "kvetching", "laborious",
07388     "laburnums", "labyrinth", "lacerated", "lacerates", "lachrymal",
07389     "lacquered", "lactating", "lactation", "laddering", "ladybirds",
07390     "ladyships", "lagniappe", "lambasted", "lambastes", "lambskins",
07391     "lambswool", "lamebrain", "lamenting", "laminated", "laminates",
07392     "lampblack", "lamplight", "lampooned", "lampposts", "lampshade",
07393     "landfalls", "landfills", "landlords", "landmarks", "landmines",
07394     "landowner", "landscape", "landslide", "landslips", "landwards",
07395     "languages", "languidly", "lankiness", "larboards", "larcenies",
07396     "larcenous", "largeness", "lariating", "larkspurs", "lassitude",
07397     "lastingly", "latchkeys", "latecomer", "lateraled", "laterally",
07398     "lathering", "latitudes", "laudatory", "laughable", "laughably",
07399     "launchers", "launching", "laundered", "launderer", "laundress",
07400     "laundries", "laureated", "laureates", "lavenders", "lavishest",
07401     "lavishing", "lawgivers", "lawlessly", "lawmakers", "lawnmower",
07402     "laxatives", "layabouts", "laypeople", "layperson", "lazybones",
07403     "leafleted", "leapfrogs", "leaseback", "leasehold", "leastwise",
07404     "leavening", "lecherous", "lecturers", "lecturing", "ledgering",
07405     "leftovers", "leftwards", "legalisms", "legations", "legendary",
07406     "legionary", "legislate", "legwarmer", "leisurely", "leitmotif",
07407     "leitmotiv", "lemonades", "lengthens", "lengthier", "lengthily",
07408     "leniently", "lessening", "lethargic", "letterbox", "lettering",
07409     "leucotomy", "leukocyte", "levelness", "leveraged", "leverages",
07410     "leviathan", "levitated", "levitates", "liability", "libations",
07411     "liberally", "liberated", "liberates", "liberator", "liberties",
07412     "libertine", "librarian", "libraries", "librettos", "licensees",
07413     "licorices", "lifebelts", "lifeblood", "lifeboats", "lifeforms",
07414     "lifeguard", "lifelines", "lifesaver", "lifespans", "lifestyle",
07415     "lifetimes", "lifeworks", "ligaments", "ligatured", "ligatures",
07416     "lightened", "lightness", "lightning", "lightship", "likeliest",
07417     "limberest", "limbering", "limelight", "limericks", "limescale",
07418     "limestone", "limitings", "limitless", "limousine", "limpidity",
07419     "linchpins", "lineament", "linearity", "lingerers", "lingering",
07420     "linguists", "liniments", "lionesses", "lipsticks", "liquefied",
07421     "liquefies", "liqueured", "liquidate", "liquidity", "liquorice",
07422     "liquoring", "listeners", "listening", "literally", "literates",
07423     "litigants", "litigated", "litigates", "litigator", "litigious",
07424     "litterbug", "littering", "littorals", "liturgies", "liveliest",
07425     "livelongs", "livestock", "loanwords", "loathings", "loathsome",
07426     "lobbyists", "lobstered", "locations", "locksmith", "locoweeds",
07427     "locutions", "lodestars", "lodestone", "loftiness", "logarithm",
07428     "logically", "logicians", "logistics", "logotypes", "loincloth",
07429     "loiterers", "loitering", "lollipops", "lolloping", "loneliest",
07430     "lonesomes", "longboats", "longevity", "longhairs", "longhorns",
07431     "longhouse", "longingly", "longitude", "longueurs", "lookalike",
07432     "loopholes", "looseness", "loosening", "loquacity", "lordliest",
07433     "lordships", "lorgnette", "lotteries", "loudliest", "loudmouth",
07434     "lousiness", "lovebirds", "loveliest", "lowercase", "lowlander",
07435     "lowliness", "loyalists", "loyalties", "lubricant", "lubricate",
07436     "lucidness", "luckiness", "lucrative", "ludicrous", "lullabies",
07437     "lumbering", "lumberman", "lumbermen", "lumpiness", "luncheons",
07438     "lunchroom", "lunchtime", "luridness", "lustfully", "lustiness",
07439     "luxuriant", "luxuriate", "luxurious", "lychgates", "lymphatic",
07440     "lymphomas", "lynchings", "lyrebirds", "lyrically", "lyricists",
07441     "macadamia", "macaroons", "macerated", "macerates", "machinery",
07442     "machining", "machinist", "mackerels", "mackinaws", "macrocosm",
07443     "maddening", "madhouses", "madrigals", "maelstrom", "magazines",
07444     "magically", "magicians", "magicking", "magnesium", "magnetics",
07445     "magnetism", "magnified", "magnifier", "magnifies", "magnitude",
07446     "magnolias", "maharajah", "maharanis", "maharishi", "mailboxes",
07447     "mailshots", "mainframe", "mainlands", "mainlined", "mainlines",
07448     "mainmasts", "mainsails", "mainstays", "maintains", "majesties",
07449     "majordomo", "majorette", "makeovers", "makeshift", "malachite",
07450     "maladroit", "malformed", "malicious", "malignant", "maligning",
07451     "malignity", "malingers", "malleable", "maltreats", "mammalian",
07452     "mammogram", "manacling", "mandarins", "mandating", "mandatory",
07453     "mandibles", "mandolins", "mandrakes", "mandrills", "manganese",
07454     "mangetout", "mangroves", "manhandle", "manically", "manicured",
07455     "manicures", "manifesto", "manifests", "manifolds", "manliness",
07456     "mannequin", "mannerism", "mannishly", "mantillas", "marathons",
07457     "marauders", "marauding", "margarine", "margarita", "marginals",
07458     "mariachis", "marigolds", "marijuana", "marinaded", "marinades",
07459     "marinated", "marinates", "markdowns", "marketeer", "marketers",
07460     "marketing", "marmalade", "marmosets", "marooning", "marquetry",
07461     "marquises", "marriages", "marrowing", "marshaled", "marshiest",
07462     "marshland", "marsupial", "martinets", "martyrdom", "martyring",
07463     "mascaraed", "masculine", "masochism", "masochist", "massacred",
07464     "massacres", "massaging", "masseuses", "massively", "masterful",
07465     "mastering", "mastheads", "masticate", "mastodons", "matchbook",
07466     "matchless", "matchwood", "materials", "maternity", "matriarch",
07467     "matricide", "matrimony", "mattering", "maundered", "mausoleum",
07468     "mavericks", "mawkishly", "maxillary", "maximally", "mayflower",
07469     "mayoralty", "mealtimes", "meandered", "meanwhile", "measliest",
07470     "measuring", "meatballs", "mechanics", "mechanism", "medallion",
07471     "mediating", "mediation", "mediators", "medically", "medicated",
07472     "medicates", "medicinal", "medicines", "meditated", "meditates",
07473     "megabucks", "megabytes", "megacycle", "megahertz", "megaliths",
07474     "megaphone", "megastars", "megawatts", "melanomas", "mellowest",
07475     "mellowing", "melodious", "melodrama", "meltdowns", "membranes",
07476     "memorable", "memorably", "memorials", "memsahibs", "menagerie",
07477     "mendacity", "mendicant", "menopause", "menstrual", "mentality",
07478     "mentioned", "mentoring", "mercenary", "merchants", "merciless",
07479     "mercurial", "merganser", "meridians", "meringues", "merriment",
07480     "merriness", "mescaline", "mesmerism", "mesquites", "messaging",
07481     "messenger", "messianic", "messieurs", "messiness", "metabolic",
07482     "metacarpi", "metalwork", "metaphors", "meteorite", "meteoroid",
07483     "methadone", "methought", "metronome", "mezzanine", "microchip",
07484     "microcode", "microcosm", "microfilm", "microwave", "middleman",
07485     "middlemen", "midpoints", "midstream", "midsummer", "midwifery",
07486     "midwifing", "midwinter", "mightiest", "migraines", "migrating",
07487     "migration", "migratory", "mildewing", "mileposts", "milestone",
07488     "militancy", "militants", "militated", "militates", "milkiness",
07489     "milkmaids", "milkshake", "milkweeds", "millibars", "milliners",
07490     "millinery", "millionth", "millipede", "millponds", "millraces",
07491     "millstone", "milometer", "mimicking", "mimicries", "mincemeat",
07492     "mindfully", "minefield", "miniature", "minibikes", "minibuses",
07493     "minimally", "miniskirt", "ministers", "minstrels", "minuscule",
07494     "minuteman", "minutemen", "mirroring", "mirthless", "misbehave",
07495     "miscalled", "mischance", "mischiefs", "miscounts", "miscreant",
07496     "misdirect", "misdoings", "miserable", "miserably", "misfiring",
07497     "misfitted", "misgiving", "misgovern", "misguided", "misguides",
07498     "mishandle", "mishapped", "misinform", "misjudged", "misjudges",
07499     "mislaying", "mismanage", "misnaming", "misnomers", "misplaced",
07500     "misplaces", "misplayed", "misprints", "misquoted", "misquotes",
07501     "misreport", "misruling", "misshapen", "missilery", "missioned",
07502     "misspells", "misspends", "misstated", "misstates", "mistaking",
07503     "mistiming", "mistiness", "mistletoe", "mistreats", "mistrials",
07504     "mistrusts", "mistyping", "mitigated", "mitigates", "mnemonics",
07505     "moccasins", "mockeries", "mockingly", "moderated", "moderates",
07506     "moderator", "modernest", "modernism", "modernist", "modernity",
07507     "modestest", "modifiers", "modifying", "modulated", "modulates",
07508     "modulator", "moistened", "moistness", "moldering", "moldiness",
07509     "molecular", "molecules", "molehills", "molesters", "molesting",
07510     "mollified", "mollifies", "momentary", "momentous", "monarchic",
07511     "monastery", "monastics", "moneybags", "mongering", "mongolism",
07512     "mongooses", "monitored", "monkeying", "monograms", "monograph",
07513     "monoliths", "monologue", "monomania", "monoplane", "monorails",
07514     "monotoned", "monotones", "monotonic", "monoxides", "monsignor",
07515     "monstrous", "monthlies", "monuments", "moodiness", "moonbeams",
07516     "moonlight", "moonscape", "moonshine", "moonshots", "moonstone",
07517     "moorlands", "moralists", "moralling", "morbidity", "mordantly",
07518     "morphemed", "morphemes", "mortality", "mortaring", "mortgaged",
07519     "mortgagee", "mortgages", "mortgagor", "mortician", "mortified",
07520     "mortifies", "mortising", "mothballs", "mothering", "motioning",
07521     "motivated", "motivates", "motivator", "motocross", "motorbike",
07522     "motorboat", "motorcade", "motorcars", "motorists", "motorways",
07523     "mouldered", "mountains", "mountings", "mousetrap", "mousiness",
07524     "moussakas", "mouthfuls", "mouthwash", "movements", "moviegoer",
07525     "muckraked", "muckraker", "muckrakes", "muddiness", "mudguards",
07526     "mudslides", "mugginess", "mulattoes", "muleteers", "mullioned",
07527     "multiples", "multiplex", "multitude", "mummified", "mummifies",
07528     "mundanely", "municipal", "munitions", "muralists", "murderers",
07529     "murderess", "murdering", "murderous", "murkiness", "murmuring",
07530     "muscatels", "muscleman", "musclemen", "mushiness", "mushrooms",
07531     "musicales", "musically", "musicians", "musicking", "musketeer",
07532     "muskiness", "muskmelon", "mustering", "mustiness", "mutations",
07533     "mutilated", "mutilates", "mutineers", "mutinying", "muttering",
07534     "mutuality", "muzziness", "mysteried", "mysteries", "mysticism",
07535     "mystified", "mystifies", "mythology", "nailbrush", "nakedness",
07536     "nameplate", "namesakes", "napalming", "narcissus", "narcotics",
07537     "narrating", "narration", "narrative", "narrators", "narrowest",
07538     "narrowing", "nastiness", "nationals", "nattering", "naturally",
07539     "naturists", "naughtier", "naughties", "naughtily", "nauseated",
07540     "nauseates", "navigable", "navigated", "navigates", "navigator",
07541     "naysayers", "nearliest", "neatening", "necessary", "necessity",
07542     "neckbands", "necklaced", "necklaces", "necklines", "nectarine",
07543     "neediness", "nefarious", "negations", "negatived", "negatives",
07544     "neglected", "negligees", "negligent", "negotiate", "nematodes",
07545     "neodymium", "neolithic", "neologism", "neophytes", "nephritis",
07546     "neptunium", "nerveless", "nervously", "nestlings", "networked",
07547     "neuralgia", "neuralgic", "neurology", "neurotics", "neutering",
07548     "neutrally", "neutrinos", "nevermore", "newcomers", "newlyweds",
07549     "newsagent", "newscasts", "newsflash", "newsgroup", "newshound",
07550     "newspaper", "newsprint", "newsreels", "newsrooms", "newsstand",
07551     "nicknamed", "nicknames", "niggarded", "niggardly", "nigglings",
07552     "nightcaps", "nightclub", "nightfall", "nightgown", "nighthawk",
07553     "nightlife", "nightlong", "nightmare", "nightspot", "nighttime",
07554     "nightwear", "nihilists", "nineteens", "ninetieth", "nippering",
07555     "nitpicked", "nitpicker", "nitrating", "nobleness", "nocturnal",
07556     "nocturnes", "noiseless", "noisiness", "nominally", "nominated",
07557     "nominates", "nonentity", "nonevents", "nonexempt", "nonliving",
07558     "nonmember", "nonpareil", "nonpluses", "nonprofit", "nonsexist",
07559     "nonsmoker", "nonverbal", "nonvoting", "nonwhites", "normality",
07560     "normative", "northeast", "northerly", "northward", "northwest",
07561     "nosebleed", "nosedived", "nosedives", "nostalgia", "nostalgic",
07562     "notations", "notebooks", "notepaper", "notifying", "notoriety",
07563     "notorious", "nourished", "nourishes", "novelette", "novelists",
07564     "novelties", "novitiate", "nuisances", "nullified", "nullifies",
07565     "numbering", "numerated", "numerates", "numerator", "numerical",
07566     "numskulls", "nunneries", "nursemaid", "nurseries", "nurturing",
07567     "nuthouses", "nutmegged", "nutrients", "nutriment", "nutrition",
07568     "nutritive", "nutshells", "nuttiness", "oarswoman", "oarswomen",
07569     "obdurated", "obdurates", "obedience", "obeisance", "obfuscate",
07570     "objecting", "objection", "objective", "objectors", "oblations",
07571     "obligated", "obligates", "obliquely", "oblivious", "obnoxious",
07572     "obscenely", "obscenest", "obscenity", "obscurely", "obscurest",
07573     "obscuring", "obscurity", "obsequies", "observant", "observers",
07574     "observing", "obsessing", "obsession", "obsessive", "obsoleted",
07575     "obsoletes", "obstacles", "obstetric", "obstinacy", "obstinate",
07576     "obstructs", "obtaining", "obtruding", "obtrusive", "obviating",
07577     "obviously", "occasions", "occluding", "occlusion", "occultist",
07578     "occupancy", "occupants", "occupiers", "occupying", "occurring",
07579     "octagonal", "octopuses", "odometers", "offenders", "offending",
07580     "offerings", "offertory", "officials", "officiate", "officious",
07581     "offloaded", "offshoots", "offspring", "offstages", "oilcloths",
07582     "oilfields", "ointments", "oleanders", "olfactory", "oligarchs",
07583     "oligarchy", "ombudsman", "ombudsmen", "ominously", "omissions",
07584     "omnibuses", "omnivores", "onionskin", "onlookers", "onrushing",
07585     "onsetting", "onslaught", "operatics", "operating", "operation",
07586     "operative", "operators", "operettas", "opponents", "opportune",
07587     "opposites", "oppressed", "oppresses", "oppressor", "optically",
07588     "opticians", "optimists", "optionals", "optioning", "optometry",
07589     "orangeade", "orangutan", "oratories", "oratorios", "orchestra",
07590     "ordaining", "orderings", "orderlies", "ordinance", "organelle",
07591     "organisms", "organists", "orgiastic", "orientals", "orientate",
07592     "orienting", "originals", "originate", "ornaments", "orneriest",
07593     "orphanage", "orphaning", "orthodoxy", "oscillate", "ossifying",
07594     "osteopath", "ostracism", "ostriches", "otherness", "otherwise",
07595     "ourselves", "outbounds", "outbreaks", "outbroken", "outbursts",
07596     "outermost", "outerwear", "outfacing", "outfields", "outfitted",
07597     "outfitter", "outflanks", "outfoxing", "outgoings", "outgrowth",
07598     "outgunned", "outhouses", "outlasted", "outlawing", "outlaying",
07599     "outlining", "outliving", "outlooked", "outnumber", "outpacing",
07600     "outplayed", "outpoints", "outputted", "outraging", "outranked",
07601     "outriders", "outrigger", "outshines", "outsiders", "outskirts",
07602     "outsmarts", "outsource", "outspoken", "outspread", "outstayed",
07603     "outstrips", "outvoting", "outwardly", "outweighs", "outwitted",
07604     "outworker", "ovenproof", "overacted", "overawing", "overbears",
07605     "overbites", "overblown", "overboard", "overbooks", "overborne",
07606     "overcasts", "overcoats", "overcomes", "overcooks", "overcrowd",
07607     "overdoing", "overdosed", "overdoses", "overdraft", "overdrawn",
07608     "overdraws", "overdress", "overdrive", "overeager", "overeaten",
07609     "overflies", "overflown", "overflows", "overgrown", "overgrows",
07610     "overhands", "overhangs", "overhauls", "overheads", "overheard",
07611     "overhears", "overheats", "overjoyed", "overkills", "overladen",
07612     "overlands", "overloads", "overlooks", "overlords", "overlying",
07613     "overnight", "overplays", "overpower", "overprice", "overprint",
07614     "overrated", "overrates", "overreach", "overreact", "overrides",
07615     "overruled", "overrules", "overseers", "oversells", "oversexed",
07616     "overshoes", "overshoot", "oversight", "oversizes", "oversleep",
07617     "overslept", "overspend", "overspent", "overspill", "overstate",
07618     "overstays", "oversteps", "overstock", "overtaken", "overtakes",
07619     "overtaxed", "overtaxes", "overthrew", "overthrow", "overtimes",
07620     "overtired", "overtires", "overtones", "overtures", "overturns",
07621     "overusing", "overvalue", "overviews", "overwhelm", "overworks",
07622     "overwrite", "overwrote", "oviparous", "ovulating", "ovulation",
07623     "ownership", "oxidation", "oxygenate", "pacemaker", "pachyderm",
07624     "pacifiers", "pacifists", "pacifying", "packaging", "paddocked",
07625     "padlocked", "paederast", "pageantry", "paginated", "paginates",
07626     "painfully", "paintball", "painterly", "paintings", "paintwork",
07627     "palatable", "palavered", "palefaces", "palisades", "palladium",
07628     "palliated", "palliates", "palmettos", "palmistry", "palominos",
07629     "palpating", "palpation", "palpitate", "paltriest", "pampering",
07630     "pamphlets", "panatella", "pancaking", "pandemics", "panderers",
07631     "pandering", "panegyric", "panelists", "panellist", "panhandle",
07632     "panickier", "panicking", "panoplies", "panoramas", "panoramic",
07633     "pantheism", "pantheist", "pantheons", "pantomime", "pantsuits",
07634     "pantyhose", "paparazzi", "paparazzo", "paperback", "paperbark",
07635     "paperboys", "paperclip", "papergirl", "paperless", "paperwork",
07636     "parabling", "parabolas", "parabolic", "parachute", "paradigms",
07637     "paradises", "paradoxes", "paragraph", "parakeets", "paralegal",
07638     "parallels", "paralysis", "paralytic", "paramecia", "paramedic",
07639     "parameter", "paramount", "paramours", "paranoiac", "paranoids",
07640     "parasites", "parasitic", "paratroop", "parboiled", "parchment",
07641     "pardoning", "parentage", "parenting", "parlaying", "parleying",
07642     "parochial", "parodists", "parodying", "paroxysms", "parqueted",
07643     "parquetry", "parricide", "parroting", "parsimony", "parsonage",
07644     "partakers", "partaking", "parterres", "partially", "particles",
07645     "partisans", "partition", "partitive", "partnered", "partridge",
07646     "passbooks", "passenger", "passersby", "passioned", "passively",
07647     "passivise", "passivity", "passivize", "passports", "passwords",
07648     "pastiches", "pastilles", "pastorals", "pastorate", "pasturage",
07649     "pasturing", "patchiest", "patchouli", "patchwork", "patenting",
07650     "paternity", "pathogens", "pathology", "patienter", "patiently",
07651     "patriarch", "patrician", "patricide", "patrimony", "patriotic",
07652     "patrolled", "patrolman", "patrolmen", "patronage", "patroness",
07653     "pattering", "patterned", "paunchier", "paunching", "pauperism",
07654     "pavements", "pavilions", "pawnshops", "paychecks", "paymaster",
07655     "payphones", "peaceable", "peaceably", "peacetime", "pearliest",
07656     "peasantry", "pebbliest", "peccaries", "pectorals", "pecuniary",
07657     "pedagogic", "pedagogue", "pederasts", "pederasty", "pedestals",
07658     "pedicured", "pedicures", "pedigreed", "pedigrees", "pediments",
07659     "pedometer", "peepholes", "peepshows", "peeresses", "peevishly",
07660     "pekineses", "pekingese", "pelleting", "penalties", "penancing",
07661     "penchants", "pendulous", "pendulums", "penetrate", "penfriend",
07662     "peninsula", "penitence", "penitents", "penknives", "penlights",
07663     "penniless", "pensioned", "pensioner", "pensively", "pentagons",
07664     "penthouse", "penumbras", "penurious", "peppering", "pepperoni",
07665     "perceived", "perceives", "perchance", "percolate", "perdition",
07666     "peregrine", "perennial", "perfected", "perfecter", "perfectly",
07667     "perfidies", "perforate", "performed", "performer", "perfumery",
07668     "perfuming", "perhapses", "perihelia", "perimeter", "perinatal",
07669     "periphery", "periscope", "perishers", "perishing", "perjurers",
07670     "perjuries", "perjuring", "perkiness", "permanent", "permeable",
07671     "permeated", "permeates", "permitted", "permuting", "peroxided",
07672     "peroxides", "perpetual", "perplexed", "perplexes", "persecute",
07673     "persevere", "persimmon", "persisted", "personage", "personals",
07674     "personify", "personnel", "perspired", "perspires", "persuaded",
07675     "persuades", "pertained", "pertinent", "perturbed", "pertussis",
07676     "pervading", "pervasive", "perverted", "pessaries", "pessimism",
07677     "pessimist", "pestering", "pesticide", "pestilent", "petitions",
07678     "petrified", "petrifies", "petroleum", "petrology", "petticoat",
07679     "pettifogs", "pettiness", "petulance", "phagocyte", "phalanges",
07680     "phalanxes", "phantasms", "pharynges", "pheasants", "phenomena",
07681     "phenotype", "pheromone", "phialling", "philander", "philately",
07682     "philippic", "philology", "phlebitis", "phoenixes", "phonecard",
07683     "phonemics", "phonetics", "phoniness", "phonology", "phosphate",
07684     "phosphors", "photocell", "photocopy", "photostat", "phrasings",
07685     "physicals", "physician", "physicist", "physicked", "physiques",
07686     "pickaxing", "pickerels", "picketers", "picketing", "picnicked",
07687     "picnicker", "pictorial", "picturing", "piecemeal", "piecework",
07688     "piercings", "pigeoning", "piggeries", "piggyback", "pigheaded",
07689     "pigmented", "pilasters", "pilchards", "pilferers", "pilfering",
07690     "pillaging", "pillboxes", "pillioned", "pilloried", "pillories",
07691     "pillowing", "pimientos", "pimpernel", "pimpliest", "pinafores",
07692     "pineapple", "pinewoods", "pinioning", "pinnacles", "pinpoints",
07693     "pinpricks", "pinstripe", "pinwheels", "pioneered", "piousness",
07694     "pipelines", "pipsqueak", "piquantly", "piratical", "pirouette",
07695     "pistachio", "pitchfork", "piteously", "pitifully", "pittances",
07696     "pituitary", "pityingly", "pizzerias", "pizzicati", "pizzicato",
07697     "placarded", "placating", "placation", "placatory", "placement",
07698     "placental", "placentas", "placidity", "plainness", "plainsong",
07699     "plaintiff", "plaintive", "planeload", "planetary", "plannings",
07700     "plantains", "plantings", "plastered", "plasterer", "plateaued",
07701     "platefuls", "platelets", "platforms", "platitude", "platooned",
07702     "plausible", "plausibly", "playacted", "playbacks", "playbills",
07703     "playfully", "playgoers", "playgroup", "playhouse", "playmates",
07704     "playrooms", "plaything", "pleadings", "pleasings", "pleasured",
07705     "pleasures", "plebeians", "plectrums", "plenaries", "plenitude",
07706     "plenteous", "plentiful", "plighting", "plimsolls", "ploddings",
07707     "plottered", "pluckiest", "plugholes", "plummeted", "plumpness",
07708     "plundered", "plunderer", "pluralism", "pluralist", "plurality",
07709     "plushiest", "plutocrat", "plutonium", "pneumatic", "pneumonia",
07710     "pocketful", "pocketing", "pockmarks", "poetesses", "pogroming",
07711     "poignancy", "pointedly", "pointiest", "pointless", "poisoners",
07712     "poisoning", "poisonous", "poleaxing", "polemical", "polestars",
07713     "policeman", "policemen", "polishers", "polishing", "politburo",
07714     "politesse", "political", "politicos", "pollinate", "polliwogs",
07715     "pollsters", "pollutant", "polluters", "polluting", "pollution",
07716     "polonaise", "poltroons", "polyandry", "polyester", "polyglots",
07717     "polygonal", "polygraph", "polymaths", "polymeric", "polyphony",
07718     "polythene", "pomanders", "pompadour", "pomposity", "pompously",
07719     "pondering", "ponderous", "pontooned", "ponytails", "poolsides",
07720     "poorhouse", "popinjays", "poppadoms", "poppycock", "populaces",
07721     "popularly", "populated", "populates", "populists", "porcelain",
07722     "porcupine", "porpoised", "porpoises", "porringer", "portables",
07723     "portaging", "portended", "portering", "portfolio", "portholes",
07724     "porticoes", "portioned", "portliest", "portraits", "portrayal",
07725     "portrayed", "positions", "positiver", "positives", "positrons",
07726     "possessed", "possesses", "possessor", "possibler", "possibles",
07727     "postboxes", "postcards", "postcodes", "postdated", "postdates",
07728     "posterior", "posterity", "posthaste", "postludes", "postmarks",
07729     "postnatal", "postponed", "postpones", "postulate", "posturing",
07730     "postwoman", "postwomen", "potassium", "potboiler", "potentate",
07731     "potential", "potholder", "potholers", "potholing", "potpourri",
07732     "potsherds", "potteries", "pottering", "pottiness", "poulticed",
07733     "poultices", "poundings", "powdering", "powerboat", "powerless",
07734     "powwowing", "practical", "pragmatic", "prankster", "pratfalls",
07735     "prattlers", "prattling", "preachers", "preachier", "preaching",
07736     "preambled", "preambles", "precedent", "preceding", "preceptor",
07737     "precincts", "precipice", "precisely", "precisest", "precision",
07738     "precluded", "precludes", "precocity", "precooked", "precursor",
07739     "predating", "predators", "predatory", "predicate", "predicted",
07740     "predictor", "predigest", "preempted", "preexists", "prefabbed",
07741     "prefacing", "prefatory", "preferred", "prefigure", "prefixing",
07742     "pregnancy", "preheated", "prejudged", "prejudges", "prejudice",
07743     "premature", "premiered", "premieres", "premising", "preoccupy",
07744     "preordain", "prepacked", "preparing", "prepaying", "preppiest",
07745     "prerecord", "presaging", "preschool", "prescient", "prescribe",
07746     "presences", "presented", "presenter", "presently", "preserved",
07747     "preserver", "preserves", "preshrank", "preshrink", "preshrunk",
07748     "president", "presiding", "presidium", "pressings", "pressured",
07749     "pressures", "presuming", "pretended", "pretender", "preterits",
07750     "pretexted", "prettiest", "prettying", "prevailed", "prevalent",
07751     "prevented", "previewed", "previewer", "priceless", "pricklier",
07752     "prickling", "priestess", "primaries", "primarily", "primitive",
07753     "primrosed", "primroses", "principal", "principle", "printable",
07754     "printings", "printouts", "prismatic", "prisoners", "prisoning",
07755     "prissiest", "privateer", "privately", "privatest", "privation",
07756     "privilege", "proactive", "probables", "probating", "probation",
07757     "probosces", "proboscis", "procedure", "proceeded", "processed",
07758     "processes", "processor", "proclaims", "procreate", "proctored",
07759     "procurers", "procuring", "prodigals", "prodigies", "producers",
07760     "producing", "profanely", "profaning", "profanity", "professed",
07761     "professes", "professor", "proffered", "profiling", "profiteer",
07762     "profiting", "profusely", "profusion", "prognoses", "prognosis",
07763     "prohibits", "projected", "projector", "prolapsed", "prolapses",
07764     "prolixity", "prologues", "prolonged", "promenade", "prominent",
07765     "promising", "promoters", "promoting", "promotion", "prompters",
07766     "promptest", "prompting", "proneness", "pronghorn", "pronounce",
07767     "proofread", "propagate", "propelled", "propeller", "properest",
07768     "prophetic", "proponent", "proposals", "proposers", "proposing",
07769     "propounds", "propriety", "prorating", "proscribe", "prosecute",
07770     "proselyte", "prosodies", "prospects", "prospered", "prostates",
07771     "prostrate", "protected", "protector", "protested", "protester",
07772     "protocols", "prototype", "protozoan", "protracts", "protruded",
07773     "protrudes", "provender", "provident", "providers", "providing",
07774     "provinces", "provision", "provoking", "proximate", "proximity",
07775     "prudently", "prudishly", "prurience", "psalmists", "pseudonym",
07776     "psoriasis", "psychical", "psychoses", "psychosis", "psychotic",
07777     "ptarmigan", "ptomaines", "pubescent", "publicans", "publicist",
07778     "publicity", "published", "publisher", "publishes", "puckering",
07779     "pudginess", "puerility", "puffballs", "puffiness", "pugilists",
07780     "pugnacity", "pullbacks", "pullovers", "pulmonary", "pulsating",
07781     "pulsation", "punchbags", "punchiest", "punchline", "punctuate",
07782     "punctured", "punctures", "pungently", "punishing", "puppeteer",
07783     "purchased", "purchaser", "purchases", "purebreds", "purgative",
07784     "purgatory", "purifiers", "purifying", "purloined", "purported",
07785     "purposely", "purposing", "pursuance", "purulence", "purveying",
07786     "purveyors", "pushbikes", "pushcarts", "pushchair", "pushiness",
07787     "pushovers", "pussycats", "pussyfoot", "putrefied", "putrefies",
07788     "puttering", "pyramidal", "pyramided", "pyromania", "quadrants",
07789     "quadratic", "quadrille", "quadruped", "quadruple", "quagmired",
07790     "quagmires", "quaintest", "qualified", "qualifier", "qualifies",
07791     "qualities", "quarrying", "quartered", "quarterly", "quatrains",
07792     "quavering", "quaysides", "queasiest", "queenlier", "queerness",
07793     "quenching", "querulous", "questions", "quibblers", "quibbling",
07794     "quickened", "quickfire", "quicklime", "quickness", "quicksand",
07795     "quickstep", "quiescent", "quietened", "quietness", "quietuses",
07796     "quintuple", "quirkiest", "quislings", "quivering", "quizzical",
07797     "quotation", "quotidian", "quotients", "rabbinate", "rabbiting",
07798     "racegoers", "racehorse", "racetrack", "racialism", "racialist",
07799     "racketeer", "racketing", "raconteur", "radiantly", "radiating",
07800     "radiation", "radiators", "radically", "radicchio", "radiogram",
07801     "radiology", "raggedest", "raggedier", "railcards", "railroads",
07802     "raincoats", "raindrops", "rainfalls", "rainmaker", "rainproof",
07803     "rainstorm", "rainwater", "ramblings", "ramifying", "rampaging",
07804     "rampantly", "ramrodded", "rancidity", "rancorous", "randiness",
07805     "ranginess", "ransacked", "ransoming", "rapacious", "rappelled",
07806     "rapturous", "rarefying", "raspberry", "ratcheted", "ratepayer",
07807     "ratifying", "rationale", "rationals", "rationing", "rattlings",
07808     "raucously", "raunchier", "raunchily", "ravishing", "reachable",
07809     "reactants", "reactions", "readdress", "readiness", "readjusts",
07810     "reaffirms", "realigned", "realistic", "realities", "reallying",
07811     "reanimate", "reappears", "reapplied", "reapplies", "reappoint",
07812     "rearguard", "rearrange", "rearwards", "reasoning", "reasserts",
07813     "reassigns", "reassured", "reassures", "reawakens", "rebelling",
07814     "rebellion", "rebinding", "rebooting", "rebounded", "rebuffing",
07815     "rebuttals", "rebutting", "recalling", "recanting", "recapping",
07816     "recapture", "recasting", "receipted", "receivers", "receiving",
07817     "recentest", "reception", "receptive", "receptors", "recessing",
07818     "recession", "recessive", "recharged", "recharges", "rechecked",
07819     "recipient", "reckoning", "reclaimed", "recliners", "reclining",
07820     "reclusive", "recoiling", "recollect", "recombine", "recommend",
07821     "recompile", "reconcile", "recondite", "reconnect", "reconquer",
07822     "reconvene", "recopying", "recorders", "recording", "recounted",
07823     "recouping", "recovered", "recreants", "recreated", "recreates",
07824     "recruited", "recruiter", "rectangle", "rectified", "rectifier",
07825     "rectifies", "rectitude", "rectories", "recumbent", "recurrent",
07826     "recurring", "recursion", "recursive", "recycling", "redbreast",
07827     "reddening", "redeemers", "redeeming", "redefined", "redefines",
07828     "redeploys", "redesigns", "redevelop", "redheaded", "redirects",
07829     "redolence", "redoubled", "redoubles", "redoubted", "redounded",
07830     "redrafted", "redrawing", "redressed", "redresses", "reducible",
07831     "reduction", "reductive", "redundant", "reeducate", "reelected",
07832     "reemerged", "reemerges", "reenacted", "reenlists", "reentered",
07833     "reentries", "reexamine", "refashion", "refectory", "referable",
07834     "reference", "referrals", "referring", "refilling", "refinance",
07835     "refitting", "reflating", "reflation", "reflected", "reflector",
07836     "reflexive", "refocused", "refocuses", "reforests", "reformers",
07837     "reforming", "reformist", "refracted", "refrained", "refreshed",
07838     "refresher", "refreshes", "refulgent", "refunding", "refurbish",
07839     "refurnish", "refutable", "regaining", "regarding", "regencies",
07840     "regicides", "regiments", "registers", "registrar", "regressed",
07841     "regresses", "regretful", "regretted", "regrouped", "regularly",
07842     "regulated", "regulates", "regulator", "rehabbing", "rehashing",
07843     "rehearsal", "rehearsed", "rehearses", "reheating", "rehousing",
07844     "reimburse", "reimposed", "reimposes", "reinforce", "reinserts",
07845     "reinstate", "reinvents", "reinvests", "reissuing", "reiterate",
07846     "rejecting", "rejection", "rejiggers", "rejigging", "rejoicing",
07847     "rejoinder", "rejoining", "rekindled", "rekindles", "relapsing",
07848     "relations", "relatives", "relaxants", "relearned", "releasing",
07849     "relegated", "relegates", "relenting", "relevance", "relevancy",
07850     "reliables", "relieving", "religions", "religious", "reliquary",
07851     "relishing", "reloading", "relocated", "relocates", "reluctant",
07852     "remainder", "remaining", "remanding", "remarking", "remarried",
07853     "remarries", "remasters", "rematches", "remedying", "remembers",
07854     "reminders", "reminding", "reminisce", "remission", "remitting",
07855     "remolding", "remoulded", "remounted", "removable", "renascent",
07856     "rendering", "rendition", "renegaded", "renegades", "renewable",
07857     "renounced", "renounces", "renovated", "renovates", "renovator",
07858     "renowning", "renumbers", "reopening", "reordered", "repackage",
07859     "repainted", "repairers", "repairing", "repairman", "repairmen",
07860     "reparteed", "repartees", "repasting", "repayable", "repayment",
07861     "repealing", "repeaters", "repeating", "repellent", "repelling",
07862     "repentant", "repenting", "repertory", "rephrased", "rephrases",
07863     "replacing", "replaying", "replenish", "repleting", "repletion",
07864     "replicate", "reportage", "reporters", "reporting", "reposeful",
07865     "repossess", "reprehend", "represent", "repressed", "represses",
07866     "reprieved", "reprieves", "reprimand", "reprinted", "reprisals",
07867     "reprising", "reprobate", "reprocess", "reproduce", "reproofed",
07868     "reproving", "reptilian", "republics", "republish", "repudiate",
07869     "repugnant", "repulsing", "repulsion", "repulsive", "reputable",
07870     "reputably", "reputedly", "requested", "requester", "requiring",
07871     "requisite", "requiting", "rereading", "rerouting", "rerunning",
07872     "rescinded", "reselling", "resembled", "resembles", "resentful",
07873     "resenting", "reserving", "reservist", "reservoir", "resetting",
07874     "resettled", "resettles", "reshaping", "reshuffle", "residence",
07875     "residency", "residents", "residuals", "resigning", "resilient",
07876     "resistant", "resisters", "resisting", "resistors", "resitting",
07877     "resoluter", "resolutes", "resolving", "resonance", "resonated",
07878     "resonates", "resonator", "resorting", "resounded", "resourced",
07879     "resources", "respected", "respecter", "respelled", "respiring",
07880     "responded", "responses", "restarted", "restating", "restfully",
07881     "restively", "restocked", "restorers", "restoring", "restrains",
07882     "restraint", "restricts", "restrooms", "restudied", "restudies",
07883     "resubmits", "resultant", "resulting", "resurface", "resurgent",
07884     "resurrect", "retailers", "retailing", "retainers", "retaining",
07885     "retaliate", "retardant", "retarding", "retelling", "retention",
07886     "retentive", "rethought", "reticence", "retooling", "retorting",
07887     "retouched", "retouches", "retracing", "retracted", "retrained",
07888     "retreaded", "retreated", "retrieval", "retrieved", "retriever",
07889     "retrieves", "retrodden", "retrofits", "returnees", "returners",
07890     "returning", "reunified", "reunifies", "reuniting", "revaluing",
07891     "revamping", "revealing", "revelries", "revenging", "reverence",
07892     "reverends", "reversals", "reversing", "reversion", "reverting",
07893     "reviewers", "reviewing", "revisions", "revisited", "revocable",
07894     "revolting", "revolvers", "revolving", "revulsion", "rewarding",
07895     "rewinding", "rewording", "reworking", "rewriting", "rewritten",
07896     "rhapsodic", "rheostats", "rheumatic", "rheumiest", "rhomboids",
07897     "rhombuses", "ricketier", "rickshaws", "ricochets", "ridgepole",
07898     "ridiculed", "ridicules", "righteous", "rightists", "rightmost",
07899     "rightness", "rightward", "rigidness", "rigmarole", "riotously",
07900     "riposting", "riskiness", "ritualism", "rivalries", "riverbeds",
07901     "riverside", "roadblock", "roadhouse", "roadshows", "roadsides",
07902     "roadsters", "roadworks", "robberies", "robustest", "rockeries",
07903     "rocketing", "rockfalls", "rockiness", "roentgens", "roguishly",
07904     "roistered", "roisterer", "rollbacks", "rollicked", "rollovers",
07905     "romancing", "romantics", "rookeries", "roominess", "roommates",
07906     "rosetting", "rosewater", "rosewoods", "rostering", "rotations",
07907     "rottenest", "rotunding", "rotundity", "roughcast", "roughened",
07908     "roughneck", "roughness", "roughshod", "roundelay", "roundness",
07909     "roundworm", "routinely", "rowdiness", "royalists", "royalties",
07910     "rubberier", "rubbished", "rubbishes", "rucksacks", "ruddiness",
07911     "rudiments", "ruffianed", "ruggedest", "ruination", "ruinously",
07912     "rumblings", "ruminants", "ruminated", "ruminates", "rummaging",
07913     "runabouts", "runaround", "rupturing", "rusticity", "rustiness",
07914     "rustlings", "rustproof", "rutabagas", "sabotaged", "sabotages",
07915     "saboteurs", "saccharin", "sackcloth", "sacrament", "sacrifice",
07916     "sacrilege", "sacristan", "saddening", "saddlebag", "safariing",
07917     "safeguard", "safetying", "safflower", "sagacious", "sagebrush",
07918     "sailboard", "sailboats", "sailcloth", "sainthood", "saintlier",
07919     "salaaming", "salacious", "salarying", "salerooms", "salesgirl",
07920     "salesroom", "salivated", "salivates", "sallowest", "saltboxes",
07921     "saltiness", "saltwater", "salvaging", "salvation", "sanctions",
07922     "sanctuary", "sandbanks", "sandblast", "sandboxes", "sandiness",
07923     "sandpaper", "sandpiper", "sandstone", "sandstorm", "sangfroid",
07924     "sanguined", "sanguines", "sapphires", "sapsucker", "sarcastic",
07925     "sardining", "sartorial", "sashaying", "sassafras", "satanists",
07926     "satellite", "satiating", "satinwood", "satirical", "satirists",
07927     "satisfied", "satisfies", "saturated", "saturates", "saturnine",
07928     "saucepans", "sauciness", "sauntered", "sawdusted", "sawhorses",
07929     "saxophone", "scabbards", "scabbiest", "scaffolds", "scalawags",
07930     "scaldings", "scaliness", "scallions", "scalloped", "scallywag",
07931     "scampered", "scantiest", "scapegoat", "scarecrow", "scarified",
07932     "scarifies", "scarleted", "scarpered", "scattered", "scavenged",
07933     "scavenger", "scavenges", "scenarios", "scheduled", "scheduler",
07934     "schedules", "schematic", "schemings", "schizoids", "schlemiel",
07935     "schlepped", "schmaltzy", "schmoozed", "schmoozer", "schmoozes",
07936     "schnauzer", "schnitzel", "scholarly", "schoolbag", "schoolboy",
07937     "schooling", "schoolkid", "schooners", "schussing", "scientist",
07938     "scimitars", "scintilla", "sclerosis", "sclerotic", "scofflaws",
07939     "scoldings", "scoliosis", "scorchers", "scorching", "scorecard",
07940     "scoreless", "scoreline", "scorpions", "scotching", "scoundrel",
07941     "scourging", "scrabbled", "scrabbles", "scraggier", "scrambled",
07942     "scrambler", "scrambles", "scramming", "scrapbook", "scrapheap",
07943     "scrapings", "scrappier", "scrapping", "scrapyard", "scratched",
07944     "scratches", "scrawling", "scrawnier", "screaming", "screeched",
07945     "screeches", "screening", "screwball", "screwiest", "scribbled",
07946     "scribbler", "scribbles", "scrimmage", "scrimping", "scrimshaw",
07947     "scripting", "scripture", "scrolling", "scrounged", "scrounger",
07948     "scrounges", "scrubbers", "scrubbier", "scrubbing", "scruffier",
07949     "scruffily", "scrumhalf", "scrummage", "scrumming", "scrumping",
07950     "scrunched", "scrunches", "scrupling", "scuffling", "scullions",
07951     "sculpting", "sculptors", "sculpture", "scummiest", "scuppered",
07952     "scurfiest", "scurrying", "scurviest", "scuttling", "scuzziest",
07953     "seaboards", "seacoasts", "seafarers", "seafaring", "seafronts",
07954     "seahorses", "seaplanes", "searchers", "searching", "searingly",
07955     "seascapes", "seashells", "seashores", "seasoning", "seaworthy",
07956     "sebaceous", "secateurs", "secession", "secluding", "seclusion",
07957     "seclusive", "secondary", "seconders", "seconding", "secretary",
07958     "secretest", "secreting", "secretion", "secretive", "sectarian",
07959     "sectional", "sectioned", "sedatives", "sedentary", "sediments",
07960     "seditious", "seduction", "seductive", "seediness", "seedlings",
07961     "seemingly", "seemliest", "seesawing", "seethings", "segmented",
07962     "segregate", "selecting", "selection", "selective", "selectman",
07963     "selectmen", "selectors", "selfishly", "sellotape", "selvaging",
07964     "semantics", "semaphore", "semblance", "semesters", "semibreve",
07965     "semicolon", "semifinal", "semiotics", "semitones", "semivowel",
07966     "senescent", "seniority", "sensation", "senseless", "sensibler",
07967     "sensibles", "sensitive", "sensually", "sentenced", "sentences",
07968     "sentience", "sentiment", "sentinels", "separable", "separated",
07969     "separates", "separator", "sequenced", "sequencer", "sequences",
07970     "sequester", "sequining", "seraglios", "serenaded", "serenades",
07971     "sergeants", "seriously", "sermoning", "serotonin", "serpented",
07972     "servanted", "serveries", "servicing", "serviette", "servility",
07973     "servitude", "setsquare", "seventeen", "seventies", "severally",
07974     "severance", "sextuplet", "sexuality", "shabbiest", "shackling",
07975     "shadiness", "shadowbox", "shadowier", "shadowing", "shaggiest",
07976     "shakedown", "shakeouts", "shakiness", "shallower", "shallowly",
07977     "shamanism", "shambling", "shambolic", "shameless", "shampooed",
07978     "shamrocks", "shanghais", "shapeless", "shapelier", "shareware",
07979     "sharkskin", "sharpened", "sharpener", "sharpness", "shattered",
07980     "sheathing", "sheepdogs", "sheepfold", "sheepskin", "sheikdoms",
07981     "shellfire", "shellfish", "sheltered", "shepherds", "shielding",
07982     "shiftiest", "shiftless", "shillings", "shimmered", "shimmying",
07983     "shinbones", "shingling", "shininess", "shinnying", "shipboard",
07984     "shiploads", "shipmates", "shipments", "shipowner", "shipshape",
07985     "shipwreck", "shipyards", "shirrings", "shirttail", "shitfaced",
07986     "shitheads", "shittiest", "shivering", "shoddiest", "shoehorns",
07987     "shoelaces", "shoemaker", "shoeshine", "shoetrees", "shootings",
07988     "shootouts", "shopfront", "shoplifts", "shoreline", "shortages",
07989     "shortcake", "shortcuts", "shortened", "shortfall", "shorthand",
07990     "shorthorn", "shortlist", "shortness", "shortstop", "shortwave",
07991     "shoulders", "shouldest", "shovelful", "showboats", "showcased",
07992     "showcases", "showdowns", "showerier", "showering", "showgirls",
07993     "showiness", "showpiece", "showplace", "showrooms", "shredders",
07994     "shredding", "shrewdest", "shrieking", "shrillest", "shrilling",
07995     "shrimpers", "shrimping", "shrinkage", "shrinking", "shrouding",
07996     "shrubbery", "shrubbier", "shrubbing", "shrugging", "shuddered",
07997     "shufflers", "shuffling", "shutdowns", "shuttered", "shuttling",
07998     "sibilants", "sickening", "sickliest", "sickrooms", "sideboard",
07999     "sideburns", "sidekicks", "sidelight", "sidelined", "sidelines",
08000     "sideshows", "sidesteps", "sideswipe", "sidetrack", "sidewalks",
08001     "sidewalls", "sightings", "sightless", "sightread", "sightseer",
08002     "signalman", "signalmen", "signatory", "signature", "signboard",
08003     "signified", "signifies", "signposts", "silencers", "silencing",
08004     "silentest", "silicates", "siliceous", "silicosis", "silkening",
08005     "silkiness", "silkworms", "silliness", "silverier", "silvering",
08006     "similarly", "simmering", "simpatico", "simpering", "simpleton",
08007     "simulacra", "simulated", "simulates", "simulator", "simulcast",
08008     "sincerely", "sincerest", "sincerity", "sinecures", "singalong",
08009     "singleton", "singsongs", "singulars", "sinkholes", "sinuously",
08010     "sinusitis", "sistering", "situating", "situation", "sixpences",
08011     "sixteenth", "sixtieths", "skedaddle", "skeletons", "sketchier",
08012     "sketchily", "sketching", "sketchpad", "skewbalds", "skewering",
08013     "skilfully", "skimpiest", "skinflint", "skinheads", "skinniest",
08014     "skintight", "skippered", "skittered", "skivvying", "skullcaps",
08015     "skydivers", "skydiving", "skyjacked", "skyjacker", "skylarked",
08016     "skylights", "skyrocket", "skywriter", "slackened", "slackness",
08017     "slagheaps", "slaloming", "slandered", "slanderer", "slangiest",
08018     "slantwise", "slaphappy", "slapstick", "slathered", "slatterns",
08019     "slaughter", "slavering", "slavishly", "sleazebag", "sleaziest",
08020     "sleekness", "sleepiest", "sleepless", "sleepover", "sleepwalk",
08021     "sleepwear", "sleetiest", "sleighing", "slenderer", "sleuthing",
08022     "slickness", "slightest", "slighting", "sliminess", "slingback",
08023     "slingshot", "slinkiest", "slipcases", "slipcover", "slipknots",
08024     "slippages", "slithered", "slivering", "slobbered", "sloppiest",
08025     "slouchier", "slouching", "sloughing", "slowcoach", "slowdowns",
08026     "slowpokes", "sluggards", "slumbered", "slumlords", "slushiest",
08027     "smallness", "smarmiest", "smartened", "smartness", "smelliest",
08028     "smilingly", "smirching", "smoggiest", "smokeless", "smokiness",
08029     "smoldered", "smooching", "smoothest", "smoothies", "smoothing",
08030     "smothered", "smudgiest", "smugglers", "smuggling", "smuttiest",
08031     "snaffling", "snakebite", "snakeskin", "snappiest", "snapshots",
08032     "snatchers", "snatching", "snazziest", "sneakiest", "snickered",
08033     "sniffiest", "sniffling", "sniftered", "snippiest", "snitching",
08034     "snobbiest", "snookered", "snoopiest", "snootiest", "snorkeled",
08035     "snorkeler", "snottiest", "snowballs", "snowboard", "snowbound",
08036     "snowdrift", "snowdrops", "snowfalls", "snowfield", "snowflake",
08037     "snowplows", "snowshoes", "snowstorm", "snowsuits", "snuffling",
08038     "snuggling", "soapboxed", "soapboxes", "soapiness", "soapstone",
08039     "soberness", "sobriquet", "sociables", "socialism", "socialist",
08040     "socialite", "societies", "sociology", "sociopath", "sodomites",
08041     "softballs", "softcover", "softeners", "softening", "softwoods",
08042     "sogginess", "sojourned", "soldering", "soldiered", "soldierly",
08043     "solecisms", "solemnest", "solemnity", "solenoids", "solicited",
08044     "solicitor", "solidness", "soliloquy", "solipsism", "solitaire",
08045     "solstices", "solutions", "sombreros", "someplace", "something",
08046     "sometimes", "somewhats", "somewhere", "somnolent", "songbirds",
08047     "songbooks", "songsters", "sonograms", "soothings", "sophistry",
08048     "sophomore", "soporific", "sorcerers", "sorceress", "soreheads",
08049     "sorrowful", "sorrowing", "sortieing", "soulfully", "soundbite",
08050     "soundings", "soundless", "soundness", "sourdough", "southeast",
08051     "southerly", "southerns", "southpaws", "southward", "southwest",
08052     "souvenirs", "sovereign", "spaceship", "spacesuit", "spacewalk",
08053     "spadefuls", "spadework", "spaghetti", "spangling", "spankings",
08054     "spareness", "spareribs", "sparingly", "sparkiest", "sparklers",
08055     "sparkling", "spasmodic", "spatially", "spattered", "speakeasy",
08056     "spearhead", "spearmint", "specialer", "specially", "specifics",
08057     "specified", "specifier", "specifies", "specimens", "speckling",
08058     "spectacle", "spectated", "spectates", "spectator", "speculate",
08059     "speechify", "speeching", "speedboat", "speediest", "speedster",
08060     "speedways", "spellbind", "spellings", "spelunker", "spherical",
08061     "spheroids", "sphincter", "spiciness", "spiderier", "spiderweb",
08062     "spiffiest", "spiffying", "spikiness", "spillages", "spillover",
08063     "spillways", "spindlier", "spindling", "spineless", "spinnaker",
08064     "spinsters", "spiriting", "spiritual", "spitballs", "spitfires",
08065     "spittoons", "splashier", "splashing", "splatters", "splatting",
08066     "splenetic", "splinters", "splinting", "splitting", "sploshing",
08067     "splotched", "splotches", "splurging", "splutters", "spokesman",
08068     "spokesmen", "spongiest", "sponsored", "spookiest", "spoonbill",
08069     "spoonfuls", "sportiest", "sportsman", "sportsmen", "spotlight",
08070     "spottiest", "spraining", "sprawling", "spreaders", "spreading",
08071     "sprightly", "springbok", "springier", "springing", "sprinkled",
08072     "sprinkler", "sprinkles", "sprinters", "sprinting", "spritzers",
08073     "spritzing", "sprockets", "sprouting", "spunkiest", "sputtered",
08074     "spymaster", "squabbing", "squabbled", "squabbles", "squaddies",
08075     "squadding", "squadrons", "squalider", "squalling", "squanders",
08076     "squashier", "squashing", "squatters", "squattest", "squatting",
08077     "squawking", "squeakier", "squeaking", "squealers", "squealing",
08078     "squeamish", "squeegeed", "squeegees", "squeezers", "squeezing",
08079     "squelched", "squelches", "squidding", "squiggled", "squiggles",
08080     "squintest", "squinting", "squirmier", "squirming", "squirrels",
08081     "squirting", "squishier", "squishing", "stabbings", "stability",
08082     "stableman", "stablemen", "staccatos", "stagehand", "staggered",
08083     "stagnated", "stagnates", "stainless", "staircase", "stairways",
08084     "stairwell", "stakeouts", "stalemate", "staleness", "stalkings",
08085     "stallions", "stalwarts", "stammered", "stammerer", "stampeded",
08086     "stampedes", "stanchest", "stanching", "stanchion", "standards",
08087     "standings", "standoffs", "standouts", "standpipe", "starboard",
08088     "starchier", "starchily", "starching", "starfruit", "stargazed",
08089     "stargazer", "stargazes", "starkness", "starlight", "starlings",
08090     "starriest", "startling", "starvings", "statehood", "stateless",
08091     "statelier", "statement", "stateroom", "stateside", "statesman",
08092     "statesmen", "statewide", "stationed", "stationer", "statistic",
08093     "statuette", "statutory", "staunched", "stauncher", "staunches",
08094     "staunchly", "steadfast", "steadiest", "steadying", "steamboat",
08095     "steamiest", "steamroll", "steamship", "steeliest", "steepened",
08096     "steepness", "stenching", "stepchild", "sterility", "sternness",
08097     "stevedore", "stewarded", "stickiest", "sticklers", "stickpins",
08098     "stickying", "stiffened", "stiffener", "stiffness", "stiflings",
08099     "stilettos", "stillborn", "stillness", "stiltedly", "stimulant",
08100     "stimulate", "stingiest", "stingrays", "stinkings", "stippling",
08101     "stipulate", "stirrings", "stitching", "stockaded", "stockades",
08102     "stockiest", "stockings", "stockists", "stockpile", "stockroom",
08103     "stockyard", "stodgiest", "stoically", "stolidest", "stolidity",
08104     "stomached", "stonewall", "stoneware", "stonework", "stonkered",
08105     "stopcocks", "stoplight", "stopovers", "stoppable", "stoppages",
08106     "stoppered", "stopwatch", "storeroom", "stormiest", "storybook",
08107     "stoutness", "stovepipe", "stowaways", "straddled", "straddles",
08108     "straggled", "straggler", "straggles", "straights", "strainers",
08109     "straining", "straitens", "straiting", "stranding", "strangely",
08110     "strangers", "strangest", "strangled", "strangler", "strangles",
08111     "strapless", "strapping", "stratagem", "strategic", "streakers",
08112     "streakier", "streaking", "streamers", "streaming", "streetcar",
08113     "strengths", "strenuous", "stressful", "stressing", "stretched",
08114     "stretcher", "stretches", "striation", "strictest", "stricture",
08115     "stridency", "strikeout", "strikings", "stringent", "stringers",
08116     "stringier", "stringing", "stripling", "strippers", "stripping",
08117     "strollers", "strolling", "strongbox", "strongest", "strongman",
08118     "strongmen", "strontium", "stroppier", "stroppily", "stropping",
08119     "structure", "struggled", "struggles", "strumming", "strumpets",
08120     "strutting", "stubbiest", "stubblier", "stubborns", "stuccoing",
08121     "studbooks", "stuffiest", "stumblers", "stumbling", "stumpiest",
08122     "stupefied", "stupefies", "stupidest", "stupidity", "sturdiest",
08123     "sturgeons", "stuttered", "stutterer", "stylishly", "stylistic",
08124     "stymieing", "subaltern", "subarctic", "subatomic", "subdivide",
08125     "subeditor", "subgroups", "subhumans", "subjected", "subjoined",
08126     "subjugate", "subleased", "subleases", "sublimate", "sublimely",
08127     "sublimest", "subliming", "sublimity", "submarine", "submerged",
08128     "submerges", "submersed", "submerses", "submitted", "submitter",
08129     "subnormal", "suborning", "subpoenas", "subscribe", "subscript",
08130     "subsidies", "subsiding", "subsisted", "subsoiled", "substance",
08131     "substrata", "substrate", "subsuming", "subsystem", "subtenant",
08132     "subtended", "subtitled", "subtitles", "subtotals", "subtracts",
08133     "suburbans", "subverted", "succeeded", "successes", "successor",
08134     "succotash", "succulent", "succumbed", "suckering", "sucklings",
08135     "suctioned", "sufferers", "suffering", "sufficing", "suffixing",
08136     "suffocate", "suffragan", "suffusing", "suffusion", "sugarcane",
08137     "sugarcoat", "sugariest", "sugarless", "suggested", "suggester",
08138     "suitcases", "sulkiness", "sullenest", "sulphates", "sulphides",
08139     "sultanate", "sultriest", "summaries", "summarily", "summation",
08140     "summerier", "summering", "summoners", "summoning", "summonsed",
08141     "summonses", "sumptuous", "sunbathed", "sunbather", "sunbathes",
08142     "sunblocks", "sunbonnet", "sunburned", "sundering", "sunfishes",
08143     "sunflower", "sunrising", "sunscreen", "sunshades", "sunstroke",
08144     "suntanned", "superbest", "superegos", "superglue", "superhero",
08145     "superiors", "supernova", "supersede", "superstar", "supervene",
08146     "supervise", "supplants", "suppliant", "suppliers", "supplying",
08147     "supported", "supporter", "supposing", "suppurate", "supremacy",
08148     "supremely", "supremest", "surceased", "surceases", "surcharge",
08149     "surfacing", "surfboard", "surfeited", "surgeries", "surliness",
08150     "surmising", "surmounts", "surpassed", "surpasses", "surplices",
08151     "surpluses", "surprised", "surprises", "surrender", "surrogacy",
08152     "surrogate", "surrounds", "surtaxing", "surtitles", "surveying",
08153     "surveyors", "survivals", "surviving", "survivors", "suspected",
08154     "suspended", "suspender", "suspicion", "sustained", "swaddling",
08155     "swaggered", "swaggerer", "swallowed", "swampiest", "swankiest",
08156     "swansongs", "swarthier", "swastikas", "swattered", "swearword",
08157     "sweatband", "sweatiest", "sweatshop", "sweatsuit", "sweepings",
08158     "sweetcorn", "sweetened", "sweetener", "sweetmeat", "sweetness",
08159     "swellhead", "swellings", "sweltered", "swiftness", "swimsuits",
08160     "swindlers", "swindling", "swingeing", "swirliest", "switching",
08161     "swooshing", "swordfish", "swordplay", "swordsman", "swordsmen",
08162     "sybarites", "sybaritic", "sycamores", "sycophant", "syllabify",
08163     "syllables", "syllabubs", "syllogism", "sylphlike", "symbioses",
08164     "symbiosis", "symbiotic", "symbolics", "symbolism", "symmetric",
08165     "symphonic", "symposium", "synagogue", "syncopate", "syndicate",
08166     "syndromes", "synergies", "synergism", "syntactic", "syntheses",
08167     "synthesis", "synthetic", "syringing", "systemics", "tableland",
08168     "tableware", "tabulated", "tabulates", "tabulator", "tacitness",
08169     "tackiness", "tactfully", "tactician", "tailbacks", "tailboard",
08170     "tailbones", "tailcoats", "tailgated", "tailgates", "taillight",
08171     "tailoring", "tailpiece", "tailpipes", "tailspins", "tailwinds",
08172     "takeaways", "takeovers", "talismans", "talkative", "tallyhoed",
08173     "tamarinds", "tamoxifen", "tampering", "tangerine", "tangibles",
08174     "tanneries", "tapeworms", "tarantula", "tardiness", "targeting",
08175     "tarmacked", "tarnished", "tarnishes", "tarpaulin", "tarragons",
08176     "tasteless", "tastiness", "tattering", "tattooing", "tattooist",
08177     "tautening", "tautology", "tawdriest", "taxidermy", "taxonomic",
08178     "taxpayers", "teachable", "teachings", "teakettle", "teammates",
08179     "teamsters", "tearaways", "teardrops", "tearfully", "teargases",
08180     "teasingly", "teaspoons", "technical", "technique", "tectonics",
08181     "tediously", "teenagers", "teetering", "telecasts", "telegenic",
08182     "telegrams", "telegraph", "telemeter", "telemetry", "teleology",
08183     "telepathy", "telephone", "telephony", "telephoto", "telesales",
08184     "telescope", "telethons", "teletypes", "televised", "televises",
08185     "tellering", "tellingly", "telltales", "temperate", "tempering",
08186     "templates", "temporary", "temptings", "temptress", "tenacious",
08187     "tenancies", "tenanting", "tenderest", "tendering", "tenements",
08188     "tenseness", "tentacles", "tentative", "tenuously", "termagant",
08189     "terminals", "terminate", "terracing", "terrapins", "terrarium",
08190     "terrified", "terrifies", "territory", "terrorism", "terrorist",
08191     "terseness", "testament", "testicles", "testified", "testifies",
08192     "testimony", "testiness", "tetchiest", "tethering", "textbooks",
08193     "textually", "thankless", "thatchers", "thatching", "thematics",
08194     "theocracy", "theoretic", "theorists", "theosophy", "therapies",
08195     "therapist", "therefore", "therefrom", "thereupon", "therewith",
08196     "thermally", "thermoses", "thesaurus", "thespians", "thickened",
08197     "thickener", "thickness", "thighbone", "thimbling", "thingummy",
08198     "thinkable", "thirstier", "thirstily", "thirsting", "thirteens",
08199     "thirtieth", "thorniest", "thousands", "thralldom", "thralling",
08200     "thrashers", "thrashing", "threading", "threatens", "threefold",
08201     "threesome", "threshers", "threshing", "threshold", "thriftier",
08202     "thriftily", "thrillers", "thrilling", "thrivings", "throatier",
08203     "throatily", "throbbing", "thronging", "throttled", "throttles",
08204     "throwaway", "throwback", "thrumming", "thrusting", "thumbnail",
08205     "thumbtack", "thundered", "thwacking", "thwarting", "ticketing",
08206     "tidemarks", "tidewater", "tiebreaks", "tightened", "tightness",
08207     "tightrope", "tightwads", "tigresses", "timeliest", "timepiece",
08208     "timescale", "timeshare", "timetable", "timpanist", "tinctured",
08209     "tinctures", "tinderbox", "tingliest", "tinkering", "tinsmiths",
08210     "tippexing", "tipsiness", "tiptoeing", "tiredness", "titillate",
08211     "titivated", "titivates", "tittering", "toadstool", "toastiest",
08212     "toboggans", "toileting", "tolerable", "tolerably", "tolerance",
08213     "tolerated", "tolerates", "tollbooth", "tollgates", "tomahawks",
08214     "tombstone", "tomorrows", "tonsorial", "tonsuring", "toolboxes",
08215     "toothache", "toothiest", "toothless", "toothpick", "toothsome",
08216     "topically", "toreadors", "tormented", "tormentor", "tornadoes",
08217     "torpedoed", "torpedoes", "torpidity", "torridest", "tortillas",
08218     "tortoises", "torturers", "torturing", "torturous", "tottering",
08219     "touchdown", "touchiest", "touchings", "touchline", "toughened",
08220     "toughness", "towelette", "towheaded", "townhouse", "townsfolk",
08221     "townships", "traceable", "traceries", "trackball", "tracksuit",
08222     "tractable", "trademark", "tradesman", "tradesmen", "tradition",
08223     "traducing", "tragedian", "tragedies", "trailered", "traipsing",
08224     "tramlines", "trampling", "transacts", "transcend", "transepts",
08225     "transfers", "transform", "transfuse", "transient", "transited",
08226     "translate", "transmits", "transmute", "transpire", "transport",
08227     "transpose", "transship", "trapdoors", "trapezing", "trapezium",
08228     "trapezoid", "trappable", "trappings", "trashcans", "trashiest",
08229     "traumatic", "travailed", "traversed", "traverses", "treachery",
08230     "treacling", "treadling", "treadmill", "treasured", "treasurer",
08231     "treasures", "treatable", "treatises", "treatment", "trellised",
08232     "trellises", "trembling", "tremulous", "trenchant", "trenchers",
08233     "trenching", "trendiest", "trialling", "triangles", "triathlon",
08234     "tribalism", "tribesman", "tribesmen", "tribunals", "tributary",
08235     "tricepses", "trickiest", "trickling", "trickster", "tricycled",
08236     "tricycles", "triennial", "trifocals", "triggered", "trillions",
08237     "trilogies", "trimarans", "trimester", "trimmings", "trinities",
08238     "triplying", "triptychs", "tripwires", "trisected", "triteness",
08239     "triumphal", "triumphed", "trivially", "trolloped", "trombones",
08240     "troopship", "trophying", "tropicals", "troubling", "trouncing",
08241     "trousseau", "truanting", "truckling", "truckload", "truculent",
08242     "trueloves", "trumpeted", "trumpeter", "truncated", "truncates",
08243     "truncheon", "trundling", "trustiest", "tubercles", "tuckering",
08244     "tumescent", "tumulting", "tunefully", "turbidity", "turbojets",
08245     "turboprop", "turbulent", "turgidity", "turmerics", "turmoiled",
08246     "turnabout", "turncoats", "turniping", "turnovers", "turnpikes",
08247     "turnround", "turnstile", "turntable", "turpitude", "turquoise",
08248     "tutorials", "twaddling", "tweediest", "twentieth", "twiddling",
08249     "twiggiest", "twinkling", "twitchier", "twitching", "twittered",
08250     "twopences", "tympanums", "typecasts", "typefaces", "typewrite",
08251     "typewrote", "typically", "typifying", "tyrannies", "tyrannous",
08252     "ulcerated", "ulcerates", "ultimated", "ultimates", "ultimatum",
08253     "ululating", "ululation", "umbilical", "umbilicus", "umbraging",
08254     "umbrellas", "umpteenth", "unabashed", "unadorned", "unadvised",
08255     "unalloyed", "unaltered", "unanimity", "unanimous", "unashamed",
08256     "unbalance", "unbarring", "unbeknown", "unbending", "unbinding",
08257     "unblocked", "unbolting", "unbosomed", "unbounded", "unbranded",
08258     "unbridled", "unbuckled", "unbuckles", "unburdens", "unbuttons",
08259     "uncannier", "uncannily", "unceasing", "uncertain", "unchanged",
08260     "uncharted", "unchecked", "unclaimed", "unclasped", "uncleaner",
08261     "uncleanly", "unclearer", "unclothed", "unclothes", "uncoiling",
08262     "unconcern", "uncorking", "uncounted", "uncoupled", "uncouples",
08263     "uncovered", "uncurling", "undamaged", "undaunted", "undeceive",
08264     "undecided", "undefined", "underacts", "underarms", "underbids",
08265     "undercoat", "undercuts", "underdogs", "underdone", "underfeed",
08266     "underflow", "underfoot", "undergoes", "undergone", "undergrad",
08267     "underhand", "underlain", "underlays", "underlies", "underline",
08268     "underling", "undermine", "undermost", "underpaid", "underpass",
08269     "underpays", "underpins", "underplay", "underrate", "underseas",
08270     "undersell", "undershot", "underside", "undersign", "undersold",
08271     "undertake", "undertone", "undertook", "undertows", "underused",
08272     "underwear", "underwent", "undiluted", "undivided", "undoubted",
08273     "undressed", "undresses", "undulated", "undulates", "unearthed",
08274     "unearthly", "uneasiest", "uneatable", "unequally", "unethical",
08275     "unevenest", "unfailing", "unfairest", "unfastens", "unfeeling",
08276     "unfeigned", "unfetters", "unfitting", "unfocused", "unfolding",
08277     "unfounded", "unfrocked", "unfurling", "ungodlier", "unguarded",
08278     "ungulates", "unhanding", "unhappier", "unhappily", "unhealthy",
08279     "unhelpful", "unhinging", "unhitched", "unhitches", "unholiest",
08280     "unhooking", "unhorsing", "unhurried", "unicycles", "uniformed",
08281     "uniformer", "uniformly", "unimpeded", "uninjured", "uninsured",
08282     "uninvited", "unionists", "universal", "universes", "unkindest",
08283     "unknowing", "unlatched", "unlatches", "unleashed", "unleashes",
08284     "unlimited", "unloading", "unlocking", "unloosing", "unluckier",
08285     "unluckily", "unmanlier", "unmanning", "unmarried", "unmasking",
08286     "unmatched", "unmindful", "unmusical", "unnatural", "unnerving",
08287     "unnoticed", "unopposed", "unpacking", "unpainted", "unpicking",
08288     "unpinning", "unplanned", "unplugged", "unplumbed", "unpopular",
08289     "unquoting", "unreadier", "unreality", "unrefined", "unrelated",
08290     "unresting", "unrolling", "unruffled", "unruliest", "unsaddled",
08291     "unsaddles", "unsalable", "unscathed", "unscrewed", "unsealing",
08292     "unseating", "unsecured", "unselfish", "unsettled", "unsettles",
08293     "unsheathe", "unsightly", "unskilled", "unsmiling", "unsnapped",
08294     "unsnarled", "unsounder", "unsparing", "unspoiled", "unstabler",
08295     "unstopped", "unstudied", "unsullied", "untainted", "untangled",
08296     "untangles", "untenable", "untidiest", "untouched", "untrained",
08297     "untreated", "untutored", "untwisted", "untypical", "unusually",
08298     "unvarying", "unveiling", "unwariest", "unwelcome", "unwilling",
08299     "unwinding", "unwitting", "unworldly", "unwrapped", "unwritten",
08300     "unzipping", "upbraided", "upchucked", "upcountry", "upgrading",
08301     "upheavals", "upholders", "upholding", "upholster", "uplifting",
08302     "uploading", "uppercase", "uppercuts", "uppermost", "upraising",
08303     "uprisings", "uprooting", "upsetting", "upstaging", "upstarted",
08304     "upstreams", "upsurging", "upturning", "urinating", "urination",
08305     "urologist", "uselessly", "usherette", "utilities", "utterance",
08306     "uttermost", "vacancies", "vacations", "vaccinate", "vacillate",
08307     "vacuously", "vacuuming", "vagabonds", "vagueness", "vainglory",
08308     "valancing", "valencies", "valentine", "valiantly", "validated",
08309     "validates", "validness", "valuables", "valuation", "valueless",
08310     "vamoosing", "vampiring", "vandalism", "vanguards", "vanishing",
08311     "vapidness", "vaporised", "vaporises", "variables", "variances",
08312     "variation", "varicoses", "variegate", "varieties", "variously",
08313     "varnished", "varnishes", "varsities", "vasectomy", "vassalage",
08314     "vassaling", "vectoring", "vegetable", "vegetated", "vegetates",
08315     "vehemence", "vehicular", "velodrome", "velveteen", "velvetier",
08316     "velveting", "vendettas", "veneering", "venerable", "venerated",
08317     "venerates", "vengeance", "ventilate", "ventricle", "venturing",
08318     "venturous", "veracious", "verballed", "verbosely", "verbosity",
08319     "verdigris", "verifying", "veritable", "veritably", "vermilion",
08320     "verminous", "versatile", "versified", "versifies", "vertebrae",
08321     "vertebral", "verticals", "vestibule", "vestigial", "vestments",
08322     "vexations", "vexatious", "viability", "vibrantly", "vibrating",
08323     "vibration", "vibrators", "viburnums", "vicarages", "vicarious",
08324     "viciously", "victories", "videodisc", "videotape", "viewpoint",
08325     "vigilance", "vigilante", "vignetted", "vignettes", "vilifying",
08326     "villagers", "vindicate", "vineyards", "violating", "violation",
08327     "violators", "violently", "violinist", "virginals", "virginity",
08328     "virtually", "virtuosos", "virulence", "viscosity", "viscounts",
08329     "visionary", "visioning", "vitiating", "vitiation", "vitriolic",
08330     "vivacious", "vividness", "vivifying", "vocalists", "vocations",
08331     "vocatives", "voiceless", "volcanics", "volcanoes", "volleying",
08332     "voltmeter", "voluntary", "volunteer", "voodooing", "voodooism",
08333     "voracious", "vouchsafe", "voyeurism", "vulgarest", "vulgarism",
08334     "vulgarity", "wackiness", "wainscots", "waistband", "waistcoat",
08335     "waistline", "walkabout", "walkaways", "walkovers", "wallabies",
08336     "wallboard", "walloping", "wallowing", "wallpaper", "wanderers",
08337     "wandering", "wannabees", "wantoning", "wardening", "wardering",
08338     "wardrobes", "wardrooms", "warehouse", "warhorses", "warmonger",
08339     "warplanes", "warranted", "washables", "washbasin", "washboard",
08340     "washbowls", "washcloth", "washering", "washrooms", "washstand",
08341     "waspishly", "wassailed", "wasteland", "wastering", "watchable",
08342     "watchband", "watchdogs", "watchword", "waterfall", "waterfowl",
08343     "waterhole", "wateriest", "waterline", "watermark", "watermill",
08344     "watershed", "waterside", "waterways", "wavebands", "wayfarers",
08345     "wayfaring", "waylaying", "waywardly", "weakening", "weakliest",
08346     "weaklings", "wealthier", "weariness", "wearisome", "weathered",
08347     "webmaster", "weekended", "weekender", "weeknight", "weightier",
08348     "weightily", "weighting", "weirdness", "welcoming", "weltering",
08349     "westbound", "westerner", "westwards", "whackings", "whalebone",
08350     "wheatgerm", "wheatmeal", "wheedling", "wheelbase", "wheeziest",
08351     "wherefore", "whereupon", "whetstone", "whichever", "whimpered",
08352     "whimsical", "whimsiest", "whingeing", "whinniest", "whinnying",
08353     "whippings", "whirligig", "whirlpool", "whirlwind", "whiskered",
08354     "whispered", "whistlers", "whistling", "whitebait", "whitecaps",
08355     "whitefish", "whiteners", "whiteness", "whitening", "whitewall",
08356     "whitewash", "whithered", "whittlers", "whittling", "whodunits",
08357     "wholefood", "wholemeal", "wholeness", "wholesale", "wholesome",
08358     "whooshing", "whoppings", "whosoever", "wickedest", "widowhood",
08359     "wifeliest", "wiggliest", "wigwagged", "wildfires", "willinger",
08360     "willingly", "willowier", "willpower", "windblown", "windbreak",
08361     "windburns", "windfalls", "windiness", "windmills", "windowing",
08362     "windpipes", "windsocks", "windstorm", "windsurfs", "windswept",
08363     "wineglass", "wingspans", "winnowing", "winsomely", "winsomest",
08364     "wintering", "wintriest", "wiseacres", "wisecrack", "wiseliest",
08365     "wishbones", "wishfully", "wisterias", "wistfully", "withdrawn",
08366     "withdraws", "withering", "withholds", "withstand", "withstood",
08367     "witlessly", "witnessed", "witnesses", "wittering", "witticism",
08368     "wittiness", "wittingly", "wobbliest", "woebegone", "woefuller",
08369     "wolfhound", "wolverine", "womanhood", "womankind", "womanlier",
08370     "womanlike", "womenfolk", "wonderful", "wondering", "woodblock",
08371     "woodchuck", "woodcocks", "woodcraft", "woodenest", "woodiness",
08372     "woodlands", "woodlouse", "woodpiles", "woodsheds", "woodsiest",
08373     "woodwinds", "woodworms", "wooliness", "woolliest", "wooziness",
08374     "wordiness", "wordsmith", "workbench", "workbooks", "workforce",
08375     "workhorse", "workhouse", "workloads", "workmates", "workplace",
08376     "workrooms", "worksheet", "workshops", "workweeks", "worldlier",
08377     "worldwide", "wormholes", "worriedly", "worrisome", "worryings",
08378     "worrywart", "worsening", "worthiest", "worthless", "wranglers",
08379     "wrangling", "wrappings", "wreathing", "wrenching", "wrestlers",
08380     "wrestling", "wrigglers", "wrigglier", "wriggling", "wrinklier",
08381     "wrinklies", "wrinkling", "wristband", "wrongdoer", "wrongness",
08382     "xenophobe", "xylophone", "yachtsman", "yachtsmen", "yammering",
08383     "yardstick", "yarmulkes", "yearbooks", "yearlings", "yearnings",
08384     "yeastiest", "yellowest", "yellowing", "yellowish", "yesterday",
08385     "yieldings", "youngster", "yuppified", "yuppifies", "zealously",
08386     "zeitgeist", "zeppelins", "zestfully", "zigzagged", "zippering",
08387     "zirconium", "zookeeper", "zoologist", "zucchinis"
08388   };
08389 
08390   const char* w_10[] = {
08391     "abandoning", "abbreviate", "abdicating", "abdication",
08392     "abductions", "aberration", "abhorrence", "abjuration",
08393     "abnegating", "abnegation", "abnormally", "abolishing",
08394     "abominable", "abominably", "abominated", "abominates",
08395     "aboriginal", "aborigines", "aboveboard", "abrasively",
08396     "abrogating", "abrogation", "abruptness", "abscessing",
08397     "absconding", "absolutely", "absolutest", "absolution",
08398     "absolutism", "absolutist", "absorbency", "absorbents",
08399     "absorption", "abstainers", "abstaining", "abstemious",
08400     "abstention", "abstinence", "abstracted", "abstracter",
08401     "abstractly", "abstrusely", "abstrusest", "abundances",
08402     "abundantly", "academical", "acanthuses", "accelerate",
08403     "accentuate", "acceptable", "acceptably", "acceptance",
08404     "accessible", "accessibly", "accessions", "accidental",
08405     "acclaiming", "acclimated", "acclimates", "accolading",
08406     "accomplice", "accomplish", "accordance", "accordions",
08407     "accountant", "accounting", "accredited", "accretions",
08408     "accumulate", "accurately", "accusation", "accusative",
08409     "accusatory", "accusingly", "accustomed", "achievable",
08410     "achromatic", "acidifying", "acoustical", "acquainted",
08411     "acquiesced", "acquiesces", "acquirable", "acquittals",
08412     "acquitting", "acrobatics", "actionable", "activating",
08413     "activation", "activities", "adaptation", "addictions",
08414     "additional", "addressees", "addressing", "adequately",
08415     "adjacently", "adjectival", "adjectives", "adjourning",
08416     "adjudicate", "adjuration", "adjustable", "adjustment",
08417     "administer", "admiration", "admiringly", "admissible",
08418     "admissions", "admittance", "admittedly", "admixtures",
08419     "admonished", "admonishes", "admonition", "admonitory",
08420     "adolescent", "adornments", "adrenaline", "adroitness",
08421     "adulterant", "adulterate", "adulterers", "adulteress",
08422     "adulteries", "adulterous", "adumbrated", "adumbrates",
08423     "advantaged", "advantages", "adventured", "adventurer",
08424     "adventures", "adverbials", "advertised", "advertiser",
08425     "advertises", "advisement", "advisories", "advocating",
08426     "aerialists", "aerobatics", "aerodromes", "aerogramme",
08427     "aeronautic", "aesthetics", "affability", "affectedly",
08428     "affections", "affidavits", "affiliated", "affiliates",
08429     "affinities", "afflicting", "affliction", "affluently",
08430     "affordable", "afforested", "affronting", "aficionado",
08431     "afterbirth", "afterglows", "afterlives", "aftermaths",
08432     "afternoons", "aftershave", "aftershock", "aftertaste",
08433     "afterwords", "aggravated", "aggravates", "aggregated",
08434     "aggregates", "aggression", "aggressive", "aggressors",
08435     "aggrieving", "agitations", "agreements", "agronomist",
08436     "airbrushed", "airbrushes", "airdropped", "airletters",
08437     "airlifting", "airmailing", "alarmingly", "alchemists",
08438     "alcoholics", "alcoholism", "alderwoman", "alderwomen",
08439     "algorithms", "alienating", "alienation", "alignments",
08440     "alimentary", "alkalinity", "allegation", "allegiance",
08441     "allegories", "allergenic", "allergists", "alleviated",
08442     "alleviates", "alligators", "allocating", "allocation",
08443     "allotments", "allowances", "alluringly", "allusively",
08444     "almshouses", "alphabeted", "alphabetic", "altarpiece",
08445     "alteration", "alternated", "alternates", "alternator",
08446     "altimeters", "altogether", "altruistic", "amalgamate",
08447     "amanuenses", "amanuensis", "amateurish", "amateurism",
08448     "ambassador", "ambivalent", "ambulances", "ambulatory",
08449     "ameliorate", "amendments", "amiability", "ammunition",
08450     "amnestying", "ampersands", "amphibians", "amphibious",
08451     "amplifiers", "amplifying", "amplitudes", "amputating",
08452     "amputation", "amusements", "analgesics", "analytical",
08453     "anarchists", "anatomical", "anatomists", "ancestored",
08454     "ancestress", "ancestries", "anchorages", "anchorites",
08455     "ancientest", "anemometer", "angiosperm", "angleworms",
08456     "anglicisms", "anglophile", "anglophone", "anguishing",
08457     "angularity", "animatedly", "animations", "annexation",
08458     "annihilate", "annotating", "annotation", "announcers",
08459     "announcing", "annoyances", "annoyingly", "annulments",
08460     "anointment", "answerable", "antagonism", "antagonist",
08461     "antebellum", "antecedent", "antedating", "anthracite",
08462     "anthropoid", "antibiotic", "antibodies", "anticipate",
08463     "anticlimax", "antifreeze", "antiheroes", "antimatter",
08464     "antipastos", "antiphonal", "antiquated", "antiquates",
08465     "antiseptic", "antisocial", "antitheses", "antithesis",
08466     "antithetic", "antitoxins", "antivirals", "antonymous",
08467     "apartments", "aphoristic", "apocalypse", "apocryphal",
08468     "apolitical", "apologetic", "apologists", "apoplectic",
08469     "apoplexies", "apostasies", "apostrophe", "apothecary",
08470     "apotheoses", "apotheosis", "apparently", "apparition",
08471     "appearance", "appellants", "appendages", "appendices",
08472     "appendixes", "appertains", "applauding", "applesauce",
08473     "appliances", "applicable", "applicants", "applicator",
08474     "appointees", "appointing", "apportions", "appositely",
08475     "apposition", "appositive", "appraisals", "appraisers",
08476     "appraising", "appreciate", "apprehends", "apprentice",
08477     "approached", "approaches", "aquamarine", "aquaplaned",
08478     "aquaplanes", "arabesques", "arbitrager", "arbitrated",
08479     "arbitrates", "arbitrator", "arboretums", "arborvitae",
08480     "archangels", "archbishop", "archdeacon", "archetypal",
08481     "archetypes", "architects", "archivists", "aristocrat",
08482     "arithmetic", "armadillos", "armaturing", "armistices",
08483     "arraigning", "arrogantly", "arrogating", "arrowheads",
08484     "artfulness", "arthritics", "arthropods", "artichokes",
08485     "articulacy", "articulate", "artificers", "artificial",
08486     "ascendancy", "ascendants", "ascensions", "ascertains",
08487     "asceticism", "ascribable", "ascription", "asperities",
08488     "aspersions", "asphalting", "asphyxiate", "aspidistra",
08489     "aspirating", "aspiration", "assailable", "assailants",
08490     "assaulting", "assemblage", "assemblers", "assemblies",
08491     "assembling", "assertions", "assessment", "asseverate",
08492     "assignable", "assignment", "assimilate", "assistance",
08493     "assistants", "associated", "associates", "assortment",
08494     "assumption", "assurances", "asterisked", "asthmatics",
08495     "astigmatic", "astonished", "astonishes", "astounding",
08496     "astringent", "astrologer", "astronauts", "astronomer",
08497     "astronomic", "astuteness", "asymmetric", "asymptotic",
08498     "atmosphere", "atrocities", "atrophying", "attachment",
08499     "attainable", "attainment", "attempting", "attendance",
08500     "attendants", "attentions", "attenuated", "attenuates",
08501     "attracting", "attraction", "attractive", "attributed",
08502     "attributes", "atypically", "aubergines", "auctioneer",
08503     "auctioning", "audibility", "audiophile", "audiotapes",
08504     "auditioned", "auditorium", "augmenting", "auspicious",
08505     "authorship", "autocratic", "autographs", "autoimmune",
08506     "automakers", "automatics", "automating", "automation",
08507     "automatons", "automobile", "automotive", "autonomous",
08508     "autopilots", "autopsying", "autoworker", "avalanches",
08509     "avaricious", "aviatrices", "aviatrixes", "avocations",
08510     "awakenings", "awkwardest", "axiomatics", "ayatollahs",
08511     "babysitter", "bacchanals", "backbiters", "backbiting",
08512     "backbitten", "backboards", "backcloths", "backcombed",
08513     "backdating", "backfields", "backfiring", "backgammon",
08514     "background", "backhanded", "backhander", "backlashes",
08515     "backlogged", "backpacked", "backpacker", "backpedals",
08516     "backslider", "backslides", "backspaced", "backspaces",
08517     "backstairs", "backstreet", "backstroke", "backtracks",
08518     "backwaters", "badmouthed", "bafflement", "bagatelles",
08519     "bailiwicks", "balaclavas", "balalaikas", "balderdash",
08520     "balefuller", "balladeers", "ballasting", "ballerinas",
08521     "ballistics", "ballooning", "balloonist", "ballplayer",
08522     "ballpoints", "ballyhooed", "balustrade", "bamboozled",
08523     "bamboozles", "banalities", "bandleader", "bandmaster",
08524     "bandoleers", "bandstands", "bandwagons", "banefuller",
08525     "banishment", "bankrolled", "bankruptcy", "bankrupted",
08526     "banqueting", "banquettes", "baptistery", "barbarians",
08527     "barbarisms", "barbecuing", "barberries", "barbershop",
08528     "barefooted", "barehanded", "bareheaded", "bargaining",
08529     "barkeepers", "barnstorms", "barometers", "barometric",
08530     "baronesses", "barracking", "barracudas", "barrenness",
08531     "barricaded", "barricades", "barristers", "bartenders",
08532     "baseboards", "basketball", "basketwork", "bassoonist",
08533     "bathhouses", "battalions", "batterings", "battlement",
08534     "battleship", "bayberries", "bayoneting", "bazillions",
08535     "beachfront", "beachheads", "beanfeasts", "beansprout",
08536     "beastliest", "beatifying", "beatitudes", "beautician",
08537     "beautified", "beautifier", "beautifies", "becomingly",
08538     "becquerels", "bedazzling", "bedchamber", "bedclothes",
08539     "bedfellows", "bedraggled", "bedraggles", "bedsitters",
08540     "bedspreads", "beefburger", "beefsteaks", "beekeepers",
08541     "beekeeping", "beforehand", "befriended", "befuddling",
08542     "beginnings", "begrudging", "behindhand", "beleaguers",
08543     "believable", "belittling", "belladonna", "bellwether",
08544     "bellyached", "bellyaches", "belongings", "benchmarks",
08545     "benefactor", "beneficent", "beneficial", "benefiting",
08546     "benevolent", "bequeathed", "beseeching", "besmirched",
08547     "besmirches", "bespeaking", "bestiality", "bestiaries",
08548     "bestirring", "bestridden", "bestriding", "bestseller",
08549     "bethinking", "betokening", "betrothals", "betrothing",
08550     "betterment", "bewildered", "bewitching", "biannually",
08551     "bicyclists", "biennially", "bifurcated", "bifurcates",
08552     "bighearted", "bilberries", "bilinguals", "billboards",
08553     "billionths", "billowiest", "binoculars", "biochemist",
08554     "biodegrade", "biographer", "biological", "biologists",
08555     "biophysics", "biorhythms", "biospheres", "bipartisan",
08556     "birdbrains", "birdhouses", "birthmarks", "birthplace",
08557     "birthrates", "birthright", "birthstone", "bisections",
08558     "bishoprics", "bitchiness", "bitterness", "bituminous",
08559     "bivouacked", "biweeklies", "blabbering", "blackballs",
08560     "blackberry", "blackbirds", "blackboard", "blackening",
08561     "blackguard", "blackheads", "blackjacks", "blacklists",
08562     "blackmails", "blacksmith", "blackthorn", "blancmange",
08563     "blanketing", "blarneying", "blasphemed", "blasphemer",
08564     "blasphemes", "blathering", "blemishing", "blessedest",
08565     "blethering", "blindfolds", "blindingly", "blindsided",
08566     "blindsides", "blinkering", "blissfully", "blistering",
08567     "blitzkrieg", "blockading", "blockheads", "blockhouse",
08568     "bloodbaths", "bloodhound", "bloodlines", "bloodstain",
08569     "bloodstock", "blossoming", "blotchiest", "blubbering",
08570     "bludgeoned", "bluebottle", "bluefishes", "bluejacket",
08571     "blueprints", "blunderers", "blundering", "blustering",
08572     "boardrooms", "boardwalks", "boastfully", "boathouses",
08573     "boatswains", "bobsledded", "bobsleighs", "bodyguards",
08574     "boisterous", "bollocking", "bolstering", "bombardier",
08575     "bombarding", "bombshells", "bondholder", "boneshaker",
08576     "bookbinder", "bookending", "bookkeeper", "bookmakers",
08577     "bookmaking", "bookmarked", "bookmobile", "bookplates",
08578     "bookseller", "bookstalls", "bookstores", "boomerangs",
08579     "boondoggle", "bootblacks", "bootlegged", "bootlegger",
08580     "bootstraps", "borderland", "borderline", "borrowings",
08581     "bothersome", "bottleneck", "bottomless", "bouldering",
08582     "boulevards", "boundaries", "bowstrings", "boycotting",
08583     "boyfriends", "boyishness", "bracketing", "brainchild",
08584     "brainpower", "brainstorm", "brainwaves", "brandished",
08585     "brandishes", "brasseries", "brassieres", "brawniness",
08586     "brazenness", "breadboard", "breadboxes", "breadcrumb",
08587     "breadfruit", "breakables", "breakaways", "breakdowns",
08588     "breakfasts", "breakwater", "breastbone", "breastfeed",
08589     "breastwork", "breathable", "breathiest", "breathless",
08590     "breeziness", "breviaries", "bricklayer", "brickyards",
08591     "bridegroom", "bridesmaid", "bridgehead", "bridgework",
08592     "bridleways", "briefcases", "brigadiers", "brigandage",
08593     "brigantine", "brightened", "brightness", "brilliance",
08594     "brilliancy", "brilliants", "briquettes", "bristliest",
08595     "broadcasts", "broadcloth", "broadening", "broadsheet",
08596     "broadsided", "broadsides", "broadsword", "brokerages",
08597     "bronchitic", "bronchitis", "brontosaur", "broodiness",
08598     "broomstick", "brothering", "browbeaten", "brownfield",
08599     "brownstone", "buccaneers", "buckboards", "bucketfuls",
08600     "budgerigar", "buffaloing", "buffetings", "buffoonery",
08601     "bulldogged", "bulldozers", "bulldozing", "bulletined",
08602     "bullfights", "bullheaded", "bumblebees", "bunkhouses",
08603     "burdensome", "bureaucrat", "burgeoning", "burglaries",
08604     "burgundies", "burlesqued", "burlesques", "burnishing",
08605     "bushwhacks", "businesses", "busybodies", "butcheries",
08606     "butchering", "buttercups", "butteriest", "buttermilk",
08607     "butternuts", "buttocking", "buttonhole", "buttressed",
08608     "buttresses", "byproducts", "bystanders", "cabdrivers",
08609     "cablecasts", "cablegrams", "cadaverous", "cafeterias",
08610     "cafetieres", "calabashes", "calamining", "calamities",
08611     "calamitous", "calcifying", "calculable", "calculated",
08612     "calculates", "calculator", "calendared", "calibrated",
08613     "calibrates", "calibrator", "caliphates", "callousing",
08614     "calumniate", "camcorders", "camerawork", "camouflage",
08615     "campaigned", "campaigner", "campaniles", "campground",
08616     "candelabra", "candidates", "candidness", "candlewick",
08617     "candyfloss", "canistered", "cannabises", "cannelloni",
08618     "cannonaded", "cannonades", "cannonball", "canonicals",
08619     "canoodling", "cantaloupe", "cantilever", "cantonment",
08620     "canvasback", "canvassers", "canvassing", "capability",
08621     "capacities", "capacitors", "caparisons", "capitalism",
08622     "capitalist", "capitation", "capitulate", "cappuccino",
08623     "capricious", "captaining", "captioning", "captivated",
08624     "captivates", "carbonated", "carbonates", "carbuncles",
08625     "carburetor", "carcinogen", "carcinomas", "cardholder",
08626     "cardiogram", "cardiology", "cardsharps", "careerists",
08627     "carefuller", "caregivers", "carelessly", "caretakers",
08628     "caricature", "carjackers", "carjacking", "carnations",
08629     "carnelians", "carnivores", "carpenters", "carpetbags",
08630     "carpooling", "carthorses", "cartilages", "cartooning",
08631     "cartoonist", "cartridges", "cartwheels", "caseworker",
08632     "cashiering", "cashpoints", "casseroled", "casseroles",
08633     "castigated", "castigates", "castigator", "castrating",
08634     "castration", "casualness", "casualties", "cataclysms",
08635     "catafalque", "cataleptic", "catamarans", "catapulted",
08636     "catatonics", "catcalling", "catchments", "catchwords",
08637     "catechisms", "categories", "caterwauls", "cathartics",
08638     "cathedrals", "catnapping", "cautionary", "cautioning",
08639     "cautiously", "cavalcades", "cavalryman", "cavalrymen",
08640     "caveatting", "ceasefires", "celebrants", "celebrated",
08641     "celebrates", "cellophane", "cellphones", "cemeteries",
08642     "censorious", "censorship", "centennial", "centigrade",
08643     "centipedes", "centralest", "centralism", "centralist",
08644     "centrality", "centrifuge", "centurions", "cerebellum",
08645     "ceremonial", "ceremonies", "certainest", "certifying",
08646     "certitudes", "cessations", "chagrining", "chainsawed",
08647     "chairlifts", "chairwoman", "chairwomen", "chalkboard",
08648     "chalkiness", "challenged", "challenger", "challenges",
08649     "chameleons", "chamomiles", "champagnes", "championed",
08650     "chancellor", "chanceries", "chandelier", "changeable",
08651     "changeless", "changeling", "changeover", "chaparrals",
08652     "chaperoned", "chaplaincy", "charabancs", "characters",
08653     "charbroils", "chargeable", "charioteer", "charitable",
08654     "charitably", "charladies", "charlatans", "charminger",
08655     "charmingly", "chartering", "chartreuse", "chastening",
08656     "chastising", "chatterbox", "chatterers", "chattering",
08657     "chattiness", "chauffeurs", "chauvinism", "chauvinist",
08658     "cheapening", "cheapskate", "checklists", "checkmated",
08659     "checkmates", "checkpoint", "checkrooms", "cheekbones",
08660     "cheekiness", "cheerfully", "cheeriness", "cheesecake",
08661     "chemically", "cherishing", "chessboard", "chickadees",
08662     "chickening", "chickenpox", "chieftains", "chihuahuas",
08663     "chilblains", "childbirth", "childhoods", "childishly",
08664     "childproof", "chilliness", "chillingly", "chimerical",
08665     "chimpanzee", "chinchilla", "chinstraps", "chintziest",
08666     "chipolatas", "chirpiness", "chirruping", "chivalrous",
08667     "chlorinate", "chloroform", "chocoholic", "chocolates",
08668     "choppering", "choppiness", "chopsticks", "choristers",
08669     "chowdering", "christened", "chromatics", "chromosome",
08670     "chronicled", "chronicler", "chronicles", "chronology",
08671     "chubbiness", "chuckholes", "chumminess", "chundering",
08672     "chunkiness", "chuntering", "churchgoer", "churchyard",
08673     "churlishly", "cicatrices", "cigarettes", "cigarillos",
08674     "circuiting", "circuitous", "circulated", "circulates",
08675     "circumcise", "circumflex", "circumvent", "citronella",
08676     "civilities", "clambering", "clamminess", "clampdowns",
08677     "clanswoman", "clanswomen", "clapboards", "clappering",
08678     "clarifying", "clarioning", "classicism", "classicist",
08679     "classified", "classifies", "classiness", "classmates",
08680     "classrooms", "clattering", "clavichord", "cleanliest",
08681     "clearances", "clematises", "clementine", "clerestory",
08682     "cleverness", "clinically", "clinicians", "clipboards",
08683     "clitorises", "cloakrooms", "clobbering", "clockworks",
08684     "clodhopper", "cloistered", "clothespin", "cloudburst",
08685     "cloudiness", "cloverleaf", "clownishly", "clubhouses",
08686     "clumsiness", "clustering", "cluttering", "coachloads",
08687     "coagulants", "coagulated", "coagulates", "coalescing",
08688     "coalfields", "coalitions", "coarseness", "coarsening",
08689     "coastguard", "coastlines", "coauthored", "cockamamie",
08690     "cockchafer", "cockfights", "cockscombs", "cocksucker",
08691     "codswallop", "coexisting", "coffeecake", "coffeepots",
08692     "cofferdams", "cogitating", "cogitation", "cohabiting",
08693     "coherently", "cohesively", "coiffuring", "coincident",
08694     "coinciding", "collapsing", "collarbone", "collarless",
08695     "collateral", "collations", "colleagued", "colleagues",
08696     "collecting", "collection", "collective", "collectors",
08697     "collegians", "collegiate", "collieries", "collisions",
08698     "collocated", "collocates", "colloquial", "colloquies",
08699     "colloquium", "colonnaded", "colonnades", "colossally",
08700     "columbines", "columnists", "combatants", "combustion",
08701     "comedienne", "comeliness", "comestible", "comforters",
08702     "comforting", "commandant", "commandeer", "commanders",
08703     "commanding", "commencing", "commending", "commentary",
08704     "commentate", "commenting", "commercial", "commercing",
08705     "commingled", "commingles", "commissars", "commissary",
08706     "commission", "commitment", "committals", "committees",
08707     "committing", "commodious", "commodores", "commotions",
08708     "communally", "communions", "communique", "communists",
08709     "commutable", "compactest", "compacting", "compaction",
08710     "compactors", "companions", "comparable", "comparably",
08711     "comparison", "compassing", "compassion", "compatible",
08712     "compatibly", "compatriot", "compelling", "compendium",
08713     "compensate", "competence", "competency", "competitor",
08714     "complacent", "complained", "complainer", "complaints",
08715     "complected", "complement", "completely", "completest",
08716     "completing", "completion", "complexest", "complexion",
08717     "complexity", "compliance", "complicate", "complicity",
08718     "compliment", "components", "comporting", "composites",
08719     "compositor", "composting", "compounded", "comprehend",
08720     "compressed", "compresses", "compressor", "comprising",
08721     "compromise", "compulsion", "compulsive", "compulsory",
08722     "concealing", "conceiving", "concentric", "conception",
08723     "conceptual", "concerning", "concertina", "concerting",
08724     "concession", "concierges", "conciliate", "concluding",
08725     "conclusion", "conclusive", "concocting", "concoction",
08726     "concordant", "concordats", "concourses", "concretely",
08727     "concreting", "concubines", "concurrent", "concurring",
08728     "concussing", "concussion", "condemning", "condensers",
08729     "condensing", "condescend", "condiments", "conditions",
08730     "condolence", "conducting", "conduction", "conductive",
08731     "conductors", "confabbing", "confection", "conference",
08732     "conferment", "conferring", "confessing", "confession",
08733     "confessors", "confidante", "confidants", "confidence",
08734     "configured", "configures", "confirming", "confiscate",
08735     "conflating", "conflation", "conflicted", "confluence",
08736     "conforming", "conformist", "conformity", "confounded",
08737     "confronted", "confusedly", "confusions", "congealing",
08738     "congenital", "congesting", "congestion", "congestive",
08739     "congregant", "congregate", "congresses", "congruence",
08740     "coniferous", "conjecture", "conjoining", "conjugated",
08741     "conjugates", "connecting", "connection", "connective",
08742     "connectors", "connexions", "connivance", "conquering",
08743     "conquerors", "conscience", "conscripts", "consecrate",
08744     "consensual", "consenting", "consequent", "conserving",
08745     "considered", "consignees", "consigning", "consistent",
08746     "consisting", "consonance", "consonants", "consorting",
08747     "consortium", "conspiracy", "conspiring", "constables",
08748     "constantly", "constipate", "constitute", "constrains",
08749     "constraint", "constricts", "constructs", "construing",
08750     "consulates", "consultant", "consulting", "consumable",
08751     "consumings", "consummate", "contacting", "contagions",
08752     "contagious", "containers", "containing", "contenders",
08753     "contending", "contenting", "contention", "contestant",
08754     "contesting", "contextual", "contiguity", "contiguous",
08755     "continence", "continents", "contingent", "continuing",
08756     "continuity", "continuous", "contorting", "contortion",
08757     "contouring", "contraband", "contracted", "contractor",
08758     "contradict", "contraflow", "contraltos", "contraries",
08759     "contrarily", "contrasted", "contravene", "contribute",
08760     "contritely", "contrition", "contriving", "controlled",
08761     "controller", "controvert", "contusions", "conundrums",
08762     "convalesce", "convection", "convectors", "convenient",
08763     "conventing", "convention", "convergent", "converging",
08764     "conversant", "conversely", "conversing", "conversion",
08765     "converters", "converting", "conveyance", "convicting",
08766     "conviction", "convincing", "convoluted", "convulsing",
08767     "convulsion", "convulsive", "cookhouses", "cooperated",
08768     "cooperates", "coordinate", "copperhead", "copulating",
08769     "copulation", "copycatted", "copyrights", "copywriter",
08770     "coquetting", "coquettish", "cordiality", "corkscrews",
08771     "cormorants", "corncrakes", "cornfields", "cornflakes",
08772     "cornflower", "cornrowing", "cornstalks", "cornstarch",
08773     "cornucopia", "coronaries", "coronation", "corpulence",
08774     "corpuscles", "corralling", "correctest", "correcting",
08775     "correction", "corrective", "correlated", "correlates",
08776     "correspond", "corrosives", "corrugated", "corrugates",
08777     "corruptest", "corrupting", "corruption", "coruscated",
08778     "coruscates", "cosmically", "cosmonauts", "cosponsors",
08779     "cossetting", "costarring", "costliness", "costumiers",
08780     "cotillions", "cottonseed", "cottontail", "cottonwood",
08781     "cotyledons", "couchettes", "councilman", "councilmen",
08782     "countdowns", "counteract", "countering", "countesses",
08783     "countryman", "countrymen", "countywide", "courageous",
08784     "courgettes", "couriering", "coursebook", "coursework",
08785     "courtesans", "courtesies", "courthouse", "courtliest",
08786     "courtrooms", "courtships", "courtyards", "couturiers",
08787     "covenanted", "covetously", "cowcatcher", "cowpuncher",
08788     "coxswained", "crabbiness", "crackdowns", "crackliest",
08789     "cracklings", "craftiness", "crankcases", "crankiness",
08790     "crankshaft", "cravatting", "crawlspace", "crayfishes",
08791     "creakiness", "creameries", "creaminess", "creatively",
08792     "creativity", "credential", "creditable", "creditably",
08793     "creepiness", "cremations", "crematoria", "creosoting",
08794     "crescendos", "cricketers", "cricketing", "criminally",
08795     "crimsoning", "crinkliest", "crinolines", "crispbread",
08796     "crisscross", "critically", "criticisms", "critiquing",
08797     "crocheting", "crocodiles", "croissants", "crookedest",
08798     "croquettes", "crossbeams", "crossbones", "crossbreed",
08799     "crosscheck", "crossfires", "crossovers", "crosspatch",
08800     "crosspiece", "crossroads", "crosswalks", "crosswinds",
08801     "crosswords", "crucifixes", "cruciforms", "crucifying",
08802     "crumbliest", "crunchiest", "crushingly", "crustacean",
08803     "cryogenics", "cryptogram", "cubbyholes", "cuckolding",
08804     "culminated", "culminates", "cultivable", "cultivated",
08805     "cultivates", "cultivator", "culturally", "cumbersome",
08806     "cummerbund", "cumulative", "cunningest", "curiousest",
08807     "curlicuing", "curmudgeon", "currencies", "curricular",
08808     "curriculum", "currycombs", "curtailing", "curtaining",
08809     "curvaceous", "curvatures", "cushioning", "cussedness",
08810     "custodians", "cutthroats", "cuttlefish", "cybernetic",
08811     "cyberpunks", "cyberspace", "cyclically", "cyclotrons",
08812     "dachshunds", "daintiness", "dairymaids", "dalliances",
08813     "dalmatians", "dandelions", "dandifying", "daredevils",
08814     "dartboards", "dashboards", "databasing", "datelining",
08815     "dauntingly", "davenports", "daydreamed", "daydreamer",
08816     "dazzlingly", "deactivate", "deadheaded", "deadliness",
08817     "deadlining", "deadlocked", "deadpanned", "dealership",
08818     "deathblows", "deathliest", "deathtraps", "debasement",
08819     "debauchees", "debauchery", "debauching", "debentures",
08820     "debilitate", "debilities", "debonairly", "debriefing",
08821     "decadently", "decapitate", "decathlete", "decathlons",
08822     "decelerate", "deceptions", "decimating", "decimation",
08823     "deciphered", "decisively", "deckchairs", "declaiming",
08824     "declarable", "declassify", "declension", "decolletes",
08825     "decomposed", "decomposes", "decompress", "decontrols",
08826     "decorating", "decoration", "decorative", "decorators",
08827     "decorously", "decoupling", "decreasing", "decrements",
08828     "dedicating", "dedication", "deductible", "deductions",
08829     "deescalate", "defacement", "defamation", "defamatory",
08830     "defaulters", "defaulting", "defeatists", "defecating",
08831     "defecation", "defections", "defectives", "defendants",
08832     "defensible", "deferments", "deficiency", "defilement",
08833     "definitely", "definition", "definitive", "deflecting",
08834     "deflection", "deflectors", "deflowered", "defoliants",
08835     "defoliated", "defoliates", "deforested", "defrauding",
08836     "defrocking", "defrosters", "defrosting", "degeneracy",
08837     "degenerate", "degradable", "dehumidify", "dehydrated",
08838     "dehydrates", "dejectedly", "delectable", "delectably",
08839     "delegating", "delegation", "deliberate", "delicacies",
08840     "delicately", "delightful", "delighting", "delimiters",
08841     "delimiting", "delineated", "delineates", "delinquent",
08842     "deliverers", "deliveries", "delivering", "delphinium",
08843     "delusively", "demagogues", "demarcated", "demarcates",
08844     "dementedly", "demeriting", "demitasses", "democratic",
08845     "demography", "demolished", "demolishes", "demolition",
08846     "demoniacal", "demonology", "demotivate", "demureness",
08847     "denaturing", "denigrated", "denigrates", "denominate",
08848     "denotation", "denouement", "denouncing", "dentifrice",
08849     "deodorants", "department", "departures", "dependable",
08850     "dependably", "dependence", "dependency", "depictions",
08851     "depilatory", "deplorable", "deplorably", "deployment",
08852     "depopulate", "deportment", "depositing", "deposition",
08853     "depositors", "depository", "deprecated", "deprecates",
08854     "depreciate", "depressant", "depressing", "depression",
08855     "depressive", "deprograms", "deputation", "derailment",
08856     "deregulate", "derisively", "derivation", "derivative",
08857     "dermatitis", "derogating", "derogation", "derogatory",
08858     "derringers", "desalinate", "descanting", "descendant",
08859     "descending", "describing", "descriptor", "desecrated",
08860     "desecrates", "deselected", "desertions", "deservedly",
08861     "deservings", "desiccated", "desiccates", "desiderata",
08862     "designated", "designates", "deskilling", "desolately",
08863     "desolating", "desolation", "despairing", "despicable",
08864     "despicably", "despoiling", "despondent", "destroyers",
08865     "destroying", "destructed", "detachable", "detachment",
08866     "detainment", "detectable", "detectives", "detentions",
08867     "detergents", "determined", "determiner", "determines",
08868     "deterrence", "deterrents", "detestable", "detestably",
08869     "dethroning", "detonating", "detonation", "detonators",
08870     "detoxified", "detoxifies", "detracting", "detraction",
08871     "detractors", "detriments", "devastated", "devastates",
08872     "developers", "developing", "deviations", "devilishly",
08873     "deviltries", "devolution", "devotional", "devoutness",
08874     "dewberries", "diabolical", "diacritics", "diagnosing",
08875     "diagnostic", "diagonally", "diagrammed", "dialectics",
08876     "diaphanous", "diaphragms", "dickybirds", "dictations",
08877     "dictionary", "didgeridoo", "dietitians", "difference",
08878     "difficulty", "diffidence", "diffracted", "digestible",
08879     "digestions", "digestives", "dignifying", "digressing",
08880     "digression", "digressive", "dilettante", "diligently",
08881     "dillydally", "dimensions", "diminished", "diminishes",
08882     "diminuendo", "diminution", "diminutive", "dinnertime",
08883     "dinnerware", "diphtheria", "diphthongs", "diplomatic",
08884     "dipsomania", "directions", "directives", "directness",
08885     "dirigibles", "disability", "disabusing", "disaffects",
08886     "disallowed", "disappears", "disappoint", "disapprove",
08887     "disarrange", "disarrayed", "disastrous", "disavowals",
08888     "disavowing", "disbanding", "disbarment", "disbarring",
08889     "disbelieve", "disbursing", "discarding", "discerning",
08890     "discharged", "discharges", "discipline", "disclaimed",
08891     "disclaimer", "disclosing", "disclosure", "discomfits",
08892     "discomfort", "discommode", "discompose", "disconcert",
08893     "disconnect", "discontent", "discordant", "discording",
08894     "discounted", "discounter", "discourage", "discoursed",
08895     "discourses", "discovered", "discoverer", "discredits",
08896     "discreeter", "discreetly", "discretely", "discretion",
08897     "discursive", "discussant", "discussing", "discussion",
08898     "disdainful", "disdaining", "disembarks", "disembowel",
08899     "disenchant", "disengaged", "disengages", "disfigured",
08900     "disfigures", "disgorging", "disgracing", "disgruntle",
08901     "disguising", "disgusting", "disharmony", "dishcloths",
08902     "dishearten", "dishonesty", "dishtowels", "dishwasher",
08903     "disincline", "disinfects", "disinherit", "disjointed",
08904     "dislocated", "dislocates", "dislodging", "disloyally",
08905     "disloyalty", "dismantled", "dismantles", "dismembers",
08906     "dismissals", "dismissing", "dismissive", "dismounted",
08907     "disobeying", "disobliged", "disobliges", "disordered",
08908     "disorderly", "disorients", "disparaged", "disparages",
08909     "disparates", "dispatched", "dispatcher", "dispatches",
08910     "dispelling", "dispensary", "dispensers", "dispensing",
08911     "dispersing", "dispersion", "dispirited", "displacing",
08912     "displaying", "displeased", "displeases", "disporting",
08913     "disposable", "dispossess", "disproving", "disputable",
08914     "disputants", "disqualify", "disquieted", "disregards",
08915     "disrespect", "disrupting", "disruption", "disruptive",
08916     "dissatisfy", "dissecting", "dissection", "dissembled",
08917     "dissembles", "dissension", "dissenters", "dissenting",
08918     "disservice", "dissidence", "dissidents", "dissimilar",
08919     "dissipated", "dissipates", "dissociate", "dissolutes",
08920     "dissolving", "dissonance", "dissuading", "dissuasion",
08921     "distancing", "distending", "distension", "distention",
08922     "distillate", "distillers", "distillery", "distilling",
08923     "distincter", "distinctly", "distorting", "distortion",
08924     "distracted", "distraught", "distressed", "distresses",
08925     "distribute", "distrusted", "disturbing", "disuniting",
08926     "disyllabic", "divergence", "diversions", "divestment",
08927     "divination", "divinities", "divisional", "divisively",
08928     "dockworker", "doctorates", "docudramas", "documented",
08929     "dogcatcher", "doggedness", "dogmatists", "dogsbodies",
08930     "dogtrotted", "dolefuller", "dollhouses", "domiciling",
08931     "dominantly", "dominating", "domination", "dominatrix",
08932     "domineered", "doohickeys", "doomsayers", "doorkeeper",
08933     "dosshouses", "doubtfully", "doughtiest", "dovetailed",
08934     "downgraded", "downgrades", "downloaded", "downmarket",
08935     "downplayed", "downscaled", "downscales", "downshifts",
08936     "downsizing", "downspouts", "downstairs", "downstream",
08937     "downswings", "doxologies", "dragooning", "drainboard",
08938     "drainpipes", "dramatists", "drawbridge", "drawstring",
08939     "dreadfully", "dreadlocks", "dreamboats", "dreaminess",
08940     "dreariness", "dressiness", "dressmaker", "drizzliest",
08941     "drolleries", "drowsiness", "drugstores", "drumsticks",
08942     "drywalling", "duckboards", "dumbfounds", "dumbstruck",
08943     "dumbwaiter", "dunderhead", "dungeoning", "duplicated",
08944     "duplicates", "duplicator", "durability", "dustsheets",
08945     "dynamiting", "dyspeptics", "earmarking", "earthbound",
08946     "earthiness", "earthliest", "earthlings", "earthquake",
08947     "earthwards", "earthworks", "earthworms", "easterlies",
08948     "easterners", "eavesdrops", "ebullience", "eccentrics",
08949     "ecological", "ecologists", "economical", "economists",
08950     "ecosystems", "ecumenical", "editorials", "editorship",
08951     "educations", "effacement", "effectuate", "effeminacy",
08952     "effeminate", "effervesce", "efficiency", "efficients",
08953     "effortless", "effrontery", "effulgence", "effusively",
08954     "eggbeaters", "eglantines", "egocentric", "egomaniacs",
08955     "eiderdowns", "eigenvalue", "eighteenth", "eightieths",
08956     "eisteddfod", "ejaculated", "ejaculates", "elaborated",
08957     "elaborates", "elasticity", "elderberry", "electorate",
08958     "electrical", "electrodes", "electronic", "elementary",
08959     "elevations", "eliminated", "eliminates", "eliminator",
08960     "elliptical", "elongating", "elongation", "elopements",
08961     "eloquently", "elucidated", "elucidates", "emaciating",
08962     "emaciation", "emanations", "emancipate", "emasculate",
08963     "embankment", "embargoing", "embezzlers", "embezzling",
08964     "embittered", "emblazoned", "emblematic", "embodiment",
08965     "emboldened", "embroiders", "embroidery", "embroiling",
08966     "embryology", "emendation", "emigrating", "emigration",
08967     "emissaries", "emollients", "emoluments", "empathetic",
08968     "empiricism", "empiricist", "employable", "employment",
08969     "empowering", "emulations", "emulsified", "emulsifier",
08970     "emulsifies", "enactments", "encampment", "enchanters",
08971     "enchanting", "enchiladas", "encircling", "enclosures",
08972     "encounters", "encouraged", "encourages", "encroached",
08973     "encroaches", "encrusting", "encrypting", "encryption",
08974     "encumbered", "encyclical", "endangered", "endearment",
08975     "endocrines", "endowments", "energetics", "enervating",
08976     "enervation", "enfeebling", "engagement", "engagingly",
08977     "engendered", "engineered", "engravings", "engrossing",
08978     "enjoyments", "enlightens", "enlistment", "enlivening",
08979     "enormities", "enormously", "enraptured", "enraptures",
08980     "enrichment", "ensconcing", "enshrining", "enshrouded",
08981     "entangling", "enterprise", "entertains", "enthralled",
08982     "enthroning", "enthusiasm", "enthusiast", "enticement",
08983     "enticingly", "entombment", "entomology", "entourages",
08984     "entrancing", "entrapment", "entrapping", "entreaties",
08985     "entreating", "entrenched", "entrenches", "entrusting",
08986     "entryphone", "enumerable", "enumerated", "enumerates",
08987     "enunciated", "enunciates", "enveloping", "envisaging",
08988     "envisioned", "epicureans", "epiglottis", "epileptics",
08989     "epiloguing", "episcopacy", "episcopate", "epistolary",
08990     "equability", "equanimity", "equatorial", "equestrian",
08991     "equivalent", "equivocate", "eradicated", "eradicates",
08992     "ergonomics", "erotically", "escalating", "escalation",
08993     "escalators", "escapology", "escarpment", "escutcheon",
08994     "espadrille", "especially", "esplanades", "essentials",
08995     "estimating", "estimation", "estimators", "estranging",
08996     "eternities", "ethereally", "ethnically", "etiologies",
08997     "eucalyptus", "eulogistic", "euphemisms", "euphonious",
08998     "euthanasia", "evacuating", "evacuation", "evaluating",
08999     "evaluation", "evaluative", "evanescent", "evangelism",
09000     "evangelist", "evaporated", "evaporates", "evenhanded",
09001     "eventfully", "eventually", "eventuated", "eventuates",
09002     "everglades", "evergreens", "everyplace", "everything",
09003     "everywhere", "evidencing", "eviscerate", "evocations",
09004     "exacerbate", "exactingly", "exactitude", "exaggerate",
09005     "exaltation", "exasperate", "excavating", "excavation",
09006     "excavators", "excellence", "exceptions", "excerpting",
09007     "exchanging", "exchequers", "excitation", "excitement",
09008     "excitingly", "exclaiming", "exclusions", "exclusives",
09009     "excoriated", "excoriates", "excretions", "exculpated",
09010     "exculpates", "excursions", "execrating", "executable",
09011     "executions", "executives", "exemptions", "exercising",
09012     "exfoliated", "exfoliates", "exhalation", "exhausting",
09013     "exhaustion", "exhaustive", "exhibiting", "exhibition",
09014     "exhibitors", "exhilarate", "exhumation", "exigencies",
09015     "existences", "exonerated", "exonerates", "exorbitant",
09016     "exorcising", "exotically", "expandable", "expansions",
09017     "expatiated", "expatiates", "expatriate", "expectancy",
09018     "expedience", "expediency", "expedients", "expediters",
09019     "expediting", "expedition", "expendable", "experience",
09020     "experiment", "expertness", "expiration", "explaining",
09021     "expletives", "explicable", "explicated", "explicates",
09022     "explicitly", "exploiters", "exploiting", "explosions",
09023     "explosives", "exportable", "exposition", "expository",
09024     "expounding", "expressing", "expression", "expressive",
09025     "expressway", "expulsions", "expurgated", "expurgates",
09026     "extempores", "extensions", "extenuated", "extenuates",
09027     "externally", "extincting", "extinction", "extinguish",
09028     "extirpated", "extirpates", "extracting", "extraction",
09029     "extractors", "extradited", "extradites", "extramural",
09030     "extraneous", "extremists", "extricated", "extricates",
09031     "extroverts", "extrusions", "exuberance", "exultantly",
09032     "exultation", "eyeballing", "eyeglasses", "eyewitness",
09033     "fabricated", "fabricates", "fabulously", "facecloths",
09034     "facilitate", "facilities", "facsimiled", "facsimiles",
09035     "factitious", "fairground", "fairylands", "faithfully",
09036     "fallacious", "falsehoods", "falsifying", "falterings",
09037     "familiarly", "fanaticism", "fancifully", "fantasists",
09038     "fantasying", "farcically", "farmhouses", "farmsteads",
09039     "farsighted", "fascinated", "fascinates", "fashioning",
09040     "fastenings", "fastidious", "fastnesses", "fatalistic",
09041     "fatalities", "fatherhood", "fatherland", "fatherless",
09042     "fathomable", "fathomless", "fattenings", "faultiness",
09043     "fearfuller", "fearlessly", "featherier", "feathering",
09044     "federalism", "federalist", "federating", "federation",
09045     "feebleness", "felicities", "felicitous", "fellowship",
09046     "femaleness", "femininity", "fermenting", "ferryboats",
09047     "festooning", "fetchingly", "fetishists", "feverishly",
09048     "fickleness", "fictitious", "fiendishly", "fierceness",
09049     "fifteenths", "figurative", "figurehead", "filibuster",
09050     "filmmakers", "filmstrips", "filterable", "filthiness",
09051     "filtrating", "filtration", "financiers", "fingerings",
09052     "fingermark", "fingernail", "fingertips", "finickiest",
09053     "firebombed", "firebrands", "firebreaks", "firebricks",
09054     "firefights", "fireguards", "firehouses", "fireplaces",
09055     "fireproofs", "firescreen", "firestorms", "firewalled",
09056     "firmaments", "firstborns", "fishmonger", "fishtailed",
09057     "fisticuffs", "flabbiness", "flagellant", "flagellate",
09058     "flagrantly", "flagstaffs", "flagstones", "flamboyant",
09059     "flameproof", "flammables", "flashbacks", "flashbulbs",
09060     "flashcards", "flashiness", "flashlight", "flatfishes",
09061     "flatfooted", "flattening", "flatterers", "flattering",
09062     "flatulence", "flawlessly", "fledglings", "fleetingly",
09063     "fleshliest", "flickering", "flightiest", "flightless",
09064     "flimsiness", "flintlocks", "flippantly", "flirtation",
09065     "floatation", "floodgates", "floodlight", "floorboard",
09066     "flophouses", "floppiness", "flotations", "floundered",
09067     "flourished", "flourishes", "flowerbeds", "floweriest",
09068     "flowerings", "flowerpots", "fluctuated", "fluctuates",
09069     "fluffiness", "flummoxing", "fluoresced", "fluoresces",
09070     "fluoridate", "flustering", "fluttering", "flycatcher",
09071     "flyspecked", "flyswatter", "flyweights", "followings",
09072     "foodstuffs", "foolishest", "footballer", "footbridge",
09073     "footlights", "footlocker", "footnoting", "footplates",
09074     "footprints", "footstools", "forbearing", "forbidding",
09075     "forcefully", "forearming", "foreboding", "forecaster",
09076     "forecastle", "foreclosed", "forecloses", "forecourts",
09077     "foredoomed", "forefather", "forefinger", "forefronts",
09078     "foregoings", "foreground", "foreigners", "foreordain",
09079     "forerunner", "foreseeing", "foreshadow", "foreshores",
09080     "forestalls", "foretasted", "foretastes", "forewarned",
09081     "forfeiting", "forfeiture", "forgathers", "forgetting",
09082     "forgivable", "forlornest", "formalists", "formations",
09083     "formatting", "formidable", "formidably", "formlessly",
09084     "formulated", "formulates", "fornicated", "fornicates",
09085     "fornicator", "forsythias", "forthright", "fortifying",
09086     "fortissimo", "fortnights", "fortressed", "fortresses",
09087     "fortuitous", "forwardest", "forwarding", "foundation",
09088     "foundering", "foundlings", "fountained", "foursquare",
09089     "fourteenth", "foxhunting", "foxtrotted", "fractional",
09090     "fracturing", "fragmented", "fragrances", "fragrantly",
09091     "frameworks", "franchised", "franchisee", "franchiser",
09092     "franchises", "fraternity", "fratricide", "fraudsters",
09093     "fraudulent", "fraughting", "freakishly", "freebasing",
09094     "freebooter", "freeholder", "freelanced", "freelancer",
09095     "freelances", "freeloaded", "freeloader", "freestyles",
09096     "freewheels", "freighters", "freighting", "frenziedly",
09097     "frequented", "frequenter", "frequently", "freshening",
09098     "freshwater", "fricasseed", "fricassees", "fricatives",
09099     "friendless", "friendlier", "friendlies", "friendship",
09100     "frightened", "fripperies", "friskiness", "frittering",
09101     "frolicking", "frolicsome", "frontbench", "frostbites",
09102     "frostiness", "fructified", "fructifies", "fruitcakes",
09103     "fruiterers", "fruitfully", "frustrated", "frustrates",
09104     "fulfilling", "fulminated", "fulminates", "fumigating",
09105     "fumigation", "fumigators", "functional", "functioned",
09106     "funereally", "fungicidal", "fungicides", "funiculars",
09107     "furbishing", "furloughed", "furnishing", "furthering",
09108     "fusillades", "fussbudget", "futuristic", "futurities",
09109     "gabardines", "gainsaying", "gallerying", "gallivants",
09110     "gallstones", "galumphing", "gamekeeper", "gangplanks",
09111     "gangrening", "gangrenous", "gaolbreaks", "garbageman",
09112     "gargantuan", "garishness", "garlanding", "garlicking",
09113     "garnisheed", "garnishees", "garnishing", "garrisoned",
09114     "gasholders", "gasometers", "gastronome", "gastronomy",
09115     "gatehouses", "gatekeeper", "gatherings", "gaucheness",
09116     "gazetteers", "gazillions", "gearshifts", "gearwheels",
09117     "gelatinous", "generalist", "generality", "generating",
09118     "generation", "generative", "generators", "generosity",
09119     "generously", "geneticist", "genteelest", "gentlefolk",
09120     "gentleness", "gentrified", "gentrifies", "genuflects",
09121     "geocentric", "geographer", "geographic", "geological",
09122     "geologists", "geometries", "geophysics", "geothermal",
09123     "geriatrics", "germicidal", "germicides", "germinated",
09124     "germinates", "gesundheit", "ghastliest", "ghostliest",
09125     "ghostwrite", "ghostwrote", "giantesses", "gingersnap",
09126     "gingivitis", "girlfriend", "glaciation", "gladdening",
09127     "gladiators", "glasshouse", "glimmering", "glistening",
09128     "glitterati", "glittering", "gloatingly", "gloominess",
09129     "glorifying", "gloriously", "glossaries", "glossiness",
09130     "gluttonous", "goalkeeper", "goalmouths", "goalscorer",
09131     "goaltender", "gobsmacked", "gobstopper", "godfathers",
09132     "godmothers", "godparents", "goldbricks", "goldfields",
09133     "goldfishes", "goldsmiths", "gondoliers", "gooseberry",
09134     "goosesteps", "gorgeously", "governable", "governance",
09135     "government", "gracefully", "graciously", "gradations",
09136     "graduating", "graduation", "grammarian", "gramophone",
09137     "grandchild", "granddaddy", "grandstand", "granulated",
09138     "granulates", "grapefruit", "grapevines", "graphology",
09139     "grasslands", "grassroots", "gratefully", "gratifying",
09140     "gratuities", "gratuitous", "gravesides", "gravestone",
09141     "graveyards", "gravitated", "gravitates", "graybeards",
09142     "greasiness", "greatcoats", "greediness", "greenbacks",
09143     "greenfield", "greenflies", "greengages", "greenhorns",
09144     "greenhouse", "greensward", "gregarious", "grenadiers",
09145     "greyhounds", "gridlocked", "grievances", "grievously",
09146     "grindstone", "gristliest", "grizzliest", "grogginess",
09147     "grotesques", "grouchiest", "groundhogs", "groundings",
09148     "groundless", "groundnuts", "groundsman", "groundsmen",
09149     "groundwork", "grubbiness", "grudgingly", "gruesomely",
09150     "gruesomest", "grumblings", "grumpiness", "guaranteed",
09151     "guarantees", "guarantied", "guaranties", "guarantors",
09152     "guardhouse", "guardrails", "guardrooms", "guerrillas",
09153     "guesthouse", "guestrooms", "guidebooks", "guidelines",
09154     "guildhalls", "guillemots", "guillotine", "guiltiness",
09155     "guitarists", "gunfighter", "gunnysacks", "gunrunners",
09156     "gunrunning", "gunslinger", "gymnasiums", "gymnastics",
09157     "gymnosperm", "gyroscopes", "gyroscopic", "habitation",
09158     "habitually", "habituated", "habituates", "hackneying",
09159     "hacksawing", "hailstones", "hailstorms", "hairdryers",
09160     "hairpieces", "hairsprays", "hairspring", "hairstyles",
09161     "hallelujah", "hallmarked", "halterneck", "hamburgers",
09162     "hammerhead", "hammerings", "hamstrings", "handbagged",
09163     "handbrakes", "handcrafts", "handcuffed", "handedness",
09164     "handicraft", "handlebars", "handmaiden", "handpicked",
09165     "handshakes", "handsomely", "handsomest", "handspring",
09166     "handstands", "hankerings", "happenings", "haranguing",
09167     "harassment", "harbingers", "hardcovers", "hardheaded",
09168     "hardliners", "harlequins", "harmlessly", "harmonicas",
09169     "harmonious", "harnessing", "harpooning", "harrumphed",
09170     "harvesters", "harvesting", "hatchbacks", "hatcheries",
09171     "haughtiest", "hauntingly", "haversacks", "headbanger",
09172     "headboards", "headbutted", "headcheese", "headcounts",
09173     "headhunted", "headhunter", "headlights", "headliners",
09174     "headlining", "headmaster", "headphones", "headstones",
09175     "headstrong", "headwaiter", "headwaters", "healthiest",
09176     "hearkening", "heartaches", "heartbeats", "heartbreak",
09177     "heartbroke", "heartening", "hearthrugs", "heartiness",
09178     "heartlands", "heartthrob", "heathenish", "heatstroke",
09179     "heavenlier", "heavenward", "hectically", "hedonistic",
09180     "heedlessly", "heightened", "helicopter", "heliotrope",
09181     "helplessly", "hemisphere", "hemophilia", "hemorrhage",
09182     "hemorrhoid", "henceforth", "henpecking", "heptagonal",
09183     "heptathlon", "herbaceous", "herbalists", "herbicides",
09184     "herbivores", "hereabouts", "hereafters", "hereditary",
09185     "heretofore", "hermitages", "heroically", "hesitantly",
09186     "hesitating", "hesitation", "heterodoxy", "heuristics",
09187     "hexameters", "hibernated", "hibernates", "hibiscuses",
09188     "hieroglyph", "highchairs", "highlander", "highlights",
09189     "hightailed", "highwayman", "highwaymen", "hijackings",
09190     "hindrances", "hinterland", "hiphuggers", "histamines",
09191     "histograms", "historians", "historical", "histrionic",
09192     "hitchhiked", "hitchhiker", "hitchhikes", "hoarseness",
09193     "hobbyhorse", "hobgoblins", "hobnailing", "hobnobbing",
09194     "hodgepodge", "holidaying", "hollowness", "hollyhocks",
09195     "holocausts", "holographs", "holography", "holstering",
09196     "homebodies", "homecoming", "homeliness", "homemakers",
09197     "homeowners", "homesteads", "homeworker", "homoerotic",
09198     "homographs", "homophobia", "homophobic", "homophones",
09199     "homosexual", "honeycombs", "honeymoons", "honoraries",
09200     "honorarium", "honorifics", "hoodwinked", "hopelessly",
09201     "horizontal", "horoscopes", "horrendous", "horrifying",
09202     "horseboxes", "horseflies", "horsepower", "horseshoed",
09203     "horseshoes", "horsetails", "horsewhips", "horsewoman",
09204     "horsewomen", "hospitable", "hospitably", "hostelries",
09205     "hostessing", "hotchpotch", "hotfooting", "hothousing",
09206     "houseboats", "housebound", "housebreak", "housebroke",
09207     "houseclean", "housecoats", "houseflies", "households",
09208     "housemaids", "housemates", "houseplant", "houseproud",
09209     "housewares", "housewives", "hovercraft", "huckstered",
09210     "hullabaloo", "humaneness", "humanistic", "humanities",
09211     "humbleness", "humbugging", "humdingers", "humidified",
09212     "humidifier", "humidifies", "humiliated", "humiliates",
09213     "hummocking", "humorously", "humpbacked", "hunchbacks",
09214     "hundredths", "huntresses", "hurricanes", "husbanding",
09215     "hydrangeas", "hydraulics", "hydrofoils", "hydrolysis",
09216     "hydrometer", "hydroplane", "hydroponic", "hygienists",
09217     "hygrometer", "hyperbolas", "hyperbolic", "hyperlinks",
09218     "hyperspace", "hyphenated", "hyphenates", "hypnotists",
09219     "hypocrites", "hypodermic", "hypotenuse", "hypotheses",
09220     "hypothesis", "hysteresis", "hysterical", "icebreaker",
09221     "iconoclasm", "iconoclast", "idealistic", "identified",
09222     "identifier", "identifies", "identikits", "identities",
09223     "ideographs", "ideologies", "ideologist", "ideologues",
09224     "idolatrous", "ignominies", "ignorantly", "illegality",
09225     "illiteracy", "illiterate", "illuminate", "illumining",
09226     "illustrate", "imaginable", "imaginably", "imaginings",
09227     "imbalanced", "imbalances", "imbecility", "imbroglios",
09228     "imitations", "immaculate", "immaterial", "immaturely",
09229     "immaturity", "immemorial", "immersions", "immigrants",
09230     "immigrated", "immigrates", "imminently", "immobility",
09231     "immoderate", "immodestly", "immolating", "immolation",
09232     "immorality", "immortally", "immunology", "impairment",
09233     "impalement", "impalpable", "impassable", "impatience",
09234     "impeaching", "impeccable", "impeccably", "impediment",
09235     "impenitent", "imperative", "imperfects", "imperially",
09236     "impersonal", "impervious", "impishness", "implacable",
09237     "implacably", "implanting", "implements", "implicated",
09238     "implicates", "implicitly", "implosions", "impolitely",
09239     "importance", "importuned", "importunes", "imposingly",
09240     "imposition", "impossible", "impossibly", "impostures",
09241     "impotently", "impounding", "impoverish", "impregnate",
09242     "impresario", "impressing", "impression", "impressive",
09243     "imprimatur", "imprinting", "imprisoned", "improbable",
09244     "improbably", "impromptus", "improperly", "improvable",
09245     "improvised", "improvises", "imprudence", "impudently",
09246     "impurities", "imputation", "inaccuracy", "inaccurate",
09247     "inactivity", "inadequacy", "inadequate", "inamoratas",
09248     "inaugurals", "inaugurate", "inbounding", "inbreeding",
09249     "incapacity", "incarnated", "incarnates", "incautious",
09250     "incendiary", "incentives", "inceptions", "incestuous",
09251     "inchoating", "incidences", "incidental", "incinerate",
09252     "incisively", "incitement", "incivility", "inclemency",
09253     "inclusions", "incognitos", "incoherent", "incomplete",
09254     "inconstant", "increasing", "incredible", "incredibly",
09255     "increments", "incubating", "incubation", "incubators",
09256     "inculcated", "inculcates", "inculpated", "inculpates",
09257     "incumbency", "incumbents", "incurables", "incursions",
09258     "indecenter", "indecently", "indecision", "indecisive",
09259     "indecorous", "indefinite", "indelicacy", "indelicate",
09260     "indentured", "indentures", "indexation", "indicating",
09261     "indication", "indicative", "indicators", "indictable",
09262     "indictment", "indigenous", "indirectly", "indiscreet",
09263     "indisposed", "indistinct", "individual", "indolently",
09264     "inducement", "inductance", "inductions", "indulgence",
09265     "industrial", "industries", "inebriated", "inebriates",
09266     "ineducable", "inelegance", "ineligible", "ineptitude",
09267     "inequality", "inequities", "inevitable", "inevitably",
09268     "inexorable", "inexorably", "inexpertly", "infallible",
09269     "infallibly", "infamously", "infantries", "infarction",
09270     "infatuated", "infatuates", "infections", "infectious",
09271     "infelicity", "inferences", "infidelity", "infielders",
09272     "infighting", "infiltrate", "infinitely", "infinities",
09273     "infinitive", "infinitude", "inflatable", "inflecting",
09274     "inflection", "inflexible", "inflexibly", "inflexions",
09275     "inflicting", "infliction", "influenced", "influences",
09276     "informally", "informants", "infraction", "infrequent",
09277     "infringing", "infuriated", "infuriates", "inglenooks",
09278     "inglorious", "ingraining", "ingratiate", "ingredient",
09279     "inhabitant", "inhabiting", "inhalation", "inhalators",
09280     "inherently", "inheriting", "inheritors", "inhibiting",
09281     "inhibition", "inhumanely", "inhumanity", "inimically",
09282     "inimitable", "inimitably", "iniquities", "iniquitous",
09283     "initiating", "initiation", "initiative", "initiators",
09284     "injections", "injunction", "injustices", "innkeepers",
09285     "innocenter", "innocently", "innovating", "innovation",
09286     "innovative", "innovators", "innovatory", "innuendoed",
09287     "innumeracy", "innumerate", "inoculated", "inoculates",
09288     "inoperable", "inordinate", "inpatients", "inquietude",
09289     "inquisitor", "insanitary", "insatiable", "insatiably",
09290     "inscribing", "insecurely", "insecurity", "inseminate",
09291     "insensible", "insensibly", "insentient", "insertions",
09292     "insightful", "insinuated", "insinuates", "insipidity",
09293     "insistence", "insolently", "insolubles", "insolvable",
09294     "insolvency", "insolvents", "insomniacs", "insouciant",
09295     "inspecting", "inspection", "inspectors", "installing",
09296     "instancing", "instigated", "instigates", "instigator",
09297     "instilling", "instituted", "institutes", "instructed",
09298     "instructor", "instrument", "insularity", "insulating",
09299     "insulation", "insulators", "insurances", "insurgence",
09300     "insurgency", "insurgents", "intangible", "intangibly",
09301     "integrally", "integrated", "integrates", "integrator",
09302     "integument", "intellects", "intensives", "intentions",
09303     "intentness", "interacted", "interbreed", "interceded",
09304     "intercedes", "intercepts", "interdicts", "interested",
09305     "interfaced", "interfaces", "interfaith", "interfered",
09306     "interferes", "interferon", "interjects", "interlaced",
09307     "interlaces", "interlards", "interleave", "interlinks",
09308     "interlocks", "interloper", "interluded", "interludes",
09309     "intermarry", "interments", "intermezzi", "intermezzo",
09310     "internally", "internists", "internment", "internship",
09311     "interposed", "interposes", "interprets", "interrupts",
09312     "intersects", "interstate", "interstice", "intertwine",
09313     "interurban", "intervened", "intervenes", "interviews",
09314     "interweave", "interwoven", "intestinal", "intestines",
09315     "intimacies", "intimately", "intimating", "intimation",
09316     "intimidate", "intolerant", "intonation", "intoxicant",
09317     "intoxicate", "intramural", "intrepidly", "intriguing",
09318     "introduced", "introduces", "introverts", "intrusions",
09319     "intrusives", "intuitions", "inundating", "inundation",
09320     "invalidate", "invaliding", "invalidity", "invaluable",
09321     "invariable", "invariably", "inveighing", "inveigling",
09322     "inventions", "inversions", "investment", "inveterate",
09323     "invigilate", "invigorate", "invincible", "invincibly",
09324     "inviolable", "invitation", "invitingly", "invocation",
09325     "ionosphere", "iridescent", "ironically", "ironmonger",
09326     "irradiated", "irradiates", "irrational", "irregulars",
09327     "irrelevant", "irresolute", "irreverent", "irrigating",
09328     "irrigation", "irritating", "irritation", "irruptions",
09329     "isometrics", "isomorphic", "iterations", "itinerants",
09330     "jackbooted", "jackhammer", "jackknifed", "jackknifes",
09331     "jackknives", "jackrabbit", "jaggedness", "jailbreaks",
09332     "jailhouses", "janitorial", "jaundicing", "jauntiness",
09333     "jawbreaker", "jaywalkers", "jaywalking", "jealousies",
09334     "jellybeans", "jettisoned", "jingoistic", "jinrikisha",
09335     "jitterbugs", "jitteriest", "jobsworths", "jockstraps",
09336     "jocularity", "journalese", "journalism", "journalist",
09337     "journeying", "journeyman", "journeymen", "joyfullest",
09338     "joyfulness", "joyousness", "jubilantly", "jubilation",
09339     "judicature", "judicially", "juggernaut", "julienning",
09340     "justifying", "juxtaposed", "juxtaposes", "kangarooed",
09341     "keelhauled", "kerchiefed", "kerfuffles", "kettledrum",
09342     "keyboarded", "keyboarder", "keypunched", "keypunches",
09343     "keystroked", "keystrokes", "kickboxing", "kickstands",
09344     "kidnappers", "kidnapping", "kilocycles", "kindliness",
09345     "kindnesses", "kinematics", "kingfisher", "kingmakers",
09346     "kissograms", "kitchening", "knackering", "knackwurst",
09347     "kneecapped", "knickknack", "knighthood", "knockabout",
09348     "knowingest", "kohlrabies", "kookaburra", "laboratory",
09349     "labyrinths", "lacerating", "laceration", "lachrymose",
09350     "lacquering", "ladyfinger", "lagniappes", "lamaseries",
09351     "lambasting", "lamebrains", "lamentable", "lamentably",
09352     "laminating", "lamination", "lampooning", "lampshades",
09353     "landholder", "landladies", "landlocked", "landlubber",
09354     "landmasses", "landowners", "landowning", "landscaped",
09355     "landscaper", "landscapes", "landslides", "languished",
09356     "languishes", "languorous", "lapidaries", "laryngitis",
09357     "lascivious", "latecomers", "lateraling", "laughingly",
09358     "launderers", "laundering", "laundrette", "laundromat",
09359     "laundryman", "laundrymen", "laureating", "lavatorial",
09360     "lavatories", "lavendered", "lavishness", "lawbreaker",
09361     "lawfulness", "lawnmowers", "lawrencium", "laypersons",
09362     "leadership", "leafleting", "leasebacks", "leaseholds",
09363     "legalistic", "legalities", "legibility", "legislated",
09364     "legislates", "legislator", "legitimacy", "legitimate",
09365     "leguminous", "legwarmers", "leitmotifs", "leitmotivs",
09366     "lemongrass", "lengthened", "lengthiest", "lengthwise",
09367     "leprechaun", "lesbianism", "letterhead", "leukocytes",
09368     "leveraging", "leviathans", "levitating", "levitation",
09369     "liberalism", "liberality", "liberating", "liberation",
09370     "liberators", "libertines", "libidinous", "librarians",
09371     "librettist", "licentiate", "licentious", "lieutenant",
09372     "lifeguards", "lifesavers", "lifesaving", "lifestyles",
09373     "ligaturing", "lightening", "lighthouse", "lightnings",
09374     "lightships", "likelihood", "likenesses", "limelights",
09375     "limitation", "limousines", "lineaments", "linebacker",
09376     "lingerings", "linguistic", "lipreading", "lipsticked",
09377     "liquefying", "liqueuring", "liquidated", "liquidates",
09378     "liquidator", "liquorices", "listenable", "listlessly",
09379     "literature", "lithograph", "litigating", "litigation",
09380     "litigators", "litterbugs", "littleness", "liturgical",
09381     "livability", "livelihood", "liveliness", "liverwurst",
09382     "lobotomies", "lobstering", "localities", "locksmiths",
09383     "locomotion", "locomotive", "lodestones", "loganberry",
09384     "logarithms", "loggerhead", "logistical", "logrolling",
09385     "loincloths", "loneliness", "longhouses", "longitudes",
09386     "lookalikes", "lopsidedly", "loquacious", "lorgnettes",
09387     "loudhailer", "loudmouths", "loveliness", "lovemaking",
09388     "lowlanders", "lubricants", "lubricated", "lubricates",
09389     "lubricator", "lubricious", "lugubrious", "lumberjack",
09390     "lumberyard", "luminaries", "luminosity", "luminously",
09391     "lumpectomy", "lunchboxes", "luncheoned", "lunchrooms",
09392     "lunchtimes", "lusciously", "luxuriance", "luxuriated",
09393     "luxuriates", "lymphatics", "macadamias", "macerating",
09394     "maceration", "machinists", "mackintosh", "macrocosms",
09395     "maelstroms", "magistracy", "magistrate", "magnifiers",
09396     "magnifying", "magnitudes", "maharajahs", "maharishis",
09397     "mahoganies", "maidenhair", "maidenhead", "maidenhood",
09398     "mainframes", "mainlining", "mainspring", "mainstream",
09399     "maintained", "maintainer", "maisonette", "majordomos",
09400     "majorettes", "majorities", "makeshifts", "makeweight",
09401     "malcontent", "malefactor", "malevolent", "malignancy",
09402     "malignants", "malingered", "malingerer", "malodorous",
09403     "maltreated", "mammalians", "mammograms", "manageable",
09404     "management", "manageress", "managerial", "mangetouts",
09405     "manhandled", "manhandles", "maniacally", "manicuring",
09406     "manicurist", "manifested", "manifestly", "manifestos",
09407     "manifolded", "manipulate", "mannequins", "mannerisms",
09408     "manservant", "manumitted", "manuscript", "maraschino",
09409     "marathoner", "margaritas", "marginalia", "marginally",
09410     "marinading", "marinating", "marionette", "marketable",
09411     "marketeers", "marquesses", "marshaling", "marshlands",
09412     "marsupials", "mascaraing", "masculines", "masochists",
09413     "masquerade", "massacring", "mastectomy", "mastermind",
09414     "masterwork", "masticated", "masticates", "masturbate",
09415     "matchbooks", "matchboxes", "matchmaker", "matchstick",
09416     "materially", "maternally", "matriarchs", "matriarchy",
09417     "matricides", "mattresses", "maturation", "maturities",
09418     "maundering", "mausoleums", "mavericked", "mayflowers",
09419     "mayonnaise", "mayoresses", "meadowlark", "meagerness",
09420     "meandering", "meaningful", "measurable", "measurably",
09421     "meatloaves", "mechanical", "mechanisms", "medallions",
09422     "meddlesome", "medicating", "medication", "medicinals",
09423     "mediocrity", "meditating", "meditation", "meditative",
09424     "megacycles", "megalithic", "megaphoned", "megaphones",
09425     "melancholy", "mellowness", "melodramas", "membership",
09426     "membranous", "memorandum", "menacingly", "menageries",
09427     "mendacious", "mendicants", "meningitis", "menopausal",
09428     "menstruate", "mentioning", "mercantile", "merchanted",
09429     "mercifully", "mergansers", "merrymaker", "messengers",
09430     "metabolism", "metacarpal", "metacarpus", "metallurgy",
09431     "metastases", "metastasis", "metatarsal", "meteorites",
09432     "meteoroids", "methodical", "meticulous", "metrically",
09433     "metronomes", "metropolis", "mettlesome", "mezzanines",
09434     "microchips", "microcosms", "microfiche", "microfilms",
09435     "microlight", "microphone", "microscope", "microscopy",
09436     "microwaved", "microwaves", "middlebrow", "midfielder",
09437     "midsection", "midshipman", "midshipmen", "mightiness",
09438     "migrations", "mileometer", "milestones", "militantly",
09439     "militarily", "militarism", "militarist", "militating",
09440     "militiaman", "militiamen", "milkshakes", "millennial",
09441     "millennium", "millionths", "millipedes", "millstones",
09442     "milometers", "mimeograph", "mindedness", "mindlessly",
09443     "minefields", "mineralogy", "minestrone", "miniatured",
09444     "miniatures", "minimalism", "minimalist", "miniseries",
09445     "miniskirts", "ministered", "ministrant", "ministries",
09446     "minorities", "minuscules", "minuteness", "miraculous",
09447     "mirthfully", "misapplied", "misapplies", "misbehaved",
09448     "misbehaves", "miscalling", "miscarried", "miscarries",
09449     "miscasting", "miscellany", "mischanced", "mischances",
09450     "mischiefed", "misconduct", "miscounted", "miscreants",
09451     "misdealing", "misdirects", "miserables", "misfitting",
09452     "misfortune", "misgivings", "misgoverns", "misguiding",
09453     "mishandled", "mishandles", "mishapping", "mishearing",
09454     "mishitting", "mishmashes", "misinforms", "misjudging",
09455     "misleading", "mismanaged", "mismanages", "mismatched",
09456     "mismatches", "misnomered", "misogynist", "misplacing",
09457     "misplaying", "misprinted", "misquoting", "misreading",
09458     "misreports", "missionary", "missioning", "misspelled",
09459     "misstating", "misstepped", "mistakenly", "mistreated",
09460     "mistresses", "mistrusted", "mitigating", "mitigation",
09461     "mizzenmast", "moderately", "moderating", "moderation",
09462     "moderators", "modernists", "modifiable", "modulating",
09463     "modulation", "modulators", "moistening", "mollifying",
09464     "molybdenum", "monarchies", "monarchism", "monarchist",
09465     "monetarily", "monetarism", "monetarist", "moneyboxes",
09466     "moneymaker", "monitoring", "monochrome", "monogamous",
09467     "monographs", "monolithic", "monologued", "monologues",
09468     "monomaniac", "monophonic", "monoplanes", "monopolies",
09469     "monopolist", "monotheism", "monotheist", "monotoning",
09470     "monotonous", "monsignors", "monstrance", "monumental",
09471     "moonlights", "moonscapes", "moonshines", "moonstones",
09472     "moonstruck", "moralistic", "moralities", "moratorium",
09473     "moroseness", "morpheming", "morphology", "mortgagees",
09474     "mortgaging", "mortgagors", "morticians", "mortifying",
09475     "mortuaries", "mosquitoes", "mothballed", "motherhood",
09476     "motherland", "motherless", "motionless", "motivating",
09477     "motivation", "motivators", "motiveless", "motorbiked",
09478     "motorbikes", "motorboats", "motorcades", "motorcycle",
09479     "motormouth", "mouldering", "mountebank", "mournfully",
09480     "mousetraps", "mouthpiece", "moviegoers", "mozzarella",
09481     "muckrakers", "muckraking", "mudslinger", "mujaheddin",
09482     "mulberries", "mulishness", "multimedia", "multiparty",
09483     "multiplied", "multiplier", "multiplies", "multitudes",
09484     "mummifying", "municipals", "munificent", "murmurings",
09485     "mushroomed", "musicality", "musicology", "musketeers",
09486     "muskmelons", "mutability", "mutilating", "mutilation",
09487     "mutineered", "mutinously", "mutterings", "myopically",
09488     "mysterious", "mysterying", "mystically", "mystifying",
09489     "nameplates", "nanosecond", "narcissism", "narcissist",
09490     "narcolepsy", "narrations", "narratives", "narrowness",
09491     "nasturtium", "nationally", "nationhood", "nationwide",
09492     "nativities", "naturalism", "naturalist", "naughtiest",
09493     "nauseating", "nauseously", "nautically", "nautiluses",
09494     "navigating", "navigation", "navigators", "necklacing",
09495     "necromancy", "necropolis", "nectarines", "needlessly",
09496     "needlework", "negatively", "negativing", "negativity",
09497     "neglectful", "neglecting", "negligence", "negligible",
09498     "negligibly", "negotiable", "negotiated", "negotiates",
09499     "negotiator", "neoclassic", "neologisms", "nepotistic",
09500     "nethermost", "nettlesome", "networking", "neutralist",
09501     "neutrality", "newfangled", "newsagents", "newscaster",
09502     "newsgroups", "newshounds", "newsletter", "newspapers",
09503     "newsreader", "newsstands", "newsworthy", "nicknaming",
09504     "niggarding", "nightclubs", "nightdress", "nightgowns",
09505     "nighthawks", "nightlight", "nightmares", "nightshade",
09506     "nightshirt", "nightspots", "nightstand", "nightstick",
09507     "nihilistic", "nimbleness", "nincompoop", "nineteenth",
09508     "ninetieths", "nitpickers", "nitpicking", "noblewoman",
09509     "noblewomen", "noisemaker", "nominating", "nomination",
09510     "nominative", "nonaligned", "nonchalant", "nondrinker",
09511     "nonesuches", "nonfiction", "nonmembers", "nonpareils",
09512     "nonpayment", "nonplussed", "nonprofits", "nonsmokers",
09513     "nonsmoking", "nonstarter", "nonsupport", "nontaxable",
09514     "nontrivial", "nonviolent", "northbound", "northerner",
09515     "northwards", "nosebleeds", "nosediving", "nostalgics",
09516     "noteworthy", "noticeable", "noticeably", "notifiable",
09517     "notionally", "nourishing", "novelettes", "novitiates",
09518     "nullifying", "numberless", "numerating", "numeration",
09519     "numerators", "numerology", "numismatic", "nursemaids",
09520     "nurseryman", "nurserymen", "nutcracker", "nuthatches",
09521     "nutmegging", "nutriments", "nutritious", "oafishness",
09522     "obdurately", "obdurating", "obediently", "obeisances",
09523     "obfuscated", "obfuscates", "obituaries", "objections",
09524     "objectives", "obligating", "obligation", "obligatory",
09525     "obligingly", "obliterate", "obsequious", "observable",
09526     "observably", "observance", "obsessions", "obsessives",
09527     "obsoleting", "obstetrics", "obstructed", "obtainable",
09528     "obtuseness", "occasional", "occasioned", "occidental",
09529     "occlusions", "occultists", "occupation", "occurrence",
09530     "oceanfront", "oceangoing", "offensives", "officially",
09531     "officiated", "officiates", "offloading", "offsetting",
09532     "oftentimes", "oleaginous", "oligarchic", "omnipotent",
09533     "omniscient", "omnivorous", "oncologist", "onslaughts",
09534     "opalescent", "opaqueness", "openhanded", "operations",
09535     "operatives", "ophthalmic", "opposition", "oppressing",
09536     "oppression", "oppressive", "oppressors", "opprobrium",
09537     "optimistic", "optionally", "orangeades", "orangeness",
09538     "orangeries", "orangutans", "oratorical", "orchestral",
09539     "orchestras", "ordinances", "ordinarier", "ordinaries",
09540     "ordinarily", "ordination", "organelles", "orientated",
09541     "orientates", "originally", "originated", "originates",
09542     "originator", "ornamental", "ornamented", "ornateness",
09543     "orphanages", "orthodoxes", "orthogonal", "oscillated",
09544     "oscillates", "oscillator", "ostensible", "ostensibly",
09545     "osteopaths", "osteopathy", "outbalance", "outbidding",
09546     "outcasting", "outclassed", "outclasses", "outcropped",
09547     "outfielder", "outfitters", "outfitting", "outflanked",
09548     "outgrowing", "outgrowths", "outguessed", "outguesses",
09549     "outgunning", "outlandish", "outlasting", "outlooking",
09550     "outnumbers", "outpatient", "outperform", "outplaying",
09551     "outpointed", "outpouring", "outputting", "outrageous",
09552     "outranking", "outreached", "outreaches", "outriggers",
09553     "outrunning", "outselling", "outsetting", "outshining",
09554     "outsmarted", "outsourced", "outsources", "outspreads",
09555     "outstation", "outstaying", "outstretch", "outwearing",
09556     "outweighed", "outwitting", "outworkers", "overacting",
09557     "overactive", "overbooked", "overburden", "overcharge",
09558     "overcoming", "overcooked", "overcrowds", "overdosing",
09559     "overdrafts", "overdrives", "overeating", "overexcite",
09560     "overexpose", "overextend", "overflight", "overflowed",
09561     "overflying", "overground", "overgrowth", "overhauled",
09562     "overheated", "overjoying", "overkilled", "overlapped",
09563     "overlaying", "overloaded", "overlooked", "overmanned",
09564     "overmuches", "overnights", "overpasses", "overpaying",
09565     "overplayed", "overpowers", "overpriced", "overprices",
09566     "overprints", "overrating", "overreacts", "overridden",
09567     "overriding", "overruling", "overseeing", "overshadow",
09568     "overshoots", "oversights", "oversizing", "oversleeps",
09569     "overspends", "overspread", "overstated", "overstates",
09570     "overstayed", "overstocks", "oversupply", "overtaking",
09571     "overtaxing", "overthrown", "overthrows", "overtiring",
09572     "overturned", "overvalued", "overvalues", "overweight",
09573     "overwhelms", "overwinter", "overworked", "overwrites",
09574     "oxygenated", "oxygenates", "pacemakers", "pacesetter",
09575     "pachyderms", "paddocking", "padlocking", "paederasts",
09576     "paginating", "pagination", "painfuller", "painkiller",
09577     "painlessly", "paintboxes", "paintbrush", "palavering",
09578     "palimpsest", "palindrome", "pallbearer", "palliating",
09579     "palliation", "palliative", "palpitated", "palpitates",
09580     "paltriness", "panatellas", "pancreases", "pancreatic",
09581     "panegyrics", "panellists", "panhandled", "panhandler",
09582     "panhandles", "panickiest", "pantaloons", "pantheists",
09583     "pantomimed", "pantomimes", "paperbacks", "paperbarks",
09584     "paperclips", "papergirls", "parachuted", "parachutes",
09585     "paragraphs", "paralegals", "parallaxes", "paralytics",
09586     "paramecium", "paramedics", "parameters", "paranoiacs",
09587     "paranormal", "paraphrase", "paraplegia", "paraplegic",
09588     "paratroops", "parboiling", "parchments", "pardonable",
09589     "pardonably", "parenthood", "parliament", "parqueting",
09590     "parricides", "parsonages", "partiality", "participle",
09591     "particular", "partitions", "partitives", "partnering",
09592     "partridges", "passageway", "passengers", "passionate",
09593     "passioning", "passivised", "passivises", "passivized",
09594     "passivizes", "pasteboard", "pastorates", "patchiness",
09595     "patchworks", "paternally", "pathfinder", "pathogenic",
09596     "patientest", "patisserie", "patriarchs", "patriarchy",
09597     "patricians", "patricides", "patriotism", "patrolling",
09598     "patronages", "patronymic", "patterning", "paunchiest",
09599     "pavemented", "pawnbroker", "paymasters", "peacefully",
09600     "peacemaker", "peashooter", "peccadillo", "peculiarly",
09601     "pedagogics", "pedagogued", "pedagogues", "pedestrian",
09602     "pediatrics", "pedicuring", "pedometers", "pejorative",
09603     "pekingeses", "penetrable", "penetrated", "penetrates",
09604     "penfriends", "penicillin", "peninsular", "peninsulas",
09605     "penitently", "penmanship", "pennyworth", "penologist",
09606     "pensioners", "pensioning", "pentagonal", "pentameter",
09607     "pentathlon", "penthoused", "penthouses", "peppercorn",
09608     "peppermint", "pepperonis", "perceiving", "percentage",
09609     "percentile", "perception", "perceptive", "perceptual",
09610     "percipient", "percolated", "percolates", "percolator",
09611     "percussion", "percussive", "peregrines", "peremptory",
09612     "perennials", "perfectest", "perfecting", "perfection",
09613     "perfidious", "perforated", "perforates", "performers",
09614     "performing", "pericardia", "perihelion", "perilously",
09615     "perimeters", "periodical", "peripheral", "periscoped",
09616     "periscopes", "perishable", "peritoneum", "periwigged",
09617     "periwinkle", "permafrost", "permanence", "permanency",
09618     "permanents", "permeating", "permeation", "permission",
09619     "permissive", "permitting", "pernicious", "peroration",
09620     "peroxiding", "perpetrate", "perpetuals", "perpetuate",
09621     "perpetuity", "perplexing", "perplexity", "perquisite",
09622     "persecuted", "persecutes", "persecutor", "persevered",
09623     "perseveres", "persiflage", "persimmons", "persistent",
09624     "persisting", "personable", "personages", "personally",
09625     "perspiring", "persuading", "persuasion", "persuasive",
09626     "pertaining", "pertinence", "pertinents", "perturbing",
09627     "perversely", "perversion", "perversity", "perverting",
09628     "pessimists", "pesticides", "pestilence", "petitioned",
09629     "petitioner", "petrifying", "petrolatum", "petticoats",
09630     "petulantly", "phagocytes", "pharmacies", "pharmacist",
09631     "pharyngeal", "phenomenal", "phenomenas", "phenomenon",
09632     "pheromones", "philanders", "philatelic", "philippics",
09633     "philistine", "philosophy", "phlegmatic", "phonecards",
09634     "phonically", "phonograph", "phosphates", "phosphoric",
09635     "phosphorus", "photocells", "photogenic", "photograph",
09636     "photostats", "phrasebook", "phrenology", "physically",
09637     "physicians", "physicists", "physicking", "physiology",
09638     "pianissimo", "pianoforte", "picaresque", "piccalilli",
09639     "pickpocket", "picnickers", "picnicking", "pictograph",
09640     "pictorials", "piercingly", "pigeonhole", "piggybacks",
09641     "pilgrimage", "pillioning", "pillorying", "pillowcase",
09642     "pillowslip", "pilothouse", "pimpernels", "pincushion",
09643     "pineapples", "pinfeather", "pinpointed", "pinpricked",
09644     "pinstriped", "pinstripes", "pinwheeled", "pioneering",
09645     "pipsqueaks", "pirouetted", "pirouettes", "pistachios",
09646     "pistillate", "pitchforks", "pitifuller", "pitilessly",
09647     "placarding", "placements", "placentals", "plagiarism",
09648     "plagiarist", "plainchant", "plaintiffs", "planeloads",
09649     "plantation", "plasterers", "plastering", "plasticity",
09650     "plateauing", "platformed", "platitudes", "platooning",
09651     "platypuses", "playacting", "playground", "playgroups",
09652     "playhouses", "playschool", "playthings", "playwright",
09653     "pleadingly", "pleasanter", "pleasantly", "pleasantry",
09654     "pleasingly", "pleasuring", "plebiscite", "plenitudes",
09655     "pliability", "plottering", "pluckiness", "plummeting",
09656     "plunderers", "plundering", "pluperfect", "pluralists",
09657     "plutocracy", "plutocrats", "pocketbook", "pocketfuls",
09658     "pockmarked", "podiatrist", "poetically", "poignantly",
09659     "poinsettia", "poisonings", "polarities", "polemicist",
09660     "politburos", "politeness", "politician", "politicked",
09661     "pollinated", "pollinates", "pollutants", "polonaises",
09662     "polyesters", "polygamist", "polygamous", "polygraphs",
09663     "polyhedron", "polynomial", "polyphonic", "polysemous",
09664     "polytheism", "polytheist", "pompadours", "pontifical",
09665     "pontooning", "poorhouses", "popularity", "populating",
09666     "population", "porcelains", "porcupines", "porpoising",
09667     "porringers", "portcullis", "portending", "portentous",
09668     "portfolios", "portioning", "portliness", "portrayals",
09669     "portraying", "positional", "positioned", "positively",
09670     "positivest", "positivism", "positivist", "possessing",
09671     "possession", "possessive", "possessors", "possiblest",
09672     "postdating", "posteriors", "posthumous", "postmarked",
09673     "postmaster", "postmodern", "postmortem", "postpartum",
09674     "postponing", "postscript", "postseason", "postulated",
09675     "postulates", "potbellied", "potbellies", "potboilers",
09676     "potentates", "potentials", "potholders", "potpourris",
09677     "poulticing", "powerboats", "powerfully", "powerhouse",
09678     "practicals", "pragmatics", "pragmatism", "pragmatist",
09679     "pranksters", "preachiest", "preambling", "prearrange",
09680     "precarious", "precaution", "precedence", "precedents",
09681     "preceptors", "preciosity", "preciously", "precipices",
09682     "precluding", "preclusion", "precocious", "precooking",
09683     "precursors", "predecease", "predefined", "predestine",
09684     "predicated", "predicates", "predicting", "prediction",
09685     "predictive", "predictors", "predigests", "predispose",
09686     "preeminent", "preempting", "preemption", "preemptive",
09687     "preexisted", "prefabbing", "prefecture", "preferable",
09688     "preferably", "preference", "preferment", "preferring",
09689     "prefigured", "prefigures", "preheating", "prehensile",
09690     "prehistory", "prejudging", "prejudiced", "prejudices",
09691     "premarital", "premiering", "preordains", "prepackage",
09692     "prepayment", "prepossess", "prerecords", "presbytery",
09693     "preschools", "prescience", "prescribed", "prescribes",
09694     "presenters", "presenting", "preservers", "preserving",
09695     "presetting", "preshrinks", "presidency", "presidents",
09696     "pressuring", "presumable", "presumably", "presuppose",
09697     "pretenders", "pretending", "pretexting", "prettified",
09698     "prettifies", "prettiness", "prevailing", "prevalence",
09699     "prevalents", "preventing", "prevention", "preventive",
09700     "previewers", "previewing", "previously", "prickliest",
09701     "priesthood", "priestlier", "primitives", "primordial",
09702     "primrosing", "princelier", "princesses", "principals",
09703     "principled", "principles", "prioresses", "priorities",
09704     "prissiness", "privateers", "privations", "privileged",
09705     "privileges", "prizefight", "procedural", "procedures",
09706     "proceeding", "processing", "procession", "processors",
09707     "proclaimed", "proclivity", "procreated", "procreates",
09708     "proctoring", "procurator", "prodigally", "prodigious",
09709     "production", "productive", "professing", "profession",
09710     "professors", "proffering", "proficient", "profitable",
09711     "profitably", "profiteers", "profligacy", "profligate",
09712     "profounder", "profoundly", "profundity", "profusions",
09713     "progenitor", "prognostic", "programmer", "progressed",
09714     "progresses", "prohibited", "projectile", "projecting",
09715     "projection", "projectors", "prolapsing", "prolonging",
09716     "promenaded", "promenades", "prominence", "promissory",
09717     "promontory", "promotions", "promptings", "promptness",
09718     "promulgate", "pronghorns", "pronominal", "pronounced",
09719     "pronounces", "proofreads", "propaganda", "propagated",
09720     "propagates", "propagator", "propellant", "propellers",
09721     "propelling", "propensity", "propertied", "properties",
09722     "prophecies", "prophesied", "prophesies", "prophetess",
09723     "propitiate", "propitious", "proponents", "proportion",
09724     "propounded", "proprietor", "propulsion", "propulsive",
09725     "proscenium", "prosciutto", "proscribed", "proscribes",
09726     "prosecuted", "prosecutes", "prosecutor", "proselyted",
09727     "proselytes", "prospected", "prospector", "prospectus",
09728     "prospering", "prosperity", "prosperous", "prostheses",
09729     "prosthesis", "prosthetic", "prostitute", "prostrated",
09730     "prostrates", "protecting", "protection", "protective",
09731     "protectors", "protestant", "protesters", "protesting",
09732     "protoplasm", "prototypes", "protozoans", "protracted",
09733     "protractor", "protruding", "protrusion", "provenance",
09734     "provenders", "proverbial", "providence", "provincial",
09735     "provisions", "prudential", "pruriently", "psephology",
09736     "pseudonyms", "psychiatry", "psychology", "psychopath",
09737     "psychotics", "ptarmigans", "pubescence", "publicists",
09738     "publishers", "publishing", "pugilistic", "pugnacious",
09739     "pulsations", "punchlines", "punctually", "punctuated",
09740     "punctuates", "puncturing", "punishable", "punishment",
09741     "punitively", "puppeteers", "purchasers", "purchasing",
09742     "purgatives", "puritanism", "purloining", "purporting",
09743     "purposeful", "pushchairs", "pussyfoots", "putrefying",
09744     "putrescent", "puzzlement", "pyramiding", "pyromaniac",
09745     "quadrangle", "quadrature", "quadriceps", "quadrilled",
09746     "quadrilles", "quadrupeds", "quadrupled", "quadruples",
09747     "quadruplet", "quagmiring", "quaintness", "qualifiers",
09748     "qualifying", "quandaries", "quantified", "quantifier",
09749     "quantifies", "quantities", "quarantine", "quartering",
09750     "queasiness", "queenliest", "questioned", "questioner",
09751     "quickening", "quicksands", "quicksteps", "quiescence",
09752     "quietening", "quintupled", "quintuples", "quintuplet",
09753     "quotations", "rabbinical", "racecourse", "racehorses",
09754     "racetracks", "racialists", "racketeers", "raconteurs",
09755     "radiations", "radicalism", "radiograms", "ragamuffin",
09756     "raggediest", "raggedness", "railleries", "railroaded",
09757     "railwayman", "railwaymen", "rainmakers", "rainstorms",
09758     "rakishness", "ramrodding", "ramshackle", "randomness",
09759     "ransacking", "rappelling", "rapporteur", "ratcheting",
09760     "ratepayers", "rationales", "rationally", "rattletrap",
09761     "raunchiest", "ravenously", "ravishment", "razzmatazz",
09762     "reactivate", "readership", "readjusted", "readmitted",
09763     "reaffirmed", "realigning", "reallocate", "reanimated",
09764     "reanimates", "reappeared", "reapplying", "reappoints",
09765     "reappraise", "rearmament", "rearranged", "rearranges",
09766     "reasonable", "reasonably", "reassemble", "reasserted",
09767     "reassessed", "reassesses", "reassigned", "reassuring",
09768     "reawakened", "rebellions", "rebellious", "rebounding",
09769     "rebuilding", "recaptured", "recaptures", "receipting",
09770     "receivable", "receptacle", "receptions", "recessions",
09771     "recessives", "recharging", "rechecking", "recidivism",
09772     "recidivist", "recipients", "reciprocal", "recitation",
09773     "recitative", "recklessly", "reckonings", "reclaiming",
09774     "reclassify", "recollects", "recombined", "recombines",
09775     "recommence", "recommends", "recompense", "recompiled",
09776     "reconciled", "reconciles", "reconnects", "reconquers",
09777     "reconsider", "reconvened", "reconvenes", "recordings",
09778     "recounting", "recoveries", "recovering", "recreating",
09779     "recreation", "recruiters", "recruiting", "rectangles",
09780     "rectifiers", "rectifying", "recuperate", "recurrence",
09781     "recyclable", "redbreasts", "redcurrant", "redecorate",
09782     "rededicate", "redeemable", "redefining", "redemption",
09783     "redemptive", "redeployed", "redesigned", "redevelops",
09784     "redirected", "rediscover", "redistrict", "redoubling",
09785     "redoubting", "redounding", "redrafting", "redressing",
09786     "reductions", "redundancy", "reeducated", "reeducates",
09787     "reelecting", "reelection", "reemerging", "reenacting",
09788     "reenlisted", "reentering", "reevaluate", "reexamined",
09789     "reexamines", "refashions", "refereeing", "referenced",
09790     "references", "referendum", "refillable", "refinanced",
09791     "refinances", "refinement", "refineries", "refinished",
09792     "refinishes", "reflations", "reflecting", "reflection",
09793     "reflective", "reflectors", "reflexives", "refocusing",
09794     "reforested", "reformists", "refracting", "refraction",
09795     "refractory", "refraining", "refreshers", "refreshing",
09796     "refulgence", "refundable", "refutation", "regardless",
09797     "regenerate", "regimental", "regimented", "regionally",
09798     "registered", "registrant", "registrars", "registries",
09799     "regressing", "regression", "regressive", "regretting",
09800     "regrouping", "regularity", "regulating", "regulation",
09801     "regulators", "regulatory", "rehearsals", "rehearsing",
09802     "reimbursed", "reimburses", "reimposing", "reinforced",
09803     "reinforces", "reinserted", "reinstated", "reinstates",
09804     "reinvented", "reinvested", "reiterated", "reiterates",
09805     "rejections", "rejiggered", "rejoicings", "rejoinders",
09806     "rejuvenate", "rekindling", "relational", "relatively",
09807     "relativism", "relativist", "relativity", "relaunched",
09808     "relaunches", "relaxation", "relearning", "releasable",
09809     "relegating", "relegation", "relentless", "relevantly",
09810     "relinquish", "relocating", "relocation", "reluctance",
09811     "remainders", "remarkable", "remarkably", "remarriage",
09812     "remarrying", "remastered", "remediable", "remembered",
09813     "reminisced", "reminisces", "remissions", "remissness",
09814     "remittance", "remorseful", "remortgage", "remoteness",
09815     "remoulding", "remounting", "removables", "remunerate",
09816     "renascence", "renderings", "rendezvous", "renditions",
09817     "renegading", "renouncing", "renovating", "renovation",
09818     "renovators", "renumbered", "reoccupied", "reoccupies",
09819     "reoccurred", "reordering", "repackaged", "repackages",
09820     "repainting", "repairable", "reparation", "repatriate",
09821     "repayments", "repeatable", "repeatably", "repeatedly",
09822     "repellents", "repentance", "repentants", "repertoire",
09823     "repetition", "repetitive", "rephrasing", "replicated",
09824     "replicates", "reportedly", "repository", "reprehends",
09825     "represents", "repressing", "repression", "repressive",
09826     "reprieving", "reprimands", "reprinting", "reproached",
09827     "reproaches", "reprobates", "reproduced", "reproduces",
09828     "reproofing", "reptilians", "republican", "repudiated",
09829     "repudiates", "repugnance", "reputation", "requesting",
09830     "requisites", "reschedule", "rescinding", "rescission",
09831     "researched", "researcher", "researches", "resembling",
09832     "resentment", "reservedly", "reservists", "reservoirs",
09833     "resettling", "reshuffled", "reshuffles", "residences",
09834     "resignedly", "resilience", "resiliency", "resistance",
09835     "resolutely", "resolutest", "resolution", "resonances",
09836     "resonantly", "resonating", "resonators", "resounding",
09837     "resourcing", "respecters", "respectful", "respecting",
09838     "respective", "respelling", "respirator", "respondent",
09839     "responding", "responsive", "restarting", "restaurant",
09840     "restfuller", "restlessly", "restocking", "restrained",
09841     "restraints", "restricted", "restudying", "resultants",
09842     "resumption", "resupplied", "resupplies", "resurfaced",
09843     "resurfaces", "resurgence", "resurrects", "retaliated",
09844     "retaliates", "retardants", "rethinking", "reticently",
09845     "retirement", "retouching", "retracting", "retraction",
09846     "retraining", "retreading", "retreating", "retrenched",
09847     "retrenches", "retrievals", "retrievers", "retrieving",
09848     "retrograde", "retrogress", "retrospect", "returnable",
09849     "reunifying", "revealings", "revelation", "revengeful",
09850     "reverenced", "reverences", "reverently", "reversible",
09851     "reversions", "revilement", "revisiting", "revivalism",
09852     "revivalist", "revivified", "revivifies", "revocation",
09853     "revolution", "rewindable", "reworkings", "rhapsodies",
09854     "rhetorical", "rheumatics", "rheumatism", "rhinestone",
09855     "rhinoceros", "rhythmical", "riboflavin", "ricketiest",
09856     "ricocheted", "ridgepoles", "ridiculing", "ridiculous",
09857     "rightfully", "rightwards", "rigmaroles", "rigorously",
09858     "ringleader", "ringmaster", "riverfront", "riversides",
09859     "roadblocks", "roadhouses", "roadrunner", "roadworthy",
09860     "robustness", "rockabilly", "roisterers", "roistering",
09861     "rollicking", "rosebushes", "rotational", "rotisserie",
09862     "rottenness", "rottweiler", "rotundness", "roughening",
09863     "roughhouse", "roughnecks", "roundabout", "roundelays",
09864     "roundhouse", "roundworms", "roustabout", "rubberiest",
09865     "rubberneck", "rubbishing", "rudderless", "ruffianing",
09866     "ruggedness", "ruminating", "rumination", "ruminative",
09867     "runarounds", "russetting", "rustically", "rustproofs",
09868     "ruthlessly", "sabbatical", "sabotaging", "saccharine",
09869     "sacerdotal", "sacraments", "sacredness", "sacrificed",
09870     "sacrifices", "sacrileges", "sacristans", "sacristies",
09871     "sacrosanct", "saddlebags", "safeguards", "safflowers",
09872     "sailboards", "sailfishes", "saintliest", "salamander",
09873     "salesclerk", "salesgirls", "salesrooms", "saleswoman",
09874     "saleswomen", "salivating", "salivation", "sallowness",
09875     "salmonella", "saltcellar", "saltshaker", "salubrious",
09876     "salutation", "sanatorium", "sanctified", "sanctifies",
09877     "sanctioned", "sandalwood", "sandbagged", "sandblasts",
09878     "sandcastle", "sandpapers", "sandpipers", "sandstorms",
09879     "sandwiched", "sandwiches", "sanguinary", "sanguining",
09880     "sanitaries", "sanitarium", "sanitation", "saprophyte",
09881     "sapsuckers", "sarcophagi", "satellited", "satellites",
09882     "satinwoods", "satisfying", "saturating", "saturation",
09883     "sauerkraut", "sauntering", "savageness", "savageries",
09884     "sawdusting", "saxophones", "scalloping", "scallywags",
09885     "scampering", "scandalous", "scantiness", "scapegoats",
09886     "scarceness", "scarcities", "scarecrows", "scarifying",
09887     "scarlatina", "scarleting", "scarpering", "scathingly",
09888     "scattering", "scavengers", "scavenging", "scenically",
09889     "schedulers", "scheduling", "schematics", "schismatic",
09890     "schlemiels", "schlepping", "schlockier", "schmoozers",
09891     "schmoozing", "schnauzers", "schnitzels", "scholastic",
09892     "schoolbags", "schoolbook", "schoolboys", "schooldays",
09893     "schoolgirl", "schoolkids", "schoolmarm", "schoolmate",
09894     "schoolroom", "schoolwork", "schoolyard", "scientific",
09895     "scientists", "scintillas", "sclerotics", "scoreboard",
09896     "scorecards", "scorelines", "scornfully", "scoundrels",
09897     "scrabbling", "scraggiest", "scragglier", "scramblers",
09898     "scrambling", "scrapbooks", "scrapheaps", "scrappiest",
09899     "scrapyards", "scratchier", "scratching", "scratchpad",
09900     "scrawniest", "screechier", "screeching", "screenings",
09901     "screenplay", "screwballs", "scribblers", "scribbling",
09902     "scrimmaged", "scrimmages", "scrimshaws", "scriptural",
09903     "scriptures", "scroungers", "scrounging", "scrubbiest",
09904     "scruffiest", "scrummages", "scrunchies", "scrunching",
09905     "scrupulous", "scrutineer", "sculleries", "sculptural",
09906     "sculptured", "sculptures", "scuppering", "scurrilous",
09907     "seamanship", "seamlessly", "seamstress", "seasonable",
09908     "seasonally", "seasonings", "secondhand", "secondment",
09909     "secretions", "sectarians", "sectionals", "sectioning",
09910     "secularism", "secularist", "securities", "seductions",
09911     "seductress", "seemliness", "seersucker", "segmenting",
09912     "segregated", "segregates", "seismology", "selections",
09913     "selflessly", "sellotaped", "sellotapes", "semaphored",
09914     "semaphores", "semblances", "semiannual", "semibreves",
09915     "semicircle", "semicolons", "semifinals", "seminarian",
09916     "seminaries", "semiquaver", "semivowels", "semiweekly",
09917     "senatorial", "senescence", "sensations", "sensiblest",
09918     "sensitives", "sensuality", "sensuously", "sentencing",
09919     "sentiments", "separately", "separating", "separation",
09920     "separatism", "separatist", "separators", "sepulchral",
09921     "sequencers", "sequencing", "sequential", "sequesters",
09922     "serenading", "sereneness", "serpentine", "serpenting",
09923     "servanting", "serviceman", "servicemen", "serviettes",
09924     "setsquares", "settlement", "seventeens", "seventieth",
09925     "severances", "sexologist", "sextuplets", "shabbiness",
09926     "shadowiest", "shagginess", "shakedowns", "shallowest",
09927     "shamefaced", "shamefully", "shampooing", "shanghaied",
09928     "shantytown", "shapeliest", "sharpeners", "sharpening",
09929     "shattering", "sheathings", "sheepfolds", "sheepishly",
09930     "sheepskins", "shellacked", "sheltering", "shenanigan",
09931     "shepherded", "shibboleth", "shiftiness", "shillelagh",
09932     "shimmering", "shipboards", "shipowners", "shipwrecks",
09933     "shipwright", "shirttails", "shirtwaist", "shockingly",
09934     "shockproof", "shoddiness", "shoehorned", "shoemakers",
09935     "shoeshines", "shoestring", "shopaholic", "shopfitter",
09936     "shopfronts", "shopkeeper", "shoplifted", "shoplifter",
09937     "shorelines", "shortbread", "shortcakes", "shortcrust",
09938     "shortening", "shortfalls", "shorthorns", "shortlists",
09939     "shortstops", "shortwaves", "shotgunned", "shouldered",
09940     "shovelfuls", "showboated", "showcasing", "showeriest",
09941     "showground", "showpieces", "showplaces", "shrewdness",
09942     "shrillness", "shrinkable", "shrubbiest", "shuddering",
09943     "shutterbug", "shuttering", "sickenings", "sicknesses",
09944     "sideboards", "sidelights", "sidelining", "sidesaddle",
09945     "sidestroke", "sideswiped", "sideswipes", "sidetracks",
09946     "sightseers", "signatures", "signboards", "signifying",
09947     "signposted", "silhouette", "silverfish", "silveriest",
09948     "silverware", "similarity", "simpleness", "simpletons",
09949     "simplicity", "simplified", "simplifies", "simplistic",
09950     "simulacrum", "simulating", "simulation", "simulators",
09951     "simulcasts", "sinfulness", "singalongs", "singleness",
09952     "singletons", "singsonged", "singularly", "sinusoidal",
09953     "sisterhood", "situations", "sixteenths", "skateboard",
09954     "skedaddled", "skedaddles", "sketchbook", "sketchiest",
09955     "sketchpads", "skillfully", "skimpiness", "skinflints",
09956     "skinniness", "skippering", "skirmished", "skirmisher",
09957     "skirmishes", "skittering", "skittishly", "skyjackers",
09958     "skyjacking", "skylarking", "skyrockets", "skyscraper",
09959     "skywriters", "skywriting", "slackening", "slanderers",
09960     "slandering", "slanderous", "slapdashes", "slathering",
09961     "slatternly", "slaughters", "sleazebags", "sleazeball",
09962     "sleaziness", "sleepiness", "sleepovers", "sleepwalks",
09963     "sleepyhead", "sleeveless", "slenderest", "slightness",
09964     "slingbacks", "slingshots", "slipcovers", "slipperier",
09965     "slipstream", "slithering", "slobbering", "sloppiness",
09966     "slouchiest", "slovenlier", "sluggishly", "slumbering",
09967     "slumberous", "smartening", "smattering", "smokehouse",
09968     "smokestack", "smoothness", "smothering", "smuttiness",
09969     "snakebites", "snapdragon", "snappiness", "snappishly",
09970     "sneeringly", "snickering", "sniftering", "snobbishly",
09971     "snookering", "snootiness", "snorkelers", "snorkeling",
09972     "snowballed", "snowboards", "snowdrifts", "snowfields",
09973     "snowflakes", "snowmobile", "snowplough", "snowplowed",
09974     "snowstorms", "snuffboxes", "soapboxing", "sobriquets",
09975     "socialists", "socialites", "sociopaths", "sojourning",
09976     "soldiering", "solemnness", "soliciting", "solicitors",
09977     "solicitous", "solicitude", "solidarity", "solidified",
09978     "solidifies", "solitaires", "solitaries", "solubility",
09979     "somebodies", "somersault", "somethings", "somewheres",
09980     "somnolence", "songstress", "songwriter", "sonorously",
09981     "soothingly", "soothsayer", "sophomores", "sophomoric",
09982     "soporifics", "sordidness", "sororities", "soullessly",
09983     "soundbites", "soundproof", "soundtrack", "sourdoughs",
09984     "sourpusses", "sousaphone", "southbound", "southerner",
09985     "southwards", "sovereigns", "spacecraft", "spaceships",
09986     "spacesuits", "spacewalks", "spacewoman", "spacewomen",
09987     "spaciously", "spanielled", "sparseness", "spattering",
09988     "spearheads", "specialism", "specialist", "specifiers",
09989     "specifying", "speciously", "spectacles", "spectating",
09990     "spectators", "speculated", "speculates", "speculator",
09991     "speechless", "speedboats", "speediness", "speedsters",
09992     "speleology", "spellbinds", "spellbound", "spelunkers",
09993     "spelunking", "spermicide", "spheroidal", "sphincters",
09994     "spideriest", "spiderwebs", "spillovers", "spindliest",
09995     "spinnakers", "spiritedly", "spiritless", "spirituals",
09996     "spirituous", "spitefully", "splashdown", "splashiest",
09997     "splattered", "splendider", "splendidly", "splintered",
09998     "splittings", "splotchier", "splotching", "spluttered",
09999     "spoilsport", "spoliation", "sponginess", "sponsoring",
10000     "spoonbills", "spoonerism", "sportingly", "sportscast",
10001     "sportswear", "spotlessly", "spotlights", "spottiness",
10002     "springboks", "springiest", "springtime", "sprinklers",
10003     "sprinkling", "spuriously", "sputtering", "spyglasses",
10004     "spymasters", "squabbling", "squalidest", "squandered",
10005     "squareness", "squashiest", "squattered", "squeakiest",
10006     "squeezebox", "squelching", "squigglier", "squiggling",
10007     "squirmiest", "squishiest", "stablemate", "stagecoach",
10008     "stagecraft", "stagehands", "staggering", "stagnating",
10009     "stagnation", "staircases", "stairwells", "stalactite",
10010     "stalagmite", "stalemated", "stalemates", "stalwartly",
10011     "stammerers", "stammering", "stampeding", "stanchions",
10012     "standpipes", "standpoint", "standstill", "starchiest",
10013     "starfishes", "stargazers", "stargazing", "starstruck",
10014     "starvation", "statehouse", "stateliest", "statements",
10015     "staterooms", "statically", "stationary", "stationers",
10016     "stationery", "stationing", "statistics", "statuesque",
10017     "statuettes", "staunchest", "staunching", "steadiness",
10018     "steakhouse", "stealthier", "stealthily", "steamboats",
10019     "steamrolls", "steamships", "steelmaker", "steelworks",
10020     "steepening", "stentorian", "stepfather", "stepladder",
10021     "stepmother", "stepparent", "stepsister", "stereotype",
10022     "stevedores", "stewardess", "stewarding", "stickiness",
10023     "stiffeners", "stiffening", "stiflingly", "stillbirth",
10024     "stillborns", "stimulants", "stimulated", "stimulates",
10025     "stinginess", "stipulated", "stipulates", "stirringly",
10026     "stochastic", "stockading", "stockiness", "stockpiled",
10027     "stockpiles", "stockrooms", "stockyards", "stodginess",
10028     "stomaching", "stonemason", "stonewalls", "stoplights",
10029     "stoppering", "storefront", "storehouse", "storerooms",
10030     "storminess", "storyboard", "storybooks", "stovepipes",
10031     "straddling", "stragglers", "stragglier", "straggling",
10032     "straighted", "straighten", "straighter", "straitened",
10033     "strangered", "stranglers", "strangling", "stratagems",
10034     "strategics", "strategies", "strategist", "stratified",
10035     "stratifies", "strawberry", "streakiest", "streamline",
10036     "streetcars", "streetlamp", "streetwise", "strengthen",
10037     "stretchers", "stretchier", "stretching", "striations",
10038     "strictness", "strictures", "stridently", "strikeouts",
10039     "strikingly", "stringency", "stringiest", "striplings",
10040     "striptease", "stronghold", "strongroom", "stroppiest",
10041     "structural", "structured", "structures", "struggling",
10042     "strumpeted", "strychnine", "stubbliest", "stubborned",
10043     "stubborner", "stubbornly", "studiously", "stuffiness",
10044     "stultified", "stultifies", "stunningly", "stupefying",
10045     "stupendous", "sturdiness", "stutterers", "stuttering",
10046     "stylistics", "subalterns", "subatomics", "subcompact",
10047     "subculture", "subdivided", "subdivides", "subeditors",
10048     "subheading", "subjecting", "subjection", "subjective",
10049     "subjoining", "subjugated", "subjugates", "subleasing",
10050     "subletting", "sublimated", "sublimates", "subliminal",
10051     "submariner", "submarines", "submerging", "submersing",
10052     "submersion", "submission", "submissive", "submitting",
10053     "suborbital", "subpoenaed", "subprogram", "subroutine",
10054     "subscribed", "subscriber", "subscribes", "subscripts",
10055     "subsection", "subsequent", "subsidence", "subsidiary",
10056     "subsisting", "subsoiling", "subspecies", "substances",
10057     "substation", "substitute", "substratum", "subsystems",
10058     "subtenants", "subtending", "subterfuge", "subtitling",
10059     "subtleties", "subtracted", "subtrahend", "subvention",
10060     "subversion", "subversive", "subverting", "succeeding",
10061     "successful", "succession", "successive", "successors",
10062     "succincter", "succinctly", "succulence", "succulents",
10063     "succumbing", "suctioning", "suddenness", "sufferance",
10064     "sufferings", "sufficient", "suffocated", "suffocates",
10065     "suffragans", "suffragist", "sugarcoats", "suggesting",
10066     "suggestion", "suggestive", "sullenness", "sultanates",
10067     "sultriness", "summations", "summeriest", "summertime",
10068     "summonsing", "sunbathers", "sunbathing", "sunbonnets",
10069     "sunburning", "sundresses", "sunflowers", "sunglasses",
10070     "sunscreens", "sunsetting", "suntanning", "supergrass",
10071     "superhuman", "supermodel", "supernovae", "supernovas",
10072     "superpower", "superseded", "supersedes", "supersonic",
10073     "superstars", "superstate", "superstore", "supervened",
10074     "supervenes", "supervised", "supervises", "supervisor",
10075     "superwoman", "superwomen", "suppertime", "supplanted",
10076     "supplement", "suppleness", "suppliants", "supplicant",
10077     "supplicate", "supporters", "supporting", "supportive",
10078     "supposedly", "supposings", "suppressed", "suppresses",
10079     "suppressor", "suppurated", "suppurates", "surceasing",
10080     "surcharged", "surcharges", "surefooted", "surfboards",
10081     "surfeiting", "surgically", "surmounted", "surpassing",
10082     "surplussed", "surprising", "surrealism", "surrealist",
10083     "surrenders", "surrogates", "surrounded", "survivable",
10084     "suspecting", "suspenders", "suspending", "suspension",
10085     "suspicions", "suspicious", "sustaining", "sustenance",
10086     "suzerainty", "swaggering", "swallowing", "swarthiest",
10087     "swattering", "swaybacked", "swearwords", "sweatbands",
10088     "sweatpants", "sweatshirt", "sweatshops", "sweatsuits",
10089     "sweetbread", "sweetbrier", "sweeteners", "sweetening",
10090     "sweetheart", "sweetmeats", "swellheads", "sweltering",
10091     "swimmingly", "switchable", "switchback", "sycophancy",
10092     "sycophants", "syllabuses", "syllogisms", "symbolical",
10093     "symmetries", "sympathies", "symphonies", "symposiums",
10094     "synagogues", "syncopated", "syncopates", "syndicated",
10095     "syndicates", "synonymous", "syntactics", "synthetics",
10096     "syphilises", "syphilitic", "systematic", "tabernacle",
10097     "tablecloth", "tablelands", "tablespoon", "tabulating",
10098     "tabulation", "tabulators", "tachograph", "tachometer",
10099     "tactically", "tacticians", "tactlessly", "tailboards",
10100     "tailgating", "taillights", "tailpieces", "tallyhoing",
10101     "tambourine", "tangential", "tangerines", "tantamount",
10102     "tapestries", "tarantulas", "tarmacadam", "tarmacking",
10103     "tarnishing", "tarpaulins", "taskmaster", "tastefully",
10104     "tattletale", "tattooists", "tawdriness", "taxonomies",
10105     "teakettles", "teargassed", "tearjerker", "technicals",
10106     "technician", "techniques", "technocrat", "technology",
10107     "telecaster", "telegraphs", "telegraphy", "telemeters",
10108     "telepathic", "telephoned", "telephones", "telephonic",
10109     "telephotos", "telescoped", "telescopes", "telescopic",
10110     "televising", "television", "teleworker", "temperance",
10111     "temperated", "temperates", "temporally", "temptation",
10112     "temptingly", "tenability", "tendencies", "tenderfoot",
10113     "tenderloin", "tenderness", "tendinitis", "tentatives",
10114     "termagants", "terminable", "terminally", "terminated",
10115     "terminates", "terminator", "terracotta", "terrariums",
10116     "terrifying", "terrorists", "tessellate", "testaments",
10117     "testicular", "testifying", "tetchiness", "thankfully",
10118     "theatrical", "themselves", "theocratic", "theodolite",
10119     "theologian", "theologies", "therapists", "thereabout",
10120     "thereafter", "thermionic", "thermostat", "thickeners",
10121     "thickening", "thighbones", "thimbleful", "thirstiest",
10122     "thirteenth", "thirtieths", "thorougher", "thoroughly",
10123     "thoughtful", "thousandth", "thrashings", "threadbare",
10124     "threatened", "threepence", "threescore", "threesomes",
10125     "threnodies", "thresholds", "thriftiest", "throatiest",
10126     "thromboses", "thrombosis", "throttling", "throughout",
10127     "throughput", "throwaways", "throwbacks", "thumbnails",
10128     "thumbprint", "thumbscrew", "thumbtacks", "thundering",
10129     "thunderous", "tiddlywink", "tidewaters", "tiebreaker",
10130     "tightening", "tightropes", "timberland", "timberline",
10131     "timekeeper", "timelessly", "timeliness", "timepieces",
10132     "timescales", "timeserver", "timeshares", "timetabled",
10133     "timetables", "timorously", "timpanists", "tincturing",
10134     "tirelessly", "tiresomely", "titillated", "titillates",
10135     "titivating", "toadstools", "tobogganed", "toiletries",
10136     "tolerances", "tolerantly", "tolerating", "toleration",
10137     "tollbooths", "tomahawked", "tombstones", "tomfoolery",
10138     "tonalities", "tonelessly", "toothaches", "toothbrush",
10139     "toothpaste", "toothpicks", "topicality", "topography",
10140     "torchlight", "tormenting", "tormentors", "torpedoing",
10141     "torrential", "tortuously", "totalities", "touchdowns",
10142     "touchiness", "touchingly", "touchlines", "touchpaper",
10143     "touchstone", "toughening", "tourmaline", "tournament",
10144     "tourniquet", "towelettes", "townhouses", "toxicities",
10145     "toxicology", "trackballs", "tracksuits", "trademarks",
10146     "traditions", "trafficked", "trafficker", "tragedians",
10147     "tragically", "tragicomic", "trailering", "traitorous",
10148     "trajectory", "trampoline", "tranquiler", "tranquilly",
10149     "transacted", "transcends", "transcribe", "transcript",
10150     "transducer", "transferal", "transfixed", "transfixes",
10151     "transforms", "transfused", "transfuses", "transgenic",
10152     "transgress", "transience", "transiency", "transients",
10153     "transistor", "transiting", "transition", "transitive",
10154     "transitory", "translated", "translates", "translator",
10155     "transmuted", "transmutes", "transpired", "transpires",
10156     "transplant", "transports", "transposed", "transposes",
10157     "transships", "transverse", "trapeziums", "trapezoids",
10158     "travailing", "travelogue", "traversing", "travestied",
10159     "travesties", "treadmills", "treasonous", "treasurers",
10160     "treasuries", "treasuring", "treatments", "trellising",
10161     "tremendous", "trenchancy", "trendiness", "trespassed",
10162     "trespasser", "trespasses", "triangular", "triathlete",
10163     "triathlons", "trickiness", "tricksters", "tricycling",
10164     "triennials", "triggering", "trilateral", "trillionth",
10165     "trimesters", "tripartite", "triplicate", "trisecting",
10166     "triumphant", "triumphing", "triviality", "troglodyte",
10167     "trolleybus", "trolloping", "trombonist", "troopships",
10168     "troubadour", "trousseaux", "truckloads", "truculence",
10169     "trumpeters", "trumpeting", "truncating", "truncation",
10170     "truncheons", "trustfully", "truthfully", "tubercular",
10171     "tumbledown", "tumbleweed", "tumescence", "tumultuous",
10172     "tunelessly", "turboprops", "turbulence", "turmoiling",
10173     "turnabouts", "turnaround", "turnrounds", "turnstiles",
10174     "turntables", "turpentine", "turquoises", "turtledove",
10175     "turtleneck", "twentieths", "twitchiest", "twittering",
10176     "typescript", "typesetter", "typewriter", "typewrites",
10177     "typography", "typologies", "tyrannical", "ubiquitous",
10178     "ulcerating", "ulceration", "ultimately", "ultimating",
10179     "ultimatums", "ultrasonic", "ultrasound", "ululations",
10180     "umbrellaed", "unabridged", "unaccented", "unaccepted",
10181     "unaffected", "unanswered", "unarguable", "unarguably",
10182     "unassigned", "unassisted", "unassuming", "unattached",
10183     "unattended", "unavailing", "unbalanced", "unbalances",
10184     "unbearable", "unbearably", "unbeatable", "unbecoming",
10185     "unbeliever", "unbleached", "unblinking", "unblocking",
10186     "unblushing", "unbosoming", "unbuckling", "unburdened",
10187     "unbuttoned", "uncanniest", "uncensored", "unchanging",
10188     "unclasping", "uncleanest", "unclearest", "unclothing",
10189     "uncommoner", "uncommonly", "unconcerns", "uncoupling",
10190     "uncovering", "uncritical", "unctuously", "uncultured",
10191     "undeceived", "undeceives", "undecideds", "undeclared",
10192     "undefeated", "undefended", "undeniable", "undeniably",
10193     "underacted", "underarmed", "underbelly", "underbrush",
10194     "underclass", "undercoats", "undercover", "underfeeds",
10195     "underfloor", "undergoing", "undergrads", "underlains",
10196     "underlined", "underlines", "underlings", "underlying",
10197     "undermined", "undermines", "underneath", "underpants",
10198     "underplays", "underrated", "underrates", "underscore",
10199     "undersells", "undershirt", "undershoot", "undersides",
10200     "undersigns", "undersized", "underskirt", "understand",
10201     "understate", "understood", "understudy", "undertaken",
10202     "undertaker", "undertakes", "undertones", "undervalue",
10203     "underwater", "underwhelm", "underworld", "underwrite",
10204     "underwrote", "undeserved", "undetected", "undeterred",
10205     "undismayed", "undisputed", "undressing", "undulating",
10206     "undulation", "unearthing", "uneasiness", "uneconomic",
10207     "unedifying", "uneducated", "unemployed", "unenviable",
10208     "unerringly", "unevenness", "uneventful", "unexampled",
10209     "unexciting", "unexpected", "unexplored", "unfairness",
10210     "unfaithful", "unfamiliar", "unfastened", "unfeasible",
10211     "unfettered", "unfinished", "unflagging", "unforeseen",
10212     "unfriendly", "unfrocking", "ungainlier", "ungodliest",
10213     "ungracious", "ungrateful", "ungrudging", "unhappiest",
10214     "unheralded", "unhindered", "unhitching", "unhygienic",
10215     "unicameral", "uniformest", "uniforming", "uniformity",
10216     "unilateral", "unimpaired", "uninformed", "uninspired",
10217     "unintended", "uninviting", "uniqueness", "universals",
10218     "university", "unkindlier", "unkindness", "unknowable",
10219     "unknowings", "unlatching", "unlawfully", "unlearning",
10220     "unleashing", "unleavened", "unlettered", "unlicensed",
10221     "unlikelier", "unluckiest", "unmanliest", "unmannerly",
10222     "unmerciful", "unmissable", "unmodified", "unmolested",
10223     "unnumbered", "unobserved", "unoccupied", "unofficial",
10224     "unoriginal", "unorthodox", "unplayable", "unpleasant",
10225     "unplugging", "unpolluted", "unprepared", "unprompted",
10226     "unprovoked", "unpunished", "unreadable", "unreadiest",
10227     "unrecorded", "unreleased", "unreliable", "unrelieved",
10228     "unremarked", "unrequited", "unreserved", "unresolved",
10229     "unrewarded", "unromantic", "unruliness", "unsaddling",
10230     "unsaleable", "unsanitary", "unschooled", "unscramble",
10231     "unscrewing", "unscripted", "unseasoned", "unseeingly",
10232     "unseemlier", "unsettling", "unshakable", "unsheathed",
10233     "unsheathes", "unskillful", "unsnapping", "unsnarling",
10234     "unsociable", "unsoundest", "unspecific", "unsporting",
10235     "unstablest", "unsteadier", "unsteadily", "unstinting",
10236     "unstopping", "unstressed", "unsuitable", "unsuitably",
10237     "unswerving", "untangling", "unthinking", "untidiness",
10238     "untimelier", "untiringly", "untroubled", "untruthful",
10239     "untwisting", "unverified", "unwariness", "unwavering",
10240     "unwieldier", "unworkable", "unworthier", "unwrapping",
10241     "unyielding", "upbraiding", "upbringing", "upchucking",
10242     "upholsters", "upholstery", "upliftings", "uproarious",
10243     "upstanding", "upstarting", "upstreamed", "urinalyses",
10244     "urinalysis", "urological", "urologists", "usefulness",
10245     "usherettes", "usurpation", "utterances", "vacationed",
10246     "vacationer", "vaccinated", "vaccinates", "vacillated",
10247     "vacillates", "vagabonded", "valentines", "validating",
10248     "validation", "valuations", "vanishings", "vanquished",
10249     "vanquishes", "vaporising", "variations", "variegated",
10250     "variegates", "varnishing", "vaudeville", "vegeburger",
10251     "vegetables", "vegetarian", "vegetating", "vegetation",
10252     "vegetative", "vehemently", "velocities", "velodromes",
10253     "velvetiest", "venerating", "veneration", "vengefully",
10254     "venomously", "ventilated", "ventilates", "ventilator",
10255     "ventricles", "verballing", "verifiable", "vermicelli",
10256     "vernacular", "versifying", "vertebrate", "vertically",
10257     "vestibules", "veterinary", "vibraphone", "vibrations",
10258     "victorious", "videodiscs", "videophone", "videotaped",
10259     "videotapes", "viewfinder", "viewpoints", "vigilantes",
10260     "vigilantly", "vignetting", "vigorously", "villainies",
10261     "villainous", "vindicated", "vindicates", "vindicator",
10262     "vindictive", "violations", "violinists", "virtuosity",
10263     "virtuously", "virulently", "viscountcy", "visibility",
10264     "visitation", "vitreouses", "vituperate", "viviparous",
10265     "vocabulary", "vocational", "vociferate", "vociferous",
10266     "volatility", "volleyball", "voltmeters", "volubility",
10267     "voluminous", "volunteers", "voluptuary", "voluptuous",
10268     "vouchsafed", "vouchsafes", "vulgarisms", "vulnerable",
10269     "vulnerably", "wainscoted", "waistbands", "waistcoats",
10270     "waistlines", "waitresses", "walkabouts", "wallflower",
10271     "wallopings", "wallpapers", "wanderings", "wanderlust",
10272     "wantonness", "wardresses", "warehoused", "warehouses",
10273     "warmongers", "warrantied", "warranties", "warranting",
10274     "washbasins", "washboards", "washcloths", "washstands",
10275     "wassailing", "wastefully", "wastelands", "wastepaper",
10276     "watchbands", "watchfully", "watchmaker", "watchstrap",
10277     "watchtower", "watchwords", "waterborne", "watercraft",
10278     "watercress", "waterfalls", "waterfowls", "waterfront",
10279     "waterholes", "waterlines", "watermarks", "watermelon",
10280     "watermills", "waterproof", "watersheds", "watersides",
10281     "waterspout", "watertight", "waterwheel", "waterworks",
10282     "wavelength", "wayfarings", "weakfishes", "weaknesses",
10283     "wealthiest", "weaponless", "weathering", "weatherman",
10284     "weathermen", "webmasters", "weedkiller", "weekenders",
10285     "weekending", "weeknights", "weightiest", "weightings",
10286     "weightless", "wellington", "wellspring", "werewolves",
10287     "westerlies", "westerners", "whatsoever", "wheelbases",
10288     "wheelchair", "wheelhouse", "wheeziness", "wherefores",
10289     "whetstones", "whimpering", "whiplashes", "whirligigs",
10290     "whirlpools", "whirlwinds", "whirlybird", "whispering",
10291     "whiteboard", "whitewalls", "whithering", "wholefoods",
10292     "wholegrain", "wholesaled", "wholesaler", "wholesales",
10293     "wholewheat", "whomsoever", "whorehouse", "wickedness",
10294     "wickerwork", "widespread", "wigwagging", "wildcatted",
10295     "wildcatter", "wildebeest", "wilderness", "wildflower",
10296     "willingest", "willowiest", "windbreaks", "windburned",
10297     "windjammer", "windlasses", "windmilled", "windowpane",
10298     "windowsill", "windscreen", "windshield", "windstorms",
10299     "windsurfed", "windsurfer", "wingspread", "wintertime",
10300     "wirelesses", "wiretapped", "wisecracks", "witchcraft",
10301     "withdrawal", "withstands", "witnessing", "witticisms",
10302     "woefullest", "wolfhounds", "wolverines", "womanliest",
10303     "womenfolks", "wonderland", "wonderment", "wondrously",
10304     "woodblocks", "woodchucks", "woodcutter", "woodenness",
10305     "woodpecker", "woolliness", "wordlessly", "wordsmiths",
10306     "workaholic", "workbasket", "workhorses", "workhouses",
10307     "workingman", "workingmen", "workplaces", "worksheets",
10308     "worldliest", "worryingly", "worrywarts", "worshipful",
10309     "worthiness", "worthwhile", "wranglings", "wraparound",
10310     "wrathfully", "wretcheder", "wretchedly", "wriggliest",
10311     "wrinkliest", "wristbands", "wristwatch", "wrongdoers",
10312     "wrongdoing", "wrongfully", "wunderkind", "xenophobes",
10313     "xenophobia", "xenophobic", "xerography", "xylophones",
10314     "yardsticks", "yellowness", "yesterdays", "yesteryear",
10315     "youngsters", "yourselves", "youthfully", "yuppifying",
10316     "zigzagging", "zookeepers", "zoological", "zoologists"
10317   };
10318 
10319   const char* w_11[] = {
10320     "abandonment", "abbreviated", "abbreviates", "abdications",
10321     "aberrations", "abjurations", "abnormality", "abominating",
10322     "abomination", "aboriginals", "abortionist", "abracadabra",
10323     "abrogations", "absenteeism", "absolutists", "abstentions",
10324     "abstractest", "abstracting", "abstraction", "absurdities",
10325     "abusiveness", "academician", "accelerated", "accelerates",
10326     "accelerator", "accentuated", "accentuates", "acceptances",
10327     "accessioned", "accessories", "accidentals", "acclamation",
10328     "acclimating", "acclimation", "acclimatise", "acclimatize",
10329     "accommodate", "accompanied", "accompanies", "accompanist",
10330     "accomplices", "accordingly", "accountable", "accountancy",
10331     "accountants", "accrediting", "accumulated", "accumulates",
10332     "accumulator", "accusations", "accusatives", "accustoming",
10333     "achievement", "acknowledge", "acquainting", "acquiescent",
10334     "acquiescing", "acquirement", "acquisition", "acquisitive",
10335     "acrimonious", "actualities", "acupressure", "acupuncture",
10336     "adaptations", "addressable", "adjournment", "adjudicated",
10337     "adjudicates", "adjudicator", "adjurations", "adjustments",
10338     "administers", "admonishing", "admonitions", "adolescence",
10339     "adolescents", "adulterants", "adulterated", "adulterates",
10340     "adumbrating", "adumbration", "advancement", "advantaging",
10341     "adventurers", "adventuress", "adventuring", "adventurism",
10342     "adventurist", "adventurous", "adversarial", "adversaries",
10343     "adversities", "advertisers", "advertising", "advertorial",
10344     "aerodynamic", "aerogrammes", "aeronautics", "affectation",
10345     "affectioned", "affiliating", "affiliation", "affirmation",
10346     "affirmative", "afflictions", "afforesting", "aficionados",
10347     "afterbirths", "afterburner", "aftereffect", "aftershaves",
10348     "aftershocks", "aftertastes", "agglomerate", "agglutinate",
10349     "aggravating", "aggravation", "aggregating", "aggregation",
10350     "agnosticism", "agoraphobia", "agoraphobic", "agriculture",
10351     "agronomists", "aimlessness", "airbrushing", "aircraftman",
10352     "aircraftmen", "airdropping", "airsickness", "airworthier",
10353     "albatrosses", "algorithmic", "allegations", "allegiances",
10354     "allegorical", "alleviating", "alleviation", "allocations",
10355     "alphabeting", "altarpieces", "alterations", "altercation",
10356     "alternately", "alternating", "alternation", "alternative",
10357     "alternators", "amalgamated", "amalgamates", "amaryllises",
10358     "ambassadors", "ambiguities", "ambiguously", "ambitiously",
10359     "ambivalence", "ameliorated", "ameliorates", "amicability",
10360     "amorousness", "amorphously", "amphetamine", "amputations",
10361     "anachronism", "analogously", "anarchistic", "ancestoring",
10362     "anchorwoman", "anchorwomen", "ancillaries", "androgynous",
10363     "anemometers", "angelically", "angioplasty", "angiosperms",
10364     "anglophiles", "anglophones", "animosities", "annexations",
10365     "annihilated", "annihilates", "annihilator", "anniversary",
10366     "annotations", "anomalously", "anonymously", "answerphone",
10367     "antagonisms", "antagonists", "antecedents", "antechamber",
10368     "anthologies", "anthologist", "anthropoids", "antibiotics",
10369     "anticipated", "anticipates", "anticyclone", "antipathies",
10370     "antiphonals", "antiquarian", "antiquaries", "antiquating",
10371     "antiquities", "antirrhinum", "antiseptics", "antislavery",
10372     "aphrodisiac", "apocalypses", "apocalyptic", "apologetics",
10373     "apostrophes", "appallingly", "apparatchik", "apparatuses",
10374     "apparitions", "appealingly", "appearances", "appeasement",
10375     "appellation", "appertained", "application", "applicators",
10376     "appointment", "apportioned", "appositives", "appreciable",
10377     "appreciably", "appreciated", "appreciates", "apprehended",
10378     "apprenticed", "apprentices", "approaching", "approbation",
10379     "appropriate", "approvingly", "approximate", "aquaculture",
10380     "aquamarines", "aquaplaning", "aquatically", "arbitragers",
10381     "arbitrageur", "arbitrarily", "arbitrating", "arbitration",
10382     "arbitrators", "arborvitaes", "archaically", "archbishops",
10383     "archdeacons", "archdiocese", "archduchess", "archenemies",
10384     "archipelago", "arduousness", "aristocracy", "aristocrats",
10385     "arraignment", "arrangement", "articulated", "articulates",
10386     "artlessness", "ascertained", "ascetically", "asphyxiated",
10387     "asphyxiates", "aspidistras", "aspirations", "assassinate",
10388     "assemblages", "assemblyman", "assemblymen", "assertively",
10389     "assessments", "asseverated", "asseverates", "assiduously",
10390     "assignation", "assignments", "assimilated", "assimilates",
10391     "associating", "association", "associative", "assortments",
10392     "assumptions", "asterisking", "astigmatism", "astonishing",
10393     "astringency", "astringents", "astrologers", "astronomers",
10394     "asymmetries", "athleticism", "atmospheres", "atmospheric",
10395     "atrociously", "attachments", "attainments", "attendances",
10396     "attentively", "attenuating", "attenuation", "attestation",
10397     "attitudinal", "attractions", "attributing", "attribution",
10398     "attributive", "auctioneers", "audaciously", "audiophiles",
10399     "audiovisual", "auditioning", "auditoriums", "austerities",
10400     "authoresses", "authorities", "autocracies", "autographed",
10401     "automobiled", "automobiles", "autoworkers", "auxiliaries",
10402     "avoirdupois", "avuncularly", "awkwardness", "babysitters",
10403     "babysitting", "backbencher", "backbenches", "backbitings",
10404     "backcombing", "backgrounds", "backhanders", "backhanding",
10405     "backlogging", "backpackers", "backpacking", "backslapper",
10406     "backslashes", "backsliders", "backsliding", "backspacing",
10407     "backstopped", "backstreets", "backstretch", "backstroked",
10408     "backstrokes", "backtracked", "badmouthing", "balefullest",
10409     "balloonists", "ballplayers", "ballyhooing", "balustrades",
10410     "bamboozling", "bandleaders", "bandmasters", "banefullest",
10411     "bankrolling", "bankrupting", "barbarities", "barbarously",
10412     "barbershops", "barbiturate", "barnstormed", "baronetcies",
10413     "barricading", "bashfulness", "basketballs", "bassoonists",
10414     "battledress", "battlefield", "battlements", "battleships",
10415     "beachcomber", "beansprouts", "beastliness", "beauteously",
10416     "beauticians", "beautifiers", "beautifuler", "beautifully",
10417     "beautifying", "bedchambers", "bedevilment", "bedraggling",
10418     "beefburgers", "befriending", "beguilingly", "beleaguered",
10419     "bellicosity", "belligerent", "bellwethers", "bellyaching",
10420     "bellybutton", "benedictine", "benediction", "benefaction",
10421     "benefactors", "beneficence", "beneficiary", "benevolence",
10422     "bequeathing", "bereavement", "besmirching", "bestsellers",
10423     "bestselling", "bewildering", "bibliophile", "bicarbonate",
10424     "bicentenary", "bifurcating", "bifurcation", "bilaterally",
10425     "billionaire", "bimonthlies", "biochemical", "biochemists",
10426     "biodegraded", "biodegrades", "biofeedback", "biographers",
10427     "biographies", "birdbrained", "birdwatcher", "birthplaces",
10428     "birthrights", "birthstones", "bisexuality", "bittersweet",
10429     "bivouacking", "blackballed", "blackboards", "blackguards",
10430     "blackjacked", "blacklisted", "blackmailed", "blackmailer",
10431     "blacksmiths", "blackthorns", "blacktopped", "blamelessly",
10432     "blameworthy", "blancmanges", "blasphemers", "blasphemies",
10433     "blaspheming", "blasphemous", "blessedness", "blindfolded",
10434     "blindsiding", "blitzkriegs", "blockbuster", "blockhouses",
10435     "bloodhounds", "bloodlessly", "bloodmobile", "bloodstains",
10436     "bloodstream", "bloodsucker", "blowtorches", "bludgeoning",
10437     "blueberries", "bluebottles", "bluejackets", "blueprinted",
10438     "blunderbuss", "bobsledding", "boilerplate", "bollockings",
10439     "bombardiers", "bombardment", "bondholders", "boneshakers",
10440     "bookbinders", "bookbinding", "bookkeepers", "bookkeeping",
10441     "bookmarking", "bookmobiles", "booksellers", "bookshelves",
10442     "boomeranged", "boondoggled", "boondoggles", "bootleggers",
10443     "bootlegging", "borderlands", "borderlines", "botheration",
10444     "bottlenecks", "bountifully", "bourgeoisie", "boysenberry",
10445     "brainstorms", "brainteaser", "brainwashed", "brainwashes",
10446     "brandishing", "breadbasket", "breadboards", "breadcrumbs",
10447     "breadfruits", "breadwinner", "breakfasted", "breakpoints",
10448     "breakwaters", "breastbones", "breastfeeds", "breastplate",
10449     "breastworks", "bricklayers", "bricklaying", "bridegrooms",
10450     "bridesmaids", "bridgeheads", "brigantines", "brightening",
10451     "brilliantly", "brittleness", "broadcaster", "broadminded",
10452     "broadsheets", "broadsiding", "broadswords", "brontosaurs",
10453     "broomsticks", "brotherhood", "browbeating", "brownstones",
10454     "brushstroke", "brusqueness", "brutalities", "brutishness",
10455     "buccaneered", "bucktoothed", "budgerigars", "bulldogging",
10456     "bulletining", "bulletproof", "bullfighter", "bullfinches",
10457     "bullshitted", "bullshitter", "bureaucracy", "bureaucrats",
10458     "burlesquing", "bushwhacked", "bushwhacker", "businessman",
10459     "businessmen", "butterflied", "butterflies", "buttonholed",
10460     "buttonholes", "buttressing", "cacophonies", "cacophonous",
10461     "calculating", "calculation", "calculators", "calendaring",
10462     "calibrating", "calibration", "calibrators", "calisthenic",
10463     "calligraphy", "callousness", "calumniated", "calumniates",
10464     "camaraderie", "camerawoman", "camerawomen", "camouflaged",
10465     "camouflages", "campaigners", "campaigning", "campanology",
10466     "campgrounds", "candelabras", "candelabrum", "candidacies",
10467     "candidature", "candlelight", "candlestick", "canistering",
10468     "cannibalism", "cannonading", "cannonballs", "cantaloupes",
10469     "cantilevers", "cantonments", "canvasbacks", "capaciously",
10470     "capacitance", "caparisoned", "capillaries", "capitalists",
10471     "capitations", "capitulated", "capitulates", "cappuccinos",
10472     "captaincies", "captivating", "captivation", "captivities",
10473     "carbonating", "carbonation", "carburetors", "carburettor",
10474     "carcinogens", "cardholders", "cardiograms", "carefullest",
10475     "carefulness", "caricatured", "caricatures", "carillonned",
10476     "carjackings", "carnivorous", "carpentered", "carriageway",
10477     "carsickness", "cartography", "cartoonists", "cartwheeled",
10478     "caseworkers", "casseroling", "castellated", "castigating",
10479     "castigation", "castigators", "castrations", "cataclysmic",
10480     "catafalques", "cataleptics", "catapulting", "catastrophe",
10481     "catchphrase", "categorical", "caterpillar", "caterwauled",
10482     "catholicity", "cauliflower", "causalities", "caustically",
10483     "ceaselessly", "celebrating", "celebration", "celebratory",
10484     "celebrities", "centenarian", "centenaries", "centennials",
10485     "centrifugal", "centrifuged", "centrifuges", "centripetal",
10486     "cerebellums", "cerebration", "ceremonials", "ceremonious",
10487     "certainties", "certifiable", "certificate", "chaffinches",
10488     "chainsawing", "chairperson", "chalkboards", "challengers",
10489     "challenging", "chamberlain", "chambermaid", "championing",
10490     "chancellery", "chancellors", "chandeliers", "changelings",
10491     "changeovers", "chanticleer", "chaotically", "chaperoning",
10492     "charbroiled", "charioteers", "charismatic", "charmingest",
10493     "chauffeured", "chauvinists", "cheapskates", "checkmating",
10494     "checkpoints", "cheerfuller", "cheerleader", "cheerlessly",
10495     "cheeseboard", "cheesecakes", "cheesecloth", "chessboards",
10496     "chiaroscuro", "chicaneries", "chickenfeed", "chickenshit",
10497     "childbirths", "childminder", "childproofs", "chimpanzees",
10498     "chinchillas", "chiropodist", "chitchatted", "chlorinated",
10499     "chlorinates", "chloroforms", "chlorophyll", "chocoholics",
10500     "choirmaster", "cholesterol", "choreograph", "christening",
10501     "chromosomal", "chromosomes", "chronically", "chroniclers",
10502     "chronicling", "chronograph", "chronometer", "chrysalises",
10503     "churchgoers", "churchgoing", "churchwoman", "churchwomen",
10504     "churchyards", "circularity", "circulating", "circulation",
10505     "circulatory", "circumcised", "circumcises", "circumspect",
10506     "circumvents", "citizenship", "clairvoyant", "clandestine",
10507     "clapboarded", "clarinetist", "classically", "classicists",
10508     "classifieds", "classifying", "clavichords", "cleanliness",
10509     "clementines", "clergywoman", "clergywomen", "cliffhanger",
10510     "climatology", "clodhoppers", "cloistering", "closefisted",
10511     "clothesline", "clothespins", "cloudbursts", "cloverleafs",
10512     "coagulating", "coagulation", "coalescence", "coastguards",
10513     "coauthoring", "cobblestone", "cockchafers", "cockleshell",
10514     "cockroaches", "cocksuckers", "codependent", "coeducation",
10515     "coefficient", "coexistence", "coffeecakes", "coffeehouse",
10516     "cogitations", "cognoscente", "cognoscenti", "coincidence",
10517     "collaborate", "collapsible", "collarbones", "colleaguing",
10518     "collectible", "collections", "collectives", "collocating",
10519     "collocation", "colloquials", "colloquiums", "colonialism",
10520     "colonialist", "combination", "combustible", "comediennes",
10521     "comestibles", "comeuppance", "comfortable", "comfortably",
10522     "comfortless", "commandants", "commandeers", "commandment",
10523     "commemorate", "commendable", "commendably", "commentated",
10524     "commentates", "commentator", "commercials", "commingling",
10525     "commiserate", "commissions", "commitments", "commodities",
10526     "commonality", "commonplace", "communicant", "communicate",
10527     "communiques", "communistic", "communities", "commutation",
10528     "commutative", "compactness", "comparative", "comparisons",
10529     "compartment", "compatibles", "compatriots", "compendiums",
10530     "compensated", "compensates", "competences", "competently",
10531     "competition", "competitive", "competitors", "compilation",
10532     "complacence", "complacency", "complainant", "complainers",
10533     "complaining", "complaisant", "complements", "completions",
10534     "complexions", "complicated", "complicates", "compliments",
10535     "comportment", "composition", "compositors", "compounding",
10536     "comprehends", "compressing", "compression", "compressors",
10537     "compromised", "compromises", "comptroller", "compulsions",
10538     "compunction", "computation", "computerate", "comradeship",
10539     "concatenate", "concavities", "concealment", "conceitedly",
10540     "conceivable", "conceivably", "concentrate", "conceptions",
10541     "concernedly", "concertgoer", "concertinas", "concessions",
10542     "conciliated", "conciliates", "conciliator", "conciseness",
10543     "conclusions", "concoctions", "concomitant", "concordance",
10544     "concurrence", "concurrency", "concussions", "condescends",
10545     "conditional", "conditioned", "conditioner", "condolences",
10546     "condominium", "conductress", "confections", "confederacy",
10547     "confederate", "conferences", "conferments", "confessedly",
10548     "confessions", "confidantes", "confidences", "confidently",
10549     "confidingly", "configuring", "confinement", "confiscated",
10550     "confiscates", "conflations", "conflicting", "confluences",
10551     "conformance", "conformists", "confounding", "confronting",
10552     "confusingly", "congenially", "congregants", "congregated",
10553     "congregates", "congressman", "congressmen", "congruities",
10554     "conjectural", "conjectured", "conjectures", "conjugating",
10555     "conjugation", "conjunction", "conjunctive", "conjuncture",
10556     "connections", "connectives", "connoisseur", "connotation",
10557     "connotative", "consciences", "consciouses", "consciously",
10558     "conscripted", "consecrated", "consecrates", "consecutive",
10559     "consensuses", "consequence", "conservancy", "conservator",
10560     "considerate", "considering", "consignment", "consistency",
10561     "consolation", "consolatory", "consolidate", "consonances",
10562     "conspicuous", "conspirator", "constipated", "constipates",
10563     "constituent", "constituted", "constitutes", "constrained",
10564     "constraints", "constricted", "constrictor", "constructed",
10565     "constructor", "consultancy", "consultants", "consumables",
10566     "consumerism", "consumerist", "consummated", "consummates",
10567     "consumption", "consumptive", "contactable", "containment",
10568     "contaminant", "contaminate", "contemplate", "contentedly",
10569     "contentions", "contentious", "contentment", "contestants",
10570     "continental", "contingency", "contingents", "continually",
10571     "continuance", "contortions", "contractile", "contracting",
10572     "contraction", "contractors", "contractual", "contradicts",
10573     "contraflows", "contraption", "contrasting", "contravened",
10574     "contravenes", "contretemps", "contributed", "contributes",
10575     "contributor", "contrivance", "controllers", "controlling",
10576     "controversy", "controverts", "contumelies", "conurbation",
10577     "convalesced", "convalesces", "convenience", "conventions",
10578     "convergence", "conversions", "convertible", "conveyances",
10579     "convictions", "convivially", "convocation", "convolution",
10580     "convulsions", "cooperating", "cooperation", "cooperative",
10581     "coordinated", "coordinates", "coordinator", "copperheads",
10582     "copperplate", "copycatting", "copyrighted", "copywriters",
10583     "corkscrewed", "cornerstone", "cornflowers", "cornucopias",
10584     "corollaries", "coronations", "corporation", "corporatism",
10585     "correctable", "corrections", "correctives", "correctness",
10586     "correlating", "correlation", "correlative", "corresponds",
10587     "corroborate", "corrugating", "corrugation", "corruptible",
10588     "corruptions", "corruptness", "coruscating", "cosignatory",
10589     "cosmetology", "cosmogonies", "cosmologies", "cosmologist",
10590     "cosponsored", "coterminous", "cottonmouth", "cottonseeds",
10591     "cottontails", "cottonwoods", "counselings", "countenance",
10592     "counteracts", "counterfeit", "counterfoil", "countermand",
10593     "counterpane", "counterpart", "countersign", "countersink",
10594     "countersunk", "countervail", "countrified", "countryside",
10595     "countrywide", "coursebooks", "courteously", "courthouses",
10596     "courtliness", "covenanting", "cowcatchers", "cowpunchers",
10597     "coxswaining", "crackerjack", "craftswoman", "craftswomen",
10598     "cranberries", "crankshafts", "crawlspaces", "creationism",
10599     "creationist", "credentials", "credibility", "credulously",
10600     "crematories", "crematorium", "crepuscular", "crestfallen",
10601     "criminality", "criminology", "cripplingly", "crispbreads",
10602     "crookedness", "crossbarred", "crossbreeds", "crosschecks",
10603     "crosspieces", "crucifixion", "crustaceans", "cryptically",
10604     "cryptograms", "crystalline", "culminating", "culmination",
10605     "culpability", "cultivating", "cultivation", "cultivators",
10606     "cummerbunds", "cunnilingus", "curiosities", "curmudgeons",
10607     "currycombed", "curtailment", "customarily", "cybernetics",
10608     "cylindrical", "dangerously", "dauntlessly", "daydreamers",
10609     "daydreaming", "deaconesses", "deactivated", "deactivates",
10610     "deadheading", "deadlocking", "deadpanning", "dealerships",
10611     "debarkation", "debasements", "debilitated", "debilitates",
10612     "debriefings", "decapitated", "decapitates", "decathletes",
10613     "deceitfully", "decelerated", "decelerates", "deceptively",
10614     "deciphering", "declamation", "declamatory", "declaration",
10615     "declarative", "declensions", "declination", "declivities",
10616     "decomposing", "deconstruct", "decorations", "decremented",
10617     "decrepitude", "decrescendo", "dedications", "deductibles",
10618     "deerstalker", "deescalated", "deescalates", "defectively",
10619     "defensively", "deferential", "definitions", "deflections",
10620     "deflowering", "defoliating", "defoliation", "deforesting",
10621     "deformation", "deformities", "degenerated", "degenerates",
10622     "degradation", "dehydrating", "dehydration", "deification",
10623     "delectation", "delegations", "deleterious", "deliberated",
10624     "deliberates", "deliciously", "delightedly", "delineating",
10625     "delineation", "delinquency", "delinquents", "deliriously",
10626     "deliverable", "deliverance", "deliveryman", "deliverymen",
10627     "delphiniums", "demagoguery", "demarcating", "demarcation",
10628     "demigoddess", "democracies", "demographer", "demographic",
10629     "demolishing", "demolitions", "demonically", "demonstrate",
10630     "demotivated", "demotivates", "demystified", "demystifies",
10631     "denigrating", "denigration", "denominated", "denominates",
10632     "denominator", "denotations", "denouements", "dentifrices",
10633     "departments", "deployments", "depopulated", "depopulates",
10634     "deportation", "depositions", "depravities", "deprecating",
10635     "deprecation", "deprecatory", "depreciated", "depreciates",
10636     "depredation", "depressants", "depressions", "depressives",
10637     "deprivation", "deputations", "derailments", "derangement",
10638     "deregulated", "deregulates", "dereliction", "derivations",
10639     "derivatives", "dermatology", "desalinated", "desalinates",
10640     "descendants", "describable", "description", "descriptive",
10641     "descriptors", "desecrating", "desecration", "desegregate",
10642     "deselecting", "deselection", "desiccating", "desiccation",
10643     "desideratum", "designating", "designation", "desperadoes",
10644     "desperately", "desperation", "despondency", "destination",
10645     "destitution", "destructing", "destruction", "destructive",
10646     "desultorily", "detachments", "deteriorate", "determinant",
10647     "determinate", "determiners", "determining", "determinism",
10648     "detestation", "detonations", "detoxifying", "detrimental",
10649     "devaluation", "devastating", "devastation", "development",
10650     "deviousness", "devotionals", "dexterously", "diacritical",
10651     "diagnostics", "diagramming", "dialectical", "diametrical",
10652     "dichotomies", "dictatorial", "diddlysquat", "didgeridoos",
10653     "differences", "differently", "diffidently", "diffracting",
10654     "diffraction", "diffuseness", "dignitaries", "digressions",
10655     "dilapidated", "dilettantes", "dimensional", "diminishing",
10656     "diminuendos", "diminutions", "diminutives", "diplomatics",
10657     "diplomatist", "dipsomaniac", "directional", "directorate",
10658     "directorial", "directories", "disablement", "disaffected",
10659     "disafforest", "disagreeing", "disallowing", "disappeared",
10660     "disappoints", "disapproval", "disapproved", "disapproves",
10661     "disarmament", "disarmingly", "disarranged", "disarranges",
10662     "disarraying", "disassemble", "disbelieved", "disbelieves",
10663     "discernible", "discernibly", "discernment", "discharging",
10664     "disciplined", "disciplines", "disclaimers", "disclaiming",
10665     "disclosures", "discography", "discomfited", "discomforts",
10666     "discommoded", "discommodes", "discomposed", "discomposes",
10667     "disconcerts", "disconnects", "discontents", "discontinue",
10668     "discotheque", "discounters", "discounting", "discouraged",
10669     "discourages", "discoursing", "discourtesy", "discoverers",
10670     "discoveries", "discovering", "discredited", "discreetest",
10671     "discrepancy", "discussants", "discussions", "disembarked",
10672     "disembodied", "disembodies", "disembowels", "disenchants",
10673     "disencumber", "disengaging", "disentangle", "disfiguring",
10674     "disgraceful", "disgruntled", "disgruntles", "disgustedly",
10675     "disheartens", "dishonestly", "dishwashers", "disillusion",
10676     "disinclined", "disinclines", "disinfected", "disinherits",
10677     "disinterest", "disinterred", "disjointing", "disjuncture",
10678     "dislocating", "dislocation", "dismantling", "dismembered",
10679     "dismounting", "disobedient", "disobliging", "disordering",
10680     "disoriented", "disparaging", "disparities", "dispatchers",
10681     "dispatching", "dispensable", "dispiriting", "displayable",
10682     "displeasing", "displeasure", "disposables", "disposition",
10683     "disputation", "disquieting", "disregarded", "disrespects",
10684     "disruptions", "dissections", "dissembling", "disseminate",
10685     "dissensions", "disservices", "dissimilars", "dissimulate",
10686     "dissipating", "dissipation", "dissociated", "dissociates",
10687     "dissolutely", "dissolution", "dissonances", "distasteful",
10688     "distensions", "distentions", "distillates", "distinctest",
10689     "distinction", "distinctive", "distinguish", "distortions",
10690     "distracting", "distraction", "distressful", "distressing",
10691     "distributed", "distributes", "distributor", "distrustful",
10692     "distrusting", "disturbance", "divergences", "diversified",
10693     "diversifies", "diversities", "divestiture", "dockworkers",
10694     "doctrinaire", "documentary", "documenting", "dogcatchers",
10695     "dogfighting", "dogtrotting", "dolefullest", "domesticate",
10696     "domesticity", "domiciliary", "domineering", "doorkeepers",
10697     "doorknocker", "doorstepped", "dormitories", "doublespeak",
10698     "doubtlessly", "dovetailing", "downgrading", "downhearted",
10699     "downloading", "downplaying", "downscaling", "downshifted",
10700     "downtrodden", "draftswoman", "draftswomen", "dragonflies",
10701     "drainboards", "drastically", "drawbridges", "drawstrings",
10702     "dreadnought", "dressmakers", "dressmaking", "dromedaries",
10703     "drunkenness", "dubiousness", "dumbfounded", "dumbwaiters",
10704     "dunderheads", "duplicating", "duplication", "duplicators",
10705     "duplicitous", "dynamically", "dysfunction", "earnestness",
10706     "earthenware", "earthquaked", "earthquakes", "easternmost",
10707     "eclecticism", "econometric", "edification", "editorially",
10708     "educational", "edutainment", "effectively", "effectually",
10709     "effectuated", "effectuates", "effervesced", "effervesces",
10710     "efficacious", "efficiently", "egalitarian", "egocentrics",
10711     "egotistical", "egregiously", "eigenvalues", "eighteenths",
10712     "eisteddfods", "ejaculating", "ejaculation", "elaborately",
10713     "elaborating", "elaboration", "elasticated", "electioneer",
10714     "electorally", "electorates", "electrician", "electricity",
10715     "electrified", "electrifies", "electrocute", "electrolyte",
10716     "electronics", "elephantine", "eligibility", "eliminating",
10717     "elimination", "eliminators", "elongations", "elucidating",
10718     "elucidation", "elusiveness", "emancipated", "emancipates",
10719     "emancipator", "emasculated", "emasculates", "embankments",
10720     "embarkation", "embarrassed", "embarrasses", "embellished",
10721     "embellishes", "embittering", "emblazoning", "emboldening",
10722     "embrocation", "embroidered", "emendations", "emergencies",
10723     "emigrations", "emotionally", "emotionless", "empirically",
10724     "empiricists", "emplacement", "employables", "employments",
10725     "empowerment", "emulsifiers", "emulsifying", "encampments",
10726     "encapsulate", "enchantment", "enchantress", "encompassed",
10727     "encompasses", "encountered", "encouraging", "encroaching",
10728     "encumbering", "encumbrance", "encyclicals", "endangering",
10729     "endearingly", "endearments", "endlessness", "endorsement",
10730     "enforceable", "enforcement", "enfranchise", "engagements",
10731     "engendering", "engineering", "engorgement", "enhancement",
10732     "enlargement", "enlightened", "enlistments", "ennoblement",
10733     "enquiringly", "enrapturing", "enshrouding", "enslavement",
10734     "enterprises", "entertained", "entertainer", "enthralling",
10735     "enthusiasms", "enthusiasts", "enticements", "entitlement",
10736     "entrenching", "entryphones", "enumerating", "enumeration",
10737     "enunciating", "enunciation", "envelopment", "enviousness",
10738     "environment", "envisioning", "epidermises", "equestrians",
10739     "equidistant", "equilateral", "equilibrium", "equinoctial",
10740     "equivalence", "equivalents", "equivocally", "equivocated",
10741     "equivocates", "eradicating", "eradication", "erratically",
10742     "erroneously", "erythrocyte", "escalations", "escarpments",
10743     "eschatology", "escutcheons", "espadrilles", "essentially",
10744     "established", "establishes", "estimations", "ethnography",
10745     "ethnologist", "etymologies", "etymologist", "euphemistic",
10746     "evacuations", "evaluations", "evangelical", "evangelists",
10747     "evaporating", "evaporation", "evasiveness", "eventuality",
10748     "eventuating", "everlasting", "eviscerated", "eviscerates",
10749     "evocatively", "exacerbated", "exacerbates", "exaggerated",
10750     "exaggerates", "examination", "exasperated", "exasperates",
10751     "excavations", "exceedingly", "excellently", "exceptional",
10752     "excessively", "excitements", "exclamation", "exclamatory",
10753     "exclusively", "exclusivity", "excoriating", "excoriation",
10754     "excrescence", "excretories", "exculpating", "exculpation",
10755     "exculpatory", "executioner", "executrices", "exemplified",
10756     "exemplifies", "exfoliating", "exfoliation", "exhalations",
10757     "exhaustible", "exhibitions", "exhilarated", "exhilarates",
10758     "exhortation", "exhumations", "existential", "exonerating",
10759     "exoneration", "exorbitance", "expansively", "expatiating",
10760     "expatriated", "expatriates", "expectantly", "expectation",
10761     "expectorant", "expectorate", "expediences", "expediently",
10762     "expeditions", "expeditious", "expendables", "expenditure",
10763     "expensively", "experienced", "experiences", "experiments",
10764     "explanation", "explanatory", "explicating", "explication",
10765     "exploitable", "exploration", "exploratory", "explosively",
10766     "exponential", "exportation", "expositions", "expostulate",
10767     "expressible", "expressions", "expressways", "expropriate",
10768     "expurgating", "expurgation", "exquisitely", "extensional",
10769     "extensively", "extenuating", "extenuation", "exterminate",
10770     "extinctions", "extirpating", "extirpation", "extortioner",
10771     "extractions", "extraditing", "extradition", "extrapolate",
10772     "extravagant", "extremities", "extricating", "extrication",
10773     "extroverted", "exuberantly", "fabricating", "fabrication",
10774     "facetiously", "facilitated", "facilitates", "facilitator",
10775     "faddishness", "fairgrounds", "faithlessly", "fallibility",
10776     "falsifiable", "falteringly", "familiarity", "fanatically",
10777     "fantastical", "farinaceous", "fascinating", "fascination",
10778     "fashionable", "fashionably", "fatherlands", "fatuousness",
10779     "faultlessly", "fearfullest", "fearfulness", "feasibility",
10780     "featheriest", "featureless", "federalists", "federations",
10781     "fellowships", "ferociously", "festivities", "fetishistic",
10782     "feudalistic", "fiduciaries", "fieldworker", "figureheads",
10783     "filamentous", "filibusters", "filigreeing", "financially",
10784     "fingerboard", "fingermarks", "fingernails", "fingerprint",
10785     "firebombing", "firecracker", "firefighter", "firelighter",
10786     "fireproofed", "firescreens", "firewalling", "fishmongers",
10787     "fishtailing", "flabbergast", "flagellants", "flagellated",
10788     "flagellates", "flamboyance", "flashlights", "flatfooting",
10789     "fledgelings", "flexibility", "flightiness", "flimflammed",
10790     "flirtations", "flirtatious", "floodlights", "floorboards",
10791     "floundering", "flourishing", "floweriness", "fluctuating",
10792     "fluctuation", "fluorescent", "fluorescing", "fluoridated",
10793     "fluoridates", "fluoroscope", "flycatchers", "flyspecking",
10794     "flyswatters", "fomentation", "foolhardier", "foolishness",
10795     "footballers", "footballing", "footbridges", "footlockers",
10796     "forbearance", "forbiddings", "forebodings", "forecasters",
10797     "forecasting", "forecastles", "foreclosing", "foreclosure",
10798     "foredooming", "forefathers", "forefingers", "foregrounds",
10799     "foreordains", "forerunners", "foreseeable", "foreshadows",
10800     "foreshorten", "forestalled", "forestation", "foretasting",
10801     "foretelling", "forethought", "forevermore", "forewarning",
10802     "forfeitures", "forgathered", "forgetfully", "forgettable",
10803     "forgiveness", "formalities", "formulating", "formulation",
10804     "fornicating", "fornication", "fornicators", "forswearing",
10805     "forthcoming", "fortnightly", "fortressing", "fortunately",
10806     "forwardness", "foundations", "fountaining", "fourteenths",
10807     "foxtrotting", "fractiously", "fragmentary", "fragmenting",
10808     "franchisees", "franchisers", "franchising", "francophone",
10809     "frankfurter", "frantically", "fraternally", "fratricidal",
10810     "fratricides", "fraudulence", "freebooters", "freeholders",
10811     "freelancers", "freelancing", "freeloaders", "freeloading",
10812     "freemasonry", "freethinker", "freewheeled", "frequencies",
10813     "frequentest", "frequenting", "fretfulness", "friendliest",
10814     "friendships", "frightening", "frightfully", "frivolities",
10815     "frivolously", "frogmarched", "frogmarches", "frostbiting",
10816     "frostbitten", "fructifying", "fruitfuller", "fruitlessly",
10817     "frustrating", "frustration", "fulminating", "fulmination",
10818     "fulsomeness", "functionary", "functioning", "fundamental",
10819     "furloughing", "furnishings", "furtherance", "furthermore",
10820     "furthermost", "furtiveness", "fussbudgets", "futuristics",
10821     "gallbladder", "gallivanted", "gamekeepers", "garrisoning",
10822     "garrulously", "gastronomes", "gastronomic", "gatecrashed",
10823     "gatecrasher", "gatecrashes", "gatekeepers", "gazetteered",
10824     "genealogies", "genealogist", "generalists", "generations",
10825     "generically", "genetically", "geneticists", "gentlemanly",
10826     "gentlewoman", "gentlewomen", "gentrifying", "genuflected",
10827     "genuineness", "geographers", "geographies", "geometrical",
10828     "geophysical", "geopolitics", "germinating", "germination",
10829     "gerontology", "gerrymander", "gesticulate", "ghastliness",
10830     "ghostliness", "ghostwriter", "ghostwrites", "gingerbread",
10831     "gingersnaps", "girlfriends", "glamorously", "glasshouses",
10832     "glimmerings", "glitterings", "goalkeepers", "goalscorers",
10833     "goaltenders", "gobstoppers", "godchildren", "goddaughter",
10834     "godforsaken", "godlessness", "goldbricked", "goldfinches",
10835     "governesses", "governments", "gracefuller", "gracelessly",
10836     "graduations", "grammarians", "grammatical", "gramophones",
10837     "grandaddies", "grandfather", "grandmother", "grandparent",
10838     "grandstands", "granularity", "granulating", "granulation",
10839     "grapefruits", "graphically", "grasshopper", "gratefuller",
10840     "gravedigger", "gravestones", "gravitating", "gravitation",
10841     "greasepaint", "greengrocer", "greenhouses", "griddlecake",
10842     "gridlocking", "grindstones", "grotesquely", "grouchiness",
10843     "groundcloth", "groundsheet", "groundswell", "groundwater",
10844     "guarantying", "guardhouses", "guesstimate", "guesthouses",
10845     "guilelessly", "guillotined", "guillotines", "gullibility",
10846     "gunfighters", "gunfighting", "gunslingers", "guttersnipe",
10847     "gymnosperms", "haberdasher", "habitations", "habituating",
10848     "habituation", "hagiography", "hairbreadth", "hairbrushes",
10849     "haircutting", "hairdresser", "hairsprings", "hairstylist",
10850     "halfhearted", "halfpennies", "hallelujahs", "hallmarking",
10851     "hallucinate", "halternecks", "hammerheads", "handbagging",
10852     "handcrafted", "handcuffing", "handicapped", "handicapper",
10853     "handicrafts", "handmaidens", "handpicking", "handshaking",
10854     "handsprings", "handwriting", "handwritten", "haphazardly",
10855     "hardhearted", "harebrained", "harmfulness", "harpsichord",
10856     "harrumphing", "hatefulness", "haughtiness", "hawkishness",
10857     "headbangers", "headbanging", "headbutting", "headdresses",
10858     "headhunters", "headhunting", "headmasters", "headquarter",
10859     "headscarves", "headteacher", "headwaiters", "healthfully",
10860     "healthiness", "heartbreaks", "heartbroken", "heartlessly",
10861     "heartthrobs", "heavenliest", "heavenwards", "heavyweight",
10862     "heightening", "heinousness", "helicopters", "heliotropes",
10863     "helpfulness", "hemispheres", "hemispheric", "hemorrhaged",
10864     "hemorrhages", "hemorrhoids", "hemstitched", "hemstitches",
10865     "heptathlons", "herbivorous", "hereinafter", "herringbone",
10866     "hesitations", "hexadecimal", "hibernating", "hibernation",
10867     "hideousness", "hierarchies", "hieroglyphs", "highfalutin",
10868     "highlanders", "highlighted", "highlighter", "hightailing",
10869     "hilariously", "hillbillies", "hindquarter", "hinterlands",
10870     "histrionics", "hitchhikers", "hitchhiking", "hobbyhorses",
10871     "hodgepodges", "holographic", "homecomings", "homesteaded",
10872     "homesteader", "homestretch", "homeworkers", "homeworking",
10873     "homogeneity", "homogeneous", "homosexuals", "honeycombed",
10874     "honeymooned", "honeymooner", "honeysuckle", "honorariums",
10875     "hoodwinking", "hooliganism", "hopefulness", "hopscotched",
10876     "hopscotches", "horizontals", "horseradish", "hospitality",
10877     "hostilities", "hotheadedly", "hourglasses", "housebreaks",
10878     "housebroken", "housecleans", "householder", "housekeeper",
10879     "housemaster", "housemother", "houseplants", "housewifely",
10880     "hovercrafts", "huckleberry", "huckstering", "hullabaloos",
10881     "humidifiers", "humidifying", "humiliating", "humiliation",
10882     "hummingbird", "hunchbacked", "hundredfold", "hurtfulness",
10883     "hydrocarbon", "hydrogenate", "hydrometers", "hydrophobia",
10884     "hydroplaned", "hydroplanes", "hydroponics", "hydrosphere",
10885     "hygrometers", "hyperactive", "hypermarket", "hyphenating",
10886     "hyphenation", "hypocrisies", "hypodermics", "hypotenuses",
10887     "hypothalami", "hypothermia", "icebreakers", "iconoclasts",
10888     "iconography", "identically", "identifiers", "identifying",
10889     "ideological", "ideologists", "idiotically", "idyllically",
10890     "ignominious", "ignoramuses", "illicitness", "illiterates",
10891     "illogically", "illuminated", "illuminates", "illusionist",
10892     "illustrated", "illustrates", "illustrator", "illustrious",
10893     "imagination", "imaginative", "immediately", "immensities",
10894     "immigrating", "immigration", "immortality", "impairments",
10895     "impartially", "impassioned", "impassively", "impassivity",
10896     "impatiences", "impatiently", "impeachable", "impeachment",
10897     "impeccables", "impecunious", "impedimenta", "impediments",
10898     "impenitence", "impenitents", "imperatives", "imperfectly",
10899     "imperialism", "imperialist", "imperiously", "impermanent",
10900     "impermeable", "impersonate", "impertinent", "impetuosity",
10901     "impetuously", "impingement", "impiousness", "implausible",
10902     "implausibly", "implemented", "implementer", "implicating",
10903     "implication", "imploringly", "importantly", "importation",
10904     "importunate", "importuning", "importunity", "impositions",
10905     "impossibles", "impractical", "imprecation", "imprecisely",
10906     "imprecision", "impregnable", "impregnably", "impregnated",
10907     "impregnates", "impresarios", "impressions", "imprimaturs",
10908     "imprisoning", "impropriety", "improvement", "improvident",
10909     "improvising", "imprudently", "impulsively", "imputations",
10910     "inabilities", "inadequates", "inadvertent", "inadvisable",
10911     "inalienable", "inattention", "inattentive", "inaugurated",
10912     "inaugurates", "incantation", "incarcerate", "incarnating",
10913     "incarnation", "incessantly", "incidentals", "incinerated",
10914     "incinerates", "incinerator", "incitements", "inclination",
10915     "inclusively", "incoherence", "incompetent", "incongruity",
10916     "incongruous", "inconstancy", "incontinent", "incorporate",
10917     "incorporeal", "incorrectly", "increasings", "incredulity",
10918     "incredulous", "incremental", "incremented", "incriminate",
10919     "inculcating", "inculcation", "inculpating", "indecencies",
10920     "indecentest", "indefinable", "indefinably", "indefinites",
10921     "indemnified", "indemnifies", "indemnities", "indentation",
10922     "indenturing", "independent", "indexations", "indications",
10923     "indicatives", "indictments", "indifferent", "indigestion",
10924     "indignantly", "indignation", "indignities", "indirection",
10925     "individuals", "indivisible", "indivisibly", "indomitable",
10926     "indomitably", "indubitable", "indubitably", "inducements",
10927     "inductively", "indulgences", "indulgently", "industrious",
10928     "inebriating", "inebriation", "ineffective", "ineffectual",
10929     "inefficient", "inelegantly", "ineligibles", "ineluctable",
10930     "ineluctably", "inequitable", "inescapable", "inescapably",
10931     "inessential", "inestimable", "inestimably", "inexcusable",
10932     "inexcusably", "inexpedient", "inexpensive", "infanticide",
10933     "infantryman", "infantrymen", "infatuating", "infatuation",
10934     "inferential", "inferiority", "infertility", "infestation",
10935     "infiltrated", "infiltrates", "infiltrator", "infinitives",
10936     "infirmaries", "infirmities", "inflammable", "inflatables",
10937     "inflections", "influencing", "influential", "infomercial",
10938     "informality", "information", "informative", "infractions",
10939     "infrequency", "infuriating", "ingeniously", "ingenuously",
10940     "ingratiated", "ingratiates", "ingratitude", "ingredients",
10941     "inhabitable", "inhabitants", "inhalations", "inheritance",
10942     "inhibitions", "initiations", "initiatives", "injudicious",
10943     "injunctions", "innocentest", "innocuously", "innovations",
10944     "innuendoing", "innumerable", "inoculating", "inoculation",
10945     "inoffensive", "inoperative", "inopportune", "inquiringly",
10946     "inquisition", "inquisitive", "inquisitors", "inscription",
10947     "inscrutable", "inscrutably", "insecticide", "insectivore",
10948     "inseminated", "inseminates", "insensitive", "insentience",
10949     "inseparable", "inseparably", "insidiously", "insincerely",
10950     "insincerity", "insinuating", "insinuation", "insipidness",
10951     "insistently", "insouciance", "inspections", "inspiration",
10952     "instability", "instigating", "instigation", "instigators",
10953     "instinctive", "instinctual", "instituting", "institution",
10954     "instructing", "instruction", "instructive", "instructors",
10955     "instruments", "insultingly", "insuperable", "insuperably",
10956     "insurgences", "intangibles", "integrating", "integration",
10957     "integuments", "intelligent", "intemperate", "intensified",
10958     "intensifier", "intensifies", "intensities", "intensively",
10959     "intentional", "interacting", "interaction", "interactive",
10960     "interbreeds", "interceding", "intercepted", "interceptor",
10961     "intercessor", "interchange", "intercourse", "interdicted",
10962     "interesting", "interfacing", "interfering", "interjected",
10963     "interlacing", "interlarded", "interleaved", "interleaves",
10964     "interleukin", "interlinked", "interlocked", "interlopers",
10965     "interluding", "intermezzos", "intermingle", "internecine",
10966     "internships", "interoffice", "interpolate", "interposing",
10967     "interpreted", "interpreter", "interracial", "interregnum",
10968     "interrelate", "interrogate", "interrupted", "intersected",
10969     "intersperse", "interstates", "interstices", "intertwined",
10970     "intertwines", "intervening", "interviewed", "interviewee",
10971     "interviewer", "interweaves", "intimations", "intimidated",
10972     "intimidates", "intolerable", "intolerably", "intolerance",
10973     "intonations", "intoxicants", "intoxicated", "intoxicates",
10974     "intractable", "intractably", "intravenous", "intricacies",
10975     "intricately", "introducing", "introverted", "intuitively",
10976     "inundations", "invalidated", "invalidates", "invariables",
10977     "inventively", "inventoried", "inventories", "investigate",
10978     "investiture", "investments", "invidiously", "invigilated",
10979     "invigilates", "invigilator", "invigorated", "invigorates",
10980     "invitations", "invocations", "involuntary", "involvement",
10981     "ionospheres", "iridescence", "ironmongers", "ironmongery",
10982     "irradiating", "irradiation", "irrationals", "irreducible",
10983     "irreducibly", "irrefutable", "irrefutably", "irregularly",
10984     "irrelevance", "irrelevancy", "irreligious", "irreparable",
10985     "irreparably", "irreverence", "irrevocable", "irrevocably",
10986     "irritations", "itineraries", "jackhammers", "jackknifing",
10987     "jackrabbits", "jawbreakers", "jellyfishes", "jettisoning",
10988     "jinrikishas", "joblessness", "journalists", "joylessness",
10989     "judiciaries", "judiciously", "juggernauts", "justifiable",
10990     "justifiably", "juxtaposing", "kangarooing", "keelhauling",
10991     "kerchiefing", "kettledrums", "keyboarders", "keyboarding",
10992     "keyboardist", "keypunching", "keystroking", "kidnappings",
10993     "kindhearted", "kingfishers", "kitchenette", "kitchenware",
10994     "kleptomania", "knackwursts", "kneecapping", "knickknacks",
10995     "knighthoods", "knucklehead", "kookaburras", "laboriously",
10996     "lacerations", "laconically", "laddishness", "ladyfingers",
10997     "lamentation", "landholders", "landholding", "landlubbers",
10998     "landscapers", "landscaping", "landsliding", "languishing",
10999     "latitudinal", "latticework", "launderette", "laundresses",
11000     "laundrettes", "laundromats", "lavendering", "lawbreakers",
11001     "lawlessness", "leaderships", "leapfrogged", "leaseholder",
11002     "leatherette", "leatherneck", "lecherously", "lectureship",
11003     "legerdemain", "legionaries", "legionnaire", "legislating",
11004     "legislation", "legislative", "legislators", "legislature",
11005     "legitimated", "legitimates", "leisurewear", "lengthening",
11006     "leprechauns", "letterboxes", "letterheads", "leucotomies",
11007     "levelheaded", "liabilities", "libertarian", "librettists",
11008     "licentiates", "lieutenancy", "lieutenants", "lightheaded",
11009     "lighthouses", "lightninged", "lightweight", "likableness",
11010     "likelihoods", "lilliputian", "limelighted", "limitations",
11011     "linebackers", "lingeringly", "linguistics", "lionhearted",
11012     "liposuction", "lipsticking", "liquidating", "liquidation",
11013     "liquidators", "literalness", "lithographs", "lithography",
11014     "lithosphere", "livelihoods", "locomotives", "logarithmic",
11015     "loggerheads", "loudhailers", "loudmouthed", "loudspeaker",
11016     "loutishness", "lubricating", "lubrication", "lubricators",
11017     "lucratively", "ludicrously", "lumberjacks", "lumberyards",
11018     "luminescent", "luncheoning", "luxuriantly", "luxuriating",
11019     "luxuriously", "machination", "macrobiotic", "macroscopic",
11020     "maddeningly", "magisterial", "magistrates", "magnanimity",
11021     "magnanimous", "magnificent", "maidenheads", "maidservant",
11022     "mainsprings", "mainstreams", "maintainers", "maintaining",
11023     "maintenance", "maisonettes", "makeweights", "maladjusted",
11024     "maladroitly", "malapropism", "malcontents", "malediction",
11025     "malefactors", "malevolence", "malfeasance", "malfunction",
11026     "maliciously", "malignantly", "malingerers", "malingering",
11027     "malpractice", "maltreating", "mammography", "managements",
11028     "manhandling", "manicurists", "manifesting", "manifestoed",
11029     "manifolding", "manipulated", "manipulates", "manipulator",
11030     "mannishness", "mantelpiece", "mantelshelf", "manufacture",
11031     "manumitting", "manuscripts", "marathoners", "marchioness",
11032     "marionettes", "marketplace", "marshmallow", "masculinity",
11033     "masochistic", "masqueraded", "masquerader", "masquerades",
11034     "massiveness", "masterclass", "masterfully", "masterminds",
11035     "masterpiece", "masterworks", "masticating", "mastication",
11036     "masturbated", "masturbates", "matchmakers", "matchmaking",
11037     "matchsticks", "materialism", "materialist", "mathematics",
11038     "matriarchal", "matriculate", "matrimonial", "mavericking",
11039     "mawkishness", "meadowlarks", "meanderings", "meaningless",
11040     "measureless", "measurement", "mechanistic", "medications",
11041     "medicinally", "meditations", "megalomania", "megalopolis",
11042     "megaphoning", "melancholia", "melancholic", "mellifluous",
11043     "melodically", "melodiously", "memberships", "memorabilia",
11044     "memorandums", "menservants", "menstruated", "menstruates",
11045     "mentalities", "mentholated", "mercenaries", "merchandise",
11046     "merchanting", "merchantman", "merchantmen", "mercilessly",
11047     "meritocracy", "meritorious", "merrymakers", "merrymaking",
11048     "metabolisms", "metacarpals", "metamorphic", "metaphysics",
11049     "metatarsals", "meteorology", "methodology", "metrication",
11050     "microfilmed", "microlights", "microphones", "microscopes",
11051     "microscopic", "microsecond", "microwaving", "middlebrows",
11052     "midfielders", "midsections", "midwiferies", "mileometers",
11053     "militarists", "millenniums", "millionaire", "millisecond",
11054     "milquetoast", "mimeographs", "mindfulness", "minesweeper",
11055     "miniaturing", "miniaturist", "minimalists", "ministerial",
11056     "ministering", "ministrants", "mirthlessly", "misalliance",
11057     "misanthrope", "misanthropy", "misapplying", "misbegotten",
11058     "misbehaving", "miscarriage", "miscarrying", "mischancing",
11059     "mischiefing", "mischievous", "misconceive", "misconducts",
11060     "misconstrue", "miscounting", "misdiagnose", "misdirected",
11061     "miserliness", "misfeasance", "misfortunes", "misgoverned",
11062     "misguidedly", "mishandling", "misidentify", "misinformed",
11063     "mismanaging", "mismatching", "misnomering", "misogynists",
11064     "misprinting", "misreadings", "misreported", "misspelling",
11065     "misspending", "misstepping", "mistreating", "mistrustful",
11066     "mistrusting", "mizzenmasts", "mockingbird", "modernistic",
11067     "modulations", "molestation", "mollycoddle", "momentarily",
11068     "monarchical", "monarchists", "monasteries", "monasticism",
11069     "monetarists", "moneylender", "moneymakers", "moneymaking",
11070     "monkeyshine", "monochromes", "monogrammed", "monolingual",
11071     "monologuing", "monomaniacs", "monopolists", "monotheists",
11072     "monstrances", "monstrosity", "monstrously", "moonlighted",
11073     "moonlighter", "moratoriums", "mortarboard", "mothballing",
11074     "motherboard", "motherlands", "motivations", "motocrosses",
11075     "motorbiking", "motorcycled", "motorcycles", "motormouths",
11076     "mountaineer", "mountainous", "mountaintop", "mountebanks",
11077     "mournfuller", "mouthpieces", "mouthwashes", "mudslingers",
11078     "mudslinging", "multiplexed", "multiplexer", "multiplexes",
11079     "multipliers", "multiplying", "multiracial", "municipally",
11080     "munificence", "murderesses", "murderously", "muscularity",
11081     "musculature", "mushrooming", "muskellunge", "mustachioed",
11082     "mutilations", "mutineering", "mythologies", "mythologist",
11083     "myxomatosis", "nailbrushes", "nanoseconds", "naphthalene",
11084     "narcissists", "narcoleptic", "nasturtiums", "nationalism",
11085     "nationalist", "nationality", "naturalists", "naturalness",
11086     "naughtiness", "neanderthal", "nearsighted", "necessaries",
11087     "necessarily", "necessitate", "necessities", "neckerchief",
11088     "necklacings", "necromancer", "necrophilia", "needlepoint",
11089     "needlewoman", "needlewomen", "nefariously", "negligently",
11090     "negotiating", "negotiation", "negotiators", "nervelessly",
11091     "nervousness", "netherworld", "neurologist", "neutralists",
11092     "newscasters", "newscasting", "newsflashes", "newsletters",
11093     "newspapered", "newsreaders", "nickelodeon", "nightingale",
11094     "nightlights", "nightmarish", "nightshades", "nightshirts",
11095     "nightstands", "nightsticks", "nincompoops", "nineteenths",
11096     "nitrogenous", "nocturnally", "noiselessly", "noisemakers",
11097     "nominations", "nominatives", "nonabrasive", "nonbeliever",
11098     "nonchalance", "nondescript", "nondrinkers", "nonentities",
11099     "nonetheless", "nonexistent", "nonpartisan", "nonpayments",
11100     "nonphysical", "nonplussing", "nonresident", "nonseasonal",
11101     "nonsensical", "nonspecific", "nonstandard", "nonstarters",
11102     "nonviolence", "northeaster", "northerlies", "northerners",
11103     "nothingness", "noticeboard", "notoriously", "nourishment",
11104     "numerations", "numerically", "numismatics", "numismatist",
11105     "nutcrackers", "nutritional", "nymphomania", "obfuscating",
11106     "obfuscation", "objectively", "objectivity", "obligations",
11107     "obliqueness", "obliterated", "obliterates", "obliviously",
11108     "obnoxiously", "obscenities", "obscurities", "observances",
11109     "observantly", "observation", "observatory", "obsessional",
11110     "obsessively", "obsolescent", "obstetrical", "obstinately",
11111     "obstructing", "obstruction", "obstructive", "obtrusively",
11112     "obviousness", "occasioning", "occidentals", "occupations",
11113     "occurrences", "odoriferous", "offensively", "offertories",
11114     "offhandedly", "officialdom", "officialese", "officiating",
11115     "officiously", "oligarchies", "omnipotence", "omnipresent",
11116     "omniscience", "oncologists", "onerousness", "ontological",
11117     "opalescence", "operational", "opinionated", "opportunely",
11118     "opportunism", "opportunist", "opportunity", "oppositions",
11119     "opprobrious", "optometrist", "orchestrate", "orderliness",
11120     "ordinariest", "ordinations", "organically", "orientalist",
11121     "orientating", "orientation", "originality", "originating",
11122     "origination", "originators", "ornamenting", "ornithology",
11123     "orthodontia", "orthodontic", "orthodoxies", "orthography",
11124     "oscillating", "oscillation", "oscillators", "ostentation",
11125     "outbalanced", "outbalances", "outbreaking", "outbuilding",
11126     "outbursting", "outclassing", "outcropping", "outdistance",
11127     "outfielders", "outflanking", "outguessing", "outnumbered",
11128     "outpatients", "outperforms", "outpointing", "outpourings",
11129     "outreaching", "outsmarting", "outsourcing", "outspokenly",
11130     "outstanding", "outstations", "outstripped", "outweighing",
11131     "overachieve", "overanxious", "overarching", "overbalance",
11132     "overbearing", "overbidding", "overbooking", "overburdens",
11133     "overcasting", "overcharged", "overcharges", "overcooking",
11134     "overcrowded", "overdevelop", "overdrawing", "overdressed",
11135     "overdresses", "overexcited", "overexcites", "overexposed",
11136     "overexposes", "overextends", "overflights", "overflowing",
11137     "overgrowing", "overhanging", "overhauling", "overhearing",
11138     "overheating", "overindulge", "overkilling", "overlapping",
11139     "overloading", "overlooking", "overmanning", "overplaying",
11140     "overpowered", "overpricing", "overprinted", "overproduce",
11141     "overreached", "overreaches", "overreacted", "overrunning",
11142     "overselling", "overshadows", "overspreads", "overstaffed",
11143     "overstating", "overstaying", "overstepped", "overstocked",
11144     "overstretch", "overstuffed", "overturning", "overvaluing",
11145     "overweening", "overwhelmed", "overwinters", "overworking",
11146     "overwriting", "overwritten", "overwrought", "overzealous",
11147     "oxygenating", "oxygenation", "pacesetters", "pacifically",
11148     "paediatrics", "painfullest", "painkillers", "painkilling",
11149     "painstaking", "paleolithic", "palimpsests", "palindromes",
11150     "palindromic", "pallbearers", "palliatives", "palpitating",
11151     "palpitation", "pamphleteer", "pandemonium", "panhandlers",
11152     "panhandling", "pantheistic", "pantomiming", "paperbacked",
11153     "paperhanger", "paperweight", "paracetamol", "parachuting",
11154     "parachutist", "paradoxical", "paragliding", "paragraphed",
11155     "parallelism", "paramedical", "paramountcy", "paraphrased",
11156     "paraphrases", "paraplegics", "parasitical", "paratrooper",
11157     "parentheses", "parenthesis", "parenthetic", "parishioner",
11158     "parliaments", "parochially", "participant", "participate",
11159     "participial", "participles", "particulars", "particulate",
11160     "partitioned", "partnership", "parturition", "passageways",
11161     "passionated", "passionates", "passionless", "passivising",
11162     "passivizing", "pastureland", "paternalism", "paternalist",
11163     "pathfinders", "pathologist", "patisseries", "patriarchal",
11164     "patrimonial", "patrimonies", "patrolwoman", "patrolwomen",
11165     "patronesses", "patronymics", "pavementing", "pawnbrokers",
11166     "peacefuller", "peacekeeper", "peacemakers", "peashooters",
11167     "peculiarity", "pedagogical", "pedagoguing", "pedestrians",
11168     "peevishness", "pejoratives", "penetrating", "penetration",
11169     "penetrative", "penitential", "pennyweight", "penologists",
11170     "pensionable", "pensiveness", "pentagonals", "pentameters",
11171     "pentathlons", "penthousing", "penultimate", "peppercorns",
11172     "peppermints", "perambulate", "perceivable", "percentages",
11173     "percentiles", "perceptible", "perceptibly", "perceptions",
11174     "percolating", "percolation", "percolators", "perennially",
11175     "perestroika", "perfectible", "perfections", "perforating",
11176     "perforation", "performance", "perfumeries", "perfunctory",
11177     "pericardium", "periodicals", "periodicity", "periodontal",
11178     "peripatetic", "peripherals", "peripheries", "periphrases",
11179     "periphrasis", "periscoping", "perishables", "peritoneums",
11180     "peritonitis", "periwigging", "periwinkles", "permanently",
11181     "permissible", "permissibly", "permissions", "permutation",
11182     "perorations", "perpetrated", "perpetrates", "perpetrator",
11183     "perpetually", "perpetuated", "perpetuates", "perplexedly",
11184     "perquisites", "persecuting", "persecution", "persecutors",
11185     "persevering", "persistence", "persnickety", "personality",
11186     "personified", "personifies", "perspective", "perspicuity",
11187     "perspicuous", "persuasions", "pertinacity", "pertinently",
11188     "pervasively", "perversions", "pessimistic", "pestilences",
11189     "petitioners", "petitioning", "petrodollar", "pettifogged",
11190     "pettifogger", "pharmacists", "phenomenons", "philandered",
11191     "philanderer", "philatelist", "philistines", "philologist",
11192     "philosopher", "philosophic", "phonetician", "phonographs",
11193     "phonologist", "photocopied", "photocopier", "photocopies",
11194     "photographs", "photography", "phrasebooks", "phraseology",
11195     "physicality", "physiognomy", "pianissimos", "pianofortes",
11196     "picaresques", "pickpockets", "pictographs", "pictorially",
11197     "picturesque", "pigeonholed", "pigeonholes", "piggishness",
11198     "piggybacked", "pigheadedly", "pilgrimages", "pillowcases",
11199     "pillowslips", "pilothouses", "pincushions", "pinfeathers",
11200     "pinpointing", "pinpricking", "pinwheeling", "pirouetting",
11201     "piscatorial", "pitchblende", "pitchforked", "pitifullest",
11202     "pituitaries", "placeholder", "plagiarisms", "plagiarists",
11203     "plainspoken", "plaintively", "planetarium", "plantations",
11204     "platforming", "playfulness", "playgrounds", "playschools",
11205     "playwrights", "pleasantest", "pleasurable", "pleasurably",
11206     "plebiscites", "plentifully", "pluperfects", "pluralistic",
11207     "pluralities", "plutocratic", "pocketbooks", "pocketknife",
11208     "pockmarking", "podiatrists", "poinsettias", "pointillism",
11209     "pointillist", "pointlessly", "poisonously", "polemicists",
11210     "policewoman", "policewomen", "policymaker", "politically",
11211     "politicians", "politicking", "pollinating", "pollination",
11212     "poltergeist", "polyandrous", "polygamists", "polygraphed",
11213     "polyhedrons", "polymorphic", "polynomials", "polystyrene",
11214     "polytechnic", "polytheists", "pomegranate", "pompadoured",
11215     "pompousness", "ponderously", "pontificate", "populations",
11216     "pornography", "portability", "porterhouse", "portmanteau",
11217     "portraitist", "portraiture", "positioning", "positivists",
11218     "possessions", "possessives", "possibility", "postmarking",
11219     "postmasters", "postmortems", "postscripts", "postulating",
11220     "potentially", "powerhouses", "powerlessly", "practicable",
11221     "practicably", "practically", "pragmatists", "prearranged",
11222     "prearranges", "precautions", "precipitant", "precipitate",
11223     "precipitous", "preciseness", "preconceive", "predeceased",
11224     "predeceases", "predecessor", "predestined", "predestines",
11225     "predicament", "predicating", "predication", "predicative",
11226     "predictable", "predictably", "predictions", "predigested",
11227     "predisposed", "predisposes", "predominant", "predominate",
11228     "preeminence", "preexisting", "prefectures", "preferences",
11229     "prefiguring", "pregnancies", "prehistoric", "prejudicial",
11230     "prejudicing", "preliminary", "preliterate", "prematurely",
11231     "premeditate", "premiership", "premonition", "premonitory",
11232     "preoccupied", "preoccupies", "preordained", "prepackaged",
11233     "prepackages", "preparation", "preparatory", "prepayments",
11234     "preposition", "prerecorded", "preregister", "prerogative",
11235     "preschooler", "prescribing", "presentable", "prestigious",
11236     "presumption", "presumptive", "presupposed", "presupposes",
11237     "pretentious", "prettifying", "prevaricate", "preventable",
11238     "preventives", "priestesses", "priesthoods", "priestliest",
11239     "primitively", "primordials", "princeliest", "principally",
11240     "principling", "printmaking", "privileging", "prizefights",
11241     "proactively", "probability", "probationer", "problematic",
11242     "proboscises", "proceedings", "processions", "proclaiming",
11243     "procreating", "procreation", "procreative", "procurators",
11244     "procurement", "prodigality", "productions", "profanation",
11245     "profanities", "professions", "proficiency", "proficients",
11246     "profiteered", "profiterole", "profligates", "profoundest",
11247     "progenitors", "prognostics", "programmers", "progressing",
11248     "progression", "progressive", "prohibiting", "prohibition",
11249     "prohibitive", "prohibitory", "projectiles", "projections",
11250     "proletarian", "proletariat", "proliferate", "promenading",
11251     "prominently", "promiscuity", "promiscuous", "promisingly",
11252     "promotional", "promulgated", "promulgates", "pronouncing",
11253     "proofreader", "propagating", "propagation", "propagators",
11254     "propellants", "prophesying", "prophylaxis", "propinquity",
11255     "propitiated", "propitiates", "proportions", "proposition",
11256     "propounding", "proprietary", "proprieties", "proprietors",
11257     "prosaically", "prosceniums", "proscribing", "prosecuting",
11258     "prosecution", "prosecutors", "proselyting", "prospecting",
11259     "prospective", "prospectors", "prosthetics", "prostituted",
11260     "prostitutes", "prostrating", "prostration", "protagonist",
11261     "protections", "protectives", "protestants", "prototyping",
11262     "protracting", "protraction", "protractors", "protrusions",
11263     "protuberant", "provenances", "provendered", "providently",
11264     "provincials", "provisional", "provisioned", "provocateur",
11265     "provocation", "provocative", "prudentials", "prudishness",
11266     "psychedelia", "psychedelic", "psychiatric", "psychically",
11267     "psychodrama", "psychogenic", "psychopaths", "pterodactyl",
11268     "publication", "publishable", "pulchritude", "punctilious",
11269     "punctuality", "punctuating", "punctuation", "punishingly",
11270     "punishments", "purchasable", "purgatorial", "purgatories",
11271     "puritanical", "purportedly", "purposeless", "pussyfooted",
11272     "putrescence", "pyromaniacs", "pyrotechnic", "quadrangles",
11273     "quadrennial", "quadrilling", "quadruplets", "quadrupling",
11274     "qualitative", "quantifiers", "quantifying", "quarantined",
11275     "quarantines", "quarrelsome", "quarterback", "quarterdeck",
11276     "quarterlies", "querulously", "questioners", "questioning",
11277     "quicksilver", "quintuplets", "quintupling", "quizzically",
11278     "racecourses", "racketeered", "racquetball", "radioactive",
11279     "radiocarbon", "radiography", "radiologist", "raffishness",
11280     "ragamuffins", "railroading", "rancorously", "rangefinder",
11281     "rapaciously", "rapporteurs", "rapscallion", "rapturously",
11282     "raspberries", "ratatouille", "rathskeller", "rationalism",
11283     "rationalist", "rationality", "rattlesnake", "rattletraps",
11284     "raucousness", "raunchiness", "ravishingly", "reactionary",
11285     "reactivated", "reactivates", "readability", "readdressed",
11286     "readdresses", "readerships", "readjusting", "readmitting",
11287     "reaffirming", "realignment", "reallocated", "reallocates",
11288     "realpolitik", "reanimating", "reappearing", "reappointed",
11289     "reapportion", "reappraisal", "reappraised", "reappraises",
11290     "rearranging", "reassembled", "reassembles", "reasserting",
11291     "reassessing", "reassigning", "reassurance", "reawakening",
11292     "rebroadcast", "recantation", "recapturing", "receivables",
11293     "receptacles", "receptively", "receptivity", "recessional",
11294     "recidivists", "reciprocals", "reciprocate", "reciprocity",
11295     "recitations", "recitatives", "reclamation", "recognition",
11296     "recollected", "recombining", "recommenced", "recommences",
11297     "recommended", "recompensed", "recompenses", "recompiling",
11298     "reconciling", "recondition", "reconfigure", "reconnected",
11299     "reconquered", "reconsiders", "reconstruct", "reconvening",
11300     "recoverable", "recreations", "recriminate", "recruitment",
11301     "rectangular", "rectifiable", "rectilinear", "recuperated",
11302     "recuperates", "recurrences", "recursively", "recyclables",
11303     "redcurrants", "redecorated", "redecorates", "rededicated",
11304     "rededicates", "redeploying", "redesigning", "redeveloped",
11305     "redirecting", "redirection", "rediscovers", "rediscovery",
11306     "redistricts", "redoubtable", "redundantly", "reeducating",
11307     "reeducation", "reelections", "reenactment", "reenlisting",
11308     "reestablish", "reevaluated", "reevaluates", "reexamining",
11309     "refashioned", "refectories", "referencing", "referendums",
11310     "referential", "refinancing", "refinements", "refinishing",
11311     "reflections", "reflexively", "reflexology", "reforesting",
11312     "reformation", "reformatory", "reformatted", "reformulate",
11313     "refreshment", "refrigerant", "refrigerate", "refurbished",
11314     "refurbishes", "refurnished", "refurnishes", "refutations",
11315     "regenerated", "regenerates", "regimentals", "regimenting",
11316     "regionalism", "registering", "registrants", "regressions",
11317     "regretfully", "regrettable", "regrettably", "regulations",
11318     "regurgitate", "reimbursing", "reincarnate", "reinforcing",
11319     "reinserting", "reinstating", "reinsurance", "reinterpret",
11320     "reinventing", "reinvesting", "reiterating", "reiteration",
11321     "rejiggering", "rejuvenated", "rejuvenates", "relatedness",
11322     "relativists", "relaunching", "relaxations", "reliability",
11323     "religiosity", "religiously", "reliquaries", "relocatable",
11324     "reluctantly", "remaindered", "remarriages", "remastering",
11325     "remembering", "remembrance", "reminiscent", "reminiscing",
11326     "remittances", "remonstrate", "remorseless", "remortgaged",
11327     "remortgages", "remunerated", "remunerates", "renaissance",
11328     "renascences", "renditioned", "renegotiate", "renovations",
11329     "renumbering", "reoccupying", "reoccurring", "repackaging",
11330     "reparations", "reparteeing", "repatriated", "repatriates",
11331     "repertoires", "repertories", "repetitions", "repetitious",
11332     "replaceable", "replacement", "replenished", "replenishes",
11333     "replicating", "replication", "repossessed", "repossesses",
11334     "reprehended", "represented", "repressions", "reprimanded",
11335     "reproachful", "reproaching", "reprocessed", "reprocesses",
11336     "reproducing", "reprovingly", "republicans", "republished",
11337     "republishes", "repudiating", "repudiation", "repulsively",
11338     "reputations", "requirement", "requisition", "rescheduled",
11339     "reschedules", "researchers", "researching", "resemblance",
11340     "resentfully", "resentments", "reservation", "reshuffling",
11341     "residencies", "residential", "resignation", "resiliently",
11342     "resistances", "resolutions", "resourceful", "respectable",
11343     "respectably", "respiration", "respirators", "respiratory",
11344     "resplendent", "respondents", "responsible", "responsibly",
11345     "restatement", "restaurants", "restfullest", "restfulness",
11346     "restitution", "restiveness", "restoration", "restorative",
11347     "restraining", "restricting", "restriction", "restrictive",
11348     "restructure", "resubmitted", "resumptions", "resupplying",
11349     "resurfacing", "resurgences", "resurrected", "resuscitate",
11350     "retaliating", "retaliation", "retaliatory", "retardation",
11351     "reticulated", "retirements", "retractable", "retractions",
11352     "retrenching", "retribution", "retributive", "retrievable",
11353     "retroactive", "retrofitted", "retrograded", "retrogrades",
11354     "retrorocket", "retrospects", "returnables", "reupholster",
11355     "revaluation", "revealingly", "revelations", "reverberate",
11356     "reverencing", "reverential", "revisionism", "revisionist",
11357     "revivalists", "revivifying", "revocations", "revoltingly",
11358     "revolutions", "rhetorician", "rhinestones", "ricocheting",
11359     "righteously", "ringleaders", "ringmasters", "riotousness",
11360     "ritualistic", "riverfronts", "roadblocked", "roadrunners",
11361     "roguishness", "romanticism", "romanticist", "rotisseries",
11362     "rotogravure", "rottweilers", "roughhoused", "roughhouses",
11363     "roughnecked", "roundabouts", "roundhouses", "roustabouts",
11364     "rubbernecks", "rudimentary", "rumbustious", "ruminations",
11365     "rustproofed", "sabbaticals", "sacramental", "sacramented",
11366     "sacrificial", "sacrificing", "safeguarded", "safekeeping",
11367     "sagaciously", "sailboarded", "saintliness", "salaciously",
11368     "salamanders", "salesclerks", "salespeople", "salesperson",
11369     "salmonellae", "saltcellars", "saltshakers", "salutations",
11370     "salvageable", "sanatoriums", "sanctifying", "sanctioning",
11371     "sanctuaries", "sandbagging", "sandblasted", "sandblaster",
11372     "sandcastles", "sandpapered", "sandwiching", "sanitariums",
11373     "saprophytes", "sarcophagus", "sartorially", "sassafrases",
11374     "satanically", "satelliting", "satirically", "saxophonist",
11375     "scaffolding", "scapegoated", "scaremonger", "scatterings",
11376     "sceptically", "schismatics", "schlockiest", "schmaltzier",
11377     "scholarship", "schoolbooks", "schoolchild", "schoolgirls",
11378     "schoolhouse", "schoolmarms", "schoolmates", "schoolrooms",
11379     "schoolyards", "scintillate", "scoreboards", "scorekeeper",
11380     "scoutmaster", "scraggliest", "scratchcard", "scratchiest",
11381     "scratchpads", "screamingly", "screechiest", "screenplays",
11382     "screwdriver", "scrimmaging", "scrimshawed", "scruffiness",
11383     "scrumhalves", "scrumptious", "scrutineers", "sculpturing",
11384     "scuttlebutt", "searchingly", "searchlight", "seasickness",
11385     "seasonality", "seaworthier", "secondaries", "secondarily",
11386     "secondments", "secretarial", "secretariat", "secretaries",
11387     "secretively", "secularists", "sedimentary", "seductively",
11388     "segregating", "segregation", "seismically", "seismograph",
11389     "selectively", "selectivity", "selfishness", "sellotaping",
11390     "semaphoring", "semicircles", "semimonthly", "seminarians",
11391     "semiprivate", "semiquavers", "semiskilled", "semitrailer",
11392     "sensational", "senselessly", "sensibility", "sensitively",
11393     "sensitivity", "sententious", "sentimental", "separations",
11394     "separatists", "sequestered", "sequestrate", "serendipity",
11395     "seriousness", "serviceable", "settlements", "seventeenth",
11396     "seventieths", "sexologists", "shadowboxed", "shadowboxes",
11397     "shallowness", "shamanistic", "shamelessly", "shanghaiing",
11398     "shantytowns", "shapelessly", "shapeliness", "shareholder",
11399     "shellacking", "shellfishes", "shenanigans", "shepherdess",
11400     "shepherding", "shibboleths", "shillelaghs", "shipbuilder",
11401     "shipwrecked", "shipwrights", "shirtsleeve", "shirtwaists",
11402     "shoehorning", "shoestrings", "shopaholics", "shopfitters",
11403     "shopfitting", "shopkeepers", "shoplifters", "shoplifting",
11404     "shortchange", "shortcoming", "shortenings", "shorthanded",
11405     "shortlisted", "shotgunning", "shouldering", "showboating",
11406     "showerproof", "showgrounds", "showjumping", "showmanship",
11407     "showstopper", "shrubberies", "shutterbugs", "shuttlecock",
11408     "sickeningly", "sidesaddles", "sidestepped", "sidestroked",
11409     "sidestrokes", "sideswiping", "sidetracked", "sightseeing",
11410     "signatories", "significant", "signposting", "silhouetted",
11411     "silhouettes", "silversmith", "simperingly", "simplifying",
11412     "simulacrums", "simulations", "simulcasted", "singsonging",
11413     "singularity", "sisterhoods", "skateboards", "skedaddling",
11414     "skeptically", "sketchbooks", "skirmishers", "skirmishing",
11415     "skulduggery", "skyrocketed", "skyscrapers", "slaphappier",
11416     "slaughtered", "slaughterer", "sleazeballs", "sleeplessly",
11417     "sleepwalked", "sleepwalker", "sleepyheads", "slenderness",
11418     "slipperiest", "slipstreams", "slovenliest", "slowcoaches",
11419     "smallholder", "smatterings", "smithereens", "smokehouses",
11420     "smokescreen", "smokestacks", "snapdragons", "snowballing",
11421     "snowboarded", "snowboarder", "snowmobiled", "snowmobiles",
11422     "snowploughs", "snowplowing", "snowshoeing", "sociability",
11423     "socialistic", "sociologist", "softhearted", "solemnities",
11424     "solidifying", "soliloquies", "solipsistic", "somersaults",
11425     "songwriters", "songwriting", "soothsayers", "sophistries",
11426     "sorceresses", "sorrowfully", "soulfulness", "soundlessly",
11427     "soundproofs", "soundtracks", "sousaphones", "southerlies",
11428     "southerners", "southwester", "sovereignty", "spacecrafts",
11429     "spaceflight", "spacewalked", "spanielling", "sparrowhawk",
11430     "speakeasies", "spearheaded", "specialisms", "specialists",
11431     "specifiable", "specificity", "spectacular", "speculating",
11432     "speculation", "speculative", "speculators", "speechified",
11433     "speechifies", "speedometer", "spellbinder", "spendthrift",
11434     "spermatozoa", "spermicidal", "spermicides", "spinelessly",
11435     "spiritually", "spitefuller", "splashdowns", "splattering",
11436     "splendidest", "splintering", "splotchiest", "spluttering",
11437     "spoilsports", "spokeswoman", "spokeswomen", "sponsorship",
11438     "spontaneity", "spontaneous", "spoonerisms", "sportscasts",
11439     "sportswoman", "sportswomen", "spotlighted", "spreadsheet",
11440     "sprightlier", "springboard", "springiness", "sprinklings",
11441     "squandering", "squattering", "squeamishly", "squeegeeing",
11442     "squiggliest", "stablemates", "stagestruck", "stagflation",
11443     "staggerings", "stakeholder", "stalactites", "stalagmites",
11444     "stalemating", "stallholder", "standoffish", "standpoints",
11445     "standstills", "startlingly", "statehouses", "stateliness",
11446     "statemented", "stateswoman", "stateswomen", "statistical",
11447     "statutorily", "staunchness", "steadfastly", "steakhouses",
11448     "stealthiest", "steamrolled", "steamroller", "steelmakers",
11449     "steelworker", "steeplejack", "stenography", "stepbrother",
11450     "stepfathers", "stepladders", "stepmothers", "stepparents",
11451     "stepsisters", "stereoscope", "stereotyped", "stereotypes",
11452     "stethoscope", "stewardship", "stickleback", "stillbirths",
11453     "stimulating", "stimulation", "stimulative", "stipendiary",
11454     "stipulating", "stipulation", "stockbroker", "stockholder",
11455     "stockpiling", "stocktaking", "stomachache", "stonemasons",
11456     "stonewalled", "stonewashed", "stopwatches", "storefronts",
11457     "storehouses", "storekeeper", "storyboards", "storyteller",
11458     "straggliest", "straightens", "straightest", "straighting",
11459     "straitening", "straitlaced", "strangeness", "strangering",
11460     "strangulate", "straplesses", "strategical", "strategists",
11461     "stratifying", "streamlined", "streamlines", "streetlamps",
11462     "streetlight", "strengthens", "strenuously", "stretchered",
11463     "stretchiest", "strikebound", "stringently", "stripteased",
11464     "stripteases", "strongboxes", "strongholds", "strongrooms",
11465     "stroppiness", "structuring", "strumpeting", "stubbornest",
11466     "stubborning", "studentship", "stultifying", "stupidities",
11467     "stylishness", "subbasement", "subcompacts", "subcontract",
11468     "subcultures", "subdividing", "subdivision", "subheadings",
11469     "subjectives", "subjugating", "subjugation", "subjunctive",
11470     "sublimating", "sublimation", "submariners", "submergence",
11471     "submersible", "submissions", "subordinate", "subornation",
11472     "subpoenaing", "subprograms", "subroutines", "subscribers",
11473     "subscribing", "subsections", "subsequents", "subservient",
11474     "subsistence", "substandard", "substantial", "substantive",
11475     "substations", "substituted", "substitutes", "subterfuges",
11476     "subtracting", "subtraction", "subtrahends", "subtropical",
11477     "suburbanite", "subventions", "subversives", "successions",
11478     "succinctest", "sufficiency", "suffocating", "suffocation",
11479     "suffragette", "suffragists", "sugarcoated", "suggestible",
11480     "suggestions", "suitability", "summerhouse", "sumptuously",
11481     "supercharge", "superficial", "superfluity", "superfluous",
11482     "superheroes", "superimpose", "superintend", "superiority",
11483     "superlative", "supermarket", "supermodels", "superpowers",
11484     "superscript", "superseding", "supersonics", "superstates",
11485     "superstores", "supertanker", "supervening", "supervising",
11486     "supervision", "supervisors", "supervisory", "supplanting",
11487     "supplements", "supplicants", "supplicated", "supplicates",
11488     "supportable", "supposition", "suppository", "suppressant",
11489     "suppressing", "suppression", "suppressors", "suppurating",
11490     "suppuration", "supremacist", "surcharging", "surfboarded",
11491     "surmounting", "surplussing", "surprisings", "surrealists",
11492     "surrendered", "surrounding", "susceptible", "suspenseful",
11493     "suspensions", "sustainable", "swallowtail", "sweatshirts",
11494     "sweepstakes", "sweetbreads", "sweetbriers", "sweethearts",
11495     "swellheaded", "swelterings", "switchbacks", "switchblade",
11496     "switchboard", "swordfishes", "sycophantic", "syllabified",
11497     "syllabifies", "syllogistic", "symmetrical", "sympathetic",
11498     "symptomatic", "synchronous", "syncopating", "syncopation",
11499     "syndicalism", "syndicalist", "syndicating", "syndication",
11500     "synergistic", "syntactical", "syphilitics", "systematics",
11501     "tabernacles", "tablecloths", "tablespoons", "tabulations",
11502     "tachographs", "tachometers", "taciturnity", "tagliatelle",
11503     "tambourines", "tangibility", "taskmasters", "tastelessly",
11504     "tattletales", "tautologies", "taxidermist", "teargassing",
11505     "tearjerkers", "teaspoonful", "technically", "technicians",
11506     "technocracy", "technocrats", "technophobe", "tediousness",
11507     "teenybopper", "teetotalism", "telecasters", "telecasting",
11508     "telecommute", "telegraphed", "telegrapher", "telegraphic",
11509     "telekinesis", "telemetries", "telephoning", "telephonist",
11510     "teleprinter", "telescoping", "televisions", "teleworkers",
11511     "teleworking", "temperament", "temperating", "temperature",
11512     "tempestuous", "temporaries", "temporarily", "temptations",
11513     "temptresses", "tenaciously", "tendentious", "tenderfoots",
11514     "tenderloins", "tentatively", "tenuousness", "terminating",
11515     "termination", "terminators", "terminology", "terrestrial",
11516     "territorial", "territories", "tessellated", "tessellates",
11517     "testimonial", "testimonies", "tetrahedron", "thalidomide",
11518     "thankfuller", "thanklessly", "theatricals", "thenceforth",
11519     "theocracies", "theodolites", "theologians", "theological",
11520     "theoretical", "therapeutic", "thereabouts", "thermometer",
11521     "thermostats", "thesauruses", "thickenings", "thicknesses",
11522     "thimblefuls", "thingamabob", "thingamajig", "thingumabob",
11523     "thingummies", "thirteenths", "thistledown", "thoroughest",
11524     "thoughtless", "thousandths", "threatening", "threescores",
11525     "thriftiness", "thrillingly", "throatiness", "thumbprints",
11526     "thumbscrews", "thunderbolt", "thunderclap", "thunderhead",
11527     "tiddlywinks", "tiebreakers", "tightfisted", "timberlines",
11528     "timekeepers", "timekeeping", "timeservers", "timeserving",
11529     "timetabling", "tinderboxes", "titillating", "titillation",
11530     "toastmaster", "tobacconist", "tobogganing", "tomahawking",
11531     "tonsillitis", "toothpastes", "topographer", "topographic",
11532     "topological", "touchpapers", "touchstones", "tournaments",
11533     "tourniquets", "townspeople", "tracheotomy", "trademarked",
11534     "traditional", "traffickers", "trafficking", "tragicomedy",
11535     "trailblazer", "trampolined", "trampolines", "tranquilest",
11536     "transacting", "transaction", "transceiver", "transcended",
11537     "transcribed", "transcribes", "transcripts", "transducers",
11538     "transferals", "transferred", "transfigure", "transfinite",
11539     "transfixing", "transformed", "transformer", "transfusing",
11540     "transfusion", "transistors", "transitions", "transitives",
11541     "translating", "translation", "translators", "translucent",
11542     "transmittal", "transmitted", "transmitter", "transmuting",
11543     "transparent", "transpiring", "transplants", "transponder",
11544     "transported", "transporter", "transposing", "transsexual",
11545     "transversed", "transverses", "trapezoidal", "travelogues",
11546     "travestying", "treacheries", "treacherous", "treasonable",
11547     "tremulously", "trenchantly", "trendsetter", "trepidation",
11548     "trespassers", "trespassing", "triathletes", "tribeswoman",
11549     "tribeswomen", "tribulation", "tributaries", "triceratops",
11550     "trilaterals", "trillionths", "triplicated", "triplicates",
11551     "triumvirate", "troglodytes", "trombonists", "troposphere",
11552     "troubadours", "troubleshot", "troublesome", "truculently",
11553     "trusteeship", "trustworthy", "tuberculous", "tumbleweeds",
11554     "tunefulness", "turbocharge", "turbulently", "turnarounds",
11555     "turtledoves", "turtlenecks", "typecasting", "typescripts",
11556     "typesetters", "typesetting", "typewriters", "typewriting",
11557     "typewritten", "typographer", "typographic", "tyrannosaur",
11558     "ultramarine", "ultrasonics", "ultrasounds", "ultraviolet",
11559     "umbrellaing", "unabridgeds", "unalterable", "unalterably",
11560     "unambiguous", "unambitious", "unanimously", "unannounced",
11561     "unappealing", "unashamedly", "unavailable", "unavoidable",
11562     "unavoidably", "unawareness", "unbalancing", "unbelievers",
11563     "unbelieving", "unblemished", "unbreakable", "unburdening",
11564     "unbuttoning", "unceasingly", "uncertainly", "uncertainty",
11565     "unchristian", "uncleanlier", "uncleanness", "uncluttered",
11566     "uncollected", "uncommitted", "uncommonest", "uncompleted",
11567     "unconcerned", "unconfirmed", "uncongenial", "unconnected",
11568     "unconscious", "uncontested", "unconvinced", "uncountable",
11569     "uncrushable", "undeceiving", "undecidable", "undefinable",
11570     "undelivered", "undemanding", "underacting", "underarming",
11571     "undercharge", "undercoated", "underexpose", "underfunded",
11572     "underground", "undergrowth", "underhanded", "underlining",
11573     "undermanned", "undermining", "underneaths", "underpasses",
11574     "underpaying", "underpinned", "underplayed", "underrating",
11575     "underscored", "underscores", "undershirts", "undershoots",
11576     "undershorts", "undersigned", "underskirts", "understands",
11577     "understated", "understates", "undertakers", "undertaking",
11578     "undervalued", "undervalues", "underweight", "underwhelms",
11579     "underworlds", "underwriter", "underwrites", "undeserving",
11580     "undesirable", "undeveloped", "undignified", "undisclosed",
11581     "undisguised", "undisturbed", "undoubtedly", "undulations",
11582     "unemotional", "unendurable", "unequivocal", "unethically",
11583     "unexplained", "unfailingly", "unfaltering", "unfastening",
11584     "unfeelingly", "unfettering", "unflappable", "unflinching",
11585     "unforgiving", "unfortunate", "unfulfilled", "unfurnished",
11586     "ungainliest", "unhappiness", "unhealthful", "unhealthier",
11587     "unhealthily", "unhelpfully", "unhurriedly", "unification",
11588     "unimportant", "unimpressed", "uninhabited", "uninhibited",
11589     "uninitiated", "uninspiring", "universally", "unjustified",
11590     "unkindliest", "unknowingly", "unlikeliest", "unmemorable",
11591     "unmitigated", "unnaturally", "unnecessary", "unnervingly",
11592     "unobservant", "unobtrusive", "unoffensive", "unpalatable",
11593     "unpatriotic", "unperturbed", "unprintable", "unpromising",
11594     "unprotected", "unpublished", "unqualified", "unreachable",
11595     "unrealistic", "unreasoning", "unregulated", "unrehearsed",
11596     "unrelenting", "unremitting", "unrepentant", "unrewarding",
11597     "unsatisfied", "unsaturated", "unscheduled", "unscrambled",
11598     "unscrambles", "unseemliest", "unselfishly", "unsheathing",
11599     "unsightlier", "unsolicited", "unspeakable", "unspeakably",
11600     "unspecified", "unsteadiest", "unstoppable", "unsupported",
11601     "unsurpassed", "unsuspected", "unsweetened", "unthinkable",
11602     "untimeliest", "untouchable", "untypically", "unutterable",
11603     "unutterably", "unvarnished", "unwarranted", "unwelcoming",
11604     "unwholesome", "unwieldiest", "unwillingly", "unwittingly",
11605     "unworthiest", "upbringings", "upholstered", "upholsterer",
11606     "uprightness", "upstreaming", "uselessness", "utilitarian",
11607     "vacationers", "vacationing", "vaccinating", "vaccination",
11608     "vacillating", "vacillation", "vacuousness", "vagabonding",
11609     "valedictory", "validations", "vanquishing", "variability",
11610     "variegating", "variegation", "vasectomies", "vegeburgers",
11611     "vegetarians", "ventilating", "ventilation", "ventilators",
11612     "ventricular", "venturesome", "verdigrised", "verdigrises",
11613     "vernaculars", "versatility", "vertebrates", "vertiginous",
11614     "vestigially", "vexatiously", "vibraphones", "vicariously",
11615     "vichyssoise", "viciousness", "vicissitude", "videophones",
11616     "videotaping", "viewfinders", "vigilantism", "vinaigrette",
11617     "vindicating", "vindication", "vindicators", "violincello",
11618     "violoncello", "viscountess", "visionaries", "visitations",
11619     "viticulture", "vituperated", "vituperates", "vivaciously",
11620     "vivisection", "vociferated", "vociferates", "volleyballs",
11621     "voluntaries", "voluntarily", "volunteered", "voraciously",
11622     "vouchsafing", "voyeuristic", "vulgarities", "wainscoting",
11623     "waistcoated", "wakefulness", "wallflowers", "wallpapered",
11624     "wanderlusts", "warehousing", "warmhearted", "warrantying",
11625     "washerwoman", "washerwomen", "wastebasket", "watchmakers",
11626     "watchstraps", "watchtowers", "watercourse", "waterfronts",
11627     "waterlogged", "watermarked", "watermelons", "waterproofs",
11628     "waterspouts", "waterwheels", "wavelengths", "waywardness",
11629     "wealthiness", "weathercock", "weedkillers", "weighbridge",
11630     "weightiness", "wellingtons", "wellsprings", "westernmost",
11631     "wheelbarrow", "wheelchairs", "wheelhouses", "wheelwright",
11632     "whereabouts", "wheresoever", "wherewithal", "whimsically",
11633     "whirlybirds", "whiteboards", "whitefishes", "whitewashed",
11634     "whitewashes", "wholesalers", "wholesaling", "whorehouses",
11635     "wildcatters", "wildcatting", "wildebeests", "wildflowers",
11636     "willfulness", "willingness", "windbreaker", "windburning",
11637     "windcheater", "windjammers", "windmilling", "windowpanes",
11638     "windowsills", "windscreens", "windshields", "windsurfers",
11639     "windsurfing", "wineglasses", "wingspreads", "wintergreen",
11640     "wiretapping", "wisecracked", "wistfulness", "withdrawals",
11641     "withdrawing", "witheringly", "withholding", "womanliness",
11642     "wonderfully", "wonderingly", "wonderlands", "woodcarving",
11643     "woodcutters", "woodcutting", "woodpeckers", "woodworking",
11644     "workaholics", "workbaskets", "workbenches", "workmanlike",
11645     "workmanship", "workstation", "worldliness", "wraparounds",
11646     "wretchedest", "wrongdoings", "wrongheaded", "wunderkinds",
11647     "xerographic", "xylophonist", "yachtswoman", "yachtswomen",
11648     "zealousness"
11649   };
11650 
11651   const char* w_12[] = {
11652     "abbreviating", "abbreviation", "abolitionist", "abominations",
11653     "abortionists", "abrasiveness", "abstractedly", "abstractions",
11654     "abstractness", "abstruseness", "academically", "academicians",
11655     "accelerating", "acceleration", "accelerators", "accentuating",
11656     "accentuation", "accessioning", "accidentally", "acclimatised",
11657     "acclimatises", "acclimatized", "acclimatizes", "accommodated",
11658     "accommodates", "accompanists", "accompanying", "accomplished",
11659     "accomplishes", "accumulating", "accumulation", "accumulative",
11660     "accumulators", "accurateness", "achievements", "acknowledged",
11661     "acknowledges", "acoustically", "acquaintance", "acquiescence",
11662     "acquisitions", "adaptability", "additionally", "adjectivally",
11663     "adjournments", "adjudicating", "adjudication", "adjudicators",
11664     "administered", "administrate", "admonishment", "adolescences",
11665     "adulterating", "adulteration", "adulteresses", "advancements",
11666     "advantageous", "adventitious", "adventurists", "advertorials",
11667     "advisability", "aerodynamics", "aeronautical", "affectations",
11668     "affectionate", "affectioning", "affiliations", "affirmations",
11669     "affirmatives", "aforethought", "afterburners", "aftereffects",
11670     "afterthought", "agglomerated", "agglomerates", "agglutinated",
11671     "agglutinates", "aggravations", "aggregations", "aggressively",
11672     "agoraphobics", "agribusiness", "agricultural", "airworthiest",
11673     "alliteration", "alliterative", "alphabetical", "alphanumeric",
11674     "altercations", "alternations", "alternatives", "amalgamating",
11675     "amalgamation", "amateurishly", "ambidextrous", "ambivalently",
11676     "ambulanceman", "ambulancemen", "ambulatories", "ameliorating",
11677     "amelioration", "amphetamines", "anachronisms", "analytically",
11678     "anarchically", "anatomically", "ancestresses", "anchorpeople",
11679     "anchorperson", "angularities", "annihilating", "annihilation",
11680     "annihilators", "announcement", "answerphones", "antagonistic",
11681     "antechambers", "antediluvian", "anthologists", "anthropology",
11682     "antiabortion", "antiaircraft", "anticipating", "anticipation",
11683     "anticipatory", "anticlimaxes", "anticyclones", "antimacassar",
11684     "antiparticle", "antipathetic", "antiquarians", "antirrhinums",
11685     "antithetical", "aphrodisiacs", "apothecaries", "apparatchiks",
11686     "appeasements", "appellations", "appendectomy", "appendicitis",
11687     "appertaining", "applications", "appointments", "apportioning",
11688     "appositeness", "appreciating", "appreciation", "appreciative",
11689     "apprehending", "apprehension", "apprehensive", "apprenticing",
11690     "approachable", "approbations", "appropriated", "appropriates",
11691     "approximated", "approximates", "appurtenance", "arbitrageurs",
11692     "archdioceses", "archipelagos", "architecture", "aristocratic",
11693     "arithmetical", "aromatherapy", "arraignments", "arrangements",
11694     "articulately", "articulating", "articulation", "artificially",
11695     "artistically", "ascertaining", "asphyxiating", "asphyxiation",
11696     "assassinated", "assassinates", "asseverating", "assignations",
11697     "assimilating", "assimilation", "associations", "astigmatisms",
11698     "astonishment", "astoundingly", "astrological", "astronautics",
11699     "astronomical", "astrophysics", "asymmetrical", "asymptomatic",
11700     "asynchronous", "athletically", "atmospherics", "attestations",
11701     "attractively", "attributable", "attributions", "attributives",
11702     "augmentation", "auspiciously", "authenticate", "authenticity",
11703     "autographing", "automobiling", "autonomously", "availability",
11704     "avariciously", "bacchanalian", "backbenchers", "backbreaking",
11705     "backslappers", "backslapping", "backstabbing", "backstopping",
11706     "backstroking", "backtracking", "backwardness", "backwoodsman",
11707     "backwoodsmen", "bacteriology", "bankruptcies", "bantamweight",
11708     "baptisteries", "barbiturates", "barnstorming", "battlefields",
11709     "battleground", "beachcombers", "beatifically", "beautifulest",
11710     "begrudgingly", "beleaguering", "belligerence", "belligerency",
11711     "belligerents", "bellybuttons", "benedictions", "benefactions",
11712     "benefactress", "beneficently", "beneficially", "benevolences",
11713     "benevolently", "bereavements", "beseechingly", "bespectacled",
11714     "bewilderment", "bibliography", "bibliophiles", "bicentennial",
11715     "bifurcations", "billionaires", "biochemicals", "biochemistry",
11716     "biodegrading", "biodiversity", "biographical", "biologically",
11717     "biophysicist", "birdwatchers", "bittersweets", "blabbermouth",
11718     "blackballing", "blackberries", "blackcurrant", "blackjacking",
11719     "blacklisting", "blackmailers", "blackmailing", "blacktopping",
11720     "blandishment", "blindfolding", "blissfulness", "blockbusters",
11721     "blockbusting", "bloodletting", "bloodmobiles", "bloodstained",
11722     "bloodstreams", "bloodsuckers", "bloodthirsty", "blueprinting",
11723     "bluestocking", "boastfulness", "bodybuilding", "boisterously",
11724     "bombardments", "boomeranging", "boondoggling", "brainstormed",
11725     "brainteasers", "brainwashing", "breadbaskets", "breadwinners",
11726     "breakfasting", "breakthrough", "breastplates", "breaststroke",
11727     "breathalyser", "breathalyzer", "breathlessly", "breathtaking",
11728     "brilliantine", "brinkmanship", "broadcasters", "broadcasting",
11729     "brontosaurus", "brotherhoods", "brushstrokes", "buccaneering",
11730     "bulletproofs", "bullfighters", "bullfighting", "bullshitters",
11731     "bullshitting", "bureaucratic", "bushwhackers", "bushwhacking",
11732     "businesslike", "butterflying", "butterscotch", "buttonholing",
11733     "cabinetmaker", "cablecasting", "calamitously", "calculations",
11734     "calibrations", "calisthenics", "calligrapher", "calumniating",
11735     "camiknickers", "camouflaging", "cancellation", "candidatures",
11736     "candlesticks", "cannonballed", "cantankerous", "cantilevered",
11737     "capabilities", "caparisoning", "capitalistic", "capitulating",
11738     "capitulation", "capriciously", "carbohydrate", "carburettors",
11739     "carcinogenic", "cardiologist", "carelessness", "caricaturing",
11740     "caricaturist", "carillonning", "carpentering", "carpetbagged",
11741     "carpetbagger", "carriageways", "cartographer", "cartwheeling",
11742     "catastrophes", "catastrophic", "catchphrases", "caterpillars",
11743     "caterwauling", "cauliflowers", "cautiousness", "celebrations",
11744     "censoriously", "centenarians", "centrifuging", "ceremonially",
11745     "certificated", "certificates", "chairmanship", "chairpersons",
11746     "chamberlains", "chambermaids", "championship", "chanticleers",
11747     "chaplaincies", "characterful", "charbroiling", "charioteered",
11748     "charismatics", "chastisement", "chatterboxes", "chauffeuring",
11749     "chauvinistic", "cheerfullest", "cheerfulness", "cheerleaders",
11750     "cheeseboards", "cheeseburger", "cheeseparing", "chemotherapy",
11751     "chickenshits", "childbearing", "childishness", "childminders",
11752     "childminding", "childproofed", "chiropodists", "chiropractic",
11753     "chiropractor", "chitchatting", "chitterlings", "chivalrously",
11754     "chlorinating", "chlorination", "chloroformed", "choirmasters",
11755     "choreographs", "choreography", "christenings", "chronographs",
11756     "chronologies", "chronometers", "churchwarden", "churlishness",
11757     "circuitously", "circulations", "circumcising", "circumcision",
11758     "circumflexes", "circumscribe", "circumstance", "circumvented",
11759     "clairvoyance", "clairvoyants", "clapboarding", "clapperboard",
11760     "clarinetists", "classifiable", "clerestories", "cliffhangers",
11761     "cliffhanging", "closemouthed", "clotheslined", "clotheslines",
11762     "clownishness", "cobblestones", "cockfighting", "cockleshells",
11763     "codependency", "codependents", "codification", "coefficients",
11764     "coffeehouses", "cohabitation", "cohesiveness", "coincidences",
11765     "coincidental", "collaborated", "collaborates", "collaborator",
11766     "collectibles", "collectively", "collectivism", "collectivist",
11767     "collocations", "colloquially", "colonialists", "combinations",
11768     "combustibles", "comeuppances", "comfortingly", "commandeered",
11769     "commandments", "commemorated", "commemorates", "commencement",
11770     "commendation", "commensurate", "commentaries", "commentating",
11771     "commentators", "commercially", "commiserated", "commiserates",
11772     "commissariat", "commissaries", "commissioned", "commissioner",
11773     "commonplaces", "commonwealth", "communicable", "communicants",
11774     "communicated", "communicates", "communicator", "commutations",
11775     "companionway", "comparatives", "compartments", "compellingly",
11776     "compensating", "compensation", "compensatory", "competencies",
11777     "competitions", "compilations", "complacently", "complainants",
11778     "complaisance", "complemented", "completeness", "complexioned",
11779     "complexities", "complicating", "complication", "complimented",
11780     "compositions", "comprehended", "compressible", "compromising",
11781     "comptrollers", "compulsively", "compulsories", "compulsorily",
11782     "compunctions", "computations", "concatenated", "concatenates",
11783     "concentrated", "concentrates", "conceptually", "concertgoers",
11784     "concertinaed", "conciliating", "conciliation", "conciliators",
11785     "conciliatory", "conclusively", "concomitants", "concordances",
11786     "concurrences", "concurrently", "condemnation", "condemnatory",
11787     "condensation", "condescended", "conditionals", "conditioners",
11788     "conditioning", "condominiums", "conductivity", "confectioner",
11789     "confederated", "confederates", "conferencing", "confessional",
11790     "confidential", "configurable", "confinements", "confirmation",
11791     "confirmatory", "confiscating", "confiscation", "conformation",
11792     "congeniality", "congenitally", "conglomerate", "congratulate",
11793     "congregating", "congregation", "conjecturing", "conjugations",
11794     "conjunctions", "conjunctives", "conjunctures", "connectivity",
11795     "connoisseurs", "connotations", "conquistador", "conscripting",
11796     "conscription", "consecrating", "consecration", "consequences",
11797     "consequently", "conservation", "conservatism", "conservative",
11798     "conservators", "conservatory", "considerable", "considerably",
11799     "considerings", "consignments", "consistently", "consolations",
11800     "consolidated", "consolidates", "conspiracies", "conspirators",
11801     "constabulary", "constipating", "constipation", "constituency",
11802     "constituents", "constituting", "constitution", "constraining",
11803     "constricting", "constriction", "constrictive", "constrictors",
11804     "constructing", "construction", "constructive", "constructors",
11805     "consultation", "consultative", "consummately", "consummating",
11806     "consummation", "consumptives", "contagiously", "contaminants",
11807     "contaminated", "contaminates", "contemplated", "contemplates",
11808     "contemporary", "contemptible", "contemptibly", "contemptuous",
11809     "contextually", "continentals", "contingently", "continuances",
11810     "continuation", "continuities", "continuously", "contractions",
11811     "contradicted", "contraptions", "contrapuntal", "contrariness",
11812     "contrariwise", "contravening", "contributing", "contribution",
11813     "contributors", "contributory", "contrivances", "controllable",
11814     "controverted", "contumacious", "conurbations", "convalescent",
11815     "convalescing", "conveniences", "conveniently", "conventional",
11816     "convergences", "conversation", "convertibles", "conveyancing",
11817     "convincingly", "conviviality", "convocations", "convolutions",
11818     "convulsively", "cooperatives", "coordinating", "coordination",
11819     "coordinators", "copyrighting", "coquettishly", "corespondent",
11820     "corkscrewing", "cornerstones", "corporations", "correctional",
11821     "correlations", "correlatives", "corresponded", "corroborated",
11822     "corroborates", "corrugations", "cosmetically", "cosmological",
11823     "cosmologists", "cosmopolitan", "cosponsoring", "cottonmouths",
11824     "councilwoman", "councilwomen", "countenanced", "countenances",
11825     "counteracted", "counterblast", "counterclaim", "counterfeits",
11826     "counterfoils", "countermands", "counteroffer", "counterpanes",
11827     "counterparts", "counterpoint", "countersigns", "countersinks",
11828     "countertenor", "countervails", "countrysides", "countrywoman",
11829     "countrywomen", "courageously", "covetousness", "cowardliness",
11830     "crackerjacks", "craftspeople", "creationists", "creativeness",
11831     "credentialed", "creditworthy", "crematoriums", "crisscrossed",
11832     "crisscrosses", "crossbarring", "crosschecked", "crosscurrent",
11833     "crosspatches", "crucifixions", "cryptography", "crystallines",
11834     "culminations", "cumulatively", "curmudgeonly", "currycombing",
11835     "curtailments", "cuttlefishes", "deactivating", "debaucheries",
11836     "debilitating", "debilitation", "decaffeinate", "decapitating",
11837     "decapitation", "decelerating", "deceleration", "decipherable",
11838     "decisiveness", "declamations", "declarations", "declassified",
11839     "declassifies", "decommission", "decompressed", "decompresses",
11840     "decongestant", "deconstructs", "decontrolled", "decoratively",
11841     "decrescendos", "deerstalkers", "deescalating", "deficiencies",
11842     "definiteness", "definitively", "deflationary", "deformations",
11843     "degenerating", "degeneration", "degenerative", "dehumidified",
11844     "dehumidifier", "dehumidifies", "deliberately", "deliberating",
11845     "deliberation", "deliberative", "delicatessen", "delightfully",
11846     "delineations", "delinquently", "deliquescent", "demarcations",
11847     "demographers", "demographics", "demoniacally", "demonstrable",
11848     "demonstrably", "demonstrated", "demonstrates", "demonstrator",
11849     "demotivating", "demystifying", "denominating", "denomination",
11850     "denominators", "denouncement", "denunciation", "departmental",
11851     "dependencies", "depilatories", "depopulating", "depopulation",
11852     "deportations", "depositories", "depreciating", "depreciation",
11853     "depredations", "depressingly", "deprivations", "deprogrammed",
11854     "deregulating", "deregulation", "desalinating", "desalination",
11855     "descriptions", "desegregated", "desegregates", "designations",
11856     "desirability", "desolateness", "despairingly", "despondently",
11857     "despotically", "dessertspoon", "destinations", "destructible",
11858     "deteriorated", "deteriorates", "determinable", "determinants",
11859     "determinedly", "dethronement", "devaluations", "developments",
11860     "diabolically", "diagrammatic", "dictatorship", "dictionaries",
11861     "didactically", "differential", "difficulties", "dilapidation",
11862     "dilettantism", "dillydallied", "dillydallies", "diplomatists",
11863     "dipsomaniacs", "directionals", "directorates", "directorship",
11864     "disabilities", "disadvantage", "disaffecting", "disaffection",
11865     "disafforests", "disagreeable", "disagreeably", "disagreement",
11866     "disambiguate", "disappearing", "disappointed", "disapproving",
11867     "disarranging", "disassembled", "disassembles", "disassociate",
11868     "disastrously", "disbelieving", "disbursement", "disciplinary",
11869     "disciplining", "discomfiting", "discomfiture", "discomforted",
11870     "discommoding", "discomposing", "discomposure", "disconcerted",
11871     "disconnected", "disconsolate", "discontented", "discontinued",
11872     "discontinues", "discotheques", "discouraging", "discourteous",
11873     "discrediting", "discreteness", "discriminant", "discriminate",
11874     "disdainfully", "disembarking", "disembodying", "disemboweled",
11875     "disenchanted", "disencumbers", "disentangled", "disentangles",
11876     "disestablish", "disfranchise", "disgruntling", "disgustingly",
11877     "disheartened", "disillusions", "disincentive", "disinclining",
11878     "disinfectant", "disinfecting", "disingenuous", "disinherited",
11879     "disintegrate", "disinterests", "disinterment", "disinterring",
11880     "disjointedly", "dislocations", "dismembering", "dismissively",
11881     "disobedience", "disorientate", "disorienting", "dispensaries",
11882     "dispensation", "displacement", "dispositions", "dispossessed",
11883     "dispossesses", "disputations", "disputatious", "disqualified",
11884     "disqualifies", "disquisition", "disregarding", "disreputable",
11885     "disreputably", "disrespected", "disruptively", "dissatisfied",
11886     "dissatisfies", "disseminated", "disseminates", "dissertation",
11887     "dissimulated", "dissimulates", "dissociating", "dissociation",
11888     "distillation", "distilleries", "distinctions", "distractedly",
11889     "distractions", "distributing", "distribution", "distributive",
11890     "distributors", "disturbances", "disturbingly", "ditransitive",
11891     "diversifying", "diversionary", "divisibility", "divisiveness",
11892     "doctrinaires", "dogmatically", "domestically", "domesticated",
11893     "domesticates", "dominatrices", "doorknockers", "doorstepping",
11894     "downshifting", "dramatically", "dreadnoughts", "dumbfounding",
11895     "dysfunctions", "earsplitting", "earthquaking", "earthshaking",
11896     "eavesdropped", "eavesdropper", "eccentricity", "ecclesiastic",
11897     "eclectically", "ecologically", "economically", "ecstatically",
11898     "ecumenically", "educationist", "effectuating", "effervescent",
11899     "effervescing", "effortlessly", "effusiveness", "egalitarians",
11900     "ejaculations", "elaborations", "elderberries", "electioneers",
11901     "electrically", "electricians", "electrifying", "electrocuted",
11902     "electrocutes", "electrolysis", "electrolytes", "electrolytic",
11903     "electroplate", "eliminations", "elliptically", "elocutionist",
11904     "elucidations", "emancipating", "emancipation", "emancipators",
11905     "emasculating", "emasculation", "embarkations", "embarrassing",
11906     "embellishing", "embezzlement", "embrocations", "embroideries",
11907     "embroidering", "embryologist", "emotionalism", "emphatically",
11908     "emplacements", "encapsulated", "encapsulates", "encephalitis",
11909     "enchantingly", "enchantments", "encirclement", "encompassing",
11910     "encountering", "encroachment", "encrustation", "encumbrances",
11911     "encyclopedia", "encyclopedic", "endorsements", "enfranchised",
11912     "enfranchises", "enhancements", "enlargements", "enlightening",
11913     "enormousness", "entanglement", "enterprising", "entertainers",
11914     "entertaining", "enthronement", "enthusiastic", "entitlements",
11915     "entomologist", "entrenchment", "entrepreneur", "enumerations",
11916     "environments", "epidemiology", "epiglottises", "epigrammatic",
11917     "epistemology", "epistolaries", "equestrienne", "equilaterals",
11918     "equivalences", "equivalently", "equivocating", "equivocation",
11919     "erythrocytes", "escapologist", "esoterically", "establishing",
11920     "esthetically", "estrangement", "ethnocentric", "ethnographer",
11921     "ethnographic", "ethnological", "ethnologists", "etymological",
11922     "etymologists", "eucalyptuses", "euphorically", "evangelicals",
11923     "evangelistic", "eventfulness", "everlastings", "eviscerating",
11924     "evisceration", "evolutionary", "exacerbating", "exacerbation",
11925     "exaggerating", "exaggeration", "examinations", "exasperating",
11926     "exasperation", "exchangeable", "excitability", "exclamations",
11927     "exclusionary", "excoriations", "excrescences", "excruciating",
11928     "executioners", "exemplifying", "exhaustively", "exhilarating",
11929     "exhilaration", "exhortations", "exorbitantly", "expansionary",
11930     "expansionism", "expansionist", "expatriating", "expatriation",
11931     "expectations", "expectorants", "expectorated", "expectorates",
11932     "expediencies", "expenditures", "experiencing", "experiential",
11933     "experimental", "experimented", "experimenter", "explanations",
11934     "explications", "explicitness", "exploitation", "exploitative",
11935     "explorations", "expostulated", "expostulates", "expressively",
11936     "expropriated", "expropriates", "expropriator", "expurgations",
11937     "exterminated", "exterminates", "exterminator", "extinguished",
11938     "extinguisher", "extinguishes", "extortionate", "extortioners",
11939     "extortionist", "extraditable", "extraditions", "extramarital",
11940     "extraneously", "extrapolated", "extrapolates", "extrasensory",
11941     "extravagance", "extravaganza", "extroversion", "eyewitnesses",
11942     "fabrications", "facilitating", "facilitation", "facilitators",
11943     "facsimileing", "factionalism", "fainthearted", "faithfulness",
11944     "fallaciously", "fascinations", "fastidiously", "faultfinding",
11945     "fearlessness", "fecklessness", "felicitation", "felicitously",
11946     "fermentation", "fiddlesticks", "fieldworkers", "figuratively",
11947     "filibustered", "fingerboards", "fingerprints", "firebombings",
11948     "firecrackers", "firefighters", "firefighting", "firelighters",
11949     "fireproofing", "flabbergasts", "flagellating", "flagellation",
11950     "flamboyantly", "flamethrower", "flammability", "flatteringly",
11951     "flimflamming", "floodlighted", "fluctuations", "fluorescence",
11952     "fluoridating", "fluoridation", "fluorocarbon", "fluoroscopes",
11953     "foolhardiest", "footslogging", "forbiddingly", "forcefulness",
11954     "foreclosures", "foregrounded", "foreordained", "foreshadowed",
11955     "foreshortens", "forestalling", "forgathering", "formaldehyde",
11956     "formlessness", "formulations", "forthrightly", "fortuitously",
11957     "fountainhead", "fractionally", "frankfurters", "frankincense",
11958     "fraternities", "fraudulently", "freakishness", "freestanding",
11959     "freethinkers", "freethinking", "freewheeling", "frenetically",
11960     "fricasseeing", "friendliness", "frogmarching", "frontbencher",
11961     "frontbenches", "frontiersman", "frontiersmen", "frontispiece",
11962     "fruitfullest", "fruitfulness", "frustrations", "fulminations",
11963     "functionally", "fundamentals", "gallbladders", "gallivanting",
11964     "galvanometer", "gamesmanship", "garnisheeing", "gatecrashers",
11965     "gatecrashing", "gazetteering", "genealogical", "genealogists",
11966     "generalities", "generational", "generosities", "genuflecting",
11967     "genuflection", "geographical", "geologically", "geophysicist",
11968     "geopolitical", "geriatrician", "gerrymanders", "gesticulated",
11969     "gesticulates", "ghostwriters", "ghostwriting", "ghostwritten",
11970     "gigantically", "gladiatorial", "globetrotter", "glockenspiel",
11971     "gluttonously", "gobbledygook", "goddaughters", "goldbricking",
11972     "gooseberries", "goosestepped", "gorgeousness", "governmental",
11973     "governorship", "gracefullest", "gracefulness", "graciousness",
11974     "granddaddies", "grandfathers", "grandmothers", "grandparents",
11975     "grandstanded", "graphologist", "grasshoppers", "gratefullest",
11976     "gratefulness", "gratifyingly", "gratuitously", "gravediggers",
11977     "greengrocers", "gregariously", "griddlecakes", "groundcloths",
11978     "groundlessly", "groundsheets", "groundswells", "guaranteeing",
11979     "guardianship", "guesstimated", "guesstimates", "guillotining",
11980     "guttersnipes", "haberdashers", "haberdashery", "habitability",
11981     "hairbreadths", "hairdressers", "hairdressing", "hairsbreadth",
11982     "hairstylists", "hallucinated", "hallucinates", "hallucinogen",
11983     "hamstringing", "handcrafting", "handicappers", "handicapping",
11984     "handkerchief", "handsomeness", "happenstance", "harbormaster",
11985     "hardheadedly", "hardscrabble", "harmlessness", "harmonically",
11986     "harmoniously", "harpsichords", "headmistress", "headquarters",
11987     "headteachers", "heartrending", "heartstrings", "heartwarming",
11988     "heavyweights", "heedlessness", "helicoptered", "helplessness",
11989     "hemorrhaging", "hemstitching", "henceforward", "hermetically",
11990     "herringboned", "herringbones", "hesitatingly", "heterosexual",
11991     "hierarchical", "hieroglyphic", "highlighters", "highlighting",
11992     "hindquarters", "hippopotamus", "historically", "holidaymaker",
11993     "holistically", "homelessness", "homesickness", "homesteaders",
11994     "homesteading", "honeycombing", "honeymooners", "honeymooning",
11995     "honeysuckles", "hopelessness", "hopscotching", "horizontally",
11996     "horrendously", "horrifically", "horrifyingly", "horsemanship",
11997     "horseshoeing", "horsetrading", "horsewhipped", "horticulture",
11998     "housebreaker", "housecleaned", "householders", "househusband",
11999     "housekeepers", "housekeeping", "housemasters", "housemothers",
12000     "housewarming", "humanitarian", "humiliations", "hummingbirds",
12001     "hundredfolds", "hydraulicked", "hydrocarbons", "hydrogenated",
12002     "hydrogenates", "hydroplaning", "hydrotherapy", "hygienically",
12003     "hyperactives", "hypermarkets", "hypertension", "hyphenations",
12004     "hypnotherapy", "hypnotically", "hypochondria", "hypocritical",
12005     "hypoglycemia", "hypoglycemic", "hypothalamus", "hypothetical",
12006     "hysterectomy", "hysterically", "iconoclastic", "identifiable",
12007     "idiosyncrasy", "illegalities", "illegibility", "illegitimacy",
12008     "illegitimate", "illogicality", "illuminating", "illumination",
12009     "illusionists", "illustrating", "illustration", "illustrative",
12010     "illustrators", "imaginations", "imbecilities", "immaculately",
12011     "immeasurable", "immeasurably", "immobilisers", "immobilizers",
12012     "immoderately", "immoralities", "immutability", "impartiality",
12013     "impeachments", "impenetrable", "impenetrably", "imperatively",
12014     "imperfection", "imperialists", "imperishable", "impermanence",
12015     "impersonally", "impersonated", "impersonates", "impersonator",
12016     "impertinence", "impertinents", "implantation", "implementing",
12017     "implications", "impoliteness", "imponderable", "importations",
12018     "importunated", "importunates", "impoverished", "impoverishes",
12019     "imprecations", "impregnating", "impregnation", "impressively",
12020     "imprisonment", "improvements", "improvidence", "inaccessible",
12021     "inaccuracies", "inaccurately", "inadequacies", "inadequately",
12022     "inadmissible", "inadvertence", "inapplicable", "inarticulacy",
12023     "inarticulate", "inaudibility", "inaugurating", "inauguration",
12024     "inauspicious", "incalculable", "incalculably", "incandescent",
12025     "incantations", "incapability", "incapacitate", "incarcerated",
12026     "incarcerates", "incarnations", "incautiously", "incendiaries",
12027     "incestuously", "incidentally", "incinerating", "incineration",
12028     "incinerators", "incisiveness", "incivilities", "inclinations",
12029     "incoherently", "incomparable", "incomparably", "incompatible",
12030     "incompatibly", "incompetence", "incompetents", "incompletely",
12031     "inconclusive", "inconsistent", "inconsolable", "inconsolably",
12032     "incontinence", "inconvenient", "incorporated", "incorporates",
12033     "incorrigible", "incorrigibly", "increasingly", "incrementing",
12034     "incriminated", "incriminates", "incrustation", "incumbencies",
12035     "indebtedness", "indecisively", "indecorously", "indefensible",
12036     "indefensibly", "indefinitely", "indelicacies", "indelicately",
12037     "indemnifying", "indentations", "independence", "independents",
12038     "indifference", "indigestible", "indirectness", "indiscipline",
12039     "indiscreetly", "indiscretion", "indisputable", "indisputably",
12040     "indissoluble", "indissolubly", "indistinctly", "individually",
12041     "indoctrinate", "industrially", "inefficiency", "inefficients",
12042     "inequalities", "ineradicable", "inessentials", "inexperience",
12043     "inexplicable", "inexplicably", "inexpressive", "inextricable",
12044     "inextricably", "infanticides", "infatuations", "infectiously",
12045     "infelicities", "infelicitous", "infestations", "infidelities",
12046     "infiltrating", "infiltration", "infiltrators", "inflammation",
12047     "inflammatory", "inflationary", "inflectional", "infomercials",
12048     "infotainment", "infrequently", "infringement", "ingloriously",
12049     "ingratiating", "inheritances", "inhospitable", "inhumanities",
12050     "inoculations", "inordinately", "inquisitions", "insalubrious",
12051     "inscriptions", "insecticidal", "insecticides", "insectivores",
12052     "insecurities", "inseminating", "insemination", "inseparables",
12053     "insinuations", "insolubility", "insolvencies", "inspectorate",
12054     "inspirations", "installation", "institutions", "instructions",
12055     "instrumental", "instrumented", "insufferable", "insufferably",
12056     "insufficient", "insurgencies", "insurrection", "intellectual",
12057     "intelligence", "intelligible", "intelligibly", "intemperance",
12058     "intensifiers", "intensifying", "interactions", "intercepting",
12059     "interception", "interceptors", "intercession", "intercessors",
12060     "interchanged", "interchanges", "interconnect", "interdicting",
12061     "interdiction", "interference", "interjecting", "interjection",
12062     "interlarding", "interleaving", "interlinking", "interlocking",
12063     "interlocutor", "intermarried", "intermarries", "intermediary",
12064     "intermediate", "interminable", "interminably", "intermingled",
12065     "intermingles", "intermission", "intermittent", "interpolated",
12066     "interpolates", "interpreters", "interpreting", "interpretive",
12067     "interregnums", "interrelated", "interrelates", "interrogated",
12068     "interrogates", "interrogator", "interrupting", "interruption",
12069     "intersecting", "intersection", "interspersed", "intersperses",
12070     "interstellar", "intertwining", "intervention", "interviewees",
12071     "interviewers", "interviewing", "interweaving", "intimidating",
12072     "intimidation", "intolerantly", "intoxicating", "intoxication",
12073     "intransigent", "intransitive", "intrauterine", "intriguingly",
12074     "introduction", "introductory", "introversion", "invalidating",
12075     "invalidation", "inventorying", "invertebrate", "investigated",
12076     "investigates", "investigator", "investitures", "invigilating",
12077     "invigilation", "invigilators", "invigorating", "invigoration",
12078     "invisibility", "invitational", "involvements", "invulnerable",
12079     "invulnerably", "irascibility", "irrationally", "irredeemable",
12080     "irredeemably", "irregardless", "irregularity", "irrelevances",
12081     "irrelevantly", "irremediable", "irremediably", "irresistible",
12082     "irresistibly", "irresolutely", "irresolution", "irrespective",
12083     "irreverently", "irreversible", "irreversibly", "irritability",
12084     "irritatingly", "isolationism", "isolationist", "jackhammered",
12085     "jitterbugged", "journalistic", "jurisdiction", "kaleidoscope",
12086     "keyboardists", "kindergarten", "kitchenettes", "kleptomaniac",
12087     "knuckleheads", "laboratories", "labyrinthine", "lamentations",
12088     "landholdings", "languorously", "lasciviously", "latticeworks",
12089     "launderettes", "leapfrogging", "leaseholders", "leathernecks",
12090     "lectureships", "legionnaires", "legislatures", "legitimately",
12091     "legitimating", "lexicography", "libertarians", "licentiously",
12092     "lighthearted", "lightweights", "limelighting", "liquefaction",
12093     "liquidations", "listlessness", "lithographed", "lithographer",
12094     "lithographic", "lithospheres", "liturgically", "loganberries",
12095     "logistically", "longitudinal", "longshoreman", "longshoremen",
12096     "lopsidedness", "loquaciously", "loudspeakers", "lubriciously",
12097     "lugubriously", "luminescence", "lumpectomies", "luncheonette",
12098     "lusciousness", "machinations", "mackintoshes", "macrobiotics",
12099     "mademoiselle", "magnetically", "magnificence", "maidservants",
12100     "mainstreamed", "maintainable", "majestically", "malapropisms",
12101     "maledictions", "malevolently", "malformation", "malfunctions",
12102     "malignancies", "malleability", "malnourished", "malnutrition",
12103     "malpractices", "maltreatment", "manageresses", "maneuverings",
12104     "manifestoing", "manipulating", "manipulation", "manipulative",
12105     "manipulators", "manoeuvrings", "manslaughter", "mantelpieces",
12106     "manufactured", "manufacturer", "manufactures", "marketplaces",
12107     "marksmanship", "marriageable", "marshmallows", "masqueraders",
12108     "masquerading", "mastectomies", "masterminded", "masterpieces",
12109     "masterstroke", "masturbating", "masturbation", "masturbatory",
12110     "materialists", "mathematical", "matriarchies", "matriculated",
12111     "matriculates", "meaningfully", "measurements", "mechanically",
12112     "mediocrities", "meditatively", "meetinghouse", "megalomaniac",
12113     "melancholics", "melodramatic", "menstruating", "menstruation",
12114     "merchandised", "merchandises", "meretricious", "meritocratic",
12115     "metalanguage", "metallurgist", "metamorphism", "metamorphose",
12116     "metaphorical", "metaphysical", "methodically", "meticulously",
12117     "metropolises", "metropolitan", "microbiology", "microfilming",
12118     "microseconds", "microsurgery", "microwavable", "middleweight",
12119     "militaristic", "millionaires", "milliseconds", "milquetoasts",
12120     "mimeographed", "mindlessness", "mineralogist", "minesweepers",
12121     "miniaturists", "minicomputer", "ministration", "miraculously",
12122     "misadventure", "misalignment", "misalliances", "misanthropes",
12123     "misanthropic", "misapprehend", "miscalculate", "miscarriages",
12124     "miscellanies", "misconceived", "misconceives", "misconducted",
12125     "misconstrued", "misconstrues", "misdiagnosed", "misdiagnoses",
12126     "misdiagnosis", "misdirecting", "misdirection", "misgoverning",
12127     "misinforming", "misinterpret", "misleadingly", "misogynistic",
12128     "mispronounce", "misquotation", "misreporting", "misrepresent",
12129     "missionaries", "misspellings", "misstatement", "mistreatment",
12130     "mockingbirds", "modification", "mollycoddled", "mollycoddles",
12131     "moneylenders", "monkeyshines", "monogramming", "monolinguals",
12132     "monopolistic", "monosyllabic", "monosyllable", "monotheistic",
12133     "monotonously", "monumentally", "moonlighters", "moonlighting",
12134     "mortarboards", "motherboards", "motherfucker", "motherliness",
12135     "motivational", "motorcycling", "motorcyclist", "mountaineers",
12136     "mountainside", "mountaintops", "mournfullest", "mournfulness",
12137     "mousetrapped", "mulligatawny", "multifaceted", "multifarious",
12138     "multilateral", "multilingual", "multiplexers", "multiplexing",
12139     "multiplicand", "multiplicity", "multipurpose", "multitasking",
12140     "multivariate", "multivitamin", "municipality", "musicianship",
12141     "musicologist", "muskellunges", "mysteriously", "mythological",
12142     "mythologists", "narcissistic", "nationalists", "naturalistic",
12143     "nauseatingly", "nauseousness", "navigability", "navigational",
12144     "neanderthals", "nebulousness", "necessitated", "necessitates",
12145     "neckerchiefs", "necromancers", "necrophiliac", "necropolises",
12146     "neglectfully", "negotiations", "neoclassical", "neurological",
12147     "neurologists", "neurosurgery", "neurotically", "nevertheless",
12148     "newspapering", "newspaperman", "newspapermen", "newsworthier",
12149     "nickelodeons", "nightclothes", "nightclubbed", "nightdresses",
12150     "nightingales", "nomenclature", "nonabsorbent", "nonagenarian",
12151     "nonalcoholic", "nonbelievers", "nonbreakable", "nonchalantly",
12152     "noncombatant", "noncommittal", "nonconductor", "nonessential",
12153     "nonexistence", "nonflammable", "nonhazardous", "nonmalignant",
12154     "nonobjective", "nonpartisans", "nonpoisonous", "nonpolitical",
12155     "nonpolluting", "nonrenewable", "nonresidents", "nonscheduled",
12156     "nonsectarian", "nontechnical", "northeastern", "northeasters",
12157     "northernmost", "northwestern", "noticeboards", "notification",
12158     "numismatists", "nutritionist", "nymphomaniac", "obfuscations",
12159     "obliterating", "obliteration", "obscurantism", "obscurantist",
12160     "obsequiously", "observations", "obsolescence", "obstetrician",
12161     "obstreperous", "obstructions", "obstructives", "occasionally",
12162     "occupational", "oceanography", "octogenarian", "officeholder",
12163     "omnipresence", "onomatopoeia", "onomatopoeic", "operatically",
12164     "opportunists", "oppressively", "optometrists", "orchestrated",
12165     "orchestrates", "ordinariness", "orientalists", "orientations",
12166     "orienteering", "orthodontics", "orthodontist", "orthographic",
12167     "oscillations", "oscilloscope", "ossification", "ostentatious",
12168     "osteoporosis", "otherworldly", "outbalancing", "outbuildings",
12169     "outcroppings", "outdistanced", "outdistances", "outlandishly",
12170     "outnumbering", "outperformed", "outplacement", "outrageously",
12171     "outspreading", "outstretched", "outstretches", "outstripping",
12172     "overabundant", "overachieved", "overachiever", "overachieves",
12173     "overbalanced", "overbalances", "overburdened", "overcautious",
12174     "overcharging", "overcrowding", "overdevelops", "overdressing",
12175     "overemphasis", "overestimate", "overexciting", "overexposing",
12176     "overexposure", "overextended", "overgenerous", "overindulged",
12177     "overindulges", "overpopulate", "overpowering", "overprinting",
12178     "overproduced", "overproduces", "overreaching", "overreacting",
12179     "overreaction", "oversampling", "overshadowed", "overshooting",
12180     "oversimplify", "oversleeping", "overspending", "overstepping",
12181     "overstocking", "oversupplied", "oversupplies", "overthrowing",
12182     "overwhelming", "overwintered", "oxyacetylene", "pacification",
12183     "paintbrushes", "palaeolithic", "paleontology", "palpitations",
12184     "pamphleteers", "panchromatic", "pantechnicon", "paperbacking",
12185     "paperhangers", "paperweights", "paracetamols", "parachutists",
12186     "paradigmatic", "paragraphing", "parallelisms", "paramedicals",
12187     "paramilitary", "paraphrasing", "parascending", "paratroopers",
12188     "parishioners", "parochialism", "parsimonious", "participants",
12189     "participated", "participates", "participator", "particularly",
12190     "particulates", "partisanship", "partitioning", "partnerships",
12191     "passionately", "passionating", "paternalists", "pathetically",
12192     "pathological", "pathologists", "patriarchies", "peacefullest",
12193     "peacefulness", "peacekeepers", "peacekeeping", "peccadilloes",
12194     "pedantically", "pejoratively", "penetrations", "penitentiary",
12195     "pennyweights", "penultimates", "perambulated", "perambulates",
12196     "perambulator", "perceptively", "peremptorily", "perforations",
12197     "performances", "periodically", "peripatetics", "peripherally",
12198     "permeability", "permissively", "permutations", "perniciously",
12199     "perpetrating", "perpetration", "perpetrators", "perpetuating",
12200     "perpetuation", "perplexities", "persecutions", "perseverance",
12201     "persistently", "personifying", "perspectives", "perspicacity",
12202     "perspiration", "persuasively", "pertinacious", "perturbation",
12203     "perverseness", "pestilential", "petrifaction", "petrodollars",
12204     "pettifoggers", "pettifogging", "pharmacology", "phenomenally",
12205     "philanderers", "philandering", "philanthropy", "philatelists",
12206     "philharmonic", "philistinism", "philodendron", "philological",
12207     "philologists", "philosophers", "philosophies", "phonetically",
12208     "phoneticians", "phonological", "phonologists", "photocopiers",
12209     "photocopying", "photographed", "photographer", "photographic",
12210     "photostatted", "phrenologist", "physiologist", "pigeonholing",
12211     "piggybacking", "pigmentation", "pitchforking", "pitilessness",
12212     "plainclothes", "planetariums", "plasterboard", "plausibility",
12213     "pleasantness", "pleasantries", "plutocracies", "pocketknives",
12214     "pointillists", "policyholder", "policymakers", "poltergeists",
12215     "polyethylene", "polygraphing", "polymorphous", "polysyllabic",
12216     "polysyllable", "polytechnics", "polytheistic", "polyurethane",
12217     "pomegranates", "pontificated", "pontificates", "pornographer",
12218     "pornographic", "portcullises", "portentously", "porterhouses",
12219     "portmanteaus", "portraitists", "positiveness", "possessively",
12220     "postdoctoral", "postgraduate", "posthumously", "postmistress",
12221     "postponement", "postprandial", "potentiality", "practicality",
12222     "practitioner", "praiseworthy", "prearranging", "precariously",
12223     "preciousness", "precipitants", "precipitated", "precipitates",
12224     "precociously", "precognition", "preconceived", "preconceives",
12225     "precondition", "predeceasing", "predecessors", "predestining",
12226     "predetermine", "predicaments", "predigesting", "predilection",
12227     "predisposing", "predominance", "predominated", "predominates",
12228     "preeminently", "prefabricate", "preferential", "premeditated",
12229     "premeditates", "premenstrual", "premonitions", "preoccupying",
12230     "preordaining", "prepackaging", "preparations", "preparedness",
12231     "preponderant", "preponderate", "prepositions", "prepossessed",
12232     "prepossesses", "preposterous", "prepubescent", "prerecording",
12233     "preregisters", "prerequisite", "prerogatives", "presbyteries",
12234     "preschoolers", "prescription", "prescriptive", "presentation",
12235     "presentiment", "preservation", "preservative", "preshrinking",
12236     "presidencies", "presidential", "presumptions", "presumptuous",
12237     "presupposing", "prevaricated", "prevaricates", "prevaricator",
12238     "preventative", "priggishness", "principality", "prizefighter",
12239     "prizewinning", "probationary", "probationers", "problematics",
12240     "processional", "processioned", "proclamation", "proclivities",
12241     "prodigiously", "productively", "productivity", "profanations",
12242     "professional", "professorial", "proficiently", "profiteering",
12243     "profiteroles", "profundities", "progesterone", "programmable",
12244     "programmatic", "progressions", "progressives", "prohibitions",
12245     "proletarians", "proliferated", "proliferates", "prolifically",
12246     "prolongation", "promontories", "promulgating", "promulgation",
12247     "proofreaders", "proofreading", "propagandist", "propensities",
12248     "prophetesses", "prophylactic", "propitiating", "propitiation",
12249     "propitiatory", "propitiously", "proportional", "proportioned",
12250     "propositions", "proprietress", "proscription", "prosecutions",
12251     "prospectives", "prospectuses", "prosperously", "prostituting",
12252     "prostitution", "prostrations", "protagonists", "protectively",
12253     "protectorate", "protestation", "protoplasmic", "prototypical",
12254     "protuberance", "provendering", "proverbially", "providential",
12255     "provincially", "provisioning", "provocateurs", "provocations",
12256     "psephologist", "pseudonymous", "psychedelics", "psychiatrist",
12257     "psychoactive", "psychobabble", "psychodramas", "psychologies",
12258     "psychologist", "psychometric", "psychopathic", "psychotropic",
12259     "pterodactyls", "publications", "pugnaciously", "pumpernickel",
12260     "purification", "purposefully", "pussyfooting", "putrefaction",
12261     "pyrotechnics", "quadrangular", "quadraphonic", "quadricepses",
12262     "quadriplegia", "quadriplegic", "quantifiable", "quantitative",
12263     "quarantining", "quarterbacks", "quarterdecks", "quarterfinal",
12264     "questionable", "questionably", "quintessence", "racketeering",
12265     "racquetballs", "radiographer", "radioisotope", "radiologists",
12266     "radiotherapy", "rambunctious", "ramification", "rangefinders",
12267     "rapscallions", "rathskellers", "ratification", "rationalists",
12268     "rattlesnakes", "reactivating", "reactivation", "readdressing",
12269     "readjustment", "realignments", "reallocating", "reallocation",
12270     "reappearance", "reappointing", "reapportions", "reappraisals",
12271     "reappraising", "reassembling", "reassessment", "reassurances",
12272     "reassuringly", "rebelliously", "rebroadcasts", "recalcitrant",
12273     "recantations", "recapitulate", "receivership", "receptionist",
12274     "recessionals", "recessionary", "rechargeable", "reciprocally",
12275     "reciprocated", "reciprocates", "recklessness", "reclassified",
12276     "reclassifies", "recollecting", "recollection", "recommencing",
12277     "recommending", "recompensing", "reconcilable", "reconditions",
12278     "reconfigured", "reconnecting", "reconquering", "reconsidered",
12279     "reconstitute", "reconstructs", "recreational", "recriminated",
12280     "recriminates", "recuperating", "recuperation", "recuperative",
12281     "redecorating", "redecoration", "rededicating", "redefinition",
12282     "redeployment", "redeveloping", "rediscovered", "redistribute",
12283     "redistricted", "reductionist", "redundancies", "reenactments",
12284     "reevaluating", "refashioning", "reflationary", "reflectively",
12285     "reformations", "reformatting", "reformulated", "reformulates",
12286     "refractories", "refreshingly", "refreshments", "refrigerants",
12287     "refrigerated", "refrigerates", "refrigerator", "refurbishing",
12288     "refurnishing", "regenerating", "regeneration", "regenerative",
12289     "regionalisms", "registration", "regularities", "regurgitated",
12290     "regurgitates", "rehabilitate", "reincarnated", "reincarnates",
12291     "reinterprets", "reiterations", "rejuvenating", "rejuvenation",
12292     "relationship", "relativistic", "relentlessly", "relinquished",
12293     "relinquishes", "remaindering", "remembrances", "reminiscence",
12294     "remonstrance", "remonstrated", "remonstrates", "remorsefully",
12295     "remortgaging", "remunerating", "remuneration", "remunerative",
12296     "renaissances", "rendezvoused", "rendezvouses", "renditioning",
12297     "renegotiated", "renegotiates", "renunciation", "repatriating",
12298     "repatriation", "repercussion", "repetitively", "replacements",
12299     "replenishing", "replications", "repositories", "repossessing",
12300     "repossession", "reprehending", "representing", "repressively",
12301     "reprimanding", "reprocessing", "reproducible", "reproduction",
12302     "reproductive", "reprogrammed", "republishing", "repudiations",
12303     "requirements", "requisitions", "rescheduling", "resemblances",
12304     "reservations", "resettlement", "resignations", "resoluteness",
12305     "resoundingly", "respectables", "respectfully", "respectively",
12306     "resplendence", "responsively", "restatements", "restaurateur",
12307     "restlessness", "restorations", "restoratives", "restrictions",
12308     "restrictives", "restructured", "restructures", "resubmitting",
12309     "resurrecting", "resurrection", "resuscitated", "resuscitates",
12310     "resuscitator", "retaliations", "reticulation", "retrenchment",
12311     "retributions", "retrofitting", "retrograding", "retrogressed",
12312     "retrogresses", "retrorockets", "retrospected", "reupholsters",
12313     "revaluations", "reverberated", "reverberates", "revisionists",
12314     "rhetorically", "rhetoricians", "rhinoceroses", "rhododendron",
12315     "rhythmically", "ridiculously", "rightfulness", "roadblocking",
12316     "romantically", "romanticists", "rootlessness", "rotogravures",
12317     "roughhousing", "roughnecking", "rubbernecked", "rubbernecker",
12318     "ruminatively", "rustproofing", "ruthlessness", "sacramenting",
12319     "sacrilegious", "sadistically", "safeguarding", "safekeepings",
12320     "sailboarding", "salesmanship", "sandblasters", "sandblasting",
12321     "sandpapering", "sardonically", "sarsaparilla", "satisfaction",
12322     "satisfactory", "satisfyingly", "saxophonists", "scandalously",
12323     "scapegoating", "scaremongers", "scatological", "scatterbrain",
12324     "schmaltziest", "scholarships", "schoolhouses", "schoolmaster",
12325     "scintillated", "scintillates", "scorekeepers", "scoutmasters",
12326     "scratchcards", "scratchiness", "screenwriter", "screwdrivers",
12327     "scrimshawing", "scriptwriter", "scrupulously", "scurrilously",
12328     "seamstresses", "searchlights", "seaworthiest", "secessionist",
12329     "secretariats", "sectarianism", "sectionalism", "seductresses",
12330     "segmentation", "seismographs", "seismologist", "selflessness",
12331     "semantically", "semicircular", "semifinalist", "semiprecious",
12332     "semitrailers", "semitropical", "semiweeklies", "sensuousness",
12333     "separability", "sequentially", "sequestering", "sequestrated",
12334     "sequestrates", "servicewoman", "servicewomen", "seventeenths",
12335     "sexagenarian", "shadowboxing", "shamefacedly", "shamefulness",
12336     "sharecropper", "shareholders", "shareholding", "sharpshooter",
12337     "shatterproof", "sheepishness", "shipbuilders", "shipbuilding",
12338     "shipwrecking", "shirtsleeves", "shortchanged", "shortchanges",
12339     "shortcomings", "shortcutting", "shortlisting", "shortsighted",
12340     "showstoppers", "showstopping", "shuffleboard", "shuttlecocks",
12341     "sidestepping", "sidestroking", "sidetracking", "significance",
12342     "silhouetting", "silverfishes", "silversmiths", "similarities",
12343     "simulcasting", "simultaneity", "simultaneous", "skateboarded",
12344     "skateboarder", "skittishness", "skyrocketing", "slaphappiest",
12345     "slaughterers", "slaughtering", "sledgehammer", "sleepwalkers",
12346     "sleepwalking", "slipperiness", "sloganeering", "slothfulness",
12347     "slovenliness", "sluggishness", "smallholders", "smallholding",
12348     "smokescreens", "snobbishness", "snowboarders", "snowboarding",
12349     "snowmobiling", "sociological", "sociologists", "solicitation",
12350     "solicitously", "solitariness", "somersaulted", "somnambulism",
12351     "somnambulist", "songstresses", "sophisticate", "soullessness",
12352     "soundproofed", "southeastern", "southernmost", "southwestern",
12353     "southwesters", "spaceflights", "spacewalking", "spaciousness",
12354     "sparrowhawks", "speakerphone", "spearheading", "specifically",
12355     "speciousness", "spectaculars", "spectroscope", "spectroscopy",
12356     "speculations", "speechifying", "speechlessly", "speechwriter",
12357     "speedometers", "speleologist", "spellbinders", "spellbinding",
12358     "spellchecker", "spendthrifts", "spermatozoon", "spinsterhood",
12359     "spiritualism", "spiritualist", "spirituality", "spitefullest",
12360     "spitefulness", "spokespeople", "spokesperson", "sporadically",
12361     "sportscaster", "sportspeople", "sportsperson", "spotlessness",
12362     "spotlighting", "spreadeagled", "spreadsheets", "sprightliest",
12363     "springboards", "spuriousness", "squeezeboxes", "stagecoaches",
12364     "staggeringly", "stakeholders", "stallholders", "stammeringly",
12365     "statementing", "statistician", "steamrollers", "steamrolling",
12366     "steelworkers", "steeplechase", "steeplejacks", "stenographer",
12367     "stenographic", "stepbrothers", "stepchildren", "stepdaughter",
12368     "stereophonic", "stereoscopes", "stereoscopic", "stereotyping",
12369     "stethoscopes", "stewardesses", "sticklebacks", "stipulations",
12370     "stockbrokers", "stockbroking", "stockholders", "stomachaches",
12371     "stonewalling", "storekeepers", "storytellers", "storytelling",
12372     "stouthearted", "straightaway", "straightedge", "straightened",
12373     "straightness", "straitjacket", "stranglehold", "strangulated",
12374     "strangulates", "stratosphere", "strawberries", "streamlining",
12375     "streetlights", "streetwalker", "strengthened", "streptococci",
12376     "streptomycin", "stretchering", "stretchmarks", "stripteasing",
12377     "structurally", "stubbornness", "studentships", "studiousness",
12378     "stupefaction", "stupendously", "subbasements", "subcommittee",
12379     "subconscious", "subcontinent", "subcontracts", "subcutaneous",
12380     "subdivisions", "subjectively", "subjectivity", "subjunctives",
12381     "subliminally", "submersibles", "submissively", "subordinated",
12382     "subordinates", "subscription", "subsequently", "subservience",
12383     "subservients", "subsidiaries", "subsidiarity", "substantiate",
12384     "substantives", "substituting", "substitution", "substructure",
12385     "subterranean", "subtractions", "suburbanites", "subversively",
12386     "successfully", "successively", "succinctness", "sufficiently",
12387     "suffocatings", "suffragettes", "sugarcoating", "suggestively",
12388     "summerhouses", "superannuate", "supercharged", "supercharger",
12389     "supercharges", "supercilious", "superficials", "supergrasses",
12390     "superhighway", "superimposed", "superimposes", "superintends",
12391     "superlatives", "supermarkets", "supernatural", "superscripts",
12392     "superstition", "supertankers", "supervisions", "supplemental",
12393     "supplemented", "supplicating", "supplication", "suppositions",
12394     "suppressants", "supremacists", "surfboarding", "surmountable",
12395     "surprisingly", "surrealistic", "surrendering", "surroundings",
12396     "surveillance", "suspiciously", "swallowtails", "swashbuckler",
12397     "switchblades", "switchboards", "syllabifying", "symbolically",
12398     "sympathetics", "syndicalists", "systemically", "tactlessness",
12399     "taramasalata", "tautological", "taxidermists", "teaspoonfuls",
12400     "technicality", "technocratic", "technologies", "technologist",
12401     "technophobes", "teenyboppers", "telecommuted", "telecommuter",
12402     "telecommutes", "telegraphers", "telegraphese", "telegraphing",
12403     "teleological", "telephonists", "teleprinters", "temperaments",
12404     "temperatures", "tercentenary", "terminations", "terrestrials",
12405     "terrifically", "terrifyingly", "territorials", "tessellating",
12406     "tessellation", "testamentary", "testimonials", "testosterone",
12407     "tetrahedrons", "thankfullest", "thankfulness", "thanksgiving",
12408     "theatrically", "thematically", "theoretician", "therapeutics",
12409     "thermometers", "thermostatic", "thingamabobs", "thingamajigs",
12410     "thingumabobs", "thoroughbred", "thoroughfare", "thoroughness",
12411     "thoughtfully", "threatenings", "thunderbolts", "thunderclaps",
12412     "thundercloud", "thunderheads", "thunderously", "thunderstorm",
12413     "timelessness", "timorousness", "tirelessness", "tiresomeness",
12414     "toastmasters", "tobacconists", "togetherness", "tomfooleries",
12415     "toothbrushes", "topographers", "topographies", "tortuousness",
12416     "totalitarian", "toxicologist", "tractability", "trademarking",
12417     "tradespeople", "trailblazers", "trainspotter", "traitorously",
12418     "trajectories", "trampolining", "transactions", "transceivers",
12419     "transcendent", "transcending", "transcribing", "transferable",
12420     "transference", "transferring", "transfigured", "transfigures",
12421     "transformers", "transforming", "transfusions", "transgressed",
12422     "transgresses", "transgressor", "transitional", "transitioned",
12423     "transitively", "transitivity", "translations", "translucence",
12424     "transmigrate", "transmission", "transmitters", "transmitting",
12425     "transmogrify", "transoceanic", "transparency", "transplanted",
12426     "transponders", "transporters", "transporting", "transsexuals",
12427     "transshipped", "transversely", "transversing", "transvestism",
12428     "transvestite", "trapshooting", "tremendously", "trendsetters",
12429     "trendsetting", "tribulations", "triglyceride", "trigonometry",
12430     "triplicating", "triumphalism", "triumphalist", "triumphantly",
12431     "triumvirates", "trivialities", "trolleybuses", "tropospheres",
12432     "troublemaker", "troubleshoot", "trusteeships", "trustfulness",
12433     "truthfulness", "tuberculosis", "tumultuously", "turbocharged",
12434     "turbocharger", "turbocharges", "typographers", "tyrannically",
12435     "tyrannosaurs", "ubiquitously", "unacceptable", "unacceptably",
12436     "unaccustomed", "unacquainted", "unaffectedly", "unanswerable",
12437     "unapologetic", "unassailable", "unattainable", "unattractive",
12438     "unattributed", "unbelievable", "unbelievably", "unblinkingly",
12439     "unbridgeable", "uncatalogued", "unchallenged", "unchangeable",
12440     "uncharitable", "uncharitably", "unclassified", "uncleanliest",
12441     "uncompressed", "unconcerning", "unconsidered", "uncontrolled",
12442     "unconvincing", "uncorrelated", "uncritically", "unctuousness",
12443     "uncultivated", "undemocratic", "undependable", "underachieve",
12444     "underbellies", "underbidding", "underbrushed", "underbrushes",
12445     "undercharged", "undercharges", "underclasses", "underclothes",
12446     "undercoating", "undercurrent", "undercutting", "underexposed",
12447     "underexposes", "underfeeding", "undergarment", "undergrounds",
12448     "underpinning", "underplaying", "underscoring", "underselling",
12449     "undersigning", "understaffed", "understating", "understudied",
12450     "understudies", "undertakings", "undervaluing", "underwhelmed",
12451     "underwriters", "underwriting", "underwritten", "undeservedly",
12452     "undesirables", "undetectable", "undetermined", "undiminished",
12453     "undischarged", "undiscovered", "undocumented", "uneconomical",
12454     "unemployable", "unemployment", "uneventfully", "unexpectedly",
12455     "unexpurgated", "unfaithfully", "unfathomable", "unfathomably",
12456     "unflattering", "unforgivable", "unforgivably", "unfortunates",
12457     "unfrequented", "unfriendlier", "ungainliness", "ungovernable",
12458     "ungraciously", "ungratefully", "unhealthiest", "unhesitating",
12459     "unidentified", "unilaterally", "unimaginable", "unimaginably",
12460     "unimpressive", "uninterested", "universality", "universities",
12461     "unlikelihood", "unmanageable", "unmercifully", "unmistakable",
12462     "unmistakably", "unnoticeable", "unobstructed", "unobtainable",
12463     "unofficially", "unpardonable", "unpleasantly", "unpopularity",
12464     "unprejudiced", "unprincipled", "unprivileged", "unproductive",
12465     "unprofitable", "unquenchable", "unquestioned", "unreasonable",
12466     "unreasonably", "unregenerate", "unregistered", "unrelievedly",
12467     "unremarkable", "unrepeatable", "unreservedly", "unresponsive",
12468     "unrestrained", "unrestricted", "unsanctioned", "unsatisfying",
12469     "unscientific", "unscrambling", "unscrupulous", "unseasonable",
12470     "unseasonably", "unseemliness", "unsightliest", "unsteadiness",
12471     "unstintingly", "unstructured", "unsuccessful", "unsupervised",
12472     "unsurprising", "unsuspecting", "unthinkingly", "untimeliness",
12473     "untouchables", "untruthfully", "unwieldiness", "unworthiness",
12474     "upholsterers", "upholstering", "uppercutting", "uproariously",
12475     "utilitarians", "vaccinations", "vacillations", "vainglorious",
12476     "vaporisation", "veggieburger", "verdigrising", "verification",
12477     "veterinarian", "veterinaries", "vicissitudes", "victoriously",
12478     "vilification", "vindications", "vindictively", "violincellos",
12479     "violoncellos", "virtuousness", "viscountcies", "vituperating",
12480     "vituperation", "vituperative", "vocabularies", "vocationally",
12481     "vociferating", "vociferation", "vociferously", "voluminously",
12482     "volunteering", "voluptuaries", "voluptuously", "wainscotings",
12483     "waistcoating", "wallpapering", "warmongering", "wastebaskets",
12484     "wastefulness", "watchfulness", "watercourses", "watermarking",
12485     "waterproofed", "weatherboard", "weathercocks", "weatherproof",
12486     "weighbridges", "weightlessly", "weightlifter", "welterweight",
12487     "whatshername", "whatshisname", "wheelbarrows", "wheelwrights",
12488     "whimsicality", "whippoorwill", "whitewashing", "wholehearted",
12489     "wildernesses", "windbreakers", "windcheaters", "wisecracking",
12490     "withstanding", "woodcarvings", "workstations", "wretchedness",
12491     "wristwatches", "wrongfulness", "xylophonists", "yellowhammer",
12492     "youthfulness"
12493   };
12494 
12495   const char* w_13[] = {
12496     "abbreviations", "abnormalities", "abolitionists", "accelerations",
12497     "acceptability", "accessibility", "acclimatising", "acclimatizing",
12498     "accommodating", "accommodation", "accompaniment", "accomplishing",
12499     "accouterments", "accreditation", "acculturation", "accumulations",
12500     "acetaminophen", "acknowledging", "acquaintances", "acrimoniously",
12501     "acupuncturist", "adjudications", "administering", "administrated",
12502     "administrates", "administrator", "admissibility", "admonishments",
12503     "adventuresome", "adventuresses", "adventurously", "advertisement",
12504     "aesthetically", "affirmatively", "affordability", "afforestation",
12505     "afterthoughts", "agglomerating", "agglomeration", "agglutinating",
12506     "agglutination", "airworthiness", "algebraically", "allegorically",
12507     "alliterations", "alphanumerics", "alternatively", "amalgamations",
12508     "ambassadorial", "ambitiousness", "amniocenteses", "amniocentesis",
12509     "amorphousness", "amplification", "anachronistic", "angioplasties",
12510     "anniversaries", "announcements", "antibacterial", "anticipations",
12511     "anticlimactic", "anticlockwise", "anticoagulant", "antihistamine",
12512     "antimacassars", "antiparticles", "antipersonnel", "apathetically",
12513     "applicability", "apportionment", "appreciations", "apprehensions",
12514     "appropriately", "appropriating", "appropriation", "approximately",
12515     "approximating", "approximation", "appurtenances", "arachnophobia",
12516     "arbitrariness", "archaeologist", "archbishopric", "archduchesses",
12517     "architectural", "architectures", "argumentation", "argumentative",
12518     "aristocracies", "articulations", "artificiality", "ascertainable",
12519     "asphyxiations", "assassinating", "assassination", "assemblywoman",
12520     "assemblywomen", "assertiveness", "assiduousness", "asthmatically",
12521     "astonishingly", "astrophysical", "atrociousness", "attentiveness",
12522     "attributively", "audaciousness", "augmentations", "authentically",
12523     "authenticated", "authenticates", "authoritarian", "authoritative",
12524     "autobiography", "automatically", "axiomatically", "baccalaureate",
12525     "bacchanalians", "backstretches", "bantamweights", "battlegrounds",
12526     "beatification", "belligerently", "beneficiaries", "bewilderingly",
12527     "bibliographer", "bibliographic", "bicentenaries", "bicentennials",
12528     "bidirectional", "biodegradable", "biophysicists", "biotechnology",
12529     "blabbermouths", "blackberrying", "blackcurrants", "blandishments",
12530     "blasphemously", "bloodcurdling", "bluestockings", "blunderbusses",
12531     "boardinghouse", "bougainvillea", "bouillabaisse", "boysenberries",
12532     "brainchildren", "brainstorming", "breakthroughs", "breastfeeding",
12533     "breaststrokes", "breathalysers", "breathalyzers", "brokenhearted",
12534     "brotherliness", "bulletproofed", "bumptiousness", "bureaucracies",
12535     "businesswoman", "businesswomen", "butterfingers", "cabinetmakers",
12536     "calligraphers", "campanologist", "cancellations", "cannibalistic",
12537     "cannonballing", "cantilevering", "capaciousness", "capitulations",
12538     "carbohydrates", "carboniferous", "cardiologists", "caricaturists",
12539     "carpetbaggers", "carpetbagging", "cartilaginous", "cartographers",
12540     "categorically", "ceremoniously", "certificating", "certification",
12541     "chairmanships", "championships", "chancelleries", "changeability",
12542     "characterless", "charioteering", "chastisements", "cheerlessness",
12543     "cheeseburgers", "childlessness", "childproofing", "chiropractics",
12544     "chiropractors", "chloroforming", "choreographed", "choreographer",
12545     "choreographic", "chronological", "chrysanthemum", "churchwardens",
12546     "circumcisions", "circumference", "circumscribed", "circumscribes",
12547     "circumspectly", "circumstanced", "circumstances", "circumventing",
12548     "circumvention", "clandestinely", "clapperboards", "clarification",
12549     "classlessness", "clearinghouse", "climatologist", "clotheslining",
12550     "codifications", "coeducational", "collaborating", "collaboration",
12551     "collaborative", "collaborators", "collectivists", "colloquialism",
12552     "combativeness", "commandeering", "commemorating", "commemoration",
12553     "commemorative", "commencements", "commendations", "commensurable",
12554     "commercialism", "commiserating", "commiseration", "commissariats",
12555     "commissioners", "commissioning", "commonalities", "commonwealths",
12556     "communicating", "communication", "communicative", "communicators",
12557     "companionable", "companionably", "companionship", "companionways",
12558     "comparability", "comparatively", "compassionate", "compatibility",
12559     "compensations", "competitively", "complaisantly", "complementary",
12560     "complementing", "complications", "complimentary", "complimenting",
12561     "comprehending", "comprehension", "comprehensive", "computational",
12562     "concatenating", "concatenation", "concentrating", "concentration",
12563     "concertinaing", "concertmaster", "concessionary", "concomitantly",
12564     "condemnations", "condensations", "condescending", "condescension",
12565     "conditionally", "conductresses", "confectioners", "confectionery",
12566     "confederacies", "confederating", "confederation", "confessionals",
12567     "configuration", "confirmations", "confiscations", "conflagration",
12568     "conformations", "confrontation", "conglomerated", "conglomerates",
12569     "congratulated", "congratulates", "congregations", "congressional",
12570     "congresswoman", "congresswomen", "conquistadors", "consanguinity",
12571     "conscientious", "consciousness", "consecrations", "consecutively",
12572     "consequential", "conservancies", "conservatives", "conservatoire",
12573     "considerately", "consideration", "consistencies", "consolidating",
12574     "consolidation", "conspicuously", "constellation", "consternation",
12575     "constitutions", "constrictions", "constructions", "consultancies",
12576     "consultations", "consummations", "contaminating", "contamination",
12577     "contemplating", "contemplation", "contemplative", "contentedness",
12578     "contentiously", "contingencies", "continuations", "contortionist",
12579     "contraception", "contraceptive", "contractually", "contradicting",
12580     "contradiction", "contradictory", "contravention", "contributions",
12581     "controversial", "controversies", "controverting", "convalescence",
12582     "convalescents", "conventioneer", "conversations", "cooperatively",
12583     "coreligionist", "corespondents", "correspondent", "corresponding",
12584     "corroborating", "corroboration", "corroborative", "cosignatories",
12585     "cosmetologist", "cosmopolitans", "countenancing", "counteracting",
12586     "counteraction", "counterattack", "counterblasts", "counterclaims",
12587     "counterfeited", "counterfeiter", "countermanded", "counteroffers",
12588     "counterpoints", "countersigned", "countertenors", "countervailed",
12589     "counterweight", "courteousness", "craftsmanship", "credentialing",
12590     "credulousness", "criminologist", "crisscrossing", "crossbreeding",
12591     "crosschecking", "crosscurrents", "cryptographer", "daguerreotype",
12592     "dauntlessness", "decaffeinated", "decaffeinates", "decapitations",
12593     "deceitfulness", "deceptiveness", "declassifying", "decommissions",
12594     "decomposition", "decompressing", "decompression", "decongestants",
12595     "deconstructed", "decontaminate", "decontrolling", "defectiveness",
12596     "defensiveness", "deferentially", "defibrillator", "deforestation",
12597     "dehumidifiers", "dehumidifying", "deliberations", "delicatessens",
12598     "deliciousness", "delinquencies", "demagogically", "demigoddesses",
12599     "demonstrating", "demonstration", "demonstrative", "demonstrators",
12600     "denominations", "denouncements", "denunciations", "dependability",
12601     "deprecatingly", "deprogramming", "dermatologist", "descriptively",
12602     "desegregating", "desegregation", "dessertspoons", "destructively",
12603     "deteriorating", "deterioration", "determination", "deterministic",
12604     "detrimentally", "devastatingly", "developmental", "diagnostician",
12605     "diametrically", "dictatorially", "dictatorships", "differentials",
12606     "differentiate", "dillydallying", "dimensionless", "directionless",
12607     "directorships", "disadvantaged", "disadvantages", "disafforested",
12608     "disagreements", "disappearance", "disappointing", "disassembling",
12609     "disassociated", "disassociates", "disbursements", "discographies",
12610     "discomforting", "disconcerting", "disconnecting", "disconnection",
12611     "discontenting", "discontinuing", "discontinuity", "discontinuous",
12612     "discourtesies", "discreditable", "discreditably", "discrepancies",
12613     "discretionary", "discriminated", "discriminates", "disemboweling",
12614     "disenchanting", "disencumbered", "disengagement", "disentangling",
12615     "disfigurement", "disfranchised", "disfranchises", "disgracefully",
12616     "disharmonious", "disheartening", "disillusioned", "disincentives",
12617     "disinfectants", "disinheriting", "disintegrated", "disintegrates",
12618     "disinterested", "disinvestment", "dismemberment", "disobediently",
12619     "disorientated", "disorientates", "disparagement", "disparagingly",
12620     "dispassionate", "dispensations", "displacements", "dispossessing",
12621     "dispossession", "disproportion", "disqualifying", "disquisitions",
12622     "disrespectful", "disrespecting", "dissatisfying", "disseminating",
12623     "dissemination", "dissertations", "dissimilarity", "dissimulating",
12624     "dissimulation", "dissoluteness", "distastefully", "distillations",
12625     "distinctively", "distinguished", "distinguishes", "distressingly",
12626     "distributions", "distrustfully", "documentaries", "documentation",
12627     "domesticating", "domestication", "draughtboards", "draughtswoman",
12628     "draughtswomen", "dysfunctional", "eavesdroppers", "eavesdropping",
12629     "eccentrically", "ecclesiastics", "educationally", "educationists",
12630     "effectiveness", "effervescence", "efficaciously", "efflorescence",
12631     "egocentricity", "egotistically", "elaborateness", "electioneered",
12632     "electrocuting", "electrocution", "electromagnet", "electroplated",
12633     "electroplates", "electrostatic", "elocutionists", "embarrassment",
12634     "embellishment", "embryological", "embryologists", "encapsulating",
12635     "encapsulation", "enchantresses", "encouragement", "encouragingly",
12636     "encroachments", "encrustations", "encyclopedias", "energetically",
12637     "enfranchising", "enigmatically", "enlightenment", "entanglements",
12638     "entertainment", "enthronements", "entomological", "entomologists",
12639     "entrenchments", "entrepreneurs", "environmental", "equestriennes",
12640     "equivocations", "ergonomically", "escapologists", "establishment",
12641     "estrangements", "ethnocentrism", "ethnographers", "eventualities",
12642     "everlastingly", "exaggeratedly", "exaggerations", "exasperatedly",
12643     "exceptionable", "exceptionally", "exclusiveness", "excommunicate",
12644     "exhibitionism", "exhibitionist", "existentially", "expansionists",
12645     "expansiveness", "expectorating", "expectoration", "expeditionary",
12646     "expeditiously", "experimenters", "experimenting", "explosiveness",
12647     "exponentially", "expostulating", "expostulation", "expressionism",
12648     "expressionist", "expropriating", "expropriation", "expropriators",
12649     "exquisiteness", "extensiveness", "exterminating", "extermination",
12650     "exterminators", "extinguishers", "extinguishing", "extortionists",
12651     "extrajudicial", "extraordinary", "extrapolating", "extrapolation",
12652     "extravagances", "extravagantly", "extravaganzas", "extrinsically",
12653     "facetiousness", "faithlessness", "falsification", "fantastically",
12654     "fascinatingly", "featherweight", "felicitations", "ferociousness",
12655     "filibustering", "fingerprinted", "flabbergasted", "flamethrowers",
12656     "flirtatiously", "floodlighting", "fluorocarbons", "foolhardiness",
12657     "foregrounding", "foreknowledge", "foreordaining", "foreshadowing",
12658     "foreshortened", "forgetfulness", "fortification", "fountainheads",
12659     "fractiousness", "fragmentation", "frighteningly", "frontbenchers",
12660     "frontispieces", "fruitlessness", "functionalism", "functionalist",
12661     "functionality", "functionaries", "fundamentally", "galvanometers",
12662     "garrulousness", "gastronomical", "generalissimo", "genuflections",
12663     "geometrically", "geophysicists", "geostationary", "geriatricians",
12664     "gerontologist", "gerrymandered", "gesticulating", "gesticulation",
12665     "globetrotters", "globetrotting", "glockenspiels", "glorification",
12666     "goosestepping", "gracelessness", "grammatically", "grandchildren",
12667     "granddaughter", "grandfathered", "grandiloquent", "grandstanding",
12668     "graphologists", "gratification", "gravitational", "groundskeeper",
12669     "gubernatorial", "guesstimating", "hagiographies", "hairsbreadths",
12670     "hairsplitting", "halfheartedly", "hallucinating", "hallucination",
12671     "hallucinatory", "hallucinogens", "handkerchiefs", "happenstances",
12672     "harbormasters", "hardheartedly", "headquartered", "healthfulness",
12673     "heartbreaking", "heartlessness", "helicoptering", "hemispherical",
12674     "hermaphrodite", "herringboning", "heterogeneity", "heterogeneous",
12675     "heterosexuals", "hieroglyphics", "holidaymakers", "homestretches",
12676     "homogeneously", "homosexuality", "horseradishes", "horsewhipping",
12677     "horticultural", "hotheadedness", "housebreakers", "housebreaking",
12678     "housecleaning", "househusbands", "housemistress", "housewarmings",
12679     "huckleberries", "humanitarians", "hundredweight", "hydraulically",
12680     "hydraulicking", "hydroelectric", "hydrogenating", "hyperactivity",
12681     "hypercritical", "hypochondriac", "hypoglycemics", "ideologically",
12682     "idiomatically", "idiosyncratic", "ignominiously", "illuminations",
12683     "illustrations", "imaginatively", "impeccability", "imperceptible",
12684     "imperceptibly", "imperfections", "imperialistic", "imperiousness",
12685     "imperishables", "impermissible", "impersonating", "impersonation",
12686     "impersonators", "impertinences", "impertinently", "imperturbable",
12687     "imperturbably", "impetuousness", "implacability", "implementable",
12688     "imponderables", "importunating", "impossibility", "impoverishing",
12689     "impracticable", "impracticably", "impressionism", "impressionist",
12690     "imprisonments", "improbability", "improprieties", "improvidently",
12691     "improvisation", "impulsiveness", "inadvertently", "inappropriate",
12692     "inarticulates", "inattentively", "inaugurations", "incandescence",
12693     "incandescents", "incapacitated", "incapacitates", "incarcerating",
12694     "incarceration", "incombustible", "incommunicado", "incompatibles",
12695     "incompetently", "inconceivable", "inconceivably", "incongruities",
12696     "incongruously", "inconsiderate", "inconsistency", "inconspicuous",
12697     "incontestable", "incontestably", "inconvenience", "incorporating",
12698     "incorporation", "incorrectness", "incorruptible", "incorruptibly",
12699     "incredibility", "incredulously", "incrementally", "incriminating",
12700     "incrimination", "incriminatory", "incrustations", "indefatigable",
12701     "indefatigably", "independently", "indescribable", "indescribably",
12702     "indeterminacy", "indeterminate", "indifferently", "indigestibles",
12703     "indiscernible", "indiscretions", "indispensable", "indispensably",
12704     "indisposition", "individualism", "individualist", "individuality",
12705     "indoctrinated", "indoctrinates", "industrialism", "industrialist",
12706     "industriously", "ineffectively", "ineffectually", "inefficiently",
12707     "ineligibility", "inevitability", "inexhaustible", "inexhaustibly",
12708     "inexorability", "inexpensively", "inexperienced", "inexpressible",
12709     "inexpressibly", "infallibility", "infinitesimal", "inflammations",
12710     "inflexibility", "inflorescence", "influentially", "informational",
12711     "infringements", "infuriatingly", "ingenuousness", "injudiciously",
12712     "innocuousness", "inoffensively", "inopportunely", "inquisitively",
12713     "inquisitorial", "insectivorous", "insensibility", "insensitively",
12714     "insensitivity", "insidiousness", "insignificant", "inspectorates",
12715     "inspirational", "instabilities", "installations", "instantaneous",
12716     "instinctively", "institutional", "instructional", "instructively",
12717     "instrumentals", "instrumenting", "insubordinate", "insubstantial",
12718     "insufficiency", "insupportable", "insurrections", "intellectuals",
12719     "intelligently", "intemperately", "intentionally", "interactively",
12720     "interactivity", "interbreeding", "interceptions", "intercessions",
12721     "interchanging", "interconnects", "interestingly", "intergalactic",
12722     "interjections", "interlocutors", "interlocutory", "intermarriage",
12723     "intermarrying", "intermediates", "intermingling", "intermissions",
12724     "international", "interpersonal", "interpolating", "interpolation",
12725     "interposition", "interrelating", "interrelation", "interrogating",
12726     "interrogation", "interrogative", "interrogators", "interrogatory",
12727     "interruptions", "intersections", "interspersing", "interventions",
12728     "intransigence", "intransigents", "intransitives", "intravenouses",
12729     "intravenously", "intrinsically", "introductions", "introspection",
12730     "introspective", "inventiveness", "invertebrates", "investigating",
12731     "investigation", "investigative", "investigators", "investigatory",
12732     "invidiousness", "invincibility", "inviolability", "invitationals",
12733     "involuntarily", "irrationality", "irrecoverable", "irrecoverably",
12734     "irredeemables", "irrelevancies", "irreplaceable", "irrepressible",
12735     "irrepressibly", "irresponsible", "irresponsibly", "irretrievable",
12736     "irretrievably", "isolationists", "jackhammering", "jitterbugging",
12737     "jollification", "judiciousness", "jurisdictions", "jurisprudence",
12738     "justification", "juxtaposition", "kaleidoscopes", "kaleidoscopic",
12739     "kindergartens", "kleptomaniacs", "knowledgeable", "knowledgeably",
12740     "knuckleduster", "laboriousness", "lackadaisical", "landownership",
12741     "laughingstock", "lethargically", "lexicographer", "librarianship",
12742     "lithographers", "lithographing", "litigiousness", "loathsomeness",
12743     "ludicrousness", "luncheonettes", "luxuriousness", "macroeconomic",
12744     "mademoiselles", "magisterially", "magnanimously", "magnetosphere",
12745     "magnification", "magnificently", "mainstreaming", "maladjustment",
12746     "maladroitness", "malformations", "malfunctioned", "manageability",
12747     "manifestation", "manipulations", "mantelshelves", "manufacturers",
12748     "manufacturing", "marchionesses", "marketability", "masterclasses",
12749     "masterminding", "masterstrokes", "materialistic", "mathematician",
12750     "matriculating", "matriculation", "meaninglessly", "meetinghouses",
12751     "megalomaniacs", "megalopolises", "mellifluously", "melodiousness",
12752     "melodramatics", "merchandising", "meritocracies", "meritoriously",
12753     "metalanguages", "metallurgical", "metallurgists", "metamorphosed",
12754     "metamorphoses", "metamorphosis", "meteorologist", "methodologies",
12755     "microcomputer", "microorganism", "microwaveable", "middleweights",
12756     "millionairess", "mimeographing", "mineralogists", "minicomputers",
12757     "ministrations", "misadventures", "misanthropist", "misapprehends",
12758     "miscalculated", "miscalculates", "miscegenation", "miscellaneous",
12759     "mischievously", "misconceiving", "misconception", "misconducting",
12760     "misconstruing", "misdiagnosing", "misidentified", "misidentifies",
12761     "misinterprets", "mismanagement", "mispronounced", "mispronounces",
12762     "misquotations", "misrepresents", "misstatements", "mistranslated",
12763     "mistrustfully", "misunderstand", "misunderstood", "modifications",
12764     "mollification", "mollycoddling", "momentousness", "monochromatic",
12765     "monocotyledon", "mononucleosis", "monosyllables", "monotonically",
12766     "monstrosities", "morphological", "mortification", "motherfuckers",
12767     "motherfucking", "motorcyclists", "mountaineered", "mountainsides",
12768     "mousetrapping", "mouthwatering", "multicultural", "multinational",
12769     "multiplicands", "multitudinous", "multivitamins", "mummification",
12770     "musicologists", "mystification", "nationalistic", "nationalities",
12771     "necessitating", "necrophiliacs", "nefariousness", "neoclassicism",
12772     "newsworthiest", "niggardliness", "nightclubbing", "nightwatchman",
12773     "nightwatchmen", "nitroglycerin", "noiselessness", "nomenclatures",
12774     "nonabsorbents", "nonagenarians", "nonalcoholics", "noncombatants",
12775     "noncommercial", "noncompliance", "nonconductors", "nonconformism",
12776     "nonconformist", "nonconformity", "noncontagious", "nondeductible",
12777     "nonindustrial", "nonjudgmental", "nonnegotiable", "nonproductive",
12778     "nonrefillable", "nonrefundable", "nonreturnable", "nonsensically",
12779     "northeasterly", "northeastward", "northwesterly", "northwestward",
12780     "nostalgically", "notifications", "nullification", "nutritionally",
12781     "nutritionists", "nymphomaniacs", "objectionable", "objectionably",
12782     "objectiveness", "obliviousness", "obnoxiousness", "observational",
12783     "observatories", "obsessionally", "obstetricians", "obstructively",
12784     "obtrusiveness", "oceanographer", "oceanographic", "octogenarians",
12785     "offensiveness", "offhandedness", "officeholders", "officiousness",
12786     "oleomargarine", "operationally", "ophthalmology", "opportunistic",
12787     "opportunities", "orchestrating", "orchestration", "ornamentation",
12788     "ornithologist", "orthodontists", "orthogonality", "orthographies",
12789     "oscilloscopes", "outdistancing", "outperforming", "outspokenness",
12790     "outstandingly", "outstretching", "overabundance", "overachievers",
12791     "overachieving", "overambitious", "overbalancing", "overburdening",
12792     "overconfident", "overdeveloped", "overestimated", "overestimates",
12793     "overextending", "overindulging", "overpopulated", "overpopulates",
12794     "overproducing", "overqualified", "overreactions", "oversensitive",
12795     "overshadowing", "overspreading", "overstatement", "overstretched",
12796     "overstretches", "oversubscribe", "oversupplying", "overvaluation",
12797     "overweeningly", "overwintering", "painstakingly", "palaeontology",
12798     "pantechnicons", "paradoxically", "parallelogram", "paraphernalia",
12799     "parasitically", "parenthetical", "parliamentary", "participating",
12800     "participation", "participators", "participatory", "particularity",
12801     "passionflower", "passivisation", "passivization", "paterfamilias",
12802     "paternalistic", "patriotically", "peculiarities", "pedagogically",
12803     "pediatricians", "perambulating", "perambulation", "perambulators",
12804     "percussionist", "peregrination", "perfectionism", "perfectionist",
12805     "perfunctorily", "perpendicular", "personalities", "perspicacious",
12806     "perturbations", "pervasiveness", "petrochemical", "pharmacopoeia",
12807     "phenobarbital", "phenomenology", "philanthropic", "philharmonics",
12808     "philodendrons", "philosophical", "photoelectric", "photographers",
12809     "photographing", "photostatting", "phrenologists", "physiognomies",
12810     "physiological", "physiologists", "physiotherapy", "picturesquely",
12811     "piezoelectric", "pigheadedness", "platitudinous", "pneumatically",
12812     "pointlessness", "policyholders", "poliomyelitis", "polypropylene",
12813     "polysyllables", "ponderousness", "pontificating", "pornographers",
12814     "possibilities", "postgraduates", "postmodernism", "postmodernist",
12815     "postoperative", "postponements", "powerlessness", "practitioners",
12816     "pragmatically", "precautionary", "precipitately", "precipitating",
12817     "precipitation", "precipitously", "preconceiving", "preconception",
12818     "preconditions", "predetermined", "predeterminer", "predetermines",
12819     "predicatively", "predilections", "predominantly", "predominately",
12820     "predominating", "prefabricated", "prefabricates", "preliminaries",
12821     "premeditating", "premeditation", "preoccupation", "preponderance",
12822     "preponderated", "preponderates", "prepositional", "prepositioned",
12823     "prepossessing", "preregistered", "prerequisites", "prescriptions",
12824     "presentations", "presentiments", "preservatives", "pretentiously",
12825     "preternatural", "prevaricating", "prevarication", "prevaricators",
12826     "preventatives", "primitiveness", "primogeniture", "prizefighters",
12827     "prizefighting", "probabilistic", "probabilities", "problematical",
12828     "processionals", "processioning", "proclamations", "procrastinate",
12829     "professionals", "professorship", "profitability", "prognosticate",
12830     "programmables", "progressively", "prohibitively", "projectionist",
12831     "proliferating", "proliferation", "prolongations", "promiscuously",
12832     "pronounceable", "pronouncement", "pronunciation", "propagandists",
12833     "prophetically", "prophylactics", "proportionals", "proportionate",
12834     "proportioning", "propositional", "propositioned", "proprietaries",
12835     "proprietorial", "proscriptions", "protectionism", "protectionist",
12836     "protectorates", "protestations", "protuberances", "provincialism",
12837     "provisionally", "provocatively", "psephologists", "psychiatrists",
12838     "psychoanalyst", "psychokinesis", "psychokinetic", "psychological",
12839     "psychologists", "psychopathics", "psychosomatic", "psychotherapy",
12840     "punctiliously", "puritanically", "purposelessly", "pusillanimity",
12841     "pusillanimous", "quadraphonics", "quadrilateral", "quadriplegics",
12842     "quadruplicate", "qualification", "qualitatively", "quarterbacked",
12843     "quarterfinals", "quartermaster", "questioningly", "questionnaire",
12844     "quintessences", "radioactivity", "radiographers", "radioisotopes",
12845     "ramifications", "rapaciousness", "rapprochement", "rationalistic",
12846     "reactionaries", "readabilities", "readjustments", "reaffirmation",
12847     "realistically", "reappearances", "reappointment", "reapportioned",
12848     "rearrangement", "reassessments", "recalcitrance", "recapitulated",
12849     "recapitulates", "receptionists", "receptiveness", "reciprocating",
12850     "reciprocation", "reclassifying", "recollections", "recombination",
12851     "recompilation", "reconditioned", "reconsidering", "reconstituted",
12852     "reconstitutes", "reconstructed", "recriminating", "recrimination",
12853     "recriminatory", "recrudescence", "rectification", "redevelopment",
12854     "rediscoveries", "rediscovering", "redistributed", "redistributes",
12855     "redistricting", "reestablished", "reestablishes", "reforestation",
12856     "reformatories", "reformulating", "refrigerating", "refrigeration",
12857     "refrigerators", "refurbishment", "regimentation", "registrations",
12858     "regurgitating", "regurgitation", "rehabilitated", "rehabilitates",
12859     "reimbursement", "reincarnating", "reincarnation", "reinforcement",
12860     "reinstatement", "reinterpreted", "relationships", "relinquishing",
12861     "reminiscences", "reminiscently", "remonstrances", "remonstrating",
12862     "remorselessly", "remunerations", "rendezvousing", "renegotiating",
12863     "renunciations", "repatriations", "repercussions", "replenishment",
12864     "repossessions", "reprehensible", "reprehensibly", "reproachfully",
12865     "reproducibles", "reproductions", "reprogramming", "republicanism",
12866     "repulsiveness", "requisitioned", "resentfulness", "resourcefully",
12867     "resplendently", "restaurateurs", "restrictively", "restructuring",
12868     "resurrections", "resuscitating", "resuscitation", "resuscitators",
12869     "retentiveness", "reticulations", "retrenchments", "retroactively",
12870     "retrogressing", "retrogression", "retrogressive", "retrospecting",
12871     "retrospection", "retrospective", "reunification", "reupholstered",
12872     "reverberating", "reverberation", "reverentially", "reversibility",
12873     "revolutionary", "revolutionist", "rhododendrons", "righteousness",
12874     "rollerblading", "rollerskating", "rubberneckers", "rubbernecking",
12875     "sacrificially", "sadomasochism", "sadomasochist", "salaciousness",
12876     "sanctimonious", "sarcastically", "sarsaparillas", "satisfactions",
12877     "scandalmonger", "scatterbrains", "schadenfreude", "schematically",
12878     "schizophrenia", "schizophrenic", "scholasticism", "schoolmarmish",
12879     "schoolmasters", "schoolteacher", "scintillating", "scintillation",
12880     "screenwriters", "screenwriting", "scriptwriters", "seaworthiness",
12881     "secessionists", "secretiveness", "sedimentation", "seductiveness",
12882     "seismographic", "seismological", "seismologists", "semiautomatic",
12883     "semiconductor", "semiconscious", "semifinalists", "semimonthlies",
12884     "semipermeable", "sensationally", "senselessness", "sensibilities",
12885     "sensitiveness", "sensitivities", "sententiously", "sentimentally",
12886     "sequestrating", "sequestration", "serendipitous", "sexagenarians",
12887     "shamelessness", "shapelessness", "sharecroppers", "shareholdings",
12888     "sharpshooters", "shepherdesses", "shiftlessness", "shortchanging",
12889     "shuffleboards", "shuttlecocked", "sidesplitting", "significantly",
12890     "signification", "singularities", "skateboarders", "skateboarding",
12891     "sledgehammers", "sleeplessness", "smallholdings", "socioeconomic",
12892     "solicitations", "somersaulting", "somnambulists", "sonsofbitches",
12893     "sophisticated", "sophisticates", "soporifically", "soundproofing",
12894     "southeasterly", "southeastward", "southwesterly", "southwestward",
12895     "spasmodically", "speakerphones", "specification", "spectacularly",
12896     "spectroscopes", "spectroscopic", "speculatively", "speechwriters",
12897     "speleologists", "spellcheckers", "spinelessness", "spiritualists",
12898     "spokespersons", "spontaneously", "sportscasters", "sportscasting",
12899     "sportsmanlike", "sportsmanship", "sprightliness", "squeamishness",
12900     "staphylococci", "statelessness", "statesmanlike", "statesmanship",
12901     "stationmaster", "statistically", "statisticians", "steadfastness",
12902     "steamrollered", "steeplechases", "stenographers", "stepdaughters",
12903     "steppingstone", "stereotypical", "stipendiaries", "straightaways",
12904     "straightedges", "straightening", "straitjackets", "strangleholds",
12905     "strangulating", "strangulation", "strategically", "stratospheres",
12906     "stratospheric", "streetwalkers", "strengthening", "strenuousness",
12907     "streptococcal", "streptococcus", "strikebreaker", "structuralism",
12908     "structuralist", "stylistically", "subcommittees", "subcontinents",
12909     "subcontracted", "subcontractor", "sublieutenant", "subordinating",
12910     "subordination", "subscriptions", "subserviently", "substantially",
12911     "substantiated", "substantiates", "substitutions", "substructures",
12912     "sumptuousness", "superabundant", "superannuated", "superannuates",
12913     "superchargers", "supercharging", "supercomputer", "superficially",
12914     "superfluously", "superhighways", "superimposing", "superintended",
12915     "superlatively", "supernaturals", "supernumerary", "superstitions",
12916     "superstitious", "supplementary", "supplementing", "supplications",
12917     "suppositories", "supranational", "surreptitious", "swashbucklers",
12918     "swashbuckling", "swordsmanship", "syllabication", "symbiotically",
12919     "symmetrically", "synchronicity", "synchronously", "syntactically",
12920     "synthetically", "tablespoonful", "talkativeness", "tastelessness",
12921     "technocracies", "technological", "technologists", "telecommuters",
12922     "telecommuting", "telemarketing", "televangelism", "televangelist",
12923     "temperamental", "tempestuously", "temporariness", "tendentiously",
12924     "tenderhearted", "tentativeness", "terminologies", "tessellations",
12925     "thanksgivings", "theatricality", "thenceforward", "theologically",
12926     "theoretically", "theoreticians", "thermodynamic", "thermonuclear",
12927     "thermoplastic", "thermostatics", "thoroughbreds", "thoroughfares",
12928     "thoroughgoing", "thoughtlessly", "threateningly", "thunderclouds",
12929     "thundershower", "thunderstorms", "thunderstruck", "tonsillectomy",
12930     "topographical", "topologically", "tortoiseshell", "totalitarians",
12931     "toxicological", "toxicologists", "tracheotomies", "traditionally",
12932     "tragicomedies", "trainspotters", "trainspotting", "transatlantic",
12933     "transcendence", "transcription", "transfiguring", "transgressing",
12934     "transgression", "transgressors", "transitioning", "transliterate",
12935     "transmigrated", "transmigrates", "transmissible", "transmissions",
12936     "transmittable", "transmutation", "transnational", "transparently",
12937     "transpiration", "transplanting", "transportable", "transposition",
12938     "transshipment", "transshipping", "transvestites", "traumatically",
12939     "treacherously", "triangulation", "triglycerides", "trigonometric",
12940     "troublemakers", "troubleshoots", "trustworthier", "turbochargers",
12941     "turbocharging", "typographical", "tyrannosaurus", "unaccompanied",
12942     "unaccountable", "unaccountably", "unadulterated", "unambiguously",
12943     "unanticipated", "unappreciated", "unceremonious", "uncertainties",
12944     "uncomfortable", "uncomfortably", "uncomplaining", "uncomplicated",
12945     "unconcernedly", "unconditional", "unconquerable", "unconsciously",
12946     "uncooperative", "uncoordinated", "underachieved", "underachiever",
12947     "underachieves", "underbrushing", "undercarriage", "undercharging",
12948     "underclassman", "underclassmen", "underclothing", "undercurrents",
12949     "underemployed", "underestimate", "underexposing", "undergarments",
12950     "undergraduate", "underhandedly", "underpinnings", "undershooting",
12951     "understanding", "understudying", "underwhelming", "undisciplined",
12952     "unembarrassed", "unemotionally", "unenforceable", "unenlightened",
12953     "unequivocally", "unexceptional", "unfamiliarity", "unfashionable",
12954     "unfashionably", "unflinchingly", "unforeseeable", "unforgettable",
12955     "unforgettably", "unfortunately", "unfriendliest", "ungentlemanly",
12956     "ungrammatical", "unilateralism", "unimaginative", "unimpeachable",
12957     "unimplemented", "uninformative", "uninhabitable", "unintelligent",
12958     "unintentional", "uninteresting", "uninterpreted", "uninterrupted",
12959     "unjustifiable", "unjustifiably", "unmentionable", "unnecessarily",
12960     "unobtrusively", "unprecedented", "unpredictable", "unpredictably",
12961     "unpretentious", "unpreventable", "unquestioning", "unrelentingly",
12962     "unreliability", "unremittingly", "unselfishness", "unsentimental",
12963     "unsightliness", "unspectacular", "unsubstantial", "unsupportable",
12964     "unsustainable", "unsympathetic", "untrustworthy", "unwillingness",
12965     "upperclassman", "upperclassmen", "valedictorian", "valedictories",
12966     "vegetarianism", "veggieburgers", "ventriloquism", "ventriloquist",
12967     "versification", "veterinarians", "videocassette", "viscountesses",
12968     "vitriolically", "vivaciousness", "voraciousness", "vulnerability",
12969     "waterproofing", "weatherboards", "weathercocked", "weatherproofs",
12970     "weightlifters", "weightlifting", "welterweights", "whippoorwills",
12971     "wholesomeness", "woolgathering", "worthlessness", "wrongheadedly",
12972     "yellowhammers"
12973   };
12974 
12975   const char* w_14[] = {
12976     "abstractnesses", "accommodations", "accompaniments", "accomplishment",
12977     "accountability", "acupuncturists", "administrating", "administration",
12978     "administrative", "administrators", "advantageously", "adventitiously",
12979     "advertisements", "affectionately", "aforementioned", "agglomerations",
12980     "agglutinations", "aggressiveness", "agribusinesses", "alphabetically",
12981     "altruistically", "amateurishness", "ambassadorship", "ambidextrously",
12982     "ambulancewoman", "ambulancewomen", "amplifications", "anthropologist",
12983     "anticoagulants", "antidepressant", "antihistamines", "antiperspirant",
12984     "antiseptically", "antithetically", "apologetically", "appendectomies",
12985     "appreciatively", "apprehensively", "apprenticeship", "appropriations",
12986     "approximations", "archaeological", "archaeologists", "archbishoprics",
12987     "arithmetically", "aromatherapist", "articulateness", "assassinations",
12988     "astrologically", "astronomically", "astrophysicist", "asymmetrically",
12989     "asymptotically", "asynchronously", "attractiveness", "auspiciousness",
12990     "authenticating", "authentication", "authoritarians", "autocratically",
12991     "autosuggestion", "baccalaureates", "backscratching", "bacteriologist",
12992     "beatifications", "beautification", "benefactresses", "bibliographers",
12993     "bibliographies", "bloodthirstier", "boardinghouses", "boisterousness",
12994     "bougainvilleas", "bouillabaisses", "breathlessness", "breathtakingly",
12995     "brontosauruses", "bulletproofing", "campanologists", "cantankerously",
12996     "capriciousness", "cardiovascular", "certifications", "characteristic",
12997     "choreographers", "choreographing", "chrysanthemums", "cinematography",
12998     "circumferences", "circumlocution", "circumlocutory", "circumnavigate",
12999     "circumscribing", "circumspection", "circumstancing", "circumstantial",
13000     "clarifications", "classification", "claustrophobia", "claustrophobic",
13001     "clearinghouses", "climatologists", "coincidentally", "collaborations",
13002     "collaboratives", "colloquialisms", "combustibility", "commemorations",
13003     "commensurately", "commiserations", "commissionaire", "communications",
13004     "comprehensible", "comprehensibly", "comprehensions", "comprehensives",
13005     "compulsiveness", "concatenations", "concentrations", "concentrically",
13006     "concertmasters", "concessionaire", "confederations", "confidentially",
13007     "configurations", "conflagrations", "confrontations", "conglomerating",
13008     "conglomeration", "congratulating", "congratulation", "congratulatory",
13009     "congregational", "conjunctivitis", "conservatively", "conservatoires",
13010     "conservatories", "considerations", "consolidations", "conspiratorial",
13011     "constabularies", "constellations", "constituencies", "constitutional",
13012     "constructively", "contemplatives", "contemporaries", "contemptuously",
13013     "contortionists", "contraceptives", "contradictions", "contraventions",
13014     "convalescences", "conventionally", "conventioneers", "conversational",
13015     "convertibility", "coreligionists", "correspondence", "correspondents",
13016     "corroborations", "cosmetologists", "counteractions", "counterattacks",
13017     "counterbalance", "counterclaimed", "counterculture", "counterexample",
13018     "counterfeiters", "counterfeiting", "countermanding", "countermeasure",
13019     "counterpointed", "countersigning", "countersinking", "countervailing",
13020     "counterweights", "criminologists", "cryptographers", "daguerreotyped",
13021     "daguerreotypes", "decaffeinating", "decommissioned", "deconstructing",
13022     "deconstruction", "decontaminated", "decontaminates", "defibrillators",
13023     "democratically", "demonstrations", "demonstratives", "denominational",
13024     "dermatologists", "determinations", "detoxification", "diagnosticians",
13025     "differentiated", "differentiates", "diplomatically", "disadvantaging",
13026     "disafforesting", "disambiguation", "disappearances", "disappointment",
13027     "disapprobation", "disapprovingly", "disarrangement", "disassociating",
13028     "disbelievingly", "disciplinarian", "discombobulate", "disconnectedly",
13029     "disconnections", "disconsolately", "discontentedly", "discontentment",
13030     "discontinuance", "discountenance", "discouragement", "discouragingly",
13031     "discourteously", "discriminating", "discrimination", "discriminatory",
13032     "disembarkation", "disenchantment", "disencumbering", "disenfranchise",
13033     "disengagements", "disequilibrium", "disestablished", "disestablishes",
13034     "disfigurements", "disfranchising", "disillusioning", "disinclination",
13035     "disinformation", "disingenuously", "disintegrating", "disintegration",
13036     "disorderliness", "disorientating", "disorientation", "disproportions",
13037     "distinguishing", "distributional", "eccentricities", "ecclesiastical",
13038     "educationalist", "egalitarianism", "egocentrically", "electioneering",
13039     "electrocutions", "electromagnets", "electronically", "electroplating",
13040     "embarrassingly", "embarrassments", "embellishments", "emblematically",
13041     "emulsification", "encapsulations", "encouragements", "entertainingly",
13042     "entertainments", "epidemiologist", "establishments", "ethnologically",
13043     "etymologically", "exasperatingly", "excommunicated", "excommunicates",
13044     "excruciatingly", "exhibitionists", "existentialism", "existentialist",
13045     "experimentally", "exponentiation", "expostulations", "expressionists",
13046     "expressionless", "expressiveness", "expropriations", "extemporaneous",
13047     "exterminations", "extinguishable", "extortionately", "extraordinaire",
13048     "extrapolations", "falsifications", "farsightedness", "fastidiousness",
13049     "fatalistically", "featherbedding", "featherbrained", "featherweights",
13050     "fingerprinting", "flabbergasting", "foreshortening", "forthrightness",
13051     "fortifications", "frontierswoman", "frontierswomen", "functionalists",
13052     "fundamentalism", "fundamentalist", "genealogically", "generalissimos",
13053     "gentrification", "geographically", "gerontological", "gerontologists",
13054     "gerrymandering", "gesticulations", "granddaughters", "grandfathering",
13055     "grandiloquence", "gratifications", "gratuitousness", "gregariousness",
13056     "groundbreaking", "groundskeepers", "haberdasheries", "hallucinations",
13057     "hallucinogenic", "hardheadedness", "harmoniousness", "headmistresses",
13058     "headquartering", "hermaphrodites", "hermaphroditic", "heterosexually",
13059     "hierarchically", "hippopotamuses", "histrionically", "horticulturist",
13060     "hundredweights", "hyperinflation", "hypersensitive", "hyperventilate",
13061     "hypnotherapist", "hypoallergenic", "hypochondriacs", "hypocritically",
13062     "hypothetically", "hysterectomies", "idealistically", "identification",
13063     "idiosyncrasies", "illegitimately", "immaculateness", "impersonations",
13064     "implausibility", "implementation", "impolitenesses", "impoverishment",
13065     "impracticality", "impregnability", "impressionable", "impressionists",
13066     "impressiveness", "improvisations", "inarticulately", "inauspiciously",
13067     "incapacitating", "incarcerations", "incestuousness", "incommensurate",
13068     "incompleteness", "inconclusively", "inconsiderable", "inconsistently",
13069     "inconvenienced", "inconveniences", "inconveniently", "incorruptibles",
13070     "indecipherable", "indecisiveness", "indescribables", "indestructible",
13071     "indestructibly", "indeterminable", "indiscriminate", "indispensables",
13072     "indispositions", "indistinctness", "individualists", "indivisibility",
13073     "indoctrinating", "indoctrination", "industrialists", "inefficiencies",
13074     "infectiousness", "infinitesimals", "infrastructure", "ingratiatingly",
13075     "inscrutability", "inseparability", "insignificance", "insufficiently",
13076     "insurmountable", "intellectually", "intelligentsia", "interconnected",
13077     "interdependent", "intermarriages", "intermediaries", "intermittently",
13078     "internationals", "interpenetrate", "interplanetary", "interpolations",
13079     "interpretation", "interpretative", "interrelations", "interrogations",
13080     "interrogatives", "intractability", "intransigently", "intransitively",
13081     "investigations", "irreconcilable", "irreconcilably", "irregularities",
13082     "irreproachable", "irreproachably", "jollifications", "jurisdictional",
13083     "justifications", "juxtapositions", "knickerbockers", "knuckledusters",
13084     "lasciviousness", "laughingstocks", "legalistically", "lexicographers",
13085     "licentiousness", "lightheartedly", "linguistically", "longitudinally",
13086     "lugubriousness", "macroeconomics", "magnifications", "malfunctioning",
13087     "manifestations", "mathematically", "mathematicians", "meaningfulness",
13088     "mesdemoiselles", "metamorphosing", "metaphorically", "meteorological",
13089     "meteorologists", "methodological", "meticulousness", "microbiologist",
13090     "microcomputers", "microeconomics", "microorganisms", "microprocessor",
13091     "mindbogglingly", "misanthropists", "misapplication", "misapprehended",
13092     "misappropriate", "miscalculating", "miscalculation", "misconceptions",
13093     "misidentifying", "misinformation", "misinterpreted", "mispronouncing",
13094     "misrepresented", "misunderstands", "monocotyledons", "mountaineering",
13095     "multinationals", "multiplication", "multiplicative", "multiplicities",
13096     "municipalities", "mysteriousness", "neocolonialism", "neocolonialist",
13097     "newspaperwoman", "newspaperwomen", "noncommercials", "noncommittally",
13098     "noncompetitive", "nonconformists", "noncooperation", "nonrestrictive",
13099     "nonreturnables", "northeastwards", "northwestwards", "obsequiousness",
13100     "obstructionism", "obstructionist", "occupationally", "oceanographers",
13101     "oppressiveness", "optimistically", "orchestrations", "ornithological",
13102     "ornithologists", "ostentatiously", "osteoarthritis", "outlandishness",
13103     "overcompensate", "overdeveloping", "overestimating", "overestimation",
13104     "overindulgence", "overpopulating", "overpopulation", "overpoweringly",
13105     "overproduction", "overprotective", "oversimplified", "oversimplifies",
13106     "overstatements", "overstretching", "oversubscribed", "oversubscribes",
13107     "overvaluations", "overwhelmingly", "paediatricians", "paleontologist",
13108     "parallelograms", "paramilitaries", "parapsychology", "parsimoniously",
13109     "passionflowers", "pathologically", "penitentiaries", "perambulations",
13110     "perceptiveness", "percussionists", "peregrinations", "perfectionists",
13111     "permissiveness", "perpendiculars", "persuasiveness", "petrochemicals",
13112     "phantasmagoria", "pharmaceutical", "pharmacologist", "pharmacopoeias",
13113     "philanthropies", "philanthropist", "phlegmatically", "phosphorescent",
13114     "photosensitive", "photosynthesis", "polyunsaturate", "portentousness",
13115     "possessiveness", "postindustrial", "postmistresses", "postmodernists",
13116     "potentialities", "practicability", "practicalities", "prearrangement",
13117     "precariousness", "precipitations", "precociousness", "preconceptions",
13118     "preconditioned", "predestination", "predeterminers", "predetermining",
13119     "predictability", "predisposition", "prefabricating", "prefabrication",
13120     "preferentially", "preoccupations", "preponderances", "preponderantly",
13121     "preponderating", "prepositioning", "preposterously", "preregistering",
13122     "presumptuously", "presupposition", "prevarications", "principalities",
13123     "probationaries", "procrastinated", "procrastinates", "procrastinator",
13124     "productiveness", "professionally", "professorships", "prognosticated",
13125     "prognosticates", "prognosticator", "prohibitionist", "projectionists",
13126     "pronouncements", "pronunciations", "proportionally", "propositioning",
13127     "proprietorship", "proprietresses", "protectionists", "protectiveness",
13128     "providentially", "psychoanalysis", "psychoanalysts", "psychoanalytic",
13129     "psychosomatics", "purposefulness", "quadrilaterals", "quadruplicated",
13130     "quadruplicates", "qualifications", "quantification", "quantitatively",
13131     "quarterbacking", "quartermasters", "questionnaires", "quintessential",
13132     "radiotelephone", "radiotherapist", "rapprochements", "reaffirmations",
13133     "reapportioning", "rearrangements", "reasonableness", "rebelliousness",
13134     "rebroadcasting", "recapitulating", "recapitulation", "recommendation",
13135     "reconciliation", "reconditioning", "reconnaissance", "reconstituting",
13136     "reconstitution", "reconstructing", "reconstruction", "reconstructive",
13137     "recriminations", "rectifications", "redevelopments", "redistributing",
13138     "redistribution", "reestablishing", "refurbishments", "rehabilitating",
13139     "rehabilitation", "reimbursements", "reincarnations", "reinforcements",
13140     "reinterpreting", "relentlessness", "relinquishment", "representation",
13141     "representative", "repressiveness", "requisitioning", "respectability",
13142     "responsibility", "responsiveness", "restructurings", "retrospectives",
13143     "reupholstering", "reverberations", "revivification", "revolutionists",
13144     "ridiculousness", "sacrilegiously", "sadomasochists", "sanctification",
13145     "satisfactorily", "scandalmongers", "scaremongering", "scatterbrained",
13146     "schizophrenics", "scholastically", "schoolchildren", "schoolmistress",
13147     "schoolteachers", "scientifically", "segregationist", "semiautomatics",
13148     "semiconducting", "semiconductors", "sensationalism", "sensationalist",
13149     "sentimentalism", "sentimentalist", "sentimentality", "septuagenarian",
13150     "sequestrations", "servomechanism", "shortsightedly", "shuttlecocking",
13151     "significations", "simplification", "simplistically", "simultaneously",
13152     "slaughterhouse", "sledgehammered", "sociologically", "sociopolitical",
13153     "solicitousness", "solidification", "sophisticating", "sophistication",
13154     "southeastwards", "southwestwards", "specifications", "speechlessness",
13155     "spiritualistic", "staphylococcus", "stationmasters", "steamrollering",
13156     "steppingstones", "straitjacketed", "stratification", "strikebreakers",
13157     "strikebreaking", "structuralists", "stultification", "subconsciously",
13158     "subcontracting", "subcontractors", "subcutaneously", "sublieutenants",
13159     "submissiveness", "substantiating", "substantiation", "subversiveness",
13160     "superabundance", "superannuating", "superannuation", "superciliously",
13161     "supercomputers", "superconductor", "superficiality", "superintendent",
13162     "superintending", "supernaturally", "superstructure", "susceptibility",
13163     "sustainability", "systematically", "tablespoonfuls", "tautologically",
13164     "technicalities", "teleconference", "telepathically", "teletypewriter",
13165     "televangelists", "tercentenaries", "terminological", "territoriality",
13166     "thenceforwards", "thermodynamics", "thermoplastics", "thoughtfulness",
13167     "thundershowers", "tortoiseshells", "traditionalism", "traditionalist",
13168     "transcendental", "transcriptions", "transformation", "transgressions",
13169     "transliterated", "transliterates", "transmigrating", "transmigration",
13170     "transmogrified", "transmogrifies", "transmutations", "transnationals",
13171     "transparencies", "transportation", "transpositions", "troubleshooted",
13172     "troubleshooter", "trustworthiest", "ultrasonically", "unacknowledged",
13173     "unappreciative", "unapproachable", "unattractively", "uncompromising",
13174     "unconscionable", "unconscionably", "uncontaminated", "uncontrollable",
13175     "uncontrollably", "unconventional", "unconvincingly", "uncorroborated",
13176     "undecipherable", "underachievers", "underachieving", "undercarriages",
13177     "underdeveloped", "underestimated", "underestimates", "undergraduates",
13178     "undermentioned", "undernourished", "undersecretary", "understandable",
13179     "understandably", "understandings", "understatement", "undesirability",
13180     "unenthusiastic", "unexpectedness", "unfaithfulness", "unfriendliness",
13181     "ungratefulness", "unhesitatingly", "unidentifiable", "unidirectional",
13182     "unintelligible", "unintelligibly", "unmentionables", "unpleasantness",
13183     "unpremeditated", "unprofessional", "unquestionable", "unquestionably",
13184     "unsatisfactory", "unscrupulously", "unsuccessfully", "unsurprisingly",
13185     "utilitarianism", "valedictorians", "ventriloquists", "verisimilitude",
13186     "videocassettes", "vindictiveness", "vivisectionist", "voluptuousness",
13187     "weathercocking", "weatherproofed", "weightlessness", "whippersnapper",
13188     "wholeheartedly"
13189   };
13190 
13191   const char* w_15[] = {
13192     "acclimatisation", "acclimatization", "accomplishments",
13193     "acquisitiveness", "administrations", "aerodynamically",
13194     "agriculturalist", "ambassadorships", "anthropocentric",
13195     "anthropological", "anthropologists", "anthropomorphic",
13196     "antidepressants", "antiperspirants", "apprenticeships",
13197     "appropriateness", "architecturally", "aromatherapists",
13198     "astrophysicists", "atherosclerosis", "atmospherically",
13199     "authentications", "authoritatively", "autobiographies",
13200     "bacteriological", "bacteriologists", "bibliographical",
13201     "bloodthirstiest", "cardiopulmonary", "characteristics",
13202     "chronologically", "cinematographer", "circumlocutions",
13203     "circumnavigated", "circumnavigates", "circumscription",
13204     "circumstantials", "classifications", "collaboratively",
13205     "commissionaires", "compassionately", "competitiveness",
13206     "comprehensively", "computationally", "concessionaires",
13207     "condescendingly", "confectioneries", "confidentiality",
13208     "confrontational", "conglomerations", "congratulations",
13209     "conscientiously", "consciousnesses", "consequentially",
13210     "conservationist", "conspicuousness", "constitutionals",
13211     "contemplatively", "contemporaneous", "contentiousness",
13212     "controversially", "conventionality", "correspondences",
13213     "correspondingly", "counterargument", "counterattacked",
13214     "counterbalanced", "counterbalances", "counterclaiming",
13215     "countercultures", "counterexamples", "countermeasures",
13216     "counterpointing", "crystallography", "daguerreotyping",
13217     "decommissioning", "deconstructions", "decontaminating",
13218     "decontamination", "demographically", "demonstrability",
13219     "demonstratively", "demystification", "desertification",
13220     "dessertspoonful", "destructiveness", "differentiating",
13221     "differentiation", "disadvantageous", "disappointingly",
13222     "disappointments", "disciplinarians", "discombobulated",
13223     "discombobulates", "disconcertingly", "discontinuances",
13224     "discontinuation", "discontinuities", "discountenanced",
13225     "discountenances", "discouragements", "disenfranchised",
13226     "disenfranchises", "disentanglement", "disestablishing",
13227     "disillusionment", "disinterestedly", "dispassionately",
13228     "disrespectfully", "dissatisfaction", "dissimilarities",
13229     "distastefulness", "distinctiveness", "distinguishable",
13230     "distributorship", "diversification", "educationalists",
13231     "electrification", "electrodynamics", "electromagnetic",
13232     "enfranchisement", "entrepreneurial", "environmentally",
13233     "epidemiological", "epidemiologists", "euphemistically",
13234     "excommunicating", "excommunication", "exemplification",
13235     "existentialists", "experimentation", "extracurricular",
13236     "extraordinaries", "extraordinarily", "flibbertigibbet",
13237     "flirtatiousness", "fundamentalists", "gastroenteritis",
13238     "gastronomically", "groundbreakings", "halfheartedness",
13239     "hallucinogenics", "hardheartedness", "heterosexuality",
13240     "horticulturists", "housemistresses", "humanitarianism",
13241     "hypercritically", "hyperventilated", "hyperventilates",
13242     "hypnotherapists", "identifications", "impecuniousness",
13243     "impenetrability", "implementations", "impossibilities",
13244     "impressionistic", "improbabilities", "inaccessibility",
13245     "inappropriately", "incompatibility", "incomprehension",
13246     "inconsequential", "inconsiderately", "inconsistencies",
13247     "inconspicuously", "inconveniencing", "incorrigibility",
13248     "indemnification", "indeterminately", "indissolubility",
13249     "individualistic", "industriousness", "ineffectiveness",
13250     "infinitesimally", "infrastructural", "infrastructures",
13251     "inquisitiveness", "insignificantly", "instantaneously",
13252     "instrumentalist", "instrumentality", "instrumentation",
13253     "insubordination", "insurrectionist", "intellectualism",
13254     "intelligibility", "intensification", "interchangeable",
13255     "interchangeably", "intercollegiate", "interconnecting",
13256     "interconnection", "interdependence", "internationally",
13257     "interpenetrated", "interpenetrates", "interpretations",
13258     "interrogatories", "interscholastic", "interventionism",
13259     "interventionist", "introspectively", "invulnerability",
13260     "lackadaisically", "levelheadedness", "maintainability",
13261     "meaninglessness", "mechanistically", "microbiological",
13262     "microbiologists", "microelectronic", "microprocessors",
13263     "microscopically", "millionairesses", "misapplications",
13264     "misapprehending", "misapprehension", "misappropriated",
13265     "misappropriates", "miscalculations", "mischievousness",
13266     "misconstruction", "misinterpreting", "misrepresenting",
13267     "multiplications", "multiprocessing", "nearsightedness",
13268     "nongovernmental", "noninterference", "nonintervention",
13269     "nonprescription", "nonprofessional", "nontransferable",
13270     "notwithstanding", "objectification", "obstructionists",
13271     "obstructiveness", "ophthalmologist", "overcompensated",
13272     "overcompensates", "oversimplifying", "oversubscribing",
13273     "palaeontologist", "paleontologists", "parenthetically",
13274     "parliamentarian", "parthenogenesis", "particularities",
13275     "perpendicularly", "personification", "pessimistically",
13276     "phantasmagorias", "pharmaceuticals", "pharmacological",
13277     "pharmacologists", "philanthropists", "philosophically",
13278     "phosphorescence", "photojournalism", "photojournalist",
13279     "phototypesetter", "physiologically", "physiotherapist",
13280     "picturesqueness", "plainclothesman", "plainclothesmen",
13281     "plenipotentiary", "polyunsaturated", "polyunsaturates",
13282     "preconditioning", "predispositions", "preregistration",
13283     "preservationist", "presuppositions", "pretentiousness",
13284     "preternaturally", "problematically", "procrastinating",
13285     "procrastination", "procrastinators", "professionalism",
13286     "prognosticating", "prognostication", "prognosticators",
13287     "prohibitionists", "proportionality", "proportionately",
13288     "proprietorially", "psychologically", "psychopathology",
13289     "psychotherapies", "psychotherapist", "punctiliousness",
13290     "purposelessness", "pusillanimously", "quadruplicating",
13291     "radiotelephones", "radiotherapists", "reafforestation",
13292     "reapportionment", "recapitulations", "recommendations",
13293     "reconciliations", "reconfiguration", "reconnaissances",
13294     "reconsideration", "reconstructions", "representations",
13295     "representatives", "resourcefulness", "retrospectively",
13296     "revolutionaries", "ritualistically", "sadomasochistic",
13297     "sanctimoniously", "segregationists", "sensationalists",
13298     "sentimentalists", "septuagenarians", "servomechanisms",
13299     "simplifications", "slaughterhouses", "sledgehammering",
13300     "straightforward", "straitjacketing", "substantiations",
13301     "superabundances", "superconductors", "superfluousness",
13302     "superintendence", "superintendency", "superintendents",
13303     "supernumeraries", "superstitiously", "superstructures",
13304     "supplementation", "surreptitiously", "syllabification",
13305     "sympathetically", "technologically", "teleconferenced",
13306     "teleconferences", "teletypewriters", "temperamentally",
13307     "tempestuousness", "tendentiousness", "therapeutically",
13308     "thoughtlessness", "tonsillectomies", "topographically",
13309     "totalitarianism", "traditionalists", "transfiguration",
13310     "transformations", "transliterating", "transliteration",
13311     "transmogrifying", "transplantation", "trigonometrical",
13312     "troubleshooters", "troubleshooting", "trustworthiness",
13313     "typographically", "tyrannosauruses", "unacceptability",
13314     "unauthenticated", "unceremoniously", "uncommunicative",
13315     "uncomplainingly", "uncomplimentary", "uncomprehending",
13316     "unconditionally", "unconsciousness", "uncontroversial",
13317     "undemonstrative", "underestimating", "underestimation",
13318     "underprivileged", "understandingly", "understatements",
13319     "undistinguished", "unexceptionable", "unimplementable",
13320     "unintentionally", "uninterruptedly", "unobjectionable",
13321     "unprecedentedly", "unprepossessing", "unpronounceable",
13322     "unquestioningly", "unrealistically", "unreconstructed",
13323     "unsophisticated", "unsportsmanlike", "unsubstantiated",
13324     "upperclasswoman", "upperclasswomen", "vivisectionists",
13325     "vulnerabilities", "weatherboarding", "weatherproofing",
13326     "whatchamacallit", "whippersnappers", "wrongheadedness"
13327   };
13328 
13329   const char* w_16[] = {
13330     "acquaintanceship", "administratively", "agriculturalists",
13331     "antagonistically", "anthropomorphism", "apprehensiveness",
13332     "archaeologically", "aristocratically", "arteriosclerosis",
13333     "authoritarianism", "autobiographical", "bloodthirstiness",
13334     "bureaucratically", "cantankerousness", "catastrophically",
13335     "chauvinistically", "cinematographers", "circumnavigating",
13336     "circumnavigation", "circumscriptions", "circumstantially",
13337     "collaborationist", "conservationists", "conspiratorially",
13338     "constitutionally", "contraindication", "conversationally",
13339     "counterarguments", "counterattacking", "counterbalancing",
13340     "counterclockwise", "counterespionage", "counteroffensive",
13341     "creditworthiness", "crystallographic", "declassification",
13342     "dessertspoonfuls", "diagrammatically", "discombobulating",
13343     "discontinuations", "discountenancing", "disenfranchising",
13344     "disestablishment", "disfranchisement", "disproportionate",
13345     "disqualification", "distributorships", "electromagnetism",
13346     "enthusiastically", "entrepreneurship", "environmentalism",
13347     "environmentalist", "ethnographically", "excommunications",
13348     "exemplifications", "expressionlessly", "extemporaneously",
13349     "extracurriculars", "extraterrestrial", "extraterritorial",
13350     "flibbertigibbets", "gastrointestinal", "horticulturalist",
13351     "hydroelectricity", "hypersensitivity", "hyperventilating",
13352     "hyperventilation", "immunodeficiency", "imperturbability",
13353     "implausibilities", "impracticability", "inarticulateness",
13354     "incomprehensible", "incomprehensibly", "incontrovertible",
13355     "incontrovertibly", "incorruptibility", "indemnifications",
13356     "indiscriminately", "indispensability", "inextinguishable",
13357     "instrumentalists", "insurrectionists", "interconnections",
13358     "intercontinental", "internationalism", "internationalist",
13359     "interpenetrating", "interpenetration", "interventionists",
13360     "irresponsibility", "lightheartedness", "melodramatically",
13361     "methodologically", "microelectronics", "misapprehensions",
13362     "misappropriating", "misappropriation", "misconstructions",
13363     "mispronunciation", "misunderstanding", "multiculturalism",
13364     "multidimensional", "multifariousness", "multimillionaire",
13365     "neurotransmitter", "nonprofessionals", "nonproliferation",
13366     "obstreperousness", "ophthalmologists", "orthographically",
13367     "overcompensating", "overcompensation", "overenthusiastic",
13368     "palaeontologists", "paraprofessional", "parliamentarians",
13369     "personifications", "phantasmagorical", "phenomenological",
13370     "photographically", "photojournalists", "phototypesetting",
13371     "physiotherapists", "praiseworthiness", "predetermination",
13372     "preservationists", "presumptuousness", "prognostications",
13373     "psychotherapists", "quintessentially", "rambunctiousness",
13374     "reinterpretation", "representational", "responsibilities",
13375     "schoolmistresses", "semiprofessional", "shortsightedness",
13376     "straightforwards", "superciliousness", "susceptibilities",
13377     "teleconferencing", "thermostatically", "tintinnabulation",
13378     "transcendentally", "transcontinental", "transliterations",
13379     "uncharacteristic", "uncompromisingly", "unconstitutional",
13380     "unconventionally", "underachievement", "underestimations",
13381     "undernourishment", "undersecretaries", "undiscriminating",
13382     "unpredictability", "unprofessionally", "unreasonableness",
13383     "unrepresentative", "unscrupulousness", "whatchamacallits"
13384   };
13385 
13386   const char* w_17[] = {
13387     "anachronistically", "authoritativeness", "circumnavigations",
13388     "comprehensibility", "comprehensiveness", "conscientiousness",
13389     "constitutionalism", "constitutionality", "contemporaneously",
13390     "contradistinction", "contraindications", "conversationalist",
13391     "counterinsurgency", "counteroffensives", "counterproductive",
13392     "counterrevolution", "deconstructionism", "deconstructionist",
13393     "disadvantageously", "disproportionated", "disproportionates",
13394     "disqualifications", "electrocardiogram", "environmentalists",
13395     "extraterrestrials", "horticulturalists", "inappropriateness",
13396     "incompatibilities", "inconsequentially", "inconsiderateness",
13397     "inconspicuousness", "indestructibility", "indistinguishable",
13398     "interdepartmental", "interdisciplinary", "intergovernmental",
13399     "internationalists", "interrelationship", "kaleidoscopically",
13400     "maladministration", "materialistically", "misappropriations",
13401     "misinterpretation", "mispronunciations", "misrepresentation",
13402     "misunderstandings", "multimillionaires", "neurotransmitters",
13403     "nondenominational", "opportunistically", "paraprofessionals",
13404     "philanthropically", "plenipotentiaries", "reinterpretations",
13405     "sanctimoniousness", "semiprofessionals", "socioeconomically",
13406     "straightforwardly", "superconductivity", "surreptitiousness",
13407     "telecommunication", "tintinnabulations", "transcendentalism",
13408     "transcendentalist", "ultraconservative", "uncomprehendingly",
13409     "videoconferencing"
13410   };
13411 
13412   const char* w_18[] = {
13413     "characteristically", "chlorofluorocarbon", "contradistinctions",
13414     "conversationalists", "counterrevolutions", "deconstructionists",
13415     "disenfranchisement", "disproportionately", "disproportionating",
13416     "electrocardiograms", "electrocardiograph", "hypersensitivities",
13417     "interchangeability", "intercommunication", "interrelationships",
13418     "misinterpretations", "misrepresentations", "oversimplification",
13419     "psychoanalytically", "telecommunications", "transcendentalists",
13420     "transubstantiation", "ultraconservatives", "unconstitutionally"
13421   };
13422 
13423   const char* w_19[] = {
13424     "chlorofluorocarbons", "counterintelligence", "electrocardiographs",
13425     "incomprehensibility", "individualistically", "interdenominational",
13426     "nonrepresentational", "oversimplifications", "straightforwardness"
13427   };
13428 
13429   const char* w_20[] = {
13430     "counterrevolutionary", "electroencephalogram", "uncharacteristically"
13431   };
13432 
13433   const char* w_21[] = {
13434     "electroencephalograms", "electroencephalograph"
13435   };
13436 
13437   const char* w_22[] = {
13438     "counterrevolutionaries", "electroencephalographs"
13439   };
13440 
13442   const unsigned int max_word_len = 22;
13443 
13445   const int n_words[] = {
13446     1, 26, 66, 633, 2443, 4763, 7585, 10380, 10974, 9724, 7704, 5313,
13447     3361, 1905, 849, 405, 162, 67, 24, 9, 3, 2, 2
13448   };
13449 
13451   const char** s_words[] = {
13452     &w_0[0], &w_1[0], &w_2[0], &w_3[0], &w_4[0], &w_5[0], &w_6[0],
13453     &w_7[0], &w_8[0], &w_9[0], &w_10[0], &w_11[0], &w_12[0], &w_13[0],
13454     &w_14[0], &w_15[0], &w_16[0], &w_17[0], &w_18[0], &w_19[0],
13455     &w_20[0], &w_21[0], &w_22[0]
13456   };
13457 
13458 }
13459 
13460 
13461 inline
13462 FileSizeOptions::FileSizeOptions(const char* s)
13463   : Gecode::SizeOptions(s),
13464     _file("file","file name of dictionary") {
13465   add(_file);
13466 }
13467 inline const char*
13468 FileSizeOptions::file(void) const {
13469   return _file.value();
13470 }
13471 
13472 
13473 inline
13474 Dictionary::Dictionary(void)
13475   : max_len(0), n_all_words(0), chunk(NULL) {
13476   for (int i=0; i<max_len; i++) {
13477     n_words[i]=0; s_words[i]=NULL;
13478   }
13479 }
13480 
13481 inline void
13482 Dictionary::init(const char* fn) {
13483   if (fn == NULL) {
13484     // Initialize from predefined dictionary
13485 
13486     // Set up information
13487     max_len = ::max_word_len;
13488     n_all_words = 0;
13489 
13490     size_t sz = 0;
13491     for (int l=0; l<=max_len; l++) {
13492       n_words[l]=::n_words[l];
13493       n_all_words += n_words[l];
13494       sz += n_words[l] * (l+1); // Leave room for terminating zero
13495     }
13496     chunk = static_cast<char*>(Gecode::heap.ralloc(sz));
13497 
13498     // Copy words
13499     char* c = chunk;
13500     for (int l=0; l<=max_len; l++) {
13501       s_words[l] = c;
13502       for (int i=0; i<n_words[l]; i++) {
13503         for (int j=0; j<l; j++)
13504           *c++ = ::s_words[l][i][j];
13505         *c++ = 0;
13506       }
13507     }
13508   } else {
13509     // Initialize from file
13510 
13511     // Set up information
13512     max_len = 0;
13513     n_all_words = 0;
13514 
13515     size_t sz = 0;
13516 
13517     {
13518       std::string s;
13519       std::ifstream f;
13520       f.open(fn);
13521 
13522       if (!f.is_open())
13523         throw Gecode::Exception("Dictionary",
13524                                 "Unable to open file");
13525       while (!f.eof()) {
13526         getline(f,s);
13527         if (s.size() >= static_cast<size_t>(limit_len))
13528           goto skip1;
13529         {
13530           int n = static_cast<int>(s.size());
13531           for (int i=0; i<n; i++)
13532             if (!isalpha(s[static_cast<unsigned int>(i)]) || 
13533                 !islower(s[static_cast<unsigned int>(i)]))
13534               goto skip1;
13535           // Found a legal word
13536           n_all_words++;
13537           n_words[n]++;
13538           sz += n+1;
13539           if (max_len < n)
13540             max_len = n;
13541         }
13542       skip1: ;
13543       }
13544 
13545       f.close();
13546     }
13547 
13548     chunk = static_cast<char*>(Gecode::heap.ralloc(sz));
13549 
13550     {
13551       // Initialize start information in chunk
13552       char* c = chunk;
13553       for (int l=0; l<=max_len; l++) {
13554         s_words[l] = c; c += (l+1)*n_words[l];
13555       }
13556     }
13557 
13558     {
13559       std::string s;
13560       std::ifstream f;
13561       f.open(fn);
13562 
13563       if (!f.is_open())
13564         throw Gecode::Exception("Dictionary",
13565                                 "Unable to open file");
13566       while (!f.eof()) {
13567         getline(f,s);
13568         if (s.size() >= static_cast<size_t>(limit_len))
13569           goto skip2;
13570         {
13571           int n = static_cast<int>(s.size());
13572           for (int i=0; i<n; i++)
13573             if (!isalpha(s[static_cast<unsigned int>(i)]) || 
13574                 !islower(s[static_cast<unsigned int>(i)]))
13575               goto skip2;
13576           // Found a legal word, copy it
13577           for (int i=0; i<n; i++)
13578             *s_words[n]++ = s[static_cast<unsigned int>(i)];
13579           *s_words[n]++ = 0;
13580         }
13581       skip2: ;
13582       }
13583 
13584       f.close();
13585     }
13586 
13587     {
13588       // Re-Initialize start information in chunk
13589       char* c = chunk;
13590       for (int l=0; l<=max_len; l++) {
13591         s_words[l] = c; c += (l+1)*n_words[l];
13592       }
13593     }
13594 
13595   }
13596 }
13597 
13598 inline int
13599 Dictionary::len(void) const {
13600   return max_len;
13601 }
13602 inline int
13603 Dictionary::words(void) const {
13604   return n_all_words;
13605 }
13606 inline int
13607 Dictionary::words(int l) const {
13608   return (l > max_len) ? 0 : n_words[l];
13609 }
13610 inline const char*
13611 Dictionary::word(int l, int i) const {
13612   return s_words[l]+i*(l+1);
13613 }
13614 template<class Char, class Traits>
13615 std::basic_ostream<Char,Traits>&
13616 Dictionary::print(std::basic_ostream<Char,Traits>& os) const {
13617   os << "Total number of words: " << n_all_words << std::endl
13618      << "Maximal length: " << max_len << std::endl;
13619   for (int i=1; i<=max_len; i++)
13620     os << "\t#words of length " << i << ": " << n_words[i] << std::endl;
13621   return os;
13622 }
13623 template<class Char, class Traits>
13624 inline std::basic_ostream<Char,Traits>&
13625 operator <<(std::basic_ostream<Char,Traits>& os, const Dictionary& d) {
13626   return d.print(os);
13627 }
13628 
13629 inline
13630 Dictionary::~Dictionary(void) {
13631   Gecode::heap.rfree(chunk);
13632 }
13633 
13634 
13635 // STATISTICS: example-ignore
13636 
13637 /*
13638  * The original SCOWL README:
13639  *
13640  * Spell Checking Oriented Word Lists (SCOWL)
13641  * Revision 6
13642  * August 10, 2004
13643  * by Kevin Atkinson
13644  *
13645  * The SCOWL is a collection of word lists split up in various sizes, and
13646  * other categories, intended to be suitable for use in spell checkers.
13647  * However, I am sure it will have numerous other uses as well.
13648  *
13649  * The latest version can be found at http://wordlist.sourceforge.net/
13650  *
13651  * The directory final/ contains the actual word lists broken up into
13652  * various sizes and categories.  The r/ directory contains Readmes from
13653  * the various sources used to create this package.
13654  *
13655  * The other directories contain the necessary information to recreate the
13656  * word lists from the raw data.  Unless you are interested in improving the
13657  * words lists you should not need to worry about what's here.  See the
13658  * section on recreating the words lists for more information on what's
13659  * there.
13660  *
13661  * Except for the special word lists the files follow the following
13662  * naming convention:
13663  *   <spelling category>-<classification>.<size>
13664  * Where the spelling category is one of
13665  *   english, american, british, british_z, canadian,
13666  *   variant_0, varaint_1, variant_2
13667  * Classification is one of
13668  *   abbreviations, contractions, proper-names, upper, words
13669  * And size is one of
13670  *   10, 20, 35 (small), 40, 50 (medium), 55, 60, 70 (large),
13671  *   80 (huge), 95 (insane)
13672  * The special word lists follow are in the following format:
13673  *   special-<description>.<size>
13674  * Where description is one of:
13675  *   roman-numerals, hacker
13676  *
13677  * When combining the words lists the "english" spelling category should
13678  * be used as well as one of "american", "british", "british_z" (british
13679  * with ize spelling), or "canadian".  Great care has been taken so that
13680  * that only one spelling for any particular word is included in the main
13681  * list.  When two variants were considered equal I randomly picked one
13682  * for inclusion in the main word list.  Unfortunately this means that my
13683  * choice in how to spell a word may not match your choice.  If this is
13684  * the case you can try including the "variant_0" spelling category which
13685  * includes most variants which are considered almost equal.  The
13686  * "variant_1" spelling category include variants which are also
13687  * generally considered acceptable, and "variant_2" contains variants
13688  * which are seldom used.
13689  *
13690  * The "abbreviation" category includes abbreviations and acronyms which
13691  * are not also normal words. The "contractions" category should be self
13692  * explanatory. The "upper" category includes upper case words and proper
13693  * names which are common enough to appear in a typical dictionary. The
13694  * "proper-names" category included all the additional uppercase words.
13695  * Final the "words" category contains all the normal English words.
13696  *
13697  * To give you an idea of what the words in the various sizes look like
13698  * here is a sample of 25 random words found only in that size:
13699  *
13700  * 10: began both buffer cause collection content documenting easiest
13701  *     equally examines expecting first firstly hence inclining
13702  *     irrelevant justified little logs necessarily ought sadly six
13703  *     thing visible
13704  *
13705  * 20: chunks commodity contempt contexts cruelty crush dictatorship
13706  *     disgusted dose elementary evolved frog god hordes notion overdraft
13707  *     overlong overlook phoning poster recordings sand skull substituted
13708  *     throughput
13709  *
13710  * 35: aliasing blackouts blowout bluntness corroborated derrick
13711  *     dredging elopements entrancing excising fellowship flagpole
13712  *     germination glimpse gondola guidebook madams minimalism minnows
13713  *     partisans petitions shelling swarmed throng welding
13714  *
13715  * 40: altercation blender castigation chump coffeehouse determiners
13716  *     doggoning exhibitor finders flophouse gazebo lumbering masochism
13717  *     mopeds poetically pubic refinance reggae scragglier softhearted
13718  *     stubbornness teargassed township underclassman whoosh
13719  *
13720  * 50: accumulative adulterant allegorically amorousness astrophysics
13721  *     camphor coif dickey elusiveness enviousness fakers fetishistic
13722  *     flippantly headsets liefs midyears myna pacification persiflage
13723  *     phosphoric pinhole sappy seres unrealistically unworldly
13724  *
13725  * 55: becquerel brickie centralist cine conveyancing courgette
13726  *     disarmingly garçon gobstopper infilling insipidity
13727  *     internationalist kabuki lyrebirds obscurantism rejigged
13728  *     revisionist satsuma slapper sozzled sublieutenants teletext vino
13729  *     wellness wracking
13730  *
13731  * 60: absorber acceptableness adventurousness antifascists arrhythmia
13732  *     audiology cartage cruses fontanel forelimbs granter hairlike
13733  *     installers jugglery lappets libbers mandrels micrometeorite
13734  *     mineshaft reconsecrates saccharides smellable spavined sud timbrel
13735  *
13736  * 70: atomisms benedict carven coxa cyanite detraining diazonium
13737  *     dogberry dogmatics entresol fatherlessnesses firestone imprecator
13738  *     laterality legitimisms maxwell microfloppies nonteaching pelerine
13739  *     pentane pestiferousness piscator profascist tusche twirp
13740  *
13741  * 80: cotransfers embrangled forkednesses giftwrapped globosity hatpegs
13742  *     hepsters hermitess interspecific inurbanities lamiae
13743  *     literaehumaniores literatures masulas misbegun plook prerupt
13744  *     quaalude rosanilin sabbatism scowder subreptive thumbstalls
13745  *     understrata yakows
13746  *
13747  * 95: anatropal anientise bakshi brouzes corsie daimiote dhaw dislikened
13748  *     ectoretina fortuitisms guardeen hyperlithuria nonanachronistic
13749  *     overacceleration pamphletic parma phytolith starvedly
13750  *     trophoplasmic ulorrhagia undared undertide unplunderously
13751  *     unworkmanly vasoepididymostomy
13752  *
13753  * And here is a rough count on the number of words in the "english"
13754  * spelling category for each size:
13755  *
13756  *   Size  Words   Proper Names  Running Total
13757  *
13758  *    10    5,000                    5,000
13759  *    20    8,700                   14,000
13760  *    35   34,500         200       48,000
13761  *    40    6,000         500       55,000
13762  *    50   23,200      17,200       95,000
13763  *    55    7,500                  103,000
13764  *    60   16,000      12,800      132,000
13765  *    70   45,100      34,300      211,000
13766  *    80  137,000      30,400      379,000
13767  *    95  198,000      51,800      628,000
13768  *
13769  * (The "Words" column does not include the proper name count.)
13770  *
13771  * Size 35 is the recommended small size, 50 the medium and 70 the large.
13772  * Sizes 70 and below contain words found in most dictionaries while the
13773  * 80 size contains all the strange and unusual words people like to use
13774  * in word games such as Scrabble (TM).  While a lot of the the words in
13775  * the 80 size are not used very often, they are all generally considered
13776  * valid words in the English language.  The 95 contains just about every
13777  * English word in existence and then some.  Many of the words at the 95
13778  * level will probally not be considered valid english words by most
13779  * people.  I don't recommend anyone use levels above 70 for spell
13780  * checking as they contain rarely used words which can hide misspellings
13781  * of similar more commonly used words.  For example the word "ort" can
13782  * hide a common typo of "or".  No one should need to use a size larger
13783  * than 80, the 95 size is labeled insane for a reason.
13784  *
13785  * Accents are present on certain words such as café in iso8859-1 format.
13786  *
13787  * CHANGES:
13788  *
13789  * From Revision 5 to 6 (August 10, 2004)
13790  *
13791  *   Updated to version 4.0 of the 12dicts package.
13792  *
13793  *   Included the 3esl, 2of4brif, and 5desk list from the new 12dicts
13794  *   package.  The 3esl was included in the 40 size, the 2of4brif in the
13795  *   55 size and the 5desk in the 70 size.
13796  *
13797  *   Removed the Ispell word list as it was a source of too many errors.
13798  *   This eliminated the 65 size.
13799  *
13800  *   Removed clause 4 from the Ispell copyright with permission of Geoff
13801  *   Kuenning.
13802  *
13803  *   Updated to version 4.1 of VarCon.
13804  *
13805  *   Added the "british_z" spelling category which it British using the
13806  *   "ize" spelling.
13807  *
13808  * From Revision 4a to 5 (January 3, 2002)
13809  *
13810  *   Added variants that were not really spelling variants (such as
13811  *   forwards) back into the main list.
13812  *
13813  *   Fixed a bug which caused variants of words to incorrectly appear in
13814  *   the non-variant lists.
13815  *
13816  *   Moved rarly used inflections of a word into higher number lists.
13817  *
13818  *   Added other inflections of a words based on the following criteria
13819  *     If the word is in the base form: only include that word.
13820  *     If the word is in a plural form: include the base word and the plural
13821  *     If the word is a verb form (other than plural):  include all verb forms
13822  *     If the word is an ad* form: include all ad* forms
13823  *     If the word is in a possessive form: also include the non-possessive
13824  *
13825  *   Updated to the latest version of many of the source dictionaries.
13826  *
13827  *   Removed the DEC Word List due to the questionable licence and
13828  *   because removing it will not seriously decrese the quality of SCOWL
13829  *   (there are a few less proper names).
13830  *
13831  * From Revision 4 to 4a (April 4, 2001)
13832  *
13833  *   Reran the scripts on a never version of AGID (3a) which fixes a bug
13834  *   which caused some common words to be improperly marked as variants.
13835  *
13836  * From Revision 3 to 4 (January 28, 2001)
13837  *
13838  *   Split the variant "spelling category" up into 3 different levels.
13839  *
13840  *   Added words in the Ispell word list at the 65 level.
13841  *
13842  *   Other changes due to using more recent versions of various sources
13843  *   included a more accurete version of AGID thanks to the word of
13844  *   Alan Beale
13845  *
13846  * From Revision 2 to 3 (August 18, 2000)
13847  *
13848  *   Renamed special-unix-terms to special-hacker and added a large
13849  *   number of communly used words within the hacker (not cracker)
13850  *   community.
13851  *
13852  *   Added a couple more signature words including "newbie".
13853  *
13854  *   Minor changes due to changes in the inflection database.
13855  *
13856  * From Revision 1 to 2 (August 5, 2000)
13857  *
13858  *   Moved the male and female name lists from the mwords package and the
13859  *   DEC name lists form the 50 level to the 60 level and moved Alan's
13860  *   name list from the 60 level to the 50 level.  Also added the top
13861  *   1000 male, female, and last names from the 1990 Census report to the
13862  *   50 level.  This reduced the number of names in the 50 level from
13863  *   17,000 to 7,000.
13864  *
13865  *   Added a large number of Uppercase words to the 50 level.
13866  *
13867  *   Properly accented the possessive form of some words.
13868  *
13869  *   Minor other changes due to changes in my raw data files which have
13870  *   not been released yet.  Email if you are interested in these files.
13871  *
13872  * COPYRIGHT, SOURCES, and CREDITS:
13873  *
13874  * The collective work is Copyright 2000-2004 by Kevin Atkinson as well
13875  * as any of the copyrights mentioned below:
13876  *
13877  *   Copyright 2000-2004 by Kevin Atkinson
13878  *
13879  *   Permission to use, copy, modify, distribute and sell these word
13880  *   lists, the associated scripts, the output created from the scripts,
13881  *   and its documentation for any purpose is hereby granted without fee,
13882  *   provided that the above copyright notice appears in all copies and
13883  *   that both that copyright notice and this permission notice appear in
13884  *   supporting documentation. Kevin Atkinson makes no representations
13885  *   about the suitability of this array for any purpose. It is provided
13886  *   "as is" without express or implied warranty.
13887  *
13888  * Alan Beale <biljir@pobox.com> also deserves special credit as he has,
13889  * in addition to providing the 12Dicts package and being a major
13890  * contributor to the ENABLE word list, given me an incredible amount of
13891  * feedback and created a number of special lists (those found in the
13892  * Supplement) in order to help improve the overall quality of SCOWL.
13893  *
13894  * The 10 level includes the 1000 most common English words (according to
13895  * the Moby (TM) Words II [MWords] package), a subset of the 1000 most
13896  * common words on the Internet (again, according to Moby Words II), and
13897  * frequently class 16 from Brian Kelk's "UK English Wordlist
13898  * with Frequency Classification".
13899  *
13900  * The MWords package was explicitly placed in the public domain:
13901  *
13902  *     The Moby lexicon project is complete and has
13903  *     been place into the public domain. Use, sell,
13904  *     rework, excerpt and use in any way on any platform.
13905  *
13906  *     Placing this material on internal or public servers is
13907  *     also encouraged. The compiler is not aware of any
13908  *     export restrictions so freely distribute world-wide.
13909  *
13910  *     You can verify the public domain status by contacting
13911  *
13912  *     Grady Ward
13913  *     3449 Martha Ct.
13914  *     Arcata, CA  95521-4884
13915  *
13916  *     grady@netcom.com
13917  *     grady@northcoast.com
13918  *
13919  * The "UK English Wordlist With Frequency Classification" is also in the
13920  * Public Domain:
13921  *
13922  *   Date: Sat, 08 Jul 2000 20:27:21 +0100
13923  *   From: Brian Kelk <Brian.Kelk@cl.cam.ac.uk>
13924  *
13925  *   > I was wondering what the copyright status of your "UK English
13926  *   > Wordlist With Frequency Classification" word list as it seems to
13927  *   > be lacking any copyright notice.
13928  *
13929  *   There were many many sources in total, but any text marked
13930  *   "copyright" was avoided. Locally-written documentation was one
13931  *   source. An earlier version of the list resided in a filespace called
13932  *   PUBLIC on the University mainframe, because it was considered public
13933  *   domain.
13934  *
13935  *   Date: Tue, 11 Jul 2000 19:31:34 +0100
13936  *
13937  *   > So are you saying your word list is also in the public domain?
13938  *
13939  *   That is the intention.
13940  *
13941  * The 20 level includes frequency classes 7-15 from Brian's word list.
13942  *
13943  * The 35 level includes frequency classes 2-6 and words appearing in at
13944  * least 11 of 12 dictionaries as indicated in the 12Dicts package.  All
13945  * words from the 12Dicts package have had likely inflections added via
13946  * my inflection database.
13947  *
13948  * The 12Dicts package and Supplement is in the Public Domain.
13949  *
13950  * The WordNet database, which was used in the creation of the
13951  * Inflections database, is under the following copyright:
13952  *
13953  *   This software and database is being provided to you, the LICENSEE,
13954  *   by Princeton University under the following license.  By obtaining,
13955  *   using and/or copying this software and database, you agree that you
13956  *   have read, understood, and will comply with these terms and
13957  *   conditions.:
13958  *
13959  *   Permission to use, copy, modify and distribute this software and
13960  *   database and its documentation for any purpose and without fee or
13961  *   royalty is hereby granted, provided that you agree to comply with
13962  *   the following copyright notice and statements, including the
13963  *   disclaimer, and that the same appear on ALL copies of the software,
13964  *   database and documentation, including modifications that you make
13965  *   for internal use or for distribution.
13966  *
13967  *   WordNet 1.6 Copyright 1997 by Princeton University.  All rights
13968  *   reserved.
13969  *
13970  *   THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON
13971  *   UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
13972  *   IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON
13973  *   UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-
13974  *   ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE
13975  *   LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY
13976  *   THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
13977  *
13978  *   The name of Princeton University or Princeton may not be used in
13979  *   advertising or publicity pertaining to distribution of the software
13980  *   and/or database.  Title to copyright in this software, database and
13981  *   any associated documentation shall at all times remain with
13982  *   Princeton University and LICENSEE agrees to preserve same.
13983  *
13984  * The 40 level includes words from Alan's 3esl list found in version 4.0
13985  * of his 12dicts package.  Like his other stuff the 3esl list is also in the
13986  * public domain.
13987  *
13988  * The 50 level includes Brian's frequency class 1, words words appearing
13989  * in at least 5 of 12 of the dictionaries as indicated in the 12Dicts
13990  * package, and uppercase words in at least 4 of the previous 12
13991  * dictionaries.  A decent number of proper names is also included: The
13992  * top 1000 male, female, and Last names from the 1990 Census report; a
13993  * list of names sent to me by Alan Beale; and a few names that I added
13994  * myself.  Finally a small list of abbreviations not commonly found in
13995  * other word lists is included.
13996  *
13997  * The name files form the Census report is a government document which I
13998  * don't think can be copyrighted.
13999  *
14000  * The file special-jargon.50 uses common.lst and word.lst from the
14001  * "Unofficial Jargon File Word Lists" which is derived from "The Jargon
14002  * File".  All of which is in the Public Domain.  This file also contain
14003  * a few extra UNIX terms which are found in the file "unix-terms" in the
14004  * special/ directory.
14005  *
14006  * The 55 level includes words from Alan's 2of4brif list found in version
14007  * 4.0 of his 12dicts package.  Like his other stuff the 2of4brif is also
14008  * in the public domain.
14009  *
14010  * The 60 level includes Brian's frequency class 0 and all words
14011  * appearing in at least 2 of the 12 dictionaries as indicated by the
14012  * 12Dicts package.  A large number of names are also included: The 4,946
14013  * female names and the 3,897 male names from the MWords package.
14014  *
14015  * The 70 level includes the 74,550 common dictionary words and the
14016  * 21,986 names list from the MWords package The common dictionary words,
14017  * like those from the 12Dicts package, have had all likely inflections
14018  * added.  The 70 level also included the 5desk list from version 4.0 of
14019  * the 12Dics package which is the public domain
14020  *
14021  * The 80 level includes the ENABLE word list, all the lists in the
14022  * ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics
14023  * Dictionary" (UKACD), the list of signature words in from YAWL package,
14024  * and the 10,196 places list from the MWords package.
14025  *
14026  * The ENABLE package, mainted by M\Cooper <thegrendel@theriver.com>,
14027  * is in the Public Domain:
14028  *
14029  *   The ENABLE master word list, WORD.LST, is herewith formally released
14030  *   into the Public Domain. Anyone is free to use it or distribute it in
14031  *   any manner they see fit. No fee or registration is required for its
14032  *   use nor are "contributions" solicited (if you feel you absolutely
14033  *   must contribute something for your own peace of mind, the authors of
14034  *   the ENABLE list ask that you make a donation on their behalf to your
14035  *   favorite charity). This word list is our gift to the Scrabble
14036  *   community, as an alternate to "official" word lists. Game designers
14037  *   may feel free to incorporate the WORD.LST into their games. Please
14038  *   mention the source and credit us as originators of the list. Note
14039  *   that if you, as a game designer, use the WORD.LST in your product,
14040  *   you may still copyright and protect your product, but you may *not*
14041  *   legally copyright or in any way restrict redistribution of the
14042  *   WORD.LST portion of your product. This *may* under law restrict your
14043  *   rights to restrict your users' rights, but that is only fair.
14044  *
14045  * UKACD, by J Ross Beresford <ross@bryson.demon.co.uk>, is under the
14046  * following copyright:
14047  *
14048  *   Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
14049  *
14050  *   The following restriction is placed on the use of this publication:
14051  *   if The UK Advanced Cryptics Dictionary is used in a software package
14052  *   or redistributed in any form, the copyright notice must be
14053  *   prominently displayed and the text of this document must be included
14054  *   verbatim.
14055  *
14056  *   There are no other restrictions: I would like to see the list
14057  *   distributed as widely as possible.
14058  *
14059  * The 95 level includes the 354,984 single words and 256,772 compound
14060  * words from the MWords package, ABLE.LST from the ENABLE Supplement,
14061  * and some additional words found in my part-of-speech database that
14062  * were not found anywhere else.
14063  *
14064  * Accent information was taken from UKACD.
14065  *
14066  * My VARCON package was used to create the American, British, and
14067  * Canadian word list.
14068  *
14069  * Since the original word lists used used in the VARCON package came
14070  * from the Ispell distribution they are under the Ispell copyright:
14071  *
14072  *   Copyright 1993, Geoff Kuenning, Granada Hills, CA
14073  *   All rights reserved.
14074  *
14075  *   Redistribution and use in source and binary forms, with or without
14076  *   modification, are permitted provided that the following conditions
14077  *   are met:
14078  *
14079  *   1. Redistributions of source code must retain the above copyright
14080  *      notice, this list of conditions and the following disclaimer.
14081  *   2. Redistributions in binary form must reproduce the above copyright
14082  *      notice, this list of conditions and the following disclaimer in the
14083  *      documentation and/or other materials provided with the distribution.
14084  *   3. All modifications to the source code must be clearly marked as
14085  *      such.  Binary redistributions based on modified source code
14086  *      must be clearly marked as modified versions in the documentation
14087  *      and/or other materials provided with the distribution.
14088  *   (clause 4 removed with permission from Geoff Kuenning)
14089  *   5. The name of Geoff Kuenning may not be used to endorse or promote
14090  *      products derived from this software without specific prior
14091  *      written permission.
14092  *
14093  *   THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS
14094  *   IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
14095  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14096  *   FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GEOFF
14097  *   KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
14098  *   INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
14099  *   BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
14100  *   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
14101  *   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
14102  *   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
14103  *   ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
14104  *   POSSIBILITY OF SUCH DAMAGE.
14105  *
14106  * The variant word lists were created from a list of variants found in
14107  * the 12dicts supplement package as well as a list of variants I created
14108  * myself.
14109  *
14110  * The Readmes for the various packages used can be found in the
14111  * appropriate directory under the r/ directory.
14112  *
14113  * FUTURE PLANS:
14114  *
14115  * There is a very nice frequency analyse of the BNC corpus done by
14116  * Adam Kilgarriff.  Unlike Brain's word lists the BNC lists include part
14117  * of speech information.  I plan on somehow using these lists as Adam
14118  * Kilgarriff has given me the OK to use it in SCOWL.  These lists will
14119  * greatly reduce the problem of inflected forms of a word appearing at
14120  * different levels due to the part-of-speech information.
14121  *
14122  * I also plan on perhaps putting the data in a database and use SQL
14123  * queries to create the wordlists instead of tons of "sort"s, "comm"s,
14124  * and Perl scripts.
14125  *
14126  * RECREATING THE WORD LISTS:
14127  *
14128  * In order to recreate the word lists you need a modern version of
14129  * Perl, bash, the traditional set of shell utilities, a system that
14130  * supports symbolic links, and quite possibly GNU Make.  Once you
14131  * have downloaded all the necessary raw data in the r/ directory you
14132  * should be able to type "rm -r final && mkdir final && make all" and
14133  * the word lists in the final/ directory should be recreated.  If you
14134  * have any problems fell free to contact me; however, unless you are
14135  * interested in improving the scripts used, I will likely ignore you
14136  * as there should be little need for anyone not interested in
14137  * improving the word list to do so.
14138  *
14139  * The src/ directory contains the numerous scripts used in the creation
14140  * of the final product.
14141  *
14142  * The r/ directory contains the raw data used to
14143  * create the final product.  In order for the scripts to work various
14144  * word lists and databases need to be created and put into this
14145  * directory.  See the README file in the r/ directory for more
14146  * information.
14147  *
14148  * The l/ directory contains symbolic links used by the actual scripts.
14149  *
14150  * Finally, the working/ directory is where all the intermittent files go
14151  * that are not specific to one source.
14152  *
14153  */