"Fossies" - the Fresh Open Source Software Archive

Member "passwdqc-2.0.3/wordset_4k.c" (23 Jun 2023, 67961 Bytes) of package /linux/privat/passwdqc-2.0.3.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "wordset_4k.c" see the Fossies "Dox" file reference documentation and the latest Fossies "Diffs" side-by-side code changes report: 2.0.2_vs_2.0.3.

    1 /*
    2  * English words for generation of easy to memorize random passphrases.
    3  * This list comes from the MakePass passphrase generator developed by
    4  * Dianelos Georgoudis <dianelos at tecapro.com>, which was announced on
    5  * sci.crypt on 1997/10/24.  Here's a relevant excerpt from that posting:
    6  *
    7  * > The 4096 words in the word list were chosen according to the following
    8  * > criteria:
    9  * >    - each word must contain between 3 and 6 characters
   10  * >    - each word must be a common English word
   11  * >    - each word should be clearly different from each other
   12  * >      word, orthographically or semantically
   13  * >
   14  * > The MakePass word list has been placed in the public domain
   15  *
   16  * At least two other sci.crypt postings by Dianelos Georgoudis also state
   17  * that the word list is in the public domain, and so did the web page at:
   18  *
   19  * https://web.archive.org/web/%2a/http://www.tecapro.com/makepass.html
   20  *
   21  * which existed until 2006 and is available from the Wayback Machine as of
   22  * this writing (March 2010).  Specifically, the web page said:
   23  *
   24  * > The MakePass word list has been placed in the public domain.  To download
   25  * > a copy click here.  You can use the MakePass word list for many other
   26  * > purposes.
   27  *
   28  * "To download a copy click here" was a link to free/makepass.lst, which is
   29  * currently available via the Wayback Machine:
   30  *
   31  * https://web.archive.org/web/%2a/http://www.tecapro.com/free/makepass.lst
   32  *
   33  * Further lists of common English words were appended to the end to allow for
   34  * subsequent removal of "inappropriate" words from the initial list.
   35  *
   36  * Even though the original description of the list stated that "each word
   37  * must contain between 3 and 6 characters", there were two 7-character words.
   38  * These have been removed.
   39  *
   40  * Many "inappropriate" words have then been moved to near the end of list, so
   41  * that they're not used for generated passphrases.
   42  *
   43  * The code in passwdqc_check.c and passwdqc_random.c makes the following
   44  * assumptions about this list:
   45  *
   46  * - the first 4096 words are for random passphrase generation, and there are
   47  * at least this many words present;
   48  * - the words are of up to 6 characters long;
   49  * - although some words may contain capital letters, no two words differ by
   50  * the case of characters alone (e.g., converting the list to all-lowercase
   51  * would yield a list of as many unique words);
   52  * - the words contain alphabetical characters only;
   53  * - if an entire word on this list matches the initial substring of other
   54  * word(s) on the list, it is likely placed immediately before those words
   55  * (e.g., "bake", "baker", "bakery"), which speeds up the "word-based" check.
   56  *
   57  * Additionally, the default minimum passphrase length of 11 characters
   58  * specified in passwdqc_parse.c has been chosen such that a passphrase
   59  * consisting of any three words from this list with two separator
   60  * characters will pass the minimum length check.  In other words, this
   61  * default assumes that no word is shorter than 3 characters.
   62  */
   63 
   64 #include "wordset_4k.h"
   65 
   66 const char _passwdqc_wordset_4k[][WORDSET_4K_LENGTH_MAX] = {
   67     "Adam",
   68     "Alaska",
   69     "Alice",
   70     "Amazon",
   71     "Andrew",
   72     "Angola",
   73     "Antony",
   74     "April",
   75     "Arctic",
   76     "Athens",
   77     "Austin",
   78     "Baltic",
   79     "Berlin",
   80     "Bombay",
   81     "Bonn",
   82     "Boston",
   83     "Brazil",
   84     "Burma",
   85     "Cairo",
   86     "Canada",
   87     "Carl",
   88     "Carol",
   89     "Chile",
   90     "China",
   91     "Congo",
   92     "Cuba",
   93     "Cyprus",
   94     "Czech",
   95     "Dallas",
   96     "David",
   97     "Delhi",
   98     "Derby",
   99     "Diana",
  100     "Dublin",
  101     "East",
  102     "Eden",
  103     "Edward",
  104     "Eric",
  105     "Essex",
  106     "Europe",
  107     "Eve",
  108     "France",
  109     "Friday",
  110     "Gemini",
  111     "Geneva",
  112     "George",
  113     "Gloria",
  114     "Gothic",
  115     "Greece",
  116     "Hague",
  117     "Haiti",
  118     "Hanoi",
  119     "Harry",
  120     "Havana",
  121     "Hawaii",
  122     "Henry",
  123     "Hermes",
  124     "Idaho",
  125     "Inca",
  126     "India",
  127     "Iowa",
  128     "Iran",
  129     "Iraq",
  130     "Isaac",
  131     "Isabel",
  132     "Israel",
  133     "Italy",
  134     "Ivan",
  135     "Jack",
  136     "Jacob",
  137     "James",
  138     "Japan",
  139     "Java",
  140     "Jersey",
  141     "Jim",
  142     "John",
  143     "Jordan",
  144     "Joseph",
  145     "Judy",
  146     "July",
  147     "June",
  148     "Kansas",
  149     "Karl",
  150     "Kenya",
  151     "Korea",
  152     "Kuwait",
  153     "Laos",
  154     "Latin",
  155     "Leo",
  156     "Libya",
  157     "Lima",
  158     "Lisbon",
  159     "Liz",
  160     "London",
  161     "Louvre",
  162     "Lucy",
  163     "Luther",
  164     "Madrid",
  165     "Malta",
  166     "Maria",
  167     "Mars",
  168     "Mary",
  169     "Maya",
  170     "Mecca",
  171     "Mexico",
  172     "Miami",
  173     "Mickey",
  174     "Milan",
  175     "Monaco",
  176     "Monday",
  177     "Moscow",
  178     "Munich",
  179     "Naples",
  180     "Nepal",
  181     "Newark",
  182     "Nile",
  183     "North",
  184     "Norway",
  185     "Ohio",
  186     "Oscar",
  187     "Oslo",
  188     "Oxford",
  189     "Panama",
  190     "Paris",
  191     "Paul",
  192     "Peking",
  193     "Peru",
  194     "Peter",
  195     "Philip",
  196     "Poland",
  197     "Prague",
  198     "Quebec",
  199     "Rex",
  200     "Rhine",
  201     "Robert",
  202     "Roman",
  203     "Rome",
  204     "Rosa",
  205     "Russia",
  206     "Sahara",
  207     "Sam",
  208     "Saturn",
  209     "Seoul",
  210     "Somali",
  211     "Spain",
  212     "Sudan",
  213     "Suez",
  214     "Sunday",
  215     "Sweden",
  216     "Sydney",
  217     "Syria",
  218     "Taiwan",
  219     "Tarzan",
  220     "Taurus",
  221     "Tehran",
  222     "Teresa",
  223     "Texas",
  224     "Thomas",
  225     "Tibet",
  226     "Tokyo",
  227     "Tom",
  228     "Turkey",
  229     "Uganda",
  230     "Venice",
  231     "Venus",
  232     "Vienna",
  233     "Viking",
  234     "Virgo",
  235     "Warsaw",
  236     "West",
  237     "Yale",
  238     "Yemen",
  239     "York",
  240     "Zaire",
  241     "Zurich",
  242     "aback",
  243     "abbey",
  244     "abbot",
  245     "abide",
  246     "ablaze",
  247     "able",
  248     "aboard",
  249     "abode",
  250     "abound",
  251     "about",
  252     "above",
  253     "abroad",
  254     "abrupt",
  255     "absent",
  256     "absorb",
  257     "absurd",
  258     "abuse",
  259     "accent",
  260     "accept",
  261     "access",
  262     "accord",
  263     "accuse",
  264     "ace",
  265     "ache",
  266     "aching",
  267     "acid",
  268     "acidic",
  269     "acorn",
  270     "acre",
  271     "across",
  272     "act",
  273     "action",
  274     "active",
  275     "actor",
  276     "actual",
  277     "acute",
  278     "adapt",
  279     "add",
  280     "added",
  281     "addict",
  282     "adept",
  283     "adhere",
  284     "adjust",
  285     "admire",
  286     "admit",
  287     "adobe",
  288     "adopt",
  289     "adrift",
  290     "adult",
  291     "adverb",
  292     "advert",
  293     "aerial",
  294     "afar",
  295     "affair",
  296     "affect",
  297     "afford",
  298     "afield",
  299     "afloat",
  300     "afraid",
  301     "afresh",
  302     "after",
  303     "again",
  304     "age",
  305     "agency",
  306     "agenda",
  307     "agent",
  308     "aghast",
  309     "agile",
  310     "ago",
  311     "agony",
  312     "agree",
  313     "agreed",
  314     "ahead",
  315     "aid",
  316     "aide",
  317     "aim",
  318     "air",
  319     "airman",
  320     "airy",
  321     "akin",
  322     "alarm",
  323     "albeit",
  324     "album",
  325     "alert",
  326     "alibi",
  327     "alien",
  328     "alight",
  329     "align",
  330     "alike",
  331     "alive",
  332     "alkali",
  333     "all",
  334     "alley",
  335     "allied",
  336     "allow",
  337     "alloy",
  338     "ally",
  339     "almond",
  340     "almost",
  341     "aloft",
  342     "alone",
  343     "along",
  344     "aloof",
  345     "aloud",
  346     "alpha",
  347     "alpine",
  348     "also",
  349     "altar",
  350     "alter",
  351     "always",
  352     "amaze",
  353     "amber",
  354     "ambush",
  355     "amen",
  356     "amend",
  357     "amid",
  358     "amidst",
  359     "amiss",
  360     "among",
  361     "amount",
  362     "ample",
  363     "amuse",
  364     "anchor",
  365     "and",
  366     "anew",
  367     "angel",
  368     "anger",
  369     "angle",
  370     "angry",
  371     "animal",
  372     "ankle",
  373     "annoy",
  374     "annual",
  375     "answer",
  376     "anthem",
  377     "anti",
  378     "any",
  379     "anyhow",
  380     "anyway",
  381     "apart",
  382     "apathy",
  383     "apex",
  384     "apiece",
  385     "appeal",
  386     "appear",
  387     "apple",
  388     "apply",
  389     "apron",
  390     "arcade",
  391     "arcane",
  392     "arch",
  393     "ardent",
  394     "are",
  395     "area",
  396     "argue",
  397     "arid",
  398     "arise",
  399     "arm",
  400     "armful",
  401     "armpit",
  402     "army",
  403     "aroma",
  404     "around",
  405     "array",
  406     "arrest",
  407     "arrive",
  408     "arrow",
  409     "arson",
  410     "art",
  411     "artery",
  412     "artful",
  413     "artist",
  414     "ascent",
  415     "ashen",
  416     "ashore",
  417     "aside",
  418     "ask",
  419     "asleep",
  420     "aspect",
  421     "assay",
  422     "assent",
  423     "assert",
  424     "assess",
  425     "asset",
  426     "assign",
  427     "assist",
  428     "assume",
  429     "assure",
  430     "asthma",
  431     "astute",
  432     "asylum",
  433     "ate",
  434     "atlas",
  435     "atom",
  436     "atomic",
  437     "attach",
  438     "attack",
  439     "attain",
  440     "attend",
  441     "attic",
  442     "auburn",
  443     "audio",
  444     "audit",
  445     "august",
  446     "aunt",
  447     "auntie",
  448     "aura",
  449     "author",
  450     "auto",
  451     "autumn",
  452     "avail",
  453     "avenge",
  454     "avenue",
  455     "avert",
  456     "avid",
  457     "avoid",
  458     "await",
  459     "awake",
  460     "awaken",
  461     "award",
  462     "aware",
  463     "awash",
  464     "away",
  465     "awful",
  466     "awhile",
  467     "axes",
  468     "axiom",
  469     "axis",
  470     "axle",
  471     "aye",
  472     "baby",
  473     "back",
  474     "backup",
  475     "bacon",
  476     "bad",
  477     "badge",
  478     "badly",
  479     "bag",
  480     "baggy",
  481     "bail",
  482     "bait",
  483     "bake",
  484     "baker",
  485     "bakery",
  486     "bald",
  487     "ball",
  488     "ballad",
  489     "ballet",
  490     "ballot",
  491     "bamboo",
  492     "ban",
  493     "banal",
  494     "banana",
  495     "band",
  496     "bank",
  497     "bar",
  498     "barber",
  499     "bare",
  500     "barely",
  501     "barge",
  502     "bark",
  503     "barley",
  504     "barn",
  505     "baron",
  506     "barrel",
  507     "barren",
  508     "basalt",
  509     "base",
  510     "basic",
  511     "basil",
  512     "basin",
  513     "basis",
  514     "basket",
  515     "bass",
  516     "bat",
  517     "batch",
  518     "bath",
  519     "baton",
  520     "battle",
  521     "bay",
  522     "beach",
  523     "beacon",
  524     "beak",
  525     "beam",
  526     "bean",
  527     "bear",
  528     "beard",
  529     "beast",
  530     "beat",
  531     "beauty",
  532     "become",
  533     "bed",
  534     "beech",
  535     "beef",
  536     "beefy",
  537     "beep",
  538     "beer",
  539     "beet",
  540     "beetle",
  541     "before",
  542     "beggar",
  543     "begin",
  544     "behalf",
  545     "behave",
  546     "behind",
  547     "beige",
  548     "being",
  549     "belief",
  550     "bell",
  551     "belly",
  552     "belong",
  553     "below",
  554     "belt",
  555     "bench",
  556     "bend",
  557     "benign",
  558     "bent",
  559     "berry",
  560     "berth",
  561     "beset",
  562     "beside",
  563     "best",
  564     "bestow",
  565     "bet",
  566     "beta",
  567     "betray",
  568     "better",
  569     "beware",
  570     "beyond",
  571     "bias",
  572     "biceps",
  573     "bicker",
  574     "bid",
  575     "big",
  576     "bigger",
  577     "bike",
  578     "bile",
  579     "bill",
  580     "binary",
  581     "bind",
  582     "biopsy",
  583     "birch",
  584     "bird",
  585     "birdie",
  586     "birth",
  587     "bishop",
  588     "bit",
  589     "bite",
  590     "bitter",
  591     "blade",
  592     "blame",
  593     "bland",
  594     "blast",
  595     "blaze",
  596     "bleak",
  597     "blend",
  598     "bless",
  599     "blind",
  600     "blink",
  601     "blip",
  602     "bliss",
  603     "blitz",
  604     "block",
  605     "blond",
  606     "blood",
  607     "bloody",
  608     "bloom",
  609     "blot",
  610     "blouse",
  611     "blue",
  612     "bluff",
  613     "blunt",
  614     "blur",
  615     "blush",
  616     "boar",
  617     "board",
  618     "boast",
  619     "boat",
  620     "bodily",
  621     "body",
  622     "bogus",
  623     "boil",
  624     "bold",
  625     "bolt",
  626     "bomb",
  627     "bond",
  628     "bone",
  629     "bonnet",
  630     "bonus",
  631     "bony",
  632     "book",
  633     "boom",
  634     "boost",
  635     "boot",
  636     "booth",
  637     "border",
  638     "bore",
  639     "borrow",
  640     "bosom",
  641     "boss",
  642     "both",
  643     "bother",
  644     "bottle",
  645     "bottom",
  646     "bought",
  647     "bounce",
  648     "bound",
  649     "bounty",
  650     "bout",
  651     "bovine",
  652     "bow",
  653     "bowel",
  654     "bowl",
  655     "box",
  656     "boy",
  657     "boyish",
  658     "brace",
  659     "brain",
  660     "brainy",
  661     "brake",
  662     "bran",
  663     "branch",
  664     "brand",
  665     "brandy",
  666     "brass",
  667     "brave",
  668     "bravo",
  669     "breach",
  670     "bread",
  671     "break",
  672     "breath",
  673     "bred",
  674     "breed",
  675     "breeze",
  676     "brew",
  677     "brick",
  678     "bride",
  679     "bridge",
  680     "brief",
  681     "bright",
  682     "brim",
  683     "brine",
  684     "bring",
  685     "brink",
  686     "brisk",
  687     "broad",
  688     "broke",
  689     "broken",
  690     "bronze",
  691     "brook",
  692     "broom",
  693     "bruise",
  694     "brush",
  695     "brutal",
  696     "brute",
  697     "bubble",
  698     "buck",
  699     "bucket",
  700     "buckle",
  701     "budget",
  702     "buffet",
  703     "buggy",
  704     "build",
  705     "bulb",
  706     "bulge",
  707     "bulk",
  708     "bulky",
  709     "bull",
  710     "bullet",
  711     "bully",
  712     "bump",
  713     "bumpy",
  714     "bunch",
  715     "bundle",
  716     "bunk",
  717     "bunny",
  718     "burden",
  719     "bureau",
  720     "burial",
  721     "buried",
  722     "burly",
  723     "burn",
  724     "burrow",
  725     "burst",
  726     "bury",
  727     "bus",
  728     "bust",
  729     "bustle",
  730     "busy",
  731     "but",
  732     "butler",
  733     "butter",
  734     "button",
  735     "buy",
  736     "buyer",
  737     "buzz",
  738     "bye",
  739     "byte",
  740     "cab",
  741     "cabin",
  742     "cable",
  743     "cache",
  744     "cactus",
  745     "cage",
  746     "cake",
  747     "calf",
  748     "call",
  749     "caller",
  750     "calm",
  751     "calmly",
  752     "came",
  753     "camel",
  754     "camera",
  755     "camp",
  756     "campus",
  757     "can",
  758     "canal",
  759     "canary",
  760     "cancel",
  761     "cancer",
  762     "candid",
  763     "candle",
  764     "candy",
  765     "cane",
  766     "canine",
  767     "canoe",
  768     "canopy",
  769     "canvas",
  770     "canyon",
  771     "cap",
  772     "cape",
  773     "car",
  774     "carbon",
  775     "card",
  776     "care",
  777     "career",
  778     "caress",
  779     "cargo",
  780     "carp",
  781     "carpet",
  782     "carrot",
  783     "carry",
  784     "cart",
  785     "cartel",
  786     "case",
  787     "cash",
  788     "cask",
  789     "cast",
  790     "castle",
  791     "casual",
  792     "cat",
  793     "catch",
  794     "cater",
  795     "cattle",
  796     "caught",
  797     "causal",
  798     "cause",
  799     "cave",
  800     "cease",
  801     "celery",
  802     "cell",
  803     "cellar",
  804     "cement",
  805     "censor",
  806     "census",
  807     "cereal",
  808     "chain",
  809     "chair",
  810     "chalk",
  811     "chalky",
  812     "champ",
  813     "chance",
  814     "change",
  815     "chant",
  816     "chaos",
  817     "chap",
  818     "chapel",
  819     "charge",
  820     "charm",
  821     "chart",
  822     "chase",
  823     "chat",
  824     "cheap",
  825     "cheat",
  826     "check",
  827     "cheek",
  828     "cheeky",
  829     "cheer",
  830     "cheery",
  831     "cheese",
  832     "chef",
  833     "cherry",
  834     "chess",
  835     "chest",
  836     "chew",
  837     "chic",
  838     "chief",
  839     "child",
  840     "chill",
  841     "chilly",
  842     "chin",
  843     "chip",
  844     "choice",
  845     "choir",
  846     "choose",
  847     "chop",
  848     "choppy",
  849     "chord",
  850     "chorus",
  851     "chose",
  852     "chosen",
  853     "chrome",
  854     "chunk",
  855     "chunky",
  856     "cider",
  857     "cigar",
  858     "cinema",
  859     "circa",
  860     "circle",
  861     "circus",
  862     "cite",
  863     "city",
  864     "civic",
  865     "civil",
  866     "clad",
  867     "claim",
  868     "clammy",
  869     "clan",
  870     "clap",
  871     "clash",
  872     "clasp",
  873     "class",
  874     "clause",
  875     "claw",
  876     "clay",
  877     "clean",
  878     "clear",
  879     "clergy",
  880     "clerk",
  881     "clever",
  882     "click",
  883     "client",
  884     "cliff",
  885     "climb",
  886     "clinch",
  887     "cling",
  888     "clinic",
  889     "clip",
  890     "cloak",
  891     "clock",
  892     "clone",
  893     "close",
  894     "closer",
  895     "closet",
  896     "cloth",
  897     "cloud",
  898     "cloudy",
  899     "clout",
  900     "clown",
  901     "club",
  902     "clue",
  903     "clumsy",
  904     "clung",
  905     "clutch",
  906     "coach",
  907     "coal",
  908     "coarse",
  909     "coast",
  910     "coat",
  911     "coax",
  912     "cobalt",
  913     "cobra",
  914     "coca",
  915     "cocoa",
  916     "code",
  917     "coffee",
  918     "coffin",
  919     "cohort",
  920     "coil",
  921     "coin",
  922     "coke",
  923     "cold",
  924     "collar",
  925     "colon",
  926     "colony",
  927     "colt",
  928     "column",
  929     "comb",
  930     "combat",
  931     "come",
  932     "comedy",
  933     "comic",
  934     "commit",
  935     "common",
  936     "compel",
  937     "comply",
  938     "concur",
  939     "cone",
  940     "confer",
  941     "consul",
  942     "convex",
  943     "convey",
  944     "convoy",
  945     "cook",
  946     "cool",
  947     "cope",
  948     "copper",
  949     "copy",
  950     "coral",
  951     "cord",
  952     "core",
  953     "cork",
  954     "corn",
  955     "corner",
  956     "corps",
  957     "corpse",
  958     "corpus",
  959     "cortex",
  960     "cosmic",
  961     "cosmos",
  962     "cost",
  963     "costly",
  964     "cosy",
  965     "cotton",
  966     "couch",
  967     "cough",
  968     "could",
  969     "count",
  970     "county",
  971     "coup",
  972     "couple",
  973     "coupon",
  974     "course",
  975     "court",
  976     "cousin",
  977     "cove",
  978     "cover",
  979     "covert",
  980     "cow",
  981     "coward",
  982     "cowboy",
  983     "crab",
  984     "cradle",
  985     "craft",
  986     "crafty",
  987     "crag",
  988     "crane",
  989     "crap",
  990     "crash",
  991     "crate",
  992     "crater",
  993     "crawl",
  994     "crazy",
  995     "creak",
  996     "cream",
  997     "creamy",
  998     "create",
  999     "credit",
 1000     "creed",
 1001     "creek",
 1002     "creep",
 1003     "creepy",
 1004     "crept",
 1005     "crest",
 1006     "crew",
 1007     "cried",
 1008     "crime",
 1009     "crisis",
 1010     "crisp",
 1011     "critic",
 1012     "croft",
 1013     "crook",
 1014     "crop",
 1015     "cross",
 1016     "crow",
 1017     "crowd",
 1018     "crown",
 1019     "crude",
 1020     "cruel",
 1021     "cruise",
 1022     "crunch",
 1023     "crush",
 1024     "crust",
 1025     "crux",
 1026     "cry",
 1027     "crypt",
 1028     "cube",
 1029     "cubic",
 1030     "cuckoo",
 1031     "cuff",
 1032     "cult",
 1033     "cup",
 1034     "curb",
 1035     "cure",
 1036     "curfew",
 1037     "curl",
 1038     "curry",
 1039     "curse",
 1040     "cursor",
 1041     "curve",
 1042     "custom",
 1043     "cut",
 1044     "cute",
 1045     "cycle",
 1046     "cyclic",
 1047     "cynic",
 1048     "dad",
 1049     "dagger",
 1050     "daily",
 1051     "dairy",
 1052     "daisy",
 1053     "dale",
 1054     "damage",
 1055     "damn",
 1056     "damp",
 1057     "dampen",
 1058     "dance",
 1059     "danger",
 1060     "dare",
 1061     "dark",
 1062     "darken",
 1063     "dash",
 1064     "data",
 1065     "date",
 1066     "dawn",
 1067     "day",
 1068     "dead",
 1069     "deadly",
 1070     "deaf",
 1071     "deal",
 1072     "dealer",
 1073     "dean",
 1074     "dear",
 1075     "death",
 1076     "debate",
 1077     "debit",
 1078     "debris",
 1079     "debt",
 1080     "debtor",
 1081     "decade",
 1082     "decay",
 1083     "decent",
 1084     "decide",
 1085     "deck",
 1086     "decor",
 1087     "decree",
 1088     "deduce",
 1089     "deed",
 1090     "deep",
 1091     "deeply",
 1092     "deer",
 1093     "defeat",
 1094     "defect",
 1095     "defend",
 1096     "defer",
 1097     "define",
 1098     "defy",
 1099     "degree",
 1100     "deity",
 1101     "delay",
 1102     "delete",
 1103     "delta",
 1104     "demand",
 1105     "demise",
 1106     "demo",
 1107     "demon",
 1108     "demure",
 1109     "denial",
 1110     "denote",
 1111     "dense",
 1112     "dental",
 1113     "deny",
 1114     "depart",
 1115     "depend",
 1116     "depict",
 1117     "deploy",
 1118     "depot",
 1119     "depth",
 1120     "deputy",
 1121     "derive",
 1122     "desert",
 1123     "design",
 1124     "desire",
 1125     "desist",
 1126     "desk",
 1127     "detail",
 1128     "detect",
 1129     "deter",
 1130     "detest",
 1131     "detour",
 1132     "device",
 1133     "devise",
 1134     "devoid",
 1135     "devote",
 1136     "devour",
 1137     "dial",
 1138     "diary",
 1139     "dice",
 1140     "dictum",
 1141     "did",
 1142     "die",
 1143     "diesel",
 1144     "diet",
 1145     "differ",
 1146     "digest",
 1147     "digit",
 1148     "dine",
 1149     "dinghy",
 1150     "dinner",
 1151     "diode",
 1152     "dire",
 1153     "direct",
 1154     "dirt",
 1155     "dirty",
 1156     "disc",
 1157     "disco",
 1158     "dish",
 1159     "disk",
 1160     "dismal",
 1161     "dispel",
 1162     "ditch",
 1163     "dive",
 1164     "divert",
 1165     "divide",
 1166     "divine",
 1167     "dizzy",
 1168     "docile",
 1169     "dock",
 1170     "doctor",
 1171     "dog",
 1172     "dogma",
 1173     "dole",
 1174     "doll",
 1175     "dollar",
 1176     "dolly",
 1177     "domain",
 1178     "dome",
 1179     "domino",
 1180     "donate",
 1181     "done",
 1182     "donkey",
 1183     "donor",
 1184     "doom",
 1185     "door",
 1186     "dorsal",
 1187     "dose",
 1188     "double",
 1189     "doubt",
 1190     "dough",
 1191     "dour",
 1192     "dove",
 1193     "down",
 1194     "dozen",
 1195     "draft",
 1196     "drag",
 1197     "dragon",
 1198     "drain",
 1199     "drama",
 1200     "drank",
 1201     "draw",
 1202     "drawer",
 1203     "dread",
 1204     "dream",
 1205     "dreary",
 1206     "dress",
 1207     "drew",
 1208     "dried",
 1209     "drift",
 1210     "drill",
 1211     "drink",
 1212     "drip",
 1213     "drive",
 1214     "driver",
 1215     "drop",
 1216     "drove",
 1217     "drown",
 1218     "drug",
 1219     "drum",
 1220     "drunk",
 1221     "dry",
 1222     "dual",
 1223     "duck",
 1224     "duct",
 1225     "due",
 1226     "duel",
 1227     "duet",
 1228     "duke",
 1229     "dull",
 1230     "duly",
 1231     "dumb",
 1232     "dummy",
 1233     "dump",
 1234     "dune",
 1235     "dung",
 1236     "duress",
 1237     "during",
 1238     "dusk",
 1239     "dust",
 1240     "dusty",
 1241     "duty",
 1242     "dwarf",
 1243     "dwell",
 1244     "dyer",
 1245     "dying",
 1246     "dynamo",
 1247     "each",
 1248     "eager",
 1249     "eagle",
 1250     "ear",
 1251     "earl",
 1252     "early",
 1253     "earn",
 1254     "earth",
 1255     "ease",
 1256     "easel",
 1257     "easily",
 1258     "easy",
 1259     "eat",
 1260     "eaten",
 1261     "eater",
 1262     "echo",
 1263     "eddy",
 1264     "edge",
 1265     "edible",
 1266     "edict",
 1267     "edit",
 1268     "editor",
 1269     "eerie",
 1270     "eerily",
 1271     "effect",
 1272     "effort",
 1273     "egg",
 1274     "ego",
 1275     "eight",
 1276     "eighth",
 1277     "eighty",
 1278     "either",
 1279     "elbow",
 1280     "elder",
 1281     "eldest",
 1282     "elect",
 1283     "eleven",
 1284     "elicit",
 1285     "elite",
 1286     "else",
 1287     "elude",
 1288     "elves",
 1289     "embark",
 1290     "emblem",
 1291     "embryo",
 1292     "emerge",
 1293     "emit",
 1294     "empire",
 1295     "employ",
 1296     "empty",
 1297     "enable",
 1298     "enamel",
 1299     "end",
 1300     "endure",
 1301     "enemy",
 1302     "energy",
 1303     "engage",
 1304     "engine",
 1305     "enjoy",
 1306     "enlist",
 1307     "enough",
 1308     "ensure",
 1309     "entail",
 1310     "enter",
 1311     "entire",
 1312     "entry",
 1313     "envoy",
 1314     "envy",
 1315     "enzyme",
 1316     "epic",
 1317     "epoch",
 1318     "equal",
 1319     "equate",
 1320     "equip",
 1321     "equity",
 1322     "era",
 1323     "erode",
 1324     "errant",
 1325     "error",
 1326     "escape",
 1327     "essay",
 1328     "estate",
 1329     "esteem",
 1330     "ethic",
 1331     "ethnic",
 1332     "evade",
 1333     "even",
 1334     "event",
 1335     "ever",
 1336     "every",
 1337     "evict",
 1338     "evil",
 1339     "evoke",
 1340     "evolve",
 1341     "exact",
 1342     "exam",
 1343     "exceed",
 1344     "excel",
 1345     "except",
 1346     "excess",
 1347     "excise",
 1348     "excite",
 1349     "excuse",
 1350     "exempt",
 1351     "exert",
 1352     "exile",
 1353     "exist",
 1354     "exit",
 1355     "exotic",
 1356     "expand",
 1357     "expect",
 1358     "expert",
 1359     "expire",
 1360     "export",
 1361     "expose",
 1362     "extend",
 1363     "extra",
 1364     "eye",
 1365     "eyed",
 1366     "fabric",
 1367     "face",
 1368     "fact",
 1369     "factor",
 1370     "fade",
 1371     "fail",
 1372     "faint",
 1373     "fair",
 1374     "fairly",
 1375     "fairy",
 1376     "faith",
 1377     "fake",
 1378     "falcon",
 1379     "fall",
 1380     "false",
 1381     "falter",
 1382     "fame",
 1383     "family",
 1384     "famine",
 1385     "famous",
 1386     "fan",
 1387     "fancy",
 1388     "far",
 1389     "farce",
 1390     "fare",
 1391     "farm",
 1392     "farmer",
 1393     "fast",
 1394     "fasten",
 1395     "faster",
 1396     "fat",
 1397     "fatal",
 1398     "fate",
 1399     "father",
 1400     "fatty",
 1401     "fault",
 1402     "faulty",
 1403     "fauna",
 1404     "fear",
 1405     "feast",
 1406     "feat",
 1407     "fed",
 1408     "fee",
 1409     "feeble",
 1410     "feed",
 1411     "feel",
 1412     "feet",
 1413     "fell",
 1414     "fellow",
 1415     "felt",
 1416     "female",
 1417     "fence",
 1418     "fend",
 1419     "ferry",
 1420     "fetal",
 1421     "fetch",
 1422     "feudal",
 1423     "fever",
 1424     "few",
 1425     "fewer",
 1426     "fiance",
 1427     "fiasco",
 1428     "fiddle",
 1429     "field",
 1430     "fiend",
 1431     "fierce",
 1432     "fiery",
 1433     "fifth",
 1434     "fifty",
 1435     "fig",
 1436     "fight",
 1437     "figure",
 1438     "file",
 1439     "fill",
 1440     "filled",
 1441     "filler",
 1442     "film",
 1443     "filter",
 1444     "filth",
 1445     "filthy",
 1446     "final",
 1447     "finale",
 1448     "find",
 1449     "fine",
 1450     "finger",
 1451     "finish",
 1452     "finite",
 1453     "fire",
 1454     "firm",
 1455     "firmly",
 1456     "first",
 1457     "fiscal",
 1458     "fish",
 1459     "fisher",
 1460     "fist",
 1461     "fit",
 1462     "fitful",
 1463     "five",
 1464     "fix",
 1465     "flag",
 1466     "flair",
 1467     "flak",
 1468     "flame",
 1469     "flank",
 1470     "flap",
 1471     "flare",
 1472     "flash",
 1473     "flask",
 1474     "flat",
 1475     "flaw",
 1476     "fled",
 1477     "flee",
 1478     "fleece",
 1479     "fleet",
 1480     "flesh",
 1481     "fleshy",
 1482     "flew",
 1483     "flick",
 1484     "flight",
 1485     "flimsy",
 1486     "flint",
 1487     "float",
 1488     "flock",
 1489     "flood",
 1490     "floor",
 1491     "floppy",
 1492     "flora",
 1493     "floral",
 1494     "flour",
 1495     "flow",
 1496     "flower",
 1497     "fluent",
 1498     "fluffy",
 1499     "fluid",
 1500     "flung",
 1501     "flurry",
 1502     "flush",
 1503     "flute",
 1504     "flux",
 1505     "fly",
 1506     "flyer",
 1507     "foal",
 1508     "foam",
 1509     "focal",
 1510     "focus",
 1511     "fog",
 1512     "foil",
 1513     "fold",
 1514     "folk",
 1515     "follow",
 1516     "folly",
 1517     "fond",
 1518     "fondly",
 1519     "font",
 1520     "food",
 1521     "fool",
 1522     "foot",
 1523     "for",
 1524     "forbid",
 1525     "force",
 1526     "ford",
 1527     "forest",
 1528     "forge",
 1529     "forget",
 1530     "fork",
 1531     "form",
 1532     "formal",
 1533     "format",
 1534     "former",
 1535     "fort",
 1536     "forth",
 1537     "forty",
 1538     "forum",
 1539     "fossil",
 1540     "foster",
 1541     "foul",
 1542     "found",
 1543     "four",
 1544     "fourth",
 1545     "fox",
 1546     "foyer",
 1547     "frail",
 1548     "frame",
 1549     "franc",
 1550     "frank",
 1551     "fraud",
 1552     "free",
 1553     "freed",
 1554     "freely",
 1555     "freer",
 1556     "freeze",
 1557     "frenzy",
 1558     "fresh",
 1559     "friar",
 1560     "fridge",
 1561     "fried",
 1562     "friend",
 1563     "fright",
 1564     "fringe",
 1565     "frock",
 1566     "frog",
 1567     "from",
 1568     "front",
 1569     "frost",
 1570     "frosty",
 1571     "frown",
 1572     "frozen",
 1573     "frugal",
 1574     "fruit",
 1575     "fudge",
 1576     "fuel",
 1577     "fulfil",
 1578     "full",
 1579     "fully",
 1580     "fun",
 1581     "fund",
 1582     "funny",
 1583     "fur",
 1584     "furry",
 1585     "fury",
 1586     "fuse",
 1587     "fusion",
 1588     "fuss",
 1589     "fussy",
 1590     "futile",
 1591     "future",
 1592     "fuzzy",
 1593     "gadget",
 1594     "gain",
 1595     "gala",
 1596     "galaxy",
 1597     "gale",
 1598     "gall",
 1599     "galley",
 1600     "gallon",
 1601     "gallop",
 1602     "gamble",
 1603     "game",
 1604     "gamma",
 1605     "gang",
 1606     "gap",
 1607     "garage",
 1608     "garden",
 1609     "garlic",
 1610     "gas",
 1611     "gasp",
 1612     "gate",
 1613     "gather",
 1614     "gauge",
 1615     "gaunt",
 1616     "gave",
 1617     "gaze",
 1618     "gear",
 1619     "geese",
 1620     "gender",
 1621     "gene",
 1622     "genial",
 1623     "genius",
 1624     "genre",
 1625     "gentle",
 1626     "gently",
 1627     "gentry",
 1628     "genus",
 1629     "get",
 1630     "ghetto",
 1631     "ghost",
 1632     "giant",
 1633     "gift",
 1634     "giggle",
 1635     "gill",
 1636     "gilt",
 1637     "ginger",
 1638     "girl",
 1639     "give",
 1640     "given",
 1641     "glad",
 1642     "glade",
 1643     "glance",
 1644     "gland",
 1645     "glare",
 1646     "glass",
 1647     "glassy",
 1648     "gleam",
 1649     "glee",
 1650     "glide",
 1651     "global",
 1652     "globe",
 1653     "gloom",
 1654     "gloomy",
 1655     "glory",
 1656     "gloss",
 1657     "glossy",
 1658     "glove",
 1659     "glow",
 1660     "glue",
 1661     "goal",
 1662     "goat",
 1663     "gold",
 1664     "golden",
 1665     "golf",
 1666     "gone",
 1667     "gong",
 1668     "good",
 1669     "goose",
 1670     "gorge",
 1671     "gory",
 1672     "gosh",
 1673     "gossip",
 1674     "got",
 1675     "govern",
 1676     "gown",
 1677     "grab",
 1678     "grace",
 1679     "grade",
 1680     "grain",
 1681     "grand",
 1682     "grant",
 1683     "grape",
 1684     "graph",
 1685     "grasp",
 1686     "grass",
 1687     "grassy",
 1688     "grate",
 1689     "grave",
 1690     "gravel",
 1691     "gravy",
 1692     "grease",
 1693     "greasy",
 1694     "great",
 1695     "greed",
 1696     "greedy",
 1697     "green",
 1698     "greet",
 1699     "grew",
 1700     "grid",
 1701     "grief",
 1702     "grill",
 1703     "grim",
 1704     "grin",
 1705     "grind",
 1706     "grip",
 1707     "grit",
 1708     "gritty",
 1709     "groan",
 1710     "groin",
 1711     "groom",
 1712     "groove",
 1713     "gross",
 1714     "ground",
 1715     "group",
 1716     "grove",
 1717     "grow",
 1718     "grown",
 1719     "growth",
 1720     "grudge",
 1721     "grunt",
 1722     "guard",
 1723     "guess",
 1724     "guest",
 1725     "guide",
 1726     "guild",
 1727     "guilt",
 1728     "guilty",
 1729     "guise",
 1730     "guitar",
 1731     "gulf",
 1732     "gully",
 1733     "gun",
 1734     "gunman",
 1735     "guru",
 1736     "gut",
 1737     "guy",
 1738     "habit",
 1739     "hack",
 1740     "had",
 1741     "hail",
 1742     "hair",
 1743     "hairy",
 1744     "hale",
 1745     "half",
 1746     "hall",
 1747     "halt",
 1748     "hamlet",
 1749     "hammer",
 1750     "hand",
 1751     "handle",
 1752     "handy",
 1753     "hang",
 1754     "hangar",
 1755     "happen",
 1756     "happy",
 1757     "harass",
 1758     "hard",
 1759     "harder",
 1760     "hardly",
 1761     "hare",
 1762     "harem",
 1763     "harm",
 1764     "harp",
 1765     "harsh",
 1766     "has",
 1767     "hash",
 1768     "hassle",
 1769     "haste",
 1770     "hasten",
 1771     "hasty",
 1772     "hat",
 1773     "hatch",
 1774     "hate",
 1775     "haul",
 1776     "haunt",
 1777     "have",
 1778     "haven",
 1779     "havoc",
 1780     "hawk",
 1781     "hazard",
 1782     "haze",
 1783     "hazel",
 1784     "hazy",
 1785     "head",
 1786     "heal",
 1787     "health",
 1788     "heap",
 1789     "hear",
 1790     "heard",
 1791     "heart",
 1792     "hearth",
 1793     "hearty",
 1794     "heat",
 1795     "heater",
 1796     "heaven",
 1797     "heavy",
 1798     "heck",
 1799     "hectic",
 1800     "hedge",
 1801     "heel",
 1802     "hefty",
 1803     "height",
 1804     "heir",
 1805     "held",
 1806     "helium",
 1807     "helix",
 1808     "hell",
 1809     "hello",
 1810     "helm",
 1811     "helmet",
 1812     "help",
 1813     "hemp",
 1814     "hence",
 1815     "her",
 1816     "herald",
 1817     "herb",
 1818     "herd",
 1819     "here",
 1820     "hereby",
 1821     "hernia",
 1822     "hero",
 1823     "heroic",
 1824     "hey",
 1825     "heyday",
 1826     "hick",
 1827     "hidden",
 1828     "hide",
 1829     "high",
 1830     "higher",
 1831     "highly",
 1832     "hill",
 1833     "him",
 1834     "hind",
 1835     "hint",
 1836     "hire",
 1837     "his",
 1838     "hiss",
 1839     "hit",
 1840     "hive",
 1841     "hoard",
 1842     "hoarse",
 1843     "hobby",
 1844     "hockey",
 1845     "hold",
 1846     "holder",
 1847     "hole",
 1848     "hollow",
 1849     "holly",
 1850     "holy",
 1851     "home",
 1852     "honest",
 1853     "honey",
 1854     "hood",
 1855     "hook",
 1856     "hope",
 1857     "horn",
 1858     "horrid",
 1859     "horror",
 1860     "horse",
 1861     "hose",
 1862     "host",
 1863     "hot",
 1864     "hotel",
 1865     "hound",
 1866     "hour",
 1867     "house",
 1868     "hover",
 1869     "how",
 1870     "huge",
 1871     "hull",
 1872     "human",
 1873     "humane",
 1874     "humble",
 1875     "humid",
 1876     "hung",
 1877     "hunger",
 1878     "hungry",
 1879     "hunt",
 1880     "hurdle",
 1881     "hurl",
 1882     "hurry",
 1883     "hurt",
 1884     "hush",
 1885     "hut",
 1886     "hybrid",
 1887     "hymn",
 1888     "hyphen",
 1889     "ice",
 1890     "icing",
 1891     "icon",
 1892     "idea",
 1893     "ideal",
 1894     "idiom",
 1895     "idiot",
 1896     "idle",
 1897     "idly",
 1898     "idol",
 1899     "ignite",
 1900     "ignore",
 1901     "ill",
 1902     "image",
 1903     "immune",
 1904     "impact",
 1905     "imply",
 1906     "import",
 1907     "impose",
 1908     "inch",
 1909     "income",
 1910     "incur",
 1911     "indeed",
 1912     "index",
 1913     "indoor",
 1914     "induce",
 1915     "inept",
 1916     "inert",
 1917     "infant",
 1918     "infect",
 1919     "infer",
 1920     "influx",
 1921     "inform",
 1922     "inject",
 1923     "injure",
 1924     "injury",
 1925     "inlaid",
 1926     "inland",
 1927     "inlet",
 1928     "inmate",
 1929     "inn",
 1930     "innate",
 1931     "inner",
 1932     "input",
 1933     "insane",
 1934     "insect",
 1935     "insert",
 1936     "inset",
 1937     "inside",
 1938     "insist",
 1939     "insult",
 1940     "insure",
 1941     "intact",
 1942     "intake",
 1943     "intend",
 1944     "inter",
 1945     "into",
 1946     "invade",
 1947     "invent",
 1948     "invest",
 1949     "invite",
 1950     "invoke",
 1951     "inward",
 1952     "iron",
 1953     "ironic",
 1954     "irony",
 1955     "island",
 1956     "isle",
 1957     "issue",
 1958     "itch",
 1959     "item",
 1960     "itself",
 1961     "ivory",
 1962     "jacket",
 1963     "jade",
 1964     "jaguar",
 1965     "jail",
 1966     "jargon",
 1967     "jaw",
 1968     "jazz",
 1969     "jeep",
 1970     "jelly",
 1971     "jerky",
 1972     "jest",
 1973     "jet",
 1974     "jewel",
 1975     "job",
 1976     "jock",
 1977     "jockey",
 1978     "join",
 1979     "joke",
 1980     "jolly",
 1981     "jolt",
 1982     "joy",
 1983     "joyful",
 1984     "joyous",
 1985     "judge",
 1986     "juice",
 1987     "juicy",
 1988     "jumble",
 1989     "jumbo",
 1990     "jump",
 1991     "jungle",
 1992     "junior",
 1993     "junk",
 1994     "junta",
 1995     "jury",
 1996     "just",
 1997     "karate",
 1998     "keel",
 1999     "keen",
 2000     "keep",
 2001     "keeper",
 2002     "kept",
 2003     "kernel",
 2004     "kettle",
 2005     "key",
 2006     "khaki",
 2007     "kick",
 2008     "kid",
 2009     "kidnap",
 2010     "kidney",
 2011     "kin",
 2012     "kind",
 2013     "kindly",
 2014     "king",
 2015     "kiss",
 2016     "kite",
 2017     "kitten",
 2018     "knack",
 2019     "knee",
 2020     "knew",
 2021     "knife",
 2022     "knight",
 2023     "knit",
 2024     "knob",
 2025     "knock",
 2026     "knot",
 2027     "know",
 2028     "known",
 2029     "label",
 2030     "lace",
 2031     "lack",
 2032     "lad",
 2033     "ladder",
 2034     "laden",
 2035     "lady",
 2036     "lagoon",
 2037     "laity",
 2038     "lake",
 2039     "lamb",
 2040     "lame",
 2041     "lamp",
 2042     "lance",
 2043     "land",
 2044     "lane",
 2045     "lap",
 2046     "lapse",
 2047     "large",
 2048     "larval",
 2049     "laser",
 2050     "last",
 2051     "latch",
 2052     "late",
 2053     "lately",
 2054     "latent",
 2055     "later",
 2056     "latest",
 2057     "latter",
 2058     "laugh",
 2059     "launch",
 2060     "lava",
 2061     "lavish",
 2062     "law",
 2063     "lawful",
 2064     "lawn",
 2065     "lawyer",
 2066     "lay",
 2067     "layer",
 2068     "layman",
 2069     "lazy",
 2070     "lead",
 2071     "leader",
 2072     "leaf",
 2073     "leafy",
 2074     "league",
 2075     "leak",
 2076     "leaky",
 2077     "lean",
 2078     "leap",
 2079     "learn",
 2080     "lease",
 2081     "leash",
 2082     "least",
 2083     "leave",
 2084     "led",
 2085     "ledge",
 2086     "left",
 2087     "leg",
 2088     "legacy",
 2089     "legal",
 2090     "legend",
 2091     "legion",
 2092     "lemon",
 2093     "lend",
 2094     "length",
 2095     "lens",
 2096     "lent",
 2097     "leper",
 2098     "lesion",
 2099     "less",
 2100     "lessen",
 2101     "lesser",
 2102     "lesson",
 2103     "lest",
 2104     "let",
 2105     "lethal",
 2106     "letter",
 2107     "level",
 2108     "lever",
 2109     "levy",
 2110     "lewis",
 2111     "liable",
 2112     "liar",
 2113     "libel",
 2114     "lice",
 2115     "lid",
 2116     "lie",
 2117     "lied",
 2118     "life",
 2119     "lift",
 2120     "light",
 2121     "like",
 2122     "likely",
 2123     "limb",
 2124     "lime",
 2125     "limit",
 2126     "limp",
 2127     "line",
 2128     "linear",
 2129     "linen",
 2130     "linger",
 2131     "link",
 2132     "lion",
 2133     "lip",
 2134     "liquid",
 2135     "liquor",
 2136     "list",
 2137     "listen",
 2138     "lit",
 2139     "live",
 2140     "lively",
 2141     "liver",
 2142     "lizard",
 2143     "load",
 2144     "loaf",
 2145     "loan",
 2146     "lobby",
 2147     "lobe",
 2148     "local",
 2149     "locate",
 2150     "lock",
 2151     "locus",
 2152     "lodge",
 2153     "loft",
 2154     "lofty",
 2155     "log",
 2156     "logic",
 2157     "logo",
 2158     "lone",
 2159     "lonely",
 2160     "long",
 2161     "longer",
 2162     "look",
 2163     "loop",
 2164     "loose",
 2165     "loosen",
 2166     "loot",
 2167     "lord",
 2168     "lorry",
 2169     "lose",
 2170     "loss",
 2171     "lost",
 2172     "lot",
 2173     "lotion",
 2174     "lotus",
 2175     "loud",
 2176     "loudly",
 2177     "lounge",
 2178     "lousy",
 2179     "love",
 2180     "lovely",
 2181     "low",
 2182     "lower",
 2183     "lowest",
 2184     "loyal",
 2185     "lucid",
 2186     "luck",
 2187     "lucky",
 2188     "lull",
 2189     "lump",
 2190     "lumpy",
 2191     "lunacy",
 2192     "lunar",
 2193     "lunch",
 2194     "lung",
 2195     "lure",
 2196     "lurid",
 2197     "lush",
 2198     "lust",
 2199     "lute",
 2200     "luxury",
 2201     "lying",
 2202     "lymph",
 2203     "lynch",
 2204     "lyric",
 2205     "macho",
 2206     "macro",
 2207     "mad",
 2208     "madam",
 2209     "made",
 2210     "mafia",
 2211     "magic",
 2212     "magma",
 2213     "magnet",
 2214     "magnum",
 2215     "maid",
 2216     "maiden",
 2217     "mail",
 2218     "main",
 2219     "mainly",
 2220     "major",
 2221     "make",
 2222     "maker",
 2223     "male",
 2224     "malice",
 2225     "mall",
 2226     "malt",
 2227     "mammal",
 2228     "manage",
 2229     "mane",
 2230     "mania",
 2231     "manic",
 2232     "manner",
 2233     "manor",
 2234     "mantle",
 2235     "manual",
 2236     "manure",
 2237     "many",
 2238     "map",
 2239     "maple",
 2240     "marble",
 2241     "march",
 2242     "mare",
 2243     "margin",
 2244     "marina",
 2245     "mark",
 2246     "market",
 2247     "marry",
 2248     "marsh",
 2249     "martin",
 2250     "martyr",
 2251     "mask",
 2252     "mason",
 2253     "mass",
 2254     "mast",
 2255     "match",
 2256     "mate",
 2257     "matrix",
 2258     "matter",
 2259     "mature",
 2260     "maxim",
 2261     "may",
 2262     "maybe",
 2263     "mayor",
 2264     "maze",
 2265     "mead",
 2266     "meadow",
 2267     "meal",
 2268     "mean",
 2269     "meant",
 2270     "meat",
 2271     "medal",
 2272     "media",
 2273     "median",
 2274     "medic",
 2275     "medium",
 2276     "meet",
 2277     "mellow",
 2278     "melody",
 2279     "melon",
 2280     "melt",
 2281     "member",
 2282     "memo",
 2283     "memory",
 2284     "menace",
 2285     "mend",
 2286     "mental",
 2287     "mentor",
 2288     "menu",
 2289     "mercy",
 2290     "mere",
 2291     "merely",
 2292     "merge",
 2293     "merger",
 2294     "merit",
 2295     "merry",
 2296     "mesh",
 2297     "mess",
 2298     "messy",
 2299     "met",
 2300     "metal",
 2301     "meter",
 2302     "method",
 2303     "methyl",
 2304     "metric",
 2305     "metro",
 2306     "mid",
 2307     "midday",
 2308     "middle",
 2309     "midst",
 2310     "midway",
 2311     "might",
 2312     "mighty",
 2313     "mild",
 2314     "mildew",
 2315     "mile",
 2316     "milk",
 2317     "milky",
 2318     "mill",
 2319     "mimic",
 2320     "mince",
 2321     "mind",
 2322     "mine",
 2323     "mini",
 2324     "mink",
 2325     "minor",
 2326     "mint",
 2327     "minus",
 2328     "minute",
 2329     "mirror",
 2330     "mirth",
 2331     "misery",
 2332     "miss",
 2333     "mist",
 2334     "misty",
 2335     "mite",
 2336     "mix",
 2337     "moan",
 2338     "moat",
 2339     "mobile",
 2340     "mock",
 2341     "mode",
 2342     "model",
 2343     "modem",
 2344     "modern",
 2345     "modest",
 2346     "modify",
 2347     "module",
 2348     "moist",
 2349     "molar",
 2350     "mole",
 2351     "molten",
 2352     "moment",
 2353     "money",
 2354     "monies",
 2355     "monk",
 2356     "monkey",
 2357     "month",
 2358     "mood",
 2359     "moody",
 2360     "moon",
 2361     "moor",
 2362     "moral",
 2363     "morale",
 2364     "morbid",
 2365     "more",
 2366     "morgue",
 2367     "mortal",
 2368     "mortar",
 2369     "mosaic",
 2370     "mosque",
 2371     "moss",
 2372     "most",
 2373     "mostly",
 2374     "moth",
 2375     "mother",
 2376     "motion",
 2377     "motive",
 2378     "motor",
 2379     "mould",
 2380     "mount",
 2381     "mourn",
 2382     "mouse",
 2383     "mouth",
 2384     "move",
 2385     "movie",
 2386     "much",
 2387     "muck",
 2388     "mucus",
 2389     "mud",
 2390     "muddle",
 2391     "muddy",
 2392     "mule",
 2393     "mummy",
 2394     "murky",
 2395     "murmur",
 2396     "muscle",
 2397     "museum",
 2398     "music",
 2399     "mussel",
 2400     "must",
 2401     "mutant",
 2402     "mute",
 2403     "mutiny",
 2404     "mutter",
 2405     "mutton",
 2406     "mutual",
 2407     "muzzle",
 2408     "myopic",
 2409     "myriad",
 2410     "myself",
 2411     "mystic",
 2412     "myth",
 2413     "nadir",
 2414     "nail",
 2415     "name",
 2416     "namely",
 2417     "nape",
 2418     "napkin",
 2419     "narrow",
 2420     "nasal",
 2421     "nasty",
 2422     "nation",
 2423     "native",
 2424     "nature",
 2425     "nausea",
 2426     "naval",
 2427     "nave",
 2428     "navy",
 2429     "near",
 2430     "nearer",
 2431     "nearly",
 2432     "neat",
 2433     "neatly",
 2434     "neck",
 2435     "need",
 2436     "needle",
 2437     "needy",
 2438     "negate",
 2439     "neon",
 2440     "nephew",
 2441     "nerve",
 2442     "nest",
 2443     "neural",
 2444     "never",
 2445     "newly",
 2446     "next",
 2447     "nice",
 2448     "nicely",
 2449     "niche",
 2450     "nickel",
 2451     "niece",
 2452     "night",
 2453     "nimble",
 2454     "nine",
 2455     "ninety",
 2456     "ninth",
 2457     "noble",
 2458     "nobody",
 2459     "node",
 2460     "noise",
 2461     "noisy",
 2462     "non",
 2463     "none",
 2464     "noon",
 2465     "nor",
 2466     "norm",
 2467     "normal",
 2468     "nose",
 2469     "nosy",
 2470     "not",
 2471     "note",
 2472     "notice",
 2473     "notify",
 2474     "notion",
 2475     "nought",
 2476     "noun",
 2477     "novel",
 2478     "novice",
 2479     "now",
 2480     "nozzle",
 2481     "null",
 2482     "numb",
 2483     "number",
 2484     "nurse",
 2485     "nylon",
 2486     "nymph",
 2487     "oak",
 2488     "oasis",
 2489     "oath",
 2490     "obese",
 2491     "obey",
 2492     "object",
 2493     "oblige",
 2494     "oboe",
 2495     "obtain",
 2496     "occult",
 2497     "occupy",
 2498     "occur",
 2499     "ocean",
 2500     "octave",
 2501     "odd",
 2502     "off",
 2503     "offend",
 2504     "offer",
 2505     "office",
 2506     "offset",
 2507     "often",
 2508     "oil",
 2509     "oily",
 2510     "okay",
 2511     "old",
 2512     "older",
 2513     "oldest",
 2514     "olive",
 2515     "omega",
 2516     "omen",
 2517     "omit",
 2518     "once",
 2519     "one",
 2520     "onion",
 2521     "only",
 2522     "onset",
 2523     "onto",
 2524     "onus",
 2525     "onward",
 2526     "opaque",
 2527     "open",
 2528     "openly",
 2529     "opera",
 2530     "oppose",
 2531     "optic",
 2532     "option",
 2533     "oracle",
 2534     "orange",
 2535     "orbit",
 2536     "orchid",
 2537     "ordeal",
 2538     "order",
 2539     "organ",
 2540     "orient",
 2541     "origin",
 2542     "ornate",
 2543     "orphan",
 2544     "other",
 2545     "otter",
 2546     "ought",
 2547     "ounce",
 2548     "our",
 2549     "out",
 2550     "outer",
 2551     "output",
 2552     "outset",
 2553     "oval",
 2554     "oven",
 2555     "over",
 2556     "overt",
 2557     "owe",
 2558     "owing",
 2559     "owl",
 2560     "own",
 2561     "owner",
 2562     "oxide",
 2563     "oxygen",
 2564     "oyster",
 2565     "ozone",
 2566     "pace",
 2567     "pack",
 2568     "packet",
 2569     "pact",
 2570     "paddle",
 2571     "paddy",
 2572     "pagan",
 2573     "page",
 2574     "paid",
 2575     "pain",
 2576     "paint",
 2577     "pair",
 2578     "palace",
 2579     "pale",
 2580     "palm",
 2581     "panel",
 2582     "panic",
 2583     "papa",
 2584     "papal",
 2585     "paper",
 2586     "parade",
 2587     "parcel",
 2588     "pardon",
 2589     "parent",
 2590     "parish",
 2591     "park",
 2592     "parody",
 2593     "parrot",
 2594     "part",
 2595     "partly",
 2596     "party",
 2597     "pass",
 2598     "past",
 2599     "paste",
 2600     "pastel",
 2601     "pastor",
 2602     "pastry",
 2603     "pat",
 2604     "patch",
 2605     "patent",
 2606     "path",
 2607     "patio",
 2608     "patrol",
 2609     "patron",
 2610     "pause",
 2611     "pave",
 2612     "pawn",
 2613     "pay",
 2614     "peace",
 2615     "peach",
 2616     "peak",
 2617     "pear",
 2618     "pearl",
 2619     "pedal",
 2620     "peel",
 2621     "peer",
 2622     "pelvic",
 2623     "pelvis",
 2624     "pen",
 2625     "penal",
 2626     "pence",
 2627     "pencil",
 2628     "penny",
 2629     "people",
 2630     "pepper",
 2631     "per",
 2632     "perch",
 2633     "peril",
 2634     "period",
 2635     "perish",
 2636     "permit",
 2637     "person",
 2638     "pest",
 2639     "petite",
 2640     "petrol",
 2641     "petty",
 2642     "phase",
 2643     "phone",
 2644     "photo",
 2645     "phrase",
 2646     "piano",
 2647     "pick",
 2648     "picket",
 2649     "picnic",
 2650     "pie",
 2651     "piece",
 2652     "pier",
 2653     "pierce",
 2654     "piety",
 2655     "pig",
 2656     "pigeon",
 2657     "piggy",
 2658     "pike",
 2659     "pile",
 2660     "pill",
 2661     "pillar",
 2662     "pillow",
 2663     "pilot",
 2664     "pin",
 2665     "pinch",
 2666     "pine",
 2667     "pink",
 2668     "pint",
 2669     "pious",
 2670     "pipe",
 2671     "pirate",
 2672     "pistol",
 2673     "piston",
 2674     "pit",
 2675     "pitch",
 2676     "pity",
 2677     "pivot",
 2678     "pixel",
 2679     "pizza",
 2680     "place",
 2681     "placid",
 2682     "plague",
 2683     "plain",
 2684     "plan",
 2685     "plane",
 2686     "planet",
 2687     "plank",
 2688     "plant",
 2689     "plasma",
 2690     "plate",
 2691     "play",
 2692     "player",
 2693     "plea",
 2694     "plead",
 2695     "please",
 2696     "pledge",
 2697     "plenty",
 2698     "plenum",
 2699     "plight",
 2700     "plot",
 2701     "ploy",
 2702     "plug",
 2703     "plum",
 2704     "plump",
 2705     "plunge",
 2706     "plural",
 2707     "plus",
 2708     "plush",
 2709     "pocket",
 2710     "poem",
 2711     "poet",
 2712     "poetic",
 2713     "poetry",
 2714     "point",
 2715     "poison",
 2716     "polar",
 2717     "pole",
 2718     "police",
 2719     "policy",
 2720     "polite",
 2721     "poll",
 2722     "pollen",
 2723     "polo",
 2724     "pond",
 2725     "ponder",
 2726     "pony",
 2727     "pool",
 2728     "poor",
 2729     "poorly",
 2730     "pop",
 2731     "pope",
 2732     "poppy",
 2733     "pore",
 2734     "pork",
 2735     "port",
 2736     "portal",
 2737     "pose",
 2738     "posh",
 2739     "post",
 2740     "postal",
 2741     "potato",
 2742     "potent",
 2743     "pouch",
 2744     "pound",
 2745     "pour",
 2746     "powder",
 2747     "power",
 2748     "praise",
 2749     "pray",
 2750     "prayer",
 2751     "preach",
 2752     "prefer",
 2753     "prefix",
 2754     "press",
 2755     "pretty",
 2756     "price",
 2757     "pride",
 2758     "priest",
 2759     "primal",
 2760     "prime",
 2761     "prince",
 2762     "print",
 2763     "prior",
 2764     "prism",
 2765     "prison",
 2766     "privy",
 2767     "prize",
 2768     "probe",
 2769     "profit",
 2770     "prompt",
 2771     "prone",
 2772     "proof",
 2773     "propel",
 2774     "proper",
 2775     "prose",
 2776     "proton",
 2777     "proud",
 2778     "prove",
 2779     "proven",
 2780     "proxy",
 2781     "prune",
 2782     "psalm",
 2783     "pseudo",
 2784     "psyche",
 2785     "pub",
 2786     "public",
 2787     "puff",
 2788     "pull",
 2789     "pulp",
 2790     "pulpit",
 2791     "pulsar",
 2792     "pulse",
 2793     "pump",
 2794     "punch",
 2795     "punish",
 2796     "punk",
 2797     "pupil",
 2798     "puppet",
 2799     "puppy",
 2800     "pure",
 2801     "purely",
 2802     "purge",
 2803     "purify",
 2804     "purple",
 2805     "purse",
 2806     "pursue",
 2807     "push",
 2808     "pushy",
 2809     "put",
 2810     "putt",
 2811     "puzzle",
 2812     "quaint",
 2813     "quake",
 2814     "quarry",
 2815     "quartz",
 2816     "quay",
 2817     "queen",
 2818     "query",
 2819     "quest",
 2820     "queue",
 2821     "quick",
 2822     "quid",
 2823     "quiet",
 2824     "quilt",
 2825     "quirk",
 2826     "quit",
 2827     "quite",
 2828     "quiver",
 2829     "quiz",
 2830     "quota",
 2831     "quote",
 2832     "rabbit",
 2833     "race",
 2834     "racial",
 2835     "racism",
 2836     "rack",
 2837     "racket",
 2838     "radar",
 2839     "radio",
 2840     "radish",
 2841     "radius",
 2842     "raffle",
 2843     "raft",
 2844     "rage",
 2845     "raid",
 2846     "rail",
 2847     "rain",
 2848     "rainy",
 2849     "raise",
 2850     "rally",
 2851     "ramp",
 2852     "random",
 2853     "range",
 2854     "rank",
 2855     "ransom",
 2856     "rapid",
 2857     "rare",
 2858     "rarely",
 2859     "rarity",
 2860     "rash",
 2861     "rat",
 2862     "rate",
 2863     "rather",
 2864     "ratify",
 2865     "ratio",
 2866     "rattle",
 2867     "rave",
 2868     "raven",
 2869     "raw",
 2870     "ray",
 2871     "razor",
 2872     "reach",
 2873     "react",
 2874     "read",
 2875     "reader",
 2876     "ready",
 2877     "real",
 2878     "really",
 2879     "realm",
 2880     "reap",
 2881     "rear",
 2882     "reason",
 2883     "rebel",
 2884     "recall",
 2885     "recent",
 2886     "recess",
 2887     "recipe",
 2888     "reckon",
 2889     "record",
 2890     "recoup",
 2891     "rector",
 2892     "red",
 2893     "redeem",
 2894     "reduce",
 2895     "reed",
 2896     "reef",
 2897     "refer",
 2898     "reform",
 2899     "refuge",
 2900     "refuse",
 2901     "regal",
 2902     "regard",
 2903     "regent",
 2904     "regime",
 2905     "region",
 2906     "regret",
 2907     "reign",
 2908     "reject",
 2909     "relate",
 2910     "relax",
 2911     "relay",
 2912     "relic",
 2913     "relief",
 2914     "relish",
 2915     "rely",
 2916     "remain",
 2917     "remark",
 2918     "remedy",
 2919     "remind",
 2920     "remit",
 2921     "remote",
 2922     "remove",
 2923     "renal",
 2924     "render",
 2925     "rent",
 2926     "rental",
 2927     "repair",
 2928     "repeal",
 2929     "repeat",
 2930     "repent",
 2931     "reply",
 2932     "report",
 2933     "rescue",
 2934     "resent",
 2935     "reside",
 2936     "resign",
 2937     "resin",
 2938     "resist",
 2939     "resort",
 2940     "rest",
 2941     "result",
 2942     "resume",
 2943     "retail",
 2944     "retain",
 2945     "retina",
 2946     "retire",
 2947     "return",
 2948     "reveal",
 2949     "review",
 2950     "revise",
 2951     "revive",
 2952     "revolt",
 2953     "reward",
 2954     "rhino",
 2955     "rhyme",
 2956     "rhythm",
 2957     "ribbon",
 2958     "rice",
 2959     "rich",
 2960     "rick",
 2961     "rid",
 2962     "ride",
 2963     "rider",
 2964     "ridge",
 2965     "rife",
 2966     "rifle",
 2967     "rift",
 2968     "right",
 2969     "rigid",
 2970     "ring",
 2971     "rinse",
 2972     "riot",
 2973     "ripe",
 2974     "ripen",
 2975     "ripple",
 2976     "rise",
 2977     "risk",
 2978     "risky",
 2979     "rite",
 2980     "ritual",
 2981     "rival",
 2982     "river",
 2983     "road",
 2984     "roar",
 2985     "roast",
 2986     "rob",
 2987     "robe",
 2988     "robin",
 2989     "robot",
 2990     "robust",
 2991     "rock",
 2992     "rocket",
 2993     "rocky",
 2994     "rod",
 2995     "rode",
 2996     "rodent",
 2997     "rogue",
 2998     "role",
 2999     "roll",
 3000     "roof",
 3001     "room",
 3002     "root",
 3003     "rope",
 3004     "rose",
 3005     "rosy",
 3006     "rotate",
 3007     "rotor",
 3008     "rotten",
 3009     "rouge",
 3010     "rough",
 3011     "round",
 3012     "route",
 3013     "rover",
 3014     "row",
 3015     "royal",
 3016     "rubble",
 3017     "ruby",
 3018     "rudder",
 3019     "rude",
 3020     "rugby",
 3021     "ruin",
 3022     "rule",
 3023     "ruler",
 3024     "rumble",
 3025     "rump",
 3026     "run",
 3027     "rune",
 3028     "rung",
 3029     "runway",
 3030     "rural",
 3031     "rush",
 3032     "rust",
 3033     "rustic",
 3034     "rusty",
 3035     "sack",
 3036     "sacred",
 3037     "sad",
 3038     "saddle",
 3039     "sadly",
 3040     "safari",
 3041     "safe",
 3042     "safely",
 3043     "safer",
 3044     "safety",
 3045     "saga",
 3046     "sage",
 3047     "said",
 3048     "sail",
 3049     "sailor",
 3050     "saint",
 3051     "sake",
 3052     "salad",
 3053     "salary",
 3054     "sale",
 3055     "saline",
 3056     "saliva",
 3057     "salmon",
 3058     "saloon",
 3059     "salt",
 3060     "salty",
 3061     "salute",
 3062     "same",
 3063     "sample",
 3064     "sand",
 3065     "sandy",
 3066     "sane",
 3067     "sash",
 3068     "satin",
 3069     "satire",
 3070     "sauce",
 3071     "sauna",
 3072     "savage",
 3073     "save",
 3074     "say",
 3075     "scale",
 3076     "scalp",
 3077     "scan",
 3078     "scant",
 3079     "scar",
 3080     "scarce",
 3081     "scare",
 3082     "scarf",
 3083     "scary",
 3084     "scene",
 3085     "scenic",
 3086     "scent",
 3087     "school",
 3088     "scope",
 3089     "score",
 3090     "scorn",
 3091     "scotch",
 3092     "scout",
 3093     "scrap",
 3094     "scream",
 3095     "screen",
 3096     "script",
 3097     "scroll",
 3098     "scrub",
 3099     "scum",
 3100     "sea",
 3101     "seal",
 3102     "seam",
 3103     "seaman",
 3104     "search",
 3105     "season",
 3106     "seat",
 3107     "second",
 3108     "secret",
 3109     "sect",
 3110     "sector",
 3111     "secure",
 3112     "see",
 3113     "seed",
 3114     "seeing",
 3115     "seek",
 3116     "seem",
 3117     "seize",
 3118     "seldom",
 3119     "select",
 3120     "self",
 3121     "sell",
 3122     "seller",
 3123     "semi",
 3124     "senate",
 3125     "send",
 3126     "senile",
 3127     "senior",
 3128     "sense",
 3129     "sensor",
 3130     "sent",
 3131     "sentry",
 3132     "sequel",
 3133     "serene",
 3134     "serial",
 3135     "series",
 3136     "sermon",
 3137     "serum",
 3138     "serve",
 3139     "server",
 3140     "set",
 3141     "settle",
 3142     "seven",
 3143     "severe",
 3144     "sewage",
 3145     "shabby",
 3146     "shade",
 3147     "shadow",
 3148     "shady",
 3149     "shaft",
 3150     "shaggy",
 3151     "shah",
 3152     "shake",
 3153     "shaky",
 3154     "shall",
 3155     "sham",
 3156     "shame",
 3157     "shape",
 3158     "share",
 3159     "shark",
 3160     "sharp",
 3161     "shawl",
 3162     "she",
 3163     "shear",
 3164     "sheen",
 3165     "sheep",
 3166     "sheer",
 3167     "sheet",
 3168     "shelf",
 3169     "shell",
 3170     "sherry",
 3171     "shield",
 3172     "shift",
 3173     "shine",
 3174     "shiny",
 3175     "ship",
 3176     "shire",
 3177     "shirt",
 3178     "shiver",
 3179     "shock",
 3180     "shoe",
 3181     "shook",
 3182     "shoot",
 3183     "shop",
 3184     "shore",
 3185     "short",
 3186     "shot",
 3187     "should",
 3188     "shout",
 3189     "show",
 3190     "shower",
 3191     "shrank",
 3192     "shrewd",
 3193     "shrill",
 3194     "shrimp",
 3195     "shrine",
 3196     "shrink",
 3197     "shrub",
 3198     "shrug",
 3199     "shut",
 3200     "shy",
 3201     "shyly",
 3202     "sick",
 3203     "side",
 3204     "siege",
 3205     "sigh",
 3206     "sight",
 3207     "sigma",
 3208     "sign",
 3209     "signal",
 3210     "silent",
 3211     "silk",
 3212     "silken",
 3213     "silky",
 3214     "sill",
 3215     "silly",
 3216     "silver",
 3217     "simple",
 3218     "simply",
 3219     "since",
 3220     "sinful",
 3221     "sing",
 3222     "singer",
 3223     "single",
 3224     "sink",
 3225     "sir",
 3226     "siren",
 3227     "sister",
 3228     "sit",
 3229     "site",
 3230     "six",
 3231     "sixth",
 3232     "sixty",
 3233     "size",
 3234     "sketch",
 3235     "skill",
 3236     "skin",
 3237     "skinny",
 3238     "skip",
 3239     "skirt",
 3240     "skull",
 3241     "sky",
 3242     "slab",
 3243     "slack",
 3244     "slain",
 3245     "slam",
 3246     "slang",
 3247     "slap",
 3248     "slate",
 3249     "slater",
 3250     "sleek",
 3251     "sleep",
 3252     "sleepy",
 3253     "sleeve",
 3254     "slice",
 3255     "slick",
 3256     "slid",
 3257     "slide",
 3258     "slight",
 3259     "slim",
 3260     "slimy",
 3261     "sling",
 3262     "slip",
 3263     "slit",
 3264     "slogan",
 3265     "slope",
 3266     "sloppy",
 3267     "slot",
 3268     "slow",
 3269     "slowly",
 3270     "slug",
 3271     "slum",
 3272     "slump",
 3273     "smack",
 3274     "small",
 3275     "smart",
 3276     "smash",
 3277     "smear",
 3278     "smell",
 3279     "smelly",
 3280     "smelt",
 3281     "smile",
 3282     "smoke",
 3283     "smoky",
 3284     "smooth",
 3285     "smug",
 3286     "snack",
 3287     "snail",
 3288     "snake",
 3289     "snap",
 3290     "snatch",
 3291     "sneak",
 3292     "snow",
 3293     "snowy",
 3294     "snug",
 3295     "soak",
 3296     "soap",
 3297     "sober",
 3298     "soccer",
 3299     "social",
 3300     "sock",
 3301     "socket",
 3302     "soda",
 3303     "sodden",
 3304     "sodium",
 3305     "sofa",
 3306     "soft",
 3307     "soften",
 3308     "softly",
 3309     "soggy",
 3310     "soil",
 3311     "solar",
 3312     "sold",
 3313     "sole",
 3314     "solely",
 3315     "solemn",
 3316     "solid",
 3317     "solo",
 3318     "solve",
 3319     "some",
 3320     "son",
 3321     "sonar",
 3322     "sonata",
 3323     "song",
 3324     "sonic",
 3325     "soon",
 3326     "sooner",
 3327     "soot",
 3328     "soothe",
 3329     "sordid",
 3330     "sore",
 3331     "sorrow",
 3332     "sorry",
 3333     "sort",
 3334     "soul",
 3335     "sound",
 3336     "soup",
 3337     "sour",
 3338     "source",
 3339     "space",
 3340     "spade",
 3341     "span",
 3342     "spare",
 3343     "spark",
 3344     "sparse",
 3345     "spasm",
 3346     "spat",
 3347     "spate",
 3348     "speak",
 3349     "spear",
 3350     "speech",
 3351     "speed",
 3352     "speedy",
 3353     "spell",
 3354     "spend",
 3355     "sphere",
 3356     "spice",
 3357     "spicy",
 3358     "spider",
 3359     "spiky",
 3360     "spill",
 3361     "spin",
 3362     "spinal",
 3363     "spine",
 3364     "spiral",
 3365     "spirit",
 3366     "spit",
 3367     "spite",
 3368     "splash",
 3369     "split",
 3370     "spoil",
 3371     "spoke",
 3372     "sponge",
 3373     "spoon",
 3374     "sport",
 3375     "spot",
 3376     "spouse",
 3377     "spray",
 3378     "spread",
 3379     "spree",
 3380     "spring",
 3381     "sprint",
 3382     "spur",
 3383     "squad",
 3384     "square",
 3385     "squash",
 3386     "squat",
 3387     "squid",
 3388     "stab",
 3389     "stable",
 3390     "stack",
 3391     "staff",
 3392     "stage",
 3393     "stain",
 3394     "stair",
 3395     "stake",
 3396     "stale",
 3397     "stall",
 3398     "stamp",
 3399     "stance",
 3400     "stand",
 3401     "staple",
 3402     "star",
 3403     "starch",
 3404     "stare",
 3405     "stark",
 3406     "start",
 3407     "starve",
 3408     "state",
 3409     "static",
 3410     "statue",
 3411     "status",
 3412     "stay",
 3413     "stead",
 3414     "steady",
 3415     "steak",
 3416     "steal",
 3417     "steam",
 3418     "steel",
 3419     "steep",
 3420     "steer",
 3421     "stem",
 3422     "stench",
 3423     "step",
 3424     "stereo",
 3425     "stern",
 3426     "stew",
 3427     "stick",
 3428     "sticky",
 3429     "stiff",
 3430     "stifle",
 3431     "stigma",
 3432     "still",
 3433     "sting",
 3434     "stint",
 3435     "stir",
 3436     "stitch",
 3437     "stock",
 3438     "stocky",
 3439     "stone",
 3440     "stony",
 3441     "stool",
 3442     "stop",
 3443     "store",
 3444     "storm",
 3445     "stormy",
 3446     "story",
 3447     "stout",
 3448     "stove",
 3449     "strain",
 3450     "strait",
 3451     "strand",
 3452     "strap",
 3453     "strata",
 3454     "straw",
 3455     "stray",
 3456     "streak",
 3457     "stream",
 3458     "street",
 3459     "stress",
 3460     "strict",
 3461     "stride",
 3462     "strife",
 3463     "strike",
 3464     "string",
 3465     "strive",
 3466     "stroke",
 3467     "stroll",
 3468     "strong",
 3469     "stud",
 3470     "studio",
 3471     "study",
 3472     "stuff",
 3473     "stuffy",
 3474     "stunt",
 3475     "stupid",
 3476     "sturdy",
 3477     "style",
 3478     "submit",
 3479     "subtle",
 3480     "subtly",
 3481     "suburb",
 3482     "such",
 3483     "sudden",
 3484     "sue",
 3485     "suffer",
 3486     "sugar",
 3487     "suit",
 3488     "suite",
 3489     "suitor",
 3490     "sullen",
 3491     "sultan",
 3492     "sum",
 3493     "summer",
 3494     "summit",
 3495     "summon",
 3496     "sun",
 3497     "sunny",
 3498     "sunset",
 3499     "super",
 3500     "superb",
 3501     "supper",
 3502     "supple",
 3503     "supply",
 3504     "sure",
 3505     "surely",
 3506     "surf",
 3507     "surge",
 3508     "survey",
 3509     "suture",
 3510     "swamp",
 3511     "swan",
 3512     "swap",
 3513     "swarm",
 3514     "sway",
 3515     "swear",
 3516     "sweat",
 3517     "sweaty",
 3518     "sweep",
 3519     "sweet",
 3520     "swell",
 3521     "swift",
 3522     "swim",
 3523     "swine",
 3524     "swing",
 3525     "swirl",
 3526     "switch",
 3527     "sword",
 3528     "swore",
 3529     "symbol",
 3530     "synod",
 3531     "syntax",
 3532     "syrup",
 3533     "system",
 3534     "table",
 3535     "tablet",
 3536     "taboo",
 3537     "tacit",
 3538     "tackle",
 3539     "tact",
 3540     "tactic",
 3541     "tail",
 3542     "tailor",
 3543     "take",
 3544     "tale",
 3545     "talent",
 3546     "talk",
 3547     "tall",
 3548     "tally",
 3549     "tame",
 3550     "tandem",
 3551     "tangle",
 3552     "tank",
 3553     "tap",
 3554     "tape",
 3555     "target",
 3556     "tariff",
 3557     "tart",
 3558     "task",
 3559     "taste",
 3560     "tasty",
 3561     "tattoo",
 3562     "taut",
 3563     "tavern",
 3564     "tax",
 3565     "taxi",
 3566     "tea",
 3567     "teach",
 3568     "teak",
 3569     "team",
 3570     "tear",
 3571     "tease",
 3572     "tech",
 3573     "teeth",
 3574     "tell",
 3575     "temper",
 3576     "temple",
 3577     "tempo",
 3578     "tempt",
 3579     "ten",
 3580     "tenant",
 3581     "tend",
 3582     "tender",
 3583     "tendon",
 3584     "tennis",
 3585     "tenor",
 3586     "tense",
 3587     "tensor",
 3588     "tent",
 3589     "tenth",
 3590     "tenure",
 3591     "term",
 3592     "terror",
 3593     "test",
 3594     "text",
 3595     "than",
 3596     "thank",
 3597     "that",
 3598     "the",
 3599     "their",
 3600     "them",
 3601     "theme",
 3602     "then",
 3603     "thence",
 3604     "theory",
 3605     "there",
 3606     "these",
 3607     "thesis",
 3608     "they",
 3609     "thick",
 3610     "thief",
 3611     "thigh",
 3612     "thin",
 3613     "thing",
 3614     "think",
 3615     "third",
 3616     "thirst",
 3617     "thirty",
 3618     "this",
 3619     "thorn",
 3620     "those",
 3621     "though",
 3622     "thread",
 3623     "threat",
 3624     "three",
 3625     "thrill",
 3626     "thrive",
 3627     "throat",
 3628     "throne",
 3629     "throng",
 3630     "throw",
 3631     "thud",
 3632     "thug",
 3633     "thumb",
 3634     "thus",
 3635     "thyme",
 3636     "tick",
 3637     "ticket",
 3638     "tidal",
 3639     "tide",
 3640     "tidy",
 3641     "tie",
 3642     "tier",
 3643     "tiger",
 3644     "tight",
 3645     "tile",
 3646     "till",
 3647     "tilt",
 3648     "timber",
 3649     "time",
 3650     "timid",
 3651     "tin",
 3652     "tiny",
 3653     "tip",
 3654     "tissue",
 3655     "title",
 3656     "toad",
 3657     "toast",
 3658     "today",
 3659     "toilet",
 3660     "token",
 3661     "told",
 3662     "toll",
 3663     "tomato",
 3664     "tomb",
 3665     "tonal",
 3666     "tone",
 3667     "tongue",
 3668     "tonic",
 3669     "too",
 3670     "took",
 3671     "tool",
 3672     "tooth",
 3673     "top",
 3674     "topaz",
 3675     "topic",
 3676     "torch",
 3677     "torque",
 3678     "torso",
 3679     "tort",
 3680     "toss",
 3681     "total",
 3682     "touch",
 3683     "tough",
 3684     "tour",
 3685     "toward",
 3686     "towel",
 3687     "tower",
 3688     "town",
 3689     "toxic",
 3690     "toxin",
 3691     "trace",
 3692     "track",
 3693     "tract",
 3694     "trade",
 3695     "tragic",
 3696     "trail",
 3697     "train",
 3698     "trait",
 3699     "tram",
 3700     "trance",
 3701     "trap",
 3702     "trauma",
 3703     "travel",
 3704     "tray",
 3705     "tread",
 3706     "treat",
 3707     "treaty",
 3708     "treble",
 3709     "tree",
 3710     "trek",
 3711     "tremor",
 3712     "trench",
 3713     "trend",
 3714     "trendy",
 3715     "trial",
 3716     "tribal",
 3717     "tribe",
 3718     "trick",
 3719     "tricky",
 3720     "tried",
 3721     "trifle",
 3722     "trim",
 3723     "trio",
 3724     "trip",
 3725     "triple",
 3726     "troop",
 3727     "trophy",
 3728     "trot",
 3729     "trough",
 3730     "trout",
 3731     "truce",
 3732     "truck",
 3733     "true",
 3734     "truly",
 3735     "trunk",
 3736     "trust",
 3737     "truth",
 3738     "try",
 3739     "tsar",
 3740     "tube",
 3741     "tumble",
 3742     "tuna",
 3743     "tundra",
 3744     "tune",
 3745     "tung",
 3746     "tunic",
 3747     "tunnel",
 3748     "turban",
 3749     "turf",
 3750     "turn",
 3751     "turtle",
 3752     "tutor",
 3753     "tweed",
 3754     "twelve",
 3755     "twenty",
 3756     "twice",
 3757     "twin",
 3758     "twist",
 3759     "two",
 3760     "tycoon",
 3761     "tying",
 3762     "type",
 3763     "tyrant",
 3764     "ugly",
 3765     "ulcer",
 3766     "ultra",
 3767     "umpire",
 3768     "unable",
 3769     "uncle",
 3770     "under",
 3771     "uneasy",
 3772     "unfair",
 3773     "unify",
 3774     "union",
 3775     "unique",
 3776     "unit",
 3777     "unite",
 3778     "unity",
 3779     "unlike",
 3780     "unrest",
 3781     "unruly",
 3782     "until",
 3783     "update",
 3784     "upheld",
 3785     "uphill",
 3786     "uphold",
 3787     "upon",
 3788     "uproar",
 3789     "upset",
 3790     "upshot",
 3791     "uptake",
 3792     "upturn",
 3793     "upward",
 3794     "urban",
 3795     "urge",
 3796     "urgent",
 3797     "urging",
 3798     "usable",
 3799     "usage",
 3800     "use",
 3801     "useful",
 3802     "user",
 3803     "usual",
 3804     "utmost",
 3805     "utter",
 3806     "vacant",
 3807     "vacuum",
 3808     "vague",
 3809     "vain",
 3810     "valet",
 3811     "valid",
 3812     "valley",
 3813     "value",
 3814     "valve",
 3815     "van",
 3816     "vanish",
 3817     "vanity",
 3818     "vary",
 3819     "vase",
 3820     "vast",
 3821     "vat",
 3822     "vault",
 3823     "vector",
 3824     "veil",
 3825     "vein",
 3826     "velvet",
 3827     "vendor",
 3828     "veneer",
 3829     "venom",
 3830     "vent",
 3831     "venue",
 3832     "verb",
 3833     "verbal",
 3834     "verge",
 3835     "verify",
 3836     "verity",
 3837     "verse",
 3838     "versus",
 3839     "very",
 3840     "vessel",
 3841     "vest",
 3842     "veto",
 3843     "via",
 3844     "viable",
 3845     "vicar",
 3846     "vice",
 3847     "victim",
 3848     "victor",
 3849     "video",
 3850     "view",
 3851     "vigil",
 3852     "vile",
 3853     "villa",
 3854     "vine",
 3855     "vinyl",
 3856     "viola",
 3857     "violet",
 3858     "violin",
 3859     "viral",
 3860     "virtue",
 3861     "virus",
 3862     "visa",
 3863     "vision",
 3864     "visit",
 3865     "visual",
 3866     "vital",
 3867     "vivid",
 3868     "vocal",
 3869     "vodka",
 3870     "vogue",
 3871     "voice",
 3872     "void",
 3873     "volley",
 3874     "volume",
 3875     "vomit",
 3876     "vote",
 3877     "vowel",
 3878     "voyage",
 3879     "vulgar",
 3880     "wade",
 3881     "wage",
 3882     "waist",
 3883     "wait",
 3884     "waiter",
 3885     "wake",
 3886     "walk",
 3887     "walker",
 3888     "wall",
 3889     "wallet",
 3890     "walnut",
 3891     "wander",
 3892     "want",
 3893     "war",
 3894     "warden",
 3895     "warm",
 3896     "warmth",
 3897     "warn",
 3898     "warp",
 3899     "wary",
 3900     "was",
 3901     "wash",
 3902     "wasp",
 3903     "waste",
 3904     "watch",
 3905     "water",
 3906     "watery",
 3907     "wave",
 3908     "way",
 3909     "weak",
 3910     "weaken",
 3911     "wealth",
 3912     "weapon",
 3913     "wear",
 3914     "weary",
 3915     "wedge",
 3916     "wee",
 3917     "week",
 3918     "weekly",
 3919     "weep",
 3920     "weight",
 3921     "weird",
 3922     "well",
 3923     "were",
 3924     "wet",
 3925     "whale",
 3926     "wharf",
 3927     "what",
 3928     "wheat",
 3929     "wheel",
 3930     "when",
 3931     "whence",
 3932     "where",
 3933     "which",
 3934     "whiff",
 3935     "whig",
 3936     "while",
 3937     "whim",
 3938     "whip",
 3939     "who",
 3940     "whole",
 3941     "wholly",
 3942     "whom",
 3943     "whose",
 3944     "why",
 3945     "wide",
 3946     "widely",
 3947     "widen",
 3948     "wider",
 3949     "widow",
 3950     "width",
 3951     "wife",
 3952     "wild",
 3953     "wildly",
 3954     "wilful",
 3955     "will",
 3956     "willow",
 3957     "win",
 3958     "wind",
 3959     "window",
 3960     "windy",
 3961     "wine",
 3962     "wing",
 3963     "wink",
 3964     "winner",
 3965     "winter",
 3966     "wipe",
 3967     "wire",
 3968     "wisdom",
 3969     "wise",
 3970     "wish",
 3971     "wit",
 3972     "witch",
 3973     "with",
 3974     "within",
 3975     "witty",
 3976     "wizard",
 3977     "woke",
 3978     "wolf",
 3979     "wolves",
 3980     "woman",
 3981     "womb",
 3982     "won",
 3983     "wonder",
 3984     "wood",
 3985     "wooden",
 3986     "woods",
 3987     "woody",
 3988     "wool",
 3989     "word",
 3990     "work",
 3991     "worker",
 3992     "world",
 3993     "worm",
 3994     "worry",
 3995     "worse",
 3996     "worst",
 3997     "worth",
 3998     "worthy",
 3999     "would",
 4000     "wound",
 4001     "wrap",
 4002     "wrath",
 4003     "wreath",
 4004     "wreck",
 4005     "wright",
 4006     "wrist",
 4007     "writ",
 4008     "write",
 4009     "writer",
 4010     "wrong",
 4011     "xerox",
 4012     "yacht",
 4013     "yard",
 4014     "yarn",
 4015     "yeah",
 4016     "year",
 4017     "yeast",
 4018     "yet",
 4019     "yield",
 4020     "yogurt",
 4021     "yolk",
 4022     "you",
 4023     "young",
 4024     "your",
 4025     "youth",
 4026     "zeal",
 4027     "zebra",
 4028     "zenith",
 4029     "zero",
 4030     "zigzag",
 4031     "zinc",
 4032     "zombie",
 4033     "zone",
 4034     "Africa", /* we had "Europe" */
 4035     "Asia",
 4036     "South", /* we had the other 3, but not this one */
 4037     "anyone", /* some previously missed very common English words */
 4038     "born",
 4039     "its",
 4040     "little",
 4041     "man",
 4042     "new",
 4043     "news",
 4044     "others",
 4045     "yes",
 4046     "admin", /* words common in computing */
 4047     "avatar",
 4048     "codec",
 4049     "laptop",
 4050     "online",
 4051     "tweet",
 4052     "aisle", /* BIP-0039 */
 4053     "amused",
 4054     "arena",
 4055     "armed",
 4056     "banner",
 4057     "boring",
 4058     "buddy",
 4059     "bunker",
 4060     "burger",
 4061     "cannon",
 4062     "casino",
 4063     "churn",
 4064     "clog",
 4065     "clump",
 4066     "coyote",
 4067     "cram",
 4068     "crouch",
 4069     "daring",
 4070     "embody",
 4071     "enact",
 4072     "enrich",
 4073     "erase",
 4074     "erupt",
 4075     "ethics",
 4076     "fiber",
 4077     "flip",
 4078     "gym",
 4079     "hen",
 4080     "hip",
 4081     "hub",
 4082     "inhale",
 4083     "jar",
 4084     "jeans",
 4085     "kit",
 4086     "kiwi",
 4087     "lab",
 4088     "lumber",
 4089     "lyrics",
 4090     "mango",
 4091     "marine",
 4092     "math",
 4093     "mixed",
 4094     "muffin",
 4095     "naive",
 4096     "net",
 4097     "noodle",
 4098     "nut",
 4099     "odor",
 4100     "panda",
 4101     "peanut",
 4102     "pet",
 4103     "pluck",
 4104     "purity",
 4105     "ranch",
 4106     "renew",
 4107     "reopen",
 4108     "rib",
 4109     "rookie",
 4110     "rubber",
 4111     "rug",
 4112     "salon",
 4113     "scheme",
 4114     "setup",
 4115     "shed",
 4116     "shove",
 4117     "skate",
 4118     "ski",
 4119     "slush",
 4120     "sniff",
 4121     "spawn",
 4122     "spike",
 4123     "spy",
 4124     "stairs",
 4125     "subway",
 4126     "tag",
 4127     "tired",
 4128     "toe",
 4129     "topple",
 4130     "toy",
 4131     "trash",
 4132     "undo",
 4133     "unfold",
 4134     "unlock",
 4135     "unveil",
 4136     "upper",
 4137     "used",
 4138     "wagon",
 4139     "weasel",
 4140     "web",
 4141     "zoo",
 4142     "cookie", /* more previously missed common English words */
 4143     "cop",
 4144     "cops",
 4145     "dig",
 4146     "digger",
 4147     "dining",
 4148     "extent",
 4149     "gifted",
 4150     "hunter",
 4151     "living",
 4152     "lots",
 4153     "makeup",
 4154     "nearby",
 4155     "nod",
 4156     "odds",
 4157     "pan",
 4158     "pant",
 4159     "porch",
 4160     "rating",
 4161     "sales",
 4162     "saving",
 4163     "scared",
 4164     "sin",
 4165     "sinner",
 4166     "sins",
 4167     "terms",
 4168     "thanks",
 4169     "united",
 4170     "unless",
 4171     "viewer",
 4172     "voter",
 4173     "voters",
 4174     "weigh",
 4175     "works",
 4176     "yell",
 4177     "yours",
 4178     "arms", /* gutenberg-19xx-lowercase-words-1000plus.txt top 1000 */
 4179     "asked",
 4180     "became",
 4181     "been",
 4182     "began",
 4183     "books",
 4184     "boys",
 4185     "called",
 4186     "cannot",
 4187     "closed",
 4188     "comes",
 4189     "coming",
 4190     "days",
 4191     "died",
 4192     "does",
 4193     "doing",
 4194     "drawn",
 4195     "ears",
 4196     "eyes",
 4197     "faces",
 4198     "fallen",
 4199     "fixed",
 4200     "girls",
 4201     "giving",
 4202     "goes",
 4203     "going",
 4204     "hands",
 4205     "having",
 4206     "horses",
 4207     "hours",
 4208     "houses",
 4209     "knows",
 4210     "laid",
 4211     "leaves",
 4212     "legs",
 4213     "lifted",
 4214     "liked",
 4215     "lines",
 4216     "lips",
 4217     "lived",
 4218     "lives",
 4219     "looked",
 4220     "looks",
 4221     "loved",
 4222     "makes",
 4223     "making",
 4224     "means",
 4225     "men",
 4226     "miles",
 4227     "months",
 4228     "moved",
 4229     "moving",
 4230     "needed",
 4231     "nodded",
 4232     "opened",
 4233     "papers",
 4234     "passed",
 4235     "paused",
 4236     "picked",
 4237     "placed",
 4238     "places",
 4239     "played",
 4240     "pounds",
 4241     "pulled",
 4242     "raised",
 4243     "ran",
 4244     "rooms",
 4245     "sat",
 4246     "saw",
 4247     "saying",
 4248     "says",
 4249     "seemed",
 4250     "seems",
 4251     "seen",
 4252     "showed",
 4253     "smiled",
 4254     "spent",
 4255     "stared",
 4256     "steps",
 4257     "stood",
 4258     "struck",
 4259     "taken",
 4260     "taking",
 4261     "talked",
 4262     "tears",
 4263     "things",
 4264     "threw",
 4265     "times",
 4266     "trees",
 4267     "trying",
 4268     "turned",
 4269     "waited",
 4270     "walked",
 4271     "walls",
 4272     "wanted",
 4273     "ways",
 4274     "weeks",
 4275     "went",
 4276     "wished",
 4277     "women",
 4278     "words",
 4279     "wore",
 4280     "worked",
 4281     "wrote",
 4282     "years",
 4283     "asking", /* gutenberg-19xx-lowercase-words-1000plus.txt top 2000 */
 4284     "begun",
 4285     "birds",
 4286     "bodies",
 4287     "bones",
 4288     "boots",
 4289     "bowed",
 4290     "built",
 4291     "calls",
 4292     "cards",
 4293     "cared",
 4294     "cases",
 4295     "caused",
 4296     "ceased",
 4297     "chairs",
 4298     "cheeks",
 4299     "clouds",
 4300     "crying",
 4301     "damned",
 4302     "dared",
 4303     "dim",
 4304     "dogs",
 4305     "doors",
 4306     "dreams",
 4307     "driven",
 4308     "ended",
 4309     "ends",
 4310     "events",
 4311     "faced",
 4312     "facts",
 4313     "faded",
 4314     "failed",
 4315     "feared",
 4316     "fields",
 4317     "fired",
 4318     "flying",
 4319     "forced",
 4320     "forgot",
 4321     "formed",
 4322     "fought",
 4323     "gazed",
 4324     "gets",
 4325     "gives",
 4326     "guests",
 4327     "guns",
 4328     "handed",
 4329     "hated",
 4330     "heads",
 4331     "hearts",
 4332     "helped",
 4333     "hers",
 4334     "hills",
 4335     "hoped",
 4336     "ideas",
 4337     "joined",
 4338     "jumped",
 4339     "kissed",
 4340     "knees",
 4341     "ladies",
 4342     "larger",
 4343     "laws",
 4344     "lies",
 4345     "lights",
 4346     "locked",
 4347     "marked",
 4348     "minds",
 4349     "missed",
 4350     "named",
 4351     "names",
 4352     "needs",
 4353     "nerves",
 4354     "nights",
 4355     "noted",
 4356     "notes",
 4357     "ones",
 4358     "orders",
 4359     "parts",
 4360     "pieces",
 4361     "plans",
 4362     "points",
 4363     "powers",
 4364     "proved",
 4365     "pushed",
 4366     "rang",
 4367     "riding",
 4368     "rising",
 4369     "rocks",
 4370     "rolled",
 4371     "rushed",
 4372     "sank",
 4373     "saved",
 4374     "seated",
 4375     "seized",
 4376     "served",
 4377     "ships",
 4378     "shoes",
 4379     "shown",
 4380     "sides",
 4381     "sighed",
 4382     "signs",
 4383     "slept",
 4384     "sought",
 4385     "sounds",
 4386     "spoken",
 4387     "sprang",
 4388     "stars",
 4389     "stayed",
 4390     "stones",
 4391     "stuck",
 4392     "swept",
 4393     "swung",
 4394     "takes",
 4395     "taught",
 4396     "thinks",
 4397     "thrown",
 4398     "tied",
 4399     "turns",
 4400     "voices",
 4401     "wants",
 4402     "waters",
 4403     "whilst",
 4404     "worn",
 4405     "yards",
 4406     "acted", /* gutenberg-19xx-lowercase-words-1000plus.txt top 3000 */
 4407     "acting",
 4408     "ages",
 4409     "arose",
 4410     "banks",
 4411     "beaten",
 4412     "beg",
 4413     "begged",
 4414     "begins",
 4415     "beings",
 4416     "blank",
 4417     "boats",
 4418     "bored",
 4419     "brains",
 4420     "brow",
 4421     "bushes",
 4422     "cars",
 4423     "cent",
 4424     "cities",
 4425     "coldly",
 4426     "cries",
 4427     "cursed",
 4428     "dashed",
 4429     "deeper",
 4430     "depths",
 4431     "duties",
 4432     "easier",
 4433     "eating",
 4434     "eggs",
 4435     "facing",
 4436     "fears",
 4437     "feels",
 4438     "finds",
 4439     "fires",
 4440     "fitted",
 4441     "folded",
 4442     "folks",
 4443     "forces",
 4444     "forms",
 4445     "gained",
 4446     "gasped",
 4447     "gates",
 4448     "gazing",
 4449     "gods",
 4450     "goods",
 4451     "grimly",
 4452     "habits",
 4453     "halted",
 4454     "hatred",
 4455     "heels",
 4456     "hid",
 4457     "hiding",
 4458     "hopes",
 4459     "hoping",
 4460     "inches",
 4461     "jewels",
 4462     "keeps",
 4463     "kinds",
 4464     "landed",
 4465     "lands",
 4466     "likes",
 4467     "limbs",
 4468     "longed",
 4469     "losing",
 4470     "loves",
 4471     "loving",
 4472     "marks",
 4473     "mob",
 4474     "ours",
 4475     "packed",
 4476     "pages",
 4477     "parted",
 4478     "paying",
 4479     "posted",
 4480     "poured",
 4481     "rested",
 4482     "rights",
 4483     "risen",
 4484     "roads",
 4485     "roots",
 4486     "roses",
 4487     "roused",
 4488     "ruined",
 4489     "runs",
 4490     "sailed",
 4491     "sang",
 4492     "sees",
 4493     "senses",
 4494     "shone",
 4495     "shows",
 4496     "signed",
 4497     "sons",
 4498     "sorts",
 4499     "souls",
 4500     "stands",
 4501     "stated",
 4502     "stole",
 4503     "stolen",
 4504     "strode",
 4505     "tables",
 4506     "tells",
 4507     "tones",
 4508     "tore",
 4509     "torn",
 4510     "towns",
 4511     "tracks",
 4512     "troops",
 4513     "urged",
 4514     "using",
 4515     "views",
 4516     "warned",
 4517     "washed",
 4518     "wasted",
 4519     "waved",
 4520     "waves",
 4521     "wicked",
 4522     "winds",
 4523     "wings",
 4524     "wishes",
 4525     "wives",
 4526     "acres", /* gutenberg-19xx-lowercase-words-1000plus.txt top 4000 */
 4527     "acts",
 4528     "adding",
 4529     "aged",
 4530     "amazed",
 4531     "apt",
 4532     "ashes",
 4533     "awoke",
 4534     "backed",
 4535     "backs",
 4536     "bade",
 4537     "bags",
 4538     "bars",
 4539     "based",
 4540     "beasts",
 4541     "beds",
 4542     "bells",
 4543     "bills",
 4544     "bits",
 4545     "blown",
 4546     "blows",
 4547     "borne",
 4548     "boxes",
 4549     "brings",
 4550     "brows",
 4551     "buying",
 4552     "carved",
 4553     "causes",
 4554     "choked",
 4555     "cliffs",
 4556     "coolly",
 4557     "cows",
 4558     "crops",
 4559     "danced",
 4560     "dealt",
 4561     "denied",
 4562     "dimly",
 4563     "dishes",
 4564     "dismay",
 4565     "doubts",
 4566     "drinks",
 4567     "drops",
 4568     "earned",
 4569     "echoed",
 4570     "errand",
 4571     "falls",
 4572     "finest",
 4573     "flames",
 4574     "flies",
 4575     "fools",
 4576     "games",
 4577     "ghosts",
 4578     "gifts",
 4579     "gloves",
 4580     "groups",
 4581     "grows",
 4582     "hanged",
 4583     "hats",
 4584     "hay",
 4585     "headed",
 4586     "hired",
 4587     "holds",
 4588     "holes",
 4589     "homes",
 4590     "intent",
 4591     "issued",
 4592     "jerked",
 4593     "keys",
 4594     "kicked",
 4595     "lamps",
 4596     "lasted",
 4597     "laying",
 4598     "leaped",
 4599     "leapt",
 4600     "liking",
 4601     "lined",
 4602     "loaded",
 4603     "masses",
 4604     "meals",
 4605     "obeyed",
 4606     "outfit",
 4607     "owned",
 4608     "pains",
 4609     "passes",
 4610     "pearls",
 4611     "peered",
 4612     "piled",
 4613     "plains",
 4614     "plants",
 4615     "plays",
 4616     "porter",
 4617     "prayed",
 4618     "puts",
 4619     "races",
 4620     "racing",
 4621     "ragged",
 4622     "rays",
 4623     "rings",
 4624     "roared",
 4625     "robbed",
 4626     "rows",
 4627     "rubbed",
 4628     "ruins",
 4629     "rules",
 4630     "scenes",
 4631     "seas",
 4632     "seats",
 4633     "sets",
 4634     "shaken",
 4635     "shared",
 4636     "sheets",
 4637     "shops",
 4638     "sits",
 4639     "skirts",
 4640     "smiles",
 4641     "smoked",
 4642     "songs",
 4643     "speaks",
 4644     "sticks",
 4645     "stores",
 4646     "sunk",
 4647     "tales",
 4648     "talks",
 4649     "tapped",
 4650     "theirs",
 4651     "tossed",
 4652     "tribes",
 4653     "tricks",
 4654     "unseen",
 4655     "veins",
 4656     "viewed",
 4657     "visits",
 4658     "wages",
 4659     "walks",
 4660     "warmly",
 4661     "waving",
 4662     "wheels",
 4663     "wiped",
 4664     "wits",
 4665     "yelled",
 4666     "yonder",
 4667     "agents", /* the rest of gutenberg-19xx-lowercase-words-1000plus.txt */
 4668     "alas",
 4669     "argued",
 4670     "arts",
 4671     "asks",
 4672     "behold",
 4673     "boiled",
 4674     "boldly",
 4675     "cares",
 4676     "chaps",
 4677     "claims",
 4678     "crimes",
 4679     "crowds",
 4680     "curled",
 4681     "darted",
 4682     "dazed",
 4683     "dined",
 4684     "dug",
 4685     "firing",
 4686     "flowed",
 4687     "francs",
 4688     "gaiety",
 4689     "gaily",
 4690     "git",
 4691     "gladly",
 4692     "glared",
 4693     "hinted",
 4694     "hunted",
 4695     "ink",
 4696     "jobs",
 4697     "judged",
 4698     "keenly",
 4699     "kings",
 4700     "knelt",
 4701     "lacked",
 4702     "leads",
 4703     "morrow",
 4704     "nails",
 4705     "noises",
 4706     "novels",
 4707     "owed",
 4708     "palms",
 4709     "patted",
 4710     "plates",
 4711     "poets",
 4712     "prey",
 4713     "prices",
 4714     "quoted",
 4715     "ranks",
 4716     "risks",
 4717     "rivers",
 4718     "rum",
 4719     "sealed",
 4720     "shaped",
 4721     "shares",
 4722     "shells",
 4723     "shots",
 4724     "spared",
 4725     "spots",
 4726     "starts",
 4727     "states",
 4728     "suited",
 4729     "sworn",
 4730     "tents",
 4731     "tools",
 4732     "traced",
 4733     "traces",
 4734     "trains",
 4735     "tramp",
 4736     "varied",
 4737     "veiled",
 4738     "waking",
 4739     "wax",
 4740     "wept",
 4741     "wiser",
 4742     "worlds",
 4743     "writes",
 4744     "affix", /* eff_short_wordlist_1.txt */
 4745     "aging",
 4746     "aids",
 4747     "ajar",
 4748     "alias",
 4749     "aloe",
 4750     "aloha",
 4751     "amino",
 4752     "aqua",
 4753     "bagel",
 4754     "baked",
 4755     "balmy",
 4756     "banjo",
 4757     "bash",
 4758     "bask",
 4759     "bats",
 4760     "blimp",
 4761     "bloat",
 4762     "blob",
 4763     "blog",
 4764     "blurt",
 4765     "bok",
 4766     "boned",
 4767     "boney",
 4768     "botch",
 4769     "boxer",
 4770     "bribe",
 4771     "broil",
 4772     "bud",
 4773     "bunt",
 4774     "cadet",
 4775     "cameo",
 4776     "canon",
 4777     "carve",
 4778     "cedar",
 4779     "chili",
 4780     "chomp",
 4781     "chow",
 4782     "chuck",
 4783     "chump",
 4784     "chute",
 4785     "cinch",
 4786     "clamp",
 4787     "cleat",
 4788     "cleft",
 4789     "clink",
 4790     "cod",
 4791     "cola",
 4792     "coma",
 4793     "comma",
 4794     "cot",
 4795     "cozy",
 4796     "cramp",
 4797     "crank",
 4798     "crave",
 4799     "creme",
 4800     "crepe",
 4801     "crib",
 4802     "crumb",
 4803     "cub",
 4804     "cupid",
 4805     "curvy",
 4806     "cushy",
 4807     "dab",
 4808     "dandy",
 4809     "darn",
 4810     "dart",
 4811     "debug",
 4812     "decaf",
 4813     "decal",
 4814     "decoy",
 4815     "denim",
 4816     "dent",
 4817     "dill",
 4818     "dime",
 4819     "diner",
 4820     "dingy",
 4821     "ditzy",
 4822     "dodge",
 4823     "donut",
 4824     "dot",
 4825     "dowry",
 4826     "doze",
 4827     "drab",
 4828     "drone",
 4829     "droop",
 4830     "dude",
 4831     "duo",
 4832     "eats",
 4833     "ebay",
 4834     "ebony",
 4835     "ebook",
 4836     "eel",
 4837     "eject",
 4838     "elf",
 4839     "elk",
 4840     "elm",
 4841     "elope",
 4842     "emu",
 4843     "etch",
 4844     "fable",
 4845     "fang",
 4846     "fax",
 4847     "femur",
 4848     "finch",
 4849     "flaky",
 4850     "fling",
 4851     "flop",
 4852     "floss",
 4853     "foe",
 4854     "folic",
 4855     "fray",
 4856     "frill",
 4857     "frisk",
 4858     "froth",
 4859     "froze",
 4860     "gag",
 4861     "gains",
 4862     "gecko",
 4863     "geek",
 4864     "gem",
 4865     "gig",
 4866     "gills",
 4867     "giver",
 4868     "gooey",
 4869     "goofy",
 4870     "gore",
 4871     "grope",
 4872     "growl",
 4873     "grub",
 4874     "gulp",
 4875     "gummy",
 4876     "gush",
 4877     "halo",
 4878     "heave",
 4879     "herbs",
 4880     "hug",
 4881     "hula",
 4882     "hump",
 4883     "hunk",
 4884     "icy",
 4885     "igloo",
 4886     "ion",
 4887     "ivy",
 4888     "jab",
 4889     "jam",
 4890     "jaws",
 4891     "jiffy",
 4892     "jog",
 4893     "jot",
 4894     "junky",
 4895     "juror",
 4896     "keg",
 4897     "kilt",
 4898     "kitty",
 4899     "koala",
 4900     "kung",
 4901     "ladle",
 4902     "lair",
 4903     "lapel",
 4904     "lash",
 4905     "lasso",
 4906     "lilac",
 4907     "lily",
 4908     "limes",
 4909     "lint",
 4910     "lurch",
 4911     "lurk",
 4912     "mace",
 4913     "mama",
 4914     "mardi",
 4915     "mash",
 4916     "mocha",
 4917     "mold",
 4918     "mop",
 4919     "morse",
 4920     "motto",
 4921     "mousy",
 4922     "mower",
 4923     "mug",
 4924     "mulch",
 4925     "mull",
 4926     "mumbo",
 4927     "mural",
 4928     "muse",
 4929     "musky",
 4930     "nacho",
 4931     "nag",
 4932     "nanny",
 4933     "nap",
 4934     "nerd",
 4935     "nutty",
 4936     "oat",
 4937     "ooze",
 4938     "opal",
 4939     "opt",
 4940     "ouch",
 4941     "pager",
 4942     "pants",
 4943     "panty",
 4944     "pasta",
 4945     "payer",
 4946     "pecan",
 4947     "pep",
 4948     "perky",
 4949     "perm",
 4950     "petal",
 4951     "petri",
 4952     "plaza",
 4953     "plow",
 4954     "poach",
 4955     "pod",
 4956     "pogo",
 4957     "poise",
 4958     "poker",
 4959     "polio",
 4960     "polka",
 4961     "poser",
 4962     "pout",
 4963     "prank",
 4964     "prong",
 4965     "props",
 4966     "prude",
 4967     "pry",
 4968     "pug",
 4969     "puma",
 4970     "purr",
 4971     "quack",
 4972     "quill",
 4973     "rabid",
 4974     "rake",
 4975     "rant",
 4976     "ream",
 4977     "recap",
 4978     "remix",
 4979     "repay",
 4980     "repel",
 4981     "rerun",
 4982     "reset",
 4983     "rigor",
 4984     "ritzy",
 4985     "romp",
 4986     "runny",
 4987     "rut",
 4988     "salsa",
 4989     "santa",
 4990     "savor",
 4991     "sax",
 4992     "scam",
 4993     "scoff",
 4994     "scold",
 4995     "scoop",
 4996     "scoot",
 4997     "scowl",
 4998     "scuba",
 4999     "scuff",
 5000     "sedan",
 5001     "sepia",
 5002     "shack",
 5003     "showy",
 5004     "shred",
 5005     "shun",
 5006     "shush",
 5007     "sift",
 5008     "silo",
 5009     "sip",
 5010     "skew",
 5011     "skid",
 5012     "skier",
 5013     "skies",
 5014     "skit",
 5015     "slash",
 5016     "slaw",
 5017     "sled",
 5018     "sleet",
 5019     "slob",
 5020     "slurp",
 5021     "smirk",
 5022     "smog",
 5023     "snare",
 5024     "snarl",
 5025     "sneer",
 5026     "snore",
 5027     "snort",
 5028     "snout",
 5029     "snub",
 5030     "snuff",
 5031     "spew",
 5032     "spied",
 5033     "spiny",
 5034     "spoof",
 5035     "spool",
 5036     "spout",
 5037     "stank",
 5038     "stash",
 5039     "stays",
 5040     "stomp",
 5041     "stoop",
 5042     "strut",
 5043     "stump",
 5044     "stung",
 5045     "suds",
 5046     "sulk",
 5047     "sushi",
 5048     "swab",
 5049     "swipe",
 5050     "swoop",
 5051     "tacky",
 5052     "taco",
 5053     "talon",
 5054     "tamer",
 5055     "taper",
 5056     "taps",
 5057     "tarot",
 5058     "taunt",
 5059     "thaw",
 5060     "theft",
 5061     "thong",
 5062     "throb",
 5063     "thump",
 5064     "tiara",
 5065     "tint",
 5066     "tug",
 5067     "tulip",
 5068     "tummy",
 5069     "tusk",
 5070     "tutu",
 5071     "tux",
 5072     "tweak",
 5073     "twine",
 5074     "twins",
 5075     "twirl",
 5076     "uncut",
 5077     "untie",
 5078     "usher",
 5079     "vegan",
 5080     "visor",
 5081     "vixen",
 5082     "volt",
 5083     "wad",
 5084     "wafer",
 5085     "wager",
 5086     "wand",
 5087     "wavy",
 5088     "whoop",
 5089     "wick",
 5090     "wifi",
 5091     "wilt",
 5092     "wimp",
 5093     "wired",
 5094     "wiry",
 5095     "wispy",
 5096     "wok",
 5097     "woozy",
 5098     "woven",
 5099     "yahoo",
 5100     "yam",
 5101     "yelp",
 5102     "yodel",
 5103     "yoga",
 5104     "yummy",
 5105     "zesty",
 5106     "zippy",
 5107     "zoom",
 5108     "abacus", /* eff_large_wordlist.txt */
 5109     "affirm",
 5110     "aflame",
 5111     "afoot",
 5112     "ahoy",
 5113     "aliens",
 5114     "alto",
 5115     "alumni",
 5116     "amends",
 5117     "amigo",
 5118     "amply",
 5119     "amuck",
 5120     "amulet",
 5121     "amuser",
 5122     "anemia",
 5123     "anemic",
 5124     "angled",
 5125     "angler",
 5126     "angles",
 5127     "anime",
 5128     "annex",
 5129     "antics",
 5130     "antler",
 5131     "antsy",
 5132     "anvil",
 5133     "aorta",
 5134     "apache",
 5135     "aptly",
 5136     "arming",
 5137     "armory",
 5138     "ascend",
 5139     "ashy",
 5140     "askew",
 5141     "aspire",
 5142     "atop",
 5143     "atrium",
 5144     "attest",
 5145     "attire",
 5146     "autism",
 5147     "awning",
 5148     "awry",
 5149     "babble",
 5150     "babied",
 5151     "baboon",
 5152     "backer",
 5153     "badass",
 5154     "baffle",
 5155     "bagful",
 5156     "bagged",
 5157     "baggie",
 5158     "baking",
 5159     "banish",
 5160     "banked",
 5161     "banker",
 5162     "banter",
 5163     "barbed",
 5164     "barman",
 5165     "basics",
 5166     "batboy",
 5167     "bauble",
 5168     "blah",
 5169     "blazer",
 5170     "bleach",
 5171     "bleep",
 5172     "bling",
 5173     "blinks",
 5174     "bluish",
 5175     "blurb",
 5176     "blurry",
 5177     "bobbed",
 5178     "bobble",
 5179     "bobcat",
 5180     "bogged",
 5181     "boggle",
 5182     "bonded",
 5183     "bonsai",
 5184     "booted",
 5185     "bootie",
 5186     "boozy",
 5187     "borax",
 5188     "botany",
 5189     "bouncy",
 5190     "boxcar",
 5191     "boxing",
 5192     "boxy",
 5193     "breezy",
 5194     "briar",
 5195     "broker",
 5196     "bronco",
 5197     "browse",
 5198     "brunch",
 5199     "brunt",
 5200     "bubbly",
 5201     "bucked",
 5202     "buffed",
 5203     "buffer",
 5204     "bulgur",
 5205     "bungee",
 5206     "bunion",
 5207     "busboy",
 5208     "busily",
 5209     "cabana",
 5210     "cabbie",
 5211     "cackle",
 5212     "cacti",
 5213     "caddie",
 5214     "caddy",
 5215     "camper",
 5216     "canned",
 5217     "canola",
 5218     "capped",
 5219     "carat",
 5220     "carded",
 5221     "caring",
 5222     "carton",
 5223     "casing",
 5224     "casket",
 5225     "catchy",
 5226     "catnap",
 5227     "catnip",
 5228     "catsup",
 5229     "catty",
 5230     "caucus",
 5231     "caviar",
 5232     "cavity",
 5233     "chafe",
 5234     "chaste",
 5235     "chatty",
 5236     "cheesy",
 5237     "chemo",
 5238     "cherub",
 5239     "chevy",
 5240     "chewer",
 5241     "chewy",
 5242     "chimp",
 5243     "chirpy",
 5244     "chive",
 5245     "choosy",
 5246     "chubby",
 5247     "chug",
 5248     "chummy",
 5249     "citric",
 5250     "citrus",
 5251     "clamor",
 5252     "clang",
 5253     "clench",
 5254     "clique",
 5255     "clover",
 5256     "clunky",
 5257     "cobweb",
 5258     "coerce",
 5259     "collie",
 5260     "comfy",
 5261     "conch",
 5262     "copied",
 5263     "copier",
 5264     "coping",
 5265     "cornea",
 5266     "corned",
 5267     "corny",
 5268     "corral",
 5269     "corset",
 5270     "cozily",
 5271     "crayon",
 5272     "crazed",
 5273     "crease",
 5274     "creole",
 5275     "crier",
 5276     "crimp",
 5277     "cringe",
 5278     "crispy",
 5279     "croak",
 5280     "crock",
 5281     "croon",
 5282     "crummy",
 5283     "cuddle",
 5284     "cuddly",
 5285     "cupped",
 5286     "curdle",
 5287     "curing",
 5288     "curler",
 5289     "curly",
 5290     "curtly",
 5291     "curtsy",
 5292     "cusp",
 5293     "cussed",
 5294     "cymbal",
 5295     "dainty",
 5296     "dander",
 5297     "dangle",
 5298     "dares",
 5299     "dating",
 5300     "daybed",
 5301     "deacon",
 5302     "debunk",
 5303     "deceit",
 5304     "decode",
 5305     "deduct",
 5306     "deem",
 5307     "deepen",
 5308     "deface",
 5309     "defame",
 5310     "defile",
 5311     "defog",
 5312     "deftly",
 5313     "defuse",
 5314     "deluge",
 5315     "deluxe",
 5316     "demote",
 5317     "deport",
 5318     "depose",
 5319     "derail",
 5320     "deuce",
 5321     "diaper",
 5322     "dicing",
 5323     "dilute",
 5324     "dimmed",
 5325     "dimmer",
 5326     "dimple",
 5327     "dingo",
 5328     "dipped",
 5329     "dipper",
 5330     "disarm",
 5331     "disown",
 5332     "ditto",
 5333     "diving",
 5334     "doable",
 5335     "dodgy",
 5336     "doily",
 5337     "dollop",
 5338     "doodle",
 5339     "doozy",
 5340     "dork",
 5341     "dosage",
 5342     "dotted",
 5343     "douche",
 5344     "dreamt",
 5345     "dreamy",
 5346     "drench",
 5347     "drier",
 5348     "drippy",
 5349     "drool",
 5350     "drudge",
 5351     "dubbed",
 5352     "ducky",
 5353     "duffel",
 5354     "dugout",
 5355     "duh",
 5356     "duller",
 5357     "dupe",
 5358     "duplex",
 5359     "duvet",
 5360     "dweeb",
 5361     "earful",
 5362     "earthy",
 5363     "earwig",
 5364     "easing",
 5365     "eatery",
 5366     "ecard",
 5367     "eclair",
 5368     "edging",
 5369     "edgy",
 5370     "egging",
 5371     "eggnog",
 5372     "elated",
 5373     "elixir",
 5374     "ember",
 5375     "emboss",
 5376     "emcee",
 5377     "emote",
 5378     "encode",
 5379     "encore",
 5380     "ending",
 5381     "engulf",
 5382     "enrage",
 5383     "entity",
 5384     "entomb",
 5385     "entrap",
 5386     "entree",
 5387     "erased",
 5388     "eraser",
 5389     "eskimo",
 5390     "ether",
 5391     "exes",
 5392     "exhale",
 5393     "exhume",
 5394     "expel",
 5395     "expend",
 5396     "extras",
 5397     "fading",
 5398     "faucet",
 5399     "fedora",
 5400     "feisty",
 5401     "feline",
 5402     "fender",
 5403     "ferret",
 5404     "ferris",
 5405     "fervor",
 5406     "fester",
 5407     "filing",
 5408     "finer",
 5409     "flail",
 5410     "flashy",
 5411     "flatly",
 5412     "flier",
 5413     "flinch",
 5414     "fondue",
 5415     "footer",
 5416     "frayed",
 5417     "frays",
 5418     "frolic",
 5419     "frying",
 5420     "gab",
 5421     "gaffe",
 5422     "galore",
 5423     "gaming",
 5424     "gander",
 5425     "gangly",
 5426     "gargle",
 5427     "garnet",
 5428     "garter",
 5429     "gating",
 5430     "gauze",
 5431     "gawk",
 5432     "geiger",
 5433     "gents",
 5434     "gerbil",
 5435     "getup",
 5436     "giblet",
 5437     "giddy",
 5438     "giggly",
 5439     "gilled",
 5440     "girdle",
 5441     "gizmo",
 5442     "glider",
 5443     "glitch",
 5444     "glitzy",
 5445     "gluten",
 5446     "gnarly",
 5447     "gnat",
 5448     "gonad",
 5449     "google",
 5450     "goon",
 5451     "gopher",
 5452     "gorged",
 5453     "gotten",
 5454     "gout",
 5455     "graded",
 5456     "grader",
 5457     "granny",
 5458     "graves",
 5459     "grime",
 5460     "grimy",
 5461     "grinch",
 5462     "groggy",
 5463     "groovy",
 5464     "grout",
 5465     "grower",
 5466     "grunge",
 5467     "gurgle",
 5468     "gusto",
 5469     "gusty",
 5470     "guts",
 5471     "gutter",
 5472     "hacked",
 5473     "hacker",
 5474     "haiku",
 5475     "halved",
 5476     "halves",
 5477     "hamper",
 5478     "hangup",
 5479     "hankie",
 5480     "hanky",
 5481     "hardy",
 5482     "hatbox",
 5483     "hazily",
 5484     "hazing",
 5485     "header",
 5486     "helper",
 5487     "henna",
 5488     "herbal",
 5489     "hermit",
 5490     "hertz",
 5491     "hubcap",
 5492     "huddle",
 5493     "huff",
 5494     "hulk",
 5495     "humbly",
 5496     "hummus",
 5497     "humped",
 5498     "humvee",
 5499     "hurled",
 5500     "hurler",
 5501     "hurray",
 5502     "husked",
 5503     "icky",
 5504     "idiocy",
 5505     "iguana",
 5506     "impale",
 5507     "impart",
 5508     "impish",
 5509     "impure",
 5510     "iodine",
 5511     "iodize",
 5512     "ipad",
 5513     "iphone",
 5514     "ipod",
 5515     "irate",
 5516     "irk",
 5517     "itunes",
 5518     "jackal",
 5519     "jailer",
 5520     "jaunt",
 5521     "jawed",
 5522     "jester",
 5523     "jigsaw",
 5524     "jimmy",
 5525     "jingle",
 5526     "jinx",
 5527     "jogger",
 5528     "jovial",
 5529     "judo",
 5530     "juggle",
 5531     "junkie",
 5532     "jurist",
 5533     "justly",
 5534     "kabob",
 5535     "karma",
 5536     "kebab",
 5537     "kelp",
 5538     "kennel",
 5539     "kiln",
 5540     "kimono",
 5541     "kindle",
 5542     "kisser",
 5543     "knoll",
 5544     "kooky",
 5545     "kosher",
 5546     "kudos",
 5547     "lagged",
 5548     "lanky",
 5549     "lapdog",
 5550     "lapped",
 5551     "lard",
 5552     "lark",
 5553     "lather",
 5554     "laurel",
 5555     "lazily",
 5556     "legged",
 5557     "lego",
 5558     "legume",
 5559     "levers",
 5560     "lifter",
 5561     "lilly",
 5562     "lingo",
 5563     "lining",
 5564     "linked",
 5565     "lisp",
 5566     "litmus",
 5567     "litter",
 5568     "lugged",
 5569     "lushly",
 5570     "luster",
 5571     "lusty",
 5572     "macaw",
 5573     "maggot",
 5574     "maimed",
 5575     "manger",
 5576     "mangle",
 5577     "mangy",
 5578     "manila",
 5579     "manly",
 5580     "manned",
 5581     "mantis",
 5582     "mantra",
 5583     "marlin",
 5584     "maroon",
 5585     "marrow",
 5586     "marshy",
 5587     "mascot",
 5588     "mashed",
 5589     "mating",
 5590     "matron",
 5591     "matted",
 5592     "mauve",
 5593     "mayday",
 5594     "moaner",
 5595     "mocker",
 5596     "mockup",
 5597     "mooing",
 5598     "mooned",
 5599     "mossy",
 5600     "mowing",
 5601     "mulled",
 5602     "mumble",
 5603     "mumps",
 5604     "muppet",
 5605     "mushy",
 5606     "musket",
 5607     "muster",
 5608     "musty",
 5609     "mutate",
 5610     "mutt",
 5611     "naming",
 5612     "napped",
 5613     "nappy",
 5614     "nebula",
 5615     "nectar",
 5616     "nervy",
 5617     "neuron",
 5618     "neuter",
 5619     "nibble",
 5620     "nifty",
 5621     "nimbly",
 5622     "ninja",
 5623     "nuclei",
 5624     "nugget",
 5625     "numbly",
 5626     "nutmeg",
 5627     "nuzzle",
 5628     "oaf",
 5629     "oblong",
 5630     "obtuse",
 5631     "ocelot",
 5632     "octane",
 5633     "ogle",
 5634     "oink",
 5635     "onyx",
 5636     "oops",
 5637     "oozy",
 5638     "outage",
 5639     "outbid",
 5640     "outing",
 5641     "outlet",
 5642     "outwit",
 5643     "ovary",
 5644     "paced",
 5645     "pacify",
 5646     "padded",
 5647     "paging",
 5648     "paltry",
 5649     "pang",
 5650     "pantry",
 5651     "papaya",
 5652     "parka",
 5653     "parlor",
 5654     "parole",
 5655     "pasted",
 5656     "pasty",
 5657     "patchy",
 5658     "pauper",
 5659     "paver",
 5660     "paving",
 5661     "pawing",
 5662     "payday",
 5663     "payee",
 5664     "pebble",
 5665     "pebbly",
 5666     "pectin",
 5667     "pellet",
 5668     "pelt",
 5669     "penpal",
 5670     "pesky",
 5671     "peso",
 5672     "pester",
 5673     "petted",
 5674     "phobia",
 5675     "phoney",
 5676     "phony",
 5677     "plated",
 5678     "pleat",
 5679     "plod",
 5680     "plop",
 5681     "pointy",
 5682     "poking",
 5683     "poncho",
 5684     "poplar",
 5685     "popper",
 5686     "porous",
 5687     "portly",
 5688     "posing",
 5689     "possum",
 5690     "poster",
 5691     "pounce",
 5692     "powwow",
 5693     "pox",
 5694     "prance",
 5695     "precut",
 5696     "prelaw",
 5697     "prepay",
 5698     "preppy",
 5699     "preset",
 5700     "prewar",
 5701     "pried",
 5702     "primer",
 5703     "primp",
 5704     "prissy",
 5705     "pronto",
 5706     "proofs",
 5707     "prozac",
 5708     "pucker",
 5709     "pueblo",
 5710     "pumice",
 5711     "pummel",
 5712     "purist",
 5713     "pusher",
 5714     "pushup",
 5715     "python",
 5716     "quail",
 5717     "qualm",
 5718     "quench",
 5719     "racoon",
 5720     "radial",
 5721     "raging",
 5722     "raider",
 5723     "raisin",
 5724     "raking",
 5725     "ramble",
 5726     "ramrod",
 5727     "ranged",
 5728     "ranger",
 5729     "ranked",
 5730     "rants",
 5731     "rascal",
 5732     "ravage",
 5733     "ravine",
 5734     "raving",
 5735     "rebate",
 5736     "reboot",
 5737     "reborn",
 5738     "rebuff",
 5739     "recant",
 5740     "recast",
 5741     "recede",
 5742     "recite",
 5743     "recoil",
 5744     "recopy",
 5745     "refill",
 5746     "reflex",
 5747     "reflux",
 5748     "refold",
 5749     "refund",
 5750     "refute",
 5751     "regain",
 5752     "reggae",
 5753     "rehab",
 5754     "reheat",
 5755     "rehire",
 5756     "rejoin",
 5757     "relive",
 5758     "reload",
 5759     "relock",
 5760     "remake",
 5761     "remold",
 5762     "rename",
 5763     "rented",
 5764     "renter",
 5765     "repave",
 5766     "replay",
 5767     "repose",
 5768     "repost",
 5769     "reps",
 5770     "resale",
 5771     "reseal",
 5772     "resend",
 5773     "resize",
 5774     "retake",
 5775     "retold",
 5776     "retool",
 5777     "retry",
 5778     "retype",
 5779     "reuse",
 5780     "reverb",
 5781     "revert",
 5782     "revoke",
 5783     "rewash",
 5784     "rewind",
 5785     "rewire",
 5786     "reword",
 5787     "rework",
 5788     "rewrap",
 5789     "riches",
 5790     "richly",
 5791     "ridden",
 5792     "rimmed",
 5793     "rind",
 5794     "rink",
 5795     "roamer",
 5796     "rocker",
 5797     "roping",
 5798     "roster",
 5799     "roving",
 5800     "ruckus",
 5801     "rumor",
 5802     "runner",
 5803     "runt",
 5804     "ruse",
 5805     "sadden",
 5806     "saggy",
 5807     "salami",
 5808     "sandal",
 5809     "sanded",
 5810     "sappy",
 5811     "sassy",
 5812     "saucy",
 5813     "savior",
 5814     "scabby",
 5815     "scion",
 5816     "scone",
 5817     "scorch",
 5818     "scored",
 5819     "scorer",
 5820     "scouts",
 5821     "scribe",
 5822     "scurvy",
 5823     "sedate",
 5824     "seduce",
 5825     "septic",
 5826     "septum",
 5827     "sesame",
 5828     "shaded",
 5829     "shale",
 5830     "shank",
 5831     "shanty",
 5832     "sheath",
 5833     "shelve",
 5834     "shifty",
 5835     "shimmy",
 5836     "shorts",
 5837     "shorty",
 5838     "shriek",
 5839     "shrubs",
 5840     "shrunk",
 5841     "siding",
 5842     "sierra",
 5843     "siesta",
 5844     "silica",
 5845     "silt",
 5846     "simile",
 5847     "sitcom",
 5848     "sitter",
 5849     "sizing",
 5850     "sizzle",
 5851     "skater",
 5852     "skewed",
 5853     "skewer",
 5854     "skied",
 5855     "skiing",
 5856     "skype",
 5857     "slacks",
 5858     "sliced",
 5859     "slicer",
 5860     "slider",
 5861     "slinky",
 5862     "sliver",
 5863     "sloped",
 5864     "sludge",
 5865     "sly",
 5866     "smite",
 5867     "smith",
 5868     "smock",
 5869     "smudge",
 5870     "smudgy",
 5871     "smugly",
 5872     "snazzy",
 5873     "sneeze",
 5874     "snide",
 5875     "snitch",
 5876     "snooze",
 5877     "snugly",
 5878     "specks",
 5879     "sphinx",
 5880     "spiffy",
 5881     "spilt",
 5882     "spleen",
 5883     "splice",
 5884     "spoils",
 5885     "spongy",
 5886     "spooky",
 5887     "spore",
 5888     "sports",
 5889     "sporty",
 5890     "spotty",
 5891     "sprain",
 5892     "sprawl",
 5893     "sprig",
 5894     "sprite",
 5895     "sprout",
 5896     "spruce",
 5897     "sprung",
 5898     "spry",
 5899     "spud",
 5900     "squall",
 5901     "squeak",
 5902     "squint",
 5903     "squire",
 5904     "starry",
 5905     "steed",
 5906     "stilt",
 5907     "stingy",
 5908     "stinky",
 5909     "stoic",
 5910     "stoke",
 5911     "stooge",
 5912     "strep",
 5913     "strewn",
 5914     "strobe",
 5915     "strum",
 5916     "strung",
 5917     "stucco",
 5918     "stupor",
 5919     "stylus",
 5920     "suave",
 5921     "sublet",
 5922     "subpar",
 5923     "sudoku",
 5924     "suffix",
 5925     "suing",
 5926     "sulfur",
 5927     "sultry",
 5928     "surfer",
 5929     "swerve",
 5930     "swivel",
 5931     "swoosh",
 5932     "tabby",
 5933     "talcum",
 5934     "tamale",
 5935     "tamper",
 5936     "tanned",
 5937     "tarmac",
 5938     "tartar",
 5939     "tartly",
 5940     "tassel",
 5941     "tattle",
 5942     "thinly",
 5943     "thrash",
 5944     "thrift",
 5945     "tibia",
 5946     "tidbit",
 5947     "tiling",
 5948     "timing",
 5949     "tingle",
 5950     "tingly",
 5951     "tinker",
 5952     "tinsel",
 5953     "tipoff",
 5954     "tipped",
 5955     "tipper",
 5956     "tiptop",
 5957     "tiring",
 5958     "traps",
 5959     "triage",
 5960     "tripod",
 5961     "trowel",
 5962     "trunks",
 5963     "tubby",
 5964     "turret",
 5965     "twerp",
 5966     "twig",
 5967     "twisty",
 5968     "twitch",
 5969     "tyke",
 5970     "udder",
 5971     "unbend",
 5972     "unbent",
 5973     "unclad",
 5974     "unclip",
 5975     "unclog",
 5976     "uncork",
 5977     "undead",
 5978     "undone",
 5979     "unease",
 5980     "uneven",
 5981     "unglue",
 5982     "unholy",
 5983     "unhook",
 5984     "unison",
 5985     "unkind",
 5986     "unlit",
 5987     "unmade",
 5988     "unpack",
 5989     "unpaid",
 5990     "unplug",
 5991     "unread",
 5992     "unreal",
 5993     "unripe",
 5994     "unroll",
 5995     "unsafe",
 5996     "unsaid",
 5997     "unsent",
 5998     "unsnap",
 5999     "unsold",
 6000     "unsure",
 6001     "untidy",
 6002     "untold",
 6003     "untrue",
 6004     "unused",
 6005     "unwary",
 6006     "unwed",
 6007     "unwell",
 6008     "unwind",
 6009     "unworn",
 6010     "unzip",
 6011     "upbeat",
 6012     "upload",
 6013     "uproot",
 6014     "upside",
 6015     "uptown",
 6016     "upwind",
 6017     "urchin",
 6018     "utopia",
 6019     "vacate",
 6020     "valium",
 6021     "vastly",
 6022     "veal",
 6023     "veggie",
 6024     "velcro",
 6025     "vibes",
 6026     "viper",
 6027     "vista",
 6028     "voting",
 6029     "vowed",
 6030     "waffle",
 6031     "waged",
 6032     "waggle",
 6033     "walrus",
 6034     "waltz",
 6035     "wasabi",
 6036     "washer",
 6037     "whacky",
 6038     "wham",
 6039     "whinny",
 6040     "whiny",
 6041     "whoops",
 6042     "widget",
 6043     "wilder",
 6044     "willed",
 6045     "wince",
 6046     "wiring",
 6047     "wobble",
 6048     "wobbly",
 6049     "woof",
 6050     "wooing",
 6051     "wow",
 6052     "wrench",
 6053     "xbox",
 6054     "yearly",
 6055     "yen",
 6056     "yin",
 6057     "yippee",
 6058     "zap",
 6059     "zen",
 6060     "zips",
 6061     "zit",
 6062     "zodiac",
 6063     "zoning",
 6064     "abyss", /* eff_short_wordlist_2_0.txt */
 6065     "algae",
 6066     "amoeba",
 6067     "anklet",
 6068     "apnea",
 6069     "azalea",
 6070     "boiler",
 6071     "cashew",
 6072     "dibs",
 6073     "dozed",
 6074     "dryer",
 6075     "edged",
 6076     "eulogy",
 6077     "fillet",
 6078     "foggy",
 6079     "geyser",
 6080     "iconic",
 6081     "jetski",
 6082     "kayak",
 6083     "kiosk",
 6084     "llama",
 6085     "luau",
 6086     "ocular",
 6087     "oomph",
 6088     "owlish",
 6089     "peony",
 6090     "pewter",
 6091     "pulley",
 6092     "scythe",
 6093     "shovel",
 6094     "skulk",
 6095     "sloth",
 6096     "tirade",
 6097     "trucks",
 6098     "tryout",
 6099     "tuxedo",
 6100     "untied",
 6101     "upkeep",
 6102     "wakeup",
 6103     "yuppie",
 6104     "zealot",
 6105     "bush", /* these two were merely words, now may be taken as referring to specific people */
 6106     "trump",
 6107     "church", /* religious references (more of these are among the capitalized words below) */
 6108     "devil",
 6109     "devils",
 6110     "easter",
 6111     "gospel",
 6112     "satan",
 6113     "black", /* races, skin colors, and ethnicities */
 6114     "blacks",
 6115     "brown",
 6116     "white",
 6117     "yellow",
 6118     "Afghan", /* assorted capitalized words undesirable in passphrases, including: */
 6119     "Allah", /* religious references */
 6120     "Anglo", /* ethnicities, nationalities (but country names stay), other categories of people */
 6121     "Arab",
 6122     "Asian",
 6123     "Bach", /* specific people */
 6124     "Basque",
 6125     "Bible",
 6126     "Briton",
 6127     "Buddha",
 6128     "Caesar",
 6129     "Celtic",
 6130     "Christ",
 6131     "Danish",
 6132     "Darwin",
 6133     "Dutch",
 6134     "Exodus",
 6135     "French",
 6136     "Gandhi",
 6137     "Gaul",
 6138     "German",
 6139     "God",
 6140     "Greek",
 6141     "Hebrew",
 6142     "Hindu",
 6143     "Hitler",
 6144     "Indian",
 6145     "Irish",
 6146     "Islam",
 6147     "Jesus",
 6148     "Jewish",
 6149     "Judas",
 6150     "Koran",
 6151     "Madame", /* has an inappropriate meaning */
 6152     "Moses",
 6153     "Moslem",
 6154     "Mrs", /* abbreviation */
 6155     "Muslim",
 6156     "Nazi",
 6157     "Nobel",
 6158     "Pascal",
 6159     "Polish",
 6160     "Ritz", /* brands (the EFF lists also include some, but might not be reached) */
 6161     "Saudi",
 6162     "Saxon",
 6163     "Scot",
 6164     "Sony", /* "Amazon" stayed for its original meaning */
 6165     "Soviet",
 6166     "Stalin",
 6167     "Swiss",
 6168     "Turk",
 6169     "abort", /* generally politically incorrect */
 6170     "master",
 6171     "slave",
 6172     "slaves",
 6173     "booze", /* some references to drugs and alcohol (but specific drink names stay above) */
 6174     "crack",
 6175     "heroin",
 6176     "joint",
 6177     "opium",
 6178     "pot",
 6179     "weed",
 6180     "kill", /* violence */
 6181     "killed",
 6182     "killer",
 6183     "murder",
 6184     "rape",
 6185     "arouse", /* obscene, intimate anatomy, sexually explicit or suggestive */
 6186     "ass",
 6187     "babe",
 6188     "bang",
 6189     "bitch",
 6190     "blew",
 6191     "blow",
 6192     "breast",
 6193     "butt",
 6194     "carnal",
 6195     "cervix",
 6196     "chick",
 6197     "climax",
 6198     "cock",
 6199     "daddy",
 6200     "erect",
 6201     "erotic",
 6202     "escort",
 6203     "facial",
 6204     "flirt",
 6205     "gay",
 6206     "gigolo",
 6207     "horny",
 6208     "incest",
 6209     "lick",
 6210     "lover",
 6211     "lovers",
 6212     "naked",
 6213     "nude",
 6214     "oral",
 6215     "orgasm",
 6216     "penis",
 6217     "piss",
 6218     "pussy",
 6219     "queer",
 6220     "rectal",
 6221     "sadism",
 6222     "screw",
 6223     "sex",
 6224     "sexual",
 6225     "sexy",
 6226     "shit",
 6227     "sperm",
 6228     "squirt",
 6229     "strip",
 6230     "suck",
 6231     "thrust", /* Ubuntu bug 1407629 claims "Probe!thrust6scorn" is inappropriate */
 6232     "urine",
 6233     "uterus", /* "womb" is on EFF lists, so assumed OK - more figurative than anatomical */
 6234     "vagina",
 6235     "virgin",
 6236     "whore",
 6237     "advice", /* too similar */
 6238     "advise",
 6239     "armor", /* multiple spellings */
 6240     "armour",
 6241     "burned",
 6242     "burnt",
 6243     "center",
 6244     "centre",
 6245     "cheque", /* or "check", which is preserved above for different meaning */
 6246     "color",
 6247     "colour",
 6248     "email", /* or "e-mail" */
 6249     "enroll", /* or "enrol" */
 6250     "favor",
 6251     "favour",
 6252     "flavor", /* or "flavour" */
 6253     "gipsy",
 6254     "gray",
 6255     "grey",
 6256     "gypsy",
 6257     "harbor", /* or "harbour" */
 6258     "hippie",
 6259     "hippy",
 6260     "honor",
 6261     "honour",
 6262     "humor",
 6263     "humour",
 6264     "labor",
 6265     "labour",
 6266     "leaned",
 6267     "leant",
 6268     "learnt", /* or "learned" */
 6269     "mom",
 6270     "mum",
 6271     "tire",
 6272     "tyre",
 6273     "vapor",
 6274     "vapour",
 6275     "whisky", /* or "whiskey" */
 6276     "yoyo", /* or "yo-yo" */
 6277     "etc", /* Latin, not English */
 6278 #if 0 /* obsolete, dialectal, and non-words from gutenberg-19xx-lowercase-words-1000plus.txt */
 6279     "des",
 6280     "ere",
 6281     "fer",
 6282     "fro",
 6283     "hath",
 6284     "thee",
 6285     "thet",
 6286     "thou",
 6287     "thy",
 6288     "unto",
 6289     "von",
 6290     "wid",
 6291     "yer",
 6292     "html", /* obvious noise from how gutenberg-19xx-lowercase-words-1000plus.txt was created */
 6293     "http",
 6294     "txt",
 6295 #endif
 6296     "" /* end of list marker */
 6297 };