diff --git a/next-lib/src/parse/oald/src/README b/next-lib/src/parse/oald/src/README new file mode 100644 index 000000000..fd1e79cee --- /dev/null +++ b/next-lib/src/parse/oald/src/README @@ -0,0 +1,12 @@ +This directory contains the Oxford Advanced Learner's Dictionary of Current English +(expanded computer-usable version), available from the Oxford Text Archive (http://ota.ahds.ac.uk). + +It has a flat structure but contains part-of-speech, verb subcategorisation & pronunciation info. + +Files: +ascii_0710-1.txt the original plain ASCII version of the OALD +ascii_0710-2.txt the information to go with it +asc2lex a Perl script to process ASCII -> Prolog +lexicon2.pl the resulting Prolog version, hand-corrected for irregulars etc. + +Matthew Purver, Jan 2001 diff --git a/next-lib/src/parse/oald/src/asc2lex b/next-lib/src/parse/oald/src/asc2lex new file mode 100644 index 000000000..1bbcabf2f --- /dev/null +++ b/next-lib/src/parse/oald/src/asc2lex @@ -0,0 +1,320 @@ +#! /usr/bin/perl +# +# Perl script to process OALD machine-readable ASCII file +# into a Prolog-readable lexicon usable by SHARDS +# +# Usage: ./asc2lex < ascii_0710-1.txt [> OUTPUT.PL] +# +# Matthew Purver, 11/2001 + +# print a nice comment at the top +print "% Prolog lexicon for SHARDS, from OALD machine-readable dictionary\n"; +print "% Produced by asc2lex, Matthew Purver 11/2001\n\n"; + +# skip header section +while ( ) { + last if /<\/TEIHEADER>/; +} + +# read a line from stdin +while ( $line = ) { + + # remove SGML tags + $line =~ s/<[^<>]+>//g; + + # split line into fields according to spec (line may be empty now) + if ( $line =~ /^(.{23}).{23}(.{23}).{1}(.{58})$/ ) { + + # trim white space + for ( ( $word, $pos, $cat ) = ( $1, $2, $3 ) ) { + s/\s*$//; + } + + # make word lower-case atomic string + $word =~ s/\'/\\\'/g; # ' -> \' + $word =~ s/\"/\\\"/g; # " -> \" + $word =~ tr/A-Z/a-z/; # lower case + + # get PoS & subcat info + @pos = split( /,/, $pos ); + $cat =~ s/,/\',\'/g; + ( $cat = "\'$cat\'" ) unless ( $cat eq '' ); + + # set up Prolog-style string & put into array + foreach ( @pos ) { + ( $pcode, $infl, $freq )=split(//); + # for verbs, get inflected forms + if ( $pcode =~ /^[GHIJ]/ ) { + $pos = 'verb'; + $pcode =~ s/^G/unknown/; + $pcode =~ s/^H/tran/; + $pcode =~ s/^I/intran/; + $pcode =~ s/^J/_/; + # if this is a root form, work out the inflected forms + if ( $infl =~ /^\d/ ) { + if ( $infl == 0 ) { + ( $vbz = $word ) =~ s/$/s/; + ( $vbg = $word ) =~ s/$/ing/; + ( $vbd = $word ) =~ s/$/ed/; + } + elsif ( $infl == 1 ) { + ( $vbz = $word ) =~ s/$/es/; + ( $vbg = $word ) =~ s/$/ing/; + ( $vbd = $word ) =~ s/$/ed/; + } + elsif ( $infl == 2 ) { + ( $vbz = $word ) =~ s/e$/es/; + ( $vbg = $word ) =~ s/e$/ing/; + ( $vbd = $word ) =~ s/e$/ed/; + } + elsif ( $infl == 3 ) { + ( $vbz = $word ) =~ s/y$/ies/; + ( $vbg = $word ) =~ s/y$/ying/; + ( $vbd = $word ) =~ s/y$/ied/; + } + elsif ( $infl == 4 ) { + ( $vbz = $word ) =~ s/$/s/; + ( $vbg = $word ) =~ s/(\w)$/$1$1ing/; + ( $vbd = $word ) =~ s/(\w)$/$1$1ed/; + } + elsif ( $infl == 5 ) { + # for irregulars, just mark as such for now, we'll guess later + $vbz = 'IRREG'; + $vbg = 'IRREG'; + $vbd = 'IRREG'; + } + # add the full spec to @verb array + push( @verb, + "$pos( \'$word\', \'$vbz\', \'$vbg\', \'$vbd\', \'$vbd\', $pcode, [$cat] ).\n" ); + } + # if this is an inflected form, save for guessing irregulars later + elsif ( $infl =~ /^a/ ) { + push( @vbz, $word ); + } + elsif ( $infl =~ /^b/ ) { + push( @vbg, $word ); + } + elsif ( $infl =~ /^c/ ) { + push( @vbd, $word ); + } + elsif ( $infl =~ /^d/ ) { + push( @vbn, $word ); + } + } + # for nouns, get plural form + elsif( $pcode =~ /^[KLMNY]/ ) { + $pos = 'noun'; + $pcode =~ s/^K/count/; + $pcode =~ s/^L/mass/; + $pcode =~ s/^M/both/; + $pcode =~ s/^N/proper/; + if ( $pcode =~ /^Y/ ) { + $pcode = 'count' if $infl =~ /^[>\)\]]/; + $pcode = 'mass' if $infl =~ /^\}/; + $pcode = 'proper' if $infl =~ /^[:=~]/; + } + # if this is a singular form, work out plural form + unless ( $infl =~ /^j/ ) { + $pl = '-'; + if ( $infl == 6 ) { + ( $pl = $word ) =~ s/$/s/; + } + elsif ( $infl == 7 ) { + ( $pl = $word ) =~ s/$/es/; + } + elsif ( $infl == 8 ) { + ( $pl = $word ) =~ s/y$/ies/; + } + elsif ( $infl =~ /^[9k\]]/ ) { + $pl = $word; + } + elsif ( $infl =~ /^i/ ) { + # for irregulars, let's just make a guess and mark with '*' + # this could be done better, as for verbs, but I can't be bothered now + $pl = $word; + ( $pl =~ s/^((wo)?m)an/$1en\*/ ) or + ( $pl =~ s/man(-|$)/men$1\*/ ) or + ( $pl =~ s/-in-law/s-in-law\*/ ) or + ( $pl =~ s/um$/a\*/ ) or + ( $pl =~ s/us$/i\*/ ) or + ( $pl =~ s/a$/ae\*/ ) or + ( $pl =~ s/on$/a\*/ ) or + ( $pl =~ s/is$/es\*/ ) or + ( $pl =~ s/o$/i\*/ ) or + ( $pl =~ s/child$/children\*/ ) or + ( $pl =~ s/oot$/eet\*/ ) or + ( $pl =~ s/ooth$/eeth\*/ ) or + ( $pl =~ s/([lm])ouse$/$1ice\*/ ) or + ( $pl =~ s/f(e)?$/ves\*/ ) or + ( $pl =~ s/[ei]x$/ices\*/ ) or + ( $pl =~ s/eau$/eaux\*/ ) or + ( $pl = 'IRREG' ); + } + # if plural-only, swap root form & plural + elsif ( $infl =~ /^\)/ ) { + $pl = $word; + $word = '-'; + } + # and add full spec to @noun array + ( $infl =~ s/^[:l]/per/ ) or ( $infl =~ s/^[mn]/loc/ ) or ( $infl = '_' ); + push( @noun, "$pos( \'$word\', \'$pl\', $pcode, $infl ).\n" ) + } + } + # for adjectives, get comparative & superlative forms + elsif( $pcode =~ /^O/ ) { + $pos = 'adj'; + # if this is root form, work out inflected forms + unless ( $infl =~ /^[rs]/ ) { + if ( $infl =~ /^[Apqt]/ ) { + $comp = $sup = '-'; + } + elsif ( $infl =~ /^B/ ) { + ( $comp = $word ) =~ s/$/r/; + ( $sup = $word ) =~ s/$/st/; + } + elsif ( $infl =~ /^C/ ) { + ( $comp = $word ) =~ s/$/er/; + ( $sup = $word ) =~ s/$/est/; + } + elsif ( $infl =~ /^D/ ) { + ( $comp = $word ) =~ s/y$/ier/; + ( $sup = $word ) =~ s/y$/iest/; + } + elsif ( $infl =~ /^E/ ) { + # for irregulars, let's just have a guess and mark with '*' + # (there aren't very many of these) + ( $comp = $word ) =~ s/(\w)$/$1$1er\*/; + ( $sup = $word ) =~ s/(\w)$/$1$1est\*/; + } + $infl =~ s/^[ABCDE]/normal/; + $infl =~ s/^p/pred/; + $infl =~ s/^q/attr/; + $infl =~ s/^t/affix/; + # and add full spec to @adj array + push( @adj, "$pos( \'$word\', \'$comp\', \'$sup\', $infl ).\n" ); + } + } + # for adverbs, just add all info to @adv array + elsif( $pcode =~ /^P/ ) { + $pos = 'adv'; + $infl =~ s/^[u\+]/normal/; + $infl =~ s/^w/whrel/; + $infl =~ s/^v/whq/; + push( @adv, "$pos( \'$word\', $infl ).\n" ); + } + # for pronouns, work out some case/person info + elsif( $pcode =~ s/^Q/_/ ) { + $pos = 'pron'; + $infl =~ s/^x/normal/; + $infl =~ s/^y/whq/; + $infl =~ s/^z/whrel/; + $class = '_'; + # reflexive pronouns + if ( ( $word =~ /self$/ ) or + ( $word =~ /selves$/ ) ) { + $pcode = 'acc'; + } + # accusative personal pronouns + if ( ( $word =~ /^him/ ) or + ( $word =~ /^her/ ) or + ( $word =~ /^them/ ) or + ( $word eq 'us' ) or + ( $word eq 'thee' ) or + ( $word eq 'me' ) ) { + $pcode = 'acc'; + $class = 'per'; + } + # nominative personal pronouns + if ( ( $word eq 'he' ) or + ( $word eq 'she' ) or + ( $word eq 'they' ) or + ( $word eq 'we' ) or + ( $word eq 'thou' ) or + ( $word eq 'i' ) ) { + $pcode = 'nom'; + $class = 'per'; + } + # other personal pronouns + if ( ( $word =~ /.+one/ ) or + ( $word =~ /one.+/ ) or + ( $word =~ /body/ ) or + ( $word =~ /^you/ ) or + ( $word =~ /^who/ ) ) { + $class = 'per'; + } + # non-personal pronouns + if ( $word =~ /thing/ ) { + $class = 'nper'; + } + # otherwise case/person info will be '_' (anon variable) + # add full spec to @pron array + push( @pron, "$pos( \'$word\', $pcode, $infl, $class ).\n" ); + } + # for determiners, leave anon variable as placeholder for semantics + elsif( $pcode =~ /^[RS]/ ) { + $pos = 'det'; + $pcode =~ s/^R/def/; + $pcode =~ s/^S/indef/; + push( @det, "$pos( \'$word\', $pcode, _ ).\n" ); + } + # for prepositions - nothing to say + elsif( $pcode =~ s/^T/prep/ ) { + $pos = 'prep'; + push( @prep, "$pos( \'$word\', $pcode ).\n" ); + } + # for conjunctions - nothing to say + elsif( $pcode =~ s/^V/conj/ ) { + $pos = 'conj'; + push( @conj, "$pos( \'$word\', $pcode ).\n" ); + } + # for miscellaneous, leave '-' as placeholder for illocutionary info + elsif( $pcode =~ /^[UWXZ]/ ) { + $pos = 'misc'; + push( @prefix, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^U/prefix/ ); + push( @interj, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^W/interj/ ); + push( @partcl, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^X/partcl/ ); + push( @unknown, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^Z/unknown/ ); + } + } + } +} + +# now have a guess at irregular verb forms (marking the best guess with '*') +foreach $verb ( @verb ) { + if ( $verb =~ /verb\( \'([^\']+)\', \'IRREG/ ) { + $word = $1; + $vbz = findbest( $word, @vbz ); + $vbg = findbest( $word, @vbg ); + $vbd = findbest( $word, @vbd ); + $vbn = findbest( $word, @vbn ); + $verb =~ s/($word\', \')IRREG(\', \')IRREG(\', \')IRREG(\', \')IRREG/\*$1$vbz$2$vbg$3$vbd$4$vbn/; + } +} + +# now print everything out (so we can group PoSs together) +print @verb, "\n", @noun, "\n", @adj, "\n", @adv; +print "\n", @pron, "\n", @det, "\n", @prep, "\n", @conj; +print "\n", @prefix, "\n", @interj, "\n", @partcl, "\n", @unknown; + + +# find closest string match +# similarity measure is just the length of identical prefix +# prefer shorter strings in the case of equal similarity +sub findbest +{ + my ( $word, @array ) = @_; + + $bestlen = 0; + foreach $test ( @array ) { + if ( ( substr( $word, 0, $bestlen-1 ) eq substr( $test, 0, $bestlen-1 ) ) && + ( length( $test ) < length( $best ) ) ) { + $best = $test; + } + while ( ( substr( $word, 0, $bestlen ) eq substr( $test, 0, $bestlen ) ) && + ( $bestlen <= length( $test ) ) ) { + $bestlen++; + $best = $test; + } + } + return $best; +} diff --git a/next-lib/src/parse/oald/src/ascii_0710-1.txt b/next-lib/src/parse/oald/src/ascii_0710-1.txt new file mode 100644 index 000000000..ac11534c1 --- /dev/null +++ b/next-lib/src/parse/oald/src/ascii_0710-1.txt @@ -0,0 +1,70648 @@ + Oxford advanced learner's dictionary of current English : expanded "computer usable" version / compiled by Roger MittonA machine readable editionunspecifiedHornby, Albert SydneyunspecifiedCowie, Anthony PaulunspecifiedLewis, John Windsor, 1926-com (Compiler)Mitton, RogerText datagreater than 5 Mb Contains markup charactersofflineOxford Text ArchiveOxford
Oxford University Computing Services13 Banbury RoadOxfordOX2 6NNinfo@ota.ahds.ac.uk
dict0710

Freely available for non-commercial use provided that this header is included in its entirety with any copy distributed

[198-?]In EnglishTitle from title page of source text"[Entries have] all inflected forms included in full - but ... no definitions or examples"--Compiler, in OTA recordsPublication based on this text: Literary and Linguistic Computing. -- Vol. 1, No. 4, 1986. Transcribed from: Oxford advanced learner's dictionary of current English / A.S. Hornby ; with the assistance of A.P. Cowie [and] J. Windsor Lewis. -- 3rd. ed. -- London : Oxford University Press, 1974.

Editorial practices unknown

Reference system unknown

Oxford Text Archive Subject HeadingsLibrary of Congress Subject Headings
UnspecifiedEnglishDictionariesEnglish language -- DictionariesDictionaries -- 20th century14 Jan 1998Burnard, Loucvt (converter)Header auto-generated from TOMES1990-1991Day, Michaeledt (Editor)The following information was at the beginning of a MARC record used to to generate this TEI header, and may contain useful information:"computer usable" version
+'em @m Qx$ 1 +'neath niT T-$ 1 +'shun SVn W-$ 1 +'twas tw0z Gf$ 1 +'tween twin Pu$,T-$ 1 +'tween-decks 'twin-deks Pu$ 2 +'twere tw3R Gf$ 1 +'twill twIl Gf$ 1 +'twixt twIkst T-$ 1 +'twould twUd Gf$ 1 +'un @n Qx$ 1 +A eI Ki$ 1 +A's eIz Kj$ 1 +A-bomb 'eI-b0m K6$ 2 +A-bombs 'eI-b0mz Kj$ 2 +A-level 'eI-levl K6% 3 +A-levels 'eI-levlz Kj% 3 +AA ,eI'eI Y>% 2 +ABC ,eI,bi'si Y>% 3 +ABCs ,eI,bi'siz Y)$ 3 +AD ,eI'di Y~% 2 +AGM ,eIdZI'em Y>% 2 +AIDS eIdz Y}% 1 +AWOL 'eIw0l Y~% 2 +Aachen 'Ak@n Nn$ 2 +Aarhus 'Ahus Nn$ 2 +Abe eIb Nl$ 1 +Abercarn '&b@kAn Nn$ 3 +Aberdare ,&b@'de@R Nn$ 3 +Aberdeen ,&b@'din Nn% 3 +Abergavenny ,&b@g@'venI Nn% 5 +Abergele ,&b@'gelI Nn$ 4 +Abertillery ,&b@tI'le@rI Nn% 5 +Aberystwyth ,&b@'rIstwIT Nn% 4 +Abingdon '&bINd@n Nn% 3 +Abo '&b@U K6$ 2 +Aborigine ,&b@'rIdZ@nI K6% 5 +Aborigines ,&b@'rIdZ@nIz Kj% 5 +Abos '&b@Uz Kj$ 2 +Abraham 'eIbr@h&m Nl% 3 +Accra @'krA Nn% 2 +Accrington '&krINt@n Nn% 3 +Achilles @'kIliz Nl% 3 +Ada 'eId@ Nl% 2 +Adam '&d@m Nl% 2 +Addis Ababa ,&dIs '&b@b@ Nn% 5 +Addressograph @'dres@UgrAf K6$ 4 +Addressographs @'dres@UgrAfs Kj$ 4 +Adelaide '&d@leId Nn% 3 +Adrian 'eIdrI@n Nl% 3 +Adventist '&dv@ntIst K6$ 3 +Adventists '&dv@ntIsts Kj$ 3 +Afghan '&fg&n M6%,OA% 2 +Afghanistan &f,g&nI'stAn Nm% 4 +Afghanistani &f,g&nI'stAnI K6$,OA$ 5 +Afghanistanis &f,g&nI'stAnIz Kj$ 5 +Afghans '&fg&nz Mj% 2 +Africa '&frIk@ Nm% 3 +African '&frIk@n K6%,OA% 3 +Africans '&frIk@nz Kj% 3 +Afrikaans ,&frI'kAns L@% 3 +Afrikaner ,&frI'kAn@R K6%,OA% 4 +Afrikaners ,&frI'kAn@z Kj% 4 +Afro- ,&fr@U- U-% 2 +Afro-American ,&fr@U-@'merIk@n K6% 6 +Afro-Americans ,&fr@U-@'merIk@nz Kj% 6 +Afro-Asian ,&fr@U-'eISn OA% 4 +Afro-wig ,&fr@U-'wIg K6$ 3 +Afro-wigs ,&fr@U-'wIgz Kj$ 3 +Agatha '&g@T@ Nl% 3 +Aggie '&gI Nl$ 2 +Agnes '&gnIs Nl% 2 +Agra 'Agr@ Nn$ 2 +Ahmedabad A'med@b&d Nn$ 4 +Airdrie 'e@drI Nn% 2 +Aireborough 'e@b@r@ Nn$ 3 +Airedale 'e@deIl K6$ 2 +Airedales 'e@deIlz Kj$ 2 +Akron '&kr0n Nn$ 2 +Al &l Nl% 1 +Alabama ,&l@'b&m@ Nm% 4 +Alan '&l@n Nl% 2 +Alaska @'l&sk@ Nm% 3 +Albania &l'beInI@ Nm% 4 +Albanian &l'beInI@n M6%,OA% 4 +Albanians &l'beInI@nz Mj% 4 +Albert '&lb@t Nl% 2 +Alberta &l'b3t@ Nm% 3 +Aldershot 'Old@S0t Nn% 3 +Aleppo @'lep@U Nn$ 3 +Alessandria ,&lI's&ndrI@ Nn$ 5 +Alex '&lIks Nl% 2 +Alexander ,&lIg'zAnd@R Nl% 4 +Alexandra ,&lIg'zAndr@ Nl% 4 +Alexandria ,&lIg'zAndrI@ Nn% 5 +Alf &lf Nl% 1 +Alfred '&lfrId Nl% 2 +Alfreton 'OlfrIt@n Nn$ 3 +Alger '&ldZ@R Nn$ 2 +Algeria &l'dZI@rI@ Nm% 4 +Algerian &l'dZI@rI@n K6%,OA% 4 +Algerians &l'dZI@rI@nz Kj% 4 +Ali '&lI Nl% 2 +Alicante &lI'k&ntI Nn$ 4 +Alice '&lIs Nl% 2 +Alison '&lIsn Nl% 3 +All right ,Ol 'raIt W-% 2 +Allah '&l@ No% 2 +Allahabad ,&l@h@'bAd Nn$ 4 +Allan '&l@n Nl% 2 +Allen '&l@n Nl% 2 +Alloa '&l@U@ Nn$ 3 +Alma Mater ,&lm@ 'mAt@R K6$ 4 +Alma Maters ,&lm@ 'mAt@z Kj$ 4 +Alma-Ata ,&lm@-'At@ Nn$ 4 +Almeria ,&lm@'rI@ Nn$ 4 +Alnwick '&nIk Nn$ 2 +Alright ,Ol'raIt W-% 2 +Alsatian &l'seISn K6% 3 +Alsatians &l'seISnz Kj% 3 +Alton 'Olt@n Nn% 2 +Altrincham 'OltrIN@m Nn% 3 +Alvechurch 'OlvtS3tS Nn$ 2 +Amanda @'m&nd@ Nl% 3 +Amazon '&m@z@n K6% 3 +Amazons '&m@z@nz Kj% 3 +America @'merIk@ Nm% 4 +American @'merIk@n K6*,OA* 4 +Americanism @'merIk@nIz@m M6% 6 +Americanisms @'merIk@nIz@mz Mj% 6 +Americans @'merIk@nz Kj% 4 +Amesbury 'eImzb@rI Nn$ 3 +Amharic &m'h&rIk L@% 3 +Amiens '&mI@nz Nn% 3 +Ammanford '&m@nf@d Nn$ 3 +Amsterdam ,&mst@'d&m Nn% 3 +Amy 'eImI Nl% 2 +Ancona &n'k@Un@ Nn$ 3 +Andorra &n'dOr@ Nm% 3 +Andorran &n'dOr@n K6%,OA% 3 +Andorrans &n'dOr@nz Kj% 3 +Andover '&nd@Uv@R Nn% 3 +Andrew '&ndru Nl% 2 +Andy '&ndI Nl% 2 +Angela '&ndZ@l@ Nl% 3 +Angers &n'Ze@z Nn$ 2 +Angie '&ndZI Nl% 2 +Anglican '&NglIk@n K6%,OA% 3 +Anglicans '&NglIk@nz Kj% 3 +Anglo- ,&Ngl@U- U-% 2 +Anglo-Catholic ,&Ngl@U-'k&TlIk K6%,OA% 4 +Anglo-Catholics ,&Ngl@U-'k&TlIks Kj% 4 +Anglo-Indian ,&Ngl@U-'IndI@n K6%,OA% 5 +Anglo-Indians ,&Ngl@U-'IndI@nz Kj% 5 +Anglo-Saxon ,&Ngl@U-'s&ks@n K6%,OA% 4 +Anglo-Saxons ,&Ngl@U-'s&ks@nz Kj% 4 +Anglomania ,&Ngl@U'meInI@ L@$ 5 +Anglophil '&Ngl@UfIl K6$ 3 +Anglophile '&Ngl@UfaIl K6% 3 +Anglophiles '&Ngl@UfaIlz Kj% 3 +Anglophils '&Ngl@UfIlz Kj$ 3 +Anglophobe '&Ngl@Uf@Ub K6$ 3 +Anglophobes '&Ngl@Uf@Ubz Kj$ 3 +Anglophobia ,&Ngl@U'f@UbI@ L@$ 5 +Angola &N'g@Ul@ Nm% 3 +Angolan &N'g@Ul@n K6%,OA% 3 +Angolans &N'g@Ul@nz Kj% 3 +Anguilla &N'gwIl@ Nm$ 3 +Anguillan &N'gwIl@n K6$,OA$ 3 +Anguillans &N'gwIl@nz Kj$ 3 +Angus '&Ng@s Nl% 2 +Anita @'nit@ Nl% 3 +Ankara '&Nk@r@ Nn% 3 +Ann &n Nl% 1 +Annabel '&n@bel Nl% 3 +Annan '&n@n Nn$ 2 +Anne &n Nl% 1 +Annfield '&nfild Nn$ 2 +Annfield Plain ,&nfild 'pleIn Nn$ 3 +Annie '&nI Nl% 2 +Anno Domini ,&n@U 'd0mInaI Z-% 5 +Anon @'n0n Y=% 2 +Anshan '&nSn Nn$ 2 +Anthea '&nTI@ Nl% 3 +Anthony '&nt@nI Nl% 3 +Antigua &n'tig@ Nm% 3 +Antiguan &n'tig@n K6%,OA% 3 +Antiguans &n'tig@nz Kj% 3 +Antony '&nt@nI Nl% 3 +Antrim '&ntrIm Nm% 2 +Antwerp '&ntw3p Nn% 2 +Apeldoorn '&pldOn Nn$ 3 +Apocrypha @'p0krIf@ Lk% 4 +Apr 'eIprIl Y=% 2 +April 'eIpr@l K6%,Nl% 2 +Aprils 'eIpr@lz Kj$ 2 +Aquarius @'kwe@rI@s No% 4 +Arab '&r@b K6% 2 +Arabian @'reIbI@n K6%,OA% 4 +Arabians @'reIbI@nz Kj% 4 +Arabic '&r@bIk L@%,OA% 3 +Arabist '&r@bIst K6$ 3 +Arabists '&r@bIsts Kj$ 3 +Arabs '&r@bz Kj% 2 +Arbroath A'br@UT Nn% 2 +Arcadian A'keIdI@n K6%,OA% 4 +Arcadians A'keIdI@nz Kj% 4 +Ardrossan A'dr0s@n Nn$ 3 +Argentina ,AdZ@n'tin@ Nm% 4 +Argentine 'AdZ@ntaIn Nm% 3 +Argentinian ,AdZ@n'tinI@n K6%,OA% 5 +Argentinians ,AdZ@n'tinI@nz Kj% 5 +Argonaut 'Ag@nOt K6% 3 +Argonauts 'Ag@nOts Kj% 3 +Argus 'Ag@s K7$ 2 +Argus-eyed 'Ag@s-aId OA$ 3 +Arguses 'Ag@sIz Kj$ 3 +Aries 'e@riz No% 2 +Arizona ,&rI'z@Un@ Nm% 4 +Arkansas 'Ak@nsO Nm% 3 +Armadale 'Am@deIl Nn$ 3 +Armageddon ,Am@'gedn No% 4 +Armagh A'mA Nm% 2 +Arnhem 'An@m Nn% 2 +Arnold 'Anld Nl% 2 +Art At Nl% 1 +Arthur 'AT@R Nl% 2 +Artie 'AtI Nl% 2 +Aryan 'e@rI@n K6%,OA% 3 +Aryans 'e@rI@nz Kj% 3 +Ascot '&sk@t Nn% 2 +Ashbourne '&SbOn Nn% 2 +Ashby '&SbI Nn$ 2 +Ashby Woulds ,&SbI 'w@Uldz Nn$ 3 +Ashby de la Zouch ,&SbI d@ l@ 'zuS Nn$ 5 +Ashford '&Sf@d Nn% 2 +Ashington '&SINt@n Nn$ 3 +Ashton-in-Makerfield ,&St@n-In-'meIk@fild Nn$ 6 +Ashton-under-Lyne ,&St@n-Vnd@-'laIn Nn$ 5 +Asian 'eISn K6%,OA% 2 +Asians 'eISnz Kj% 2 +Asiatic ,eISI'&tIk K6%,OA% 4 +Asiatics ,eISI'&tIks Kj% 4 +Askern '&sk@n Nn$ 2 +Aspull '&sp@l Nn$ 2 +Aston '&st@n Nn% 2 +Athenian @'TinI@n K6%,OA% 4 +Athenians @'TinI@nz Kj% 4 +Athens '&TInz Nn% 2 +Atherstone '&T@st@n Nn$ 3 +Athlone &T'l@Un Nn% 2 +Atlanta &t'l&nt@ Nn% 3 +Atlantic @t'l&ntIk No% 3 +Attic '&tIk OA$ 2 +Auckland 'Okl@nd Nm% 2 +Audley 'Odli Nn$ 2 +Audrey 'OdrI Nl% 2 +Aug 'Og@st Y=% 2 +Augsburg 'aUgzb3g Nn$ 2 +August 'Og@st K6%,No% 2 +Augustan O'gVst@n OA% 3 +Augusts 'Og@sts Kj$ 2 +Aussie '0zI K6% 2 +Aussies '0zIz Kj% 2 +Australia 0'streIlI@ Nm% 4 +Australian 0'streIlI@n K6%,OA% 4 +Australians 0'streIlI@nz Kj% 4 +Austria '0strI@ Nm% 3 +Austrian '0strI@n K6%,OA% 3 +Austrians '0strI@nz Kj% 3 +Ave &v Y=% 1 +Aveley 'eIvlI Nn$ 2 +Avignon '&vINj0n Nn% 3 +Avon 'eIv@n Nm% 2 +Aycliffe 'eIklIf Nn$ 2 +Aylesbury 'eIlzb@rI Nn% 3 +Aylesford 'eIlzf@d Nn$ 2 +Ayr e@R Nn% 1 +B bi Ki$ 1 +B Ed ,bi 'ed Y>% 2 +B's biz Kj$ 1 +BA ,bi'eI Y>% 2 +BBC ,bi,bi'si Y>% 3 +BC ,bi'si Y~% 2 +BMA ,bi,em'eI Y>% 3 +BMus ,bi'mVz Y>% 2 +BST ,bi,es'ti Y~% 3 +BSc ,bi,es'si Y>% 3 +BVM ,bi,vi'em Y>% 3 +Babs b&bz Nl% 1 +Backworth 'b&kw@T Nn$ 2 +Bacup 'beIk@p Nn$ 2 +Badajoz 'b&d@h0z Nn$ 3 +Badalona ,b&d@'l@Un@ Nn$ 4 +Baghdad b&g'd&d Nn% 2 +Bahamas b@'hAm@z Nm% 3 +Bahamian b@'hAmI@n K6%,OA% 4 +Bahamians b@'hAmI@nz Kj% 4 +Bahasa b@'hAz@ L@$ 3 +Bahrain bA'reIn Nm% 2 +Bahraini bA'reInI K6$,OA$ 3 +Bahrainis bA'reInIz Kj$ 3 +Bailey 'beIlI No% 2 +Baku 'b&ku Nn$ 2 +Baldock 'bOld0k Nn$ 2 +Baltimore 'bOltImOR Nn% 3 +Banbury 'b&nb@rI Nn% 3 +Bandung 'b&nd@N Nn$ 2 +Bangalore ,b&Ng@'lOR Nn$ 3 +Bangkok b&N'k0k Nn% 2 +Bangladesh ,b&Ngl@'deS Nm% 3 +Bangladeshi ,b&Ngl@'deSI K6%,OA% 4 +Bangladeshis ,b&Ngl@'deSIz Kj% 4 +Bangor 'b&Ng@R Nn% 2 +Bannockburn 'b&n@kb3n Nn% 3 +Bantry 'b&ntrI Nn$ 2 +Bantu b&n'tu K9%,OA% 2 +Bantus b&n'tuz Kj% 2 +Baptist 'b&ptIst K6%,OA% 2 +Baptists 'b&ptIsts Kj% 2 +Baracaldo ,b&r@'k&ld@U Nn$ 4 +Barbadian bA'beIdI@n K6%,OA% 4 +Barbadians bA'beIdI@nz Kj% 4 +Barbados bA'beId@s Nm% 3 +Barbara 'bAbr@ Nl% 2 +Barcelona ,bAsI'l@Un@ Nn% 4 +Bargoed bA'g@UId Nn$ 2 +Bari 'bAri Nn$ 2 +Barking 'bAkIN Nn% 2 +Barnard Castle ,bAn@d 'kAsl Nn% 4 +Barnet 'bAnIt Nn% 2 +Barnoldswick 'bAn@ldzwIk Nn$ 3 +Barnsley 'bAnzlI Nn% 2 +Barnstaple 'bAnst@pl Nn% 3 +Barranquilla ,b&r@n'ki@ Nn$ 4 +Barrhead 'bAhed Nn$ 2 +Barrow-in-Furness ,b&r@U-In-'f3nIs Nn% 5 +Barry 'b&rI Nl% 2 +Bart bAt Nl$,Y:$ 1 +Bartholomew bA'T0l@mju Nl% 4 +Barton-upon-Humber ,bAt@n-@p0n-'hVmb@R Nn$ 6 +Basel 'bAzl Nn% 2 +Basil 'b&zl Nl% 2 +Basildon 'b&zIld@n Nn% 3 +Basingstoke 'beIziNst@Uk Nn% 3 +Bass b&s L@$ 1 +Bath bAT Nn% 1 +Bath-chair 'bAT-tSe@R K6% 2 +Bath-chairs 'bAT-tSe@z Kj% 2 +Bathgate 'bATgeIt Nn$ 2 +Batley 'b&tlI Nn% 2 +Beaconsfield 'bek@nzfild Nn% 3 +Bearsden 'be@zd@n Nn$ 2 +Beatrice 'bI@trIs Nl% 3 +Beaujolais 'b@UZ@leI L@% 3 +Beaumaris b@U'm&rIs Nn% 3 +Bebington 'bebINt@n Nn$ 3 +Beccles 'beklz Nn% 2 +Beddau 'beDaU Nn$ 2 +Bedford 'bedf@d Nn% 2 +Bedfordshire 'bedf@dS@R Nm% 3 +Bedlington 'bedlINt@n Nn$ 3 +Bedouin 'bedUIn K9% 3 +Beduin 'bedUIn K9$ 3 +Bedwas 'bedw0z Nn$ 2 +Beirut ,beI'rut Nn% 2 +Beith biT Nn$ 1 +Belem 'bel@m Nn$ 2 +Belfast 'belfAst Nn% 2 +Belgian 'beldZ@n K6%,OA% 2 +Belgians 'beldZ@nz Kj% 2 +Belgium 'beldZ@m Nm% 2 +Belgrade ,bel'greId Nn% 2 +Belinda b@'lInd@ Nl% 3 +Bella 'bel@ Nl% 2 +Belle bel Nl% 1 +Bellshill 'belzhIl Nn$ 2 +Belo Horizonte ,bel@U h0rI'z0ntI Nn$ 6 +Belper 'belp@R Nn% 2 +Ben ben Nl% 1 +Benedictine ,benI'dIktIn M6%,OA% 4 +Benedictines ,benI'dIktInz Mj% 4 +Bengali beN'gOlI M6%,OA% 3 +Bengalis beN'gOlIz Mj% 3 +Benin be'nIn Nm% 2 +Beninese benI'niz K9%,OA% 3 +Benjamin 'bendZ@mIn Nl% 3 +Benny 'benI Nl% 2 +Benzedrine 'benz@drin K6% 3 +Benzedrines 'benz@drinz Kj$ 3 +Beograd 'beI@Ugr&d Nn$ 3 +Bergamo b3'gAm@U Nn$ 3 +Bergen 'b3g@n Nn% 2 +Berkhamsted 'b3k@mstId Nn% 3 +Berkshire 'bAkS@R Nm% 2 +Berlin b3'lIn Nn% 2 +Bermuda b@'mjud@ Nm% 3 +Bermudan b@'mjud@n K6$,OA$ 3 +Bermudans b@'mjud@nz Kj$ 3 +Bern b3n Nn$ 1 +Bernard 'b3n@d Nl% 2 +Bernie 'b3nI Nl% 2 +Bert b3t Nl% 1 +Bertha 'b3T@ Nl% 2 +Bertie 'b3tI Nl% 2 +Berwick-upon-Tweed ,berIk-@p0n-'twid Nn% 5 +Beryl 'ber@l Nl% 2 +Bess bes Nl% 1 +Bessie 'besI Nl% 2 +Bethune be'Tun Nn$ 2 +Betsy 'betsI Nl% 2 +Betty 'betI Nl% 2 +Beverley 'bev@lI Nn% 3 +Bewdley 'bjudlI Nn$ 2 +Bexhill ,beks'hIl Nn% 2 +Bexley 'bekslI Nn% 2 +Bhutan bu'tAn Nm% 2 +Bhutani bu'tAnI K6$,OA$ 3 +Bhutanis bu'tAnIz Kj$ 3 +Bible 'baIbl K6% 2 +Bibles 'baIblz Kj% 2 +Bicester 'bIst@R Nn% 2 +Biddulph 'bIdVlf Nn$ 2 +Bideford 'bIdIf@d Nn% 3 +Bielefeld 'bil@felt Nn$ 3 +Biggleswade 'bIglzweId Nn% 3 +Bilbao bIl'bA@U Nn% 3 +Bill bIl Nl% 1 +Billericay bIl@'rIkI Nn% 4 +Billington 'bIlINt@n Nn$ 3 +Billy 'bIlI Nl% 2 +Bingley 'bINlI Nn% 2 +Birkenhead 'b3k@nhed Nn% 3 +Birstall 'b3stOl Nn$ 2 +Birtley 'b3tlI Nn$ 2 +Bishop Auckland ,bIS@p 'Okl@nd Nn% 4 +Bishop's Cleeve ,bIS@ps 'kliv Nn$ 3 +Bishop's Stortford ,bIS@p 'stOf@d Nn% 4 +Bishopbriggs 'bIS@pbrIgz Nn$ 3 +Blackburn 'bl&kb3n Nn% 2 +Blackhall 'bl&khOl Nn$ 2 +Blackpool 'bl&kpul Nn% 2 +Blackshirt 'bl&kS3t K6$ 2 +Blackshirts 'bl&kS3ts Kj$ 2 +Blackwood 'bl&kwUd Nn$ 2 +Blaenau-Ffestiniog ,bleIn@-fes'tInI0g Nn% 6 +Blaenavon bleI'n&v@n Nn$ 3 +Blaengwrach bleIN'grAk Nn$ 2 +Blaina 'blaIn@ Nn$ 2 +Blairgowrie ble@'gaUrI Nn$ 3 +Blantyre bl&n'teI@R Nn% 2 +Bldg 'bIldIN Y=% 2 +Bldgs 'bIldINz Y=% 2 +Bletchley 'bletSlI Nn% 2 +Blidworth 'blIdw@T Nn$ 2 +Blighty 'blaItI Ki% 2 +Blvd 'bul@vAd Y>% 3 +Blyth blaI Nn$ 1 +Bo'ness ,b@U'nes Nn$ 2 +Bob b0b Nl% 1 +Bobby 'b0bI Nl% 2 +Boche b0S Kj$,OA$ 1 +Bochum 'b0k@m Nn$ 2 +Bodmin 'b0dmIn Nn% 2 +Boer 'b@U@R K6%,OA% 2 +Boers 'b@U@z Kj% 2 +Bognor 'b0gn@R Nn% 2 +Bognor Regis ,b0gn@ 'ridZIs Nn% 4 +Bogota ,b0g@'tA Nn% 3 +Boldon 'b0ld@n Nn$ 2 +Bolivia b@'lIvI@ Nm% 4 +Bolivian b@'lIvI@n K6%,OA% 4 +Bolivians b@'lIvI@nz Kj% 4 +Bollington 'b0lINt@n Nn$ 3 +Bologna b@'l0nj@ Nn% 3 +Bolshevik 'b0lS@vIk K6% 3 +Bolsheviks 'b0lS@vIks Kj% 3 +Bolsover 'b0ls@Uv@R Nn% 3 +Bolton 'b@Ult@n Nn% 2 +Bolton-le-Sands ,b@Ult@n-lI-'s&ndz Nn% 4 +Bolzano b0l'zAn@U Nn$ 3 +Bombay b0m'beI Nn% 2 +Bonn b0n Nn% 1 +Bonnybridge 'b0nIbrIdZ Nn$ 3 +Bonnyrigg 'b0nIrIg Nn$ 3 +Bootle 'butl Nn% 2 +Bordeaux bO'd@U L@%,Nn% 2 +Borders 'bOd@z Nm% 2 +Bordon 'bOd@n Nn$ 2 +Boris 'b0rIs Nl% 2 +Boston 'b0st@n Nn% 2 +Botswana b0'tswAn@ Nm% 3 +Bottrop 'b0tr@p Nn$ 2 +Bourne bOn Nn$ 1 +Bournemouth 'bOnm@T Nn% 2 +Bow Bells ,b@U 'belz Kj% 2 +Bowburn 'b@Ub@n Nn$ 2 +Boxing Day 'b0ksIN deI K6%,No% 3 +Boxing Days 'b0ksIN deIz Kj$ 3 +Bracknell 'br&kn@l Nn% 2 +Bradford 'br&df@d Nn% 2 +Bradford-on-Avon ,br&df@d-0n-'eIv@n Nn% 5 +Brahmin 'brAmIn K6% 2 +Brahmins 'brAmInz Kj% 2 +Braintree 'breIntri Nn% 2 +Branderburgh 'br&nd@b@r@ Nn$ 4 +Brasilia br@'zIlI@ Nn% 4 +Bratislava ,br&tI'slAv@ Nn% 4 +Braunschweig 'brOnSveIg Nn% 2 +Braunton 'brOnt@n Nn$ 2 +Brazil br@'zIl Nm% 2 +Brazilian br@'zIlI@n K6%,OA% 4 +Brazilians br@'zIlI@nz Kj% 4 +Breaston 'brist@n Nn$ 2 +Brecknock 'brekn0k Nn% 2 +Breda 'brid@ Nn$ 2 +Breedsall 'bridsOl Nn$ 2 +Bremen 'breIm@n Nn% 2 +Bremerhaven 'breIm@hAv@n Nn% 4 +Bren bren K6$ 1 +Bren-gun 'bren-gVn K6% 2 +Bren-guns 'bren-gVnz Kj% 2 +Brenda 'brend@ Nl% 2 +Brens brenz Kj$ 1 +Brent brent Nn% 1 +Brentwood 'brentwUd Nn% 2 +Brescia 'breSI@ Nn$ 3 +Brest brest Nn$ 1 +Brian 'braI@n Nl% 2 +Bricket Wood ,brIkIt 'wUd Nn% 3 +Bridgend brIdZ'end Nn% 2 +Bridget 'brIdZIt Nl% 2 +Bridgnorth 'brIdZnOT Nn% 2 +Bridgwater 'brIdZwOt@R Nn% 3 +Bridlington 'brIdlINt@n Nn% 3 +Bridport 'brIdpOt Nn% 2 +Brig brIg Y:% 1 +Brigadier ,brIg@'dI@R K6% 4 +Brigadiers ,brIg@'dI@z Kj% 4 +Brighouse 'brIghaUs Nn% 2 +Brightlingsea 'braItlINsi Nn% 3 +Brighton 'braItn Nn% 2 +Brisbane 'brIzb@n Nn% 2 +Bristol 'brIstl Nn% 2 +Brit brIt K6% 1 +Britain 'brItn Nm% 2 +Britannic brI't&nIk OA% 3 +British 'brItIS OA% 2 +Britisher 'brItIS@R K6% 3 +Britishers 'brItIS@z Kj% 3 +Briton 'brItn K6%,OA% 2 +Britons 'brItnz Kj% 2 +Brits brIts Kj% 1 +Brixham 'brIks@m Nn% 2 +Brno 'b3n@U Nn% 2 +Bromley 'br0mlI Nn% 2 +Bromsgrove 'br0mzgr@Uv Nn% 2 +Bros br0s Y=% 1 +Broughton 'brOtn Nn$ 2 +Broxburn 'br0ksb3n Nn$ 2 +Bruce brus Nl% 1 +Bruges bruZ Nn% 1 +Brunei 'brunaI Nm% 2 +Bruneian 'brunaI@n K6$,OA$ 3 +Bruneians 'brunaI@nz Kj$ 3 +Brunswick 'brVnzwIk Nm% 2 +Brussels 'brVslz Nn% 2 +Bryan 'braI@n Nl% 2 +Bt bAt Y:% 1 +Bucarest ,bjuk@'rest Nn% 3 +Buckhaven 'bVkheIvn Nn$ 3 +Buckie 'bVkI Nn$ 2 +Buckingham 'bVkIN@m Nn% 3 +Buckinghamshire 'bVkIN@mS@R Nm% 4 +Buckley 'bVklI Nn$ 2 +Bucksburn 'bVksb3n Nn$ 2 +Budapest 'bjud@pest Nn% 3 +Buddhism 'bUdIz@m L@% 3 +Buddhist 'bUdIst K6% 2 +Buddhists 'bUdIsts Kj% 2 +Buenos Aires ,bwen@s 'eI@rIz Nn% 4 +Buffalo 'bVf@l@U Nn% 3 +Bulgaria bVl'ge@rI@ Nm% 4 +Bulgarian bVl'ge@rI@n K6%,OA% 4 +Bulgarians bVl'ge@rI@nz Kj% 4 +Bulkington 'bVlkINtn Nn$ 3 +Bunsen 'bVnsn K6% 2 +Bunsens 'bVnsnz Kj$ 2 +Burberries 'b3b@rIz Kj$ 3 +Burberry 'b3b@rI K8% 3 +Burgess 'b3dZIs Nn% 2 +Burgos 'b3g0s Nn$ 2 +Burgundy 'b3g@ndI L@% 3 +Burley 'b3lI Nn$ 2 +Burma 'b3m@ Nm% 2 +Burmese b3'miz M9%,OA% 2 +Burnham-on-sea ,b3n@m-0n-'si Nn% 4 +Burnley 'b3nlI Nn% 2 +Burntisland b3nt'aIl@nd Nn$ 3 +Burntwood 'b3ntwUd Nn$ 2 +Burry Port 'bVrI pOt Nn$ 3 +Burscough 'b3sk@U Nn$ 2 +Burton-upon-Trent ,b3tn-@p0n-'trent Nn% 5 +Burundi bU'rUndI Nm% 3 +Burundian bU'rUndI@n K6$,OA$ 4 +Burundians bU'rUndI@nz Kj$ 4 +Bury 'berI Nn% 2 +Bury St. Edmunds ,berI snt 'edm@nz Nn% 5 +Bushman 'bVSm@n Ki% 2 +Bushmen 'bVSm@n Kj% 2 +Buxton 'bVkst@n Nn% 2 +C si Ki$ 1 +C of E ,si @v 'i Y>% 3 +C's siz Kj$ 1 +C-in-C ,siIn'si Y:% 3 +CBI ,si,bi'aI Y>% 3 +CD ,si'di Y>% 2 +CIA ,sI,aI'eI Y>% 3 +CID ,si,aI'di Y>% 3 +CO ,si'@U Y>% 1 +COD ,si@U'di Y~$ 3 +Cadiz k@'dIz Nn% 2 +Caen keIn Nn% 1 +Caerleon kA'li@n Nn% 3 +Caernarfon k@'nAv@n Nn% 3 +Caerphilly k@'fIlI Nn% 3 +Caesar 'siz@R K6% 2 +Caesarian sI'ze@rI@n OA% 4 +Caesars 'siz@z Kj% 2 +Cagliari k&'ljArI Nn$ 3 +Cairo 'kaIr@U Nn% 2 +Calcutta k&l'kVt@ Nn% 3 +Caldicot 'kOldIk0t Nn$ 3 +Cali 'kAlI Nn$ 2 +California ,k&lI'fOnI@ Nm% 4 +Californian ,k&lI'fOnI@n K6%,OA% 5 +Californians ,k&lI'fOnI@nz Kj% 5 +Calne kAn Nn$ 1 +Calor 'k&l@ No% 2 +Calvaries 'k&lv@rIz Kj$ 3 +Calvary 'k&lv@rI K8% 3 +Calverton 'k&lv@t@n Nn$ 3 +Calvinism 'k&lvInIz@m L@% 4 +Calvinist 'k&lvInIst K6% 3 +Calvinists 'k&lvInIsts Kj% 3 +Cambodia k&m'b@UdI@ Nm% 4 +Cambodian k&m'b@UdI@n K6%,OA% 4 +Cambodians k&m'b@UdI@nz Kj% 4 +Cambourne 'k&mbOn Nn$ 2 +Cambridge 'keImbrIdZ Nn% 2 +Cambridgeshire 'keImbrIdZ+S@R Nm% 3 +Cambuslang 'k&mb@sl&N Nn$ 3 +Camden 'k&md@n Nn% 2 +Camembert 'k&m@mbe@R K6% 3 +Camemberts 'k&m@mbe@z Kj$ 3 +Cameroon ,k&m@'run Nm% 3 +Cameroonian ,k&m@'runI@n K6%,OA% 5 +Cameroonians ,k&m@'runI@nz Kj% 5 +Campbeltown 'k&mb@ltaUn Nn% 3 +Canada 'k&n@d@ Nm% 3 +Canadian k@'neIdI@n K6%,OA% 4 +Canadians k@'neIdI@nz Kj% 4 +Canberra 'k&nb@r@ Nn% 3 +Cancer 'k&ns@R No% 2 +Cannes k&n Nn% 1 +Cannock 'k&n@k Nn% 2 +Cantab 'k&nt&b Y~$ 2 +Canterbury 'k&nt@brI Nn% 3 +Canton ,k&n't0n Nn% 2 +Canuck k@'nUk K6$ 2 +Canucks k@'nUks Kj$ 2 +Canvey 'k&nvI Nn% 2 +Canvey Island ,k&nvI 'aIl@nd Nn% 4 +Cape Town 'keIp taUn Nn% 2 +Capitol 'k&pItl K6$ 3 +Capitols 'k&pItlz Kj$ 3 +Capricorn 'k&prIkOn No% 3 +Capt k&pt Y:% 1 +Caracas k@'r&k@s Nn% 3 +Cardenden 'kAdnd@n Nn$ 3 +Cardiff 'kAdIf Nn% 2 +Cardigan 'kAdIg@n Nn% 3 +Carl kAl Nl% 1 +Carlisle kA'laIl Nn% 2 +Carlow 'kAl@U Nm$ 2 +Carluke kA'luk Nn$ 2 +Carmarthen k@'mAD@n Nn% 3 +Carmelite 'kAm@laIt K6%,OA% 3 +Carmelites 'kAm@laIts Kj% 3 +Carnforth 'kAnf@T Nn% 2 +Carnoustie kA'nustI Nn% 3 +Carol 'k&r@l Nl% 2 +Carole 'k&r@l Nl% 2 +Carolina ,k&r@'laIn@ Nm% 4 +Caroline 'k&r@laIn Nl% 3 +Carolyn 'k&r@lIn Nl% 3 +Carrie 'k&rI Nl% 2 +Carron 'k&r@n Nn$ 2 +Cartagena ,kAt@'dZin@ Nn$ 4 +Casablanca ,k&s@'bl&Nk@ Nn% 4 +Castleford 'kAslf@d Nn% 3 +Catalan 'k&t@l&n L@%,OA% 3 +Catania k@'teInI@ Nn$ 4 +Cath k&T Nl% 1 +Catherine 'k&TrIn Nl% 2 +Catholic 'k&TlIk K6%,OA% 2 +Catholicism k@'T0lIsizm L@% 5 +Catholics 'k&TlIks Kj% 2 +Cathy 'k&TI Nl% 2 +Caucasian kO'keIzI@n K6%,OA% 4 +Caucasians kO'keIzI@nz Kj% 4 +Cavan 'k&v@n Nm$ 2 +Cdr k@'mAnd@R Y:% 3 +Cdre 'k0m@dOR Y:% 3 +Cecil 'sesl Nl% 2 +Cecilia sI'silI@ Nl% 4 +Cecily 'ses@lI Nl% 3 +Cedric 'sedrIk Nl% 2 +Cefn-mawr ,kefn-'maUR Nn$ 3 +Celia 'silI@ Nl% 3 +Celsius 'selsI@s Z-% 3 +Celt kelt K6% 1 +Celtic 'keltIk K6%,OA% 2 +Celtics 'keltIks Kj$ 2 +Celts kelts Kj% 1 +Cesarean sI'ze@rI@n OA% 4 +Ceylon sI'l0n Nm% 2 +Chad tS&d Nm% 1 +Chadian 'tS&dI@n K6$,OA$ 3 +Chadians 'tS&dI@nz Kj$ 3 +Chalfont 'tS&lf@nt Nn% 2 +Chalfont St Giles ,tS&lf@nt snt 'dZaIlz Nn% 4 +Chalfont St Peter ,tS&lf@nt snt 'pit@R Nn% 5 +Changchun ,tS&N'tSUn Nn$ 2 +Changsha ,tS&N'SA Nn$ 2 +Chard tSAd Nn$ 1 +Charles tSAlz Nl% 1 +Charleston 'tSAlst@n K6% 2 +Charlestons 'tSAlst@nz Kj$ 2 +Charlie 'tSAlI Nl% 2 +Charlotte 'SAl@t Nl% 2 +Chartism 'tSAtIz@m L@% 3 +Chartist 'tSAtIst K6% 2 +Chartists 'tSAtIsts Kj% 2 +Charybdis k@'rIbdIs No% 3 +Chas tS&z Nl% 1 +Chatham 'tS&t@m Nn% 2 +Cheadle 'tSidl Nn% 2 +Cheddar 'tSed@R L@% 2 +Cheers tSI@z W-% 1 +Chelmsford 'tSelmzf@d Nn% 2 +Chelsea 'tSelsI Nn% 2 +Cheltenham 'tSeltn@m Nn% 2 +Chelyabinsk ,tSIlI@'bInsk Nn$ 3 +Chengchow ,tSeN'tSaU Nn$ 2 +Chengtu ,tSeN'tu Nn$ 2 +Chepstow 'tSepst@U Nn% 2 +Chesham 'tSeS@m Nn% 2 +Cheshire 'tSeS@R Nm% 2 +Chester 'tSest@R Nn% 2 +Chester-le-Street ,tSest@-lI-'strit Nn% 4 +Chesterfield 'tSest@fild Nn% 3 +Chianti kI'&ntI L@% 3 +Chicago SI'kAg@U Nn% 3 +Chichester 'tSItSIst@R Nn% 3 +Chile 'tSIlI Nm% 2 +Chilean 'tSIlI@n K6%,OA% 3 +Chileans 'tSIlI@nz Kj% 3 +China 'tSaIn@ Nm% 2 +Chinchow ,tSIn'tSaU Nn$ 2 +Chinese tSaI'niz M9%,OA% 2 +Chippendale 'tSIp@ndeIl K6% 3 +Chippendales 'tSIp@ndeIlz Kj% 3 +Chippenham 'tSIpn@m Nn% 3 +Chloe 'kl@UI Nl% 2 +Chopwell 'tS0pwIl Nn$ 2 +Chorley 'tSOlI Nn% 2 +Chris krIs Nl% 1 +Chrissie 'krIsI Nl% 2 +Chrissy 'krIsI Nl% 2 +Christ kraIst No% 1 +Christchurch 'kraIstS3tS Nn% 2 +Christendom 'krIsnd@m K6% 3 +Christendoms 'krIsnd@mz Kj$ 3 +Christian 'krIstS@n K6%,Nl%,OA% 2 +Christianity ,krIstI'&nItI L@% 5 +Christians 'krIstS@nz Kj% 2 +Christina krI'stin@ Nl% 3 +Christine 'krIstin Nl% 2 +Christlike 'kraIslaIk OA% 2 +Christmas 'krIsm@s K7%,No% 2 +Christmas-box 'krIsm@s-b0ks K7% 3 +Christmas-boxes 'krIsm@s-b0ksIz Kj% 4 +Christmas-tree 'krIsm@s-tri K6% 3 +Christmas-trees 'krIsm@s-triz Kj% 3 +Christmases 'krIsm@sIz Kj% 3 +Christmastide 'krIsm@staId K6% 3 +Christmastides 'krIsm@staIdz Kj$ 3 +Christmastime 'krIsm@staIm K6% 3 +Christmastimes 'krIsm@staImz Kj$ 3 +Christopher 'krIst@f@R Nl% 3 +Chungking ,tSUN'kIN Nn$ 2 +Cincinnati ,sInsI'n&tI Nn% 4 +Cinderella ,sInd@'rel@ K6% 4 +Cinderellas ,sInd@'rel@z Kj$ 4 +Cinderford 'sInd@f@d Nn$ 3 +Cirencester 'saIr@nsest@R Nn% 4 +Civvy Street 'sIvI strit No$ 3 +Clackmannon kl&k'm&n@n Nn$ 3 +Clacton 'kl&kt@n Nn% 2 +Clare kle@R Nl% 1 +Clarkston 'klAkst@n Nn$ 2 +Clarrie 'kl&rI Nl$ 2 +Classics 'kl&sIks Lk% 2 +Claud klOd Nl% 1 +Claude klOd Nl% 1 +Clay Cross ,kleI 'kr0s Nn$ 2 +Cleator Moor ,klit@ 'mU@R Nn$ 3 +Cleethorpes 'kliTOps Nn% 2 +Clem klem Nl% 1 +Clement 'klem@nt Nl% 2 +Clermont-Ferrand ,kle@m0N-fe'r0N Nn% 4 +Clevedon 'klivd@n Nn% 2 +Cleveland 'klivl@nd Nm% 2 +Cliff klIf Nl% 1 +Clifford 'klIf@d Nl% 2 +Clitheroe 'klID@r@U Nn% 3 +Clive klaIv Nl% 1 +Clowne klaUn Nn$ 1 +Clwyd 'kluId Nm% 2 +Clydach 'klId&k Nn$ 2 +Clydebank 'klaIdb&Nk Nn% 2 +Co k@U Y>% 1 +Co-op k@U-'0p Y>% 2 +Coalville 'k@UlvIl Nn$ 2 +Coatbridge 'k@UtbrIdZ Nn$ 2 +Cobham 'k0b@m Nn% 2 +Coca-Cola ,k@Uk@-'k@Ul@ M6% 4 +Coca-Colas ,k@Uk@-'k@Ul@z Mj% 4 +Cockermouth 'k0k@m@T Nn% 3 +Codsall 'k0ds@l Nn$ 2 +Coimbatore ,kOImb@'tOR Nn$ 4 +Col 'k3nl Y:% 2 +Colchester 'k0ltSest@R Nn% 3 +Coleshill 'k@UlzhIl Nn$ 2 +Colin 'k0lIn Nl% 2 +Coll 'k0lIdZ Y=% 2 +Colne k@Un Nn$ 1 +Cologne k@'l@Un Nn% 2 +Colombia k@'l0mbI@ Nm% 4 +Colombian k@'l0mbI@n K6%,OA% 4 +Colombians k@'l0mbI@nz Kj% 4 +Colombo k@'l0mb@U Nn% 3 +Colorado ,k0l@'rAd@U Nm% 4 +Columbia k@'lVmbI@ Nm% 4 +Columbus k@'lVmb@s Nn% 3 +Colwyn Bay ,k0lwIn 'beI Nn% 3 +Confucian k@n'fjuSn K6%,OA% 3 +Confucians k@n'fjuSnz Kj% 3 +Congleton 'k0Nglt@n Nn% 3 +Congo 'k0Ng@U Nm% 2 +Congolese ,k0Ng@'liz K9%,OA% 3 +Congregational ,k0NgrI'geIS@n@l OA% 5 +Connah's Quay ,k0n@z 'ki Nn$ 3 +Connaught 'k0nOt Nm% 2 +Connecticut k@'netIk@t Nm% 4 +Connie 'k0nI Nl% 2 +Cons k0ns Y~% 1 +Consett 'k0nsIt Nn$ 2 +Constance 'k0nst@ns Nl% 2 +Conwy 'k0nweI Nn% 2 +Cookham 'kUk@m Nn% 2 +Copenhagen ,k@Up@n'heIg@n Nn% 4 +Copernican k@'p3nIk@n OA% 4 +Coppull 'k0p@l Nn$ 2 +Copt k0pt K6$,OA$ 1 +Coptic 'k0ptIk K6% 2 +Coptics 'k0ptIks Kj% 2 +Copts k0pts Kj$ 1 +Corby 'kObI Nn% 2 +Cordoba 'kOd@b@ Nn% 3 +Corinthian k@'rInTI@n K6%,OA% 4 +Corinthians k@'rInTI@nz Kj% 4 +Cork kOk Nn% 1 +Cornwall 'kOnwOl Nm% 2 +Corp kOp Y=% 1 +Corps Diplomatique ,kO ,dIpl@m&'tik Ki% 5 +Corsham 'kOS@m Nn$ 2 +Corunna k@'rVn@ Nn% 3 +Cosenza k@'senz@ Nn$ 3 +Costa Rica ,k0st@ 'rik@ Nm% 4 +Costa Rican ,k0st@ 'rik@n K6%,OA% 4 +Costa Ricans ,k0st@ 'rik@nz Kj% 4 +Coventry 'k0vntrI Nn% 3 +Cowdenbeath ,kaUd@n'biT Nn% 3 +Cowes kaUz Nn% 1 +Cpl 'kOpr@l Y:% 2 +Cramlington 'kr&mlINt@n Nn$ 3 +Crawley 'krOlI Nn% 2 +Creole 'kri@Ul M6%,OA% 2 +Creoles 'kri@Ulz Mj$ 2 +Cres krez Y=% 1 +Creswell 'kreswIl Nn$ 2 +Crewe kru Nn% 1 +Crieff krif Nn$ 1 +Croesus 'kris@s Nl% 2 +Cromer 'kr@Um@R Nn% 2 +Crook krUk Nn$ 1 +Crosby 'kr0sbI Nn% 2 +Crowborough 'kr@Ub@r@ Nn% 3 +Crowthorne 'kr@UTOn Nn% 2 +Croydon 'kroId@n Nn% 2 +Cuba 'kjub@ Nm% 2 +Cuban 'kjub@n K6%,OA% 2 +Cubans 'kjub@nz Kj% 2 +Cudworth 'kVdw@T Nn$ 2 +Cuffley 'kVflI Nn$ 2 +Culcheth 'kVltS@T Nn$ 2 +Cumberland 'kVmb@l@nd Nm% 3 +Cumbernauld 'kVmb@nOld Nn% 3 +Cumbria 'kVmbrI@ Nm% 3 +Cumnock 'kVmn@k Nn$ 2 +Cupar 'kup@R Nn$ 2 +Cupid 'kjupId Nl% 2 +Curitiba ,kU@rI'tib@ Nn$ 4 +Currie 'kVrI Nn$ 2 +Cwmbran kum'brAn Nn% 2 +Cyclopean saI'kl@UpI@n OA% 4 +Cynthia 'sInTI@ Nl% 3 +Cyprian 'sIprI@n OA$ 3 +Cypriot 'sIprI@t K6%,OA% 3 +Cypriots 'sIprI@ts Kj% 3 +Cyprus 'saIpr@s Nm% 2 +Cyril 'sIr@l Nl% 2 +Cyrillic sI'rIlIk OA% 3 +Czech tSek M6%,OA% 1 +Czechoslovak ,tSek@U'sl@Uv&k K6%,OA% 4 +Czechoslovakia ,tSek@Usl@'v&kI@ Nm% 6 +Czechoslovakian ,tSek@Usl@'v&kI@n K6%,OA% 6 +Czechoslovakians ,tSek@Usl@'v&kI@nz Kj% 6 +Czechoslovaks ,tSek@U'sl@Uv&ks Kj% 4 +Czechs tSeks Mj% 1 +D di Ki$ 1 +D's diz Kj$ 1 +D-day 'di-deI No% 2 +DDT ,di,di'ti Y}% 3 +DES ,di,i'es Y>% 3 +DG ,di'dZi Y:$ 2 +DIY ,di,aI'waI Y}% 3 +DJ ,di'dZeI Y>% 2 +DJs ,di'dZeIz Y)% 2 +DLitt ,di'lIt Y>$ 2 +DM 'doItSmAk Y]% 2 +DNA ,di,en'eI Y}% 3 +DPhil ,di'fIl Y>% 2 +DSS ,di,es'es Y>% 3 +DSc ,di,es'si Y>% 3 +DTI ,di,ti'aI Y>% 3 +DTs ,di'tiz Y)$ 2 +Dacca 'd&k@ Nn% 2 +Dail Eireann ,doIl 'e@r@n Ki% 3 +Daisy 'deIzI Nl% 2 +Dakar 'd&k@R Nn$ 2 +Dakota d@'k@Ut@ Nm% 3 +Dalkeith d&l'kiT Nn% 2 +Dallas 'd&l@s Nn% 2 +Dalry d&l'raI Nn$ 2 +Dalton 'd0ltn Nn$ 2 +Damascus d@'m&sk@s Nn% 3 +Damocles 'd&m@kliz Nl% 3 +Dan d&n Nl% 1 +Dane deIn K6% 1 +Danes deInz Kj% 1 +Daniel 'dAnI@l K6%,Nl% 2 +Daniels 'dAnI@lz Kj% 2 +Danish 'deInIS L@%,OA% 2 +Danny 'd&nI Nl% 2 +Daphne 'd&fnI Nl% 2 +Darby 'dAbI Nl$ 2 +Darenth 'd&r@nT Nn$ 2 +Darfield 'dAfild Nn$ 2 +Darkey 'dAkI K6$ 2 +Darkeys 'dAkIz Kj$ 2 +Darkie 'dAkI K6% 2 +Darkies 'dAkIz Kj% 2 +Darky 'dAkI K8% 2 +Darlington 'dAlINt@n Nn% 3 +Darmstadt 'dAmst&t Nn% 2 +Dartford 'dAtf@d Nn% 2 +Dartmouth 'dAtm@T Nn% 2 +Darwen 'dAwIn Nn% 2 +Dave deIv Nl% 1 +Daventry 'd&vIntrI Nn% 3 +Davey 'deIvI Nl% 2 +David 'deIvId Nl% 2 +Dawley 'dOlI Nn$ 2 +Dawlish 'dOlIS Nn% 2 +Dawn dOn Nl% 1 +Dayton 'deItn Nn$ 2 +Deal dil Nn$ 1 +Dean din Nl% 1 +Debbie 'debI Nl% 2 +Debby 'debI Nl% 2 +Deborah 'deb@r@ Nl% 3 +Dec dek Y=% 1 +Decalogue 'dek@l0g K6% 3 +Decalogues 'dek@l0gz Kj$ 3 +December dI'semb@R K6%,No% 3 +Decembers dI'semb@z Kj$ 3 +Deirdre 'dI@drI Nl% 2 +Delaware 'del@we@R Nm% 3 +Delhi 'delI Nn% 2 +Delphic 'delfIk OA% 2 +Denain d@'neIn Nn$ 2 +Denbigh 'denbI Nn$ 2 +Denis 'denIs Nl% 2 +Denise d@'niz Nl% 2 +Denmark 'denmAk Nm% 2 +Dennis 'denIs Nl% 2 +Denny 'denI Nn% 2 +Denver 'denv@R Nn% 2 +Dept dI'pAtm@nt Y=% 3 +Derby 'dAbI Nn% 2 +Derbyshire 'dAbIS@R Nm% 3 +Dereham 'dI@r@m Nn$ 2 +Derek 'derIk Nl% 2 +Des dez Nl% 1 +Desmond 'dezm@nd Nl% 2 +Dessau 'desaU Nn$ 2 +Detroit dI'troIt Nn% 2 +Deutschmark 'doItSmAk K6% 2 +Deutschmarks 'doItSmAks Kj% 2 +Devizes dI'vaIzIz Nn% 3 +Devon 'devn Nm% 2 +Dewsbury 'djuzb@rI Nn% 3 +Di daI Nl% 1 +Diana daI'&n@ Nl% 3 +Diaspora daI'&sp@r@ K6% 4 +Diasporas daI'&sp@r@z Kj$ 4 +Dick dIk Nl% 1 +Dicky 'dIkI Nl% 2 +Dictaphone 'dIkt@f@Un K6% 3 +Dictaphones 'dIkt@f@Unz Kj$ 3 +Didcot 'dIdk@t Nn% 2 +Dijon 'diZ0N Nn% 2 +Dingle 'dINgl Nn% 2 +Dinnington 'dInINt@n Nn$ 3 +Dip dIp Y>% 1 +Dip Ed ,dIp 'ed Y>% 2 +Dir dI'rekt@R Y>% 3 +Dives 'daIviz Nl$ 2 +Djibouti dZI'butI Nm% 3 +Djiboutian dZI'butI@n K6$,OA$ 4 +Djiboutians dZI'butI@nz Kj$ 4 +Dnepropetrovsk nI,pr0pI'tr0fsk Nn$ 4 +DoE ,di,@U'i Y>% 3 +Dolly 'd0lI Nl% 2 +Domesday 'dumzdeI No% 2 +Dominic 'd0mInik Nl% 3 +Dominica d@'mInIk@ Nm% 4 +Dominican d@'mInIk@n K6%,OA% 4 +Dominicans d@'mInIk@nz Kj% 4 +Don d0n Nl% 1 +Donald 'd0nld Nl% 2 +Doncaster 'd0Nk&st@R Nn% 3 +Donegal 'd0nIgOl Nm% 3 +Donetsk d@'netsk Nn$ 2 +Doomsday 'dumzdeI No% 2 +Dora 'dOr@ Nl% 2 +Dorchester 'dOtSIst@R Nn% 3 +Dordrecht 'dOdrIkt Nn$ 2 +Doreen 'dOrin Nl% 2 +Doric 'd0rIk OA$ 2 +Doris 'd0rIs Nl% 2 +Dorking 'dOkIN Nn% 2 +Dorothy 'd0r@TI Nl% 3 +Dorset 'dOsIt Nm% 2 +Dortmund 'dOtm@nd Nn% 2 +Douai 'dueI Nn$ 2 +Doug dVg Nl% 1 +Douglas 'dVgl@s Nl% 2 +Dover 'd@Uv@R Nn% 2 +Down daUn Nm$ 1 +Downing Street 'daUnIN strit No% 3 +Dr 'd0kt@R Y:% 2 +Drayton 'dreItn Nn$ 2 +Dresden 'drezd@n Nn% 2 +Driffield 'drIfild Nn$ 2 +Drogheda 'droIId@ Nn% 3 +Droitwich 'droItwItS Nn% 2 +Dronfield 'dr0nfild Nn$ 2 +Druid 'druId K6% 2 +Druids 'druIdz Kj% 2 +Dublin 'dVblIn Nn% 2 +Dubliner 'dVblIn@R K6% 3 +Dubliners 'dVblIn@z Kj% 3 +Duce 'dutSeI Ki$ 2 +Dudley 'dVdlI Nn% 2 +Duisburg 'dusb3g Nn$ 2 +Dukinfield 'dVkInfild Nn$ 3 +Dumbarton dVm'bAtn Nn% 3 +Dumfries dVm'fris Nn% 2 +Dun Laoghaire dVn 'lI@rI Nn% 3 +Duncan 'dVnk@n Nl% 2 +Dundalk dVn'dOk Nn$ 2 +Dundee dVn'di Nn% 2 +Dunfermline dVn'f3mlIn Nn% 3 +Dunkirk dVn'k3k Nn% 2 +Dunoon dV'nun Nn$ 2 +Dunstable 'dVnst@bl Nn% 3 +Durban 'd3b@n Nn% 2 +Durham 'dVr@m Nn% 2 +Durrington 'dVrINt@n Nn$ 3 +Dursley 'd3zlI Nn$ 2 +Dusseldorf 'dVsldOf Nn% 3 +Dutch dVtS L@%,OA% 1 +Dutchman 'dVtSm@n Ki% 2 +Dutchmen 'dVtSm@n Kj% 2 +Dyfed 'dVvId Nm% 2 +E i Ki$ 1 +E's iz Kj$ 1 +EC ,i'si Y>% 2 +EDP ,i,di'pi Y}$ 3 +EEC ,i,i'si Y>% 3 +EEG ,i,i'dZi Y>% 3 +EFTA 'eft@ Y>% 2 +ESP ,i,es'pi Y}% 3 +Eaglescliffe 'iglzklIf Nn$ 3 +Ealing 'ilIN Nn% 2 +Earl Shilton ,3l 'SIltn Nn$ 3 +Easington 'izINt@n Nn$ 3 +East Dereham ,ist 'dI@r@m Nn$ 3 +East Grinstead ,ist 'grInstId Nn% 3 +East Kilbride ,ist kIl'braId Nn% 3 +East Retford ,ist 'retf@d Nn$ 3 +Eastbourne 'isbOn Nn% 2 +Easter 'ist@R K6%,No% 2 +Easters 'ist@z Kj$ 2 +Eastleigh 'istli Nn$ 2 +Ebbw Vale ,ebU 'veIl Nn% 3 +Eccles 'eklz Nn% 2 +Ecuador 'ekw@dOR Nm% 3 +Ecuadorian ,ekw@'dOrI@n K6%,OA% 5 +Ecuadorians ,ekw@'dOrI@nz Kj% 5 +Ed ed Nl% 1 +Eddie 'edI Nl% 2 +Eddy 'edI Nl% 2 +Eden 'idn No% 2 +Edenbridge 'idnbrIdZ Nn% 3 +Edgar 'edg@R Nl% 2 +Edinburgh 'edInbr@ Nn% 3 +Edith 'idIT Nl% 2 +Edmund 'edm@nd Nl% 2 +Edward 'edw@d Nl% 2 +Edwardian Id'wOdI@n K6%,OA% 4 +Edwardians Id'wOdI@nz Kj% 4 +Egremont 'egrIm0nt Nn$ 3 +Egypt 'idZIpt Nm% 2 +Egyptian I'dZIpSn K6%,OA% 3 +Egyptians I'dZIpSnz Kj% 3 +Eiche 'aIk@ Nn$ 2 +Eileen 'aIlin Nl% 2 +Eindhoven 'aIndh0vn Nn% 3 +El Dorado ,el d@'rAd@U Ki% 4 +El Dorados ,el d@'rAd@Uz Kj$ 4 +El Salvador el 's&lv@dOR Nm% 4 +Elaine I'leIn Nl% 2 +Elastoplast I'l&st@,plAst L@% 3 +Elderslie 'eld@zlI Nn$ 3 +Eleanor 'el@n@R Nl% 3 +Elgin 'elgIn Nn$ 2 +Eliza I'laIz@ Nl% 3 +Elizabeth I'lIz@b@T Nl% 4 +Elizabethan I,lIz@'biTn K6%,OA% 5 +Elizabethans I,lIz@'biTnz Kj% 5 +Elland 'el@nd Nn$ 2 +Ellen 'el@n Nl% 2 +Ellesmere 'elzmI@R Nn% 3 +Ellesmere Port ,elzmI@ 'pOt Nn% 3 +Ellie 'elI Nl% 2 +Elloughton 'el@t@n Nn$ 3 +Elsie 'elsI Nl% 2 +Elstree 'elstri Nn% 2 +Ely 'ilI Nn% 2 +Elysian I'lIzI@n OA% 4 +Elysium I'lIzI@m No% 4 +Emily 'emlI Nl% 2 +Emma 'em@ Nl% 2 +Emsworth 'emzw@T Nn$ 2 +Enfield 'enfild Nn% 2 +England 'INgl@nd Nm% 2 +English 'INglIS L@*,OA* 2 +Englishman 'INglISm@n Ki% 3 +Englishmen 'INglISm@n Kj% 3 +Englishwoman 'INglISwUm@n Ki% 4 +Englishwomen 'INglISwImIn Kj% 4 +Enoch 'in0k Nl% 2 +Enschede 'ensk@dI Nn$ 3 +Epiphany I'pIf@nI No% 4 +Epping 'epIN Nn% 2 +Epsom 'eps@m Nn% 2 +Erfurt 'e@f3t Nn$ 2 +Eric 'erik Nl% 2 +Erica 'erIk@ Nl% 3 +Erin 'erIn Nm% 2 +Eritrea ,erI'treI@ Nm% 4 +Eritrean ,erI'treI@n K6%,OA% 4 +Eritreans ,erI'treI@nz Kj% 4 +Erlangen '3l&N@n Nn$ 3 +Ernest '3nIst Nl% 2 +Ernie '3nI Nl% 2 +Erse 3s L@$ 1 +Esfahan ,Isf@'hAn Nn$ 3 +Eskimo 'eskIm@U K6% 3 +Eskimoes 'eskIm@Uz Kj% 3 +Eskimos 'eskIm@Uz Kj% 3 +Esperanto ,esp@'r&nt@U L@% 4 +Esq esk Y:% 1 +Esquire I'skwaI@R K6% 2 +Esquires I'skwaI@z Kj% 2 +Essen 'es@n Nn$ 2 +Essex 'esIks Nm% 2 +Esther 'est@R Nl% 2 +Ethel 'eTl Nl% 2 +Ethiopia ,iTI'@UpI@ Nm% 5 +Ethiopian ,iTI'@UpI@n K6%,OA% 5 +Ethiopians ,iTI'@UpI@nz Kj% 5 +Eucharist 'juk@rIst K6% 3 +Eucharists 'juk@rIsts Kj$ 3 +Euclidean ju'klIdI@n OA% 4 +Eugene ju'dZin Nl% 2 +Eunice 'junIs Nl% 2 +Eurasia jU@'reIZ@ Nm$ 3 +Eurasian jU@'reIZn K6%,OA% 3 +Eurasians jU@'reIZnz Kj% 3 +Eurodollar 'jU@r@Ud0l@R K6% 4 +Eurodollars 'jU@r@Ud0l@z Kj% 4 +Europe 'jU@r@p Nm% 2 +European ,jU@r@'pI@n K6%,OA% 4 +Europeans ,jU@r@'pI@nz Kj% 4 +Eurovision 'jU@r@vIZn No% 4 +Eustachian ju'steISn Oq% 3 +Eva 'iv@ Nl% 2 +Eve iv Nl% 1 +Evelyn 'ivlIn Nl% 2 +Evesham 'ivS@m Nn% 2 +Ewell 'ju@l Nn$ 2 +Excellencies 'eks@l@nsIz Kj% 4 +Excellency 'eks@l@nsI K8% 4 +Exeter 'eksIt@R Nn% 3 +Exmouth 'eksm@T Nn% 2 +F ef Ki$ 1 +F's efs Kj$ 1 +FA ,ef'eI Y>% 2 +FAO ,ef,eI'@U Y>% 3 +FBI ,efbI'aI Y>% 3 +FM ,ef'em Y}% 2 +FO ,ef'@U Y>% 2 +FRS ,efA'res Y>% 3 +Fabian 'feIbI@n K6%,OA% 3 +Fabians 'feIbI@nz Kj% 3 +Fahrenheit 'f&r@nhaIt Z-% 3 +Falkirk 'fOlk3k Nn% 2 +Fallopian f@'l@UpI@n Oq% 4 +Falmouth 'f&lm@T Nn% 2 +Fanny 'f&nI Nl% 2 +Farnham 'fAn@m Nn% 2 +Farnworth 'fAnw@T Nn$ 2 +Farsi 'fAsI L@$ 2 +Fauldhouse 'fOldhaUs Nn$ 2 +Faversham 'f&v@S@m Nn% 3 +Fawley 'fOlI Nn% 2 +Featherstone 'feD@st@n Nn% 3 +Feb feb Y=% 1 +Februaries 'febjU@rIz Kj$ 4 +February 'febjU@rI K8%,No% 4 +Fed fed Y>% 1 +Felicity f@'lIsItI Nl% 4 +Felix 'filIks Nl% 2 +Felixstowe 'filIkst@U Nn% 3 +Fermanagh f@'m&n@ Nm% 3 +Ferrara f@'rAr@ Nn$ 3 +Ferryhill 'ferIhIl Nn$ 3 +Fife faIf Nm% 1 +Fiji ,fi'dZi Nm% 2 +Fijian ,fi'dZI@n K6%,OA% 3 +Fijians ,fi'dZI@nz Kj% 3 +Filipino ,fIlI'pin@U K6%,OA% 4 +Filipinos ,fIlI'pin@Uz Kj% 4 +Finland 'fInl@nd Nm% 2 +Finn fIn K6% 1 +Finnish 'fInIS L@%,OA% 2 +Finns fInz Kj% 1 +Fiona fI'@Un@ Nl% 3 +Firenze fI'renzI Nn% 3 +Fleet flit Nn% 1 +Fleet Street 'flit strit No% 2 +Fleetwood 'flitwUd Nn% 2 +Flemish 'flemIS L@%,OA% 2 +Flint flInt Nn$ 1 +Flora 'flOr@ Nl% 2 +Florence 'fl0r@ns Nl% 2 +Florida 'fl0rId@ Nm% 3 +Florrie 'flOrI Nl% 2 +Foggia 'f0dZI@ Nn$ 3 +Folkestone 'f@Ukst@n Nn% 2 +Foochow ,fu'tSaU Nn$ 2 +Forfar 'fOf@R Nn% 2 +Forli 'fOlI Nn$ 2 +Formby 'fOmbI Nn% 2 +Formica fO'maIk@ L@% 3 +Formosa fO'm@Us@ Nm% 3 +Fort Lauderdale ,fOt 'lOd@deIl Nn% 4 +Fort William ,fOt 'wIlI@m Nn% 4 +Fort Worth ,fOt 'w3T Nn% 2 +Fortaleza ,fOt@'leIz@ Nn$ 4 +Fowey foI Nn% 1 +Fr 'fAD@R Y:% 2 +Fr"aulein 'froIlaIn K6% 2 +Fr"auleins 'froIlaInz Kj% 2 +Frampton Cotterell ,fr&mpt@n 'k0trIl Nn$ 4 +Fran fr&n Nl% 1 +France frAns Nm% 1 +Frances 'frAnsIs Nl% 2 +Francis 'frAnsIs Nl% 2 +Franciscan fr&n'sIsk@n K6%,OA% 3 +Franciscans fr&n'sIsk@nz Kj% 3 +Franco- 'fr&Nk@U- U-% 2 +Frank fr&Nk K6%,Nl% 1 +Frankfurt 'fr&nkf@t Nn% 2 +Frankie 'fr&nkI Nl% 2 +Franks fr&Nks Kj% 1 +Fraserburgh 'freIz@b@r@ Nn$ 4 +Frau fraU Ki% 1 +Frauen 'fraU@n Kj$ 2 +Freckleton 'freklt@n Nn$ 3 +Fred fred Nl% 1 +Freda 'frid@ Nl% 2 +Freddie 'fredI Nl% 2 +Freddy 'fredI Nl% 2 +Frederick 'fredrIk Nl% 2 +Frederiksberg 'fredrIksb3g Nn% 3 +Freemason 'frimeIsn K6% 3 +Freemasonry 'frimeIs@nrI L@% 4 +Freemasons 'frimeIsnz Kj% 3 +Freiburg 'fraIb3g Nn% 2 +French frentS L@%,OA% 1 +Frenchman 'frentSm@n Ki% 2 +Frenchmen 'frentSm@n Kj% 2 +Frenchwoman 'frentSwUm@n Ki% 3 +Frenchwomen 'frentSwImIn Kj% 3 +Freshwater 'freSwOt@R Nn$ 3 +Freudian 'froIdI@n OA% 3 +Fri 'fraIdeI Y=% 2 +Friday 'fraIdI K6%,No% 2 +Fridays 'fraIdIz Kj% 2 +Frinton 'frIntn Nn$ 2 +Frodsham 'fr0dS@m Nn$ 2 +Frome frum Nn$ 1 +Furth f3T Nn$ 1 +Fushun ,fu'SUn Nn$ 2 +G dZi Ki$ 1 +G's dZiz Kj$ 1 +G-man 'dZi-m&n Ki$ 2 +G-men 'dZi-men Kj$ 2 +GATT g&t Y>% 1 +GB ,dZi'bi Y=% 2 +GCSE ,dZisIe'si Y>% 4 +GCSEs ,dZisIe'siz Y)% 4 +GHQ ,dZi,eItS'kju Y=% 3 +GI ,dZi'aI Y>% 2 +GIs ,dZi'aIz Y)% 2 +GMT ,dZi,em'ti Y~% 3 +GNP ,dZI,en'pi Y>% 3 +GP ,dZi'pi Y>% 2 +GP's ,dZi'piz Y)% 2 +Gabon g&'b0n Nm% 2 +Gabonese ,g&b@'niz K9%,OA% 3 +Gael geIl K6$ 1 +Gaelic 'geIlIk K6%,OA% 2 +Gaelics 'geIlIks Kj% 2 +Gaels geIlz Kj$ 1 +Gainsborough 'geInzbr@ K6%,Nn% 2 +Gainsboroughs 'geInzbr@z Kj% 2 +Galashiels 'g&l@SI@lz Nn% 3 +Gallic 'g&lIk OA% 2 +Galloway 'g&l@weI Nm% 3 +Gallup 'g&l@p No% 2 +Galway 'gOlweI Nm% 2 +Gambia 'g&mbI@ Nm% 3 +Gambian 'g&mbI@n K6%,OA% 3 +Gambians 'g&mbI@nz Kj% 3 +Gareth 'g&r@T Nl% 2 +Garforth 'gAf@T Nn$ 2 +Garrowhill 'g&r@hIl Nn$ 3 +Gary 'g&rI Nl% 2 +Gateshead 'geItshed Nn% 2 +Gaul gOl K6% 1 +Gauls gOlz Kj% 1 +Gavin 'g&vIn Nl% 2 +Gdansk gd&nsk Nn% 1 +Gdn 'gAdn Y=% 2 +Gdns 'gAdnz Y=% 2 +Geiger 'gaIg@R K6% 2 +Geigers 'gaIg@z Kj$ 2 +Gelligaer 'gelIg@R Nn$ 3 +Gelsenkirchen 'gelz@nk3kn Nn$ 4 +Gemini 'dZemInI No% 3 +Gen 'dZenr@l Y:% 2 +Gene dZin Nl% 1 +Geneva dZI'niv@ Nn% 3 +Genoa 'dZen@U@ Nn% 3 +Genova 'dZen@v@ Nn% 3 +Geoff dZef Nl% 1 +Geoffrey 'dZefrI Nl% 2 +George dZOdZ Nl% 1 +Georges 'dZOdZIz Kj$ 2 +Georgia 'dZOdZ@ Nm% 2 +Georgian 'dZOdZ@n OA% 2 +Georgian 'dZOdZj@n K6%,OA% 2 +Georgians 'dZOdZj@nz Kj% 2 +Georgie 'dZOdZI Nl% 2 +Gerald 'dZer@ld Nl% 2 +Geraldine 'dZer@ldin Nl% 3 +Gerard 'dZer@d Nl% 2 +German 'dZ3m@n M6%,OA% 2 +Germanic dZ@'m&nIk OA% 3 +Germans 'dZ3m@nz Mj% 2 +Germany 'dZ3m@nI Nm% 3 +Gerry 'dZerI Nl% 2 +Gertie 'g3tI Nl% 2 +Gertrude 'g3trud Nl% 2 +Gestapo ge'stAp@U K6% 3 +Gestapos ge'stAp@Uz Kj$ 3 +Ghana 'gAn@ Nm% 2 +Ghanaian gA'neI@n K6%,OA% 3 +Ghanaians gA'neI@nz Kj% 3 +Ghent gent Nn% 1 +Gibraltar dZI'brOlt@R Nm% 3 +Gibraltarian ,dZIbrOl'te@rI@n K6%,OA% 5 +Gibraltarians ,dZIbrOl'te@rI@nz Kj% 5 +Giffnock 'gIfn0k Nn$ 2 +Gilbert 'gIlb@t Nl% 2 +Gilbertian gIl'b3tI@n OA$ 4 +Giles dZaIlz Nl% 1 +Gilfach Goch ,gilf&k 'g0k Nn$ 3 +Gill dZIl Nl% 1 +Gillian 'dZIlI@n Nl% 3 +Gillingham 'dZIlIN@m Nn% 3 +Gina 'dZin@ Nl% 2 +Girvan 'g3vn Nn$ 2 +Gladys 'gl&dIs Nl% 2 +Glamorgan gl@'mOg@n Nm% 3 +Glasgow 'gl&zg@U Nn% 2 +Glastonbury 'gl&st@nbrI Nn% 3 +Glaswegian gl&z'widZ@n K6%,OA% 3 +Glaswegians gl&z'widZ@nz Kj% 3 +Glen glen Nl% 1 +Glengarries ,glen'g&rIz Kj$ 3 +Glengarry ,glen'g&rI K8$ 3 +Glenrothes glen'r0TIs Nn$ 3 +Gloria 'glOrI@ Nl% 3 +Glossop 'gl0s@p Nn% 2 +Gloucester 'gl0st@R Nn% 2 +Gloucestershire 'gl0st@S@R Nm% 3 +Glusburn 'glVzb3n Nn$ 2 +God g0d No% 1 +Godalming 'g0dlmIN Nn% 3 +Godfrey 'g0dfrI Nl% 2 +Godmanchester 'g0dm@n,tSest@R Nn% 4 +Goffs Oak ,g0fs '@Uk Nn$ 2 +Golbourne 'g0lbOn Nn$ 2 +Goliath g@'laI@T K6% 3 +Goliaths g@'laI@Ts Kj$ 3 +Goole gul Nn$ 1 +Gordian 'gOdI@n OA% 3 +Gordon 'gOdn Nl% 2 +Gorgon 'gOg@n K6% 2 +Gorgons 'gOg@nz Kj$ 2 +Gorgonzola ,gOg@n'z@Ul@ L@% 4 +Gorky 'gOkI Nn$ 2 +Gorseinon gO'seIn@n Nn$ 3 +Gosport 'g0spOt Nn% 2 +Goteborg 'g0t@bOg Nn% 3 +Goth g0T K6% 1 +Gothenburg 'g0T@nb3g Nn% 3 +Gothic 'g0TIk L@%,OA% 2 +Goths g0Ts Kj% 1 +Gottingen 'g0tIN@n Nn% 3 +Gourock 'gVr@k Nn$ 2 +Gov 'gVv@n@R Y:% 3 +Governor-General ,gVvn@-'dZenr@l K6% 4 +Governor-Generals ,gVvn@-'dZenr@lz Kj$ 4 +Grampian 'gr&mpI@n Nm% 3 +Granada gr@'nAd@ Nn% 3 +Grand Prix ,grAn 'pri Ki% 2 +Grands Prix ,grAn 'pri Kj$ 2 +Grangemouth 'greIndZm@T Nn$ 2 +Grantham 'gr&nT@m Nn% 2 +Gravenhage ,grAvn'hAg@ Nn% 4 +Gravesend ,greIv'zend Nn% 2 +Graz grAts Nn% 1 +Great Harwood ,greIt 'hAwUd Nn$ 3 +Great Malvern ,greIt 'm0lv@n Nn$ 3 +Great Shelford ,greIt 'Self@d Nn$ 3 +Great Yarmouth ,greIt 'jAm@T Nn% 3 +Grecian 'griSn OA% 2 +Greece grIs Nm% 1 +Greek grik M6%,OA% 1 +Greeks griks Mj% 1 +Greenock 'grin@k Nn% 2 +Greenwich 'grenItS Nn% 2 +Greg greg Nl% 1 +Gregorian grI'gOrI@n OA% 4 +Gregory 'greg@rI Nl% 3 +Grenada grI'neId@ Nm% 3 +Grenadian grI'neIdI@n K6%,OA% 4 +Grenadians grI'neIdI@nz Kj% 4 +Grimethorpe 'graImTOp Nn% 2 +Grimsby 'grImzbI Nn% 2 +Grinstead 'grInstId Nn$ 2 +Groningen 'gr@UnIN@n Nn$ 3 +Grundyism 'grVndIIz@m L@$ 4 +Guadalajara ,gwAdl@'hAr@ Nn% 5 +Guatemala ,gwAt@'mAl@ Nm% 4 +Guatemala City ,gw&tI,mAl@ 'sItI Nn% 6 +Guatemalan ,gwAt@'mAl@n K6%,OA% 4 +Guatemalans ,gwAt@'mAl@nz Kj% 4 +Guayaquil ,gwaI@'kil Nn% 3 +Guild-hall 'gIld-hOl K6% 2 +Guild-halls 'gIld-hOlz Kj% 2 +Guildford 'gIlf@d Nn% 2 +Guildhall 'gIldhOl K6% 2 +Guildhalls 'gIldhOlz Kj% 2 +Guinea 'gInI Nm% 2 +Guinean 'gInI@n K6$,OA$ 3 +Guineans 'gInI@nz Kj$ 3 +Guinness 'gInIs K7% 2 +Guinnesses 'gInIsIz Kj% 3 +Guisborough 'gIzbr@ Nn$ 2 +Gurkha 'g3k@ K6% 2 +Gurkhas 'g3k@z Kj% 2 +Guy gaI Nl% 1 +Guy's gaIz No$ 1 +Guyana gaI'&n@ Nm% 3 +Guyanese ,gaI@'niz K9%,OA% 3 +Gwen gwen Nl% 1 +Gwendoline 'gwend@lIn Nl% 3 +Gwent gwent Nm% 1 +Gwersyllt 'gw3sIlt Nn$ 2 +Gwynedd 'gwIn@D Nm% 2 +Gypsies 'dZIpsIz Kj% 2 +Gypsy 'dZIpsI K8% 2 +H eItS Ki$ 1 +H's 'eItSIz Kj$ 2 +H-bomb 'eItS-b0m K6% 2 +H-bombs 'eItS-b0mz Kj% 2 +HM ,eI'tSem Y:% 2 +HMSO ,eItS,em,e's@U Y=% 4 +HP ,eItS'pi Y}% 2 +HQ ,eItS'kju Y=% 2 +HRH ,eItSA'reItS Y:% 3 +Haarlem 'hAl@m Nn% 2 +Hackney 'h&knI Nn% 2 +Haddington 'h&dINt@n Nn$ 3 +Hades 'heIdiz No% 2 +Hadji 'h&dZI K6$ 2 +Hadjis 'h&dZIz Kj$ 2 +Hagen 'hAg@n Nn$ 2 +Hagley 'h&glI Nn$ 2 +Hailsham 'heIlS@m Nn$ 2 +Haiphong ,haI'f0N Nn$ 2 +Haiti 'heItI Nm% 2 +Haitian 'heISn K6%,OA% 2 +Haitians 'heISnz Kj% 2 +Hal h&l Nl% 1 +Halesowen heIl'z@UIn Nn$ 3 +Halifax 'h&lIf&ks Nn% 3 +Halle 'h&lI Nn% 2 +Hallowe'en ,h&l@U'in K6%,No% 3 +Hallowe'ens ,h&l@U'inz Kj$ 3 +Halstead 'h0lstId Nn$ 2 +Hamburg 'h&mb3g Nn% 2 +Hamhung ,h&m'hUN Nn$ 2 +Hamilton 'h&mIltn Nn% 3 +Hammersmith 'h&m@smIT Nn% 3 +Hampreston 'h&mprIstn Nn$ 3 +Hampshire 'h&mpS@R Nm% 2 +Hangchon ,h&N'tS0n Nn$ 2 +Hanoi h&'noI Nn% 2 +Hanover 'h&n@Uv@R Nn% 3 +Hansard 'h&nsAd K6% 2 +Hansards 'h&nsAdz Kj$ 2 +Harbin 'hAbIn Nn$ 2 +Haringey 'h&rINgeI Nn% 3 +Harley Street 'hAlI strit No% 3 +Harlow 'hAl@U Nn% 2 +Harold 'h&r@ld Nl% 2 +Harpenden 'hApInd@n Nn% 3 +Harriet 'h&rI@t Nl% 3 +Harrogate 'h&r@gIt Nn% 3 +Harrow 'h&r@U Nn% 2 +Harry 'h&rI Nl% 2 +Hartlepool 'hAtlIpul Nn% 3 +Hartley 'hAtlI Nn$ 2 +Harvey 'hAvI Nl% 2 +Harwich 'h&rItS Nn% 2 +Harwood 'hAwUd Nn$ 2 +Harworth 'hAw@T Nn$ 2 +Haslemere 'heIzlmI@R Nn$ 3 +Haslingden 'h&zlINd@n Nn$ 3 +Hastings 'heIstINz Nn% 2 +Hatfield 'h&tfild Nn% 2 +Havana h@'v&n@ K6%,Nn% 3 +Havanas h@'v&n@z Kj% 3 +Haverfordwest ,h&v@f@d'west Nn% 4 +Haverhill 'heIv@rIl Nn$ 3 +Havering 'heIv@rIN Nn% 3 +Hawaii h@'waIi Nm% 3 +Hawick 'hOIk Nn$ 2 +Hawke's Bay ,hOks 'beI Nm$ 2 +Hayling 'heIlIN Nn% 2 +Haywards Heath ,heIw@dz 'hiT Nn% 3 +Hazel 'heIzl Nl% 2 +Heanor 'hin@R Nn$ 2 +Heather 'heD@R Nl% 2 +Heaviside 'hevIsaId No$ 3 +Hebden Royal ,hebd@n 'roI@l Nn$ 4 +Hebraic hi'breIIk OA$ 3 +Hebrew 'hibru M6%,OA% 2 +Hebrews 'hibruz Mj% 2 +Hedge End ,hedZ 'end Nn$ 2 +Hegira 'hedZIr@ K6$ 3 +Hegiras 'hedZIr@z Kj$ 3 +Heidelburg 'haIdlb3g Nn% 3 +Hejira 'hedZIr@ K6$ 3 +Hejiras 'hedZIr@z Kj$ 3 +Helen 'hel@n Nl% 2 +Helensburgh 'helInzbr@ Nn% 3 +Hellene 'helin K6% 2 +Hellenes 'helinz Kj% 2 +Hellenic he'linIk OA% 3 +Helsinki 'helsINkI Nn% 3 +Helston 'helst@n Nn$ 2 +Hemel Hempstead ,heml 'hempstId Nn% 4 +Hemsworth 'hemzw@T Nn$ 2 +Henley-on-Thames ,henlI-0n-'temz Nn% 4 +Henry 'henrI Nl% 2 +Herb h3b Nl% 1 +Herbert 'h3b@t Nl% 2 +Hereford 'herIf@d Nm% 3 +Herne h3n Nn$ 1 +Herne Bay ,h3n 'beI Nn% 2 +Herr he@R Ki% 1 +Herren 'her@n Kj$ 2 +Hertford 'hAtf@d Nn% 2 +Hertfordshire 'hAtf@dS@R Nm% 3 +Hertzian 'h3tsI@n OA$ 3 +Hetton 'hetn Nn$ 2 +Hexham 'heks@m Nn$ 2 +Hey presto ,heI 'prest@U W-$ 3 +Heysham 'hiS@m Nn$ 2 +Heywood 'heIwUd Nn$ 2 +High Spen ,haI 'spen Nn$ 2 +High Wycombe ,haI 'wIk@m Nn% 3 +Highland 'haIl@nd Nm% 2 +Highlander 'haIl@nd@R K6% 3 +Highlanders 'haIl@nd@z Kj% 3 +Hilary 'hIl@rI Nl% 3 +Hilda 'hIld@ Nl% 2 +Hillingdon 'hIlINd@n Nn% 3 +Hinckley 'hINklI Nn$ 2 +Hindi 'hIndi L@%,OA% 2 +Hindu ,hIn'du K6%,OA% 2 +Hinduism 'hInduIz@m L@% 4 +Hindus ,hIn'duz Kj% 2 +Hindustani ,hIndU'stAnI K6%,OA% 4 +Hindustanis ,hIndU'stAnIz Kj% 4 +Hippocratic ,hIp@'kr&tIk OA% 4 +Hiroshima hI'r0SIm@ Nn% 4 +Hitchin 'hItSIn Nn% 2 +Hobson 'h0bsn No$ 2 +Hockley 'h0klI Nn$ 2 +Hoddesdon 'h0dzd@n Nn$ 2 +Hofei ,h@U'feI Nn$ 2 +Hogmanay 'h0gm@neI K6%,No% 3 +Hogmanays 'h0gm@neIz Kj$ 3 +Holland 'h0l@nd Nm% 2 +Hollander 'h0l@nd@R K6$,OA$ 3 +Hollanders 'h0l@nd@z Kj$ 3 +Hollywood 'h0lIwUd No% 3 +Holmfirth 'h@Umf@T Nn% 2 +Holyhead 'h0lIhed Nn% 3 +Homeric h@U'merIk OA% 3 +Hon h0n Y:% 1 +Honduran h0n'djU@r@n K6%,OA% 3 +Hondurans h0n'djU@r@nz Kj% 3 +Honduras h0n'djU@r@s Nm% 3 +Hong Kong ,h0N 'k0N Nm% 2 +Honiton 'h0nItn Nn% 3 +Hoo hu Nn$ 1 +Hoover 'huv@R H0%,K6% 26A +Hoovered 'huv@d Hc%,Hd% 26A +Hoovering 'huv@rIN Hb% 36A +Hoovers 'huv@z Ha%,Kj% 26A +Hope h@Up Nn% 1 +Horace 'h0rIs Nl% 2 +Horley 'hOlI Nn$ 2 +Hornsea 'hOnzI Nn$ 2 +Horsham 'hOS@m Nn$ 2 +Horsley 'hOzlI Nn$ 2 +Horwich 'h0rItS Nn% 2 +Hosp h0sp Y=% 1 +Host h@Ust Ki$ 1 +Houghton 'hOtn Nn$ 2 +Hounslow 'haUnzl@U Nn% 2 +Houston 'hjustn Nn% 2 +Hove h@Uv Nn% 1 +Howard 'haU@d Nl% 2 +Hoylake 'hoIleIk Nn% 2 +Hoyland Nether ,hoIlnd 'neD@R Nn$ 4 +Hubert 'hjub@t Nl% 2 +Hucknall 'hVknl Nn$ 2 +Huddersfield 'hVd@sfild Nn% 3 +Hugh hju Nl% 1 +Hughie 'hjuI Nl% 2 +Huguenot 'hjug@n@U K6% 3 +Huguenots 'hjug@n@Uz Kj% 3 +Huhehot ,huhI'h0t Nn$ 3 +Humberside 'hVmb@saId Nm% 3 +Humberston 'hVmb@st@n Nn$ 3 +Humphrey 'hVmfrI Nl% 2 +Hun hVn K6$ 1 +Hungarian ,hVN'ge@rI@n M6%,OA% 4 +Hungarians ,hVN'ge@rI@nz Mj% 4 +Hungary 'hVNg@rI Nm% 3 +Huns hVnz Kj$ 1 +Huntingdon 'hVntINd@n Nn% 3 +Hurstpierpoint ,h3spi@'poInt Nn$ 3 +Hwainan ,hwaI'n&n Nn$ 2 +Hyde haId Nn% 1 +Hyderabad 'haIdr@b&d Nn% 3 +Hythe haID Nn% 1 +I aI Ki$,Qx* 1 +I'd aId Gf% 1 +I'll aIl Gf* 1 +I'm aIm Gf* 1 +I's aIz Kj$ 1 +I've aIv Gf% 1 +IBA ,aI,bi'eI Y>% 3 +ICBM ,aI,si,bi'em Y>% 4 +ILO ,aI,e'l@U Y>% 3 +IMF ,aI,e'mef Y>% 3 +IOU ,aI@U'ju Y>% 3 +IOUs ,aI@U'juz Y)% 3 +IQ ,aI'kju Y}% 2 +IRA ,aI,A'reI Y>% 3 +ITV ,aI,ti'vi Y>% 3 +IUD ,aI,ju'di Y>% 3 +Ian 'I@n Nl% 2 +Ibadan I'b&dn Nn% 3 +Iceland 'aIsl@nd Nm% 2 +Icelander 'aIsl@nd@R K6%,OA% 3 +Icelanders 'aIsl@nd@z Kj% 3 +Icelandic aIs'l@ndIk L@%,OA% 3 +Ida 'aId@ Nl% 2 +Idaho 'aId@h@U Nm% 3 +Ilfracombe 'Ilfr@kum Nn% 3 +Ilkeston 'Ilkst@n Nn% 2 +Ilkley 'IlklI Nn% 2 +Illinois ,Il@'noI Nm% 3 +Immingham 'ImIN@m Nn$ 3 +Inc INk Y~% 1 +Inchon ,In'tS0n Nn$ 2 +India 'IndI@ Nm% 3 +India-rubber 'IndI@-rVb@R M6% 5 +India-rubbers 'IndI@-rVb@z Mj$ 5 +Indiaman 'IndI@m@n Ki$ 4 +Indiamen 'IndI@m@n Kj$ 4 +Indian 'IndI@n K6%,OA% 3 +Indiana ,IndI'&n@ Nm% 4 +Indianapolis ,Indi@'n&p@lIs Nn% 6 +Indians 'IndI@nz Kj% 3 +Indies 'IndIz Nm% 2 +Indo- ,Ind@U- U-% 2 +Indo-European ,Ind@U-,jU@r@'pi@n OA% 6 +Indonesia ,Ind@'nizI@ Nm% 5 +Indonesian ,Ind@'nizI@n M6%,OA% 5 +Indonesians ,Ind@'nizI@nz Mj% 5 +Indore In'dOR Nn$ 2 +Ingatestone 'INgeItst@Un Nn$ 3 +Ingrid 'INgrId Nl% 2 +Innsbruck 'InzbrUk Nn% 2 +Inst Inst Y=% 1 +Interpol 'Int@p0l No% 3 +Inverkeithing ,Inv@'kiDIN Nn$ 4 +Inverness ,Inv@'nes Nn% 3 +Inverurie ,Inv@'rurI Nn$ 4 +Ionic aI'0nIk OA% 3 +Iowa 'aI@w@ Nm% 3 +Ipswich 'IpswItS Nn% 2 +Iran I'rAn Nm% 2 +Iranian I'reInI@n M6%,OA% 4 +Iranians I'reInI@nz Mj% 4 +Iraq I'rAk Nm% 2 +Iraqi I'rAkI K6%,OA% 3 +Iraqis I'rAkIz Kj% 3 +Ireland 'aI@l@nd Nm% 2 +Irene 'aIrin Nl% 2 +Iris 'aIrIs Nl% 2 +Irish 'aIrIS L@%,OA% 2 +Irishman 'aIrISm@n Ki% 3 +Irishmen 'aIrISm@n Kj% 3 +Irishwoman 'aIrISwUm@n Ki% 4 +Irishwomen 'aIrISwImIn Kj% 4 +Irthlingborough '3TlINbr@ Nn$ 3 +Irvine '3vaIn Nn% 2 +Isaac 'aIz@k Nl% 2 +Isabel 'Iz@bel Nl% 3 +Isabella ,Iz@'bel@ Nl% 4 +Islam Iz'lAm L@% 2 +Islamic Iz'l&mIk OA% 3 +Islington 'IzlINt@n Nn% 3 +Isobel 'Iz@bel Nl% 3 +Israel 'IzreIl Nm% 2 +Israeli Iz'reIlI K6%,OA% 3 +Israelis Iz'reIlIz Kj% 3 +Istanbul ,Ist&n'bUl Nn% 3 +Italian I't&lI@n M6%,OA% 4 +Italians I't&lI@nz Mj% 4 +Italy 'It@lI Nm% 3 +Ivan 'aIv@n Nl% 2 +Iver 'aIv@R Nn$ 2 +Ivor 'aIv@R Nl% 2 +Ivy 'aIvI Nl% 2 +Izmir Iz'mI@R Nn$ 2 +J dZeI Ki$ 1 +J's dZeIz Kj$ 1 +JC ,dZeI'si Y=$ 2 +JP ,dZeI'pi Y>% 2 +Jabalpur ,dZAbl'pU@R Nn$ 3 +Jack dZ&k Nl% 1 +Jackie 'dZ&kI Nl% 2 +Jacksonville 'dZ&ks@nvIl Nn$ 3 +Jacob 'dZeIk@b Nl% 2 +Jacobean ,dZ&k@'bI@n OA% 4 +Jacobin 'dZ&k@bIn K6$,OA$ 3 +Jacobinism 'dZ&k@bInIz@m L@$ 5 +Jacobins 'dZ&k@bInz Kj$ 3 +Jacobite 'dZ&k@baIt K6% 3 +Jacobites 'dZ&k@baIts Kj% 3 +Jacqueline 'dZ&k@lin Nl% 3 +Jaipur ,dZaI'pU@R Nn% 2 +Jakarta dZ@'kAt@ Nn% 3 +Jake dZeIk Nl% 1 +Jamaica dZ@'meIk@ Nm% 3 +Jamaican dZ@'meIk@n K6%,OA% 3 +Jamaicans dZ@'meIk@nz Kj% 3 +James dZeImz Nl% 1 +Jan dZ&n Nl%,Y=% 1 +Jane dZeIn Nl% 1 +Janet 'dZ&nIt Nl% 2 +Janice 'dZ&nIs Nl% 2 +Janie 'dZeInI Nl% 2 +Januaries 'dZ&njUrIz Kj$ 3 +January 'dZ&njUrI K8%,No% 3 +Janus 'dZeIn@s No$ 2 +Japan dZ@'p&n Nm% 2 +Japanese ,dZ&p@'niz M9%,OA% 3 +Jarrow 'dZ&r@U Nn% 2 +Jason 'dZeIs@n Nl% 2 +Java 'dZAv@ Nm% 2 +Javanese ,dZAv@'niz K9%,OA% 3 +Jean dZin Nl% 1 +Jeanie 'dZinI Nl% 2 +Jedburgh 'dZedbr@ Nn% 2 +Jeff dZef Nl% 1 +Jeffrey 'dZefrI Nl% 2 +Jehovah dZI'h@Uv@ No% 3 +Jekyll-and-Hyde ,dZekl-@n-'haId No% 4 +Jennifer 'dZenIf@R Nl% 3 +Jenny 'dZenI Nl% 2 +Jeremy 'dZer@mI Nl% 3 +Jerome dZe'r@Um Nl% 2 +Jerry 'dZerI Nl% 2 +Jersey 'dZ3zI Nm% 2 +Jess dZes Nl% 1 +Jessica 'dZesIk@ Nl% 3 +Jessie 'dZesI Nl% 2 +Jesuit 'dZezjUIt K6% 3 +Jesuitical ,dZezjU'ItIkl OA% 5 +Jesuits 'dZezjUIts Kj% 3 +Jesus 'dZiz@z Nl% 2 +Jew dZu K6% 1 +Jewess dZuIs K7% 2 +Jewesses 'dZuIsIz Kj% 3 +Jewish 'dZuIS OA% 2 +Jews dZuz Kj% 1 +Jezebel 'dZez@bl K6% 3 +Jezebels 'dZez@blz Kj$ 3 +Jill dZIl Nl% 1 +Jim dZIm Nl% 1 +Jim Crow ,dZIm 'kr@U Ki$ 2 +Jimmy 'dZImI Nl% 2 +Jnr 'dZunI@R Y~% 3 +Jo dZ@U Nl% 1 +Joan dZ@Un Nl% 1 +Joanie 'dZ@UnI Nl% 2 +Joann dZ@U'&n Nl% 2 +Joanna dZ@U'&n@ Nl% 3 +Joanne dZ@U'&n Nl% 2 +Job dZ@Ub Nl$ 1 +Jobs dZ@Ubz Kj$ 1 +Jocelyn 'dZ0slIn Nl% 2 +Joe dZ@U Nl% 1 +Joey 'dZ@UI Nl% 2 +Johannesburg dZ@'h&n@zb3g Nn% 4 +John dZ0n Nl% 1 +John Bull ,dZ0n 'bUl Ki$ 2 +Johnny 'dZ0nI Nl% 2 +Johnstone 'dZ0nst@n Nn$ 2 +Jonah 'dZ@Un@ Nl% 2 +Jonathan 'dZ0n@T@n Nl% 3 +Jordan 'dZOdn Nm% 2 +Jordanian dZO'deInI@n K6%,OA% 4 +Jordanians dZO'deInI@nz Kj% 4 +Joseph 'dZ@UzIf Nl% 2 +Josephine 'dZ@Uz@fin Nl% 3 +Josh dZ0S Nl% 1 +Joshua 'dZ0SU@ Nl% 3 +Jove dZ@Uv No% 1 +Joy dZoI Nl% 1 +Joyce dZoIs Nl% 1 +Judaic dZu'deIIk OA% 3 +Judaism 'dZudeIIz@m L@% 4 +Judas 'dZud@s K7%,Nl% 2 +Judases 'dZud@sIz Kj$ 3 +Judith 'dZudiT Nl% 2 +Judy 'dZudI Nl% 2 +Jul dZ@'laI Y=% 2 +Julia 'dZulI@ Nl% 3 +Julian 'dZulI@n Nl%,OA% 3 +Julie 'dZulI Nl% 2 +Juliet 'dZUlIet Nl% 3 +July dZu'laI Ki% 2 +Jun dZun Y=% 1 +June dZun K6%,Nl% 1 +Junes dZunz Kj% 1 +Junoesque ,dZun@U'esk OA$ 3 +Jupiter 'dZupIt@R No% 3 +Justin 'dZVstIn Nl% 2 +K keI Ki$ 1 +K's keIz Kj$ 1 +KGB ,keI,dZi'bi Y>% 3 +KO ,keI'@U Y>% 2 +Kaiser 'kaIz@R K6% 2 +Kaisers 'kaIz@z Kj% 2 +Kalgan ,kAl'gAn Nn$ 2 +Kampuchea k&mpU'tSI@ Nm% 4 +Kampuchean k&mpU'tSI@n K6%,OA% 4 +Kampucheans k&mpU'tSI@nz Kj% 4 +Kanpur ,kAn'pU@R Nn% 2 +Kansas 'k&nz@s Nm% 2 +Kansas City ,k&nz@s 'sItI Nn% 4 +Kaohsiung ,kaU'SjUN Nn$ 2 +Karachi k@'rAtSI Nn% 3 +Karaganda ,k&r@'g&nd@ Nn$ 4 +Karen 'k&r@n Nl% 2 +Karlsruhe 'kAlzrU@ Nn% 3 +Kashmir k&S'mI@R Nm% 2 +Kashmiri k&S'mI@rI K6%,OA% 3 +Kashmiris k&S'mI@rIz Kj% 3 +Kassel 'k&s@l Nn$ 2 +Kate keIt Nl% 1 +Kath k&T Nl% 1 +Katherine 'k&TrIn Nl% 2 +Kathy 'k&Ti Nl% 2 +Katie 'keItI Nl% 2 +Katowice ,k&t@'vitS@ Nn$ 4 +Kay keI Nl% 1 +Kazan k@'z&n Nn$ 2 +Keighley 'kiTlI Nn% 2 +Keith kiT Nl% 1 +Kelso 'kels@U Nn% 2 +Kelt kelt K6$ 1 +Kelts kelts Kj$ 1 +Kelty 'keltI Nn$ 2 +Kemsing 'kemzIN Nn$ 2 +Ken ken Nl% 1 +Kendal 'kendl Nn% 2 +Kenilworth 'kenlw@T Nn% 3 +Kenneth 'kenIT Nl% 2 +Kenny 'kenI Nl% 2 +Kensington 'kenzINt@n Nn% 3 +Kent kent Nm% 1 +Kentucky ken'tVkI Nm% 3 +Kenya 'kenj@ Nm% 2 +Kenyan 'kenj@n K6%,OA% 2 +Kenyans 'kenj@nz Kj% 2 +Kerry 'kerI Nm% 2 +Kettering 'ket@rIN Nn% 3 +Kevin 'kevIn Nl% 2 +Keynsham 'keInS@m Nn$ 2 +Keyworth 'kiw@T Nn$ 2 +Khalka 'k&lk@ L@$ 2 +Kharkov 'kAk0f Nn$ 2 +Khartoum ,kA'tum Nn% 2 +Khmer kme@R L@$ 1 +Kidderminster 'kId@mInst@R Nn% 4 +Kidlington 'kIdlINt@n Nn% 3 +Kidsgrove 'kIdzgr@Uv Nn% 2 +Kiev 'kief Nn% 2 +Kilbirnie kIl'b3nI Nn$ 3 +Kildare kIl'de@R Nm$ 2 +Kilkenny kIl'kenI Nm% 3 +Killarney kI'lAnI Nn% 3 +Kilmarnock kIl'mAn@k Nn% 3 +Kilsyth kIl'saIT Nn$ 2 +Kilwinning kIl'wInIN Nn$ 3 +Kimberley 'kImb@lI Nn% 3 +King's Lynn ,kINz 'lIn Nn% 2 +Kingsbury 'kINzb@rI Nn$ 3 +Kingsteignton kIN'steIntn Nn$ 3 +Kingston 'kINst@n Nn% 2 +Kingston upon Hull ,kINst@n Vp0n 'hVl Nn% 5 +Kingston upon Thames ,kINst@n Vp0n 'temz Nn% 5 +Kinshasa kIn'SAs@ Nn% 3 +Kippax 'kIp&ks Nn$ 2 +Kirin ,kI'rIn Nn$ 2 +Kirkby 'k3bI Nn% 2 +Kirkby in Ashfield ,k3bI In '&Sfild Nn$ 5 +Kirkcaldy k@'kOdI Nn% 3 +Kirkham 'k3k@m Nn$ 2 +Kirkintilloch ,k3kIn'tIl@k Nn$ 4 +Kirkwall 'k3kwOl Nn$ 2 +Kitakyushu ,kIt@'kjuSu Nn$ 4 +Kitty 'kItI Nl% 2 +Knaresborough 'ne@zbr@ Nn% 3 +Knesset 'kneset K6% 2 +Knessets 'knesets Kj$ 2 +Knottingley 'n0tINlI Nn$ 3 +Knutsford 'nVtsf@d Nn% 2 +Kobe 'k@UbI Nn$ 2 +Koblenz k@'blents Nn% 2 +Koln k3ln Nn% 1 +Koran k@'rAn K6% 2 +Koranic k@'r&nIk OA% 3 +Korans k@'rAnz Kj$ 2 +Korea k@'rI@ Nm% 3 +Korean k@'rI@n M6%,OA% 3 +Koreans k@'rI@nz Mj% 3 +Krakow 'krAk0f Nn% 2 +Krasnoyarsk ,kr&zn@'jAsk Nn$ 3 +Krefeld 'kreIfelt Nn% 2 +Kremlin 'kremlIn K6% 2 +Kremlins 'kremlInz Kj$ 2 +Krivoi Rog krI,voI 'r0k Nn$ 3 +Kunming ,kUn'mIN Nn$ 2 +Kuwait kU'weIt Nm% 2 +Kuwait City ,kUweIt 'sItI Nn% 4 +Kuwaiti kU'weItI K6%,OA% 3 +Kuwaitis kU'weItIz Kj% 3 +Kuybyshev 'kUbISef Nn$ 3 +Kweiyang ,kweI'jAN Nn$ 2 +Kyoto kI'@Ut@U Nn% 3 +L el Ki$ 1 +L's elz Kj$ 1 +L-plate 'el-pleIt K6% 2 +L-plates 'el-pleIts Kj% 2 +LA ,e'leI Y=% 2 +LEA ,el,i'eI Y>% 3 +LLB ,el,el'bi Y>% 3 +LP ,el'pi Y>% 2 +LPs ,el'piz Y)% 2 +LSD ,el,es'di Y}% 3 +La Habana l& h@'bAn@ Nn$ 4 +La Paz l& 'p&z Nn% 2 +La Plata l& 'plAt@ Nn% 3 +La Spezia l& 'spetsI@ Nn% 4 +Lab l&b Y~% 1 +Labourite 'leIb@raIt K6% 3 +Labourites 'leIb@raIts Kj% 3 +Labrador 'l&br@dOR Nm% 3 +Lady-chapel 'leIdI-tS&pl K6% 4 +Lady-chapels 'leIdI-tS&plz Kj% 4 +Lagos 'leIg0s Nn% 2 +Lahore l@'hOR Nn% 2 +Lakenheath 'leIknhiT Nn$ 3 +Lambeth 'l&mb@T Nn% 2 +Lammas 'l&m@s K7$,No$ 2 +Lammases 'l&m@sIz Kj$ 3 +Lanark 'l&n@k Nn% 2 +Lancashire 'l&Nk@S@R Nm% 3 +Lancaster 'l&NkIst@R Nn% 3 +Lancastrian l&N'k&strI@n K6%,OA% 4 +Lancastrians l&N'k&strI@nz Kj% 4 +Lanchow ,l&n'tSaU Nn$ 2 +Lancing 'lAnsIN Nn% 2 +Landrover 'l&ndr@Uv@R K6% 3 +Landrovers 'l&ndr@Uv@z Kj% 3 +Lao 'l&@U L@$ 2 +Laos 'lA0s Nm% 2 +Laotian 'lA0Sn M6%,OA% 3 +Laotians 'lA0Snz Mj% 3 +Largs lAgz Nn$ 1 +Larkhall 'lAkhOl Nn$ 2 +Larne lAn Nn$ 1 +Larry 'l&rI Nl% 2 +Las Palmas l&s 'p&lm@s Nn% 3 +Latin 'l&tIn K6%,OA% 2 +Latinist 'l&tInIst K6% 3 +Latinists 'l&tInIsts Kj$ 3 +Latinize 'l&tInaIz H2% 3 +Latinized 'l&tInaIzd Hc%,Hd% 3 +Latinizes 'l&tInaIzIz Ha% 4 +Latinizing 'l&tInaIzIN Hb% 4 +Latins 'l&tInz Kj% 2 +Laura 'lOr@ Nl% 2 +Laurence 'l0r@ns Nl% 2 +Lausanne l@U'z&n Nn% 2 +Lawrence 'l0r@ns Nl% 2 +Lazarus 'l&z@r@s Ki%,Nl% 3 +Lazaruses 'l&z@r@sIz Kj$ 4 +Le Havre l@ 'hAvr@ Nn% 3 +Le Mans l@ 'm0N Nn% 2 +Leamington Spa ,lemINt@n 'spA Nn% 4 +Leatherhead 'leD@hed Nn% 3 +Lebanese ,leb@'niz K9%,OA% 3 +Lebanon 'leb@n@n Nm% 3 +Leeds lidz Nn% 1 +Leek lik Nn$ 1 +Leicester 'lest@R Nn% 2 +Leicestershire 'lest@S@R Nm% 3 +Leiden 'laIdn Nn% 2 +Leigh li Nn% 1 +Leighton-Linslade ,leItn-'lInzleId Nn$ 4 +Leinster 'lenst@R Nm% 2 +Leipzig 'laIpzIg Nn% 2 +Leitrim 'litrIm Nm$ 2 +Leix liS Nm$ 1 +Len len Nl% 1 +Leningrad 'lenIngr&d Nn% 3 +Lenny 'lenI Nl% 2 +Lens l0ns Nn$ 1 +Lent lent K6%,No% 1 +Lenten 'lent@n OA% 2 +Lents lents Kj$ 1 +Leo 'li@U Nl% 2 +Leominster 'lemst@R Nn$ 2 +Leon 'li@n Nn% 2 +Leonard 'len@d Nl% 2 +Lerwick 'l3wIk Nn% 2 +Les lez Nl% 1 +Lesley 'lezlI Nl% 2 +Leslie 'lezlI Nl% 2 +Lesotho l@'sutu Nm% 3 +Letchworth 'letSw@T Nn% 2 +Lethe 'liTI No$ 2 +Levant lI'v&nt No% 2 +Levantine l@'v&ntaIn K6%,OA% 3 +Levantines l@'v&ntaInz Kj% 3 +Leven 'levn Nn$ 2 +Leverkusen 'leIv@kuzn Nn$ 4 +Lewes 'luIs Nn% 2 +Lewis 'luIs Nl% 2 +Lewisham 'luIS@m Nn% 3 +Leyland 'leIl@nd Nn% 2 +Lib lIb Y~% 1 +Liberia laI'bI@rI@ Nm% 4 +Liberian laI'bI@rI@n K6%,OA% 4 +Liberians laI'bI@rI@nz Kj% 4 +Libra 'libr@ No% 2 +Libya 'lIbI@ Nm% 3 +Libyan 'lIbI@n K6%,OA% 3 +Libyans 'lIbI@nz Kj% 3 +Lichfield 'lItSfild Nn% 2 +Liechtenstein 'lIkt@nstaIn Nm% 3 +Liechtensteiner 'lIkt@nstaIn@R K6%,OA% 4 +Liechtensteiners 'lIkt@nstaIn@z Kj% 4 +Liege lI'eIZ Nn% 2 +Lilian 'lIlI@n Nl% 3 +Lille lil Nn% 1 +Lilliputian ,lIlI'pjuSn K6$,OA$ 4 +Lilliputians ,lIlI'pjuSnz Kj$ 4 +Lily 'lIlI Nl% 2 +Lima 'lim@ Nn% 2 +Limerick 'lIm@rIk Nn% 3 +Limoges lI'm@UZ Nn% 2 +Lincoln 'lINk@n Nn% 2 +Lincolnshire 'lINk@nS@R Nm% 3 +Linda 'lInd@ Nl% 2 +Linlithgow lIn'lITg@U Nn$ 3 +Linwood 'lInwUd Nn$ 2 +Linz lInts Nn$ 1 +Lionel 'laI@nl Nl% 3 +Lisa 'lis@ Nl% 2 +Lisbon 'lIzb@n Nn% 2 +Liskeard lIs'kAd Nn$ 2 +Littlehampton 'lItlh&mt@n Nn% 4 +Liverpool 'lIv@pul Nn% 3 +Liverpudlian ,lIv@'pVdlI@n K6%,OA% 5 +Liverpudlians ,lIv@'pVdlI@nz Kj% 5 +Livingston 'lIvINst@n Nn% 3 +Livorno lI'vOn@U Nn% 3 +Liz lIz Nl% 1 +Liza 'laIz@ Nl% 2 +Lizzy 'lIzI Nl% 2 +Ljubljana ,ljublI'An@ Nn% 4 +Llandudno l&n'dIdn@U Nn% 3 +Llanelli l&'neTlI Nn% 3 +Llangollen l&n'g0Tl@n Nn% 3 +Llantrisant l&n'trIznt Nn$ 3 +Llantwit Major ,l&ntwIt 'meIdZ@R Nn$ 4 +Lloyd's loIdz No% 1 +Loanhead 'l@Unhed Nn$ 2 +Lochgelly l0k'gelI Nn$ 3 +Lodz l0dz Nn$ 1 +Loftus 'l0ft@s Nn$ 2 +Lois 'l@UIs Nl% 2 +London 'lVnd@n Nn% 2 +Londonderry 'lVnd@nderI Nn% 4 +Londoner 'lVnd@n@R K6% 3 +Londoners 'lVnd@n@z Kj% 3 +Long Eaton ,l0N 'itn Nn$ 3 +Longridge 'l0NrIdZ Nn$ 2 +Longton 'l0Nt@n Nn$ 2 +Lorna 'lOn@ Nl% 2 +Los Angeles l0s '&ndZIliz Nn% 4 +Lossiemouth 'l0sIm@T Nn% 3 +Lothian 'l@UDI@n Nm% 3 +Loughborough 'lVfbr@ Nn% 2 +Louis 'luI Nl% 2 +Louise lu'iz Nl% 2 +Louisiana lu,izI'&n@ Nm% 5 +Louisville 'luIvIl Nn% 3 +Louth laUD Nm$ 1 +Lowestoft 'l@UIst0ft Nn% 3 +Loyang ,l@U'jAN Nn$ 2 +Lt ,lef'ten@nt Y:% 3 +Ltd 'lImItId Y=% 3 +Lubeck 'lubek Nn% 2 +Lucifer 'lusIf@R K6% 3 +Lucifers 'lusIf@z Kj% 3 +Lucknow 'lVknaU Nn% 2 +Lucy 'lusI Nl% 2 +Luddite 'lVdaIt K6% 2 +Luddites 'lVdaIts Kj% 2 +Ludlow 'lVdl@U Nn% 2 +Ludwigshafen 'lVdvIgzhAfn Nn$ 4 +Luke luk Nl% 1 +Luta 'lut@ Nn$ 2 +Lutheran 'luT@r@n K6%,OA% 3 +Lutherans 'luT@r@nz Kj% 3 +Luton 'lutn Nn% 2 +Luxembourg 'lVks@mb3g Nn% 3 +Luxemburg 'lVks@mb3g Nm% 3 +Luxemburger 'lVks@mb3g@R K6%,OA% 4 +Luxemburgers 'lVks@mb3g@z Kj% 4 +Lvov l@'v0f Nn$ 2 +Lyallpur ,laI@l'pu@R Nn$ 3 +Lydia 'lIdI@ Nl% 3 +Lydney 'lIdnI Nn$ 2 +Lymington 'lImINt@n Nn% 3 +Lymm lIm Nn$ 1 +Lynn lIn Nl% 1 +Lynne lIn Nl% 1 +Lyons 'laI@nz Nn% 2 +Lytham 'lID@m Nn% 2 +Lytham St Annes ,lIDm snt '&nz Nn% 3 +M em Ki$ 1 +M's emz Kj$ 1 +MA ,em'eI Y>% 2 +MB ,em'bi Y>% 2 +MC ,em'si Y>% 2 +MCC ,em,si'si Y>% 3 +MD ,em'di Y>% 2 +MI5 ,em,aI'faIv Y=% 3 +MI6 ,em,aI'sIks Y=% 3 +MP ,em'pi Y>% 2 +MP's ,em'piz Y)% 2 +MS 'm&nj@skrIpt Y>% 3 +MSc ,em,es'si Y>% 3 +Maastricht 'mAstrIkt Nn% 2 +Mabel 'meIbl Nl% 2 +Macclesfield 'm&klzfild Nn% 3 +Macedonian ,m&sI'd@UnI@n M6%,OA% 5 +Macedonians ,m&sI'd@UnI@nz Mj% 5 +Mach mAk No% 1 +Madagascan ,m&d@'g&sk@n K6%,OA% 4 +Madagascans ,m&d@'g&sk@nz Kj% 4 +Madagascar ,m&d@'g&sk@R Nm% 4 +Madame m@'dAm K6% 2 +Madames m@'dAmz Kj$ 2 +Maddy 'm&dI Nl% 2 +Madeira m@'dI@r@ K6% 3 +Madeiras m@'dI@r@z Kj% 3 +Madeleine 'm&d@lIn Nl% 3 +Mademoiselle ,m&dmw@'zel K6% 3 +Mademoiselles ,m&dmw@'zelz Kj% 3 +Madge m&dZ Nl% 1 +Madonna m@'d0n@ K6% 3 +Madonnas m@'d0n@z Kj% 3 +Madras m@'drAs Nn% 2 +Madrid m@'drId Nn% 2 +Madurai 'm&djVraI Nn$ 3 +Maecenas maI'sin@s No$ 3 +Maesteg 'maIsteg Nn% 2 +Mafia 'm&fI@ K6% 3 +Mafias 'm&fI@z Kj$ 3 +Magdeburg 'm&gdIb3g Nn$ 3 +Maggie 'm&gI Nl% 2 +Maghull m@'gVl Nn% 2 +Magi 'meIdZaI Kj% 2 +Magnificat m&g'nIfIk&t K6% 4 +Magnificats m&g'nIfIk&ts Kj$ 4 +Magyar 'm&gjAR M6%,OA% 2 +Magyars 'm&gjAz Mj% 2 +Maharaja ,mAh@'rAdZ@ K6% 4 +Maharajah ,mAh@'rAdZ@ K6% 4 +Maharajahs ,mAh@'rAdZ@z Kj% 4 +Maharajas ,mAh@'rAdZ@z Kj% 4 +Maharanee ,mAh@'rAni K6$ 4 +Maharanees ,mAh@'rAniz Kj$ 4 +Mahatma m@'h&tm@ K6% 3 +Mahatmas m@'h&tm@z Kj$ 3 +Maidenhead 'meIdnhed Nn% 3 +Maidstone 'meIdst@n Nn% 2 +Maine meIn Nm% 1 +Mainz meInts Nn% 1 +Maj 'meIdZ@R Y:% 2 +Malaga 'm&l@g@ Nn% 3 +Malawi m@'lAwI Nm% 3 +Malawian m@'lAwI@n K6%,OA% 4 +Malawians m@'lAwI@nz Kj% 4 +Malay m@'leI M6%,OA% 2 +Malaya m@'leI@ Nm% 3 +Malayan m@'leI@n K6%,OA% 3 +Malayans m@'leI@nz Kj% 3 +Malays m@'leIz Mj% 2 +Malaysia m@'leIzI@ Nm% 4 +Malaysian m@'leIzI@n K6%,OA% 4 +Malaysians m@'leIzI@nz Kj% 4 +Malcolm 'm&lk@m Nl% 2 +Maldon 'm0ldn Nn% 2 +Mali 'mAlI Nm% 2 +Malian 'mAlI@n K6$,OA$ 3 +Malians 'mAlI@nz Kj$ 3 +Mallow 'm&l@U Nn$ 2 +Malmo 'm&lm@U Nn% 2 +Malta 'mOlt@ Nm% 2 +Maltby 'm0ltbI Nn$ 2 +Maltese mOl'tiz M9%,OA% 2 +Malthusian m&l'TjuzI@n OA$ 4 +Malvern 'm0lvn Nn% 2 +Mamie 'meImI Nl$ 2 +Manchester 'm&ntSIst@R Nn% 3 +Mancunian m&n'kjunI@n K6%,OA% 4 +Mancunians m&n'kjunI@nz Kj% 4 +Mandy 'm&ndI Nl% 2 +Manila m@'nIl@ Nn% 3 +Manilla m@'nIl@ K6% 3 +Manillas m@'nIl@z Kj$ 3 +Manitoba ,m&nI't@Ub@ Nm% 4 +Mannheim 'm&nhaIm Nn% 2 +Mansfield 'm&nsfild Nn% 2 +Manx m&Nks L@%,OA% 1 +Maoism 'maUIz@m L@% 3 +Maoist 'maUIst K6% 2 +Maoists 'maUIsts Kj% 2 +Maori 'maUrI K6% 2 +Maoris 'maUrIz Kj% 2 +Mar mAtS Y=% 1 +Maracaibo ,m&r@'kaIb@U Nn$ 4 +March mAtS K7%,Nn% 1 +Marches 'mAtSIz Kj$ 2 +Mardi Gras ,mAdI 'grA K9% 3 +Margaret 'mAgrIt Nl% 2 +Margate 'mAgeIt Nn% 2 +Marge mAdZ Nl% 1 +Margery 'mAdZ@rI Nl% 3 +Margie 'mAdZI Nl% 2 +Margrave 'mAgreIv K6$ 2 +Margraves 'mAgreIvz Kj$ 2 +Maria m@'rI@ Nl% 3 +Marian 'm&rI@n Nl% 3 +Marie m@'ri Nl% 2 +Marilyn 'm&rIlIn Nl% 3 +Marion 'm&rI@n Nl% 3 +Marjorie 'mAdZ@rI Nl% 3 +Mark mAk Nl% 1 +Market Drayton ,mAkIt 'dreItn Nn% 4 +Market Harborough ,mAkIt 'hAbr@ Nn% 4 +Marlborough 'mAlbr@ Nn% 2 +Marlene mA'lin Nl% 2 +Marlow 'mAl@U Nn% 2 +Marple 'mApl Nn$ 2 +Mars mAz No% 1 +Marsala mA'sAl@ L@$ 3 +Marseillaise ,mAs@'leIz K6% 3 +Marseillaises ,mAs@'leIzIz Kj$ 4 +Marseilles mA'seIlz Nn% 2 +Marske mAsk Nn$ 1 +Martha 'mAT@ Nl% 2 +Martian 'mASn K6%,OA% 2 +Martians 'mASnz Kj% 2 +Martin 'mAtIn Nl% 2 +Marxism 'mAksIz@m L@% 3 +Marxist 'mAksIst K6% 2 +Marxists 'mAksIsts Kj% 2 +Mary 'me@rI Nl% 2 +Maryland 'me@rIl@nd Nm% 3 +Maryport 'me@rIpOt Nn$ 3 +Mason-Dixon ,meIsn-'dIksn No$ 4 +Mass m&s M7% 1 +Massachusetts ,m&s@'tSusIts Nm% 4 +Masses 'm&sIz Mj% 2 +Matlock 'm&tl0k Nn% 2 +Matt m&t Nl% 1 +Matthew 'm&Tju Nl% 2 +Maud mOd Nl% 1 +Maudie 'mOdI Nl% 2 +Maundy Thursday ,mOndI 'T3zdI K6%,No% 4 +Maundy Thursdays ,mOndI 'T3zdIz Kj$ 4 +Maureen 'mOrin Nl% 2 +Maurice 'm0rIs Nl% 2 +Mauritania ,m0rI'teInI@ Nm% 5 +Mauritanian ,m0rI'teInI@n K6%,OA% 5 +Mauritanians ,m0rI'teInI@nz Kj% 5 +Mauritian m@'rIS@n K6%,OA% 3 +Mauritians m@'rIS@nz Kj% 3 +Mauritius m@'rIS@s Nm% 3 +Mavis 'meIvIs Nl% 2 +Max m&ks Nl% 1 +Maxine 'm&ksin Nl% 2 +May meI K6%,Nl% 1 +Mayfair 'meIfe@R No% 2 +Mayfield 'meIfild Nn$ 2 +Mayo 'meI@U Nm% 2 +Mays meIz Kj$ 1 +McCarthyism m@'kATIIz@m L@% 5 +Meath miT Nm$ 1 +Mecca 'mek@ Nn% 2 +Med med Y>% 1 +Medan m@'dAn Nn$ 2 +Medellin ,med@'lin Nn$ 3 +Medicare 'medIke@R L@% 3 +Mediterranean ,medIt@'reInI@n OA% 6 +Meg meg Nl% 1 +Melbourne 'melb@n Nn% 2 +Melcombe 'melk@m Nn$ 2 +Melcombe Regis ,melk@m 'ridZIs Nn$ 4 +Melksham 'melkS@m Nn$ 2 +Meltham 'melT@m Nn$ 2 +Melton Mowbray ,meltn 'm@UbreI Nn% 4 +Memphis 'memfIs Nn% 2 +Mendelian men'dilI@n OA$ 4 +Meopham 'mep@m Nn$ 2 +Mephistophelian ,mefIst@'filI@n OA% 6 +Mercator m@'keIt@R No% 3 +Mercury 'm3kjUrI No% 3 +Merthyr Tydfil ,m3T@ 'tIdvIl Nn% 4 +Merton 'm3tn Nn% 2 +Mesdames meI'dAm Kj% 2 +Mesdemoiselles ,meIdmw@'zel Kj% 4 +Messiah mI'saI@ K6% 3 +Messiahs mI'saI@z Kj% 3 +Messieurs meI'sj3R Kj% 2 +Messina me'sin@ Nn% 3 +Messrs 'mes@z Kj% 2 +Met met No$ 1 +Methodism 'meT@dIz@m L@% 4 +Methodist 'meT@dIst K6%,OA% 3 +Methodists 'meT@dIsts Kj% 3 +Methuselah mI'Tjuz@l@ No% 4 +Metro 'metr@U K6% 2 +Metros 'metr@Uz Kj% 2 +Metz mets Nn% 1 +Mexican 'meksIk@n K6%,OA% 3 +Mexicans 'meksIk@nz Kj% 3 +Mexico 'meksIk@U Nm% 3 +Mexico City ,meksIk@U 'sItI Nn% 5 +Mgr ,m0n'sinj@R Y:% 3 +Miami maI'&mI Nn% 3 +Michael 'maIkl Nl% 2 +Michaelmas 'mIklm@s K7%,No% 3 +Michaelmases 'mIklm@sIz Kj$ 4 +Michelle mI'Sel Nl% 2 +Michigan 'mISIg@n Nm% 3 +Mick mIk Nl% 1 +Mickey 'mIkI Nl% 2 +Middlesex 'mIdlseks Nm% 3 +Middleton 'mIdlt@n Nn% 3 +Middlewich 'mIdlwItS Nn$ 3 +Midlands 'mIdl@ndz Nm% 2 +Midwest mId'west No% 2 +Midwestern mId'westn OA% 3 +Mike maIk Nl% 1 +Milan mI'l&n Nn% 2 +Milano mI'lAn@U Nn% 3 +Mildenhall 'mIld@nhAl Nn$ 3 +Mildred 'mIldrId Nl% 2 +Miles maIlz Nl% 1 +Milford 'mIlf@d Nn$ 2 +Milford Haven ,mIlf@d 'heIvn Nn% 4 +Millicent 'mIlIsnt Nl% 3 +Millie 'mIlI Nl% 2 +Millom 'mIl@m Nn$ 2 +Milly 'mIlI Nl% 2 +Milngavie mIl'gaI Nn% 2 +Milnrow mIln'r@U Nn$ 2 +Milton Keynes ,mIltn 'kinz Nn% 3 +Milwaukee mIl'wOkI Nn% 3 +Minehead 'maInhed Nn% 2 +Minneapolis ,mInI'&p@lIs Nn% 5 +Minnesota ,mInI's@Ut@ Nm% 4 +Minotaur 'maIn@tOR K6% 3 +Minotaurs 'maIn@tOz Kj$ 3 +Minsk mInsk Nn% 1 +Minster-in-Sheppey ,mInst@r-In-'SepI Nn$ 5 +Miranda mI'r&nd@ Nl% 3 +Miriam 'mIrI@m Nl% 3 +Miss mIs K7% 1 +Misses 'mIsIz Kj% 2 +Mississippi ,mIsI'sIpI Nm% 4 +Missouri mI'zU@rI Nm% 3 +Mlle m&m'zel Y:$ 2 +Mme m&'d&m Y:$ 2 +Mo m@U Nl% 1 +Mod m0d K6$ 1 +Modena m@'din@ Nn% 3 +Mods m0dz Kj$ 1 +Mohammedan m@'h&mId@n K6% 4 +Mohammedans m@'h&mId@nz Kj% 4 +Moira 'moIr@ Nl% 2 +Mold m@Uld Nn$ 1 +Molly 'm0lI Nl% 2 +Moloch 'm@Ul0k No$ 2 +Mon 'mVndeI Y=% 2 +Monaco 'm0n@k@U Nm% 3 +Monaghan 'm0n@h@n Nm% 3 +Monchengladbach ,mVntSIn'gl&db&k Nn% 4 +Monday 'mVndI K6%,No% 2 +Mondays 'mVndIz Kj% 2 +Monegasque ,m0n@'g&sk K6$,OA$ 3 +Monegasques ,m0n@'g&sks Kj$ 3 +Mongol 'm0Ngl M6%,OA% 2 +Mongolia m0N'g@UlI@ Nm% 4 +Mongolian m0N'g@UlI@n M6%,OA% 4 +Mongolians m0N'g@UlI@nz Mj% 4 +Mongols 'm0Nglz Mj% 2 +Monica 'm0nIk@ Nl% 3 +Monifieth 'm0nIfiT Nn$ 3 +Monmouth 'm0nm@T Nn% 2 +Monsieur m@'sj3R Ki% 2 +Monsignor m0n'sinj@R K6% 3 +Monsignors m0n'sinj@z Kj% 3 +Montana m0n't&n@ Nm% 3 +Monterrey ,m0nt@'reI Nn% 3 +Montevideo ,m0ntIvI'deI@U Nn% 5 +Montreal ,m0ntrI'Ol Nn% 3 +Montrose m@n'tr@Uz Nn% 2 +Montserrat ,m0nts@'r&t Nm$ 3 +Montserratian ,m0nts@'r&Sn K6$,OA$ 4 +Montserratians ,m0nts@'r&Snz Kj$ 4 +Monza 'm0nz@ Nn% 2 +Moor mU@R K6$ 1 +Moorish 'mU@rIS OA$ 2 +Moors mU@z Kj$ 1 +Morecambe 'mOk@m Nn% 2 +Moresque mO'resk OA$ 2 +Morley 'mOlI Nn$ 2 +Mormon 'mOm@n K6%,OA% 2 +Mormonism 'mOm@nIz@m L@% 4 +Mormons 'mOm@nz Kj% 2 +Moroccan m@'r0k@n K6%,OA% 3 +Moroccans m@'r0k@nz Kj% 3 +Morocco m@'r0k@U Nm% 3 +Morpeth 'mOpIT Nn$ 2 +Morpheus 'mOfI@s No$ 3 +Morse mOs L@% 1 +Mosaic m@U'zeIIk OA$ 3 +Moscow 'm0sk@U Nn% 2 +Moslem 'm0zl@m K6%,OA% 2 +Moslems 'm0zl@mz Kj% 2 +Mossley 'm0slI Nn$ 2 +Motherwell 'mVD@wel Nn% 3 +Mountain Ash ,maUntIn '&S Nn$ 3 +Mountie 'maUntI K6% 2 +Mounties 'maUntIz Kj% 2 +Mozambican ,m@Uz&m'bik@n K6%,OA% 4 +Mozambicans ,m@Uz&m'bik@nz Kj% 4 +Mozambique ,m@Uz&m'bik Nm% 3 +Mr 'mIst@R Y:* 2 +Mrs 'mIsIz Y:* 2 +Ms mIz Y:% 1 +Mt maUnt Y=% 1 +Muhammad m@'h&mId No% 3 +Muhammadan m@'h&mId@n K6%,OA% 4 +Muhammadanism m@'h&mId@nIz@m L@% 6 +Muhammadans m@'h&mId@nz Kj% 4 +Mukden 'mUkd@n Nn$ 2 +Mulheim 'mUlhaIm Nn$ 2 +Mulhouse 'mUlhaUs Nn$ 2 +Multan ,mUl'tAn Nn$ 2 +Munich 'mjunIk Nn% 2 +Munster 'mVnst@R Nm% 2 +Muriel 'mjurI@l Nl% 3 +Murton 'm3tn Nn$ 2 +Muscovies 'mVsk@vIz Kj$ 3 +Muscovite 'mVsk@vaIt K6%,OA% 3 +Muscovites 'mVsk@vaIts Kj% 3 +Muscovy 'mVsk@vI K8$ 3 +Muslim 'mUzlIm K6% 2 +Muslims 'mUzlImz Kj% 2 +Musselburgh 'mVslbr@ Nn% 3 +Myra 'maI@r@ Nl% 2 +N en Ki$ 1 +N's enz Kj$ 1 +NAAFI 'n&fI Y>% 2 +NASA 'nAs@ Y=% 2 +NATO 'neIt@U Y=% 2 +NB ,en'bi Y~% 2 +NCO ,ensI'@U Y>% 3 +NHS ,en,eI'tSes Y>% 3 +NSPCC ,en,es,pi,si'si Y>% 5 +NT ,en'ti Y>% 2 +Nagoya 'nAg@Uj@ Nn$ 3 +Nagpur n&g'pU@R Nn$ 2 +Nailsea 'neIlzI Nn$ 2 +Nairn ne@n Nn$ 1 +Nairobi naI'r@UbI Nn% 3 +Namibia n@'mIbI@ Nm% 4 +Namibian n@'mIbI@n K6%,OA% 4 +Namibians n@'mIbI@nz Kj% 4 +Nanchang ,n&n'tS&N Nn$ 2 +Nancy 'n&nsI Nl% 2 +Nanking ,n&n'kIN Nn% 2 +Nanning ,n&n'nIN Nn$ 2 +Nantwich 'n&ntwItS Nn% 2 +Naomi 'neI@mI Nl% 3 +Naples 'neIplz Nn% 2 +Napoleonic n@,p@UlI'0nIk OA% 5 +Napoli 'nAp@lI Nn% 3 +Narborough 'nAbr@ Nn$ 2 +Nat n&t Nl% 1 +Natalie 'n&t@lI Nl% 3 +Nathaniel n@'T&nI@l Nl% 4 +Nauru 'naUru Nm$ 2 +Nauruan 'naUru@n M6$,OA$ 3 +Nauruans 'naUru@nz Mj$ 3 +Nazi 'nAtsI K6%,OA% 2 +Nazis 'nAtsIz Kj% 2 +Nazism 'nAtsIz@m L@% 3 +Neanderthal ni'&nd@tAl OA% 4 +Neapolitan nI@'p0lIt@n K6%,OA% 5 +Neapolitans nI@'p0lIt@nz Kj% 5 +Neath niT Nn$ 1 +Nebraska n@'br&sk@ Nm% 3 +Ned ned Nl% 1 +Neddy 'nedI Nl% 2 +Negress 'nigres K7% 2 +Negresses 'nigresIz Kj% 3 +Negro 'nigr@U K7% 2 +Negroes 'nigr@Uz Kj% 2 +Negroid 'nigroId K6$,OA% 2 +Negroids 'nigroIdz Kj$ 2 +Negus 'nig@s K7$ 2 +Neguses 'nig@sIz Kj$ 3 +Neil nil Nl% 1 +Nell nel Nl% 1 +Nelly 'nelI Ki%,Nl% 2 +Nelson 'nelsn Nn% 2 +Nepal nI'pOl Nm% 2 +Nepalese ,nep@'liz K9%,OA% 3 +Nepali nI'pOlI M6%,OA% 3 +Nepalis nI'pOlIz Mj% 3 +Neptune 'neptjun No% 2 +Neston 'nest@n Nn$ 2 +Nestor 'nest@R No$ 2 +Netherlander 'neD@l@nd@R K6% 4 +Netherlanders 'neD@l@nd@z Kj% 4 +Netherlands 'neD@l@ndz Nm% 3 +Netley 'netlI Nn$ 2 +Neuss noIs Nn$ 1 +Nevada n@'vAd@ Nm% 3 +Neville 'nevl Nl% 2 +New Cumnock ,nju 'kVmn@k Nn$ 3 +New Mills ,nju 'mIlz Nn$ 2 +New Orleans ,nju 'OlI@nz Nn% 3 +New Tredegar ,nju trI'dig@R Nn$ 4 +New Windsor ,nju 'wInz@R Nn$ 3 +New York ,nju 'jOk Nn% 2 +Newark 'nju@k Nn% 2 +Newarthill ,nju@t'hIl Nn$ 3 +Newbiggin 'njubIgIn Nn% 3 +Newbury 'njub@rI Nn% 3 +Newcastle 'njuk&sl Nn% 3 +Newcastle upon Tyne ,njuk&sl Vp0n 'taIn Nn% 6 +Newcastle-under-Lyme ,njuk&sl-,Vnd@-'laIm Nn% 6 +Newfoundland 'njuf@nl@nd Nm% 3 +Newham 'nju@m Nn% 2 +Newhaven 'njuheIvn Nn% 3 +Newmains 'njumeInz Nn$ 2 +Newmarket 'njumAkIt L@%,Nn% 3 +Newport 'njupOt Nn% 2 +Newport Pagnell ,njupOt 'p&gnIl Nn% 4 +Newquay 'njuki Nn% 2 +Newry 'njU@rI Nn% 2 +Newton Abbot ,njutn '&b@t Nn% 4 +Newton Aycliffe ,njutn 'eIklIf Nn$ 4 +Newton Mearns ,njutn 'mI@nz Nn$ 3 +Newton-le-Willows ,njutn-lI-'wIl@Uz Nn$ 5 +Newtonian nju't@UnI@n K6$,OA% 4 +Newtonians nju't@UnI@nz Kj$ 4 +Newtown 'njut@Un Nn$ 2 +Nicaragua ,nIk@'r&gjU@ Nm% 5 +Nicaraguan ,nIk@'r&gjU@n K6%,OA% 5 +Nicaraguans ,nIk@'r&gjU@nz Kj% 5 +Nice nis Nn% 1 +Nicholas 'nIk@l@s Nl% 3 +Nick nIk Nl% 1 +Nicola 'nIk@l@ Nl% 3 +Nicole nI'k0l Nl% 2 +Nigel 'naIdZl Nl% 2 +Niger ni'Ze@R Nm% 2 +Nigeria naI'dZI@rI@ Nm% 4 +Nigerian naI'dZI@rI@n K6%,OA% 4 +Nigerians naI'dZI@rI@nz Kj% 4 +Nigerien ni'Ze@rI@n K6$,OA$ 4 +Nigeriens ni'Ze@rI@nz Kj$ 4 +Nijmegen 'naImeIgn Nn% 3 +Nilotic naI'l0tIk OA$ 3 +Nimrod 'nImr0d No$ 2 +Niobe 'naI@bI No$ 3 +Nipponese ,nIp@'niz OA$ 3 +Nissen 'nIsn No$ 2 +Noah 'n@U@ No$ 2 +Nobel n@U'bel No$ 2 +Noel 'n@U@l K6$,Nl% 2 +Noels 'n@U@lz Kj$ 2 +Nora 'nOr@ Nl% 2 +Nordic 'nOdIk K6$,OA% 2 +Nordics 'nOdIks Kj$ 2 +Norfolk 'nOf@k Nm% 2 +Norman 'nOm@n K6%,Nl%,OA% 2 +Normans 'nOm@nz Kj% 2 +Normanton 'nOm@nt@n Nn$ 3 +Normantown 'nOm@ntaUn Nn$ 3 +Norse nOs L@%,OA% 1 +North Walsham ,nOT 'w0lS@m Nn$ 3 +Northallerton nOT'&l@t@n Nn% 4 +Northam 'nOT@m Nn$ 2 +Northampton nO'T&mpt@n Nn% 3 +Northamptonshire nO'T&mpt@nS@R Nm% 4 +Northman 'nOTm@n Ki$ 2 +Northmen 'nOTm@n Kj$ 2 +Northumberland nO'TVmb@l@nd Nm% 4 +Northwich 'nOTwItS Nn$ 2 +Norton 'nOtn Nn% 2 +Norway 'nOweI Nm% 2 +Norwegian nO'widZ@n M6%,OA% 3 +Norwegians nO'widZ@nz Mj% 3 +Norwich 'n0rItS Nn% 2 +Nottingham 'n0tIN@m Nn% 3 +Nottinghamshire 'n0tIN@mS@R Nm% 4 +Nov n0v Y=% 1 +Nova Scotia ,n@Uv@ 'sk@US@ Nm% 4 +Novara n@'vAr@ Nn$ 3 +November n@U'vemb@R K6%,No% 3 +Novembers n@U'vemb@z Kj$ 3 +Novokuznetsk ,n0v@kUz'njetsk Nn$ 4 +Novosibirsk ,n0v@sI'bI@sk Nn$ 4 +Nuneaton nVn'itn Nn% 3 +Nurenburg 'njU@r@nb3g Nn% 3 +O @U Ki$,W-$ 1 +O's @Uz Kj$ 1 +O-level '@U-levl K6% 3 +O-levels '@U-levlz Kj% 3 +OAP ,@U,eI'pi Y>% 3 +OAP's ,@U,eI'piz Y)% 3 +OAU ,@U,eI'ju Y>% 3 +OECD ,@U,i,si'di Y>% 4 +OED ,@U,i'di Y>% 3 +OK ,@U'keI W-% 2 +OPEC '@Upek Y=% 2 +OT ,@U'ti Y>% 2 +Oakengates '@UkngeIts Nn$ 3 +Oban '@Ub@n Nn% 2 +Oberhausen '@Ub@haUzn Nn$ 4 +Occident '0ksId@nt No% 3 +Occidental ,0ksI'dentl K6$,OA% 4 +Occidentals ,0ksI'dentlz Kj$ 4 +Ockbrook '0kbrUk Nn$ 2 +Ockendon '0knd@n Nn$ 3 +Oct 0kt Y=% 1 +October 0k't@Ub@R K6%,No% 3 +Octobers 0k't@Ub@z Kj$ 3 +Odessa @U'des@ Nn% 3 +Oedipus 'idIp@s No% 3 +Offaly '0f@lI Nm% 3 +Offenbach '0fnbAk Nn% 3 +Ogmore Valley ,0gmO 'v&lI Nn$ 4 +Ohio @U'haI@U Nm% 3 +Oklahoma ,@Ukl@'h@Um@ Nm% 4 +Oklahoma City ,@Ukl@,h@Um@ 'sItI Nn% 6 +Old Windsor ,@Uld 'wInz@R Nn$ 3 +Oldenburg '@Uldnb3g Nn$ 3 +Oldham '@Uld@m Nn% 2 +Oldland '@Uldl&nd Nn$ 2 +Olive '0lIv Nl% 2 +Oliver '0lIv@R Nl% 3 +Olivia @'lIvI@ Nl% 4 +Ollerton '0l@t@n Nn$ 3 +Ollie '0lI Nl% 2 +Olympiad @'lImpI&d K6% 4 +Olympiads @'lImpI&dz Kj$ 4 +Olympian @'lImpI@n K6%,OA% 4 +Olympians @'lImpI@nz Kj% 4 +Olympic @'lImpIk OA% 3 +Olympics @'lImpIks No% 3 +Oman @U'mAn Nm% 2 +Omani @U'mAnI K6%,OA% 3 +Omanis @U'mAnIz Kj% 3 +Omsk 0msk Nn% 1 +Ongar '0Ng@R Nn% 2 +Ontario 0n'te@rI@U Nm% 4 +Orangeman '0rIndZm&n Ki% 3 +Orangemen '0rIndZmen Kj% 3 +Oregon '0rIg@n Nm% 3 +Orkney 'OknI Nm% 2 +Orleans O'lI@nz Nn% 2 +Ormskirk 'Omzk3k Nn% 2 +Osaka @U'sAk@ Nn% 3 +Oscar '0sk@R K6%,Nl% 2 +Oscars '0sk@z Kj% 2 +Oslo '0zl@U Nn% 2 +Osnabruck '0zn@brUk Nn$ 3 +Ossett '0sIt Nn$ 2 +Oswald '0zw@ld Nl% 2 +Oswestry '0zwIstrI Nn% 3 +Otago @U'tAg@U Nm$ 3 +Otley '0tlI Nn% 2 +Ottawa '0t@w@ Nn% 3 +Oviedo ,0vI'eId@U Nn$ 4 +Oxbridge '0ksbrIdZ No% 2 +Oxford '0ksf@d Nn% 2 +Oxfordshire '0ksf@dS@R Nm% 3 +Oxon '0ksn Y~$ 2 +Oxonian 0k's@UnI@n K6$,OA$ 4 +Oxonians 0k's@UnI@nz Kj$ 4 +Oxted '0kstId Nn$ 2 +Ozzie '0zI Nl% 2 +P pi Ki$ 1 +P's piz Kj$ 1 +PA ,pi'eI Y>% 2 +PAYE ,pi,eI,waI'i Y=% 4 +PC ,pi'si Y:% 2 +PDSA ,pi,di,es'eI Y>% 4 +PE ,pi'i Y}% 2 +PLC ,pi,el'si Y=% 3 +PM ,pi'em Y>% 2 +PO ,pi'@U Y>% 2 +POW ,pi,@U'dVblju Y>% 5 +PR ,pi'AR Y}% 2 +PT ,pi'ti Y}% 2 +PTA ,pi,ti'eI Y>% 3 +PTO ,pi,ti'@U Y~% 3 +Pacific p@'sIfIk No% 3 +Paddies 'p&dIz Kj$ 2 +Paddy 'p&dI K8$,Nl% 2 +Paddy-wagon 'p&dI-w&gn K6$ 4 +Paddy-wagons 'p&dI-w&gnz Kj$ 4 +Padova 'pAd@v@ Nn$ 3 +Padua 'p&dZU@ Nn% 3 +Paisley 'peIzlI Nn% 2 +Pakistan ,pAkI'stAn Nm% 3 +Pakistani ,pAkI'stAnI K6%,OA% 4 +Pakistanis ,pAkI'stAnIz Kj% 4 +Palembang pA'lembAN Nn$ 3 +Palermo p@'l3m@U Nn% 3 +Palestine 'p&l@staIn Nm% 3 +Palestinian ,p&l@'stInI@n K6%,OA% 5 +Palestinians ,p&l@'stInI@nz Kj% 5 +Pam p&m Nl% 1 +Pamela 'p&m@l@ Nl% 3 +Pamplona p&m'pl@Un@ Nn% 3 +Panama ,p&n@'mA Nm% 3 +Panamanian ,p&n@'meInI@n K6%,OA% 5 +Panamanians ,p&n@'meInI@nz Kj% 5 +Paotow ,paU'taU Nn$ 2 +Papua 'p&pjU@ Nm% 3 +Papuan 'p&pjU@n K6%,OA% 3 +Papuans 'p&pjU@nz Kj% 3 +Paraguay 'p&r@gwaI Nm% 3 +Paraguayan ,p&r@'gwaI@n K6%,OA% 4 +Paraguayans ,p&r@'gwaI@nz Kj% 4 +Paris 'p&rIs Nn% 2 +Parisian p@'rIzI@n K6%,OA% 4 +Parisians p@'rIzI@nz Kj% 4 +Parkinson's 'pAkInsnz OA$ 3 +Parma 'pAm@ Nn% 2 +Parmesan 'pAmIz&n L@% 3 +Parsee pA'si K6$ 2 +Parsees pA'siz Kj$ 2 +Parthian 'pATI@n OA$ 3 +Pashto 'pVSt@U L@$ 2 +Passover 'pAs@Uv@R K6% 3 +Passovers 'pAs@Uv@z Kj$ 3 +Pat p&t Nl% 1 +Patience 'peISns Nl% 2 +Patrai 'p&trI Nn$ 2 +Patricia p@'trIS@ Nl% 3 +Patrick 'p&trIk Nl% 2 +Patty 'p&tI Nl% 2 +Paul pOl Nl% 1 +Paula 'pOl@ Nl% 2 +Pauline 'pOlin Nl% 2 +Pax Romana ,p&ks r@U'mAn@ Ki$ 4 +Peacehaven 'pisheIvn Nn$ 3 +Pearl p3l Nl% 1 +Peebles 'piblz Nn% 2 +Peg peg Nl% 1 +Peggy 'pegI Nl% 2 +Peking ,pi'kIN Nn% 2 +Pelton 'peltn Nn$ 2 +Pembroke 'pembr@k Nn% 2 +Penarth pI'nAT Nn% 2 +Pendlebury 'pendlbrI Nn$ 3 +Penelope p@'nel@pI Nl% 4 +Penicuik 'penIkUk Nn$ 3 +Penki ,pen'tSi Nn$ 2 +Pennsylvania ,pensl'veInI@ Nm% 5 +Penny 'penI Nl% 2 +Penrhyn 'penrIn Nn% 2 +Penrith 'penrIT Nn% 2 +Penryn 'penrIn Nn% 2 +Pentateuch 'pent@tjuk K6% 3 +Pentateuchs 'pent@tjuks Kj$ 3 +Pentecost 'pentIk0st L@% 3 +Pentecostal ,pentI'k0stl OA% 4 +Penzance pen'z&ns Nn% 2 +Percy 'p3sI Nl% 2 +Perm pjerm Nn$ 1 +Pershore 'p3SOR Nn% 2 +Persia 'p3S@ Nm% 2 +Persian 'p3Sn K6%,OA% 2 +Persians 'p3Snz Kj% 2 +Perth p3T Nn% 1 +Peru p@'ru Nm% 2 +Perugia p@'rudZI@ Nn% 4 +Peruvian p@'rUvI@n K6%,OA% 4 +Peruvians p@'rUvI@nz Kj% 4 +Pescara pes'kAr@ Nn$ 3 +Pete pit Nl% 1 +Peter 'pit@R Nl% 2 +Peterborough 'pit@br@ Nn% 3 +Peterhead 'pit@hed Nn% 3 +Peterlee 'pit@li Nn% 3 +Petersfield 'pit@zfild Nn$ 3 +PhD ,pi,eItS'di Y>% 3 +Pharaoh 'fe@r@U K6% 2 +Pharaohs 'fe@r@Uz Kj% 2 +Pharisee 'f&rIsi K6% 3 +Pharisees 'f&rIsiz Kj% 3 +Phil fIl Nl% 1 +Philadelphia ,fIl@'delfI@ Nn% 5 +Philip 'fIlIp Nl% 2 +Philippa 'fIlIp@ Nl% 3 +Philippine 'fIlIpin K6%,OA% 3 +Philippines 'fIlIpinz Nm% 3 +Philistine 'fIlIstaIn K6% 3 +Philistines 'fIlIstaInz Kj% 3 +Philistinism 'fIlIstInIzm L@% 5 +Phnom-Penh ,n0m-'pen Nn% 2 +Phoebe 'fibI Nl% 2 +Phoenix 'finIks Nn% 2 +Phyllis 'fIlIs Nl% 2 +Piacenza ,pI@'tSenz@ Nn$ 4 +Pill pIl Nn$ 1 +Piraeus paI'ri@s Nn% 3 +Pisa 'piz@ Nn% 2 +Pisces 'paIsiz No% 2 +Pittsburgh 'pItsb3g Nn% 2 +Platonic pl@'t0nIk OA% 3 +Plimsoll 'plIms@l K6$ 2 +Plimsolls 'plIms@lz Kj$ 2 +Pluto 'plut@U No% 2 +Plutos 'plut@Uz Kj$ 2 +Plymouth 'plIm@T Nn% 2 +Poland 'p@Ul@nd Nm% 2 +Polaris p@U'l&rIs Ki% 3 +Polaroid 'p@Ul@roId L@% 3 +Pole p@Ul K6% 1 +Poles p@Ulz Kj% 1 +Polish 'p@UlIS L@%,OA% 2 +Polly 'p0lI Nl% 2 +Pont-Llan-Fraith ,p0nt-l&n-'freIT Nn$ 3 +Pontardawe ,p0nt@'d@UI Nn$ 4 +Pontardulais ,p0nt@'duleIs Nn$ 4 +Pontefract 'p0ntIfr&kt Nn% 3 +Pontycymmer ,p0ntI'kIm@R Nn$ 4 +Pontypool ,p0ntI'pul Nn% 3 +Poole pul Nn% 1 +Poona 'pun@ Nn% 2 +Pope p@Up K6% 1 +Popes p@Ups Kj% 1 +Port Glasgow ,pOt 'gl&zg@U Nn$ 3 +Port Talbot ,pOt 't0lb@t Nn% 3 +Porthcawl pOT'kOl Nn% 2 +Porthmadog pOt'm&d@k Nn% 3 +Portishead 'pOtIzhed Nn% 3 +Portland 'pOtl@nd Nn% 2 +Porto Alegre ,pOt@U @'leIgrI Nn$ 5 +Portsmouth 'pOtsm@T Nn% 2 +Portugal 'pOtSUgl Nm% 3 +Portuguese ,pOtSU'giz M9%,OA% 3 +Potsdam 'p0tsd&m Nn% 2 +Potters Bar ,p0t@z 'bAR Nn$ 3 +Powys 'paUIs Nm% 2 +Poynton 'poInt@n Nn$ 2 +Poznan p0z'nAn Nn$ 2 +Prague prAg Nn% 1 +Prato 'prAt@U Nn$ 2 +Pre-Raphaelite ,pri'r&f@laIt K6%,OA% 4 +Pre-Raphaelites ,pri'r&f@laIts Kj% 4 +Pres prez Y>% 1 +Presbyterian ,prezbI'tI@rI@n K6%,OA% 5 +Presbyterianism ,presbI'tI@rI@nIz@m L@% 7 +Presbyterians ,prezbI'tI@rI@nz Kj% 5 +Prescot 'presk@t Nn$ 2 +Prestatyn pres't&tIn Nn% 3 +Preston 'prestn Nn% 2 +Prestonpans 'prestnp&nz Nn$ 3 +Prestwich 'prestwItS Nn$ 2 +Prestwick 'prestwIk Nn$ 2 +Pretoria prI'tOrI@ Nn% 4 +Princes Risborough ,prInsIz 'rIzbr@ Nn$ 4 +Priscilla prI'sIl@ Nl% 3 +Prof pr0f Y:% 1 +Protestant 'pr0tIst@nt K6%,OA% 3 +Protestantism 'pr0tIst@ntIz@m L@% 5 +Protestants 'pr0tIst@nts Kj% 3 +Providence 'pr0vIdns Nn% 3 +Pru pru Nl% 1 +Prudence 'prudns Nl% 2 +Prudhoe 'prud@U Nn$ 2 +Prussian 'prVSn K6%,OA% 2 +Prussians 'prVSnz Kj% 2 +Pte 'praIvIt Y:% 2 +Pty pr@'praI@t@rI Y=% 5 +Pudsey 'pVdzI Nn$ 2 +Pullman 'pUlm@n K6% 2 +Pullmans 'pUlm@nz Kj% 2 +Punch pVntS K7% 1 +Punches 'pVntSIz Kj$ 2 +Punic 'pjunIk OA$ 2 +Pusan ,pu's&n Nn$ 2 +Pwllheli pU'TelI Nn% 3 +Pyle paIl Nn$ 1 +Pyongyang ,pj0N'j&N Nn$ 2 +Pyrrhic 'pIrIk OA$ 2 +Q kju Ki$ 1 +Q's kjuz Kj$ 1 +QC ,kju'si Y>% 2 +QED ,kju,i'di Y~% 3 +Qatar kV'tAR Nm% 2 +Qatari kV'tArI K6%,OA% 3 +Qataris kV'tArIz Kj% 3 +Quai d'Orsay ,keI dO'seI Ki% 3 +Quaker 'kweIk@R K6% 2 +Quakers 'kweIk@z Kj% 2 +Quebec kwI'bek Nm% 2 +Queenborough-in-Sheppey,kwinbr@-In-'SepI Nn$ 5 +Queensbury 'kwinzb@rI Nn$ 3 +Queensferry 'kwinzferI Nn$ 3 +Queensland 'kwinzl@nd Nm% 2 +Quentin 'kwentIn Nl% 2 +Quinquagesima ,kwINkw@'dZesIm@ K6$,No$ 5 +Quinquagesimas ,kwINkw@'dZesIm@z Kj$ 5 +Quito 'kit@U Nn$ 2 +Quonset 'kw0nsIt K6$ 2 +Quonsets 'kw0nsIts Kj$ 2 +R AR Ki$ 1 +R"ontgen 'r0ntj@n K6% 2 +R"ontgens 'r0ntj@nz Kj$ 2 +R's Az Kj$ 1 +RA ,A'reI Y>% 2 +RADA 'rAd@ Y=% 2 +RAF ,A,reI'ef Y>% 3 +RC ,A'si Y~% 2 +RIP ,A,raI'pi Y~% 3 +RM ,A'rem Y>$ 2 +RN ,A'ren Y>% 2 +RSPCA ,A,res,pi,si'eI Y>% 5 +RSVP ,A,res,vi'pi Y~% 4 +Rabelaisian ,r&b@'leIzI@n OA$ 5 +Rachel 'reItSl Nl% 2 +Radcliffe 'r&dklIf Nn$ 2 +Radcliffe on Trent ,r&dklIf 0n 'trent Nn$ 4 +Radlett 'r&dlIt Nn$ 2 +Radstock 'r&dst0k Nn$ 2 +Rainford 'reInf@d Nn$ 2 +Ralph r&lf Nl% 1 +Ramadan ,r&m@'dAn K6%,No% 3 +Ramadans ,r&m@'dAnz Kj$ 3 +Ramsbottom 'r&mzb0t@m Nn$ 3 +Ramsgate 'r&mzgeIt Nn% 2 +Randolph 'r&nd0lf Nl% 2 +Rangoon r&N'gun Nn% 2 +Ravenna r@'ven@ Nn% 3 +Rawtenstall 'r0tnstOl Nn$ 3 +Ray reI Nl% 1 +Raymond 'reIm@nd Nl% 2 +Rd r@Ud Y=% 1 +Reading 'redIN Nn% 2 +Realtor 'rI@lt@R K6$ 3 +Realtors 'rI@lt@z Kj$ 3 +Rebecca r@'bek@ Nl% 3 +Recife re'sif@ Nn% 3 +Recklinghausen 'reklINhaUzn Nn$ 4 +Redbrick 'redbrIk OA% 2 +Redbridge 'redbrIdZ Nn$ 2 +Redditch 'redItS Nn$ 2 +Redruth 'redruT Nn$ 2 +Reg redZ Nl% 1 +Regensburg 'reIg@nzb3g Nn$ 3 +Regina rI'dZaIn@ No% 3 +Reginald 'redZInld Nl% 3 +Reich raIk K6% 1 +Reichs raIks Kj$ 1 +Reigate 'raIgeIt Nn% 2 +Remscheid 'remSaId Nn$ 2 +Renfrew 'renfru Nn% 2 +Rennes ren Nn% 1 +Retford 'retf@d Nn$ 2 +Rev rev Y:% 1 +Revd 'rev@r@nd Y:% 3 +Rex reks Nl% 1 +Reykjavik 'reIkj@vIk Nn% 3 +Rheims rimz Nn% 1 +Rhenish 'renIS OA$ 2 +Rheydt raIt Nn$ 1 +Rhine raIn No% 1 +Rhinestone 'raInst@Un K6% 2 +Rhinestones 'raInst@Unz Kj% 2 +Rhode r@Ud Nm% 1 +Rhondda 'r0nd@ Nn% 2 +Rhosllanerchrugog ,r0sl&n@'krug0g Nn$ 5 +Rhyl rIl Nn% 1 +Rhymney 'rImnI Nn$ 2 +Richard 'rItS@d Nl% 2 +Richmond 'rItSm@nd Nn% 2 +Richmond upon Thames ,rItSm@nd Vp0n 'temz Nn% 5 +Rick rIk Nl% 1 +Rickmansworth 'rIkm@nzw@T Nn% 3 +Ricky 'rIkI Nl% 2 +Riesling 'rislIN K6% 2 +Rieslings 'rislINz Kj$ 2 +Riga 'rig@ Nn$ 2 +Rijeka rI'ek@ Nn$ 3 +Rimini 'rImInI Nn% 3 +Ringwood 'rINwUd Nn$ 2 +Rio de Janeiro ,rI@U d@ dZ@'nI@r@U Nn% 6 +Ripley 'rIplI Nn$ 2 +Ripon 'rIpn Nn% 2 +Risborough 'rizbr@ Nn$ 2 +Risca 'rIsk@ Nn$ 2 +Rishton 'rISt@n Nn$ 2 +Rita 'rit@ Nl% 2 +Riviera ,rIvI'e@r@ No% 4 +Rob r0b Nl% 1 +Robert 'r0b@t Nl% 2 +Robin 'r0bIn Nl% 2 +Rochdale 'r0tSdeIl Nn% 2 +Rochester 'r0tSIst@R Nn% 3 +Rod r0d Nl% 1 +Rodney 'r0dnI Nl% 2 +Roentgen 'r0ntj@n K6% 2 +Roentgens 'r0ntj@nz Kj% 2 +Roger 'r0dZ@R Nl% 2 +Romaic r@U'meIIk L@$,OA$ 3 +Roman 'r@Um@n K6%,OA% 2 +Romance r@'m&ns OA% 2 +Romanesque ,r@Um@'nesk L@% 3 +Romania r@'meInI@ Nm% 4 +Romanian r@'meInI@n M6%,OA% 4 +Romanians r@'meInI@nz Mj% 4 +Romanies 'r0m@nIz Mj% 3 +Romans 'r@Um@nz Kj% 2 +Romany 'r0m@nI M8%,OA% 3 +Rome r@Um Nn% 1 +Romish 'r@UmIS OA$ 2 +Romsey 'rVmzI Nn$ 2 +Ron r0n Nl% 1 +Ronald 'r0nld Nl% 2 +Roneo 'r@UnI@U H0%,K6% 3 +Roneoed 'r@UnI@Ud Hc%,Hd% 3 +Roneoing 'r@UnI@UIN Hb$ 4 +Roneos 'r@UnI@Uz Ha$,Kj$ 3 +Ronnie 'r0nI Nl% 2 +Roquefort 'r0kfOR L@% 2 +Rosalie 'r@Uz@lI Nl% 3 +Rosalind 'r0z@lInd Nl% 3 +Rosamund 'r0z@m@nd Nl% 3 +Rosario r@'zArI@U Nn$ 4 +Roscommon r0s'k0m@n Nm$ 3 +Rose r@Uz Nl% 1 +Rosemary 'r@Uzm@rI Nl% 3 +Rosie 'r@UzI Nl% 2 +Roslyn 'r0zlIn Nl% 2 +Ross-on-Wye ,r0s-0n-'waI Nn% 3 +Rossington 'r0sINt@n Nn$ 3 +Rosslare 'r0sle@R Nn% 2 +Rostock 'r0st0k Nn$ 2 +Rostov-Na-Donu ,r0st0f-n@-'d@Unu Nn$ 5 +Rotarian r@U'te@rI@n K6% 4 +Rotarians r@U'te@rI@nz Kj% 4 +Rotherham 'r0D@r@m Nn% 3 +Rothesay 'r0TsI Nn$ 2 +Rothwell 'r0Twel Nn$ 2 +Rotterdam 'r0t@d&m Nn% 3 +Roubaix 'rubeI Nn$ 2 +Rouen 'ru0N Nn% 2 +Roundhead 'raUndhed K6% 2 +Roundheads 'raUndhedz Kj% 2 +Rowlands Gill ,r@Ul@nz 'gIl Nn$ 3 +Roy roI Nl% 1 +Royston 'roIst@n Nn$ 2 +Rt Hon 'raIt ,h0n Y~% 2 +Rubicon 'rubIk@n K6% 3 +Rubicons 'rubIk@nz Kj$ 3 +Ruddington 'rVdINt@n Nn$ 3 +Rudolf 'rud0lf Nl% 2 +Rudy 'rudI Nl% 2 +Rugby 'rVgbI Nn% 2 +Rugeley 'rudZlI Nn% 2 +Runcorn 'rVNkOn Nn% 2 +Rupert 'rup@t Nl% 2 +Ruritanian ,rU@rI'teInI@n OA% 5 +Russia 'rVS@ Nm% 2 +Russian 'rVS@n M6%,OA% 2 +Russians 'rVS@nz Mj% 2 +Ruth ruT Nl% 1 +Rutherglen 'rVD@glen Nn$ 3 +Rutland 'rVtl@nd Nm% 2 +Rwanda rU'&nd@ Nm% 3 +Rwandan rU'&nd@n K6%,OA% 3 +Rwandans rU'&nd@nz Kj% 3 +Ryde raId Nn$ 1 +Ryehill 'raIhIl Nn$ 2 +S es Ki$ 1 +S's 'esIz Kj$ 2 +SALT s0lt Y~% 1 +SOS ,es@U'es Y>% 3 +SOSs ,es@U'esIz Y)% 4 +SRN ,es,A'ren Y>% 3 +SS ,es'es Y>% 2 +STD ,es,ti'di Y~% 3 +Saarbrucken 'zAbrUk@n Nn% 3 +Sabadeli ,s&b@'delI Nn$ 4 +Sabah 'sVb@ Nm$ 2 +Sabahan 'sVb@h@n K6$,OA$ 3 +Sabahans 'sVb@h@nz Kj$ 3 +Sabbath 's&b@T K6% 2 +Sabbaths 's&b@Ts Kj$ 2 +Sacramento ,s&kr@'ment@U Nn% 4 +Saffron Walden ,s&fr@n 'w0ldn Nn% 4 +Sagittarius ,s&dZI'te@rI@s No% 5 +Saigon saI'g0n Nn% 2 +Salamanca ,s&l@'m&Nk@ Nn$ 4 +Sale seIl Nn$ 1 +Salerno s@'l3n@U Nn% 3 +Salford 's0lf@d Nn% 2 +Salisbury 's0lzb@rI Nn% 3 +Sally 's&lI Nl% 2 +Saltash 's0lt&S Nn$ 2 +Saltburn 's0ltb3n Nn$ 2 +Saltcoats 's0ltk@Uts Nn$ 2 +Salvador 's&lv@dOR Nn% 3 +Salvadorean ,s&lv@'dOrI@n K6%,OA% 5 +Salvadoreans ,s&lv@'dOrI@nz Kj% 5 +Salzburg 's0ltsb3g Nn% 2 +Sam s&m Nl% 1 +Samantha s@'m&nT@ Nl% 3 +Samaritan s@'m&rIt@n K6% 4 +Samaritans s@'m&rIt@nz Kj% 4 +Sammy 's&mI Nl% 2 +Samoa s@'m@U@ Nm% 3 +Samoan s@'m@U@n K6%,OA% 3 +Samoans s@'m@U@nz Kj% 3 +Samuel 's&mju@l Nl% 3 +San Antonio ,s&n &n't@UnI@U Nn% 5 +San Bernardino ,s&n ,b3n@'din@U Nn$ 5 +San Diego ,s&n dI'eIg@U Nn% 4 +San Francisco ,s&n fr@n'sisk@U Nn% 4 +San Jose ,s&n h@'zeI Nn% 3 +San Juan ,s&n 'hwAn Nn% 2 +San Marinese ,s&n ,m&rI'niz K9$,OA$ 4 +San Marino ,s&n m@'rin@U Nm$ 4 +San Sebastian ,s&n sI'b&stI@n Nn% 5 +Sandbach 's&nb&tS Nn$ 2 +Sandown 's&ndaUn Nn% 2 +Sandra 'sAndr@ Nl% 2 +Sandy 's&ndI Nl% 2 +Sango 'sANg@U L@$ 2 +Sanskrit 's&nskrIt L@% 2 +Santa Claus 's&nt@ klOz K7%,No% 3 +Santa Clauses 's&nt@ klOzIz Kj$ 4 +Santander ,s&nt@n'de@R Nn% 3 +Santiago ,s&ntI'Ag@U Nn% 4 +Santo Domingo ,s&nt@U d@'mINg@U Nn$ 5 +Santos 's&nt0s Nn$ 2 +Sao Paolo ,saU 'paUl@U Nn% 3 +Sapphic 's&fIk OA$ 2 +Sapporo 'sAp@Ur@U Nn$ 3 +Sara 'se@r@ Nl% 2 +Saracen 's&r@sn K6% 3 +Saracens 's&r@snz Kj% 3 +Sarah 'se@r@ Nl% 2 +Sarajevo ,s&r@'jeIv@U Nn% 4 +Saratov sI'rAt0f Nn$ 3 +Sarawak s@'rAw&k Nm% 3 +Sarawakian ,s&r@'w&kI@n K6$,OA$ 5 +Sarawakians ,s&r@'w&kI@nz Kj$ 5 +Sarisbury 'se@zb@rI Nn$ 3 +Saskatchewan s@'sk&tS@w@n Nm% 4 +Sassari 's&s@rI Nn$ 3 +Sassenach 's&s@n&k K6% 3 +Sassenachs 's&s@n&ks Kj% 3 +Sat 's&t@deI Y=% 3 +Satan 'seItn K6% 2 +Satanic s@'t&nIk OA% 3 +Satans 'seItnz Kj$ 2 +Saturday 's&t@dI K6%,No% 3 +Saturdays 's&t@dIz Kj% 3 +Saturn 's&t@n No% 2 +Sauchie 'sOkI Nn$ 2 +Saudi Arabia ,saUdI @'reIbI@ Nm% 6 +Saudi Arabian ,saUdI @'reIbI@n K6%,OA% 6 +Saudi Arabians ,saUdI @'reIbI@nz Kj% 6 +Sawbridgeworth 'sObrIdZw@T Nn$ 3 +Saxon 's&ksn K6%,OA% 2 +Saxons 's&ksnz Kj% 2 +Scandinavian ,sk&ndI'neIvI@n K6%,OA% 5 +Scandinavians ,sk&ndI'neIvI@nz Kj% 5 +Scarborough 'skAbr@ Nn% 2 +Schwerin Sve'rin Nn$ 2 +Sci Fi ,saI 'faI Y}% 2 +Scorpio 'skOpI@U No% 3 +Scot sk0t K6% 1 +Scotch sk0tS M7%,OA% 1 +Scotches 'sk0tSIz Mj% 2 +Scotchman 'sk0tSm@n Ki$ 2 +Scotchmen 'sk0tSm@n Kj$ 2 +Scotchwoman 'sk0tSwUm@n Ki$ 3 +Scotchwomen 'sk0tSwImIn Kj$ 3 +Scotland 'sk0tl@nd Nm% 2 +Scotland Yard ,sk0tl@nd 'jAd No% 3 +Scots sk0ts Kj%,OA% 1 +Scotsman 'sk0tsm@n Ki% 2 +Scotsmen 'sk0tsm@n Kj% 2 +Scotswoman 'sk0tswUm@n Ki% 3 +Scotswomen 'sk0tswImIn Kj% 3 +Scottish 'sk0tIS OA% 2 +Scrooge skrudZ K6% 1 +Scrooges 'skrudZIz Kj$ 2 +Scunthorpe 'skVnTOp Nn% 2 +Scylla 'sIl@ K6$ 2 +Scyllas 'sIl@z Kj$ 2 +Seaford 'sif@d Nn$ 2 +Seaham 'si@m Nn$ 2 +Sealyham 'silI@m K6$ 3 +Sealyhams 'silI@mz Kj$ 3 +Seamus 'SeIm@s Nl% 2 +Sean SOn Nl% 1 +Seaton Burn ,sitn 'b3n Nn$ 3 +Seaton Delaval ,sitn 'del@vAl Nn$ 5 +Seattle sI'&tl Nn% 3 +Secretary-General ,sekrIterI-'dZenr@l K6% 6 +Secretary-Generals ,sekrIterI-'dZenr@lz Kj% 6 +Securicor sI'kjU@rIkOR No% 4 +Selby 'selbI Nn% 2 +Selkirk 'selk3k Nn% 2 +Selsey 'selsI Nn% 2 +Selston 'selst@n Nn$ 2 +Semarang s@'mArAN Nn$ 3 +Semite 'simaIt K6$,OA$ 2 +Semites 'simaIts Kj$ 2 +Semitic sI'mItIk OA% 3 +Senegal ,senI'gOl Nm% 3 +Senegalese ,senIg@'liz K9%,OA% 4 +Seoul s@Ul Nn% 1 +Sept sept Y=% 1 +September sep'temb@R K6%,No% 3 +Septembers sep'temb@z Kj$ 3 +Septuagint 'septjU@dZInt K6$ 4 +Septuagints 'septjU@dZInts Kj$ 4 +Serbo-Croat ,s3b@U-'kr@U&t L@% 4 +Serjeant-at-arms ,sAdZ@nt-@t-'Amz Ki$ 4 +Serjeants-at-arms ,sAdZ@nts-@t-'Amz Kj$ 4 +Sesotho sI'sutu L@$ 3 +Setswana sI'tswAn@ L@$ 3 +Seven Sisters ,sevn 'sist@z Nn$ 4 +Sevenoaks 'sevn@Uks Nn% 3 +Sevilla s@'vilj@ Nn$ 3 +Seville s@'vIl Nn% 2 +Seychelles 'seISelz Nm% 2 +Seychellois seI'SelwA K9%,OA% 3 +Sgt 'sAdZ@nt Y:% 2 +Shakespearian SeIk'spI@rI@n OA% 4 +Shanghai ,S&N'haI Nn% 2 +Shanklin 'S&NklIn Nn$ 2 +Sharon 'S&r@n Nl% 2 +Shavian 'SeIvI@n K6$,OA$ 3 +Shavians 'SeIvI@nz Kj$ 3 +Sheerness ,SI@'nes Nn% 3 +Sheffield 'Sefild Nn% 2 +Sheila 'Sil@ Nl% 2 +Shelford 'Self@d Nn$ 2 +Shepshed 'SepSed Nn$ 2 +Shepton Mallet ,Sept@n 'm&lIt Nn% 4 +Sheraton 'Ser@t@n L@$ 3 +Sherbourne 'S3bOn Nn% 2 +Sheringham 'SerIN@m Nn$ 3 +Shetland 'Setl@nd Nm% 2 +Shevington 'SevINt@n Nn$ 3 +Shihkiachwang ,SitSA'tSw&N Nn$ 3 +Shildon 'SIldn Nn$ 2 +Shirebrook 'SaI@brUk Nn$ 2 +Shiremoor 'SaI@mU@R Nn$ 2 +Shirley 'S3lI Nl% 2 +Shotton 'S0tn Nn$ 2 +Shotts S0ts Nn$ 1 +Shrewsbury 'Sr@UzbrI Nn% 2 +Shropshire 'Sr0pS@R Nm% 2 +Shrove Tuesday ,Sr@Uv 'tjuzdI K6%,No% 3 +Shrove Tuesdays ,Sr@Uv 'tjuzdIz Kj$ 3 +Shucks SVks W-$ 1 +Siam saI'&m Nm% 2 +Siamese ,saI@'miz K9%,OA% 3 +Sian SjAn Nn$ 1 +Siberian saI'bI@rI@n OA% 4 +Sicilian sI'sIlI@n K6%,OA% 4 +Sicilians sI'sIlI@nz Kj% 4 +Sid sId Nl% 1 +Sidmouth 'sIdm@T Nn% 2 +Sidney 'sIdnI Nl% 2 +Sierra Leone sI,er@ lI'@Un Nm% 5 +Sierra Leonian sI,er@ lI'@UnI@n K6%,OA% 7 +Sierra Leonians sI,er@ lI'@UnI@nz Kj% 7 +Sikh sik K6% 1 +Sikhs siks Kj% 1 +Sileby 'saIlbI Nn$ 2 +Silsden 'sIlzd@n Nn$ 2 +Silvia 'sIlvI@ Nl% 3 +Simon 'saIm@n Nl% 2 +Singapore ,sIN@'pOR Nm% 3 +Singaporean ,sIN@'pOrI@n K6%,OA% 5 +Singaporeans ,sIN@'pOrI@nz Kj% 5 +Singhalese ,sINh@'liz OA$ 3 +Sinhala sIn'hAl@ L@$ 3 +Sinhalese ,sInh@'liz K9$,OA$ 3 +Sining ,Si'nIN Nn$ 2 +Sinn Fein ,SIn 'feIn No% 2 +Sinologist saI'n0l@dZIst K6$ 4 +Sinologists saI'n0l@dZIsts Kj$ 4 +Sinology saI'n0l@dZI L@$ 4 +Sioux su K9% 1 +Sir Roger de Coverley s3 ,r0dZ@ d@ 'kVv@lI Ki$ 7 +Siracusa ,sIr@'kuz@ Nn$ 4 +Siswati sI'swAtI L@$ 3 +Sittingbourne 'sItINbOn Nn% 3 +Skegness skeg'nes Nn% 2 +Skelmanthorpe 'skelm@nTOp Nn$ 3 +Skelmersdale 'skelm@zdeIl Nn$ 3 +Skewen 'skjuIn Nn$ 2 +Skipton 'skIpt@n Nn% 2 +Skopje 'skOpjI Nn$ 2 +Slav slAv K6%,OA% 1 +Slavonic sl@'v0nIk OA% 3 +Slavs slAvz Kj% 1 +Sleaford 'slif@d Nn$ 2 +Sligo 'slaIg@U Nm% 2 +Slough slaU Nn% 1 +Slovak 'sl@Uv&k L@% 2 +Slovenian sl@'vinI@n M6$,OA$ 4 +Slovenians sl@'vinI@nz Mj$ 4 +Snr 'sinI@R Y~% 3 +Soc s0k Y>% 1 +Socratic s@'kr&tIk OA% 3 +Sofia 's@UfI@ Nn% 3 +Soho 's@Uh@U No% 2 +Sol s0l No$ 1 +Solicitor-General s@,lIsIt@-'dZenr@l K6% 6 +Solicitor-Generals s@,lIsIt@-'dZenr@lz Kj$ 6 +Solihull ,s@UlI'hVl Nn% 3 +Solingen 'zOlIN@n Nn$ 3 +Solon 's@Ul0n No$ 2 +Somali s@'mAlI M6%,OA% 3 +Somalia s@'mAlI@ Nm% 4 +Somalian s@'mAlI@n K6%,OA% 4 +Somalians s@'mAlI@nz Kj% 4 +Somalis s@'mAlIz Mj% 3 +Somercotes 'sVm@k@Uts Nn$ 3 +Somerset 'sVm@s@t Nm% 3 +Sonia 's0nI@ Nl% 2 +Soochow ,su'tSaU Nn$ 2 +Sophia s@'faI@ Nl% 3 +Sophie 's@UfI Nl% 2 +Sotho 'sutu M6$,OA$ 2 +Sothos 'sutuz Mj$ 2 +South Kirkby ,saUT 'k3kbI Nn$ 3 +South Normantown ,saUT 'nOm@ntaUn Nn$ 4 +South Ockendon ,saUT '0knd@n Nn$ 4 +South Shields ,saUT 'Silz Nn% 2 +Southampton saUT'&mt@n Nn% 3 +Southend-on-Sea ,saUTend-0n-'si Nn% 4 +Southport 'saUTpOt Nn% 2 +Southwark 'sVD@k Nn% 2 +Soviet 's@UvI@t K6%,OA% 3 +Soviets 's@UvI@ts Kj% 3 +Spain speIn Nm% 1 +Spalding 'sp0ldIN Nn$ 2 +Spaniard 'sp&nI@d K6% 3 +Spaniards 'sp&nI@dz Kj% 3 +Spanish 'sp&nIS L@%,OA% 2 +Spartan 'spAtn K6%,OA% 2 +Spartans 'spAtnz Kj% 2 +Spenborough 'spenb@r@ Nn$ 3 +Spennymoor 'spenImU@R Nn$ 3 +Split splIt Nn$ 1 +Spode sp@Ud L@$ 1 +Springfield 'sprINfild Nn$ 2 +Sq skwe@R Y=% 1 +Sr 'sIst@R Y:% 2 +Sri Lanka ,srI 'l&nk@ Nm% 3 +Sri Lankan ,srI 'l&nk@n K6%,OA% 3 +Sri Lankans ,srI 'l&nk@nz Kj% 3 +St seInt Y=% 1 +St Albans snt '0lbnz Nn% 3 +St Andrews snt '&ndruz Nn% 3 +St Andrews Major snt ,&ndruz 'meIdZ@R Nn$ 5 +St Austell snt '0stl Nn% 3 +St Blazey snt 'bleIzI Nn$ 3 +St Helens snt 'helnz Nn% 3 +St Ives snt 'aIvz Nn% 2 +St Louis snt 'luI Nn% 3 +St Neots snt 'nI@ts Nn$ 3 +St Paul snt 'pOl Nn% 2 +St Petersburg snt 'pit@zb3g Nn% 4 +St Stephen snt 'stivn Nn$ 3 +Sta 'steISn Y=% 2 +Stafford 'st&f@d Nn% 2 +Staffordshire 'st&f@dS@R Nm% 3 +Stakeford 'steIkf@d Nn$ 2 +Stalybridge 'steIlIbrIdZ Nn$ 3 +Stamford 'st&mf@d Nn% 2 +Stan st&n Nl% 1 +Stanford 'st&nf@d Nn% 2 +Stanley 'st&nlI Nl% 2 +Statehouse 'steIthaUs K6$ 2 +Statehouses 'steIthaUzIz Kj$ 3 +Stella 'stel@ Nl% 2 +Sten sten No$ 1 +Stephanie 'stef@nI Nl% 3 +Stephen 'stivn Nl% 2 +Steve stiv Nl% 1 +Steven 'stivn Nl% 2 +Stevenage 'stivnIdZ Nn% 3 +Stevenston 'stivnst@n Nn$ 3 +Stewart 'stju@t Nl% 2 +Steyning 'stenIN Nn$ 2 +Stilton 'stIlt@n M6% 2 +Stiltons 'stIlt@nz Mj$ 2 +Stirling 'st3lIN Nn% 2 +Stockholm 'st0kh@Um Nn% 2 +Stockport 'st0kpOt Nn% 2 +Stocksbridge 'st0ksbrIdZ Nn$ 2 +Stoke-on-Trent ,st@Uk-0n-'trent Nn% 3 +Stone st@Un Nn$ 1 +Stonehouse 'st@UnhaUs Nn$ 2 +Stornoway 'stOn@weI Nn% 3 +Stotfold 'st0tf@Uld Nn$ 2 +Stourbridge 'staU@brIdZ Nn$ 3 +Stourport-on-Severn ,staU@pOt-0n-'sevn Nn$ 6 +Stowmarket 'st@UmAkIt Nn$ 3 +Stranraer str&n'rAR Nn% 2 +Strasbourg 'str&sb3g Nn% 2 +Stratford-on-Avon ,str&tf@d-0n-'eIvn Nn% 5 +Strathaven 'streIvn Nn$ 2 +Strathclyde str&T'klaId Nm% 2 +Street strit Nn$ 1 +Stretford 'stretf@d Nn$ 2 +Stroud straUd Nn$ 1 +Stuart 'stju@t Nl% 2 +Studley 'stVdlI Nn$ 2 +Stuttgart 'StVtgAt Nn% 2 +Stygian 'stIdZI@n OA$ 3 +Styx stIks No$ 1 +Suchow ,su'tSaU Nn$ 2 +Sudan su'dAn Nm% 2 +Sudanese ,sud@'niz K9%,OA% 3 +Sudbury 'sVdbrI Nn$ 2 +Sue su Nl% 1 +Suffolk 'sVf@k Nm% 2 +Sumatra su'mAtr@ Nm% 3 +Sumatran su'mAtr@n K6%,OA% 3 +Sumatrans su'mAtr@nz Kj% 3 +Sun 'sVndeI Y=% 2 +Sunday 'sVndI K6%,No% 2 +Sundays 'sVndIz Kj% 2 +Sunderland 'sVnd@l@nd Nn% 3 +Supt ,sup@rIn'tend@nt Y:% 5 +Surabaja ,sU@r@'baI@ Nn$ 4 +Surrey 'sVrI Nm% 2 +Susan 'suzn Nl% 2 +Susanna su'z&n@ Nl% 3 +Susie 'sUzI Nl% 2 +Sussex 'sVsIks Nm% 2 +Sutton 'sVtn Nn$ 2 +Sutton Coldfield ,sVtn 'k@Ulfild Nn% 4 +Sutton in Ashfield ,sVtn In '&Sfild Nn$ 5 +Sutton-at-Hone ,sVtn-&t-'h@Un Nn$ 4 +Suzanne su'z&n Nl% 2 +Sverdlovsk ,sf3d'l0fsk Nn$ 2 +Swadlincote 'sw0dlINk0t Nn$ 3 +Swahili sw@'hilI L@% 3 +Swanage 'sw0nIdZ Nn% 2 +Swanley 'sw0nlI Nn$ 2 +Swansea 'sw0nzI Nn% 2 +Swazi 'swAzI M6%,OA% 2 +Swaziland 'swAzIl&nd Nm% 3 +Swazis 'swAzIz Mj% 2 +Swede swid K6%,OA% 1 +Sweden 'swidn Nm% 2 +Swedes swidz Kj% 1 +Swedish 'swidIS L@%,OA% 2 +Swindon 'swInd@n Nn% 2 +Swinton 'swInt@n Nn$ 2 +Swiss swIs K9%,OA% 1 +Switzerland 'swIts@l@nd Nm% 3 +Sydney 'sIdnI Nn% 2 +Sylvia 'sIlvI@ Nl% 3 +Syracuse 'saIr@kjuz Nn% 3 +Syria 'sIrI@ Nm% 3 +Syrian 'sIrI@n K6%,OA% 3 +Syrians 'sIrI@nz Kj% 3 +Syston 'sIst@n Nn$ 2 +T ti Ki$ 1 +T's tiz Kj$ 1 +T-junction 'ti-dZVNkSn K6% 3 +T-junctions 'ti-dZVNkSnz Kj% 3 +T-shirt 'ti-S3t K6% 2 +T-shirts 'ti-S3ts Kj% 2 +T-square 'ti-skwe@R K6% 2 +T-squares 'ti-skwe@z Kj% 2 +TB ,ti'bi Y}% 2 +TNT ,ti,en'ti Y}% 3 +TUC ,ti,ju'si Y>% 3 +TV ,ti'vi Y>% 2 +TVs ,ti'viz Y)% 2 +Tadley 't&dlI Nn$ 2 +Taegu ,teI'gu Nn$ 2 +Taffies 't&fIz Kj$ 2 +Taffy 't&fI K8$ 2 +Tahiti tA'hitI Nm% 3 +Tahitian tA'hiSn K6%,OA% 3 +Tahitians tA'hiSnz Kj% 3 +Taipei ,taI'peI Nn$ 2 +Taiwan taI'wAn Nm% 2 +Taiwanese ,taIw@'niz K9%,OA% 3 +Taiyuan ,taIju'An Nn$ 3 +Talmud 't&lmUd K6% 2 +Talmuds 't&lmUdz Kj% 2 +Tamil 't&mIl M6%,OA% 2 +Tamils 't&mIlz Mj% 2 +Tammany 't&m@nI Ki$ 3 +Tampere 't&mp@r@ Nn$ 3 +Tamworth 't&mw@T Nn$ 2 +Tangshan ,t&N'S&n Nn$ 2 +Tanzania ,t&nz@'nI@ Nm% 4 +Tanzanian ,t&nz@'nI@n K6%,OA% 4 +Tanzanians ,t&nz@'nI@nz Kj% 4 +Taranaki ,t&r@'nAkI Nm$ 4 +Taranto t@'t&nt@U Nn$ 3 +Tarrasa t@'r&s@ Nn$ 3 +Tashkent ,t&S'kent Nn% 2 +Tasmania t&z'meInI@ Nm% 4 +Taunton 'tOnt@n Nn% 2 +Taurus 'tOr@s No% 2 +Taverham 't&v@r@m Nn$ 3 +Tavistock 't&vIst0k Nn$ 3 +Tayside 'teIsaId Nm$ 2 +Tbilisi dbI'lisI Nn$ 3 +Te Deum ti 'di@m K6$ 3 +Te Deums ti 'di@mz Kj$ 3 +Tech tek Y>% 1 +Technicolor 'teknIkVl@R L@% 4 +Ted ted K6%,Nl% 1 +Teddy 'tedI Nl% 2 +Teddy boy 'tedI bOI K6% 3 +Teddy boys 'tedI bOIz Kj% 3 +Teds tedz Kj$ 1 +Teesside 'tiz+saId Nn% 2 +Teheran ,tI@'rAn Nn% 3 +Teignmouth 'tInm@T Nn% 2 +Tel-Aviv ,tel-@'viv Nn% 3 +Telford 'telf@d Nn% 2 +Telstar 'telstAR No% 2 +Tenby 'tenbI Nn% 2 +Tennessee ,ten@'si Nm% 3 +Tenterden 'tent@d@n Nn$ 3 +Terence 'ter@ns Nl% 2 +Teresa t@'riz@ Nl% 3 +Termi 'te@mI Nn$ 2 +Terpsichorean ,t3psIk@'ri@n OA% 5 +Terr 'ter@s Y=% 2 +Terry 'terI Nl% 2 +Tess tes Nl% 1 +Tessa 'tes@ Nl% 2 +Teuton 'tjut@n K6$ 2 +Teutonic tju't0nIk OA% 3 +Teutons 'tjut@nz Kj$ 2 +Tewkesbury 'tjuksb@rI Nn% 3 +Texan 'teks@n K6%,OA% 2 +Texans 'teks@nz Kj% 2 +Texas 'teks@s Nm% 2 +Thai taI M6%,OA% 1 +Thailand 'taIl&nd Nm% 2 +Thais taIz Mj% 1 +Thame teIm Nn$ 1 +Thanksgiving 'T&NksgIvIN K6% 3 +Thanksgivings 'T&NksgIvINz Kj$ 3 +Thatcham 'T&tS@m Nn$ 2 +Theo 'Ti@U Nl% 2 +Theodore 'Ti@dOR Nl% 3 +Theresa t@'riz@ Nl% 3 +Thespian 'TespI@n K6%,OA% 3 +Thespians 'TespI@nz Kj% 3 +Thessaloniki ,Tes@'l0nIkI Nn% 5 +Thetford 'Tetf@d Nn% 2 +Thionville 'tI0Nvil Nn$ 3 +Thirsk T3sk Nn$ 1 +Thomas 't0m@s Nl% 2 +Thornbury 'TOnbrI Nn$ 2 +Thorne TOn Nn$ 1 +Thurcroft 'T3kr0ft Nn$ 2 +Thurmaston 'T3mIstn Nn$ 3 +Thurrock 'TVr@k Nn$ 2 +Thurs 'T3zdeI Y=% 2 +Thursday 'T3zdI K6%,No% 2 +Thursdays 'T3zdIz Kj% 2 +Thurso 'T3s@U Nn$ 2 +Tibet tI'bet Nm% 2 +Tibetan tI'betn M6%,OA% 3 +Tibetans tI'betnz Mj% 3 +Tidworth 'tIdw@T Nn$ 2 +Tientsin ,tIen'tsIn Nn$ 2 +Tilburg 'tIlb3g Nn$ 2 +Tilbury 'tIlbrI Nn% 2 +Tim tIm Nl% 1 +Timmy 'tImI Nl% 2 +Timothy 'tIm@TI Nl% 3 +Tina 'tin@ Nl% 2 +Tipperary ,tIp@'re@rI Nm% 4 +Tiverton 'tIv@t@n Nn$ 3 +Tobago t@'beIg@U Nm% 3 +Tobagonian ,t@Ub@'g@UnI@n K6$,OA$ 5 +Tobagonians ,t@Ub@'g@UnI@nz Kj$ 5 +Toby 't@UbI Nl% 2 +Todmorden 't0dm@d@n Nn$ 3 +Togo 't@Ug@U Nm% 2 +Togolese ,t@Ug@'liz K9$,OA$ 3 +Tokay t@U'keI L@$ 2 +Tokyo 't@Ukj@U Nn% 2 +Tom t0m Nl% 1 +Tommy 't0mI Nl% 2 +Tonbridge 't0nbrIdZ Nn% 2 +Tonga 't0N@ Nm% 2 +Tongan 't0N@n M6%,OA% 2 +Tongans 't0N@nz Mj% 2 +Tony 't@UnI Nl% 2 +Tonyrefail ,t0nI'refeIl Nn$ 4 +Torbay ,tO'beI Nn% 2 +Tories 'tOrIz Kj% 2 +Torino t@'rin@U Nn$ 3 +Toronto t@'r0nt@U Nn% 3 +Tory 'tOrI K8% 2 +Totnes 't0tnIs Nn% 2 +Toulon tu'l0n Nn% 2 +Toulouse tu'luz Nn% 2 +Tours 'tU@R Nn% 1 +Tower Hamlets ,taU@ 'h&mlIts Nn% 4 +Tracy 'treIsI Nl% 2 +Tralee tr@'li Nn$ 2 +Tranent tr@'nent Nn$ 2 +Trappist 'tr&pIst K6$ 2 +Trappists 'tr&pIsts Kj$ 2 +Tredegar trI'dig@R Nn$ 3 +Trevor 'trev@R Nl% 2 +Trieste trI'est Nn% 2 +Tring trIN Nn% 1 +Trinidad 'trInId&d Nm% 3 +Trinidadian ,trInI'd&dI@n K6%,OA% 5 +Trinidadians ,trInI'd&dI@nz Kj% 5 +Trojan 'tr@UdZ@n K6%,OA% 2 +Trojans 'tr@UdZ@nz Kj% 2 +Troon trun Nn$ 1 +Trowbridge 'tr@UbrIdZ Nn$ 2 +Truro 'trU@r@U Nn% 2 +Tsar zAR K6% 1 +Tsarina zA'rin@ K6% 3 +Tsarinas zA'rin@z Kj$ 3 +Tsars zAz Kj% 1 +Tsinan ,tsi'n&n Nn$ 2 +Tsingtao ,tsIN'taU Nn$ 2 +Tsitsihar ,tsItsI'hAR Nn$ 3 +Tswana 'tswAn@ M6$,OA$ 2 +Tswanas 'tswAn@z Mj$ 2 +Tues 'tjuzdeI Y=% 2 +Tuesday 'tjuzdI K6%,No% 2 +Tuesdays 'tjuzdIz Kj% 2 +Tullibody ,tVlI'b0dI Nn$ 4 +Tunbridge Wells ,tVnbrIdZ 'welz Nn% 3 +Tunis 'tjunIs Nn% 2 +Tunisia tju'nIzI@ Nm% 4 +Tunisian tju'nIzI@n K6%,OA% 4 +Tunisians tju'nIzI@nz Kj% 4 +Turin tjU'rIn Nn% 2 +Turk t3k K6% 1 +Turkey 't3kI Nm% 2 +Turkish 't3kIS L@%,OA% 2 +Turks t3ks Kj% 1 +Turku 't3ku Nn$ 2 +Twelfth-night ,twelfT-'naIt K6%,No% 2 +Twelfth-nights ,twelfT-'naIts Kj$ 2 +Tyne taIn Nm% 1 +Tynemouth 'taInmaUT Nn% 2 +Tyrone tI'r@Un Nm% 2 +Tzupo ,tsu'p@U Nn$ 2 +U ju Ki$ 1 +U's juz Kj$ 1 +U-boat 'ju-b@Ut K6% 2 +U-boats 'ju-b@Uts Kj% 2 +U-turn 'ju-t3n K6% 2 +U-turns 'ju-t3nz Kj% 2 +UDI ,judI'aI Y~% 3 +UFO ,ju,e'f@U Y>% 3 +UFO's ,ju,e'f@Uz Y)% 3 +UK ,ju'keI Y>% 2 +UN ,ju'en Y>% 2 +UNESCO ju'nesk@U Y=% 3 +UNICEF 'junIsef Y=% 3 +US ,ju'es Y>% 2 +USA ,ju,es'eI Y>% 3 +USAF ,ju,es,eI'ef Y>% 4 +USN ,ju,es'en Y>% 3 +USS ,ju,es'es Y>% 3 +USSR ,ju,es,es'AR Y>% 4 +Uddingston 'VdINst@n Nn$ 3 +Udine 'udin@ Nn$ 3 +Ufa u'fA Nn$ 2 +Uganda ju'g&nd@ Nm% 3 +Ugandan ju'g&nd@n K6%,OA% 3 +Ugandans ju'g&nd@nz Kj% 3 +Ulster 'Vlst@R Nm% 2 +Ulverston 'Vlv@st@n Nn% 3 +Unitarian ,junI'te@rI@n K6%,OA% 5 +Unitarianism ,junI'te@rI@nIz@m L@% 7 +Unitarians ,junI'te@rI@nz Kj% 5 +Univ ,junI'v3sItI Y=% 5 +Up Holland Vp 'h0l@nd Nn$ 3 +Upton 'Vpt@n Nn$ 2 +Uranus jU'reIn@s No% 3 +Urdu 'U@du L@%,OA% 2 +Ursula '3sjUl@ Nl% 3 +Uruguay 'jU@r@gwaI Nm% 3 +Uruguayan ,jU@r@'gwaI@n K6%,OA% 4 +Uruguayans ,jU@r@'gwaI@nz Kj% 4 +Urumchi u'rumtSI Nn$ 3 +Ushaw Moor 'VSO mU@R Nn$ 3 +Utah 'jutO Nm% 2 +Utopia ju't@UpI@ K6% 4 +Utopian ju't@UpI@n OA% 4 +Utopias ju't@UpI@z Kj% 4 +Utrecht 'jutrekt Nn% 2 +Uttoxeter ju't0ksIt@R Nn% 4 +V vi Ki$ 1 +V and A ,vi @n 'eI Y>% 3 +V's viz Kj$ 1 +VAT ,vi,eI'ti Y}% 3 +VC ,vi'si Y>% 2 +VD ,vi'di Y}% 2 +VHF ,vi,eI'tSef Y~% 3 +VIP ,vi,aI'pi Y>% 3 +VIPs ,vi,aI'piz Y)% 3 +VP ,vi'pi Y>% 2 +VSO ,vi,es'@U Y=% 3 +Valencia v@'lensI@ Nn% 4 +Valenciennes v@,l0nsI'en Nn% 4 +Valladolid ,v&l@d0'lid Nn$ 4 +Vancouver v&n'kuv@R Nn% 3 +Vandal 'v&ndl K6% 2 +Vandals 'v&ndlz Kj% 2 +Vanessa v@'nes@ Nl% 3 +Varanasi v@'rAn@sI Nn$ 4 +Vasteras ,vest@'rOs Nn$ 3 +Vatican 'v&tIk@n K6% 3 +Vaticans 'v&tIk@nz Kj$ 3 +Venetian v@'niSn OA% 3 +Venezia v@'netsI@ Nn$ 4 +Venezuela ,venI'zweIl@ Nm% 4 +Venezuelan ,venI'zweIl@n K6%,OA% 4 +Venezuelans ,venI'zweIl@nz Kj% 4 +Venice 'venIs Nn% 2 +Ventnor 'ventn@R Nn$ 2 +Venus 'vin@s No% 2 +Vera 'vI@r@ Nl% 2 +Verey 'verI OA$ 2 +Vermont v3'm0nt Nm% 2 +Vernon 'v3n@n Nl% 2 +Verona v@'r@Un@ Nn% 3 +Veronica v@'r0nIk@ Nl% 4 +Very 'verI OA$ 2 +Vic vIk Nl% 1 +Vicenza vI'tSenz@ Nn$ 3 +Vicky 'vIkI Nl% 2 +Victor 'vIkt@R Nl% 2 +Victoria vIk'tOrI@ Nl% 4 +Victorian vIk'tOrI@n K6%,OA% 4 +Victoriana vIk,tOrI'An@ L@% 5 +Victorians vIk'tOrI@nz Kj% 4 +Vienna vI'en@ Nn% 3 +Vietnam ,vIet'nAm Nm% 2 +Vietnamese ,vIetn@'miz M9%,OA% 4 +Viewpark 'vjupAk Nn$ 2 +Vigo 'vig@U Nn$ 2 +Viking 'vaIkIN K6% 2 +Vikings 'vaIkINz Kj% 2 +Vince vIns Nl% 1 +Vincent 'vInsnt Nl% 2 +Viola 'vaI@l@ Nl% 3 +Violet 'vaI@l@t Nl% 3 +Virginia v@'dZInI@ L@%,Nl% 4 +Virginia Water v@'dZInI@ ,wOt@R Nn% 6 +Virgo 'v3g@U No% 2 +Vitoria vI'tOrI@ Nn$ 4 +Viv vIv Nl% 1 +Vivian 'vIvI@n Nl% 3 +Vivien 'vIvI@n Nl% 3 +Vivienne 'vIvI@n Nl% 3 +Volgograd 'v0lg@gr&d Nn% 3 +Voronezh v@'r@UnI Nn$ 3 +Vulgate 'vVlgeIt K6$ 2 +Vulgates 'vVlgeIts Kj$ 2 +W 'dVblju Ki$ 3 +W's 'dVbljuz Kj$ 3 +WC ,dVblju'si Y>% 4 +WCs ,dVblju'siz Y)% 4 +WHO ,dVblju,eItS'@U Y>% 5 +WI ,dVblju'aI Y>% 4 +WRAC ,dVblju,A,reI'si Y>% 6 +WRAF ,dVblju,A,reI'ef Y>% 6 +WRNS renz Y>% 1 +Wakefield 'weIkfild Nn% 2 +Wales weIlz Nm% 1 +Wall Street 'wOl strit No% 2 +Wallace 'w0l@s Nl% 2 +Wallasey 'w0l@sI Nn% 3 +Wallingford 'w0lINf@d Nn$ 3 +Wallsend 'wOlzend Nn$ 2 +Wally 'w0lI Nl% 2 +Walsall 'w0lsOl Nn% 2 +Walsham 'w0lS@m Nn$ 2 +Walter 'wOlt@R Nl% 2 +Waltham Forest ,w0lT@m 'f0rIst Nn% 4 +Walton 'w0ltn Nn$ 2 +Wandsworth 'w0nzw@T Nn% 2 +Wantage 'w0ntIdZ Nn$ 2 +Ware we@R Nn$ 1 +Warley 'wOlI Nn$ 2 +Warminster 'wOmInst@R Nn$ 3 +Warrington 'w0rINt@n Nn% 3 +Warsaw 'wOsO Nn% 2 +Warsop 'wOs0p Nn$ 2 +Warwick 'w0rIk Nn% 2 +Warwickshire 'w0rIkS@R Nm% 3 +Washington 'w0SINt@n Nn% 3 +Washington DC ,w0SINt@n ,di 'si Nn% 5 +Waterford 'wOt@f@d Nn% 3 +Waterloo ,wOt@'lu No% 3 +Watford 'w0tf@d Nn% 2 +Wayne weIn Nl% 1 +Wear wI@R Nm$ 1 +Wed 'wenzdeI Y=% 2 +Wednesday 'wenzdeI K6%,No% 2 +Wednesdays 'wenzdeIz Kj% 2 +Wellingborough 'welINbr@ Nn$ 3 +Wellington 'welINt@n Nm% 3 +Wells welz Nn% 1 +Welsh welS L@%,OA% 1 +Welshman 'welSm@n Ki% 2 +Welshmen 'welSm@n Kj% 2 +Welshpool 'welSpul Nn$ 2 +Welwyn 'welIn Nn% 2 +Welwyn Garden City ,welIn ,gAdn 'sItI Nn% 6 +Wendover 'wend@UveR Nn$ 3 +Wendy 'wendI Nl% 2 +Wesleyan 'wezlI@n K6%,OA% 3 +Wesleyans 'wezlI@nz Kj% 3 +West Bromwich ,west 'br0mItS Nn% 3 +Westbury 'wesb@rI Nn$ 3 +Westhoughton west'hOtn Nn$ 3 +Westmeath west'miD Nm$ 2 +Westminster 'westmInst@R Nn% 3 +Westmoreland 'westm@l@nd Nm% 3 +Weston-super-Mare ,westn-,sup@-'me@R Nn% 5 +Wetherby 'weD@bI Nn% 3 +Wexford 'weksf@d Nm% 2 +Weymouth 'weIm@T Nn% 2 +Whaley Bridge ,weIlI 'brIdZ Nn$ 3 +Wheatley Hill ,witlI 'hIl Nn$ 3 +Whig wIg K6$ 1 +Whigs wIgz Kj$ 1 +Whit wIt K6$ 1 +Whitburn 'wItb3n Nn$ 2 +Whitby 'wItbI Nn% 2 +Whitchurch 'wItS3tS Nn$ 2 +Whitehall waIt'hOl No% 2 +Whitehaven 'waItheIvn Nn% 3 +Whitley Bay ,wItlI 'beI Nn$ 3 +Whits wIts Kj$ 1 +Whitstable 'wItst@bl Nn% 3 +Whitsun 'wItsn K6%,No% 2 +Whitsuns 'wItsnz Kj$ 2 +Whitsuntide 'wIts@ntaId K6%,No% 3 +Whitsuntides 'wIts@ntaIdz Kj$ 3 +Whittle-le-Woods ,wItl-I-'wUdz Nn$ 4 +Whittlesey 'wItlsI Nn$ 3 +Whitworth 'wItw@T Nn$ 2 +Wick wIk Nn$ 1 +Wickford 'wIkf@d Nn$ 2 +Wicklow 'wIkl@U Nm% 2 +Widnes 'wIdnIs Nn% 2 +Wiesbaden 'visbAdn Nn% 3 +Wigan 'wIgn Nn% 2 +Wight waIt Nm% 1 +Wilf wIlf Nl% 1 +Wilfrid 'wIlfrId Nl% 2 +Wilhelmshaven 'vIlhelmzhAvn Nn$ 4 +Will wIl Nl% 1 +William 'wIlI@m Nl% 3 +Willie 'wIlI Nl% 2 +Willington 'wIlINt@n Nn$ 3 +Willy 'wIlI Nl% 2 +Wilmslow 'wIlmzl@U Nn$ 2 +Wilton 'wIlt@n K6$ 2 +Wiltons 'wIlt@nz Kj$ 2 +Wiltshire 'wIltS@R Nm% 2 +Wimbourne 'wImbOn Nn$ 2 +Wimbourne Minster ,wImbOn 'mInst@R Nn$ 4 +Winchester 'wIntSIst@R Nn% 3 +Windermere 'wInd@mI@R Nn% 3 +Windsor 'wInz@R Nn% 2 +Wingate 'wINgeIt Nn$ 2 +Winifred 'wInIfrId Nl% 3 +Winnie 'wInI Nl% 2 +Winnipeg 'wInIpeg Nn% 3 +Winsford 'wInzf@d Nn$ 2 +Wisbech 'wIzbitS Nn$ 2 +Wisconsin wIs'k0nsIn Nm% 3 +Witham 'wIt@m Nn$ 2 +Withernsea 'wID@nsi Nn$ 3 +Witney 'wItnI Nn$ 2 +Woburn 'w@Ub@n Nn$ 2 +Wokingham 'w@UkIN@m Nn$ 3 +Wolverhampton 'wUlv@,h&mpt@n Nn% 4 +Wolverton 'wUlv@t@n Nn$ 3 +Wombourne 'w0mbOn Nn$ 2 +Woodbridge 'wUdbrIdZ Nn$ 2 +Wootton Bassett ,wUtn 'b&sIt Nn$ 4 +Worcester 'wUst@R Nn% 2 +Workington 'w3kINt@n Nn% 3 +Worksop 'w3ks0p Nn$ 2 +Worthing 'w3DIN Nn% 2 +Wrexham 'reks@m Nn% 2 +Writtle 'rItl Nn$ 2 +Wroclaw 'r0tslAf Nn$ 2 +Wroughton 'rOtn Nn$ 2 +Wuhan ,wU'hAn Nn$ 2 +Wuppertal 'vUp@tAl Nn$ 3 +Wurzburg 'v3tsb3g Nn$ 2 +Wusih ,wU'si Nn$ 2 +Wycombe 'wIk@m Nn$ 2 +Wymondham 'wIm@nd@m Nn$ 3 +Wyoming waI'@UmIN Nm% 3 +Wythall 'wItl Nn$ 2 +X eks Ki$ 1 +X's 'eksIz Kj$ 2 +X-ray 'eks-reI H0%,K6% 26A +X-rayed 'eks-reId Hc%,Hd% 26A +X-raying 'eks-reIIN Hb% 36A +X-rays 'eks-reIz Ha%,Kj% 26A +Xerox 'zI@r0ks H1%,K7% 2 +Xeroxed 'zI@r0kst Hc%,Hd% 2 +Xeroxes 'zI@r0ksIz Ha%,Kj% 3 +Xeroxing 'zI@r0ksIN Hb% 3 +Xmas 'eksm@s K7%,No% 2 +Xmases 'eksm@sIz Kj$ 3 +Y waI Ki$ 1 +Y's waIz Kj$ 1 +YHA ,waI,eI'tSeI Y>% 3 +YMCA ,waI,em,si'eI Y>% 4 +YWCA ,waI,dVblju,si'eI Y>% 4 +Yank j&Nk K6% 1 +Yankee 'j&NkI K6% 2 +Yankees 'j&NkIz Kj% 2 +Yanks j&Nks Kj% 1 +Yarmouth 'jAm@T Nn% 2 +Yaroslavi ,j&r@'slAvI Nn$ 4 +Yate jeIt Nn$ 1 +Yateley 'jeItlI Nn$ 2 +Yemen 'jem@n Nm% 2 +Yemeni 'jem@nI K6$,OA$ 3 +Yemenis 'jem@nIz Kj$ 3 +Yeovil 'j@UvIl Nn% 2 +Yerevan ,jerI'vAn Nn$ 3 +Yiddish 'jIdIS L@% 2 +Yokohama ,j@Uk@'hAm@ Nn% 4 +York jOk Nn% 1 +Yorkley 'jOklI Nn$ 2 +Yorkshire 'jOkS@R Nm% 2 +Ystradgynlais ,Istr&d'gInlaIs Nn$ 4 +Yugoslav 'jug@UslAv K6%,OA% 3 +Yugoslavia ,jug@U'slAvI@ Nm% 5 +Yugoslavian ,jug@U'slAvI@n K6%,OA% 5 +Yugoslavians ,jug@U'slAvI@nz Kj% 5 +Yugoslavs 'jug@UslAvz Kj% 3 +Yukon 'juk0n Nm$ 2 +Yvonne I'v0n Nl% 2 +Z zed Ki$ 1 +Z's zedz Kj$ 1 +Zagreb 'zAgreb Nn% 2 +Zaire zA'I@R Nm% 3 +Zairean zA'I@rI@n K6$,OA$ 4 +Zaireans zA'I@rI@nz Kj$ 4 +Zambia 'z&mbI@ Nm% 3 +Zambian 'z&mbI@n K6%,OA% 3 +Zambians 'z&mbI@nz Kj% 3 +Zaporozhye ,z&p@'rOZI Nn$ 4 +Zaragoza ,z&r@'g@Uz@ Nn$ 4 +Zealand 'zIl@nd Nm$ 2 +Zealander 'zIl@nd@R K6$,OA$ 3 +Zealanders 'zIl@nd@z Kj$ 3 +Zen zen L@% 1 +Zimbabwe zIm'bAbwI Nm% 3 +Zimbabwean zIm'bAbwI@n K6$,OA$ 4 +Zimbabweans zIm'bAbwI@nz Kj$ 4 +Zion 'zaI@n K6% 2 +Zionism 'zaI@nIz@m L@% 4 +Zionist 'zaI@nIst K6%,OA% 3 +Zionists 'zaI@nIsts Kj% 3 +Zions 'zaI@nz Kj$ 2 +Zoe 'z@UI Nl% 2 +Zurich 'zjU@rIk Nn% 2 +_eclair I'kle@R K6% 2 +_eclairs I'kle@z Kj% 2 +_eclat 'eIklA L@$ 2 +_elan eI'lAn L@$ 2 +_elite eI'lit K6% 2 +_elites eI'lits Kj$ 2 +_emigr_e 'emIgreI K6% 3 +_emigr_es 'emIgreIz Kj% 3 +_ep_ee eI'peI K6$ 2 +_ep_ees eI'peIz Kj$ 2 +`a la carte ,A lA 'kAt Pu% 3 +`a la mode ,A lA 'm@Ud Pu% 3 +a @ S-* 1 +a eI Ki$ 1 +a fortiori ,eI ,fOtI'OraI Pu$ 5 +a posteriori ,eI ,p0sterI'OraI OA$,Pu$ 6 +a priori ,eI ,praI'OraI OA$,Pu$ 4 +a's eIz Kj$ 1 +ab initio ,&b I'nISI@U Pu$ 5 +abaci '&b@saI Kj$ 3 +aback @'b&k Pu% 2 +abacus '&b@k@s K7% 3 +abacuses '&b@k@sIz Kj% 4 +abaft @'bAft Pu$,T-$ 2 +abandon @'b&nd@n H0%,L@% 36A,14 +abandoned @'b&nd@nd Hc%,Hd%,OA% 36A,14 +abandoning @'b&nd@nIN Hb% 46A,14 +abandonment @'b&nd@nm@nt L@% 4 +abandons @'b&nd@nz Ha% 36A,14 +abase @'beIs H2% 26B +abased @'beIst Hc%,Hd% 26B +abasement @'beIsm@nt L@% 3 +abases @'beIsIz Ha% 36B +abash @'b&S H1% 26A +abashed @'b&St Hc%,Hd% 26A +abashes @'b&SIz Ha$ 36A +abashing @'b&SIN Hb$ 36A +abasing @'beIsIN Hb% 36B +abate @'beIt J2% 22A,6A +abated @'beItId Jc%,Jd% 32A,6A +abatement @'beItm@nt L@% 3 +abates @'beIts Ja% 22A,6A +abating @'beItIN Jb% 32A,6A +abattoir '&b@twAR K6% 3 +abattoirs '&b@twAz Kj% 3 +abb_e '&beI K6$ 2 +abb_es '&beIz Kj$ 2 +abbess '&bes K7% 2 +abbesses '&besIz Kj% 3 +abbey '&bI K6% 2 +abbeys '&bIz Kj% 2 +abbot '&b@t K6% 2 +abbots '&b@ts Kj% 2 +abbreviate @'brivIeIt H2% 46A,14 +abbreviated @'brivIeItId Hc%,Hd% 56A,14 +abbreviates @'brivIeIts Ha% 46A,14 +abbreviating @'brivIeItIN Hb% 56A,14 +abbreviation @,brivI'eISn M6% 5 +abbreviations @,brivI'eISnz Mj% 5 +abdicate '&bdIkeIt J2% 32A,6A +abdicated '&bdIkeItId Jc%,Jd% 42A,6A +abdicates '&bdIkeIts Ja% 32A,6A +abdicating '&bdIkeItIN Jb% 42A,6A +abdication ,&bdI'keISn M6% 4 +abdications ,&bdI'keISnz Mj% 4 +abdomen '&bd@m@n K6% 3 +abdomens '&bd@m@nz Kj% 3 +abdominal &b'd0mInl OA% 4 +abduct &b'dVkt H0% 26A +abducted &b'dVktId Hc%,Hd% 36A +abducting &b'dVktIN Hb% 36A +abduction &b'dVkSn K6% 3 +abductions &b'dVkSnz Kj% 3 +abducts &b'dVkts Ha% 26A +abeam @'bim Pu$ 2 +abed @'bed Pu% 2 +aberrant &'ber@nt OA% 3 +aberration ,&b@'reISn M6% 4 +aberrations ,&b@'reISnz Mj% 4 +abet @'bet H4% 26A,14 +abets @'bets Ha% 26A,14 +abetted @'betId Hc%,Hd% 36A,14 +abetting @'betIN Hb% 36A,14 +abeyance @'beI@ns L@% 3 +abhor @b'hOR H4% 26A +abhorred @b'hOd Hc%,Hd% 26A +abhorrence @b'h0r@ns L@% 3 +abhorrent @b'h0r@nt OA% 3 +abhorring @b'hOrIN Hb% 36A +abhors @b'hOz Ha% 26A +abide @'baId J2% 22C,3A,6A +abided @'baIdId Jc%,Jd% 32C,3A,6A +abides @'baIdz Ja% 22C,3A,6A +abiding @'baIdIN Jb%,OA% 32C,3A,6A +abilities @'bIlItIz Mj% 4 +ability @'bIlItI M8% 4 +abject '&bdZekt OA% 2 +abjection &b'dZekSn K6% 3 +abjections &b'dZekSnz Kj$ 3 +abjectly '&bdZektlI Pu% 3 +abjuration ,&bdZU@'reISn M6$ 4 +abjurations ,&bdZU@'reISnz Mj$ 4 +abjure @b'dZU@R H2$ 26A +abjured @b'dZU@d Hc$,Hd$ 26A +abjures @b'dZU@z Ha$ 26A +abjuring @b'dZU@rIN Hb$ 36A +ablative '&bl@tIv K6$,OA$ 3 +ablatives '&bl@tIvz Kj$ 3 +ablaut '&blaUt K6$ 2 +ablauts '&blaUts Kj$ 2 +ablaze @'bleIz Op%,Pu% 2 +able 'eIbl OB* 2 +able-bodied ,eIb@l-'b0dId OA% 4 +abler 'eIbl@R Or% 2 +ablest 'eIblIst Os% 2 +ablution @'bluSn K6% 3 +ablutions @'bluSnz Kj% 3 +ably 'eIblI Pu% 2 +abnegation ,&bnI'geISn L@$ 4 +abnormal &b'nOml OA% 3 +abnormalities ,&bnO'm&lItIz Mj% 5 +abnormality ,&bnO'm&lItI M8% 5 +abnormally &b'nOm@lI Pu% 4 +aboard @'bOd Pu%,T-% 2 +abode @'b@Ud Ic%,K6% 22C +abodes @'b@Udz Kj% 2 +abolish @'b0lIS H1% 36A +abolished @'b0lISt Hc%,Hd% 36A +abolishes @'b0lISIz Ha% 46A +abolishing @'b0lISIN Hb% 46A +abolition ,&b@'lISn L@% 4 +abolitionist ,&b@'lIS@nIst K6% 5 +abolitionists ,&b@'lIS@nIsts Kj% 5 +abominable @'b0mIn@bl OA% 5 +abominably @'b0mIn@blI Pu% 5 +abominate @'b0mIneIt H2% 46A,6C +abominated @'b0mIneItId Hc%,Hd% 56A,6C +abominates @'b0mIneIts Ha% 46A,6C +abominating @'b0mIneItIN Hb% 56A,6C +abomination @,b0mI'neISn M6% 5 +abominations @,b0mI'neISnz Mj% 5 +aboriginal ,&b@'rIdZ@nl K6$,OA$ 5 +aboriginals ,&b@'rIdZ@nlz Kj$ 5 +aborigine ,&b@'rIdZ@nI K6% 5 +aborigines ,&b@'rIdZ@nIz Kj% 5 +abort @'bOt J0% 22A,6A +aborted @'bOtId Jc%,Jd% 32A,6A +aborting @'bOtIN Jb% 32A,6A +abortion @'bOSn M6% 3 +abortionist @'bOS@nIst K6% 4 +abortionists @'bOS@nIsts Kj% 4 +abortions @'bOSnz Mj% 3 +abortive @'bOtIv OA% 3 +abortively @'bOtIvlI Pu% 4 +aborts @'bOts Ja% 22A,6A +abound @'baUnd I0% 23A +abounded @'baUndId Ic%,Id% 33A +abounding @'baUndIN Ib% 33A +abounds @'baUndz Ia% 23A +about @'baUt P+*,T-* 2 +about-face @,baUt-'feIs I2%,Ki% 3 +about-faced @,baUt-'feIst Ic%,Id% 3 +about-faces @,baUt-'feIsIz Ia% 4 +about-facing @,baUt-'feIsIN Ib% 4 +above @'bVv Pu*,T-* 2 +above board @,bVv 'bOd Op%,Pu% 3 +above-mentioned ,@bVv-'menS@nd OA% 4 +above-named ,@bVv-'neImd OA% 3 +abracadabra ,&br@k@'d&br@ L@$,W-% 5 +abrade @'breId H2$ 26A +abraded @'breIdId Hc$,Hd$ 36A +abrades @'breIdz Ha$ 26A +abrading @'breIdIN Hb$ 36A +abrasion @'breIZn M6% 3 +abrasions @'breIZnz Mj% 3 +abrasive @'breIsIv M6%,OA% 3 +abrasives @'breIsIvz Mj% 3 +abreast @'brest Pu% 2 +abridge @'brIdZ H2% 26A +abridged @'brIdZd Hc%,Hd% 26A +abridgement @'brIdZm@nt M6% 3 +abridgements @'brIdZm@nts Mj% 3 +abridges @'brIdZIz Ha% 36A +abridging @'brIdZIN Hb% 36A +abridgment @'brIdZm@nt M6% 3 +abridgments @'brIdZm@nts Mj% 3 +abroad @'brOd Pu% 2 +abrogate '&br@geIt H2$ 36A +abrogated '&br@geItId Hc$,Hd$ 46A +abrogates '&br@geIts Ha$ 36A +abrogating '&br@geItIN Hb$ 46A +abrogation ,&br@'geISn K6$ 4 +abrogations ,&br@'geISnz Kj$ 4 +abrupt @'brVpt OA% 2 +abruptly @'brVptlI Pu% 3 +abruptness @'brVptn@s L@% 3 +abscess '&bses K7% 2 +abscesses '&bsesIz Kj% 3 +abscond @b'sk0nd I0% 22A,3A +absconded @b'sk0ndId Ic%,Id% 32A,3A +absconding @b'sk0ndIN Ib% 32A,3A +absconds @b'sk0ndz Ia% 22A,3A +absence '&bs@ns M6% 2 +absences '&bs@nsIz Mj% 3 +absent '&bs@nt OA% 2 +absent @b'sent H0% 26B,14 +absent-minded ,&bs@nt-'maIndId OA% 4 +absent-mindedly ,&bs@nt-'maIndIdlI Pu% 5 +absent-mindedness ,&bs@nt-'maIndIdn@s L@% 5 +absented @b'sentId Hc%,Hd% 36B,14 +absentee ,&bs@n'ti K6% 3 +absenteeism ,&bs@n'tiIz@m L@% 5 +absentees ,&bs@n'tiz Kj% 3 +absenting @b'sentIN Hb% 36B,14 +absently '&bs@ntlI Pu% 3 +absents @b'sents Ha% 26B,14 +absinth '&bsInT L@% 2 +absinthe '&bsInT L@% 2 +absolute '&bs@lut OA% 3 +absolutely '&bs@lutlI Pu% 4 +absolution ,&bs@'luSn L@% 4 +absolutism ,&bs@'lutIz@m L@% 5 +absolve @b'z0lv H2% 26A,14 +absolved @b'z0lvd Hc%,Hd% 26A,14 +absolves @b'z0lvz Ha% 26A,14 +absolving @b'z0lvIN Hb% 36A,14 +absorb @b'sOb H0% 26A +absorbed @b'sObd Hc%,Hd% 26A +absorbent @b'sOb@nt K6%,OA% 3 +absorbents @b'sOb@nts Kj% 3 +absorbing @b'sObIN Hb% 36A +absorbs @b'sObz Ha% 26A +absorption @b'sOpSn L@% 3 +abstain @b'steIn I0% 22A,3A +abstained @b'steInd Ic%,Id% 22A,3A +abstainer @b'steIn@R K6% 3 +abstainers @b'steIn@z Kj% 3 +abstaining @b'steInIN Ib% 32A,3A +abstains @b'steInz Ia% 22A,3A +abstemious @b'stimI@s OA% 4 +abstemiously @b'stimI@slI Pu% 5 +abstemiousness @b'stimI@sn@s L@% 5 +abstention @b'stenSn M6$ 3 +abstentions @b'stenSnz Mj$ 3 +abstinence '&bstIn@ns L@% 3 +abstract '&bstr&kt K6%,OA% 2 +abstract @b'str&kt H0% 26A,14 +abstracted @b'str&ktId Hc%,Hd%,OA% 36A,14 +abstractedly @b'str&ktIdlI Pu% 4 +abstracting @b'str&ktIN Hb% 36A,14 +abstraction @b'str&kSn M6% 3 +abstractions @b'str&kSnz Mj% 3 +abstracts '&bstr&kts Kj% 2 +abstracts @b'str&kts Ha% 26A,14 +abstruse @b'strus OA% 2 +abstrusely @b'struslI Pu% 3 +abstruseness @b'strusn@s L@% 3 +absurd @b's3d OA% 2 +absurdities @b's3dItIz Mj% 4 +absurdity @b's3dItI M8% 4 +absurdly @b's3dlI Pu% 3 +abundance @'bVnd@ns L@% 3 +abundant @'bVnd@nt OA% 3 +abundantly @'bVnd@ntlI Pu% 4 +abuse @'bjus M6% 2 +abuse @'bjuz H2% 26A +abused @'bjuzd Hc%,Hd% 26A +abuses @'bjusIz Mj% 3 +abuses @'bjuzIz Ha% 36A +abusing @'bjuzIN Hb% 36A +abusive @'bjusIv OA% 3 +abusively @'bjusIvlI Pu% 4 +abut @'bVt I4% 23A +abutment @'bVtm@nt K6% 3 +abutments @'bVtm@nts Kj% 3 +abuts @'bVts Ia% 23A +abutted @'bVtId Ic%,Id% 33A +abutting @'bVtIN Ib% 33A +abysm @'bIz@m K6$ 3 +abysmal @'bIzml OA% 3 +abysmally @'bIzm@lI Pu% 4 +abysms @'bIz@mz Kj$ 3 +abyss @'bIs K7% 2 +abysses @'bIsIz Kj% 3 +acacia @'keIS@ K6$ 3 +acacias @'keIS@z Kj$ 3 +academic ,&k@'demIk K6%,OA% 4 +academically ,&k@'demIklI Pu% 5 +academicals ,&k@'demIklz Kj$ 5 +academician @,k&d@'mISn K6% 5 +academicians @,k&d@'mISnz Kj% 5 +academics ,&k@'demIks Kj% 4 +academies @'k&d@mIz Kj% 4 +academy @'k&d@mI K8% 4 +accede @k'sid I2% 22A,3A +acceded @k'sidId Ic%,Id% 32A,3A +accedes @k'sidz Ia% 22A,3A +acceding @k'sidIN Ib% 32A,3A +accelerando &k,sel@'r&nd@U K6$,OA$,Pu$ 5 +accelerandos &k,sel@'r&nd@Uz Kj$ 5 +accelerate @k'sel@reIt J2% 42A,6A +accelerated @k'sel@reItId Jc%,Jd% 52A,6A +accelerates @k'sel@reIts Ja% 42A,6A +accelerating @k'sel@reItIN Jb% 52A,6A +acceleration @k,sel@'reISn L@% 5 +accelerator @k'sel@reIt@R K6% 5 +accelerators @k'sel@reIt@z Kj% 5 +accent &k'sent H0% 26A +accent '&ks@nt M6% 2 +accented &k'sentId Hc%,Hd% 36A +accenting &k'sentIN Hb% 36A +accents &k'sents Ha% 26A +accents '&ks@nts Mj% 2 +accentuate @k'sentSUeIt H2% 46A +accentuated @k'sentSUeItId Hc%,Hd% 56A +accentuates @k'sentSUeIts Ha% 46A +accentuating @k'sentSUeItIN Hb% 56A +accentuation @k,sentSU'eISn K6% 5 +accentuations @k,sentSU'eISnz Kj% 5 +accept @k'sept J0% 22A,6A,9,16B +acceptability @k,sept@'bIlItI L@% 6 +acceptable @k'sept@bl OA% 4 +acceptably @k'sept@blI Pu% 4 +acceptance @k'sept@ns L@% 3 +acceptation ,&ksep'teISn K6$ 4 +acceptations ,&ksep'teISnz Kj$ 4 +accepted @k'septId Jc%,Jd% 32A,6A,9,16B +accepting @k'septIN Jb% 32A,6A,9,16B +accepts @k'septs Ja% 22A,6A,9,16B +access '&kses L@% 2 +accessaries @k'ses@rIz Kj% 4 +accessary @k'ses@rI K8% 4 +accessibility @k,ses@'bIlItI L@% 6 +accessible @k'ses@bl OA% 4 +accession &k'seSn M6% 3 +accessions &k'seSnz Mj% 3 +accessories @k'ses@rIz Kj% 4 +accessory @k'ses@rI K8% 4 +accidence '&ksId@ns L@$ 3 +accident '&ksId@nt M6% 3 +accident-prone '&ksId@nt-,pr@Un OA% 4 +accidental ,&ksI'dentl OA% 4 +accidentally ,&ksI'dent@lI Pu% 5 +accidents '&ksId@nts Mj% 3 +acclaim @'kleIm H0%,L@% 26A,16B,23 +acclaimed @'kleImd Hc%,Hd% 26A,16B,23 +acclaiming @'kleImIN Hb% 36A,16B,23 +acclaims @'kleImz Ha% 26A,16B,23 +acclamation ,&kl@'meISn L@% 4 +acclimate '&klImeIt J2$ 3 +acclimated '&klImeItId Jc$,Jd$ 4 +acclimates '&klImeIts Ja$ 3 +acclimating '&klImeItIN Jb$ 4 +acclimation ,&klaI'meISn L@$ 4 +acclimatization @,klaIm@taI'zeISn L@% 6 +acclimatize @'klaIm@taIz J2% 42A,14 +acclimatized @'klaIm@taIzd Jc%,Jd% 42A,14 +acclimatizes @'klaIm@taIzIz Ja% 52A,14 +acclimatizing @'klaIm@taIzIN Jb% 52A,14 +acclivities @'klIvItIz Kj$ 4 +acclivity @'klIvItI K8$ 4 +accolade '&k@leId K6% 3 +accolades '&k@leIdz Kj% 3 +accommodate @'k0m@deIt H2% 46A,14 +accommodated @'k0m@deItId Hc%,Hd% 56A,14 +accommodates @'k0m@deIts Ha% 46A,14 +accommodating @'k0m@deItIN Hb%,OA% 56A,14 +accommodation @,k0m@'deISn M6% 5 +accommodations @,k0m@'deISnz Mj% 5 +accompanied @'kVmp@nId Hc%,Hd% 46A,14 +accompanies @'kVmp@nIz Ha% 46A,14 +accompaniment @'kVmp@nIm@nt K6% 5 +accompaniments @'kVmp@nIm@nts Kj% 5 +accompanist @'kVmp@nIst K6% 4 +accompanists @'kVmp@nIsts Kj% 4 +accompany @'kVmp@nI H3% 46A,14 +accompanying @'kVmp@nIIN Hb% 56A,14 +accomplice @'kVmplIs K6% 3 +accomplices @'kVmplIsIz Kj% 4 +accomplish @'kVmplIS H1% 36A +accomplished @'kVmplISt Hc%,Hd%,OA% 36A +accomplishes @'kVmplISIz Ha% 46A +accomplishing @'kVmplISIN Hb% 46A +accomplishment @'kVmplISm@nt M6% 4 +accomplishments @'kVmplISm@nts Mj% 4 +accord @'kOd J0%,M6% 22A,2C,3A,12A,13A +accordance @'kOd@ns K6% 3 +accordances @'kOd@nsIz Kj$ 4 +accorded @'kOdId Jc%,Jd% 32A,2C,3A,12A,13A +according @'kOdIN Jb% 32A,2C,3A,12A,13A +according as @'kOdIN &z V-% 4 +according to @'kOdIN t@ T-% 4 +accordingly @'kOdINlI Pu% 4 +accordion @'kOdI@n K6% 4 +accordions @'kOdI@nz Kj% 4 +accords @'kOdz Ja%,Mj% 22A,2C,3A,12A,13A +accost @'k0st H0% 26A +accosted @'k0stId Hc%,Hd% 36A +accosting @'k0stIN Hb% 36A +accosts @'k0sts Ha% 26A +accouchement @'kuSm0N K6$ 3 +accouchements @'kuSm0Nz Kj$ 3 +account @'kaUnt J0%,M6% 23A,25 +accountable @'k@Unt@bl OA% 4 +accountancy @'kaUnt@nsI L@% 4 +accountant @'kaUnt@nt K6% 3 +accountants @'kaUnt@nts Kj% 3 +accounted @'kaUntId Jc%,Jd% 33A,25 +accounting @'kaUntIN Jb% 33A,25 +accounts @'kaUnts Ja%,Mj% 23A,25 +accoutrements @'kut@m@nts Kj$ 4 +accredit @'kredIt H0% 314 +accredited @'kredItId Hc%,Hd%,OA% 414 +accrediting @'kredItIN Hb% 414 +accredits @'kredIts Ha% 314 +accretion @'kriSn M6% 3 +accretions @'kriSnz Mj% 3 +accrue @'kru I2% 22A,3A +accrued @'krud Ic%,Id% 22A,3A +accrues @'kruz Ia% 22A,3A +accruing @'kruIN Ib% 32A,3A +accumulate @'kjumjUleIt J2% 42A,6A +accumulated @'kjumjUleItId Jc%,Jd% 52A,6A +accumulates @'kjumjUleIts Ja% 42A,6A +accumulating @'kjumjUleItIN Jb% 52A,6A +accumulation @,kjumjU'leISn M6% 5 +accumulations @,kjumjU'leISnz Mj% 5 +accumulative @'kjumjUl@tIv OA% 5 +accumulator @'kjumjUleIt@R K6% 5 +accumulators @'kjumjUleIt@z Kj% 5 +accuracies '&kj@r@sIz Mj% 4 +accuracy '&kj@r@sI M8% 4 +accurate '&kj@r@t OA% 3 +accurately '&kj@r@tlI Pu% 4 +accursed @'k3sId OA% 3 +accurst @'k3st OA% 2 +accusation ,&kju'zeISn M6% 4 +accusations ,&kju'zeISnz Mj% 4 +accusative @'kjuz@tIv K6%,OA% 4 +accusatives @'kjuz@tIvz Kj% 4 +accuse @'kjuz H2% 26A,14 +accused @'kjuzd Hc%,Hd% 26A,14 +accuser @'kjuz@R K6% 3 +accusers @'kjuz@z Kj% 3 +accuses @'kjuzIz Ha% 36A,14 +accusing @'kjuzIN Hb% 36A,14 +accusingly @'kjuzINlI Pu% 4 +accustom @'kVst@m H0% 314 +accustomed @'kVst@md Hc%,Hd%,OA% 314 +accustoming @'kVst@mIN Hb% 414 +accustoms @'kVst@mz Ha% 314 +ace eIs K6% 1 +acerbities @'s3bItIz Mj$ 4 +acerbity @'s3bItI M8% 4 +aces 'eIsIz Kj% 2 +acetate '&sIteIt K6$ 3 +acetates '&sIteIts Kj$ 3 +acetic @'sitIk OA% 3 +acetylene @'setIlin L@% 4 +ache eIk I2%,K6% 12A,3A,4A +ached eIkt Ic%,Id% 12A,3A,4A +aches eIks Ia%,Kj% 12A,3A,4A +achievable @'tSiv@bl OA% 4 +achieve @'tSiv H2% 26A +achieved @'tSivd Hc%,Hd% 26A +achievement @'tSivm@nt M6% 3 +achievements @'tSivm@nts Mj% 3 +achieves @'tSivz Ha% 26A +achieving @'tSivIN Hb% 36A +aching 'eIkIN Ib% 22A,3A,4A +acid '&sId M6%,OA% 2 +acidic @'sIdIk OA% 3 +acidified @'sIdIfaId Jc%,Jd% 42A,6A +acidifies @'sIdIfaIz Ja% 42A,6A +acidify @'sIdIfaI J3% 42A,6A +acidifying @'sIdIfaIIN Jb% 52A,6A +acidity @'sIdItI L@% 4 +acids '&sIdz Mj% 2 +acidulated @'sIdjUleItId OA$ 5 +acidulous @'sIdjUl@s OA$ 4 +ack-ack ,&k-'&k L@$ 2 +acknowledge @k'n0lIdZ H2% 36A,6C,9,16B,24A,25 +acknowledged @k'n0lIdZd Hc%,Hd% 36A,6C,9,16B,24A,25 +acknowledgement @k'n0lIdZm@nt K6% 4 +acknowledgements @k'n0lIdZm@nts Kj% 4 +acknowledges @k'n0lIdZIz Ha% 46A,6C,9,16B,24A,25 +acknowledging @k'n0lIdZIN Hb% 46A,6C,9,16B,24A,25 +acme '&kmI Ki% 2 +acne '&knI L@% 2 +acolyte '&k@laIt K6$ 3 +acolytes '&k@laIts Kj$ 3 +aconite '&k@naIt K6$ 3 +aconites '&k@naIts Kj$ 3 +acorn 'eIkOn K6% 2 +acorn-cup 'eIkOn-kVp K6$ 3 +acorn-cups 'eIkOn-kVps Kj$ 3 +acorns 'eIkOnz Kj% 2 +acoustic @'kustIk K6%,OA% 3 +acoustics @'kustIks Lk% 3 +acquaint @'kweInt H0% 214 +acquaintance @'kweInt@ns M6% 3 +acquaintances @'kweInt@nsIz Mj% 4 +acquaintanceship @'kweInt@nSIp K6% 4 +acquaintanceships @'kweInt@nSIps Kj% 4 +acquainted @'kweIntId Hc%,Hd% 314 +acquainting @'kweIntIN Hb% 314 +acquaints @'kweInts Ha% 214 +acquiesce ,&kwI'es I2% 32A,3A +acquiesced ,&kwI'est Ic%,Id% 32A,3A +acquiescence ,&kwI'esns K6% 4 +acquiescences ,&kwI'esnsIz Kj$ 5 +acquiescent ,&kwI'esnt OA% 4 +acquiesces ,&kwI'esIz Ia% 42A,3A +acquiescing ,&kwI'esIN Ib% 42A,3A +acquire @'kwaI@R H2% 26A +acquired @'kwaI@d Hc%,Hd% 26A +acquirement @'kwaI@m@nt M6% 3 +acquirements @'kwaI@m@nts Mj% 3 +acquires @'kwaI@z Ha% 26A +acquiring @'kwaI@rIN Hb% 36A +acquisition ,&kwI'zISn M6% 4 +acquisitions ,&kwI'zISnz Mj% 4 +acquisitive @'kwIz@tIv OA% 4 +acquit @'kwIt H4% 26A,14,16B +acquits @'kwIts Ha% 26A,14,16B +acquittal @'kwItl M6% 3 +acquittals @'kwItlz Mj% 3 +acquitted @'kwItId Hc%,Hd% 36A,14,16B +acquitting @'kwItIN Hb% 36A,14,16B +acre 'eIk@R K6% 2 +acreage 'eIk@rIdZ L@% 3 +acres 'eIk@z Kj% 2 +acrid '&krId OA% 2 +acrimonious ,&krI'm@UnI@s OA% 5 +acrimony '&krIm@nI L@% 4 +acrobat '&kr@b&t K6% 3 +acrobatic ,&kr@'b&tIk OA% 4 +acrobatics ,&kr@'b&tIks Lk% 4 +acrobats '&kr@b&ts Kj% 3 +acronym '&kr@nIm K6% 3 +acronyms '&kr@nImz Kj% 3 +acropolis @'kr0p@lIs K7$ 4 +acropolises @'kr0p@lIsIz Kj$ 5 +across @'kr0s Pu*,T-* 2 +acrostic @'kr0stIk K6$ 3 +acrostics @'kr0stIks Kj$ 3 +acrylic @'krIlIk K6% 3 +acrylics @'krIlIks Kj% 3 +act &kt J0%,K6% 12A,2C,3A,6A,15B +acted '&ktId Jc%,Jd% 22A,2C,3A,6A,15B +acting '&ktIN Jb%,L@%,OA% 22A,2C,3A,6A,15B +actinic &k'tInIk OA$ 3 +actinism '&ktInIz@m L@$ 4 +action '&kSn M6% 2 +actionable '&kS@n@bl OA% 4 +actions '&kSnz Mj% 2 +activate '&ktIveIt H2% 36A +activated '&ktIveItId Hc%,Hd% 46A +activates '&ktIveIts Ha% 36A +activating '&ktIveItIN Hb% 46A +activation ,&ktI'veISn K6% 4 +activations ,&ktI'veISnz Kj% 4 +active '&ktIv OA% 2 +actively '&ktIvlI Pu% 3 +activist '&ktIvIst K6% 3 +activists '&ktIvIsts Kj% 3 +activities &k'tIvItIz Mj% 4 +activity &k'tIvItI M8% 4 +actor '&kt@R K6% 2 +actors '&kt@z Kj% 2 +actress '&ktrIs K7% 2 +actresses '&ktrIsIz Kj% 3 +acts &kts Ja%,Kj% 12A,2C,3A,6A,15B +actual '&ktSU@l OA% 3 +actualities ,&ktSU'&lItIz Mj% 5 +actuality ,&ktSU'&lItI M8% 5 +actually '&ktSUlI Pu% 3 +actuarial ,&ktSU'e@rI@l OA% 5 +actuaries '&ktSU@rIz Kj% 4 +actuary '&ktSU@rI K8% 4 +actuate '&ktSUeIt H2% 36A +actuated '&ktSUeItId Hc%,Hd% 46A +actuates '&ktSUeIts Ha% 36A +actuating '&ktSUeItIN Hb% 46A +acuity @'kjuItI L@$ 4 +acumen '&kjUm@n L@$ 3 +acupuncture '&kjUpVNktS@R L@% 4 +acute @'kjut OA% 2 +acutely @'kjutlI Pu% 3 +acuteness @'kjutn@s L@% 3 +ad &d K6% 1 +ad hoc ,&d 'h0k OA%,Pu% 2 +ad infinitum ,&d ,InfI'naIt@m Pu% 5 +ad interim ,&d 'Int@rIm Pu$ 4 +ad lib ,&d 'lIb Pu% 2 +ad libitum ,&d 'lIbIt@m Pu$ 4 +ad nauseam ,&d 'nOzI&m Pu% 4 +ad valorem ,&d v@'lOr@m Pu$ 4 +ad-lib &d-'lIb I4%,OA% 22A +ad-libbed &d-'lIbd Ic%,Id% 22A +ad-libbing &d-'lIbIN Ib% 32A +ad-libs &d-'lIbz Ia% 22A +ad-man '&d-m&n Ki$ 2 +ad-men '&d-men Kj$ 2 +adage '&dIdZ K6% 2 +adages '&dIdZIz Kj% 3 +adagio @'dAdZI@U K6%,OA%,Pu% 4 +adagios @'dAdZI@Uz Kj$ 4 +adamant '&d@m@nt K6%,Op% 3 +adamantine ,&d@'m&ntaIn OA$ 4 +adamants '&d@m@nts Kj$ 3 +adapt @'d&pt H0% 26A,14 +adaptability @,d&pt@'bIlItI L@% 6 +adaptable @'d&pt@bl OA% 4 +adaptation ,&d&p'teISn M6% 4 +adaptations ,&d&p'teISnz Mj% 4 +adapted @'d&ptId Hc%,Hd% 36A,14 +adapter @'d&pt@R K6% 3 +adapters @'d&pt@z Kj% 3 +adapting @'d&ptIN Hb% 36A,14 +adaptor @'d&pt@R K6% 3 +adaptors @'d&pt@z Kj% 3 +adapts @'d&pts Ha% 26A,14 +add &d J0% 12C,3A,6A,9,14,15B +added '&dId Jc%,Jd% 22C,3A,6A,9,14,15B +addenda @'dend@ Kj% 3 +addendum @'dend@m Ki% 3 +adder '&d@R K6% 2 +adders '&d@z Kj% 2 +addict '&dIkt K6% 2 +addict @'dIkt H0% 2 +addicted @'dIktId Hc%,Hd% 3 +addicting @'dIktIN Hb% 3 +addiction @'dIkSn M6% 3 +addictions @'dIkSnz Mj% 3 +addictive @'dIktIv OA% 3 +addicts '&dIkts Kj% 2 +addicts @'dIkts Ha% 2 +adding '&dIN Jb% 22C,3A,6A,9,14,15B +adding-machine '&dIN-m@Sin K6% 4 +adding-machines '&dIN-m@Sinz Kj% 4 +addition @'dISn M6% 3 +additional @'dIS@nl OA% 4 +additionally @'dIS@n@lI Pu% 5 +additions @'dISnz Mj% 3 +additive '&dItIv K6% 3 +additives '&dItIvz Kj% 3 +addle '&dl J2%,OA% 22A,6A +addle-brained '&dl-breInd OA% 3 +addle-head '&dl-hed K6$ 3 +addle-heads '&dl-hedz Kj$ 3 +addle-pated '&dl-,peItId OA% 4 +addled '&dld Jc%,Jd% 22A,6A +addles '&dlz Ja$ 22A,6A +addling '&dlIN Jb$ 22A,6A +address @'dres H1%,M7% 26A,14,16B +addressed @'drest Hc%,Hd% 26A,14,16B +addressee ,&dre'si K6% 3 +addressees ,&dre'siz Kj% 3 +addresses @'dresIz Ha%,Mj% 36A,14,16B +addressing @'dresIN Hb% 36A,14,16B +adds &dz Ja% 12C,3A,6A,9,14,15B +adduce @'djus H2% 26A +adduced @'djust Hc%,Hd% 26A +adduces @'djusIz Ha% 36A +adducing @'djusIN Hb% 36A +adenoidal ,&dI'noIdl OA% 4 +adenoids '&dInoIdz Kj% 3 +adept '&dept K6$,OA% 2 +adepts '&depts Kj$ 2 +adequacy '&dIkw@sI L@% 4 +adequate '&dIkw@t OA% 3 +adequately '&dIkw@tlI Pu% 4 +adhere @d'hI@R I2% 22A,3A +adhered @d'hI@d Ic%,Id% 22A,3A +adherence @d'hI@r@ns K6% 3 +adherences @d'hI@r@nsIz Kj$ 4 +adherent @d'hI@r@nt K6% 3 +adherents @d'hI@r@nts Kj% 3 +adheres @d'hI@z Ia% 22A,3A +adhering @d'hI@rIN Ib% 32A,3A +adhesion @d'hiZn M6% 3 +adhesions @d'hiZnz Mj$ 3 +adhesive @d'hisIv M6%,OA% 3 +adhesives @d'hisIvz Mj% 3 +adieu @'dju K6%,W-% 2 +adieus @'djuz Kj% 2 +adieux @'djuz Kj$ 2 +adipose '&dIp@Us OA$ 3 +adjacent @'dZeIsnt OA% 3 +adjectival ,&dZIk'taIvl OA% 4 +adjective '&dZIktIv K6% 3 +adjectives '&dZIktIvz Kj% 3 +adjoin @'dZoIn J0% 22A,6A +adjoined @'dZoInd Jc%,Jd% 22A,6A +adjoining @'dZoInIN Jb%,OA% 32A,6A +adjoins @'dZoInz Ja% 22A,6A +adjourn @'dZ3n J0% 22A,2C,6A +adjourned @'dZ3nd Jc%,Jd% 22A,2C,6A +adjourning @'dZ3nIN Jb% 32A,2C,6A +adjournment @'dZ3nm@nt K6% 3 +adjournments @'dZ3nm@nts Kj% 3 +adjourns @'dZ3nz Ja% 22A,2C,6A +adjudge @'dZVdZ H2% 29,14,25 +adjudged @'dZVdZd Hc%,Hd% 29,14,25 +adjudges @'dZVdZIz Ha% 39,14,25 +adjudging @'dZVdZIN Hb% 39,14,25 +adjudicate @'dZudIkeIt J2% 42A,3A,6A,14,25 +adjudicated @'dZudIkeItId Jc%,Jd% 52A,3A,6A,14,25 +adjudicates @'dZudIkeIts Ja% 42A,3A,6A,14,25 +adjudicating @'dZudIkeItIN Jb% 52A,3A,6A,14,25 +adjudication @,dZudI'keISn K6% 5 +adjudications @,dZudI'keISnz Kj% 5 +adjudicator '@dZudIkeIt@R K6% 5 +adjudicators '@dZudIkeIt@z Kj% 5 +adjunct '&dZVNkt K6$ 2 +adjuncts '&dZVNkts Kj$ 2 +adjuration ,&dZU@'reISn M6$ 4 +adjurations ,&dZU@'reISnz Mj$ 4 +adjure @'dZU@R H2$ 217 +adjured @'dZU@d Hc$,Hd$ 217 +adjures @'dZU@z Ha$ 217 +adjuring @'dZU@rIN Hb$ 317 +adjust @'dZVst H0% 26A,14 +adjustable @'dZVst@bl OA% 4 +adjusted @'dZVstId Hc%,Hd% 36A,14 +adjuster @'dZVst@R K6% 3 +adjusters @'dZVst@z Kj% 3 +adjusting @'dZVstIN Hb% 36A,14 +adjustment @'dZVstm@nt M6% 3 +adjustments @'dZVstm@nts Mj% 3 +adjusts @'dZVsts Ha% 26A,14 +adjutant '&dZUt@nt K6% 3 +adjutants '&dZUt@nts Kj% 3 +admass '&dm&s L@$ 2 +administer @d'mInIst@R J0% 46A,14 +administered @d'mInIst@d Jc%,Jd% 46A,14 +administering @d'mInIst@rIN Jb% 56A,14 +administers @d'mInIst@z Ja% 46A,14 +administration @d,mInI'streISn M6% 5 +administrations @d,mInI'streISnz Mj% 5 +administrative @d'mInIstr@tIv OA% 5 +administratively @d'mInIstr@tIvlI Pu% 6 +administrator @d'mInIstreIt@R K6% 5 +administrators @d'mInIstreIt@z Kj% 5 +admirable '&dm@r@bl OA% 4 +admirably '&dmIr@blI Pu% 4 +admiral '&dm@r@l K6% 3 +admirals '&dm@r@lz Kj% 3 +admiralties '&dm@r@ltIz Kj% 4 +admiralty '&dm@r@ltI K8% 4 +admiration ,&dm@'reISn L@% 4 +admire @d'maI@R H2% 26A +admired @d'maI@d Hc%,Hd% 26A +admirer @d'maIr@R K6% 3 +admirers @d'maIr@z Kj% 3 +admires @d'maI@z Ha% 26A +admiring @d'maI@rIN Hb%,OA% 36A +admiringly @d'maI@rINlI Pu% 4 +admissibility @d,mIs@'bIlItI L@% 6 +admissible @d'mIs@bl OA% 4 +admission @d'mISn M6% 3 +admissions @d'mISnz Mj% 3 +admit @d'mIt J4% 23A,6A,6C,9,14,25 +admits @d'mIts Ja% 23A,6A,6C,9,14,25 +admittance @d'mItns L@% 3 +admitted @d'mItId Jc%,Jd% 33A,6A,6C,9,14,25 +admittedly @d'mItIdlI Pu% 4 +admitting @d'mItIN Jb% 33A,6A,6C,9,14,25 +admix &d'mIks J1$ 22A,6A +admixed &d'mIkst Jc$,Jd$ 22A,6A +admixes &d'mIksIz Ja$ 32A,6A +admixing &d'mIksIN Jb$ 32A,6A +admixture &d'mIkstS@R K6% 3 +admixtures &d'mIkstS@z Kj$ 3 +admonish @d'm0nIS H1% 36A,14 +admonished @d'm0nISt Hc%,Hd% 36A,14 +admonishes @d'm0nISIz Ha% 46A,14 +admonishing @d'm0nISIN Hb% 46A,14 +admonition ,&dm@'nISn M6% 4 +admonitions ,&dm@'nISnz Mj% 4 +admonitory @d'm0nItrI OA% 4 +ado @'du L@% 2 +adobe @'d@UbI L@$ 3 +adolescence ,&d@'lesns L@% 4 +adolescent ,&d@'lesnt K6%,OA% 4 +adolescents ,&d@'lesnts Kj% 4 +adopt @'d0pt H0% 26A +adopted @'d0ptId Hc%,Hd% 36A +adopting @'d0ptIN Hb% 36A +adoption @'d0pSn K6% 3 +adoptions @'d0pSnz Kj% 3 +adoptive @'d0ptIv OA% 3 +adopts @'d0pts Ha% 26A +adorable @'dOr@bl OA% 4 +adorably @'dOr@blI Pu% 4 +adoration ,&d@'reISn L@% 4 +adore @'dOR H2% 26A,6C +adored @'dOd Hc%,Hd% 26A,6C +adorer @'dOr@R K6% 3 +adorers @'dOr@z Kj% 3 +adores @'dOz Ha% 26A,6C +adoring @'dOrIN Hb%,OA% 36A,6C +adoringly @'dOrINlI Pu% 4 +adorn @'dOn H0% 26A,14 +adorned @'dOnd Hc%,Hd% 26A,14 +adorning @'dOnIN Hb% 36A,14 +adornment @'dOnm@nt M6% 3 +adornments @'dOnm@nts Mj% 3 +adorns @'dOnz Ha% 26A,14 +adrenal @'drinl OA$ 3 +adrenalin @'dren@lIn L@% 4 +adrift @'drIft Op%,Pu% 2 +adroit @'droIt OA% 2 +adroitly @'droItlI Pu% 3 +adroitness @'droItn@s L@% 3 +ads &dz Kj% 1 +adulation ,&djU'leISn L@% 4 +adult '&dVlt K6%,OA% 2 +adulterant @'dVlt@r@nt K6% 4 +adulterants @'dVlt@r@nts Kj% 4 +adulterate @'dVlt@reIt H2% 46A,14 +adulterated @'dVlt@reItId Hc%,Hd% 56A,14 +adulterates @'dVlt@reIts Ha% 46A,14 +adulterating @'dVlt@reItIN Hb% 56A,14 +adulteration @,dVlt@'reISn K6% 5 +adulterations @,dVlt@'reISnz Kj% 5 +adulterer @'dVlt@r@R K6% 4 +adulterers @'dVlt@r@z Kj% 4 +adulteress @'dVlt@rIs K7% 4 +adulteresses @'dVlt@rIsIz Kj% 5 +adulteries @'dVlt@rIz Mj$ 4 +adulterous @'dVlt@r@s OA% 4 +adultery @'dVlt@rI M8% 4 +adulthood '&d@lthUd M6% 3 +adulthoods '&d@lthUdz Mj$ 3 +adults '&dVlts Kj% 2 +adumbrate '&dVmbreIt H2$ 36A +adumbrated '&dVmbreItId Hc$,Hd$ 46A +adumbrates '&dVmbreIts Ha$ 36A +adumbrating '&dVmbreItIN Hb$ 46A +advance @d'vAns J2%,M6% 22A,2B,3A,6A,12A,13A,14 +advanced @d'vAnst Jc%,Jd%,OA% 22A,2B,3A,6A,12A,13A,14 +advancement @d'vAnsm@nt L@% 3 +advances @d'vAnsIz Ja%,Mj% 32A,2B,3A,6A,12A,13A,14 +advancing @d'vAnsIN Jb% 32A,2B,3A,6A,12A,13A,14 +advantage @d'vAntIdZ H2%,M6% 36A +advantaged @d'vAntIdZd Hc%,Hd% 36A +advantageous ,&dv@n'teIdZ@s OA% 4 +advantageously ,&dv@n'teIdZ@slI Pu% 5 +advantages @d'vAntIdZIz Ha%,Mj% 46A +advantaging @d'vAntIdZIN Hb% 46A +advent '&dv@nt K6% 2 +adventitious ,&dven'tIS@s OA$ 4 +advents '&dv@nts Kj% 2 +adventure @d'ventS@R H2%,M6% 3 +adventured @d'ventS@d Hc%,Hd% 3 +adventurer @d'ventS@r@R K6% 4 +adventurers @d'ventS@r@z Kj% 4 +adventures @d'ventS@z Ha%,Mj% 3 +adventuresome @d'ventS@s@m OA% 4 +adventuress @d'ventS@rIs K7% 4 +adventuresses @d'ventS@rIsIz Kj% 5 +adventuring @d'ventS@rIN Hb% 4 +adventurous @d'ventS@r@s OA% 4 +adverb '&dv3b K6% 2 +adverbial &d'v3bI@l OA% 4 +adverbially &d'v3bI@lI Pu% 5 +adverbs '&dv3bz Kj% 2 +adversaries '&dv@s@rIz Kj% 4 +adversary '&dv@s@rI K8% 4 +adverse '&dv3s OA% 2 +adversely &d'v3slI Pu% 3 +adversities @d'v3sItIz Mj% 4 +adversity @d'v3sItI M8% 4 +advert '&dv3t K6% 2 +advert @d'v3t I0$ 23A +adverted @d'v3tId Ic$,Id$ 33A +adverting @d'v3tIN Ib$ 33A +advertise '&dv@taIz J2% 32A,3A,6A +advertised '&dv@taIzd Jc%,Jd% 32A,3A,6A +advertisement @d'v3tIsm@nt M6% 4 +advertisements @d'v3tIsm@nts Mj% 4 +advertiser '&dv@taIz@R K6% 4 +advertisers '&dv@taIz@z Kj% 4 +advertises '&dv@taIzIz Ja% 42A,3A,6A +advertising '&dv@taIzIN Jb% 42A,3A,6A +adverts '&dv3ts Kj% 2 +adverts @d'v3ts Ia$ 23A +advice @d'vaIs M6% 2 +advices @d'vaIsIz Mj$ 3 +advisability @d,vaIz@'bIlItI L@% 6 +advisable @d'vaIz@bl OA% 4 +advise @d'vaIz J2% 23A,6A,6C,14,17,20,21 +advised @d'vaIzd Jc%,Jd%,OA% 23A,6A,6C,14,17,20,21 +advisedly @d'vaIzIdlI Pu% 4 +adviser @d'vaIz@R K6% 3 +advisers @d'vaIz@z Kj% 3 +advises @d'vaIzIz Ja% 33A,6A,6C,14,17,20,21 +advising @d'vaIzIN Jb% 33A,6A,6C,14,17,20,21 +advisory @d'vaIz@rI OA% 4 +advocacy '&dv@k@sI L@% 4 +advocate '&dv@k@t K6% 3 +advocate '&dv@keIt H2% 36A,6C +advocated '&dv@keItId Hc%,Hd% 46A,6C +advocates '&dv@k@ts Kj% 3 +advocates '&dv@keIts Ha% 36A,6C +advocating '&dv@keItIN Hb% 46A,6C +advowson ,&d'vaUzn K6$ 3 +advowsons ,&d'vaUznz Kj$ 3 +adz &dz K7$ 1 +adze &dz K6$ 1 +adzes '&dzIz Kj$ 2 +aegis 'idZIs K7$ 2 +aegises 'idZIsIz Kj$ 3 +aeon 'i@n K6$ 2 +aeons 'i@nz Kj$ 2 +aerate 'e@reIt H2% 26A +aerated 'e@reItId Hc%,Hd% 36A +aerates 'e@reIts Ha% 26A +aerating 'e@reItIN Hb% 36A +aeration e@'reISn K6% 3 +aerations e@'reISnz Kj% 3 +aerial 'e@rI@l K6%,OA% 3 +aerials 'e@rI@lz Kj% 3 +aerie 'e@rI K6$ 2 +aeries 'e@rIz Kj$ 2 +aerobatics ,e@r@'b&tIks Lk% 4 +aerodrome 'e@r@dr@Um K6% 3 +aerodromes 'e@r@dr@Umz Kj% 3 +aerodynamic ,e@r@UdaI'n&mIk OA% 4 +aerodynamics ,e@r@UdaI'n&mIks Lk% 5 +aeronaut 'e@r@nOt K6% 3 +aeronautics ,e@r@'nOtIks Lk% 4 +aeronauts 'e@r@nOts Kj% 3 +aeroplane 'e@r@pleIn K6% 3 +aeroplanes 'e@r@pleInz Kj% 3 +aerosol 'e@r@s0l M6% 3 +aerosols 'e@r@s0lz Mj% 3 +aerospace 'e@r@UspeIs L@% 3 +aertex 'e@teks L@% 2 +aery 'e@rI K8$ 2 +aesthete 'isTit K6% 2 +aesthetes 'isTits Kj% 2 +aesthetic is'TetIk L@%,OA% 3 +aesthetical is'TetIkl OA% 4 +aesthetically is'TetIklI Pu% 4 +aesthetics is'TetIks Lk% 3 +aether 'iT@R L@$ 2 +aetiologies ,itI'0l@dZIz Kj% 5 +aetiology ,itI'0l@dZI K8% 5 +afar @'fAR Pu% 2 +affability ,&f@'bIlItI L@% 5 +affable '&f@bl OA% 3 +affably '&f@blI Pu% 3 +affair @'fe@R K6% 2 +affairs @'fe@z Kj% 2 +affect @'fekt H0% 26A,7A +affectation ,&fek'teISn M6% 4 +affectations ,&fek'teISnz Mj% 4 +affected @'fektId Hc%,Hd%,OA% 36A,7A +affecting @'fektIN Hb%,OA% 36A,7A +affectingly @'fektINlI Pu% 4 +affection @'fekSn M6% 3 +affectionate @'fekS@n@t OA% 4 +affectionately @'fekS@n@tlI Pu% 5 +affections @'fekSnz Mj% 3 +affects @'fekts Ha% 26A,7A +affiance @'faI@ns H2$ 36A +affianced @'faI@nst Hc$,Hd$ 36A +affiances @'faI@nsIz Ha$ 46A +affiancing @'faI@nsIN Hb$ 46A +affidavit ,&fI'deIvIt K6% 4 +affidavits ,&fI'deIvIts Kj% 4 +affiliate @'fIlIeIt J2% 42A,6A,14 +affiliated @'fIlIeItId Jc%,Jd% 52A,6A,14 +affiliates @'fIlIeIts Ja% 42A,6A,14 +affiliating @'fIlIeItIN Jb% 52A,6A,14 +affiliation @,fIlI'eISn M6% 5 +affiliations @,fIlI'eISnz Mj% 5 +affinities @'fInItIz Mj% 4 +affinity @'fInItI M8% 4 +affirm @'f3m J0% 22A,6A,9,14 +affirmation ,&f@'meISn M6% 4 +affirmations ,&f@'meISnz Mj% 4 +affirmative @'f3m@tIv K6%,OA% 4 +affirmatives @'f3m@tIvz Kj% 4 +affirmed @'f3md Jc%,Jd% 22A,6A,9,14 +affirming @'f3mIN Jb% 32A,6A,9,14 +affirms @'f3mz Ja% 22A,6A,9,14 +affix '&fIks K7% 2 +affix @'fIks H1% 26A,14 +affixed @'fIkst Hc%,Hd% 26A,14 +affixes '&fIksIz Kj% 3 +affixes @'fIksIz Ha% 36A,14 +affixing @'fIksIN Hb% 36A,14 +afflatus @'fleIt@s L@$ 3 +afflict @'flIkt H0% 26A,14 +afflicted @'flIktId Hc%,Hd% 36A,14 +afflicting @'flIktIN Hb% 36A,14 +affliction @'flIkSn M6% 3 +afflictions @'flIkSnz Mj% 3 +afflicts @'flIkts Ha% 26A,14 +affluence '&flU@ns L@% 3 +affluent '&flU@nt K6%,OA% 3 +affluents '&flU@nts Kj% 3 +afford @'fOd H0% 26A,7A,12A,13A +afforded @'fOdId Hc%,Hd% 36A,7A,12A,13A +affording @'fOdIN Hb% 36A,7A,12A,13A +affords @'fOdz Ha% 26A,7A,12A,13A +afforest @'f0rIst H0% 36A +afforestation @,f0rI'steISn K6% 5 +afforestations @,f0rI'steISnz Kj% 5 +afforested @'f0rIstId Hc%,Hd% 46A +afforesting @'f0rIstIN Hb% 46A +afforests @'f0rIsts Ha% 36A +affranchise @'fr&ntSaIz H2$ 36A +affranchised @'fr&ntSaIzd Hc$,Hd$ 36A +affranchises @'fr&ntSaIzIz Ha$ 46A +affranchising @'fr&ntSaIzIN Hb$ 46A +affray @'freI K6$ 2 +affrays @'freIz Kj$ 2 +affront @'frVnt H0$,K6% 26A +affronted @'frVntId Hc$,Hd% 36A +affronting @'frVntIN Hb$ 36A +affronts @'frVnts Ha$,Kj$ 26A +afield @'fild Pu% 2 +afire @'faI@R Op% 2 +aflame @'fleIm Op% 2 +afloat @'fl@Ut Op% 2 +afoot @'fUt Op% 2 +afore @'fOR Pu%,T-% 2 +aforesaid @'fOsed OA%,Qx% 3 +aforethought @'fOTOt Pu% 3 +afoul @'faUl Pu$ 2 +afraid @'freId Op% 2 +afresh @'freS Pu% 2 +aft Aft Pu% 1 +after 'Aft@R OA%,Pu*,T-*,V-* 2 +after- 'Aft@R- U-% 2 +aftercare 'Aft@ke@R L@% 3 +afterdamp 'Aft@d&mp L@$ 3 +aftereffect 'Aft@rIfekt K6% 4 +aftereffects 'Aft@rIfekts Kj% 4 +afterglow 'Aft@gl@U Ki% 3 +aftermath 'Aft@m&T Ki% 3 +afternoon ,Aft@'nun M6% 3 +afternoons ,Aft@'nunz Mj% 3 +afters 'Aft@z Kj% 2 +afterthought 'Aft@TOt M6% 3 +afterthoughts 'Aft@TOts Mj% 3 +afterwards 'Aft@w@dz Pu% 3 +again @'gen Pu* 2 +against @'genst T-* 2 +agape @'geIp Op% 2 +agar-agar ,eIgAr-'eIgAR L@$ 4 +agate '&g@t K6$ 2 +agates '&g@ts Kj$ 2 +agave @'geIvI K6$ 3 +agaves @'geIvIz Kj$ 3 +age eIdZ J2%,M6* 12A,6A +age-bracket 'eIdZ-br&kIt K6$ 3 +age-brackets 'eIdZ-br&kIts Kj$ 3 +age-group 'eIdZ-grup K6% 2 +age-groups 'eIdZ-grups Kj% 2 +age-long 'eIdZ-l0N OA$ 2 +age-old 'eIdZ-@Uld OA% 2 +aged 'eIdZId Oq% 2 +aged eIdZd Jc%,Jd%,Op% 12A,6A +ageing 'eIdZIN Jb%,L@% 22A,6A +ageless 'eIdZl@s OA% 2 +agencies 'eIdZ@nsIz Mj% 3 +agency 'eIdZ@nsI M8% 3 +agenda @'dZend@ K6% 3 +agendas @'dZend@z Kj% 3 +agent 'eIdZ@nt K6% 2 +agent provocateur ,&Z0n pr@,v0k@'t3R Ki$ 6 +agents 'eIdZ@nts Kj% 2 +agents provocateurs ,&Z0n pr@,v0k@'t3R Kj$ 6 +ages 'eIdZIz Ja%,Mj% 22A,6A +agglomerate @'gl0m@r@t OA$ 4 +agglomerate @'gl0m@reIt J2$ 42A,6A +agglomerated @'gl0m@reItId Jc$,Jd$ 52A,6A +agglomerates @'gl0m@reIts Ja$ 42A,6A +agglomerating @'gl0m@reItIN Jb$ 52A,6A +agglomeration @,gl0m@'reISn M6$ 5 +agglomerations @,gl0m@'reISnz Mj$ 5 +agglutinate @'glutIneIt H2$ 42A,6A +agglutinated @'glutIneItId Hc$,Hd$ 52A,6A +agglutinates @'glutIneIts Ha$ 42A,6A +agglutinating @'glutIneItIN Hb$ 52A,6A +agglutinative @'glutIn@tIv OA$ 5 +aggrandize @'gr&ndaIz H2$ 36A +aggrandized @'gr&ndaIzd Hc$,Hd$ 36A +aggrandizement @'gr&ndIzm@nt K6$ 4 +aggrandizements @'gr&ndIzm@nts Kj$ 4 +aggrandizes @'gr&ndaIzIz Ha$ 46A +aggrandizing @'gr&ndaIzIN Hb$ 46A +aggravate '&gr@veIt H2% 36A +aggravated '&gr@veItId Hc%,Hd% 46A +aggravates '&gr@veIts Ha% 36A +aggravating '&gr@veItIN Hb% 46A +aggravation ,&gr@'veISn M6% 4 +aggravations ,&gr@'veISnz Mj% 4 +aggregate '&grIg@t K6% 3 +aggregate '&grIgeIt J2$ 32A,2E,6A +aggregated '&grIgeItId Jc$,Jd% 42A,2E,6A +aggregates '&grIg@ts Kj$ 3 +aggregates '&grIgeIts Ja$ 32A,2E,6A +aggregating '&grIgeItIN Jb$ 42A,2E,6A +aggregation ,&grI'geISn M6$ 4 +aggregations ,&grI'geISnz Mj$ 4 +aggression @'greSn M6% 3 +aggressions @'greSnz Mj$ 3 +aggressive @'gresIv OA% 3 +aggressively @'gresIvlI Pu% 4 +aggressiveness @'gresIvn@s L@% 4 +aggressor @'gres@R K6% 3 +aggressors @'gres@z Kj% 3 +aggrieve @'griv H2$ 2 +aggrieved @'grivd Hc$,Hd% 2 +aggrieves @'grivz Ha$ 2 +aggrieving @'grivIN Hb$ 3 +aggro '&gr@U L@% 2 +aghast @'gAst Op% 2 +agile '&dZaIl OA% 2 +agilely '&dZaIlI Pu% 3 +agility @'dZIlItI L@% 4 +agin @'gIn T-$ 2 +aging 'eIdZIN Jb%,L@% 22A,6A +agitate '&dZIteIt J2% 33A,6A +agitated '&dZIteItId Jc%,Jd%,OA% 43A,6A +agitates '&dZIteIts Ja% 33A,6A +agitating '&dZIteItIN Jb%,OA% 43A,6A +agitation ,&dZI'teISn M6% 4 +agitations ,&dZI'teISnz Mj% 4 +agitator '&dZIteIt@R K6% 4 +agitators '&dZIteIt@z Kj% 4 +aglow @'gl@U Op% 2 +agnail '&gneIl L@$ 2 +agnostic &g'n0stIk K6%,OA% 3 +agnosticism &g'n0stIsIz@m L@% 5 +agnostics &g'n0stIks Kj% 3 +ago @'g@U Pu* 2 +agog @'g0g Op% 2 +agonies '&g@nIz Mj% 3 +agonized '&g@naIzd OA% 3 +agonizing '&g@naIzIN OA% 4 +agonizingly '&g@naIzINlI Pu% 5 +agony '&g@nI M8% 3 +agora '&g@r@ K6$ 3 +agoraphobia ,&g@r@'f@UbI@ L@% 6 +agoras '&g@r@z Kj$ 3 +agrarian @'gre@rI@n OA$ 4 +agree @'gri J5% 22A,2C,3A,3B,4C,6A,7A +agreeable @'gri@bl OA% 4 +agreeably @'gri@blI Pu% 4 +agreed @'grid Jc%,Jd% 22A,2C,3A,3B,4C,6A,7A +agreeing @'griIN Jb% 32A,2C,3A,3B,4C,6A,7A +agreement @'grim@nt M6% 3 +agreements @'grim@nts Mj% 3 +agrees @'griz Ja% 22A,2C,3A,3B,4C,6A,7A +agricultural ,&grI'kVltS@r@l OA% 5 +agriculture '&grIkVltS@R L@% 4 +aground @'graUnd Op%,Pu% 2 +ague 'eIgju K6$ 2 +agues 'eIgjuz Kj$ 2 +ah A W-% 1 +aha A'hA W-% 2 +ahead @'hed Pu% 2 +ahem @'h@m W-% 2 +ahoy @'hoI W-% 2 +aid eId H0%,M6% 16A,14,17 +aide-de-camp ,eId-d@-'k0m Ki% 3 +aide-m_emoire ,eId-,mem'wAR K6% 3 +aide-m_emoires ,eId-,mem'wAz Kj% 3 +aided 'eIdId Hc%,Hd% 26A,14,17 +aides-de-camp ,eId-d@-'k0m Kj% 3 +aiding 'eIdIN Hb% 26A,14,17 +aids eIdz Ha%,Mj% 16A,14,17 +aigret 'eIgret K6$ 2 +aigrets 'eIgrets Kj$ 2 +aigrette 'eIgret K6$ 2 +aigrettes 'eIgrets Kj$ 2 +ail eIl J0% 12A,2B,6A +ailed eIld Jc$,Jd$ 12A,2B,6A +aileron 'eIl@r0n K6$ 3 +ailerons 'eIl@r0nz Kj$ 3 +ailing 'eIlIN Jb% 22A,2B,6A +ailment 'eIlm@nt K6% 2 +ailments 'eIlm@nts Kj% 2 +ails eIlz Ja% 12A,2B,6A +aim eIm J0%,M6% 12A,3A,4A,6A,14 +aimed eImd Jc%,Jd% 12A,3A,4A,6A,14 +aiming 'eImIN Jb% 22A,3A,4A,6A,14 +aimless 'eIml@s OA% 2 +aimlessly 'eIml@slI Pu% 3 +aims eImz Ja%,Mj% 12A,3A,4A,6A,14 +ain't eInt Gg% 1 +air e@R H0%,M6* 16A +air-bladder 'e@-bl&d@R K6% 3 +air-bladders 'e@-bl&d@z Kj% 3 +air-conditioned 'e@-k@n,dISnd OA% 4 +air-conditioning 'e@-k@ndISnIN L@% 5 +air-cooled 'e@-kuld OA% 2 +air-minded e@-'maIndId OA$ 3 +air-pump 'e@-pVmp K6% 2 +air-pumps 'e@-pVmps Kj% 2 +air-raid 'e@-reId K6% 2 +air-raids 'e@-reIdz Kj% 2 +air-shaft 'e@-SAft K6% 2 +air-shafts 'e@-SAfts Kj% 2 +air-sick 'e@-sIk OA% 2 +air-sickness 'e@-sIkn@s L@% 3 +air-to-air ,e@-tU-'e@R OA% 3 +air-to-ground ,e@-tU-'graUnd OA% 3 +airbed 'e@bed K6% 2 +airbeds 'e@bedz Kj% 2 +airborne 'e@bOn OA% 2 +airbrake 'e@breIk K6% 2 +airbrakes 'e@breIks Kj% 2 +aircraft 'e@krAft K9% 2 +aircraftman 'e@kr&ftm@n Ki$ 3 +aircraftmen 'e@kr&ftm@n Kj$ 3 +aircrew 'e@kru K6% 2 +aircrews 'e@kruz Kj% 2 +airdrome 'e@dr@Um K6$ 2 +airdromes 'e@dr@Umz Kj$ 2 +aired e@d Hc%,Hd% 16A +airfield 'e@fild K6% 2 +airfields 'e@fildz Kj% 2 +airflow 'e@fl@U K6% 2 +airflows 'e@fl@Uz Kj$ 2 +airframe 'e@freIm K6$ 2 +airframes 'e@freImz Kj$ 2 +airily 'e@r@lI Pu% 3 +airing 'e@rIN Hb%,K6% 26A +airing-cupboard 'e@rIN-,kVb@d K6% 4 +airing-cupboards 'e@rIN-,kVb@dz Kj% 4 +airings 'e@rINz Kj% 2 +airless 'e@lIs OA% 2 +airline 'e@laIn K6% 2 +airliner 'e@laIn@R K6% 3 +airliners 'e@laIn@z Kj% 3 +airlines 'e@laInz Kj% 2 +airmail 'e@meIl L@% 2 +airman 'e@m@n Ki% 2 +airmen 'e@m@n Kj% 2 +airplane 'e@pleIn K6% 2 +airplanes 'e@pleInz Kj% 2 +airport 'e@pOt K6% 2 +airports 'e@pOts Kj% 2 +airs e@z Ha%,Mj% 16A +airscrew 'e@skru K6$ 2 +airscrews 'e@skruz Kj$ 2 +airship 'e@SIp K6% 2 +airships 'e@SIps Kj% 2 +airstrip 'e@strIp K6% 2 +airstrips 'e@strIps Kj% 2 +airtight 'e@taIt OA% 2 +airway 'e@weI K6% 2 +airways 'e@weIz Kj% 2 +airwoman 'e@wUm@n Ki$ 3 +airwomen 'e@wImIn Kj$ 3 +airworthiness 'e@w3DIn@s L@% 4 +airworthy 'e@w3DI OA% 3 +airy 'e@rI OA% 2 +aisle aIl K6% 1 +aisles aIlz Kj% 1 +aitch eItS K7% 1 +aitch-bone 'eItS-b@Un K6% 2 +aitch-bones 'eItS-b@Unz Kj$ 2 +aitches 'eItSIz Kj% 2 +ajar @'dZAR Op% 2 +akimbo @'kImb@U Pu% 3 +akin @'kIn Op% 2 +alabaster '&l@bAst@R L@%,OA% 4 +alack @'l&k W-$ 2 +alacrity @'l&krItI L@% 4 +alarm @'lAm H0%,M6% 26A +alarm-clock @'lAm-kl0k K6% 3 +alarm-clocks @'lAm-kl0ks Kj% 3 +alarmed @'lAmd Hc%,Hd% 26A +alarming @'lAmIN Hb%,OA% 36A +alarmingly @'lAmINlI Pu% 4 +alarmist @'lAmIst K6% 3 +alarmists @'lAmIsts Kj% 3 +alarms @'lAmz Ha%,Mj% 26A +alas @'l&s W-% 2 +alb &lb K6$ 1 +albatross '&lb@tr0s K7% 3 +albatrosses '&lb@tr0sIz Kj% 4 +albeit ,Ol'biIt V-% 3 +albino &l'bin@U K6% 3 +albinos &l'bin@Uz Kj% 3 +albs &lbz Kj$ 1 +album '&lb@m K6% 2 +albumen '&lbjUm@n L@% 3 +albums '&lb@mz Kj% 2 +alchemist '&lkImIst K6% 3 +alchemists '&lkImIsts Kj% 3 +alchemy '&lkImI L@% 3 +alcohol '&lk@h0l M6% 3 +alcoholic ,&lk@'h0lIk K6%,OA% 4 +alcoholics ,&lk@'h0lIks Kj% 4 +alcoholism '&lk@h0lIz@m L@% 5 +alcohols '&lk@h0lz Mj% 3 +alcove '&lk@Uv K6% 2 +alcoves '&lk@Uvz Kj% 2 +alder 'Old@R K6% 2 +alderman 'Old@m@n Ki% 3 +aldermanic ,Old@'m&nIk OA$ 4 +aldermen 'Old@m@n Kj% 3 +alders 'Old@z Kj% 2 +ale eIl M6% 1 +ale-house 'eIl-haUs K6% 2 +ale-houses 'eIl-haUzIz Kj% 3 +alee @'li Op$,Pu$ 2 +alert @'l3t H0%,K6%,OA% 26A +alerted @'l3tId Hc%,Hd% 36A +alerting @'l3tIN Hb% 36A +alertly @'l3tlI Pu% 3 +alertness @'l3tn@s L@% 3 +alerts @'l3ts Ha%,Kj% 26A +ales eIlz Mj% 1 +alexandrine ,&lIg'z&ndraIn K6$ 4 +alexandrines ,&lIg'z&ndraInz Kj$ 4 +alexia @'leksI@ L@$ 4 +alexic @'leksIk K6$,OA$ 3 +alexics @'leksIks Kj$ 3 +alfalfa &l'f&lf@ L@$ 3 +alfresco ,&l'fresk@U OA%,Pu% 3 +alga '&lg@ Ki$ 2 +algae '&ldZi Kj% 2 +algebra '&ldZIbr@ M6% 3 +algebraic ,&ldZI'breIIk OA% 4 +algebraical ,&ldZ@'breIkl OA$ 4 +algebraically ,&ldZ@'breIklI Pu% 4 +algebras '&ldZIbr@z Mj% 3 +alias 'eIlI@s K7%,Pu% 3 +aliases 'eIlI@sIz Kj% 4 +alibi '&lIbaI K6% 3 +alibis '&lIbaIz Kj% 3 +alien 'eIlI@n K6%,OA% 3 +alienate 'eIlI@neIt H2% 46A,14 +alienated 'eIlI@neItId Hc%,Hd% 56A,14 +alienates 'eIlI@neIts Ha% 46A,14 +alienating 'eIlI@neItIN Hb% 56A,14 +alienation ,eIlI@'neISn L@% 5 +alienist 'eIlI@nIst K6$ 4 +alienists 'eIlI@nIsts Kj$ 4 +aliens 'eIlI@nz Kj% 3 +alight @'laIt I0%,Op% 22A,3A +alighted @'laItId Ic%,Id% 32A,3A +alighting @'laItIN Ib% 32A,3A +alights @'laIts Ia% 22A,3A +align @'laIn J0% 22A,3A,6A,14 +aligned @'laInd Jc%,Jd% 22A,3A,6A,14 +aligning @'laInIN Jb% 32A,3A,6A,14 +alignment @'laInm@nt M6% 3 +alignments @'laInm@nts Mj% 3 +aligns @'laInz Ja% 22A,3A,6A,14 +alike @'laIk Op%,Pu% 2 +alimentary ,&lI'ment@rI OA% 5 +alimony '&lIm@nI L@% 4 +alive @'laIv Op% 2 +alkali '&lk@laI M6% 3 +alkaline '&lk@laIn OA% 3 +alkalis '&lk@laIz Mj% 3 +all Ol Ki%,OA*,Pu*,Qx*,U-% 1 +all-mains 'Al-meInz Oq$ 2 +all-round 'Ol-raUnd OA% 2 +all-rounder Ol-'raUnd@R K6% 3 +all-rounders Ol-'raUnd@z Kj% 3 +allay @'leI H0% 26A +allayed @'leId Hc%,Hd% 26A +allaying @'leIIN Hb% 36A +allays @'leIz Ha% 26A +allegation ,&lI'geISn M6% 4 +allegations ,&lI'geISnz Mj% 4 +allege @'ledZ H2% 26A,9 +alleged @'ledZd Hc%,Hd% 26A,9 +allegedly @'ledZIdlI Pu% 4 +alleges @'ledZIz Ha% 36A,9 +allegiance @'lidZ@ns L@% 3 +alleging @'ledZIN Hb% 36A,9 +allegoric ,&lI'g0rIk OA$ 4 +allegorical ,&lI'g0rIk@l OA% 5 +allegories '&lIg@rIz Kj% 4 +allegory '&lIg@rI K8% 4 +allegretto ,&lI'gret@U K6%,OA%,Pu% 4 +allegrettos ,&lI'gret@Uz Kj$ 4 +allegro @'leIgr@U K6%,OA%,Pu% 3 +allegros @'leIgr@Uz Kj% 3 +alleluia ,&lI'luj@ W-% 4 +allergen '&l@dZen K6$ 3 +allergens '&l@dZenz Kj$ 3 +allergic @'l3dZIk OA% 3 +allergies '&l@dZIz Kj% 3 +allergy '&l@dZI K8% 3 +alleviate @'livIeIt H2% 46A +alleviated @'livIeItId Hc%,Hd% 56A +alleviates @'livIeIts Ha% 46A +alleviating @'livIeItIN Hb% 56A +alleviation @,livI'eISn K6% 5 +alleviations @,livI'eISnz Kj$ 5 +alley '&lI K6% 2 +alleys '&lIz Kj% 2 +alleyway '&lIweI K6% 3 +alleyways '&lIweIz Kj% 3 +alliance @'laI@ns M6% 3 +alliances @'laI@nsIz Mj% 4 +allied @'laId Hc%,Hd% 214 +allies '&laIz Kj% 2 +allies @'laIz Ha% 214 +alligator '&lIgeIt@R K6% 4 +alligators '&lIgeIt@z Kj% 4 +alliteration @,lIt@'reISn L@% 5 +alliterative @'lItr@tIv OA% 4 +alliteratively @'lItr@tIvlI Pu% 5 +allocate '&l@keIt H2% 36A,14 +allocated '&l@keItId Hc%,Hd% 46A,14 +allocates '&l@keIts Ha% 36A,14 +allocating '&l@keItIN Hb% 46A,14 +allocation ,&l@'keISn M6% 4 +allocations ,&l@'keISnz Mj% 4 +allot @'l0t H4% 26A,12A,13A,14 +allotment @'l0tm@nt M6% 3 +allotments @'l0tm@nts Mj% 3 +allots @'l0ts Ha% 26A,12A,13A,14 +allotted @'l0tId Hc%,Hd% 36A,12A,13A,14 +allotting @'l0tIN Hb% 36A,12A,13A,14 +allow @'laU J0% 23A,6A,6C,9,12A,13A,14,15B,17,25 +allowable @'l@U@bl OA% 4 +allowance @'laU@ns K6% 3 +allowances @'laU@nsIz Kj% 4 +allowed @'laUd Jc%,Jd% 23A,6A,6C,9,12A,13A,14,15B,17,25 +allowing @'laUIN Jb% 33A,6A,6C,9,12A,13A,14,15B,17,25 +allows @'laUz Ja% 23A,6A,6C,9,12A,13A,14,15B,17,25 +alloy '&loI M6% 2 +alloy @'loI H0% 26A +alloyed @'loId Hc%,Hd% 26A +alloying @'loIIN Hb% 36A +alloys '&loIz Mj% 2 +alloys @'loIz Ha% 26A +allspice 'OlspaIs L@% 2 +allude @'lud I2% 23A +alluded @'ludId Ic%,Id% 33A +alludes @'ludz Ia% 23A +alluding @'ludIN Ib% 33A +allure @'lU@R H2%,M6% 26A,14,17 +allured @'lU@d Hc%,Hd% 26A,14,17 +allurement @'lU@m@nt M6% 3 +allurements @'lU@m@nts Mj$ 3 +allures @'lU@z Ha%,Mj% 26A,14,17 +alluring @'lU@rIN Hb%,OA% 36A,14,17 +allusion @'luZn K6% 3 +allusions @'luZnz Kj% 3 +allusive @'lusIv OA$ 3 +alluvial @'luvI@l OA% 4 +ally '&laI K8% 2 +ally @'laI H3% 214 +allying @'laIIN Hb% 314 +almanac 'Olm@n&k K6% 3 +almanacs 'Olm@n&ks Kj% 3 +almighty Ol'maItI Ki%,OA% 3 +almond 'Am@nd K6% 2 +almond-eyed ,Am@nd-'aId OA% 3 +almonds 'Am@ndz Kj% 2 +almoner 'Am@n@R K6% 3 +almoners 'Am@n@z Kj% 3 +almost 'Olm@Ust Pu* 2 +alms Amz Kj% 1 +alms-box 'Amz-b0ks K7% 2 +alms-boxes 'Amz-b0ksIz Kj% 3 +alms-giving 'Amz-gIvIN L@% 3 +alms-house 'Amz-haUs K6% 2 +alms-houses 'Amz-haUzIz Kj% 3 +aloe '&l@U K6% 2 +aloes '&l@Uz Kj% 2 +aloft @'l0ft Pu% 2 +alone @'l@Un Op*,Pu* 2 +along @'l0N Pu*,T-* 2 +alongside @,l0N'saId Pu%,T-% 3 +aloof @'luf OA%,Pu% 2 +aloofness @'lufn@s L@% 3 +aloud @'laUd Pu% 2 +alp &lp K6% 1 +alpaca &l'p&k@ M6% 3 +alpacas &l'p&k@z Mj$ 3 +alpenstock '&lp@nst0k K6% 3 +alpenstocks '&lp@nst0ks Kj% 3 +alpha '&lf@ K6% 2 +alphabet '&lf@bet K6% 3 +alphabetical ,&lf@'betIkl OA% 5 +alphabetically ,&lf@'betIklI Pu% 5 +alphabets '&lf@bets Kj% 3 +alphas '&lf@z Kj$ 2 +alpine '&lpaIn OA% 2 +alpinist '&lpInIst K6% 3 +alpinists '&lpInIsts Kj% 3 +alps &lps Kj% 1 +already Ol'redI Pu* 3 +alright Ol'raIt OA%,Pu% 2 +alsatian &l'seISn K6% 3 +alsatians &l'seISnz Kj% 3 +also 'Ols@U Pu* 2 +also-ran 'Ols@U-r&n K6% 3 +also-rans 'Ols@U-r&nz Kj% 3 +altar 'Olt@R K6% 2 +altar-piece 'Olt@-pis K6% 3 +altar-pieces 'Olt@-pisIz Kj$ 4 +altars 'Olt@z Kj% 2 +alter 'Olt@R J0% 22A,6A +alter ego ,<@r 'eg@U K6% 4 +alter egos ,<@r 'eg@Uz Kj% 4 +alterable '0lt@r@bl OA% 4 +alteration ,Olt@'reISn M6% 4 +alterations ,Olt@'reISnz Mj% 4 +altercation ,Olt@'keISn M6% 4 +altercations ,Olt@'keISnz Mj% 4 +altered 'Olt@d Jc%,Jd% 22A,6A +altering 'Olt@rIN Jb% 32A,6A +alternate 'Olt@neIt J2% 33A,6A,14 +alternate Ol't3n@t OA% 3 +alternated 'Olt@neItId Jc%,Jd% 43A,6A,14 +alternately Ol't3n@tlI Pu% 4 +alternates 'Olt@neIts Ja% 33A,6A,14 +alternating 'Olt@neItIN Jb% 43A,6A,14 +alternation ,Olt@'neISn K6% 4 +alternations ,Olt@'neISnz Kj$ 4 +alternative Ol't3n@tIv K6%,OA% 4 +alternatively Ol't3n@tIvlI Pu% 5 +alternatives Ol't3n@tIvz Kj% 4 +alters 'Olt@z Ja% 22A,6A +although Ol'D@U V-% 2 +altimeter '<Imit@R K6% 4 +altimeters '<Imit@z Kj% 4 +altitude '<Itjud K6% 3 +altitudes '<Itjudz Kj% 3 +alto '<@U K6% 2 +altogether ,Olt@'geD@R Pu% 4 +altos '<@Uz Kj% 2 +altruism '<ruIz@m M6% 4 +altruisms '<ruIz@mz Mj$ 4 +altruist '<ruIst K6% 3 +altruistic ,<ru'IstIk OA% 4 +altruistically ,<ru'IstIklI Pu% 5 +altruists '<ruIsts Kj$ 3 +alum '&l@m L@$ 2 +aluminium ,&ljU'mInI@m L@% 5 +alumna @'lVmn@ Ki$ 3 +alumnae @'lVmni Kj$ 3 +alumni @'lVmnaI Kj% 3 +alumnus @'lVmn@s Ki% 3 +alveolar &l'vI@l@R K6$,OA$ 4 +alveolars &l'vI@l@z Kj$ 4 +always 'OlweIz Pu* 2 +am &m Ge*,Ie% 11 +am ,eI'em Y~% 2 +amah 'Am@ K6$ 2 +amahs 'Am@z Kj$ 2 +amain @'meIn Pu$ 2 +amalgam @'m&lg@m K6% 3 +amalgamate @'m&lg@meIt J2% 42A,6A +amalgamated @'m&lg@meItId Jc%,Jd% 52A,6A +amalgamates @'m&lg@meIts Ja% 42A,6A +amalgamating @'m&lg@meItIN Jb% 52A,6A +amalgamation @,m&lg@'meISn M6% 5 +amalgamations @,m&lg@'meISnz Mj% 5 +amalgams @'m&lg@mz Kj% 3 +amanuenses @,m&njU'ensiz Kj$ 5 +amanuensis @,m&njU'ensIs Ki$ 5 +amaryllis ,&m@'rIlIs K7$ 4 +amaryllises ,&m@'rIlIsIz Kj$ 5 +amass @'m&s H1% 26A +amassed @'m&st Hc%,Hd% 26A +amasses @'m&sIz Ha% 36A +amassing @'m&sIN Hb% 36A +amateur '&m@t@R K6% 3 +amateurish '&m@t@rIS OA% 4 +amateurism '&m@t@rIz@m L@% 5 +amateurs '&m@t@z Kj% 3 +amatory '&m@t@rI OA% 4 +amaze @'meIz H2% 26A +amazed @'meIzd Hc%,Hd% 26A +amazement @'meIzm@nt L@% 3 +amazes @'meIzIz Ha% 36A +amazing @'meIzIN Hb%,OA% 36A +amazingly @'meIzINlI Pu% 4 +ambassador &m'b&s@d@R K6% 4 +ambassadorial &m,b&s@'dOrI@l OA% 6 +ambassadors &m'b&s@d@z Kj% 4 +ambassadress &m'b&s@drIs K7% 4 +ambassadresses &m'b&s@drIsIz Kj$ 5 +amber '&mb@R L@% 2 +ambergris '&mb@gris L@$ 3 +ambidextrous ,&mbI'dekstr@s OA% 4 +ambience '&mbI@ns Ki% 3 +ambient '&mbI@nt OA% 3 +ambiguities ,&mbI'gjuItIz Mj% 5 +ambiguity ,&mbI'gjuItI M8% 5 +ambiguous &m'bIgjU@s OA% 4 +ambiguously &m'bIgjU@slI Pu% 5 +ambit '&mbIt K6% 2 +ambition &m'bISn M6% 3 +ambitions &m'bISnz Mj% 3 +ambitious &m'bIS@s OA% 3 +ambitiously &m'bIS@slI Pu% 4 +ambits '&mbIts Kj$ 2 +ambivalence &m'bIv@l@ns L@% 4 +ambivalent &m'bIv@l@nt OA% 4 +amble '&mbl I2%,K6% 22A,2C +ambled '&mbld Ic%,Id% 22A,2C +ambles '&mblz Ia%,Kj% 22A,2C +ambling '&mblIN Ib% 22A,2C +ambrosia &m'br@UzI@ L@% 4 +ambulance '&mbjUl@ns K6% 3 +ambulances '&mbjUl@nsIz Kj% 4 +ambuscade ,&mb@'skeId H2$,K6$ 3 +ambuscaded ,&mb@'skeIdId Hc$,Hd$ 4 +ambuscades ,&mb@'skeIdz Ha$,Kj$ 3 +ambuscading ,&mb@'skeIdIN Hb$ 4 +ambush '&mbUS H1%,M7% 26A +ambushed '&mbUSt Hc%,Hd% 26A +ambushes '&mbUSIz Ha%,Mj% 36A +ambushing '&mbUSIN Hb% 36A +ameba @'mib@ K6$ 3 +amebas @'mib@z Kj$ 3 +ameer @'mI@R K6$ 2 +ameers @'mI@z Kj$ 2 +ameliorate @'milI@reIt J2% 42A,6A +ameliorated @'milI@reItId Jc%,Jd% 52A,6A +ameliorates @'milI@reIts Ja% 42A,6A +ameliorating @'milI@reItIN Jb% 52A,6A +amelioration @,milI@'reISn K6% 5 +ameliorations @,milI@'reISnz Kj$ 5 +amen A'men W-% 2 +amenable @'min@bl OA% 4 +amend @'mend J0% 22A,6A +amendable @'mend@bl OA$ 4 +amended @'mendId Jc%,Jd% 32A,6A +amending @'mendIN Jb% 32A,6A +amendment @'mendm@nt M6% 3 +amendments @'mendm@nts Mj% 3 +amends @'mendz Ja%,Kj% 22A,6A +amenities @'minItIz Kj% 4 +amenity @'minItI K8% 4 +amethyst '&mITIst K6% 3 +amethysts '&mITIsts Kj% 3 +amiability ,eImI@'bIlItI L@% 6 +amiable 'eImI@bl OA% 4 +amiably 'eImI@blI Pu% 4 +amicability ,&mIk@'bIlItI L@$ 6 +amicable '&mIk@bl OA% 4 +amicably '&mIk@blI Pu% 4 +amid @'mId T-% 2 +amidships @'mIdSIps Pu% 3 +amidst @'mIdst T-% 2 +amir @'mI@R K6$ 2 +amirs @'mI@z Kj$ 2 +amiss @'mIs Op%,Pu% 2 +amity '&mItI L@$ 3 +ammeter '&mIt@R K6$ 3 +ammeters '&mIt@z Kj$ 3 +ammonia @'m@UnI@ L@% 4 +ammoniated @'m@UnIeItId OA$ 5 +ammonite '&m@naIt K6% 3 +ammonites '&m@naIts Kj% 3 +ammunition ,&mjU'nISn L@% 4 +amnesia &m'nizI@ L@% 4 +amnesties '&mn@stIz Kj% 3 +amnesty '&mn@stI K8% 3 +amoeba @'mib@ K6% 3 +amoebae @'mibi Kj% 3 +amoebas @'mib@z Kj% 3 +amoebic @'mibIk OA% 3 +amok @'m0k Pu% 2 +among @'mVN T-* 2 +amongst @'mVNst T-% 2 +amoral ,eI'm0r@l OA% 3 +amorous '&m@r@s OA% 3 +amorously '&m@r@slI Pu% 4 +amorphous @'mOf@s OA% 3 +amortization @,mOtI'zeISn K6$ 5 +amortizations @,mOtI'zeISnz Kj$ 5 +amortize @'mOtaIz H2$ 36A +amortized @'mOtaIzd Hc$,Hd$ 36A +amortizes @'mOtaIzIz Ha$ 46A +amortizing @'mOtaIzIN Hb$ 46A +amount @'maUnt I0%,K6% 23A +amounted @'maUntId Ic%,Id% 33A +amounting @'maUntIN Ib% 33A +amounts @'maUnts Ia%,Kj% 23A +amour @'mU@R K6% 2 +amour-propre ,&mU@-'pr0pr@ L@% 4 +amours @'mU@z Kj% 2 +amp &mp K6% 1 +ampere '&mpe@R K6% 2 +amperes '&mpe@z Kj% 2 +amphetamine &m'fet@min M6% 4 +amphetamines &m'fet@minz Mj% 4 +amphibian &m'fIbI@n K6% 4 +amphibians &m'fIbI@nz Kj% 4 +amphibious &m'fIbI@s OA% 4 +amphitheatre '&mfITI@t@R K6% 4 +amphitheatres '&mfITI@t@z Kj% 4 +amphora '&mf@r@ K6$ 3 +amphorae '&mf@ri Kj$ 3 +amphoras '&mf@r@z Kj$ 3 +ample '&mpl OB% 2 +ampler '&mpl@R Or% 2 +amplest '&mplIst Os% 2 +amplification ,&mplIfI'keISn K6% 5 +amplifications ,&mplIfI'keISnz Kj% 5 +amplified '&mplIfaId Hc%,Hd% 36A +amplifier '&mplIfaI@R K6% 4 +amplifiers '&mplIfaI@z Kj% 4 +amplifies '&mplIfaIz Ha% 36A +amplify '&mplIfaI H3% 36A +amplifying '&mplIfaIIN Hb% 46A +amplitude '&mplItjud L@% 3 +amply '&mplI Pu% 2 +ampoule '&mpul K6$ 2 +ampoules '&mpulz Kj$ 2 +amps &mps Kj% 1 +amputate '&mpjUteIt H2% 36A +amputated '&mpjUteItId Hc%,Hd% 46A +amputates '&mpjUteIts Ha% 36A +amputating '&mpjUteItIN Hb% 46A +amputation ,&mpjU'teISn K6% 4 +amputations ,&mpjU'teISnz Kj% 4 +amuck @'mVk Pu% 2 +amulet '&mjUlIt K6% 3 +amulets '&mjUlIts Kj% 3 +amuse @'mjuz H2% 26A +amused @'mjuzd Hc%,Hd% 26A +amusement @'mjuzm@nt M6% 3 +amusements @'mjuzm@nts Mj% 3 +amuses @'mjuzIz Ha% 36A +amusing @'mjuzIN Hb%,OA% 36A +amusingly @'mjuzINlI Pu% 4 +an &n V-% 1 +an @n S-* 1 +anachronism @'n&kr@nIz@m K6% 5 +anachronisms @'n&kr@nIz@mz Kj% 5 +anachronistic @,n&kr@'nIstIk OA% 5 +anaconda ,&n@'k0nd@ K6% 4 +anacondas ,&n@'k0nd@z Kj% 4 +anaemia @'nimI@ L@% 4 +anaemic @'nimIk OA% 3 +anaesthesia ,&nIs'TizI@ L@% 5 +anaesthetic ,&nIs'TetIk K6%,OA% 4 +anaesthetics ,&nIs'TetIks Kj% 4 +anaesthetist @'nisT@tIst K6% 4 +anaesthetists @'nisT@tIsts Kj% 4 +anaesthetize @n'isT@taIz H2% 46A +anaesthetized @n'isT@taIzd Hc%,Hd% 46A +anaesthetizes @n'isT@taIzIz Ha% 56A +anaesthetizing @n'isT@taIzIN Hb% 56A +anagram '&n@gr&m K6% 3 +anagrams '&n@gr&mz Kj% 3 +anal 'eInl OA% 2 +analecta ,&n@'lekt@ Kj$ 4 +analects '&n@lekts Kj$ 3 +analgesia ,&n&l'dZizI@ L@% 5 +analgesic ,&n&l'dZizIk K6% 4 +analgesics ,&n&l'dZizIks Kj% 4 +analog '&n@l0g K6$ 3 +analogies @'n&l@dZIz Mj% 4 +analogous @'n&l@g@s OA% 4 +analogously @'n&l@g@slI Pu% 5 +analogs '&n@l0gz Kj$ 3 +analogue '&n@l0g K6% 3 +analogues '&n@l0gz Kj% 3 +analogy @'n&l@dZI M8% 4 +analyse '&n@laIz H2% 36A +analysed '&n@laIzd Hc%,Hd% 36A +analyses '&n@laIzIz Ha% 46A +analyses @'n&l@siz Kj% 4 +analysing '&n@laIzIN Hb% 46A +analysis @'n&l@sIs Mi% 4 +analyst '&n@lIst K6% 3 +analysts '&n@lIsts Kj% 3 +analytic ,&n@'lItIk OA% 4 +analytical ,&n@'lItIkl OA% 5 +analytically ,&n@'lItIklI Pu% 5 +analyze '&n@laIz H2% 36A +analyzed '&n@laIzd Hc%,Hd% 36A +analyzes '&n@laIzIz Ha% 46A +analyzing '&n@laIzIN Hb% 46A +anapaest '&n@pist K6$ 3 +anapaestic ,&n@'pistIk OA$ 4 +anapaests '&n@pists Kj$ 3 +anarchic @'nAkIk OA% 3 +anarchically @n'AkIklI Pu% 4 +anarchism '&n@kIz@m L@% 4 +anarchist '&n@kIst K6% 3 +anarchists '&n@kIsts Kj% 3 +anarchy '&n@kI L@% 3 +anathema @'n&T@m@ K6% 4 +anathemas @'n&T@m@z Kj$ 4 +anathematize @'n&T@m@taIz J2$ 5 +anathematized @'n&T@m@taIzd Jc$,Jd$ 5 +anathematizes @'n&T@m@taIzIz Ja$ 6 +anathematizing @'n&T@m@taIzIN Jb$ 6 +anatomical ,&n@'t0mIkl OA% 5 +anatomically ,&n@'t0mIklI Pu% 5 +anatomist @'n&t@mIst K6% 4 +anatomists @'n&t@mIsts Kj% 4 +anatomy @'n&t@mI L@% 4 +ancestor '&nsest@R K6% 3 +ancestors '&nsest@z Kj% 3 +ancestral &n'sestr@l OA% 3 +ancestress '&nsestrIs K7% 3 +ancestresses '&nsestrIsIz Kj% 4 +ancestries '&nsestrIz Kj% 3 +ancestry '&nsestrI K8% 3 +anchor '&Nk@R J0%,K6% 22A,6A +anchorage '&nk@rIdZ K6% 3 +anchorages '&nk@rIdZIz Kj$ 4 +anchored '&Nk@d Jc%,Jd% 22A,6A +anchoring '&Nk@rIN Jb% 32A,6A +anchorite '&Nk@raIt K6$ 3 +anchorites '&Nk@raIts Kj$ 3 +anchorman '&nk@m@n Ki% 3 +anchormen '&nk@m@n Kj% 3 +anchors '&Nk@z Ja%,Kj% 22A,6A +anchovies '&ntS@vIz Kj% 3 +anchovy '&ntS@vI K8% 3 +ancient 'eInS@nt OA% 2 +ancillary &n'sIl@rI OA% 4 +and &nd V-* 1 +andante &n'd&ntI K6%,OA%,Pu% 3 +andantes &n'd&ntIz Kj$ 3 +andiron '&ndaI@n K6$ 3 +andirons '&ndaI@nz Kj$ 3 +anecdotal ,&nIk'd@Utl OA% 4 +anecdote '&nIkd@Ut K6% 3 +anecdotes '&nIkd@Uts Kj% 3 +anemometer ,&nI'm0mIt@R K6% 5 +anemometers ,&nI'm0mIt@z Kj% 5 +anemone @'nem@nI K6% 4 +anemones @'nem@nIz Kj% 4 +anent @'nent T-$ 2 +aneroid '&n@roId K6$,OA$ 3 +aneroids '&n@roIdz Kj$ 3 +anesthetic ,&nIs'TetIk K6$,OA$ 4 +anesthetics ,&nIs'TetIks Kj$ 4 +anesthetist @'nisT@tIst K6$ 4 +anesthetists @'nisT@tIsts Kj$ 4 +anesthetize @n'isT@taIz H2$ 46A +anesthetized @n'isT@taIzd Hc$,Hd$ 46A +anesthetizes @n'isT@taIzIz Ha$ 56A +anesthetizing @n'isT@taIzIN Hb$ 56A +anew @'nju Pu% 2 +angel 'eIndZl K6% 2 +angelic &n'dZelIk OA% 3 +angelica &n'dZelIk@ L@% 4 +angelically @n'dZelIklI Pu% 4 +angels 'eIndZlz Kj% 2 +angelus '&ndZIl@s K7% 3 +angeluses '&ndZIl@sIz Kj$ 4 +anger '&Ng@R H0%,L@% 26A +angered '&Ng@d Hc%,Hd% 26A +angering '&Ng@rIN Hb% 36A +angers '&Ng@z Ha% 26A +angina &n'dZaIn@ L@% 3 +angle '&Ngl J2%,K6% 22A,3A,6A +angle-dozer '&Ng@l-d@Uz@R K6$ 4 +angle-dozers '&Ng@l-d@Uz@z Kj$ 4 +angle-iron '&Ng@l-aI@n K6% 4 +angle-irons '&Ng@l-aI@nz Kj% 4 +angle-park '&Ng@l-pAk J0$ 3 +angle-parked '&Ng@l-pAkt Jc$,Jd$ 3 +angle-parking '&Ng@l-pAkIN Jb$ 4 +angle-parks '&Ng@l-pAks Ja$ 3 +angled '&Ngld Jc%,Jd% 22A,3A,6A +angler '&Ngl@R K6% 2 +anglers '&Ngl@z Kj% 2 +angles '&Nglz Ja%,Kj% 22A,3A,6A +anglicism '&NglIsIz@m K6% 4 +anglicisms '&NglIsIz@mz Kj$ 4 +anglicize '&NglIsaIz H2% 36A +anglicized '&NglIsaIzd Hc%,Hd% 36A +anglicizes '&NglIsaIzIz Ha% 46A +anglicizing '&NglIsaIzIN Hb% 46A +angling '&NglIN Jb%,L@% 22A,3A,6A +angora &N'gOr@ M6% 3 +angoras &N'gOr@z Mj$ 3 +angostura ,&Ng@'stjU@r@ L@% 4 +angrier '&NgrI@R Or% 3 +angriest '&NgrIIst Os% 3 +angrily '&ngr@lI Pu% 3 +angry '&NgrI OD% 2 +angst &Nst L@% 1 +anguish '&NgwIS L@% 2 +anguished '&NgwISt OA% 2 +angular '&NgjUl@R OA% 3 +angularities ,&NgjU'l&rItIz Mj% 5 +angularity ,&NgjU'l&rItI M8% 5 +aniline '&nIlin M6$ 3 +anilines '&nIlinz Mj$ 3 +animadversion ,&nIm&d'v3Sn K6$ 5 +animadversions ,&nIm&d'v3Snz Kj$ 5 +animadvert ,&nIm&d'v3t I0$ 43A +animadverted ,&nIm&d'v3tId Ic$,Id$ 53A +animadverting ,&nIm&d'v3tIN Ib$ 53A +animadverts ,&nIm&d'v3ts Ia$ 43A +animal '&nIm@l K6% 3 +animalcule ,&nI'm&lkjul K6$ 4 +animalcules ,&nI'm&lkjulz Kj$ 4 +animals '&nIm@lz Kj% 3 +animate '&nIm@t OA% 3 +animate '&nImeIt H2% 36A,14 +animated '&nImeItId Hc%,Hd% 46A,14 +animatedly '&nImeItIdlI OA% 5 +animates '&nImeIts Ha% 36A,14 +animating '&nImeItIN Hb% 46A,14 +animation ,&nI'meISn L@% 4 +animism '&nImIz@m L@% 4 +animosities ,&nI'm0sItIz Mj% 5 +animosity ,&nI'm0sItI M8% 5 +animus '&nIm@s L@% 3 +anise '&nIs K6% 2 +aniseed '&nIsid L@% 3 +anises '&nIsIz Kj$ 3 +ankle '&Nkl K6% 2 +ankles '&Nklz Kj% 2 +anklet '&NklIt K6% 2 +anklets '&NklIts Kj% 2 +anna '&n@ K6$ 2 +annalist '&n@lIst K6$ 3 +annalists '&n@lIsts Kj$ 3 +annals '&nlz Kj% 2 +annas '&n@z Kj$ 2 +anneal @'nil H0$ 26A +annealed @'nild Hc$,Hd$ 26A +annealing @'nilIN Hb$ 36A +anneals @'nilz Ha$ 26A +annex '&neks K7% 2 +annex @'neks H1% 26A,14 +annexation ,&nek'seISn L@% 4 +annexe '&neks K6% 2 +annexed @'nekst Hc%,Hd% 26A,14 +annexes '&neksIz Kj% 3 +annexes @'neksIz Ha% 36A,14 +annexing @'neksIN Hb% 36A,14 +annihilate @'naI@leIt H2% 46A +annihilated @'naI@leItId Hc%,Hd% 56A +annihilates @'naI@leIts Ha% 46A +annihilating @'naI@leItIN Hb% 56A +annihilation @,naI@'leISn L@% 5 +anniversaries ,&nI'v3s@rIz Kj% 5 +anniversary ,&nI'v3s@rI K8% 5 +annotate '&n@teIt H2% 36A +annotated '&n@teItId Hc%,Hd% 46A +annotates '&n@teIts Ha% 36A +annotating '&n@teItIN Hb% 46A +annotation ,&n@'teISn M6% 4 +annotations ,&n@'teISnz Mj% 4 +announce @'naUns H2% 26A,9,14 +announced @'naUnst Hc%,Hd% 26A,9,14 +announcement @'naUnsm@nt K6% 3 +announcements @'naUnsm@nts Kj% 3 +announcer @'naUns@R K6% 3 +announcers @'naUns@z Kj% 3 +announces @'naUnsIz Ha% 36A,9,14 +announcing @'naUnsIN Hb% 36A,9,14 +annoy @'noI H0% 26A +annoyance @'noI@ns M6% 3 +annoyances @'noI@nsIz Mj% 4 +annoyed @'noId Hc%,Hd% 26A +annoying @'noIIN Hb%,OA% 36A +annoys @'noIz Ha% 26A +annual '&njU@l K6%,OA% 3 +annually '&njU@lI Pu% 4 +annuals '&njU@lz Kj% 3 +annuitant @'njuIt@nt K6$ 4 +annuitants @'njuIt@nts Kj$ 4 +annuities @'njuItIz Kj% 4 +annuity @'njuItI K8% 4 +annul @'nVl H4% 26A +annular '&njUl@R OA$ 3 +annulled @'nVld Hc%,Hd% 26A +annulling @'nVlIN Hb% 36A +annulment @'nVlm@nt K6% 3 +annulments @'nVlm@nts Kj% 3 +annuls @'nVlz Ha% 26A +annunciate @'nVnsIeIt H2$ 46A +annunciated @'nVnsIeItId Hc$,Hd$ 56A +annunciates @'nVnsIeIts Ha$ 46A +annunciating @'nVnsIeItIN Hb$ 56A +annunciation @,nVnsI'eISn K6% 5 +annunciations @,nVnsI'eISnz Kj$ 5 +anode '&n@Ud K6% 2 +anodes '&n@Udz Kj$ 2 +anodyne '&n@daIn M6%,OA% 3 +anodynes '&n@daInz Mj$ 3 +anoint @'noInt H0% 26A,14,23 +anointed @'noIntId Hc%,Hd% 36A,14,23 +anointing @'noIntIN Hb% 36A,14,23 +anointment @'noIntm@nt K6% 3 +anointments @'noIntm@nts Kj$ 3 +anoints @'noInts Ha% 26A,14,23 +anomalies @'n0m@lIz Kj% 4 +anomalous @'n0m@l@s OA% 4 +anomalously @'n0m@l@slI Pu% 5 +anomaly @'n0m@lI K8% 4 +anon @'n0n Pu%,Z-% 2 +anonymity ,&n@'nImItI L@% 5 +anonymous @'n0nIm@s OA% 4 +anonymously @'n0nIm@slI Pu% 5 +anopheles @'n0fIliz K9$ 4 +anorak '&n@r&k K6% 3 +anoraks '&n@r&ks Kj% 3 +another @'nVD@R OA*,Qx* 3 +answer 'Ans@R J0*,K6* 22A,2C,3A,6A,9,12A,15B +answerable '&ns@r@bl OA% 4 +answered 'Ans@d Jc%,Jd% 22A,2C,3A,6A,9,12A,15B +answering 'Ans@rIN Jb% 32A,2C,3A,6A,9,12A,15B +answers 'Ans@z Ja%,Kj% 22A,2C,3A,6A,9,12A,15B +ant &nt K6% 1 +ant-eater '&nt-it@R K6% 3 +ant-eaters '&nt-it@z Kj% 3 +ant-hill '&nt-hIl K6% 2 +ant-hills '&nt-hIlz Kj% 2 +antagonism &n't&g@nIz@m M6% 5 +antagonisms &n't&g@nIz@mz Mj% 5 +antagonist &n't&g@nIst K6% 4 +antagonistic &n,t&g@'nIstIk OA% 5 +antagonistically @n,t&g@'nIstIklI Pu% 6 +antagonists &n't&g@nIsts Kj% 4 +antagonize ,&n't&g@naIz H2% 46A +antagonized ,&n't&g@naIzd Hc%,Hd% 46A +antagonizes ,&n't&g@naIzIz Ha% 56A +antagonizing ,&n't&g@naIzIN Hb% 56A +antarctic &n'tAktIk OA% 3 +ante '&ntI K6%,U-% 2 +ante meridiem ,&ntI m@'rIdI@m Pu% 6 +antecedence '&ntIsidns K6$ 4 +antecedences '&ntIsidnsIz Kj$ 5 +antecedent ,&ntI'sidnt K6%,OA% 4 +antecedents ,&ntI'sidnts Kj% 4 +antechamber '&ntItSeImb@R K6% 4 +antechambers '&ntItSeImb@z Kj% 4 +antedate ,&ntI'deIt H2% 36A +antedated ,&ntI'deItId Hc%,Hd% 46A +antedates ,&ntI'deIts Ha% 36A +antedating ,&ntI'deItIN Hb% 46A +antediluvian ,&ntIdI'luvI@n K6%,OA% 6 +antediluvians ,&ntIdI'luvI@nz Kj% 6 +antelope '&ntIl@Up K6% 3 +antelopes '&ntIl@Ups Kj% 3 +antenatal ,&ntI'neItl OA% 4 +antenna &n'ten@ Ki% 3 +antennae &n'teni Kj% 3 +antenuptial ,&ntI'nVpSl OA$ 4 +antepenultimate ,&ntIpI'nVltIm@t OA$ 6 +anterior &n'tI@rI@R OA% 4 +anteroom '&ntIrUm K6% 3 +anterooms '&ntIrUmz Kj% 3 +antes '&ntIz Kj% 2 +anthem '&nT@m K6% 2 +anthems '&nT@mz Kj% 2 +anther '&nT@R K6$ 2 +anthers '&nT@z Kj$ 2 +anthologies ,&n'T0l@dZIz Kj% 4 +anthology ,&n'T0l@dZI K8% 4 +anthracite '&nTr@saIt L@% 3 +anthrax '&nTr&ks L@% 2 +anthropoid '&nTr@poId K6%,OA% 3 +anthropoids '&nTr@poIdz Kj% 3 +anthropological ,&nTr@p@'l0dZIkl OA% 6 +anthropologist ,&nTr@'p0l@dZIst K6% 5 +anthropologists ,&nTr@'p0l@dZIsts Kj% 5 +anthropology ,&nTr@'p0l@dZI L@% 5 +anti- ,&ntI- U-% 2 +anti-Semite ,&ntI-'simaIt K6%,OA% 4 +anti-Semites ,&ntI-'simaIts Kj% 4 +anti-Semitic ,&ntI-sI'mItIk OA% 5 +anti-Semitism ,&ntI-'semItIz@m L@% 6 +anti-aircraft ,&ntI-'e@krAft OA% 4 +anti-hero '&ntI-hI@r@U K7% 4 +anti-heroes '&ntI-hI@r@Uz Kj% 4 +anti-personnel ,&ntI-,p3s@'nel OA% 5 +antibiotic ,&ntIbaI'0tIk K6%,OA% 5 +antibiotics ,&ntIbaI'0tIks Kj% 5 +antibodies '&ntIb0dIz Kj% 4 +antibody '&ntIb0dI K8% 4 +antic '&ntIk K6% 2 +anticipate &n'tIsIpeIt H2% 46A,6C,9 +anticipated &n'tIsIpeItId Hc%,Hd% 56A,6C,9 +anticipates &n'tIsIpeIts Ha% 46A,6C,9 +anticipating &n'tIsIpeItIN Hb% 56A,6C,9 +anticipation &n,tIsI'peISn M6% 5 +anticipations &n,tIsI'peISnz Mj$ 5 +anticipatory &n,tIsI'peIt@rI OA% 6 +anticlimax ,&ntI'klaIm&ks K7% 4 +anticlimaxes ,&ntI'klaIm&ksIz Kj% 5 +anticlockwise ,&ntI'kl0kwaIz Pu% 4 +antics '&ntIks Kj% 2 +anticyclone ,&ntI'saIkl@Un K6% 4 +anticyclones ,&ntI'saIkl@Unz Kj% 4 +antidote '&ntId@Ut K6% 3 +antidotes '&ntId@Uts Kj% 3 +antifreeze '&ntIfriz L@% 3 +antiknock ,&ntI'n0k L@$ 3 +antilogarithm ,&ntI'l0g@rID@m K6% 6 +antilogarithms ,&ntI'l0g@rID@mz Kj% 6 +antimacassar ,&ntIm@'k&s@R K6$ 5 +antimacassars ,&ntIm@'k&s@z Kj$ 5 +antimony '&ntIm@nI L@$ 4 +antipathetic ,&ntIp@'TetIk OA% 5 +antipathies &n'tIp@TIz Mj% 4 +antipathy &n'tIp@TI M8% 4 +antipodes &n'tIp@diz Kj% 4 +antiquarian ,&ntI'kwe@rI@n K6%,OA% 5 +antiquarians ,&ntI'kwe@rI@nz Kj% 5 +antiquaries '&ntIkw@rIz Kj% 4 +antiquary '&ntIkw@rI K8% 4 +antiquated '&ntIkweItId OA% 4 +antique &n'tik K6%,OA% 2 +antiques &n'tiks Kj% 2 +antiquities &n'tIkwItIz Mj% 4 +antiquity &n'tIkwItI M8% 4 +antirrhinum ,&ntI'raIn@m K6% 4 +antirrhinums ,&ntI'raIn@mz Kj% 4 +antiseptic ,&ntI'septIk K6%,OA% 4 +antiseptics ,&ntI'septIks Kj% 4 +antisocial ,&ntI's@USl OA% 4 +antitank ,&ntI't&Nk Oq% 3 +antitheses &n'tIT@siz Kj% 4 +antithesis &n'tIT@sIs Mi% 4 +antithetic ,&ntI'TetIk OA$ 4 +antithetical ,&ntI'TetIkl OA$ 5 +antithetically ,&ntI'TetIklI Pu$ 5 +antitoxin ,&ntI't0ksIn K6% 4 +antitoxins ,&ntI't0ksInz Kj% 4 +antitrade ,&ntI'treId K6$,OA$ 3 +antitrades ,&ntI'treIdz Kj$ 3 +antler '&ntl@R K6% 2 +antlers '&ntl@z Kj% 2 +antonym '&nt@nIm K6% 3 +antonyms '&nt@nImz Kj% 3 +ants &nts Kj% 1 +anus 'eIn@s K7% 2 +anuses 'eIn@sIz Kj$ 3 +anvil '&nvIl K6% 2 +anvils '&nvIlz Kj% 2 +anxieties &N'zaI@tIz Mj% 4 +anxiety &N'zaI@tI M8% 4 +anxious '&NkS@s OA% 2 +anxiously '&NkS@slI Pu% 3 +any 'enI OA*,Pu*,Qx* 2 +anybody 'enIb0dI Ki%,Qx% 4 +anyhow 'enIhaU Pu% 3 +anyone 'enIwVn Ki%,Qx% 3 +anyplace 'enIpleIs Pu% 3 +anything 'enITIN Ki*,Qx* 3 +anyway 'enIweI Pu% 3 +anywhere 'enIwe@R Pu% 3 +aorta eI'Ot@ K6% 3 +aortas eI'Ot@z Kj% 3 +apace @'peIs Pu% 2 +apache @'p&tSI K6% 3 +apaches @'p&tSIz Kj% 3 +apanage '&p@nIdZ L@$ 3 +apart @'pAt Pu% 2 +apartheid @'pAtaIt L@% 3 +apartment @'pAtm@nt K6% 3 +apartments @'pAtm@nts Kj% 3 +apathetic ,&p@'TetIk OA% 4 +apathetically ,&p@'TetIklI Pu% 5 +apathy '&p@TI L@% 3 +ape eIp H2%,K6% 1 +aped eIpt Hc%,Hd% 1 +aperient @'pI@rI@nt K6$,OA$ 4 +aperients @'pI@rI@nts Kj$ 4 +aperitif @'per@tIf K6% 4 +aperitifs @'per@tIfs Kj% 4 +aperture '&p@tS@R K6% 3 +apertures '&p@tS@z Kj% 3 +apes eIps Ha%,Kj% 1 +apex 'eIpeks K7% 2 +apexes 'eIpeksIz Kj% 3 +aphasia @'feIzI@ L@% 4 +aphid 'eIfId K6% 2 +aphides 'eIfIdiz Kj$ 3 +aphids 'eIfIdz Kj% 2 +aphis 'eIfIs Ki% 2 +aphorism '&f@rIz@m K6% 4 +aphorisms '&f@rIz@mz Kj% 4 +aphrodisiac ,&fr@'dIzI&k M6%,OA% 5 +aphrodisiacs ,&fr@'dIzI&ks Mj% 5 +apiaries 'eIpI@rIz Kj% 4 +apiarist 'eIpI@rIst K6% 4 +apiarists 'eIpI@rIsts Kj% 4 +apiary 'eIpI@rI K8% 4 +apices 'eIpIsiz Kj$ 3 +apiculture 'eIpIkVltS@R K6% 4 +apicultures 'eIpIkVltS@z Kj$ 4 +apiece @'pis Pu% 2 +aping 'eIpIN Hb% 2 +apish 'eIpIS OA% 2 +aplomb @'pl0m L@% 2 +apocalypse @'p0k@lIps K6% 4 +apocalypses @'p0k@lIpsIz Kj% 5 +apocalyptic @,p0k@'lIptIk OA% 5 +apocryphal @'p0krIf@l OA% 4 +apogee '&p@dZi K6% 3 +apogees '&p@dZiz Kj$ 3 +apologetic @,p0l@'dZetIk OA% 5 +apologetically @,p0l@'dZetIklI Pu% 6 +apologetics @,p0l@'dZetIks Lk% 5 +apologies @'p0l@dZIz Kj% 4 +apologist @'p0l@dZIst K6% 4 +apologists @'p0l@dZIsts Kj% 4 +apologize @'p0l@dZaIz I2% 42A,3A +apologized @'p0l@dZaIzd Ic%,Id% 42A,3A +apologizes @'p0l@dZaIzIz Ia% 52A,3A +apologizing @'p0l@dZaIzIN Ib% 52A,3A +apology @'p0l@dZI K8% 4 +apophthegm '&p@Tem K6% 3 +apophthegms '&p@Temz Kj$ 3 +apoplectic ,&p@'plektIk OA% 4 +apoplexy '&p@pleksI L@% 4 +apostasies @'p0st@sIz Mj$ 4 +apostasy @'p0st@sI M8% 4 +apostate @'p0steIt K6%,OA% 3 +apostates @'p0steIts Kj% 3 +apostle @'p0sl K6% 3 +apostles @'p0slz Kj% 3 +apostolic ,&p@'st0lIk OA% 4 +apostrophe @'p0str@fI K6% 4 +apostrophes @'p0str@fIz Kj% 4 +apostrophize @'p0str@faIz H2$ 4 +apostrophized @'p0str@faIzd Hc$,Hd$ 4 +apostrophizes @'p0str@faIzIz Ha$ 5 +apostrophizing @'p0str@faIzIN Hb$ 5 +apothecaries @'p0TIk@rIz Kj% 5 +apothecary @'p0TIk@rI K8% 5 +apothegm '&p@Tem K6$ 3 +apothegms '&p@Temz Kj$ 3 +apotheoses @,p0TI'@Usiz Kj$ 5 +apotheosis @,p0TI'@UsIs Ki% 5 +appal @'pOl H4% 26A +appalled @'pOld Hc%,Hd% 26A +appalling @'pOlIN Hb%,OA% 36A +appallingly @'pOlINlI Pu% 4 +appals @'pOlz Ha% 26A +appanage '&p@nIdZ L@$ 3 +apparatus ,&p@'reIt@s M7% 4 +apparatuses ,&p@'reIt@sIz Mj% 5 +apparel @'p&r@l H4$,L@% 3 +apparelled @'p&r@ld Hc$,Hd$ 3 +apparelling @'p&r@lIN Hb$ 4 +apparels @'p&r@lz Ha$ 3 +apparent @'p&r@nt OA% 3 +apparently @'p&r@ntlI Pu% 4 +apparition ,&p@'rISn K6% 4 +apparitions ,&p@'rISnz Kj% 4 +appeal @'pil I0%,M6% 22A,3A +appealed @'pild Ic%,Id% 22A,3A +appealing @'pilIN Ib%,OA% 32A,3A +appealingly @'pilINlI Pu% 4 +appeals @'pilz Ia%,Mj% 22A,3A +appear @'pI@R I0% 22A,2C,4D,4E +appearance @'pI@r@ns K6% 3 +appearances @'pI@r@nsIz Kj% 4 +appeared @'pI@d Ic%,Id% 22A,2C,4D,4E +appearing @'pI@rIN Ib% 32A,2C,4D,4E +appears @'pI@z Ia% 22A,2C,4D,4E +appease @'piz H2% 26A +appeased @'pizd Hc%,Hd% 26A +appeasement @'pizm@nt L@% 3 +appeases @'pizIz Ha% 36A +appeasing @'pizIN Hb% 36A +appellant @'pel@nt K6$,OA$ 3 +appellants @'pel@nts Kj$ 3 +appellation ,&p@'leISn K6% 4 +appellations ,&p@'leISnz Kj$ 4 +append @'pend H0% 26A,14 +appendage @'pendIdZ K6% 3 +appendages @'pendIdZIz Kj% 4 +appendectomies ,&pen'dekt@mIz Kj% 5 +appendectomy ,&pen'dekt@mI K8% 5 +appended @'pendId Hc%,Hd% 36A,14 +appendices @'pendIsiz Kj% 4 +appendicitis @,pendI'saItIs L@% 5 +appending @'pendIN Hb% 36A,14 +appendix @'pendIks K7% 3 +appendixes @'pendIksIz Kj% 4 +appends @'pendz Ha% 26A,14 +appertain ,&p@'teIn I0% 33A +appertained ,&p@'teInd Ic%,Id% 33A +appertaining ,&p@'teInIN Ib% 43A +appertains ,&p@'teInz Ia% 33A +appetite '&pItaIt M6% 3 +appetites '&pItaIts Mj% 3 +appetizer '&pItaIz@R K6% 4 +appetizers '&pItaIz@z Kj% 4 +appetizing '&pItaIzIN OA% 4 +applaud @'plOd J0% 22A,2B,6A +applauded @'plOdId Jc%,Jd% 32A,2B,6A +applauding @'plOdIN Jb% 32A,2B,6A +applauds @'plOdz Ja% 22A,2B,6A +applause @'plOz L@% 2 +apple '&pl M6% 2 +applejack '&pldZ&k L@$ 3 +apples '&plz Mj% 2 +appliance @'plaI@ns K6% 3 +appliances @'plaI@nsIz Kj% 4 +applicability @,plIk@'bIlItI L@% 6 +applicable @'plIk@bl OA% 4 +applicant '&plIk@nt K6% 3 +applicants '&plIk@nts Kj% 3 +application ,&plI'keISn M6% 4 +applications ,&plI'keISnz Mj% 4 +applied @'plaId Jc%,Jd%,OA% 22C,3A,6A,14 +applies @'plaIz Ja% 22C,3A,6A,14 +appliqu_e &'plikeI H0%,L@% 3 +appliqu_eed &'plikeId Hc%,Hd% 3 +appliqu_eing &'plikeIIN Hb% 4 +appliqu_es &'plikeIz Ha% 3 +apply @'plaI J3% 22C,3A,6A,14 +applying @'plaIIN Jb% 32C,3A,6A,14 +appoint @'poInt H0% 26A,9,14,16A,23,25 +appointed @'poIntId Hc%,Hd% 36A,9,14,16A,23,25 +appointee @poIn'ti K6% 3 +appointees @poIn'tiz Kj% 3 +appointing @'poIntIN Hb% 36A,9,14,16A,23,25 +appointment @'poIntm@nt M6% 3 +appointments @'poIntm@nts Mj% 3 +appoints @'poInts Ha% 26A,9,14,16A,23,25 +apportion @'pOSn H0% 36A,12B,13B,14 +apportioned @'pOSnd Hc%,Hd% 36A,12B,13B,14 +apportioning @'pOSnIN Hb% 46A,12B,13B,14 +apportionment @'pOSnm@nt L@% 4 +apportions @'pOSnz Ha% 36A,12B,13B,14 +apposite '&p@zIt OA% 3 +appositely '&p@zItlI Pu% 4 +apposition ,&p@'zISn L@$ 4 +appraisal @'preIzl K6% 3 +appraisals @'preIzlz Kj$ 3 +appraise @'preIz H2% 26A +appraised @'preIzd Hc%,Hd% 26A +appraises @'preIzIz Ha% 36A +appraising @'preIzIN Hb% 36A +appreciable @'priS@bl OA% 4 +appreciably @'priS@blI Pu% 4 +appreciate @'priSIeIt J2% 42B,6A,9,10 +appreciated @'priSIeItId Jc%,Jd% 52B,6A,9,10 +appreciates @'priSIeIts Ja% 42B,6A,9,10 +appreciating @'priSIeItIN Jb% 52B,6A,9,10 +appreciation @,priSI'eISn M6% 5 +appreciations @,priSI'eISnz Mj% 5 +appreciative @'priS@tIv OA% 4 +appreciatively @'priS@tIvlI Pu% 5 +apprehend ,&prI'hend H0% 36A,9 +apprehended ,&prI'hendId Hc%,Hd% 46A,9 +apprehending ,&prI'hendIN Hb% 46A,9 +apprehends ,&prI'hendz Ha% 36A,9 +apprehensible ,&prI'hens@bl OA$ 5 +apprehension ,&prI'henSn M6% 4 +apprehensions ,&prI'henSnz Mj$ 4 +apprehensive ,&prI'hensIv OA% 4 +apprentice @'prentIs H2%,K6% 36A,14 +apprenticed @'prentIst Hc%,Hd% 36A,14 +apprentices @'prentIsIz Ha%,Kj% 46A,14 +apprenticeship @'prentISIp K6% 4 +apprenticeships @'prentISIps Kj% 4 +apprenticing @'prentIsIN Hb% 46A,14 +apprise @'praIz H2% 214 +apprised @'praIzd Hc%,Hd% 214 +apprises @'praIzIz Ha$ 314 +apprising @'praIzIN Hb$ 314 +appro '&pr@U L@$ 2 +approach @'pr@UtS J1%,M7% 22A,6A +approachable @'pr@UtS@bl OA% 4 +approached @'pr@UtSt Jc%,Jd% 22A,6A +approaches @'pr@UtSIz Ja%,Mj% 32A,6A +approaching @'pr@UtSIN Jb% 32A,6A +approbation ,&pr@'beISn L@% 4 +appropriate @'pr@UprI@t OA% 4 +appropriate @'pr@UprIeIt H2% 46A,14 +appropriated @'pr@UprIeItId Hc%,Hd% 56A,14 +appropriately @'pr@UprI@tlI Pu% 5 +appropriates @'pr@UprIeIts Ha% 46A,14 +appropriating @'pr@UprIeItIN Hb% 56A,14 +appropriation @,pr@UprI'eISn M6% 5 +appropriations @,pr@UprI'eISnz Mj% 5 +approval @'pruvl L@% 3 +approve @'pruv J2% 23A,6A +approved @'pruvd Jc%,Jd% 23A,6A +approves @'pruvz Ja% 23A,6A +approving @'pruvIN Jb% 33A,6A +approvingly @'pruvINlI Pu% 4 +approx @'pr0ks Y~% 2 +approximate @'pr0ksIm@t OA% 4 +approximate @'pr0ksImeIt J2% 43A,6A +approximated @'pr0ksImeItId Jc%,Jd% 53A,6A +approximately @'pr0ksIm@tlI Pu% 5 +approximates @'pr0ksImeIts Ja% 43A,6A +approximating @'pr0ksImeItIN Jb% 53A,6A +approximation @,pr0ksI'meISn M6% 5 +approximations @,pr0ksI'meISnz Mj% 5 +appurtenance @'p3tIn@ns K6% 4 +appurtenances @'p3tIn@nsIz Kj% 5 +apr`es-ski ,&preI-'ski Oq% 3 +apricot 'eIprIk0t K6% 3 +apricots 'eIprIk0ts Kj% 3 +apron 'eIpr@n K6% 2 +aprons 'eIpr@nz Kj% 2 +apropos ,&pr@'p@U Op%,Pu% 3 +apse &ps K6$ 1 +apses '&psIz Kj$ 2 +apt &pt OC% 1 +apter '&pt@R Or$ 2 +aptest '&ptIst Os$ 2 +aptitude '&ptItjud M6% 3 +aptitudes '&ptItjudz Mj% 3 +aptly '&ptlI Pu% 2 +aptness '&ptn@s L@% 2 +aqualung '&kw@lVN K6% 3 +aqualungs '&kw@lVNz Kj% 3 +aquamarine ,&kw@m@'rin M6% 4 +aquamarines ,&kw@m@'rinz Mj% 4 +aquanaut '&kw@nOt K6$ 3 +aquanauts '&kw@nOts Kj$ 3 +aquaplane '&kw@pleIn I2%,K6% 3 +aquaplaned '&kw@pleInd Ic%,Id% 3 +aquaplanes '&kw@pleInz Ia%,Kj% 3 +aquaplaning '&kw@pleInIN Ib% 4 +aquaria @'kwe@rI@ Kj$ 4 +aquarium @'kwe@rI@m K6% 4 +aquariums @'kwe@rI@mz Kj% 4 +aquatic @'kw&tIk OA% 3 +aquatint '&kw@tInt M6% 3 +aquatints '&kw@tInts Mj% 3 +aquavit '&kw@vIt L@$ 3 +aqueduct '&kwIdVkt K6% 3 +aqueducts '&kwIdVkts Kj% 3 +aqueous 'eIkwI@s OA$ 3 +aquiline '&kwIlaIn OA% 3 +ar^ete &'reIt K6$ 2 +ar^etes &'reIts Kj$ 2 +arabesque ,&r@'besk K6% 3 +arabesques ,&r@'besks Kj% 3 +arable '&r@bl OA% 3 +arachnid @'r&knId K6% 3 +arachnids @'r&knIdz Kj% 3 +arbiter 'AbIt@R K6% 3 +arbiters 'AbIt@z Kj% 3 +arbitrament A'bItr@m@nt M6$ 4 +arbitraments A'bItr@m@nts Mj$ 4 +arbitrarily ,AbI'tre@rIlI Pu% 5 +arbitrary 'AbItr@rI OA% 4 +arbitrate 'AbItreIt J2% 32A,6A +arbitrated 'AbItreItId Jc%,Jd% 42A,6A +arbitrates 'AbItreIts Ja% 32A,6A +arbitrating 'AbItreItIN Jb% 42A,6A +arbitration ,AbI'treISn M6% 4 +arbitrations ,AbI'treISnz Mj% 4 +arbitrator 'AbItreIt@R K6% 4 +arbitrators 'AbItreIt@z Kj% 4 +arboreal A'bOrI@l OA$ 4 +arbour 'Ab@R K6% 2 +arbours 'Ab@z Kj% 2 +arc Ak K6% 1 +arc-lamp 'Ak-l&mp K6% 2 +arc-lamps 'Ak-l&mps Kj% 2 +arc-light 'Ak-laIt K6% 2 +arc-lights 'Ak-laIts Kj% 2 +arcade A'keId K6% 2 +arcades A'keIdz Kj% 2 +arcane A'keIn OA% 2 +arch AtS J1%,K7%,Oq% 12C,6A +arch- AtS- U-% 1 +archaeological ,AkI@'l0dZIkl OA% 6 +archaeologist ,AkI'0l@dZIst K6% 5 +archaeologists ,AkI'0l@dZIsts Kj% 5 +archaeology ,AkI'0l@dZI L@% 5 +archaic A'keIIk OA% 3 +archaism 'AkeIIz@m M6% 4 +archaisms 'AkeIIz@mz Mj% 4 +archangel 'AkeIndZl K6% 3 +archangels 'AkeIndZlz Kj% 3 +archbishop ,AtS'bIS@p K6% 3 +archbishopric AtS'bIS@prIk K6% 4 +archbishoprics AtS'bIS@prIks Kj$ 4 +archbishops ,AtS'bIS@ps Kj% 3 +archdeacon ,AtS'dik@n K6% 3 +archdeaconries AtS'dik@nrIz Kj$ 4 +archdeaconry AtS'dik@nrI K8% 4 +archdeacons ,AtS'dik@nz Kj% 3 +archdiocese ,AtS'daI@sIs K6% 4 +archdioceses ,AtS'daI@sIsIz Kj$ 5 +archduke ,AtS'djuk K6% 2 +archdukes ,AtS'djuks Kj% 2 +arched AtSt Jc%,Jd% 12C,6A +archeology ,AkI'0l@dZI L@% 5 +archer 'AtS@R K6% 2 +archers 'AtS@z Kj% 2 +archery 'AtS@rI L@% 3 +arches 'AtSIz Ja%,Kj% 22C,6A +archetypal ,AkI'taIpl OA% 4 +archetype 'AkItaIp K6% 3 +archetypes 'AkItaIps Kj% 3 +archimandrite ,AkI'm&ndraIt K6$ 4 +archimandrites ,AkI'm&ndraIts Kj$ 4 +arching 'AtSIN Jb% 22C,6A +archipelago ,AkI'pel@g@U K6% 5 +archipelagoes ,AkI'pel@g@Uz Kj% 5 +archipelagos ,AkI'pel@g@Uz Kj% 5 +architect 'AkItekt K6% 3 +architects 'AkItekts Kj% 3 +architectural ,AkI'tektS@r@l OA% 5 +architecturally ,AkI'tektS@r@lI Pu% 6 +architecture 'AkItektS@R L@% 4 +archives 'AkaIvz Kj% 2 +archivist 'AkIvIst K6% 3 +archivists 'AkIvIsts Kj% 3 +archly 'AtSlI Pu% 2 +archway 'AtSweI K6% 2 +archways 'AtSweIz Kj% 2 +arcs Aks Kj% 1 +arctic 'AktIk OA% 2 +ardent 'Adnt OA% 2 +ardently 'AdntlI Pu% 3 +ardour 'Ad@R M6% 2 +ardours 'Ad@z Mj$ 2 +arduous 'AdjU@s OA% 3 +arduously 'AdjU@slI Pu% 4 +are AR Ge*,Ie*,K6$ 11 +area 'e@rI@ M6* 3 +areas 'e@rI@z Mj% 3 +areca '&rIk@ K6$ 3 +arecas '&rIk@z Kj$ 3 +aren't Ant Gg% 1 +arena @'rin@ K6% 3 +arenas @'rin@z Kj% 3 +ares Az Kj$ 1 +argent 'AdZ@nt K6$,OA$ 2 +argents 'AdZ@nts Kj$ 2 +argon 'Ag0n L@% 2 +argosies 'Ag@sIz Kj$ 3 +argosy 'Ag@sI K8$ 3 +argot 'Ag@U L@$ 2 +arguable 'AgjU@bl OA% 4 +arguably 'AgjU@blI Pu% 4 +argue 'Agju J2% 22A,2C,3A,6A,9,14 +argued 'Agjud Jc%,Jd% 22A,2C,3A,6A,9,14 +argues 'Agjuz Ja% 22A,2C,3A,6A,9,14 +arguing 'AgjuIN Jb% 32A,2C,3A,6A,9,14 +argument 'AgjUm@nt M6% 3 +argumentation ,AgjUmen'teISn L@$ 5 +argumentative ,AgjU'ment@tIv OA% 5 +arguments 'AgjUm@nts Mj% 3 +aria 'ArI@ K6% 3 +arias 'ArI@z Kj% 3 +arid '&rId OA% 2 +aridity @'rIdItI L@% 4 +aright @'raIt Pu% 2 +arise @'raIz I5% 22A,3A +arisen @'rIzn Id% 32A,3A +arises @'raIzIz Ia% 32A,3A +arising @'raIzIN Ib% 32A,3A +aristocracies ,&rI'st0kr@sIz Mj% 5 +aristocracy ,&rI'st0kr@sI M8% 5 +aristocrat '&rIst@kr&t K6% 4 +aristocratic ,&rIst@'kr&tIk OA% 5 +aristocratically ,&rIst@'kr&tIklI Pu% 6 +aristocrats '&rIst@kr&ts Kj% 4 +arithmetic @'rITm@tIk L@% 4 +arithmetical ,&rIT'metIkl OA% 5 +arithmetically ,&rIT'metIklI Pu% 5 +arithmetician @,rITm@'tISn K6$ 5 +arithmeticians @,rITm@'tISnz Kj$ 5 +ark Ak K6% 1 +arks Aks Kj% 1 +arm Am J0%,K6% 12A,6A,14 +arm-hole 'Am-h@Ul K6% 2 +arm-holes 'Am-h@Ulz Kj% 2 +armada A'mAd@ K6% 3 +armadas A'mAd@z Kj% 3 +armadillo ,Am@'dIl@U K6% 4 +armadillos ,Am@'dIl@Uz Kj% 4 +armament 'Am@m@nt M6% 3 +armaments 'Am@m@nts Mj% 3 +armature 'Am@tSU@R K6$ 3 +armatures 'Am@tSU@z Kj$ 3 +armband 'Amb&nd K6% 2 +armbands 'Amb&ndz Kj% 2 +armchair 'AmtSe@R K6% 2 +armchairs 'AmtSe@z Kj% 2 +armed Amd Jc%,Jd% 12A,6A,14 +armful 'AmfUl K6% 2 +armfuls 'AmfUlz Kj% 2 +armies 'AmIz Kj% 2 +arming 'AmIN Jb% 22A,6A,14 +armistice 'AmIstIs K6% 3 +armistices 'AmIstIsIz Kj% 4 +armlet 'AmlIt K6% 2 +armlets 'AmlIts Kj% 2 +armoire 'AmwAR K6$ 2 +armoires 'AmwAz Kj$ 2 +armorial A'mOrI@l OA% 4 +armour 'Am@R L@% 2 +armour-plate 'Am@-pleIt K6% 3 +armour-plates 'Am@-pleIts Kj$ 3 +armoured 'Am@d OA% 2 +armourer 'Am@r@R K6% 3 +armourers 'Am@r@z Kj% 3 +armouries 'Am@rIz Kj% 3 +armoury 'Am@rI K8% 3 +armpit 'AmpIt K6% 2 +armpits 'AmpIts Kj% 2 +arms Amz Ja%,Kj% 12A,6A,14 +arms-race 'Amz-reIs Ki% 2 +arms-runner 'Amz-rVn@R K6% 3 +arms-runners 'Amz-rVn@z Kj% 3 +army 'AmI K8% 2 +arnica 'AnIk@ L@$ 3 +aroma @'r@Um@ K6% 3 +aromas @'r@Um@z Kj% 3 +aromatic ,&r@'m&tIk OA% 4 +arose @'r@Uz Ic% 22A,3A +around @'raUnd Pu*,T-* 2 +arouse @'raUz H2% 26A,14 +aroused @'raUzd Hc%,Hd% 26A,14 +arouses @'raUzIz Ha% 36A,14 +arousing @'raUzIN Hb% 36A,14 +arpeggio A'pedZI@U K6% 4 +arpeggios A'pedZI@Uz Kj% 4 +arquebus 'AkwIb@s K7$ 3 +arquebuses 'AkwIb@sIz Kj$ 4 +arr @'raIv Y~% 2 +arrack '&r&k L@$ 2 +arraign @'reIn H0% 26A,14 +arraigned @'reInd Hc%,Hd% 26A,14 +arraigning @'reInIN Hb% 36A,14 +arraignment @'reInm@nt K6$ 3 +arraignments @'reInm@nts Kj$ 3 +arraigns @'reInz Ha% 26A,14 +arrange @'reIndZ J2% 23A,4C,6A,14,15A +arranged @'reIndZd Jc%,Jd% 23A,4C,6A,14,15A +arrangement @'reIndZm@nt M6% 3 +arrangements @'reIndZm@nts Mj% 3 +arranges @'reIndZIz Ja% 33A,4C,6A,14,15A +arranging @'reIndZIN Jb% 33A,4C,6A,14,15A +arrant '&r@nt OA% 2 +arras '&r@s K7$ 2 +arrases '&r@sIz Kj$ 3 +array @'reI H0%,K6% 26A,15A +arrayed @'reId Hc%,Hd% 26A,15A +arraying @'reIIN Hb% 36A,15A +arrays @'reIz Ha%,Kj% 26A,15A +arrears @'rI@z Kj% 2 +arrest @'rest H0%,K6% 26A +arrested @'restId Hc%,Hd% 36A +arrester @'rest@R K6% 3 +arresters @'rest@z Kj% 3 +arresting @'restIN Hb%,OA% 36A +arrests @'rests Ha%,Kj% 26A +arri`ere pens_ee ,&rIe@ 'p0nseI K6$ 5 +arri`ere pens_ees ,&rIe@ 'p0nseIz Kj$ 5 +arrival @'raIvl M6% 3 +arrivals @'raIvlz Mj% 3 +arrive @'raIv I2% 22A,2C,3A +arrived @'raIvd Ic%,Id% 22A,2C,3A +arrives @'raIvz Ia% 22A,2C,3A +arriving @'raIvIN Ib% 32A,2C,3A +arrogance '&r@g@ns L@% 3 +arrogant '&r@g@nt OA% 3 +arrogantly '&r@g@ntlI Pu% 4 +arrogate '&r@geIt H2$ 314 +arrogated '&r@geItId Hc$,Hd$ 414 +arrogates '&r@geIts Ha$ 314 +arrogating '&r@geItIN Hb% 414 +arrow '&r@U K6% 2 +arrowhead '&r@Uhed K6% 3 +arrowheads '&r@Uhedz Kj% 3 +arrowroot '&r@Urut L@% 3 +arrows '&r@Uz Kj% 2 +arse As K6% 1 +arsehole 'Ash@Ul K6% 2 +arseholes 'Ash@Ulz Kj% 2 +arsenal 'Asn@l K6% 2 +arsenals 'Asn@lz Kj% 2 +arsenic 'AsnIk L@% 2 +arses 'AsIz Kj% 2 +arson 'Asn L@% 2 +art At M6% 1 +artefact 'AtIf&kt K6% 3 +artefacts 'AtIf&kts Kj% 3 +arterial A'tI@rI@l OA% 4 +arteries 'At@rIz Kj% 3 +arteriosclerosis A,tI@rI@Uskl@'r@UsIs L@% 7 +artery 'At@rI K8% 3 +artesian A'tizI@n OA% 4 +artful 'Atf@l OA% 2 +artfully 'Atf@lI Pu% 3 +artfulness 'Atf@ln@s L@% 3 +arthritic A'TrItIk OA% 3 +arthritis ,A'TraItIs L@% 3 +artichoke 'AtItS@Uk K6% 3 +artichokes 'AtItS@Uks Kj% 3 +article 'AtIkl H2%,K6% 3 +articled 'AtIkld Hc%,Hd% 3 +articles 'AtIklz Ha$,Kj% 3 +articling 'AtIklIN Hb$ 3 +articulate A'tIkjUl@t OA% 4 +articulate A'tIkjUleIt J2% 42C,6A,15A +articulated A'tIkjUleItId Jc%,Jd% 52C,6A,15A +articulately A'tIkjUl@tlI Pu% 5 +articulates A'tIkjUleIts Ja% 42C,6A,15A +articulating A'tIkjUleItIN Jb% 52C,6A,15A +articulation A,tIkjU'leISn L@% 5 +artifact 'AtIf&kt K6% 3 +artifacts 'AtIf&kts Kj% 3 +artifice 'AtIfIs M6% 3 +artificer A'tIfIs@R K6$ 4 +artificers A'tIfIs@z Kj$ 4 +artifices 'AtIfIsIz Mj$ 4 +artificial ,AtI'fISl OA% 4 +artificially ,AtI'fIS@lI Pu% 5 +artillery A'tIl@rI L@% 4 +artisan ,AtI'z&n K6% 3 +artisans ,AtI'z&nz Kj% 3 +artist 'AtIst K6% 2 +artiste A'tist K6% 2 +artistes A'tists Kj% 2 +artistic A'tIstIk OA% 3 +artistically A'tIstIklI Pu% 4 +artistry 'AtIstrI L@% 3 +artists 'AtIsts Kj% 2 +artless 'AtlIs OA% 2 +artlessly 'AtlIslI Pu% 3 +artlessness 'AtlIsn@s L@% 3 +arts Ats Mj% 1 +arty 'AtI OA% 2 +arty-crafty ,AtI-'kr&ftI OA% 4 +arum 'e@r@m K6$ 2 +arums 'e@r@mz Kj$ 2 +as &z V-* 1 +asap ,eI,es,eI'pi Y~% 4 +asbestos &z'best0s L@% 3 +ascend @'send J0% 22A,2C,6A +ascendancy @'send@nsI L@% 4 +ascendant @'send@nt K6% 3 +ascendants @'send@nts Kj$ 3 +ascended @'sendId Jc%,Jd% 32A,2C,6A +ascendency @'send@nsI L@% 4 +ascendent @'send@nt K6$ 3 +ascendents @'send@nts Kj$ 3 +ascending @'sendIN Jb% 32A,2C,6A +ascends @'sendz Ja% 22A,2C,6A +ascension @'senSn K6% 3 +ascensions @'senSnz Kj$ 3 +ascent @'sent K6% 2 +ascents @'sents Kj% 2 +ascertain ,&s@'teIn H0% 36A,8,9,10,17 +ascertainable ,&s@'teIn@bl OA% 5 +ascertained ,&s@'teInd Hc%,Hd% 36A,8,9,10,17 +ascertaining ,&s@'teInIN Hb% 46A,8,9,10,17 +ascertains ,&s@'teInz Ha% 36A,8,9,10,17 +ascetic @'setIk K6%,OA% 3 +ascetically @'sitIklI Pu% 4 +asceticism @'setIsIz@m L@% 5 +ascetics @'setIks Kj% 3 +ascorbic @'skObIk OA% 3 +ascribable @s'kraIb@bl OA% 4 +ascribe @'skraIb H2% 214 +ascribed @'skraIbd Hc%,Hd% 214 +ascribes @'skraIbz Ha% 214 +ascribing @'skraIbIN Hb% 314 +ascription @'skrIpSn K6$ 3 +ascriptions @'skrIpSnz Kj$ 3 +asdic '&zdIk K6$ 2 +asdics '&zdIks Kj$ 2 +asepsis ,eI'sepsIs L@$ 3 +aseptic ,eI'septIk OA% 3 +asexual ,eI'sekSU@l OA% 4 +asexuality eI,sekSU'&lItI L@% 6 +ash &S M7% 1 +ash-bin '&S-bIn K6% 2 +ash-bins '&S-bInz Kj% 2 +ash-can '&S-k&n K6% 2 +ash-cans '&S-k&nz Kj% 2 +ash-key '&S-ki K6$ 2 +ash-keys '&S-kiz Kj$ 2 +ash-pan '&S-p&n K6% 2 +ash-pans '&S-p&nz Kj% 2 +ashamed @'SeImd Op% 2 +ashamedly @'SeImIdlI Pu% 4 +ashen '&Sn OA% 2 +ashes '&SIz Mj% 2 +ashore @'SOR Pu% 2 +ashtray '&StreI K6% 2 +ashtrays '&StreIz Kj% 2 +ashy '&SI OA% 2 +aside @'saId K6%,Pu% 2 +asides @'saIdz Kj% 2 +asinine '&sInaIn OA% 3 +ask Ask J0% 13A,6A,7A,8,9,10,12C,14,15B,17,20,21 +askance @'sk&ns Pu% 2 +asked Askt Jc*,Jd* 13A,6A,7A,8,9,10,12C,14,15B,17,20,21 +askew @'skju Op%,Pu% 2 +asking 'AskIN Jb%,Ki% 23A,6A,7A,8,9,10,12C,14,15B,17,20,21 +asks Asks Ja% 13A,6A,7A,8,9,10,12C,14,15B,17,20,21 +aslant @'slAnt Pu%,T-% 2 +asleep @'slip Op%,Pu% 2 +asp &sp K6% 1 +asparagus @'sp&r@g@s L@% 4 +aspect '&spekt K6% 2 +aspects '&spekts Kj% 2 +aspectual &'spektSU@l OA$ 4 +aspen '&sp@n K6$ 2 +aspens '&sp@nz Kj$ 2 +asperities &'sperItIz Mj$ 4 +asperity &'sperItI M8% 4 +asperse @'sp3s H2$ 26A +aspersed @'sp3st Hc$,Hd$ 26A +asperses @'sp3sIz Ha$ 36A +aspersing @'sp3sIN Hb$ 36A +aspersion @'sp3Sn K6% 3 +aspersions @'sp3Snz Kj% 3 +asphalt '&sf< H0%,L@% 26A +asphalted '&sf<Id Hc%,Hd% 36A +asphalting '&sf<IN Hb% 36A +asphalts '&sf<s Ha% 26A +asphodel '&sf@del K6$ 3 +asphodels '&sf@delz Kj$ 3 +asphyxia &s'fIksI@ L@% 4 +asphyxiate @s'fIksIeIt H2% 46A +asphyxiated @s'fIksIeItId Hc%,Hd% 56A +asphyxiates @s'fIksIeIts Ha% 46A +asphyxiating @s'fIksIeItIN Hb% 56A +asphyxiation @s,fIksI'eISn L@% 5 +aspic '&spIk L@% 2 +aspidistra ,&spI'dIstr@ K6% 4 +aspidistras ,&spI'dIstr@z Kj% 4 +aspirant '&spIr@nt K6% 3 +aspirants '&spIr@nts Kj% 3 +aspirate '&spIr@t K6% 3 +aspirate '&spIreIt H2% 3 +aspirated '&spIreItId Hc%,Hd% 4 +aspirates '&spIr@ts Kj% 3 +aspirates '&spIreIts Ha% 3 +aspirating '&spIreItIN Hb% 4 +aspiration ,&spI'reISn M6% 4 +aspirations ,&spI'reISnz Mj% 4 +aspire @'spaI@R I2% 23A,4A +aspired @'spaI@d Ic%,Id% 23A,4A +aspires @'spaI@z Ia% 23A,4A +aspirin '&sprIn M6% 3 +aspiring @'spaI@rIN Ib% 33A,4A +aspirins '&sprInz Mj% 3 +asps &sps Kj% 1 +ass &s K7% 1 +assagai '&s@gaI K6$ 3 +assagais '&s@gaIz Kj$ 3 +assail @'seIl H0% 26A,14 +assailable @'seIl@bl OA$ 4 +assailant @'seIl@nt K6% 3 +assailants @'seIl@nts Kj% 3 +assailed @'seIld Hc%,Hd% 26A,14 +assailing @'seIlIN Hb% 36A,14 +assails @'seIlz Ha% 26A,14 +assassin @'s&sIn K6% 3 +assassinate @'s&sIneIt H2% 46A +assassinated @'s&sIneItId Hc%,Hd% 56A +assassinates @'s&sIneIts Ha% 46A +assassinating @'s&sIneItIN Hb% 56A +assassination @,s&sI'neISn M6% 5 +assassinations @,s&sI'neISnz Mj% 5 +assassins @'s&sInz Kj% 3 +assault @'sOlt H0%,K6% 26A +assaulted @'sOltId Hc%,Hd% 36A +assaulting @'sOltIN Hb% 36A +assaults @'sOlts Ha%,Kj% 26A +assay @'seI H0$,K6$ 26A,7A +assayed @'seId Hc$,Hd$ 26A,7A +assaying @'seIIN Hb$ 36A,7A +assays @'seIz Ha$,Kj$ 26A,7A +assegai '&s@gaI K6% 3 +assegais '&s@gaIz Kj% 3 +assemblage @'semblIdZ M6% 3 +assemblages @'semblIdZIz Mj$ 4 +assemble @'sembl J2% 32A,6A +assembled @'sembld Jc%,Jd% 32A,6A +assembles @'semblz Ja% 32A,6A +assemblies @'semblIz Kj% 3 +assembling @'semblIN Jb% 32A,6A +assembly @'semblI K8% 3 +assent @'sent I0%,K6% 22A,3A +assented @'sentId Ic%,Id% 32A,3A +assenting @'sentIN Ib% 32A,3A +assents @'sents Ia%,Kj% 22A,3A +assert @'s3t H0% 26A,9,25 +asserted @'s3tId Hc%,Hd% 36A,9,25 +asserting @'s3tIN Hb% 36A,9,25 +assertion @'s3Sn M6% 3 +assertions @'s3Snz Mj% 3 +assertive @'s3tIv OA% 3 +assertively @'s3tIvlI Pu% 4 +asserts @'s3ts Ha% 26A,9,25 +asses '&sIz Kj% 2 +assess @'ses H1% 26A,14 +assessed @'sest Hc%,Hd% 26A,14 +assesses @'sesIz Ha% 36A,14 +assessing @'sesIN Hb% 36A,14 +assessment @'sesm@nt M6% 3 +assessments @'sesm@nts Mj% 3 +assessor @'ses@R K6% 3 +assessors @'ses@z Kj% 3 +asset '&set K6% 2 +assets '&sets Kj% 2 +asseverate @'sev@reIt H2$ 46A,9 +asseverated @'sev@reItId Hc$,Hd$ 56A,9 +asseverates @'sev@reIts Ha$ 46A,9 +asseverating @'sev@reItIN Hb$ 56A,9 +asseveration @,sev@'reISn K6$ 5 +asseverations @,sev@'reISnz Kj$ 5 +asshole '&sh@Ul K6% 2 +assholes '&sh@Ulz Kj% 2 +assiduities ,&sI'djuItIz Mj$ 5 +assiduity ,&sI'djuItI M8% 5 +assiduous @'sIdjU@s OA% 4 +assiduously @'sIdjU@slI Pu% 5 +assign @'saIn H0% 212A,13A,13B,14,17 +assignable @'saIn@bl OA% 4 +assignation ,&sIg'neISn K6% 4 +assignations ,&sIg'neISnz Kj% 4 +assigned @'saInd Hc%,Hd% 212A,13A,13B,14,17 +assigning @'saInIN Hb% 312A,13A,13B,14,17 +assignment @'saInm@nt M6% 3 +assignments @'saInm@nts Mj% 3 +assigns @'saInz Ha% 212A,13A,13B,14,17 +assimilate @'sIm@leIt J2% 42A,3A,6A +assimilated @'sIm@leItId Jc%,Jd% 52A,3A,6A +assimilates @'sIm@leIts Ja% 42A,3A,6A +assimilating @'sIm@leItIN Jb% 52A,3A,6A +assimilation @,sIm@'leISn L@% 5 +assist @'sIst J0% 22A,3A,6A,14,17 +assistance @'sIst@ns L@% 3 +assistant @'sIst@nt K6% 3 +assistants @'sIst@nts Kj% 3 +assisted @'sIstId Jc%,Jd% 32A,3A,6A,14,17 +assisting @'sIstIN Jb% 32A,3A,6A,14,17 +assists @'sIsts Ja% 22A,3A,6A,14,17 +assize @'saIz L@$ 2 +assizes @'saIzIz Kj% 3 +assoc @'s0k Y>% 2 +associate @'s@USI@t K6%,OA% 4 +associate @'s@USIeIt J2% 43A,14 +associated @'s@USIeItId Jc%,Jd% 53A,14 +associates @'s@USI@ts Kj% 4 +associates @'s@USIeIts Ja% 43A,14 +associating @'s@USIeItIN Jb% 53A,14 +association @,s@UsI'eISn M6% 5 +associations @,s@UsI'eISnz Mj% 5 +assonance '&s@n@ns K6% 3 +assonances '&s@n@nsIz Kj$ 4 +assorted @'sOtId OA% 3 +assortment @'sOtm@nt K6% 3 +assortments @'sOtm@nts Kj% 3 +asst @'sIst@nt Y>% 3 +assuage @'sweIdZ H2% 26A +assuaged @'sweIdZd Hc%,Hd% 26A +assuages @'sweIdZIz Ha% 36A +assuaging @'sweIdZIN Hb% 36A +assume @'sjum H2% 26A,9,25 +assumed @'sjumd Hc%,Hd% 26A,9,25 +assumes @'sjumz Ha% 26A,9,25 +assuming @'sjumIN Hb% 36A,9,25 +assumption @'sVmpSn K6% 3 +assumptions @'sVmpSnz Kj% 3 +assurance @'SU@r@ns M6% 3 +assurances @'SU@r@nsIz Mj% 4 +assure @'SU@R H2% 26A,11,14 +assured @'SU@d Hc%,Hd%,OA% 26A,11,14 +assuredly @'SU@rIdlI Pu% 4 +assuredness @'SU@rIdnIs L@% 4 +assures @'SU@z Ha% 26A,11,14 +assuring @'SU@rIN Hb% 36A,11,14 +aster '&st@R K6% 2 +asterisk '&st@rIsk K6% 3 +asterisks '&st@rIsks Kj% 3 +astern @'st3n Pu% 2 +asteroid '&st@roId K6% 3 +asteroids '&st@roIdz Kj% 3 +asters '&st@z Kj% 2 +asthma '&sm@ L@% 2 +asthmatic &s'm&tIk OA% 3 +astigmatic ,&stIg'm&tIk OA% 4 +astigmatism @'stIgm@tIz@m L@% 5 +astir @'st3R Op$,Pu$ 2 +astonish @'st0nIS H1% 36A +astonished @'st0nISt Hc%,Hd% 36A +astonishes @'st0nISIz Ha% 46A +astonishing @'st0nISIN Hb%,OA% 46A +astonishingly @'st0nISINlI Pu% 5 +astonishment @'st0nISm@nt L@% 4 +astound @'staUnd H0% 26A +astounded @'staUndId Hc%,Hd% 36A +astounding @'staUndIN Hb% 36A +astounds @'staUndz Ha% 26A +astrakhan ,&str@'k&n L@% 3 +astral '&str@l OA% 2 +astray @'streI Op%,Pu% 2 +astride @'straId Op%,Pu%,T-% 2 +astringency @'strIndZ@nsI L@% 4 +astringent @'strIndZ@nt K6%,OA% 3 +astringents @'strIndZ@nts Kj% 3 +astrodome '&str@d@Um K6$ 3 +astrodomes '&str@d@Umz Kj$ 3 +astrolabe '&str@leIb K6$ 3 +astrolabes '&str@leIbz Kj$ 3 +astrologer @s'tr0l@dZ@R K6% 4 +astrologers @s'tr0l@dZ@z Kj% 4 +astrological ,&str@'l0dZIkl OA% 5 +astrology @'str0l@dZI L@% 4 +astronaut '&str@nOt K6% 3 +astronautics ,&str@'nOtIks Lk$ 4 +astronauts '&str@nOts Kj% 3 +astronomer @'str0n@m@R K6% 4 +astronomers @'str0n@m@z Kj% 4 +astronomical ,&str@'n0mIkl OA% 5 +astronomically ,&str@'n0mIklI Pu% 5 +astronomy @'str0n@mI L@% 4 +astrophysics ,&str@U'fIzIks Lk% 4 +astute @'stjut OA% 2 +astutely @'stjutlI Pu% 3 +astuteness @'stjutn@s L@% 3 +asunder @'sVnd@R Pu% 3 +asylum @'saIl@m M6% 3 +asylums @'saIl@mz Mj% 3 +asymmetric ,eIsI'metrIk OA% 4 +asymmetrical ,eIsI'metrIkl OA% 5 +asymmetrically ,eIsI'metrIklI Pu% 5 +asymmetry eI'sImItrI L@% 4 +asymptote '&sImt@Ut K6% 3 +asymptotes '&sImt@Uts Kj$ 3 +asymptotic ,&sIm't0tIk OA% 4 +asymptotically ,&sIm't0tIklI Pu% 5 +at &t T-* 1 +at-home @t-'h@Um K6% 2 +at-homes @t-'h@Umz Kj% 2 +atabrine '&t@brin L@$ 3 +atavism '&t@vIz@m K6% 4 +atavisms '&t@vIz@mz Kj$ 4 +atavistic ,&t@'vIstIk OA% 4 +ate et Jc% 12A,2C,3A,4A,6A,15B +atelier &'telIeI K6$ 4 +ateliers &'telIeIz Kj$ 4 +atheism 'eITIIz@m L@% 4 +atheist 'eITIIst K6% 3 +atheistic ,eITI'IstIk OA% 4 +atheists 'eITIIsts Kj% 3 +athirst @'T3st Op$ 2 +athlete '&Tlit K6% 2 +athletes '&Tlits Kj% 2 +athletic &T'letIk OA% 3 +athletics &T'letIks Lk% 3 +athwart @'TwOt Pu%,T-% 2 +atishoo @'tISu W-% 3 +atlas '&tl@s K7% 2 +atlases '&tl@sIz Kj% 3 +atmosphere '&tm@sfI@R M6% 3 +atmospheres '&tm@sfI@z Mj% 3 +atmospheric ,&tm@s'ferIk OA% 4 +atmospherics ,&tm@s'ferIks Lk% 4 +atoll '&t0l K6$ 2 +atolls '&t0lz Kj$ 2 +atom '&t@m K6% 2 +atomic @'t0mIk OA% 3 +atomize '&t@maIz H2% 3 +atomized '&t@maIzd Hc%,Hd% 3 +atomizer '&t@maIz@R K6% 4 +atomizers '&t@maIz@z Kj% 4 +atomizes '&t@maIzIz Ha% 4 +atomizing '&t@maIzIN Hb% 4 +atoms '&t@mz Kj% 2 +atonal eI't@Unl OA% 3 +atonality ,eIt@U'n&lItI L@$ 5 +atone @'t@Un I2% 22A,3A +atoned @'t@Und Ic%,Id% 22A,3A +atonement @'t@Unm@nt L@% 3 +atones @'t@Unz Ia% 22A,3A +atoning @'t@UnIN Ib% 32A,3A +atop @'t0p Pu% 2 +atrabilious ,&tr@'bIlI@s OA$ 5 +atrocious @'tr@US@s OA% 3 +atrociously @'tr@US@slI Pu% 4 +atrocities @'tr0sItIz Mj% 4 +atrocity @'tr0sItI M8% 4 +atrophied '&tr@fId Jc%,Jd% 32A,2B,6A +atrophies '&tr@fIz Ja% 32A,2B,6A +atrophy '&tr@fI J3%,L@% 32A,2B,6A +atrophying '&tr@fIIN Jb% 42A,2B,6A +attaboy ,&t@'boI W-% 3 +attach @'t&tS J1% 23A,6A,14 +attach_e @'t&SeI K6% 3 +attach_es @'t&SeIz Kj% 3 +attached @'t&tSt Jc%,Jd% 23A,6A,14 +attaches @'t&tSIz Ja% 33A,6A,14 +attaching @'t&tSIN Jb% 33A,6A,14 +attachment @'t&tSm@nt M6% 3 +attachments @'t&tSm@nts Mj% 3 +attack @'t&k H0%,M6% 26A +attacked @'t&kt Hc%,Hd% 26A +attacker @'t&k@R K6% 3 +attackers @'t&k@z Kj% 3 +attacking @'t&kIN Hb% 36A +attacks @'t&ks Ha%,Mj% 26A +attain @'teIn J0% 23A,6A +attainable @'taIn@bl OA% 4 +attainder @'teInd@R K6$ 3 +attainders @'teInd@z Kj$ 3 +attained @'teInd Jc%,Jd% 23A,6A +attaining @'teInIN Jb% 33A,6A +attainment @'teInm@nt M6% 3 +attainments @'teInm@nts Mj% 3 +attains @'teInz Ja% 23A,6A +attar '&t@R L@$ 2 +attempt @'tempt H0%,K6% 26A,7A +attempted @'temptId Hc%,Hd% 36A,7A +attempting @'temptIN Hb% 36A,7A +attempts @'tempts Ha%,Kj% 26A,7A +attend @'tend J0% 22A,3A,6A +attendance @'tend@ns M6% 3 +attendances @'tend@nsIz Mj% 4 +attendant @'tend@nt K6%,OA% 3 +attendants @'tend@nts Kj% 3 +attended @'tendId Jc%,Jd% 32A,3A,6A +attending @'tendIN Jb% 32A,3A,6A +attends @'tendz Ja% 22A,3A,6A +attention @'tenSn M6% 3 +attentions @'tenSnz Mj% 3 +attentive @'tentIv OA% 3 +attentively @'tentIvlI Pu% 4 +attentiveness @'tentIvnIs L@% 4 +attenuate @'tenjUeIt H2$ 46A +attenuated @'tenjUeItId Hc$,Hd% 56A +attenuates @'tenjUeIts Ha$ 46A +attenuating @'tenjUeItIN Hb$ 56A +attenuation @,tenjU'eISn L@% 5 +attest @'test J0% 22A,3A,6A +attested @'testId Jc%,Jd% 32A,3A,6A +attesting @'testIN Jb% 32A,3A,6A +attests @'tests Ja% 22A,3A,6A +attic '&tIk K6% 2 +attics '&tIks Kj% 2 +attire @'taI@R H2%,L@% 26A +attired @'taI@d Hc%,Hd% 26A +attires @'taI@z Ha% 26A +attiring @'taI@rIN Hb% 36A +attitude '&tItjud K6% 3 +attitudes '&tItjudz Kj% 3 +attitudinize ,&tI'tjudInaIz I2$ 52A +attitudinized ,&tI'tjudInaIzd Ic$,Id$ 52A +attitudinizes ,&tI'tjudInaIzIz Ia$ 62A +attitudinizing ,&tI'tjudInaIzIN Ib$ 62A +attorney @'t3nI K6% 3 +attorneys @'t3nIz Kj% 3 +attract @'tr&kt H0% 26A +attracted @'tr&ktId Hc%,Hd% 36A +attracting @'tr&ktIN Hb% 36A +attraction @'tr&kSn M6% 3 +attractions @'tr&kSnz Mj% 3 +attractive @'tr&ktIv OA% 3 +attractively @'tr&ktIvlI Pu% 4 +attracts @'tr&kts Ha% 26A +attributable @'trIbjUt@bl OA% 5 +attribute '&trIbjut K6% 3 +attribute @'trIbjut H2% 314 +attributed @'trIbjutId Hc%,Hd% 414 +attributes '&trIbjuts Kj% 3 +attributes @'trIbjuts Ha% 314 +attributing @'trIbjutIN Hb% 414 +attribution ,&trI'bjuSn M6% 4 +attributions ,&trI'bjuSnz Mj$ 4 +attributive @'trIbjUtIv OA% 4 +attributively @'trIbjUtIvlI Pu% 5 +attrition @'trISn L@% 3 +attune @'tjun H2% 214 +attuned @'tjund Hc%,Hd% 214 +attunes @'tjunz Ha% 214 +attuning @'tjunIN Hb% 314 +atypical eI'tIpIkl OA% 4 +atypically eI'tIpIklI Pu% 4 +au fait ,@U 'feI Op% 2 +au fond ,@U 'f0n Pu$ 2 +au pair ,@U 'pe@R K6% 2 +au pairs ,@U 'pe@z Kj% 2 +au revoir ,@U r@'vwAR W-% 3 +aubergine '@Ub@Zin K6% 3 +aubergines '@Ub@Zinz Kj% 3 +aubrietia O'briS@ K6$ 3 +aubrietias O'briS@z Kj$ 3 +auburn 'Ob@n OA% 2 +auction 'OkSn H0%,M6% 26A,15B +auctioned 'OkSnd Hc%,Hd% 26A,15B +auctioneer ,OkS@'nI@R K6% 4 +auctioneers ,OkS@'nI@z Kj% 4 +auctioning 'OkSnIN Hb% 36A,15B +auctions 'OkSnz Ha%,Mj% 26A,15B +audacious O'deIS@s OA% 3 +audaciously O'deIS@slI Pu% 4 +audacity O'd&sItI L@% 4 +audibility ,OdI'bIlItI L@% 5 +audible 'Od@bl OA% 3 +audibly 'Od@blI Pu% 3 +audience 'OdI@ns K6% 3 +audiences 'OdI@nsIz Kj% 4 +audio- ,OdI@U- U-% 3 +audio-lingual ,OdI@U-'lINgw@l OA$ 5 +audit 'OdIt H0%,K6% 26A +audited 'OdItId Hc%,Hd% 36A +auditing 'OdItIN Hb% 36A +audition O'dISn H0%,M6% 36A +auditioned O'dISnd Hc%,Hd% 36A +auditioning O'dISnIN Hb% 46A +auditions O'dISnz Ha%,Mj% 36A +auditor 'OdIt@R K6% 3 +auditorium ,OdI'tOrI@m K6% 5 +auditoriums ,OdI'tOrI@mz Kj% 5 +auditors 'OdIt@z Kj% 3 +auditory 'OdItrI OA% 3 +audits 'OdIts Ha%,Kj% 26A +auger 'Og@R K6$ 2 +augers 'Og@z Kj$ 2 +aught Ot L@$ 1 +augment Og'ment J0% 22A,6A +augmentation ,Ogmen'teISn M6% 4 +augmentations ,Ogmen'teISnz Mj% 4 +augmented Og'mentId Jc%,Jd% 32A,6A +augmenting Og'mentIN Jb% 32A,6A +augments Og'ments Ja% 22A,6A +augur 'Og@R J0%,K6$ 22A,6A +augured 'Og@d Jc%,Jd% 22A,6A +auguries 'OgjUrIz Kj$ 3 +auguring 'Og@rIN Jb$ 32A,6A +augurs 'Og@z Ja%,Kj$ 22A,6A +augury 'OgjUrI K8$ 3 +august O'gVst OA% 2 +auk Ok K6% 1 +auks Oks Kj% 1 +auld lang syne ,Old l&N 'zaIn Ki% 3 +aunt Ant K6% 1 +auntie 'AntI K6% 2 +aunties 'AntIz Kj% 2 +aunts Ants Kj% 1 +aunty 'AntI K8% 2 +aura 'Or@ K6% 2 +aural 'Or@l OA% 2 +auras 'Or@z Kj% 2 +aureole 'OrI@Ul K6$ 3 +aureoles 'OrI@Ulz Kj$ 3 +auricle 'OrIkl K6$ 3 +auricles 'OrIklz Kj$ 3 +auricular O'rIkjUl@R OA$ 4 +auriferous O'rIf@r@s OA$ 4 +aurora O'rOr@ K6% 3 +auroras O'rOr@z Kj% 3 +auspices 'OspIsIz Kj% 3 +auspicious O'spIS@s OA% 3 +auspiciously O'spIS@slI Pu% 4 +austere O'stI@R OA% 2 +austerely O'stI@lI Pu% 3 +austerities O'sterItIz Mj% 4 +austerity O'sterItI M8% 4 +autarchies 'OtAkIz Mj$ 3 +autarchy 'OtAkI M8$ 3 +autarky 'OtAkI L@$ 3 +authentic O'TentIk OA% 3 +authentically O'TentIklI Pu% 4 +authenticate O'TentIkeIt H2% 46A +authenticated O'TentIkeItId Hc%,Hd% 56A +authenticates O'TentIkeIts Ha% 46A +authenticating O'TentIkeItIN Hb% 56A +authentication O,TentI'keISn L@% 5 +authenticity ,OT@n'tIsItI L@% 5 +author 'OT@R K6% 2 +authoress 'OT@rIs K7$ 3 +authoresses 'OT@rIsIz Kj$ 4 +authoritarian O,T0rI'te@rI@n K6%,OA% 6 +authoritarianism OT,0rI'te@rI@nIz@m L@% 8 +authoritarians O,T0rI'te@rI@nz Kj% 6 +authoritative O'T0rIt@tIv OA% 5 +authoritatively O'T0rIt@tIvlI Pu% 6 +authorities O'T0rItIz Mj% 4 +authority O'T0rItI M8% 4 +authorization ,OT@raI'zeISn L@% 5 +authorize 'OT@raIz H2% 36A,17 +authorized 'OT@raIzd Hc%,Hd% 36A,17 +authorizes 'OT@raIzIz Ha% 46A,17 +authorizing 'OT@raIzIN Hb% 46A,17 +authors 'OT@z Kj% 2 +authorship 'OT@SIp L@% 3 +autism 'OtIz@m L@% 3 +autistic O'tIstIk OA% 3 +auto 'Ot@U K6% 2 +auto- ,Ot@U- U-% 2 +auto-changer 'Ot@U-tSeIndZ@R K6$ 4 +auto-changers 'Ot@U-tSeIndZ@z Kj$ 4 +auto-da-f_e ,Ot@U-dA-'feI Ki$ 4 +autobahn 'Ot@bAn K6$ 3 +autobahnen 'Ot@bAn@n Kj$ 4 +autobahns 'Ot@bAnz Kj$ 3 +autobiographic ,Ot@baI@'gr&fIk OA$ 6 +autobiographical ,Ot@,baI@'gr&fIkl OA% 7 +autobiographies ,Ot@baI'0gr@fIz Mj% 6 +autobiography ,Ot@baI'0gr@fI M8% 6 +autocracies O't0kr@sIz Mj% 4 +autocracy O't0kr@sI M8% 4 +autocrat 'Ot@kr&t K6% 3 +autocratic ,Ot@'kr&tIk OA% 4 +autocratically ,Ot@'kr&tIklI Pu% 5 +autocrats 'Ot@kr&ts Kj% 3 +autogiro ,Ot@U'dZaI@r@U K6$ 4 +autogiros ,Ot@U'dZaI@r@Uz Kj$ 4 +autograph 'Ot@grAf H0%,K6% 36A +autographed 'Ot@grAft Hc%,Hd% 36A +autographing 'Ot@grAfIN Hb% 46A +autographs 'Ot@grAfs Ha%,Kj% 36A +autogyro ,Ot@U'dZaI@r@U K6$ 4 +autogyros ,Ot@U'dZaI@r@Uz Kj$ 4 +automat 'Ot@m&t K6$ 3 +automata O't0m@t@ Kj% 4 +automate 'Ot@meIt H2% 3 +automated 'Ot@meItId Hc%,Hd% 4 +automates 'Ot@meIts Ha% 3 +automatic ,Ot@'m&tIk K6%,OA% 4 +automatically ,Ot@'m&tIklI Pu% 5 +automatics ,Ot@'m&tIks Kj% 4 +automating 'Ot@meItIN Hb% 4 +automation ,Ot@'meISn L@% 4 +automaton O't0m@t@n K6% 4 +automatons O't0m@t@nz Kj% 4 +automats 'Ot@m&ts Kj$ 3 +automobile 'Ot@m@bil K6% 4 +automobiles 'Ot@m@bilz Kj% 4 +autonomies O't0n@mIz Mj$ 4 +autonomous O't0n@m@s OA% 4 +autonomy O't0n@mI M8% 4 +autopsies 'Ot0psIz Kj% 3 +autopsy 'Ot0psI K8% 3 +autos 'Ot@Uz Kj% 2 +autos-da-f_e ,Ot@Uz-dA-'feI Kj$ 4 +autostrada ,Ot@U'strAd@ K6$ 4 +autostradas ,Ot@U'strAd@z Kj% 4 +autostrade ,aUt@U'strAdeI Kj$ 4 +autumn 'Ot@m M6% 2 +autumnal O'tVmn@l OA% 3 +autumns 'Ot@mz Mj% 2 +auxiliaries Og'zIlI@rIz Kj% 5 +auxiliary Og'zIlI@rI K8%,OA% 5 +avail @'veIl J0%,L@% 22A,3A,14 +availability @,veIl@'bIlItI L@% 6 +available @'veIl@bl OA% 4 +availed @'veIld Jc%,Jd% 22A,3A,14 +availing @'veIlIN Jb% 32A,3A,14 +avails @'veIlz Ja% 22A,3A,14 +avalanche '&v@lAnS K6% 3 +avalanches '&v@lAnSIz Kj% 4 +avant-garde ,&v0n-'gAd Ki% 3 +avarice '&v@rIs L@% 3 +avaricious ,&v@'rIS@s OA% 4 +avariciously ,&v@'rIS@slI Pu% 5 +avast @'vAst W-% 2 +avatar ,&v@'tAR K6$ 3 +avatars ,&v@'tAz Kj$ 3 +avaunt @'vOnt W-$ 2 +avenge @'vendZ H2% 26A,14 +avenged @'vendZd Hc%,Hd% 26A,14 +avenger @'vendZ@R K6% 3 +avengers @'vendZ@z Kj% 3 +avenges @'vendZIz Ha% 36A,14 +avenging @'vendZIN Hb% 36A,14 +avenue '&v@nju K6% 3 +avenues '&v@njuz Kj% 3 +aver @'v3R H4% 26A,9 +average '&v@rIdZ J2%,M6%,OA% 32B,6A +averaged '&v@rIdZd Jc%,Jd% 32B,6A +averages '&v@rIdZIz Ja%,Mj% 42B,6A +averaging '&v@rIdZIN Jb% 42B,6A +averred @'v3d Hc%,Hd% 26A,9 +averring @'v3rIN Hb% 36A,9 +avers @'v3z Ha% 26A,9 +averse @'v3s OA% 2 +aversion @'v3Sn M6% 3 +aversions @'v3Snz Mj% 3 +avert @'v3t H0% 26A,14 +averted @'v3tId Hc%,Hd% 36A,14 +averting @'v3tIN Hb% 36A,14 +averts @'v3ts Ha% 26A,14 +aviaries 'eIvI@rIz Kj% 4 +aviary 'eIvI@rI K8% 4 +aviation ,eIvI'eISn L@% 4 +aviator 'eIvIeIt@R K6% 4 +aviators 'eIvIeIt@z Kj% 4 +avid '&vId OA% 2 +avidity @'vIdItI L@% 4 +avidly '&vIdlI Pu% 3 +avocado ,&v@'kAd@U K6% 4 +avocados ,&v@'kAd@Uz Kj% 4 +avocation ,&v@'keISn K6$ 4 +avocations ,&v@'keISnz Kj$ 4 +avoid @'voId H0% 26A,6C +avoidable @'voId@bl OA% 4 +avoidance @'voId@ns L@% 3 +avoided @'voIdId Hc%,Hd% 36A,6C +avoiding @'voIdIN Hb% 36A,6C +avoids @'voIdz Ha% 26A,6C +avoirdupois ,&v@d@'poIz L@$ 4 +avouch @'vaUtS J1$ 23A,6A,9 +avouched @'vaUtSt Jc$,Jd$ 23A,6A,9 +avouches @'vaUtSIz Ja$ 33A,6A,9 +avouching @'vaUtSIN Jb$ 33A,6A,9 +avow @'vaU H0$ 26A,25 +avowal @'v@U@l M6$ 3 +avowals @'v@U@lz Mj$ 3 +avowed @'vaUd Hc$,Hd% 26A,25 +avowedly @'vaUIdlI Pu% 4 +avowing @'vaUIN Hb% 36A,25 +avows @'vaUz Ha% 26A,25 +avuncular @'vVNkjUl@R OA% 4 +await @'weIt H0% 26A +awaited @'weItId Hc%,Hd% 36A +awaiting @'weItIN Hb% 36A +awaits @'weIts Ha% 26A +awake @'weIk I5%,Op% 22A,3A,4B +awaken @'weIk@n H0% 36A,14 +awakened @'weIk@nd Hc%,Hd% 36A,14 +awakening @'weIk@nIN Hb% 46A,14 +awakening @'weIknIN K6% 3 +awakenings @'weIknINz Kj% 3 +awakens @'weIk@nz Ha% 36A,14 +awakes @'weIks Ia% 22A,3A,4B +awaking @'weIkIN Ib% 32A,3A,4B +award @'wOd H0%,K6% 26A,12A,13A +awarded @'wOdId Hc%,Hd% 36A,12A,13A +awarding @'wOdIN Hb% 36A,12A,13A +awards @'wOdz Ha%,Kj% 26A,12A,13A +aware @'we@R Op% 2 +awareness @'we@n@s L@% 3 +awash @'w0S Op% 2 +away @'weI OA*,P+* 2 +awe O H2%,L@% 16A,14 +awe-inspiring 'O-InspaIrIN OA% 4 +awe-stricken 'O-strIk@n OA% 3 +awe-struck 'O-strVk OA% 2 +awed Od Hc%,Hd% 16A,14 +aweigh @'weI Pu$ 2 +awes Oz Ha% 16A,14 +awesome 'Os@m OA% 2 +awful 'Of@l OA% 2 +awfully 'OflI Pu% 2 +awhile @'waIl Pu% 2 +awing 'OIN Hb$ 26A,14 +awkward 'Okw@d OA% 2 +awkwardly 'Okw@dlI Pu% 3 +awkwardness 'Okw@dn@s L@% 3 +awl Ol K6$ 1 +awls Olz Kj$ 1 +awning 'OnIN K6% 2 +awnings 'OnINz Kj% 2 +awoke @'w@Uk Ic%,Id% 22A,3A,4B +awoken @'w@Uk@n Id% 32A,3A,4B +awry @'raI Op%,Pu% 2 +ax &ks H1$,K7$ 16A +axe &ks H2%,K6% 16A +axed &kst Hc%,Hd% 16A +axes '&ksIz Ha%,Kj% 26A +axes '&ksiz Kj% 2 +axing '&ksIN Hb% 26A +axiom '&ksI@m K6% 3 +axiomatic ,&ksI@'m&tIk OA% 5 +axiomatically ,&ksI@'m&tIklI Pu% 5 +axioms '&ksI@mz Kj% 3 +axis '&ksIs Ki% 2 +axle '&ksl K6% 2 +axles '&kslz Kj% 2 +ay aI Pu$,W-% 1 +ayah 'aI@ K6$ 2 +ayahs 'aI@z Kj$ 2 +aye aI Pu$,W-% 1 +aye eI Pu$ 1 +ayes aIz Kj$ 1 +ays aIz Kj$ 1 +azalea @'zeIlI@ K6$ 4 +azaleas @'zeIlI@z Kj$ 4 +azimuth '&zIm@T K6$ 3 +azimuths '&zIm@Ts Kj$ 3 +azure '&Z@R K6%,OA% 2 +azures '&Z@z Kj$ 2 +b bi Ki$ 1 +b's biz Kj$ 1 +b^ete noire ,bet 'nwAR Ki% 2 +b^etes noires ,bet 'nwA Kj% 2 +baa bA I0%,K6% 1 +baa'd bAd Ic$ 1 +baa-lamb 'bA-l&m K6% 2 +baa-lambs 'bA-l&mz Kj% 2 +baaed bAd Ic$,Id$ 1 +baaing 'bAIN Ib% 2 +baas bAs Ki$ 1 +baas bAz Ia$,Kj$ 1 +babble 'b&bl J2%,L@% 22A,2B,2C,6A,15B +babbled 'b&bld Jc%,Jd% 22A,2B,2C,6A,15B +babbler 'b&bl@R K6% 2 +babblers 'b&bl@z Kj% 2 +babbles 'b&blz Ja% 22A,2B,2C,6A,15B +babbling 'b&blIN Jb% 22A,2B,2C,6A,15B +babe beIb K6% 1 +babel 'beIbl K6% 2 +babels 'beIblz Kj$ 2 +babes beIbz Kj% 1 +babied 'beIbId Hc%,Hd% 26A +babies 'beIbIz Ha%,Kj% 26A +baboo 'bAbu K6$ 2 +baboon b@'bun K6% 2 +baboons b@'bunz Kj% 2 +baboos 'bAbuz Kj$ 2 +babu 'bAbu K6$ 2 +babus 'bAbuz Kj$ 2 +baby 'beIbI H3%,K8% 26A +baby-faced 'beIbI-feIst OA% 3 +baby-farmer 'beIbI-fAm@R K6$ 4 +baby-farmers 'beIbI-fAm@z Kj$ 4 +baby-minder 'beIbI-maInd@R K6% 4 +baby-minders 'beIbI-maInd@z Kj% 4 +baby-talk 'beIbI-tOk L@% 3 +babyhood 'beIbIhUd Ki% 3 +babying 'beIbIIN Hb% 36A +babyish 'beIbIIS OA% 3 +babysat 'beIbIs&t Ic%,Id% 3 +babysit 'beIbIsIt I5% 3 +babysits 'beIbIsIts Ia% 3 +babysitter 'beIbIsIt@R K6% 4 +babysitters 'beIbIsIt@z Kj% 4 +babysitting 'beIbIsItIN Ib%,L@% 4 +baccalaureate ,b&k@'lOrI@t K6% 5 +baccalaureates ,b&k@'lOrI@ts Kj% 5 +baccarat 'b&k@rA L@$ 3 +bacchanal 'b&k@n@l K6%,OA$ 3 +bacchanalian ,b&k@'neIlI@n OA% 5 +bacchanals 'b&k@n@lz Kj% 3 +baccy 'b&kI L@% 2 +bachelor 'b&tS@l@R K6% 3 +bachelors 'b&tS@l@z Kj% 3 +bacilli b@'sIlaI Kj% 3 +bacillus b@'sIl@s Ki% 3 +back b&k J0%,K6%,P+* 12A,2C,3A,6A,15A,15B +back-blocks 'b&k-bl0ks Kj$ 2 +back-breaking 'b&k-breIkIN OA% 3 +back-down 'b&k-daUn K6% 2 +back-downs 'b&k-daUnz Kj$ 2 +back-formation 'b&k-fO,meISn M6$ 4 +back-formations 'b&k-fO,meISnz Mj$ 4 +back-strokes 'b&k-str@Uks Mj% 2 +back-up 'b&k-Vp K6% 2 +back-ups 'b&k-Vps Kj% 2 +backache 'b&keIk M6% 2 +backaches 'b&keIks Mj% 2 +backband 'b&kb&nd K6$ 2 +backbands 'b&kb&ndz Kj$ 2 +backbench 'b&kbentS K7% 2 +backbencher b&k'bentS@R K6% 3 +backbenchers b&k'bentS@z Kj% 3 +backbenches 'b&kbentSIz Kj% 3 +backbit 'b&kbIt Jc$ 2 +backbite 'b&kbaIt J5% 2 +backbiter 'b&kbaIt@R K6% 3 +backbiters 'b&kbaIt@z Kj% 3 +backbites 'b&kbaIts Ja% 2 +backbiting 'b&kbaItIN Jb% 3 +backbitten 'b&kbIt@n Jd$ 3 +backboard 'b&kbOd K6$ 2 +backboards 'b&kbOdz Kj$ 2 +backbone 'b&kb@Un M6% 2 +backbones 'b&kb@Unz Mj% 2 +backchat 'b&ktS&t L@% 2 +backcloth 'b&k+kl0T K6% 2 +backcloths 'b&k+kl0Ts Kj% 2 +backdate b&k'deIt H2% 2 +backdated b&k'deItId Hc%,Hd% 3 +backdates b&k'deIts Ha% 2 +backdating b&k'deItIN Hb% 3 +backdoor b&k'dOR K6% 2 +backdoors b&k'dOz Kj% 2 +backdrop 'b&kdr0p K6% 2 +backdrops 'b&kdr0ps Kj% 2 +backed b&kt Jc%,Jd% 12A,2C,3A,6A,15A,15B +backer 'b&k@R K6% 2 +backers 'b&k@z Kj% 2 +backfire b&k'faI@R I2%,K6% 2 +backfired b&k'faI@d Ic%,Id% 2 +backfires b&k'faI@z Ia%,Kj% 2 +backfiring b&k'faI@rIN Ib% 3 +backgammon b&k'g&m@n L@% 3 +background 'b&kgraUnd K6% 2 +backgrounds 'b&kgraUndz Kj% 2 +backhand 'b&kh&nd OA% 2 +backhanded 'b&kh&ndId OA% 3 +backing 'b&kIN Jb%,M6% 22A,2C,3A,6A,15A,15B +backings 'b&kINz Mj% 2 +backlash 'b&kl&S L@% 2 +backless 'b&kl@s OA% 2 +backlog 'b&kl0g K6% 2 +backlogs 'b&kl0gz Kj$ 2 +backmost 'b&km@Ust OA$ 2 +backpedal b&k'ped@l I4% 3 +backpedalled b&k'ped@ld Ic%,Id% 3 +backpedalling b&k'ped@lIN Ib% 4 +backpedals b&k'ped@lz Ia% 3 +backroom 'b&krum K6% 2 +backrooms 'b&krumz Kj% 2 +backs b&ks Ja%,Kj% 12A,2C,3A,6A,15A,15B +backscratcher 'b&kskr&tS@R K6% 3 +backscratchers 'b&kskr&tS@z Kj% 3 +backseat b&k'sit K6% 2 +backseats b&k'sits Kj% 2 +backsheesh 'b&kSiS M9% 2 +backside 'b&ksaId K6% 2 +backsides 'b&ksaIdz Kj% 2 +backslid b&k'slId Ic$,Id$ 22A +backslide b&k'slaId I5% 22A +backslides b&k'slaIdz Ia% 22A +backsliding b&k'slaIdIN Ib% 32A +backspace 'b&kspeIs I2% 2 +backspaced 'b&kspeIst Ic%,Id% 2 +backspaces 'b&kspeIsIz Ia% 3 +backspacing 'b&kspeIsIN Ib% 3 +backstage 'b&ksteIdZ Pu% 2 +backstair 'b&kste@R OA$ 2 +backstairs 'b&kste@z Kj% 2 +backstays 'b&ksteIz Kj$ 2 +backstroke 'b&kstr@Uk M6% 2 +backsword 'b&ksOd K6$ 2 +backswords 'b&ksOdz Kj$ 2 +backtalk 'b&ktOk L@% 2 +backward 'b&kw@d OA%,Pu% 2 +backwards 'b&kw@dz OA%,Pu% 2 +backwash 'b&kw0S L@% 2 +backwater 'b&kwOt@R K6% 3 +backwaters 'b&kwOt@z Kj% 3 +backwoods 'b&kwUdz Kj% 2 +backwoodsman b&k'wUdzm@n Ki% 3 +backwoodsmen b&k'wUdzm@n Kj% 3 +bacon 'beIk@n L@% 2 +bacteria b&k'tI@rI@ Kj% 4 +bacterial b&k'tI@rI@l OA% 4 +bacteriologist b&k,tI@rI'0l@dZIst K6% 6 +bacteriologists b&k,tI@rI'0l@dZIsts Kj% 6 +bacteriology b&k,tI@rI'0l@dZI L@% 6 +bacterium b&k'tI@rI@m Ki% 4 +bad b&d L@%,OE% 1 +bade b&d Jc% 112A,13A,17,18B +badge b&dZ K6% 1 +badger 'b&dZ@R H0%,K6% 26A,14,16A +badgered 'b&dZ@d Hc%,Hd% 26A,14,16A +badgering 'b&dZ@rIN Hb% 36A,14,16A +badgers 'b&dZ@z Ha%,Kj% 26A,14,16A +badges 'b&dZIz Kj% 2 +badinage 'b&dInAZ L@% 3 +badlands 'b&dl&ndz Kj% 2 +badly 'b&dlI Pu% 2 +badly-behaved ,b&dlI-bI'heIvd OA% 4 +badminton 'b&dmInt@n L@% 3 +badness 'b&dn@s L@% 2 +baffle 'b&fl H2%,K6% 26A +baffled 'b&fld Hc%,Hd% 26A +baffles 'b&flz Ha%,Kj% 26A +baffling 'b&flIN Hb% 26A +bag b&g J4%,K6% 12A,2C,6A,15B +bagatelle ,b&g@'tel M6% 3 +bagatelles ,b&g@'telz Mj% 3 +baggage 'b&gIdZ L@% 2 +bagged b&gd Jc%,Jd% 12A,2C,6A,15B +bagging 'b&gIN Jb% 22A,2C,6A,15B +baggy 'b&gI OA% 2 +bagnio 'bAnI@U K6$ 3 +bagnios 'bAnI@Uz Kj$ 3 +bagpipe 'b&gpaIp K6$ 2 +bagpipes 'b&gpaIps Kj% 2 +bags b&gz Ja%,Kj% 12A,2C,6A,15B +bah bA W-% 1 +bail beIl J0%,M6% 12A,2C,6A,15B +bailed beIld Jc%,Jd% 12A,2C,6A,15B +bailee ,beI'li K6$ 2 +bailees ,beI'liz Kj$ 2 +bailey 'beIlI K6% 2 +baileys 'beIlIz Kj% 2 +bailiff 'beIlIf K6% 2 +bailiffs 'beIlIfs Kj% 2 +bailing 'beIlIN Jb% 22A,2C,6A,15B +bailment 'beIlm@nt K6$ 2 +bailments 'beIlm@nts Kj$ 2 +bailor 'beIlOR K6$ 2 +bailors 'beIlOz Kj$ 2 +bails beIlz Ja%,Mj% 12A,2C,6A,15B +bairn be@n K6% 1 +bairns be@nz Kj% 1 +bait beIt J0%,K6% 12A,6A +baited 'beItId Jc%,Jd% 22A,6A +baiting 'beItIN Jb% 22A,6A +baits beIts Ja%,Kj% 12A,6A +baize beIz L@% 1 +bake beIk J2% 12A,2C,6A,22 +baked beIkt Jc%,Jd% 12A,2C,6A,22 +bakelite 'beIk@laIt L@% 3 +baker 'beIk@R K6% 2 +bakeries 'beIk@rIz Kj% 3 +bakers 'beIk@z Kj% 2 +bakery 'beIk@rI K8% 3 +bakes beIks Ja% 12A,2C,6A,22 +baking 'beIkIN Jb% 22A,2C,6A,22 +baking-hot ,beIkIN-'h0t OA% 3 +baking-powder 'beIkIN-p@Ud@R K6% 4 +baking-powders 'beIkIN-p@Ud@z Kj% 4 +baksheesh 'b&kSiS M9% 2 +balaclava ,b&l@'klAv@ K6% 4 +balaclavas ,b&l@'klAv@z Kj% 4 +balalaika ,b&l@'laIk@ K6% 4 +balalaikas ,b&l@'laIk@z Kj% 4 +balance 'b&l@ns J2%,M6% 22A,6A,14,15A +balance-sheet 'b&l@ns-Sit K6% 3 +balance-sheets 'b&l@ns-Sits Kj% 3 +balance-wheel 'b&l@ns-wil K6% 3 +balance-wheels 'b&l@ns-wilz Kj% 3 +balanced 'b&l@nst Jc%,Jd% 22A,6A,14,15A +balances 'b&l@nsIz Ja%,Mj% 32A,6A,14,15A +balancing 'b&l@nsIN Jb% 32A,6A,14,15A +balconied 'b&lk@nId OA% 3 +balconies 'b&lk@nIz Kj% 3 +balcony 'b&lk@nI K8% 3 +bald bOld OC% 1 +bald-head 'bOld-hed K6$ 2 +bald-heads 'bOld-hedz Kj$ 2 +bald-pate 'bOld-peIt K6% 2 +bald-pates 'bOld-peIts Kj$ 2 +balder 'bOld@R Or% 2 +balderdash 'bOld@d&S L@% 3 +baldest 'bOldIst Os% 2 +baldly 'bOldlI Pu% 2 +baldness 'bOldn@s L@% 2 +baldric 'bOldrIk K6$ 2 +baldrics 'bOldrIks Kj$ 2 +bale beIl H2%,K6% 16A +baled beIld Hc%,Hd% 16A +baleful 'beIlf@l OA% 2 +balefully 'beIlf@lI Pu% 3 +bales beIlz Ha%,Kj% 16A +baling 'beIlIN Hb% 26A +balk bOk J0%,K6% 12A,3A,6A,14 +balked bOkt Jc%,Jd% 12A,3A,6A,14 +balking 'bOkIN Jb% 22A,3A,6A,14 +balks bOks Ja%,Kj% 12A,3A,6A,14 +ball bOl J0$,K6%,W-$ 1 +ball-cartridge bOl-'kAtrIdZ K6$ 3 +ball-cartridges bOl-'kAtrIdZIz Kj$ 4 +ball-dress 'bOl-dres K7% 2 +ball-dresses 'bOl-dresIz Kj% 3 +ballad 'b&l@d K6% 2 +ballade b&'lAd K6$ 2 +ballades b&'lAdz Kj$ 2 +ballads 'b&l@dz Kj% 2 +ballast 'b&l@st H0%,L@% 26A +ballasted 'b&l@stId Hc%,Hd% 36A +ballasting 'b&l@stIN Hb% 36A +ballasts 'b&l@sts Ha% 26A +ballbearing bOl'be@rIN K6% 3 +ballbearings bOl'be@rINz Kj% 3 +ballcock 'bOlk0k K6% 2 +ballcocks 'bOlk0ks Kj% 2 +balled bOld Jc$,Jd$ 1 +ballerina ,b&l@'rin@ K6% 4 +ballerinas ,b&l@'rin@z Kj% 4 +ballet 'b&leI M6% 2 +ballet-dancer 'b&lI-dAns@R K6% 4 +ballet-dancers 'b&lI-dAns@z Kj% 4 +ballet-skirt 'b&lI-sk3t K6% 3 +ballet-skirts 'b&lI-sk3ts Kj% 3 +ballets 'b&leIz Mj% 2 +balling 'bOlIN Jb$ 2 +ballistic b@'lIstIk OA% 3 +ballistics b@'lIstIks Lk% 3 +ballock 'b0l@k K6$ 2 +ballocks 'b0l@ks Kj$ 2 +balloon b@'lun I0%,K6% 22A,2C +ballooned b@'lund Ic%,Id% 22A,2C +ballooning b@'lunIN Ib% 32A,2C +balloonist b@'lunIst K6% 3 +balloonists b@'lunIsts Kj% 3 +balloons b@'lunz Ia%,Kj% 22A,2C +ballot 'b&l@t I0%,M6% 22A,3A +ballot-box 'b&l@t-b0ks K7% 3 +ballot-boxes 'b&l@t-b0ksIz Kj% 4 +balloted 'b&l@tId Ic%,Id% 32A,3A +balloting 'b&l@tIN Ib% 32A,3A +ballots 'b&l@ts Ia%,Mj% 22A,3A +ballpen 'bOlpen K6% 2 +ballpens 'bOlpenz Kj% 2 +ballpoint 'bOlpoInt K6% 2 +ballpoint-pen ,bAlpoInt-'pen K6% 3 +ballpoint-pens ,bAlpoInt-'penz Kj% 3 +ballpoints 'bOlpoInts Kj% 2 +ballroom 'bOlrum K6% 2 +ballrooms 'bOlrumz Kj% 2 +balls bOlz Ja$,Kj%,W-% 1 +balls-up 'bAlz-Vp K6% 2 +balls-ups 'bAlz-Vps Kj% 2 +bally 'b&lI OA$,Pu$ 2 +ballyhoo ,b&lI'hu L@% 3 +balm bAm L@% 1 +balmier 'bAmI@R Or% 3 +balmiest 'bAmIIst Os% 3 +balmy 'bAmI OD% 2 +baloney b@'l@UnI L@% 3 +balsa 'bOls@ M6% 2 +balsam 'bOls@m K6% 2 +balsams 'bOls@mz Kj$ 2 +balsas 'bOls@z Mj$ 2 +baluster 'b&l@st@R K6$ 3 +balusters 'b&l@st@z Kj$ 3 +balustrade ,b&l@'streId K6% 3 +balustrades ,b&l@'streIdz Kj% 3 +bambino b&m'bin@U K6% 3 +bambinos b&m'bin@Uz Kj% 3 +bamboo b&m'bu M6% 2 +bamboos b&m'buz Mj% 2 +bamboozle b&m'buzl H2% 36A,14 +bamboozled b&m'buzld Hc%,Hd% 36A,14 +bamboozles b&m'buzlz Ha% 36A,14 +bamboozling b&m'buzlIN Hb% 36A,14 +ban b&n H4%,K6% 16A,14 +banal b@'nAl OA% 2 +banalities b@'n&lItIz Mj% 4 +banality b@'n&lItI M8% 4 +banana b@'nAn@ K6% 3 +bananas b@'nAn@z Kj% 3 +band b&nd J0%,K6% 12C,6A,14,15B +band-saw 'b&nd-sO K6$ 2 +band-saws 'b&nd-sOz Kj$ 2 +bandage 'b&ndIdZ H2%,K6% 26A,15B +bandaged 'b&ndIdZd Hc%,Hd% 26A,15B +bandages 'b&ndIdZIz Ha%,Kj% 36A,15B +bandaging 'b&ndIdZIN Hb% 36A,15B +bandanna b&n'd&n@ K6$ 3 +bandannas b&n'd&n@z Kj$ 3 +bandbox 'b&ndb0ks K7$ 2 +bandboxes 'b&ndb0ksIz Kj$ 3 +bandeau 'b&nd@U Ki$ 2 +bandeaux 'b&nd@Uz Kj$ 2 +banded 'b&ndId Jc%,Jd% 22C,6A,14,15B +bandied 'b&ndId Hc%,Hd% 26A,14,15B +bandier 'b&ndI@R Or$ 3 +bandies 'b&ndIz Ha% 26A,14,15B +bandiest 'b&ndIIst Os% 3 +banding 'b&ndIN Jb% 22C,6A,14,15B +bandit 'b&ndIt K6% 2 +banditry 'b&ndItrI L@% 3 +bandits 'b&ndIts Kj% 2 +bandleader 'b&ndlid@R K6% 3 +bandleaders 'b&ndlid@z Kj% 3 +bandmaster 'b&ndmAst@R K6% 3 +bandmasters 'b&ndmAst@z Kj% 3 +bandoleer ,b&nd@'lI@R K6$ 3 +bandoleers ,b&nd@'lI@z Kj$ 3 +bandolier ,b&nd@'lI@R K6$ 4 +bandoliers ,b&nd@'lI@z Kj$ 4 +bands b&ndz Ja%,Kj% 12C,6A,14,15B +bandsman 'b&ndzm@n Ki% 2 +bandsmen 'b&ndzm@n Kj% 2 +bandstand 'b&ndst&nd K6% 2 +bandstands 'b&ndst&ndz Kj% 2 +bandwagon 'b&ndw&g@n K6% 3 +bandwagons 'b&ndw&g@nz Kj$ 3 +bandy 'b&ndI H3%,OD% 26A,14,15B +bandy-legged ,b&ndI-'legId OA% 4 +bandying 'b&ndIIN Hb% 36A,14,15B +bane beIn L@% 1 +baneful 'beInf@l OA$ 2 +banefully 'beInf@lI Pu$ 3 +bang b&N J0%,M6%,Pu%,W-% 12A,2C,6A,15B +banged b&Nd Jc%,Jd% 12A,2C,6A,15B +banger 'b&N@R K6% 2 +bangers 'b&N@z Kj% 2 +banging 'b&NIN Jb% 22A,2C,6A,15B +bangle 'b&Ngl K6% 2 +bangles 'b&Nglz Kj% 2 +bangs b&Nz Ja%,Mj% 12A,2C,6A,15B +banian 'b&nj@n K6$ 2 +banian-tree 'b&nj@n-tri K6$ 3 +banian-trees 'b&nj@n-triz Kj$ 3 +banians 'b&nj@nz Kj$ 2 +banish 'b&nIS H1% 26A,14 +banished 'b&nISt Hc%,Hd% 26A,14 +banishes 'b&nISIz Ha% 36A,14 +banishing 'b&nISIN Hb% 36A,14 +banishment 'b&nISm@nt L@% 3 +banister 'b&nIst@R K6% 3 +banisters 'b&nIst@z Kj% 3 +banjo 'b&ndZ@U K6% 2 +banjoes 'b&ndZ@Uz Kj% 2 +banjos 'b&ndZ@Uz Kj% 2 +bank b&Nk J0%,K6% 12A,2C,3A,6A,15B +bank-bill 'b&Nk-bIl K6$ 2 +bank-bills 'b&Nk-bIlz Kj$ 2 +bank-book 'b&Nk-bUk K6% 2 +bank-books 'b&Nk-bUks Kj% 2 +bank-draft 'b&Nk-drAft K6% 2 +bank-drafts 'b&Nk-drAfts Kj% 2 +bank-rate 'b&Nk-reIt K6% 2 +bank-rates 'b&Nk-reIts Kj% 2 +banked b&Nkt Jc%,Jd% 12A,2C,3A,6A,15B +banker 'b&Nk@R K6% 2 +bankers 'b&Nk@z Kj% 2 +banking 'b&NkIN Jb%,L@% 22A,2C,3A,6A,15B +banknote 'b&Nkn@Ut K6% 2 +banknotes 'b&Nkn@Uts Kj% 2 +bankroll 'b&Nkr@Ul K6% 2 +bankrolls 'b&Nkr@Ulz Kj% 2 +bankrupt 'b&NkrVpt H0%,K6%,OA% 26A +bankruptcies 'b&Nkr@psIz Mj% 3 +bankruptcy 'b&Nkr@psI M8% 3 +bankrupted 'b&NkrVptId Hc%,Hd% 36A +bankrupting 'b&NkrVptIN Hb% 36A +bankrupts 'b&NkrVpts Ha%,Kj% 26A +banks b&Nks Ja%,Kj% 12A,2C,3A,6A,15B +banned b&nd Hc%,Hd% 16A,14 +banner 'b&n@R K6% 2 +banners 'b&n@z Kj% 2 +banning 'b&nIN Hb% 26A,14 +banning-order 'b&nIN-Od@R K6% 4 +banning-orders 'b&nIN-Od@z Kj% 4 +bannister 'b&nIst@R K6$ 3 +bannisters 'b&nIst@z Kj$ 3 +bannock 'b&n@k K6$ 2 +bannocks 'b&n@ks Kj$ 2 +banns b&nz Kj% 1 +banquet 'b&NkwIt J0%,K6% 22A,6A +banqueted 'b&NkwItId Jc%,Jd% 32A,6A +banqueting 'b&NkwItIN Jb% 32A,6A +banquets 'b&NkwIts Ja%,Kj% 22A,6A +bans b&nz Ha%,Kj% 16A,14 +banshee b&n'Si K6% 2 +banshees b&n'Siz Kj% 2 +bant b&nt I0$ 12A +bantam 'b&nt@m K6% 2 +bantams 'b&nt@mz Kj% 2 +banted 'b&ntId Ic$,Id$ 22A +banter 'b&nt@R J0%,L@% 22A,6A +bantered 'b&nt@d Jc%,Jd% 22A,6A +bantering 'b&nt@rIN Jb%,OA% 32A,6A +banteringly 'b&nt@rINlI Pu% 4 +banters 'b&nt@z Ja% 22A,6A +banting 'b&ntIN Ib$,L@$ 22A +bants b&nts Ia$ 12A +banyan 'b&nj@n K6% 2 +banyans 'b&nj@nz Kj% 2 +baobab 'beI@b&b K6$ 3 +baobabs 'beI@b&bz Kj$ 3 +baptism 'b&ptIz@m M6% 3 +baptismal b&p'tIzm@l OA% 3 +baptisms 'b&ptIz@mz Mj% 3 +baptize b&p'taIz H2% 26A,23 +baptized b&p'taIzd Hc%,Hd% 26A,23 +baptizes b&p'taIzIz Ha% 36A,23 +baptizing b&p'taIzIN Hb% 36A,23 +bar bAR H4%,K6%,T-% 16A,6C,12C,14,15B +barb bAb K6% 1 +barbarian bA'be@rI@n K6%,OA% 4 +barbarians bA'be@rI@nz Kj% 4 +barbaric bA'b&rIk OA% 3 +barbarism 'bAb@rIz@m M6% 4 +barbarisms 'bAb@rIz@mz Mj$ 4 +barbarities bA'b&rItIz Mj% 4 +barbarity bA'b&rItI M8% 4 +barbarize 'bAb@raIz H2% 36A +barbarized 'bAb@raIzd Hc%,Hd% 36A +barbarizes 'bAb@raIzIz Ha$ 46A +barbarizing 'bAb@raIzIN Hb% 46A +barbarous 'bAb@r@s OA% 3 +barbarously 'bAb@r@slI Pu% 4 +barbecue 'bAbIkju H2%,K6% 3 +barbecued 'bAbIkjud Hc%,Hd% 3 +barbecues 'bAbIkjuz Ha%,Kj% 3 +barbecuing 'bAbIkjuIN Hb% 4 +barbed bAbd OA% 1 +barbel 'bAbl K6$ 2 +barbels 'bAblz Kj$ 2 +barber 'bAb@R K6% 2 +barbers 'bAb@z Kj% 2 +barbican 'bAbIk@n K6$ 3 +barbicans 'bAbIk@nz Kj$ 3 +barbitone 'bAbIt@Un L@$ 3 +barbiturate bA'bItjUr@t M6% 4 +barbiturates bA'bItjUr@ts Mj% 4 +barbs bAbz Kj% 1 +barcarole ,bAk@'r@Ul K6$ 3 +barcaroles ,bAk@'r@Ulz Kj$ 3 +barcarolle ,bAk@'r@Ul K6% 3 +barcarolles ,bAk@'r@Ulz Kj% 3 +bard bAd K6% 1 +bardic 'bAdIk OA% 2 +bardolatry bA'd0l@trI L@$ 4 +bards bAdz Kj% 1 +bare be@R H2%,OB% 16A +bareback 'be@b&k Pu% 2 +barebacked 'be@b&kt OA%,Pu$ 2 +bared be@d Hc%,Hd% 16A +barefaced 'be@feIst OA% 2 +barefacedly 'be@feIstlI Pu% 3 +barefoot be@'fUt Pu% 2 +barefooted be@'fUtId OA%,Pu% 3 +bareheaded be@'hedId OA% 3 +barelegged be@'legId OA% 3 +barely 'be@lI Pu% 2 +bareness 'be@n@s L@% 2 +barer 'be@r@R Or$ 2 +bares be@z Ha% 16A +barest 'be@rIst Os$ 2 +bargain 'bAgIn J0%,K6% 22A,3A,9,15B +bargained 'bAgInd Jc%,Jd% 22A,3A,9,15B +bargaining 'bAgInIN Jb% 32A,3A,9,15B +bargains 'bAgInz Ja%,Kj% 22A,3A,9,15B +barge bAdZ I2%,K6% 12C,3A +barged bAdZd Ic%,Id% 12C,3A +bargee bA'dZi K6% 2 +bargees bA'dZiz Kj% 2 +bargepole 'bAdZp@Ul K6% 2 +bargepoles 'bAdZp@Ulz Kj% 2 +barges 'bAdZIz Ia%,Kj% 22C,3A +barging 'bAdZIN Ib% 22C,3A +baring 'be@rIN Hb% 26A +baritone 'b&rIt@Un K6% 3 +baritones 'b&rIt@Unz Kj% 3 +barium 'be@rI@m L@$ 3 +bark bAk J0%,M6% 12A,2C,3A,6A,15B +barked bAkt Jc%,Jd% 12A,2C,3A,6A,15B +barker 'bAk@R K6% 2 +barkers 'bAk@z Kj% 2 +barking 'bAkIN Jb% 22A,2C,3A,6A,15B +barks bAks Ja%,Mj% 12A,2C,3A,6A,15B +barley 'bAlI L@% 2 +barley-sugar 'bAlI-SUg@R M6% 4 +barley-sugars 'bAlI-SUg@z Mj% 4 +barley-water 'bAlI-wOt@R L@% 4 +barleycorn 'bAlIkOn M6% 3 +barleycorns 'bAlIkOnz Mj% 3 +barm bAm L@$ 1 +barmaid 'bAmeId K6% 2 +barmaids 'bAmeIdz Kj% 2 +barman 'bAm&n Ki% 2 +barmen 'bAmen Kj% 2 +barmy 'bAmI OA% 2 +barn bAn K6% 1 +barn-door bAn-'dOR K6% 2 +barn-doors bAn-'dOz Kj% 2 +barnacle 'bAn@kl K6% 3 +barnacles 'bAn@klz Kj% 3 +barns bAnz Kj% 1 +barnstorm 'bAnstOm I0% 2 +barnstormed 'bAnstOmd Ic$,Id$ 2 +barnstormer 'bAnstOm@R K6$ 3 +barnstormers 'bAnstOm@z Kj$ 3 +barnstorming 'bAnstOmIN Ib$ 3 +barnstorms 'bAnstOmz Ia$ 2 +barnyard 'bAnjAd K6% 2 +barnyards 'bAnjAdz Kj% 2 +barometer b@'r0mIt@R K6% 4 +barometers b@'r0mIt@z Kj% 4 +barometric ,b&r@'metrIk OA$ 4 +baron 'b&r@n K6% 2 +baronage 'b&r@nIdZ K6$ 3 +baronages 'b&r@nIdZIz Kj$ 4 +baroness 'b&r@nes K7% 3 +baronesses 'b&r@nesIz Kj% 4 +baronet 'b&r@net K6% 3 +baronetcies 'b&r@nItsIz Kj$ 4 +baronetcy 'b&r@nItsI K8% 4 +baronets 'b&r@nets Kj% 3 +baronial b@'r@UnI@l OA% 4 +baronies 'b&r@nIz Kj$ 3 +barons 'b&r@nz Kj% 2 +barony 'b&r@nI K8$ 3 +baroque b@'r0k Ki%,OA% 2 +barouche b@'ruS K6$ 2 +barouches b@'ruSIz Kj$ 3 +barque bAk K6$ 1 +barques bAks Kj$ 1 +barrack 'b&r@k J0%,K6% 22A,6A +barracked 'b&r@kt Jc%,Jd% 22A,6A +barracking 'b&r@kIN Jb%,L@% 32A,6A +barracks 'b&r@ks Ja%,Kj% 22A,6A +barracuda ,b&r@'kud@ K6% 4 +barracudas ,b&r@'kud@z Kj% 4 +barrage 'b&rAZ K6% 2 +barrages 'b&rAZIz Kj% 3 +barred bAd Hc%,Hd% 16A,6C,12C,14,15B +barrel 'b&r@l H4$,K6% 2 +barrelled 'b&r@ld Hc$,Hd%,OA% 2 +barrelling 'b&r@lIN Hb$ 3 +barrels 'b&r@lz Ha$,Kj% 2 +barren 'b&r@n OA% 2 +barrenness 'b&r@n+n@s L@% 3 +barricade ,b&rI'keId H2%,K6% 36A,15B +barricaded ,b&rI'keIdId Hc%,Hd% 46A,15B +barricades ,b&rI'keIdz Ha%,Kj% 36A,15B +barricading ,b&rI'keIdIN Hb% 46A,15B +barrier 'b&rI@R K6% 3 +barriers 'b&rI@z Kj% 3 +barring 'bArIN Hb%,T-% 26A,6C,12C,14,15B +barrister 'b&rIst@R K6% 3 +barristers 'b&rIst@z Kj% 3 +barrow 'b&r@U K6% 2 +barrow-boy 'b&r@U-boI K6% 3 +barrow-boys 'b&r@U-boIz Kj% 3 +barrow-man 'b&r@U-m&n Ki$ 3 +barrow-men 'b&r@U-men Kj$ 3 +barrows 'b&r@Uz Kj% 2 +bars bAz Ha%,Kj% 16A,6C,12C,14,15B +bartender 'bAtend@R K6% 3 +bartenders 'bAtend@z Kj% 3 +barter 'bAt@R J0%,L@% 22A,14,15B +bartered 'bAt@d Jc%,Jd% 22A,14,15B +barterer 'bAt@r@R K6% 3 +barterers 'bAt@r@z Kj% 3 +bartering 'bAt@rIN Jb% 32A,14,15B +barters 'bAt@z Ja% 22A,14,15B +bas-relief ,b&s-rI'lif M6% 3 +bas-reliefs ,b&s-rI'lifs Mj% 3 +basal 'beIsl OA% 2 +basalt 'b&sOlt L@% 2 +bascule 'b&skjul K6$ 2 +bascules 'b&skjulz Kj$ 2 +base beIs H2%,K6%,OB% 114 +baseball 'beIsbOl M6% 2 +baseballs 'beIsbOlz Mj% 2 +baseboard 'beIsbOd K6% 2 +baseboards 'beIsbOdz Kj% 2 +based beIst Hc%,Hd% 114 +baseless 'beIslIs OA% 2 +basement 'beIsm@nt K6% 2 +basements 'beIsm@nts Kj% 2 +baser 'beIs@R Or$ 2 +bases 'beIsIz Ha%,Kj% 214 +bases 'beIsiz Kj% 2 +basest 'beIsIst Os% 2 +bash b&S H1%,K7% 16A,15A,15B +bashed b&St Hc%,Hd% 16A,15A,15B +bashes 'b&SIz Ha%,Kj% 26A,15A,15B +bashful 'b&SfUl OA% 2 +bashfully 'b&SfUlI Pu% 3 +bashing 'b&SIN Hb% 26A,15A,15B +basic 'beIsIk OA% 2 +basically 'beIsIklI Pu% 3 +basil 'b&zl L@% 2 +basilica b@'zIlIk@ K6% 4 +basilicas b@'zIlIk@z Kj% 4 +basilisk 'b&sIlIsk K6% 3 +basilisks 'b&sIlIsks Kj% 3 +basin 'beIsn K6% 2 +basing 'beIsIN Hb% 214 +basins 'beIsnz Kj% 2 +basis 'beIsIs Ki% 2 +bask bAsk I0% 12C +basked bAskt Ic%,Id% 12C +basket 'bAskIt K6% 2 +basketball 'bAskItbOl M6% 3 +basketballs 'bAskItbOlz Mj% 3 +basketry 'bAskItrI L@% 3 +baskets 'bAskIts Kj% 2 +basking 'bAskIN Ib% 22C +basks bAsks Ia% 12C +bass b&s K9% 1 +bass beIs K7%,OA% 1 +basses 'beIsIz Kj% 2 +bassinet ,b&sI'net K6$ 3 +bassinets ,b&sI'nets Kj$ 3 +bassoon b@'sun K6% 2 +bassoons b@'sunz Kj% 2 +bast b&st L@$ 1 +bastard 'bAst@d K6% 2 +bastardies 'bAst@dIz Kj$ 3 +bastardize 'b&st@daIz H2$ 3 +bastardized 'b&st@daIzd Hc$,Hd$ 3 +bastardizes 'b&st@daIzIz Ha$ 4 +bastardizing 'b&st@daIzIN Hb$ 4 +bastards 'bAst@dz Kj% 2 +bastardy 'bAst@dI K8% 3 +baste beIst H2% 16A,15B +basted 'beIstId Hc%,Hd% 26A,15B +bastes beIsts Ha% 16A,15B +bastinado ,b&stI'nAd@U H0$,Ki$ 46A +bastinadoed ,b&stI'nAd@Ud Hc$,Hd$ 46A +bastinadoes ,b&stI'nAd@Uz Kj$ 4 +bastinadoing ,b&stI'nAd@UIN Hb$ 56A +bastinados ,b&stI'nAd@Uz Ha$ 46A +basting 'beIstIN Hb% 26A,15B +bastion 'b&stI@n K6% 3 +bastions 'b&stI@nz Kj% 3 +bat b&t J4%,K6% 12A,2B,2C,6A +batch b&tS K7% 1 +batches 'b&tSIz Kj% 2 +bate beIt H2$ 1 +bated 'beItId Hc$,Hd% 2 +bates beIts Ha$ 1 +bath bAT J0%,K6% 12A,6A +bathe beID J2%,K6% 12A,6A +bathed bATt Jc%,Jd% 12A,6A +bathed beIDd Jc%,Jd% 12A,6A +bather 'beID@R K6% 2 +bathers 'beID@z Kj% 2 +bathes beIDz Ja%,Kj% 12A,6A +bathing 'bATIN Jb% 22A,6A +bathing 'beIDIN Jb%,K6% 22A,6A +bathing-cap 'beIDIN-k&p K6% 3 +bathing-caps 'beIDIN-k&ps Kj% 3 +bathing-costume 'beIDIN-k0stjum K6% 4 +bathing-costumes 'beIDIN-k0stjumz Kj% 4 +bathing-machine 'beIDIN-m@Sin K6% 4 +bathing-machines 'beIDIN-m@Sinz Kj% 4 +bathing-suit 'beIDIN-sut K6% 3 +bathing-suits 'beIDIN-suts Kj% 3 +bathings 'beIDINz Kj% 2 +bathos 'beIT0s L@% 2 +bathrobe 'bATr@Ub K6% 2 +bathrobes 'bATr@Ubz Kj% 2 +bathroom 'bATrum K6% 2 +bathrooms 'bATrumz Kj% 2 +baths bADz Kj% 1 +baths bATs Ja% 12A,6A +bathtub 'bATtVb K6% 2 +bathtubs 'bATtVbz Kj% 2 +bathysphere 'b&TIsfI@R K6% 3 +bathyspheres 'b&TIsfI@z Kj% 3 +batik b@'tik M6% 2 +batiks b@'tiks Mj$ 2 +bating 'beItIN Hb% 2 +batiste b&'tist L@$ 2 +batman 'b&tm@n Ki% 2 +batmen 'b&tm@n Kj% 2 +baton 'b&t@n K6% 2 +batons 'b&t@nz Kj% 2 +bats b&ts Ja%,Kj%,Op% 12A,2B,2C,6A +batsman 'b&tsm@n Ki% 2 +batsmen 'b&tsm@n Kj% 2 +battalion b@'t&lI@n K6% 4 +battalions b@'t&lI@nz Kj% 4 +batted 'b&tId Jc%,Jd% 22A,2B,2C,6A +batten 'b&tn J0%,K6% 23A,6A,15B +battened 'b&tnd Jc%,Jd% 23A,6A,15B +battening 'b&tnIN Jb% 23A,6A,15B +battens 'b&tnz Ja%,Kj% 23A,6A,15B +batter 'b&t@R J0%,L@% 22C,6A,15A,15B +battered 'b&t@d Jc%,Jd% 22C,6A,15A,15B +batteries 'b&t@rIz Kj% 3 +battering 'b&t@rIN Jb% 32C,6A,15A,15B +batters 'b&t@z Ja% 22C,6A,15A,15B +battery 'b&t@rI K8% 3 +batting 'b&tIN Jb%,L@% 22A,2B,2C,6A +battle 'b&tl I2%,M6% 23A +battle-axe 'b&tl-&ks K6% 3 +battle-axes 'b&tl-&ksIz Kj% 4 +battle-cruiser 'b&tl-kruz@R K6% 4 +battle-cruisers 'b&tl-kruz@z Kj% 4 +battled 'b&tld Ic%,Id% 23A +battledore 'b&tldOR K6$ 3 +battledores 'b&tldOz Kj$ 3 +battledress 'b&tldres Ki% 3 +battlefield 'b&tlfild K6% 3 +battlefields 'b&tlfildz Kj% 3 +battleground 'b&tlgraUnd K6% 3 +battlegrounds 'b&tlgraUndz Kj% 3 +battlements 'b&tlm@nts Kj% 3 +battles 'b&tlz Ia%,Mj% 23A +battleship 'b&tlSIp K6% 3 +battleships 'b&tlSIps Kj% 3 +battling 'b&tlIN Ib% 23A +battue b&'tu K6$ 2 +battues b&'tuz Kj$ 2 +batty 'b&tI OA% 2 +bauble 'bObl K6% 2 +baubles 'bOblz Kj% 2 +baulk bOk J0%,K6% 12A,3A,6A,14 +baulked bOkt Jc%,Jd% 12A,3A,6A,14 +baulking 'bOkIN Jb% 22A,3A,6A,14 +baulks bOks Ja%,Kj% 12A,3A,6A,14 +bauxite 'bOksaIt L@% 2 +bawbee 'bObi K6$ 2 +bawbees 'bObiz Kj$ 2 +bawd bOd K6% 1 +bawdier 'bOdI@R Or% 3 +bawdiest 'bOdIIst Os% 3 +bawdily 'bOdIlI Pu% 3 +bawds bOdz Kj% 1 +bawdy 'bOdI L@$,OD% 2 +bawl bOl J0% 12C,3A,6A,15A +bawled bOld Jc%,Jd% 12C,3A,6A,15A +bawling 'bOlIN Jb% 22C,3A,6A,15A +bawls bOlz Ja% 12C,3A,6A,15A +bay beI I0%,K6%,OA% 12A +bay-wreath 'beI-riT K6$ 2 +bay-wreaths 'beI-riTs Kj$ 2 +bayed beId Ic%,Id% 12A +baying 'beIIN Ib% 22A +bayonet 'beI@net H0%,K6% 36A +bayoneted 'beI@netId Hc%,Hd% 46A +bayoneting 'beI@netIN Hb% 46A +bayonets 'beI@nets Ha%,Kj% 36A +bayou 'baIu K6$ 2 +bayous 'baIuz Kj$ 2 +bays beIz Ia%,Kj% 12A +bazaar b@'zAR K6% 2 +bazaars b@'zAz Kj% 2 +bazooka b@'zuk@ K6% 3 +bazookas b@'zuk@z Kj% 3 +be bi G5*,I5% 11,4F +be- bI- U-% 1 +beach bitS H1%,K7% 16A +beachcomber 'bitSk@Um@R K6% 3 +beachcombers 'bitSk@Um@z Kj% 3 +beached bitSt Hc%,Hd% 16A +beaches 'bitSIz Ha%,Kj% 26A +beachhead 'bitShed K6% 2 +beachheads 'bitShedz Kj% 2 +beaching 'bitSIN Hb% 26A +beachwear 'bitSwe@R L@% 2 +beacon 'bik@n K6% 2 +beacon-fire 'bik@n-faI@R K6$ 3 +beacon-fires 'bik@n-faI@z Kj$ 3 +beacon-light 'bik@n-laIt K6$ 3 +beacon-lights 'bik@n-laIts Kj$ 3 +beacons 'bik@nz Kj% 2 +bead bid K6% 1 +beading 'bidIN L@% 2 +beadle 'bidl K6% 2 +beadles 'bidlz Kj% 2 +beads bidz Kj% 1 +beady 'bidI OA% 2 +beagle 'bigl K6% 2 +beagles 'biglz Kj% 2 +beagling 'biglIN L@$ 2 +beak bik K6% 1 +beaker 'bik@R K6% 2 +beakers 'bik@z Kj% 2 +beaks biks Kj% 1 +beam bim J0%,K6% 12C,6A,15A +beamed bimd Jc%,Jd% 12C,6A,15A +beaming 'bimIN Jb% 22C,6A,15A +beams bimz Ja%,Kj% 12C,6A,15A +bean bin K6% 1 +beanfeast 'binfist K6% 2 +beanfeasts 'binfists Kj% 2 +beano 'bin@U K6% 2 +beanos 'bin@Uz Kj% 2 +beans binz Kj% 1 +beanstalk 'binstOk K6% 2 +beanstalks 'binstOks Kj% 2 +bear be@R J5%,K6% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +bearable 'be@r@bl OA% 3 +beard bI@d H0%,K6% 16A +bearded 'bI@dId Hc%,Hd%,OA% 26A +bearding 'bI@dIN Hb% 26A +beardless 'bI@dl@s OA% 2 +beards bI@dz Ha%,Kj% 16A +bearer 'be@r@R K6% 2 +bearers 'be@r@z Kj% 2 +bearing 'be@rIN Jb%,M6% 22A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +bearings 'be@rINz Mj% 2 +bearish 'be@rIS OA% 2 +bears be@z Ja%,Kj% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +bearskin 'be@skIn K6% 2 +bearskins 'be@skInz Kj% 2 +beast bist K6% 1 +beastlier 'bistlI@R Or% 3 +beastliest 'bistlIIst Os% 3 +beastliness 'bistlIn@s L@% 3 +beastly 'bistlI OD%,Pu% 2 +beasts bists Kj% 1 +beat bit J5%,Jc%,K6%,Oq% 12A,2C,6A,14,15A,15B,22 +beaten 'bitn Jd%,OA% 22A,2C,6A,14,15A,15B,22 +beater 'bit@R K6% 2 +beaters 'bit@z Kj% 2 +beatific bI@'tIfIk OA% 4 +beatification bI,&tIfI'keISn K6% 6 +beatifications bI,&tIfI'keISnz Kj$ 6 +beatified bI'&tIfaId Hc%,Hd% 46A +beatifies bI'&tIfaIz Ha% 46A +beatify bI'&tIfaI H3% 46A +beatifying bI'&tIfaIIN Hb% 56A +beating 'bitIN Jb%,K6% 22A,2C,6A,14,15A,15B,22 +beatings 'bitINz Kj% 2 +beatitude bI'&tItjud M6% 4 +beatitudes bI'&tItjudz Mj% 4 +beatnik 'bitnIk K6% 2 +beatniks 'bitnIks Kj% 2 +beats bits Ja%,Kj% 12A,2C,6A,14,15A,15B,22 +beau b@U Ki% 1 +beauteous 'bjutI@s OA% 3 +beautician bju'tISn K6% 3 +beauticians bju'tISnz Kj% 3 +beauties 'bjutIz Mj% 2 +beautified 'bjutIfaId Hc%,Hd% 36A +beautifies 'bjutIfaIz Ha% 36A +beautiful 'bjutIf@l OA% 3 +beautifully 'bjut@f@lI Pu% 4 +beautify 'bjutIfaI H3% 36A +beautifying 'bjutIfaIIN Hb% 46A +beauty 'bjutI M8% 2 +beauty-parlour 'bjutI-pAl@R K6% 4 +beauty-parlours 'bjutI-pAl@z Kj% 4 +beauty-salon 'bjutI-s&l0n K6% 4 +beauty-salons 'bjutI-s&l0nz Kj% 4 +beauty-sleep 'bjutI-slip L@% 3 +beauty-spot 'bjutI-sp0t K6% 3 +beauty-spots 'bjutI-sp0ts Kj% 3 +beaux b@Uz Kj$ 1 +beaver 'biv@R I0%,M6% 22A,2C +beavered 'biv@d Ic%,Id% 22A,2C +beavering 'biv@rIN Ib% 32A,2C +beavers 'biv@z Ia%,Mj% 22A,2C +becalmed bI'kAmd Op% 2 +became bI'keIm Jc* 22D,3A,6A +because bI'k0z V-* 2 +beck bek K6% 1 +beckon 'bek@n J0% 22A,6A,15B,16A +beckoned 'bek@nd Jc%,Jd% 22A,6A,15B,16A +beckoning 'bek@nIN Jb% 32A,6A,15B,16A +beckons 'bek@nz Ja% 22A,6A,15B,16A +becks beks Kj% 1 +become bI'kVm J5*,Jd* 22D,3A,6A +becomes bI'kVmz Ja% 22D,3A,6A +becoming bI'kVmIN Jb%,OA% 32D,3A,6A +becomingly bI'kVmINlI Pu% 4 +bed bed H4%,K6% 16A,15A,15B +bedaubed bI'dObd Op% 2 +bedbug 'bedbVg K6% 2 +bedbugs 'bedbVgz Kj% 2 +bedclothes 'bedkl@UDz Kj% 2 +bedded 'bedId Hc%,Hd%,Ot% 26A,15A,15B +bedding 'bedIN Hb%,L@% 26A,15A,15B +bedecked bI'dekt Op% 2 +bedevil bI'devl H4% 3 +bedevilled bI'devld Hc%,Hd% 3 +bedevilling bI'dev@lIN Hb$ 4 +bedevilment bI'devlm@nt K6$ 4 +bedevilments bI'devlm@nts Kj$ 4 +bedevils bI'devlz Ha$ 3 +bedewed bI'djud Op% 2 +bedfellow 'bedfel@U K6% 3 +bedfellows 'bedfel@Uz Kj% 3 +bedimmed bI'dImd Op$ 2 +bedlam 'bedl@m K6% 2 +bedlams 'bedl@mz Kj$ 2 +bedpan 'bedp&n K6% 2 +bedpans 'bedp&nz Kj% 2 +bedpost 'bedp@Ust K6% 2 +bedposts 'bedp@Usts Kj% 2 +bedraggled bI'dr&gld Op% 3 +bedridden 'bedrIdn OA% 3 +bedrock 'bedr0k K6% 2 +bedrocks 'bedr0ks Kj$ 2 +bedroll 'bedr@Ul K6% 2 +bedrolls 'bedr@Ulz Kj% 2 +bedroom 'bedrum K6% 2 +bedroomed 'bedrumd OA% 2 +bedrooms 'bedrumz Kj% 2 +beds bedz Ha%,Kj% 16A,15A,15B +bedside 'bedsaId K6% 2 +bedsides 'bedsaIdz Kj$ 2 +bedsit 'bedsIt K6% 2 +bedsits 'bedsIts Kj% 2 +bedsitter bed'sIt@R K6% 3 +bedsitters bed'sIt@z Kj% 3 +bedsitting-room bed'sItIN-rum K6% 4 +bedsitting-rooms bed'sItIN-rumz Kj% 4 +bedsore 'bedsOR K6% 2 +bedsores 'bedsOz Kj% 2 +bedspread 'bedspred K6% 2 +bedspreads 'bedspredz Kj% 2 +bedstead 'bedsted K6% 2 +bedsteads 'bedstedz Kj% 2 +bedtime 'bedtaIm K6% 2 +bedtimes 'bedtaImz Kj% 2 +bee bi K6% 1 +beech bitS M7% 1 +beeches 'bitSIz Mj% 2 +beef bif I0%,Mi% 1 +beefeater 'bifit@R K6% 3 +beefeaters 'bifit@z Kj% 3 +beefed bift Ic%,Id% 1 +beefier 'bifI@R Or% 3 +beefiest 'bifIIst Os% 3 +beefing 'bifIN Ib% 2 +beefs bifs Ia% 1 +beefsteak 'bifsteIk K6% 2 +beefsteaks 'bifsteIks Kj% 2 +beefy 'bifI OD% 2 +beehive 'bihaIv K6% 2 +beehives 'bihaIvz Kj% 2 +been bin Gd*,Id% 11 +beep bip K6% 1 +beeps bips Kj% 1 +beer bI@R M6% 1 +beerier 'bI@rI@R Or$ 3 +beeriest 'bI@rIIst Os$ 3 +beers bI@z Mj% 1 +beery 'bI@rI OD% 2 +bees biz Kj% 1 +beeswax 'bizw&ks H1$,L@% 2 +beeswaxed 'bizw&kst Hc$,Hd$ 2 +beeswaxes 'bizw&ksIz Ha$ 3 +beeswaxing 'bizw&ksIN Hb$ 3 +beet bit K6% 1 +beetle 'bitl I2%,K6% 22A +beetle-browed 'bitl-braUd OA% 3 +beetled 'bitld Ic%,Id% 22A +beetles 'bitlz Ia%,Kj% 22A +beetling 'bitlIN Ib% 22A +beetroot 'bitrut K6% 2 +beetroots 'bitruts Kj% 2 +beets bits Kj% 1 +beeves bivz Kj$ 1 +befall bI'fOl J5% 26A +befallen bI'fOl@n Jd% 36A +befalling bI'fOlIN Jb$ 36A +befalls bI'fOlz Ja% 26A +befell bI'fel Jc% 26A +befit bI'fIt H4% 26A +befits bI'fIts Ha% 26A +befitted bI'fItId Hc%,Hd% 36A +befitting bI'fItIN Hb%,OA% 36A +befittingly bI'fItINlI Pu% 4 +befogged bI'f0gd Op$ 2 +before bI'fOR Pu*,T-%,V-* 2 +beforehand bI'fOh&nd Op%,Pu% 3 +befoul bI'faUl H0% 2 +befouled bI'faUld Hc%,Hd% 2 +befouling bI'faUlIN Hb% 3 +befouls bI'faUlz Ha% 2 +befriend bI'frend H0% 26A +befriended bI'frendId Hc%,Hd% 36A +befriending bI'frendIN Hb% 36A +befriends bI'frendz Ha% 26A +beg beg J4% 12A,2C,3A,6A,7A,9,14,17 +begad bI'g&d W-$ 2 +began bI'g&n Jc* 22A,3A,6A,6D,7A +begat bI'g&t Hc$ 26A +beget bI'get H5% 26A +begets bI'gets Ha% 26A +begetter bI'get@R K6% 3 +begetters bI'get@z Kj% 3 +beggar 'beg@R H0%,K6% 26A +beggared 'beg@d Hc%,Hd% 26A +beggaring 'beg@rIN Hb% 36A +beggarly 'beg@lI OA% 3 +beggarman 'beg@m&n Ki% 3 +beggarmen 'beg@men Kj% 3 +beggars 'beg@z Ha%,Kj% 26A +beggarwoman 'beg@wUm@n Ki% 4 +beggarwomen 'beg@wImIn Kj% 4 +beggary 'beg@rI L@% 3 +begged begd Jc%,Jd% 12A,2C,3A,6A,7A,9,14,17 +begging 'begIN Jb% 22A,2C,3A,6A,7A,9,14,17 +begin bI'gIn J5% 22A,3A,6A,6D,7A +beginner bI'gIn@R K6% 3 +beginners bI'gIn@z Kj% 3 +beginning bI'gInIN Jb%,K6% 32A,3A,6A,6D,7A +beginnings bI'gInINz Kj% 3 +begins bI'gInz Ja% 22A,3A,6A,6D,7A +begone bI'g0n Z-% 2 +begonia bI'g@UnI@ K6% 4 +begonias bI'g@UnI@z Kj% 4 +begorra bI'g0r@ W-% 3 +begot bI'g0t Hc% 26A +begotten bI'g0tn Hd% 36A +begrimed bI'graImd Op$ 2 +begrudge bI'grVdZ H2% 26C,12A,13A +begrudged bI'grVdZd Hc%,Hd% 26C,12A,13A +begrudges bI'grVdZIz Ha% 36C,12A,13A +begrudging bI'grVdZIN Hb% 36C,12A,13A +begs begz Ja% 12A,2C,3A,6A,7A,9,14,17 +beguile bI'gaIl H2% 26A,14 +beguiled bI'gaIld Hc%,Hd% 26A,14 +beguiles bI'gaIlz Ha% 26A,14 +beguiling bI'gaIlIN Hb% 36A,14 +begum 'beIg@m K6$ 2 +begums 'beIg@mz Kj$ 2 +begun bI'gVn Jd% 22A,3A,6A,6D,7A +behalf bI'hAf Ki% 2 +behalves bI'hAvz Kj$ 2 +behave bI'heIv I2% 22A,2C,6B +behaved bI'heIvd Ic%,Id%,Ot% 22A,2C,6B +behaves bI'heIvz Ia% 22A,2C,6B +behaving bI'heIvIN Ib% 32A,2C,6B +behaviour bI'heIvI@R L@% 3 +behaviourism bI'heIvI@rIz@m L@% 5 +behaviourist bI'heIvI@rIst K6% 4 +behaviourists bI'heIvI@rIsts Kj% 4 +behead bI'hed H0% 26A +beheaded bI'hedId Hc%,Hd% 36A +beheading bI'hedIN Hb% 36A +beheads bI'hedz Ha% 26A +beheld bI'held Hc%,Hd% 26A +behest bI'hest K6% 2 +behests bI'hests Kj$ 2 +behind bI'haInd K6%,Pu*,T-* 2 +behindhand bI'haIndh&nd Op% 3 +behinds bI'haIndz Kj% 2 +behold bI'h@Uld H5% 26A +beholden bI'h@Uld@n Op% 3 +beholder bI'h@Uld@R K6% 3 +beholders bI'h@Uld@z Kj% 3 +beholding bI'h@UldIN Hb% 36A +beholds bI'h@Uldz Ha% 26A +behove bI'h@Uv H2% 2 +behoved bI'h@Uvd Hc%,Hd% 2 +behoves bI'h@Uvz Ha% 2 +behoving bI'h@UvIN Hb% 3 +beige beIZ L@% 1 +being 'biIN Gb*,Ib%,M6% 21 +beings 'biINz Mj% 2 +bejewelled bI'dZu@ld OA% 3 +belabour bI'leIb@R H0% 36A +belaboured bI'leIb@d Hc%,Hd% 36A +belabouring bI'leIb@rIN Hb% 46A +belabours bI'leIb@z Ha% 36A +belated bI'leItId OA% 3 +belatedly bI'leItIdlI Pu% 4 +belay bI'leI H0$,K6$ 26A +belayed bI'leId Hc$,Hd$ 26A +belaying bI'leIIN Hb$ 36A +belaying-pin bI'leIIN-pIn K6$ 4 +belaying-pins bI'leIIN-pInz Kj$ 4 +belays bI'leIz Ha$,Kj$ 26A +belch beltS J1%,K7% 12A,6A,15B +belched beltSt Jc%,Jd% 12A,6A,15B +belches 'beltSIz Ja%,Kj% 22A,6A,15B +belching 'beltSIN Jb% 22A,6A,15B +beldam 'beld@m K6$ 2 +beldame 'beld@m K6$ 2 +beldames 'beld@mz Kj$ 2 +beldams 'beld@mz Kj$ 2 +beleaguer bI'lig@R H0$ 36A +beleaguered bI'lig@d Hc$,Hd% 36A +beleaguering bI'lig@rIN Hb$ 46A +beleaguers bI'lig@z Ha$ 36A +belfries 'belfrIz Kj% 2 +belfry 'belfrI K8% 2 +belie bI'laI H5% 26A +belied bI'laId Hc%,Hd% 26A +belief bI'lif M6% 2 +beliefs bI'lifs Mj% 2 +belies bI'laIz Ha% 26A +believable bI'liv@bl OA% 4 +believe bI'liv J2* 23A,6A,9,10,25 +believed bI'livd Jc%,Jd% 23A,6A,9,10,25 +believer bI'liv@R K6% 3 +believers bI'liv@z Kj% 3 +believes bI'livz Ja% 23A,6A,9,10,25 +believing bI'livIN Jb%,L@% 33A,6A,9,10,25 +belike bI'laIk Pu% 2 +belittle bI'lItl H2% 36A +belittled bI'lItld Hc%,Hd% 36A +belittles bI'lItlz Ha% 36A +belittling bI'lItlIN Hb% 36A +bell bel H0$,K6% 1 +bell-bottomed 'bel-b0t@md OA% 3 +bell-bottoms 'bel-b0t@mz Kj% 3 +bell-buoy 'bel-boI K6$ 2 +bell-buoys 'bel-boIz Kj$ 2 +bell-flower 'bel-flaU@R K6% 3 +bell-flowers 'bel-flaU@z Kj% 3 +bell-founder 'bel-faUnd@R K6$ 3 +bell-founders 'bel-faUnd@z Kj$ 3 +bell-foundries 'bel-faUndrIz Kj% 3 +bell-foundry 'bel-faUndrI K8% 3 +bell-metal 'bel-metl L@$ 3 +bell-push 'bel-pUS K7% 2 +bell-pushes 'bel-pUSIz Kj% 3 +bell-ringer 'bel-rIN@R K6% 3 +bell-ringers 'bel-rIN@z Kj% 3 +bell-tent 'bel-tent K6% 2 +bell-tents 'bel-tents Kj% 2 +belladonna ,bel@'d0n@ M6% 4 +belladonnas ,bel@'d0n@z Mj$ 4 +bellboy 'belboI K6% 2 +bellboys 'belboIz Kj% 2 +belle bel K6% 1 +belled beld Hc$,Hd$ 1 +belles belz Kj% 1 +belles-lettres ,bel-'letr@ Kj% 3 +bellhop 'belh0p K6% 2 +bellhops 'belh0ps Kj% 2 +bellicose 'belIk@Us OA% 3 +bellied 'belId Jc%,Jd%,Ot% 22A,2C,6A,15B +bellies 'belIz Ja%,Kj% 22A,2C,6A,15B +belligerency bI'lIdZ@r@nsI L@% 5 +belligerent bI'lIdZ@r@nt K6$,OA% 4 +belligerently bI'lIdZ@r@ntlI Pu% 5 +belligerents bI'lIdZ@r@nts Kj$ 4 +belling 'belIN Hb$ 2 +bellow 'bel@U J0% 22A,6A,15B +bellowed 'bel@Ud Jc%,Jd% 22A,6A,15B +bellowing 'bel@UIN Jb% 32A,6A,15B +bellows 'bel@Uz Ja%,Kj% 22A,6A,15B +bells belz Ha%,Kj% 1 +bellwether 'belweD@R K6$ 3 +bellwethers 'belweD@z Kj$ 3 +belly 'belI J3$,K8% 22A,2C,6A,15B +bellyache 'belIeIk I2%,K6% 3 +bellyached 'belIeIkt Ic%,Id% 3 +bellyaches 'belIeIks Ia%,Kj% 3 +bellyaching 'belIeIkIN Ib% 4 +bellyflop 'belIfl0p K6% 3 +bellyflops 'belIfl0ps Kj% 3 +bellyful 'belIfUl K6% 3 +bellyfuls 'belIfUlz Kj% 3 +bellying 'belIIN Jb% 32A,2C,6A,15B +bellyland 'belIl&nd I0% 3 +bellylanded 'belIl&ndId Ic%,Id% 4 +bellylanding 'belIl&ndIN Ib% 4 +bellylands 'belIl&ndz Ia$ 3 +bellylaugh 'belIl&f I0$,K6% 3 +bellylaughed 'belIl&ft Ic$,Id$ 3 +bellylaughing 'belIl&fIN Ib$ 4 +bellylaughs 'belIl&fs Ia$,Kj% 3 +belong bI'l0N I0% 22C,3A +belonged bI'l0Nd Ic%,Id% 22C,3A +belonging bI'l0NIN Ib% 32C,3A +belongings bI'l0NINz Kj% 3 +belongs bI'l0Nz Ia% 22C,3A +beloved bI'lVvId K6%,OA% 3 +beloveds bI'lVvIdz Kj% 3 +below bI'l@U Pu%,T-% 2 +belt belt H0%,K6% 12C,3A,6A,15B +belted 'beltId Hc%,Hd% 22C,3A,6A,15B +belting 'beltIN Hb%,K6% 22C,3A,6A,15B +beltings 'beltINz Kj% 2 +belts belts Ha%,Kj% 12C,3A,6A,15B +belying bI'laIIN Hb% 36A +bemoan bI'm@Un H0% 26A +bemoaned bI'm@Und Hc%,Hd% 26A +bemoaning bI'm@UnIN Hb% 36A +bemoans bI'm@Unz Ha% 26A +bemused bI'mjuzd Op% 2 +ben ben K6$ 1 +bench bentS K7% 1 +benches 'bentSIz Kj% 2 +bend bend J0%,K6% 12A,2C,6A,15A,15B +bended 'bendId Jc%,Jd% 22A,2C,6A,15A,15B +bending 'bendIN Jb% 22A,2C,6A,15A,15B +bends bendz Ja%,Kj% 12A,2C,6A,15A,15B +beneath bI'niT Pu%,T-% 2 +benedick 'benIdIk K6% 3 +benedicks 'benIdIks Kj$ 3 +benediction ,benI'dIkSn K6$ 4 +benedictions ,benI'dIkSnz Kj% 4 +benefaction ,benI'f&kSn M6$ 4 +benefactions ,benI'f&kSnz Mj$ 4 +benefactor 'benIf&kt@R K6% 4 +benefactors 'benIf&kt@z Kj% 4 +benefactress 'benIf&ktrIs K7% 4 +benefactresses 'benIf&ktrIsIz Kj$ 5 +benefice 'benIfIs K6$ 3 +beneficed 'benIfIst OA$ 3 +beneficence bI'nefIsns L@% 4 +beneficent bI'nefIsnt OA% 4 +benefices 'benIfIsIz Kj$ 4 +beneficial ,benI'fISl OA% 4 +beneficially ,benI'fIS@lI Pu% 5 +beneficiaries ,benI'fIS@rIz Kj% 5 +beneficiary ,benI'fIS@rI K8% 5 +benefit 'benIfIt J0%,M6% 33A,6A +benefited 'benIfItId Jc%,Jd% 43A,6A +benefiting 'benIfItIN Jb% 43A,6A +benefits 'benIfIts Ja%,Mj% 33A,6A +benevolence bI'nev@l@ns L@% 4 +benevolent bI'nev@l@nt OA% 4 +benevolently bI'nev@l@ntlI Pu% 5 +benighted bI'naItId OA% 3 +benign bI'naIn OA% 2 +benignant bI'nIgn@nt OA$ 3 +benignantly bI'nIgn@ntlI Pu$ 4 +benignities bI'nIgnItIz Mj$ 4 +benignity bI'nIgnItI M8$ 4 +benignly bI'naInlI Pu% 3 +benison 'benIzn K6$ 3 +benisons 'benIznz Kj$ 3 +bens benz Kj$ 1 +bent bent Jc%,Jd%,K6%,Op% 12A,2C,6A,15A,15B +bents bents Kj$ 1 +benumbed bI'nVmd Op% 2 +benzene 'benzin L@% 2 +benzine 'benzin L@% 2 +benzol 'benz0l L@$ 2 +bequeath bI'kwiD H0% 26A,12A,13A +bequeathed bI'kwiDd Hc%,Hd% 26A,12A,13A +bequeathing bI'kwiDIN Hb% 36A,12A,13A +bequeaths bI'kwiDz Ha% 26A,12A,13A +bequest bI'kwest M6% 2 +bequests bI'kwests Mj% 2 +berate bI'reIt H2% 26A +berated bI'reItId Hc%,Hd% 36A +berates bI'reIts Ha% 26A +berating bI'reItIN Hb% 36A +bereave bI'riv H2% 214 +bereaved bI'rivd Hc%,Hd% 214 +bereavement bI'rivm@nt M6% 3 +bereavements bI'rivm@nts Mj% 3 +bereaves bI'rivz Ha% 214 +bereaving bI'rivIN Hb% 314 +bereft bI'reft Hc%,Hd% 214 +beret 'bereI K6% 2 +berets 'bereIz Kj% 2 +berg b3g K6$ 1 +bergs b3gz Kj$ 1 +beri-beri ,berI-'berI L@$ 4 +berries 'berIz Kj% 2 +berry 'berI K8% 2 +berserk b@'s3k Op% 2 +berth b3T J0%,K6% 12C,6A,15A +berthed b3Tt Jc%,Jd% 12C,6A,15A +berthing 'b3TIN Jb% 22C,6A,15A +berths b3Ts Ja%,Kj% 12C,6A,15A +beryl 'ber@l K6$ 2 +beryls 'ber@lz Kj$ 2 +beseech bI'sitS H1% 26A,11,13B,17 +beseeched bI'sitSt Hc%,Hd% 26A,11,13B,17 +beseeches bI'sitSIz Ha% 36A,11,13B,17 +beseeching bI'sitSIN Hb%,OA% 36A,11,13B,17 +beseechingly bI'sitSINlI Pu% 4 +beseem bI'sim H0$ 2 +beseemed bI'simd Hc$,Hd$ 2 +beseeming bI'simIN Hb$ 3 +beseems bI'simz Ha$ 2 +beset bI'set H5%,Hc%,Hd% 26A +besets bI'sets Ha% 26A +besetting bI'setIN Hb% 36A +beshrew bI'Sru H0$ 2 +beshrewed bI'Srud Hc$,Hd$ 2 +beshrewing bI'SruIN Hb$ 3 +beshrews bI'Sruz Ha$ 2 +beside bI'saId T-% 2 +besides bI'saIdz Pu%,T-% 2 +besiege bI'sidZ H2% 26A,14 +besieged bI'sidZd Hc%,Hd% 26A,14 +besieger bI'sidZ@R K6% 3 +besiegers bI'sidZ@z Kj% 3 +besieges bI'sidZIz Ha% 36A,14 +besieging bI'sidZIN Hb% 36A,14 +besmear bI'smI@R H0$ 2 +besmeared bI'smI@d Hc%,Hd% 2 +besmearing bI'smI@rIN Hb$ 3 +besmears bI'smI@z Ha$ 2 +besmirch bI'sm3tS H1$ 2 +besmirched bI'sm3tSt Hc%,Hd% 2 +besmirches bI'sm3tSIz Ha$ 3 +besmirching bI'sm3tSIN Hb$ 3 +besom 'biz@m K6$ 2 +besoms 'biz@mz Kj$ 2 +besotted bI's0tId OA% 3 +besought bI'sOt Hc%,Hd% 26A,11,13B,17 +bespangled bI'sp&Ngld Op% 3 +bespattered bI'sp&t@d Op% 3 +bespeak bI'spik H5$ 26A,25 +bespeaking bI'spikIN Hb$ 36A,25 +bespeaks bI'spiks Ha$ 26A,25 +bespectacled bI'spekt@k@ld OA% 4 +bespoke bI'sp@Uk Hc%,Hd% 26A,25 +bespoken bI'sp@Uk@n Hd$ 36A,25 +best best H0$,Os*,Pu*,Qx% 16A +best-seller best-'sel@R K6% 3 +best-sellers best-'sel@z Kj% 3 +bested 'bestId Hc%,Hd% 26A +bestial 'bestI@l OA% 3 +bestialities ,bestI'&lItIz Mj$ 5 +bestiality ,bestI'&lItI M8% 5 +bestially 'bestI@lI Pu% 4 +bestiaries 'bestI@rIz Kj% 4 +bestiary 'bestI@rI K8% 4 +besting 'bestIN Hb% 26A +bestir bI'st3R H4% 26A,17 +bestirred bI'st3d Hc%,Hd% 26A,17 +bestirring bI'st3rIN Hb% 36A,17 +bestirs bI'st3z Ha% 26A,17 +bestow bI'st@U H0% 26A,14 +bestowal bI'st@U@l K6$ 3 +bestowals bI'st@U@lz Kj$ 3 +bestowed bI'st@Ud Hc%,Hd% 26A,14 +bestowing bI'st@UIN Hb% 36A,14 +bestows bI'st@Uz Ha% 26A,14 +bestrew bI'stru H0% 26A,14 +bestrewed bI'strud Hc%,Hd% 26A,14 +bestrewing bI'struIN Hb% 36A,14 +bestrewn bI'strun Hd% 26A,14 +bestrews bI'struz Ha% 26A,14 +bestrid bI'strId Hd$ 26A +bestridden bI'strIdn Hd$ 36A +bestride bI'straId H5% 26A +bestrides bI'straIdz Ha% 26A +bestriding bI'straIdIN Hb% 36A +bestrode bI'str@Ud Hc$ 26A +bests bests Ha% 16A +bet bet J4%,Jc%,Jd%,K6% 12A,3A,9,11,12C +beta 'bit@ K6% 2 +betake bI'teIk H5$ 214 +betaken bI'teIk@n Hd$ 314 +betakes bI'teIks Ha$ 214 +betaking bI'teIkIN Hb$ 314 +betas 'bit@z Kj$ 2 +betel 'bitl K6$ 2 +betel-nut 'bitl-nVt K6% 3 +betel-nuts 'bitl-nVts Kj% 3 +betels 'bitlz Kj$ 2 +bethel 'beTl K6$ 2 +bethels 'beTlz Kj$ 2 +bethink bI'TINk H5$ 211,14,17,20,21 +bethinking bI'TINkIN Hb$ 311,14,17,20,21 +bethinks bI'TINks Ha$ 211,14,17,20,21 +bethought bI'TOt Hc%,Hd% 211,14,17,20,21 +betide bI'taId H2% 2 +betided bI'taIdId Hc$,Hd$ 3 +betides bI'taIdz Ha$ 2 +betiding bI'taIdIN Hb$ 3 +betimes bI'taImz Pu% 2 +betoken bI't@Uk@n H0% 36A +betokened bI't@Uk@nd Hc%,Hd% 36A +betokening bI't@Uk@nIN Hb$ 46A +betokens bI't@Uk@nz Ha% 36A +betook bI'tUk Hc% 214 +betray bI'treI H0% 26A,14,25 +betrayal bI'treI@l M6% 3 +betrayals bI'treI@lz Mj% 3 +betrayed bI'treId Hc%,Hd% 26A,14,25 +betrayer bI'treI@R K6% 3 +betrayers bI'treI@z Kj% 3 +betraying bI'treIIN Hb% 36A,14,25 +betrays bI'treIz Ha% 26A,14,25 +betroth bI'tr@UD H0$ 26A,14 +betrothal bI'tr@UD@l K6% 3 +betrothals bI'tr@UD@lz Kj$ 3 +betrothed bI'tr@UDd Hc$,Hd%,K6% 26A,14 +betrotheds bI'tr@UDdz Kj$ 2 +betrothing bI'tr@UDIN Hb$ 36A,14 +betroths bI'tr@UDz Ha$ 26A,14 +bets bets Ja%,Kj% 12A,3A,9,11,12C +betted 'betId Jc%,Jd% 22A,3A,9,11,12C +better 'bet@R H0%,K6%,Or*,Pu* 26A +bettered 'bet@d Hc%,Hd% 26A +bettering 'bet@rIN Hb% 36A +betterment 'bet@m@nt L@% 3 +betters 'bet@z Ha%,Kj% 26A +betting 'betIN Jb% 22A,3A,9,11,12C +bettor 'bet@R K6$ 2 +bettors 'bet@z Kj$ 2 +between bI'twin Pu*,T-* 2 +betwixt bI'twIkst Pu%,T-% 2 +bevel 'bevl H4%,K6% 2 +bevelled 'bevld Hc%,Hd% 2 +bevelling 'bev@lIN Hb% 3 +bevels 'bevlz Ha%,Kj% 2 +beverage 'bev@rIdZ K6% 3 +beverages 'bev@rIdZIz Kj% 4 +bevies 'bevIz Kj$ 2 +bevy 'bevI K8% 2 +bewail bI'weIl H0% 26A +bewailed bI'weIld Hc%,Hd% 26A +bewailing bI'weIlIN Hb% 36A +bewails bI'weIlz Ha% 26A +beware bI'we@R J5% 22A,3A,10 +bewilder bI'wIld@R H0% 36A +bewildered bI'wIld@d Hc%,Hd% 36A +bewildering bI'wIld@rIN Hb%,OA% 46A +bewilderment bI'wIld@m@nt L@% 4 +bewilders bI'wIld@z Ha% 36A +bewitch bI'wItS H1% 26A +bewitched bI'wItSt Hc%,Hd% 26A +bewitches bI'wItSIz Ha% 36A +bewitching bI'wItSIN Hb%,OA% 36A +bewitchingly bI'wItSINlI Pu% 4 +bey beI K6$ 1 +beyond bI'j0nd Pu%,T-% 2 +beys beIz Kj$ 1 +bezique b@'zik L@$ 2 +bhang b&N K6$ 1 +bhangs b&Nz Kj$ 1 +bi- ,baI- U-% 1 +bias 'baI@s H1%,K7% 26A,14 +biased 'baI@st Hc%,Hd% 26A,14 +biases 'baI@sIz Ha%,Kj% 36A,14 +biasing 'baI@sIN Hb% 36A,14 +biassed 'baI@st Hc%,Hd% 26A,14 +bib bIb I4$,K6% 1 +bibbed bIbd Ic$,Id$ 1 +bibbing 'bIbIN Ib$ 2 +biblical 'bIblIkl OA% 3 +bibliographer ,bIblI'0gr@f@R K6% 5 +bibliographers ,bIblI'0gr@f@z Kj% 5 +bibliographies ,bIblI'0gr@fIz Mj% 5 +bibliography ,bIblI'0gr@fI M8% 5 +bibliophile 'bIblI@faIl K6% 4 +bibliophiles 'bIblI@faIlz Kj% 4 +bibs bIbz Ia%,Kj% 1 +bibulous 'bIbjUl@s OA$ 3 +bicameral ,baI'k&m@r@l OA$ 4 +bicarbonate ,baI'kAb@n@t L@% 4 +bicentenaries ,baIsen'tin@rIz Kj% 5 +bicentenary ,baIsen'tin@rI K8% 5 +bicentennial ,baIsen'tenI@l K6%,OA% 5 +bicentennials ,baIsen'tenI@lz Kj% 5 +biceps 'baIseps K9% 2 +bicker 'bIk@R I0% 22A,2C,3A +bickered 'bIk@d Ic%,Id% 22A,2C,3A +bickering 'bIk@rIN Ib% 32A,2C,3A +bickers 'bIk@z Ia% 22A,2C,3A +bicycle 'baIsIkl I2%,K6% 32A,2C +bicycled 'baIsIkld Ic%,Id% 32A,2C +bicycles 'baIsIklz Ia%,Kj% 32A,2C +bicycling 'baIsIklIN Ib% 32A,2C +bid bId J5%,Jc%,Jd%,K6% 12A,3A,6A,12A,13A,14,15B,17,18B +biddable 'bId@bl OA% 3 +bidden 'bIdn Jd% 212A,13A,17,18B +bidder 'bId@R K6% 2 +bidders 'bId@z Kj% 2 +bidding 'bIdIN Jb%,L@% 22A,3A,6A,12A,13A,14,15B,17,18B +bide baId H2% 1 +bided 'baIdId Hc%,Hd% 2 +bides baIdz Ha% 1 +bidet 'bideI K6% 2 +bidets 'bideIz Kj% 2 +biding 'baIdIN Hb% 2 +bids bIdz Ja%,Kj% 12A,3A,6A,12A,13A,14,15B,17,18B +biennial baI'enI@l K6%,OA% 4 +biennially baI'enI@lI Pu% 5 +biennials baI'enI@lz Kj% 3 +bier bI@R K6% 1 +biers bI@z Kj% 1 +biff bIf H0%,K6% 1 +biffed bIft Hc%,Hd% 1 +biffing 'bIfIN Hb% 2 +biffs bIfs Ha%,Kj% 1 +bifocal ,baI'f@Ukl OA% 3 +bifocals ,baI'f@Uklz Kj% 3 +bifurcate 'baIf@keIt J2%,OA$ 32A,6A +bifurcated 'baIf@keItId Jc%,Jd%,OA% 42A,6A +bifurcates 'baIf@keIts Ja% 32A,6A +bifurcating 'baIf@keItIN Jb% 42A,6A +bifurcation ,baIf@'keISn K6% 4 +bifurcations ,baIf@'keISnz Kj$ 4 +big bIg OE% 1 +big-boned bIg-'b@Und OA% 2 +bigamist 'bIg@mIst K6% 3 +bigamists 'bIg@mIsts Kj% 3 +bigamous 'bIg@m@s OA% 3 +bigamy 'bIg@mI L@% 3 +bigger 'bIg@R Or% 2 +biggest 'bIgIst Os% 2 +bight baIt K6$ 1 +bights baIts Kj$ 1 +bigot 'bIg@t K6% 2 +bigoted 'bIg@tId OA% 3 +bigotries 'bIg@trIz Mj$ 3 +bigotry 'bIg@trI M8% 3 +bigots 'bIg@ts Kj% 2 +bigwig 'bIgwIg K6% 2 +bigwigs 'bIgwIgz Kj% 2 +bijou 'biZu Ki$,OA% 2 +bike baIk I2%,K6% 1 +biked baIkt Ic%,Id% 1 +bikes baIks Ia%,Kj% 1 +biking 'baIkIN Ib% 2 +bikini bI'kinI K6% 3 +bikinis bI'kinIz Kj% 3 +bilabial ,baI'leIbI@l K6$,OA$ 4 +bilabials ,baI'leIbI@lz Kj$ 4 +bilateral ,baI'l&t@r@l OA% 4 +bilateralism ,baI'l&tr@lIz@m M6% 5 +bilateralisms ,baI'l&tr@lIz@mz Mj$ 5 +bilaterally ,baI'l&t@r@lI Pu% 5 +bilberries 'bIlb@rIz Kj% 3 +bilberry 'bIlb@rI K8% 3 +bile baIl L@% 1 +bile-duct 'baIl-dVkt K6% 2 +bile-ducts 'baIl-dVkts Kj% 2 +bilge bIldZ L@% 1 +bilge-water 'bIldZ-wOt@R L@% 3 +bilharzia ,bIl'hAzI@ L@% 4 +bilingual baI'lINgw@l K6%,OA% 3 +bilinguals baI'lINgw@lz Kj$ 3 +bilious 'bIlI@s OA% 3 +biliousness 'bIlI@sn@s L@% 4 +bilk bIlk H0% 16A,14 +bilked bIlkt Hc%,Hd% 16A,14 +bilking 'bIlkIN Hb% 26A,14 +bilks bIlks Ha% 16A,14 +bill bIl J0%,K6% 16A,14 +bill-poster 'bIl-p@Ust@R K6% 3 +bill-posters 'bIl-p@Ust@z Kj% 3 +bill-sticker 'bIl-stIk@R K6% 3 +bill-stickers 'bIl-stIk@z Kj% 3 +billboard 'bIlbOd K6% 2 +billboards 'bIlbOdz Kj% 2 +billed bIld Jc%,Jd% 16A,14 +billet 'bIlIt H0%,K6% 26A,14 +billet-doux ,bIleI-'du Ki% 3 +billeted 'bIlItId Hc%,Hd% 36A,14 +billeting 'bIlItIN Hb% 36A,14 +billets 'bIlIts Ha%,Kj% 26A,14 +billets-doux ,bIleI-'du Kj% 3 +billfold 'bIlf@Uld K6$ 2 +billfolds 'bIlf@Uldz Kj$ 2 +billhook 'bIlhUk K6% 2 +billhooks 'bIlhUks Kj% 2 +billiard-marker 'bIlI@d-mAk@R K6$ 5 +billiard-markers 'bIlI@d-mAk@z Kj$ 5 +billiard-player 'bIlI@d-pleI@R K6% 5 +billiard-players 'bIlI@d-pleI@z Kj% 5 +billiard-room 'bIlI@d-rum K6% 4 +billiard-rooms 'bIlI@d-rumz Kj% 4 +billiard-table 'bIlI@d-teIbl K6% 5 +billiard-tables 'bIlI@d-teIblz Kj% 5 +billiards 'bIlI@dz Lk% 3 +billies 'bIlIz Kj$ 2 +billing 'bIlIN Jb% 26A,14 +billingsgate 'bIlINzgeIt L@$ 3 +billion 'bIlI@N K6%,OA% 3 +billions 'bIlI@Nz Kj% 3 +billionth 'bIlI@nT K6%,OA% 3 +billionths 'bIlI@nTs Kj% 3 +billow 'bIl@U I0%,K6% 22C +billowed 'bIl@Ud Ic%,Id% 22C +billowing 'bIl@UIN Ib% 32C +billows 'bIl@Uz Ia%,Kj% 22C +billowy 'bIl@UI OA% 3 +bills bIlz Ja%,Kj% 16A,14 +billy 'bIlI K8% 2 +billy-goat 'bIlI-g@Ut K6% 3 +billy-goats 'bIlI-g@Uts Kj% 3 +billy-ho 'bIlI-h@U Ki$ 3 +billy-o 'bIlI-@U L@$ 3 +biltong 'bIlt0N L@$ 2 +bimetallic ,baIm@'t&lIk OA$ 4 +bimetallism ,baI'met@lIz@m L@$ 5 +bin bIn K6% 1 +binary 'baIn@rI OA% 3 +bind baInd J5%,M6% 12A,6A,14,15A,15B,16B,17 +binder 'baInd@R K6% 2 +binderies 'baInd@rIz Kj$ 3 +binders 'baInd@z Kj% 2 +bindery 'baInd@rI K8$ 3 +binding 'baIndIN Jb%,OA% 22A,6A,14,15A,15B,16B,17 +binds baIndz Ja%,Mj$ 12A,6A,14,15A,15B,16B,17 +bindweed 'baIndwid L@% 2 +bine baIn K6$ 1 +bines baInz Kj$ 1 +binge bIndZ K6% 1 +binges 'bIndZIz Kj% 2 +bingo 'bINg@U L@% 2 +binnacle 'bIn@kl K6$ 3 +binnacles 'bIn@klz Kj$ 3 +binoculars bI'n0kjUl@z Kj% 4 +binomial baI'n@UmI@l OA% 4 +bins bInz Kj% 1 +biochemistry ,baI@U'kemIstrI L@% 5 +biodegradable ,baI@UdI'greId@bl OA% 6 +biograph 'baI@grAf K6$ 3 +biographer baI'0gr@f@R K6% 4 +biographers baI'0gr@f@z Kj% 4 +biographic ,baI@'gr&fIk OA$ 4 +biographical ,baI@'gr&fIkl OA% 5 +biographies baI'0gr@fIz Mj% 4 +biographs 'baI@grAfs Kj$ 3 +biography baI'0gr@fI M8% 4 +biological ,baI@'l0dZIkl OA% 5 +biologically ,baI@'l0dZIklI Pu% 5 +biologist baI'0l@dZIst K6% 4 +biologists baI'0l@dZIsts Kj% 4 +biology baI'0l@dZI L@% 4 +bioscope 'baI@sk@Up K6% 3 +bioscopes 'baI@sk@Ups Kj% 3 +bipartisan ,baIpAtI'z&n OA% 4 +biped 'baIped K6% 2 +bipeds 'baIpedz Kj% 2 +biplane 'baIpleIn K6% 2 +biplanes 'baIpleInz Kj% 2 +birch b3tS H1%,M7% 16A +birch-rod 'b3tS-r0d K6% 2 +birch-rods 'b3tS-r0dz Kj% 2 +birched b3tSt Hc%,Hd% 16A +birches 'b3tSIz Ha%,Mj% 26A +birching 'b3tSIN Hb$ 26A +bird b3d K6% 1 +bird's-eye 'b3dz-eI Oq% 2 +bird-fancier 'b3d-f&nsI@R K6% 4 +bird-fanciers 'b3d-f&nsI@z Kj% 4 +birdcage 'b3dkeIdZ K6% 2 +birdcages 'b3dkeIdZIz Kj% 3 +birdlime 'b3dlaIm K6% 2 +birdlimes 'b3dlaImz Kj$ 2 +birdnesting 'b3dnestIN L@% 3 +birds b3dz Kj% 1 +birdwatcher 'b3dw0tS@R K6% 3 +birdwatchers 'b3dw0tS@z Kj% 3 +biretta bI'ret@ K6$ 3 +birettas bI'ret@z Kj$ 3 +biro 'baI@r@U K6% 2 +biros 'baI@r@Uz Kj% 2 +birth b3T M6% 1 +birth-control 'b3T-k@ntr@Ul L@% 3 +birthday 'b3TdeI K6% 2 +birthdays 'b3TdeIz Kj% 2 +birthmark 'b3TmAk K6% 2 +birthmarks 'b3TmAks Kj% 2 +birthplace 'b3TpleIs K6% 2 +birthplaces 'b3TpleIsIz Kj% 3 +birthrate 'b3TreIt K6% 2 +birthrates 'b3TreIts Kj% 2 +birthright 'b3TraIt K6% 2 +birthrights 'b3TraIts Kj$ 2 +births b3Ts Mj% 1 +biscuit 'bIskIt K6% 2 +biscuits 'bIskIts Kj% 2 +bisect baI'sekt H0% 26A +bisected baI'sektId Hc%,Hd% 36A +bisecting baI'sektIN Hb% 36A +bisection baI'sekSn L@$ 3 +bisects baI'sekts Ha% 26A +bisexual ,baI'sekSU@l K6%,OA% 4 +bisexuality ,baIsekSU'&lItI L@% 6 +bisexuals ,baI'sekSU@lz Kj% 4 +bishop 'bIS@p K6% 2 +bishopric 'bIS@prIk K6% 3 +bishoprics 'bIS@prIks Kj% 3 +bishops 'bIS@ps Kj% 2 +bismuth 'bIzm@T L@$ 2 +bison 'baIsn K9% 2 +bistro 'bistr@U K6% 2 +bistros 'bistr@Uz Kj% 2 +bit bIt Jc%,K6% 12A,3A,6A,15B +bitch bItS I1%,K7% 12A +bitched bItSt Ic%,Id% 12A +bitches 'bItSIz Ia%,Kj% 22A +bitchier 'bItSI@R Or% 3 +bitchiest 'bItSIIst Os% 3 +bitching 'bItSIN Ib% 22A +bitchy 'bItSI OD% 2 +bite baIt J5%,M6% 12A,3A,6A,15B +bites baIts Ja%,Mj% 12A,3A,6A,15B +biting 'baItIN Jb%,OA% 22A,3A,6A,15B +bitingly 'baItINlI Pu% 3 +bits bIts Kj% 1 +bitten 'bItn Jd% 22A,3A,6A,15B +bitter 'bIt@R M6%,OA% 2 +bitter-sweet ,bIt@-'swit OA% 3 +bitterly 'bIt@lI Pu% 3 +bittern 'bIt@n K6% 2 +bitterness 'bIt@n@s L@% 3 +bitterns 'bIt@nz Kj% 2 +bitters 'bIt@z Mj% 2 +bitumen 'bItjUm@n L@$ 3 +bituminous bI'tjumIn@s OA$ 4 +bivalve 'baIv&lv K6% 2 +bivalves 'baIv&lvz Kj% 2 +bivouac 'bIvU&k I5%,K6% 32A +bivouacked 'bIvU&kt Ic%,Id% 32A +bivouacking 'bIvU&kIN Ib% 42A +bivouacs 'bIvU&ks Ia$,Kj% 32A +biz bIz L@% 1 +bizarre bI'zAR OA% 2 +bizonal ,baI'z@Unl OA$ 3 +blab bl&b J4% 12A,6A,15B +blabbed bl&bd Jc%,Jd% 12A,6A,15B +blabber 'bl&b@R J0% 2 +blabbered 'bl&b@d Jc%,Jd% 2 +blabbering 'bl&b@rIN Jb% 3 +blabbermouth 'bl&b@maUT K6% 3 +blabbermouths 'bl&b@maUDz Kj% 3 +blabbers 'bl&b@z Ja% 2 +blabbing 'bl&bIN Jb% 22A,6A,15B +blabs bl&bz Ja% 12A,6A,15B +black bl&k H0%,M6%,OC% 16A +black-beetle 'bl&k-bitl K6% 3 +black-beetles 'bl&k-bitlz Kj% 3 +black-lead 'bl&k-led H0%,L@% 2 +black-leaded 'bl&k-ledId Hc%,Hd% 3 +black-leading 'bl&k-ledIN Hb% 3 +black-leads 'bl&k-ledz Ha% 2 +blackamoor 'bl&k@mOR K6$ 3 +blackamoors 'bl&k@mOz Kj$ 3 +blackball 'bl&kbOl H0% 2 +blackballed 'bl&kbOld Hc%,Hd% 2 +blackballing 'bl&kbOlIN Hb% 3 +blackballs 'bl&kbOlz Ha% 2 +blackberries 'bl&kb@rIz Kj% 3 +blackberry 'bl&kb@rI K8% 3 +blackbird 'bl&kb3d K6% 2 +blackbirds 'bl&kb3dz Kj% 2 +blackboard 'bl&kbOd K6% 2 +blackboards 'bl&kbOdz Kj% 2 +blackcurrant bl&k'kVr@nt K6% 3 +blackcurrants bl&k'kVr@nts Kj% 3 +blacked bl&kt Hc%,Hd% 16A +blacken 'bl&k@n J0% 22A,6A +blackened 'bl&k@nd Jc%,Jd% 22A,6A +blackening 'bl&k@nIN Jb% 32A,6A +blackens 'bl&k@nz Ja% 22A,6A +blacker 'bl&k@R Or% 2 +blackest 'bl&kIst Os% 2 +blackguard 'bl&gAd H0$,K6% 2 +blackguarded 'bl&gAdId Hc$,Hd$ 3 +blackguarding 'bl&gAdIN Hb$ 3 +blackguardly 'bl&g@dlI OA% 3 +blackguards 'bl&gAdz Ha$,Kj% 2 +blackhead 'bl&khed K6% 2 +blackheads 'bl&khedz Kj% 2 +blacking 'bl&kIN Hb%,L@% 26A +blackish 'bl&kIS OA% 2 +blackleg 'bl&kleg J4$,K6% 2 +blacklegged 'bl&klegd Jc$,Jd$ 2 +blacklegging 'bl&klegIN Jb$ 3 +blacklegs 'bl&klegz Ja$,Kj% 2 +blacklist 'bl&klIst H0%,K6% 2 +blacklisted 'bl&klIstId Hc%,Hd% 3 +blacklisting 'bl&klIstIN Hb% 3 +blacklists 'bl&klIsts Ha%,Kj% 2 +blackmail 'bl&kmeIl H0%,L@% 2 +blackmailed 'bl&kmeIld Hc%,Hd% 2 +blackmailer 'bl&kmeIl@R K6% 3 +blackmailers 'bl&kmeIl@z Kj% 3 +blackmailing 'bl&kmeIlIN Hb% 3 +blackmails 'bl&kmeIlz Ha% 2 +blackness 'bl&knIs L@% 2 +blackout 'bl&kaUt K6% 2 +blackouts 'bl&kaUts Kj$ 2 +blacks bl&ks Ha%,Mj% 16A +blacksmith 'bl&ksmIT K6% 2 +blacksmiths 'bl&ksmITs Kj% 2 +blackthorn 'bl&kTOn K6% 2 +blackthorns 'bl&kTOnz Kj$ 2 +blackwater 'bl&kwOt@R Oq$ 3 +bladder 'bl&d@R K6% 2 +bladders 'bl&d@z Kj% 2 +blade bleId K6% 1 +blades bleIdz Kj% 1 +blaeberries 'bleIb@rIz Kj$ 3 +blaeberry 'bleIb@rI K8$ 3 +blah blA L@% 1 +blame bleIm H2%,L@% 16A,14 +blamed bleImd Hc%,Hd% 16A,14 +blameless 'bleIml@s OA% 2 +blamelessly 'bleIml@slI Pu% 3 +blames bleImz Ha% 16A,14 +blameworthy 'bleImw3DI OA% 3 +blaming 'bleImIN Hb% 26A,14 +blanch blAntS J1% 12A,6A +blanched blAntSt Jc%,Jd% 12A,6A +blanches 'blAntSIz Ja% 22A,6A +blanching 'blAntSIN Jb% 22A,6A +blancmange bl@'m0nZ M6% 2 +blancmanges bl@'m0nZIz Mj$ 3 +bland bl&nd OC% 1 +blander 'bl&nd@R Or% 2 +blandest 'bl&ndIst Os% 2 +blandishment 'bl&ndISm@nt K6% 3 +blandishments 'bl&ndISm@nts Kj% 3 +blandly 'bl&ndlI Pu% 2 +blandness 'bl&ndn@s L@% 2 +blank bl&Nk M6%,OA% 1 +blanket 'bl&NkIt H0%,K6% 26A,14 +blanketed 'bl&NkItId Hc%,Hd% 36A,14 +blanketing 'bl&NkItIN Hb% 36A,14 +blankets 'bl&NkIts Ha%,Kj% 26A,14 +blankly 'bl&NklI Pu% 2 +blanks bl&Nks Mj% 1 +blare ble@R J2%,L@% 12A,2C,15B +blared ble@d Jc%,Jd% 12A,2C,15B +blares ble@z Ja% 12A,2C,15B +blaring 'ble@rIN Jb% 22A,2C,15B +blarney 'blAnI L@% 2 +blas_e 'blAzeI OA% 2 +blaspheme bl&s'fim J2% 22A,6A +blasphemed bl&s'fimd Jc%,Jd% 22A,6A +blasphemer bl&s'fim@R K6% 3 +blasphemers bl&s'fim@z Kj% 3 +blasphemes bl&s'fimz Ja% 22A,6A +blasphemies 'bl&sf@mIz Mj% 3 +blaspheming bl&s'fimIN Jb% 32A,6A +blasphemous 'bl&sf@m@s OA% 3 +blasphemously 'bl&sf@m@slI Pu% 4 +blasphemy 'bl&sf@mI M8% 3 +blast blAst H0%,M6% 12A,2C,6A,15B +blast-furnace 'blAst-f3nIs K6% 3 +blast-furnaces 'blAst-f3nIsIz Kj% 4 +blast-off 'blAst-0f K6% 2 +blast-offs 'blAst-0fs Kj% 2 +blasted 'blAstId Hc%,Hd%,Oq% 22A,2C,6A,15B +blasting 'blAstIN Hb% 22A,2C,6A,15B +blasts blAsts Ha%,Mj% 12A,2C,6A,15B +blatant 'bleItnt OA% 2 +blatantly 'bleItntlI Pu% 3 +blather 'bl&D@R I0%,M6$ 2 +blathered 'bl&D@d Ic%,Id% 2 +blathering 'bl&D@rIN Ib% 3 +blathers 'bl&D@z Ia%,Mj$ 2 +blaze bleIz J2%,K6% 12A,2C,6A,15B +blazed bleIzd Jc%,Jd% 12A,2C,6A,15B +blazer 'bleIz@R K6% 2 +blazers 'bleIz@z Kj% 2 +blazes 'bleIzIz Ja%,Kj% 22A,2C,6A,15B +blazing 'bleIzIN Jb%,OA% 22A,2C,6A,15B +blazon 'bleIzn H0%,K6% 2 +blazoned 'bleIznd Hc%,Hd% 2 +blazoning 'bleIznIN Hb% 3 +blazonries 'bleIz@nrIz Kj$ 3 +blazonry 'bleIz@nrI K8$ 3 +blazons 'bleIznz Ha%,Kj% 2 +bleach blitS J1%,K7% 12A,6A +bleached blitSt Jc%,Jd% 12A,6A +bleachers 'blitS@z Kj$ 2 +bleaches 'blitSIz Ja%,Kj% 22A,6A +bleaching 'blitSIN Jb% 22A,6A +bleaching-powder 'blitSIN-paUd@R K6% 4 +bleaching-powders 'blitSIN-paUd@z Kj% 4 +bleak blik OC% 1 +bleaker 'blik@R Or% 2 +bleakest 'blikIst Os% 2 +bleakly 'bliklI Pu% 2 +bleary 'blI@rI OA% 2 +bleary-eyed ,blI@rI-'aId OA% 3 +bleat blit J0%,K6% 12A,6A,15B +bleated 'blitId Jc%,Jd% 22A,6A,15B +bleating 'blitIN Jb% 22A,6A,15B +bleats blits Ja%,Kj% 12A,6A,15B +bled bled Jc%,Jd% 12A,2C,3A,6A,14 +bleed blid J5% 12A,2C,3A,6A,14 +bleeding 'blidIN Jb% 22A,2C,3A,6A,14 +bleeds blidz Ja% 12A,2C,3A,6A,14 +bleep blip I0%,K6% 1 +bleeped blipt Ic%,Id% 1 +bleeping 'blipIN Ib% 2 +bleeps blips Ia%,Kj% 1 +blemish 'blemIS H1%,M7% 26A +blemished 'blemISt Hc%,Hd% 26A +blemishes 'blemISIz Ha%,Mj% 36A +blemishing 'blemISIN Hb% 36A +blench blentS I1% 12A +blenched blentSt Ic%,Id% 12A +blenches 'blentSIz Ia% 22A +blenching 'blentSIN Ib% 22A +blend blend J0%,K6% 12A,3A,6A +blended 'blendId Jc%,Jd% 22A,3A,6A +blending 'blendIN Jb% 22A,3A,6A +blends blendz Ja%,Kj% 12A,3A,6A +blent blent Jc$,Jd$ 12A,3A,6A +bless bles H1% 16A +blessed 'blesId OA% 2 +blessed blest Hc%,Hd% 16A +blessedness 'blesIdn@s L@% 3 +blesses 'blesIz Ha% 26A +blessing 'blesIN Hb%,K6% 26A +blessings 'blesINz Kj% 2 +blest blest Hc%,Hd% 16A +blether 'bleD@R I0%,L@% 22A,2C +blethered 'bleD@d Ic%,Id% 22A,2C +blethering 'bleD@rIN Ib% 32A,2C +blethers 'bleD@z Ia% 22A,2C +blew blu Jc% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blight blaIt H0%,M6% 16A +blighted 'blaItId Hc%,Hd% 26A +blighter 'blaIt@R K6% 2 +blighters 'blaIt@z Kj% 2 +blighting 'blaItIN Hb% 26A +blights blaIts Ha%,Mj% 16A +blimey 'blaImI W-% 2 +blimp blImp K6$ 1 +blimps blImps Kj$ 1 +blind blaInd H0%,K6%,OA% 16A,14 +blinded 'blaIndId Hc%,Hd% 26A,14 +blinders 'blaInd@z Kj% 2 +blindfold 'blaIndf@Uld H0%,K6%,OA% 26A +blindfolded 'blaIndf@UldId Hc%,Hd% 36A +blindfolding 'blaIndf@UldIN Hb$ 36A +blindfolds 'blaIndf@Uldz Ha%,Kj% 26A +blinding 'blaIndIN Hb% 26A,14 +blindly 'blaIndlI Pu% 2 +blindman's buff ,blaIndm&nz 'bVf L@% 3 +blindness 'blaIndn@s L@% 2 +blinds blaIndz Ha%,Kj% 16A,14 +blink blINk J0%,K6% 12A,2C,6A,15B +blinked blINkt Jc%,Jd% 12A,2C,6A,15B +blinkers 'blINk@z Kj% 2 +blinking 'blINkIN Jb%,OA% 22A,2C,6A,15B +blinks blINks Ja%,Kj% 12A,2C,6A,15B +blip blIp K6% 1 +blips blIps Kj% 1 +bliss blIs L@% 1 +blissful 'blIsf@l OA% 2 +blissfully 'blIsf@lI Pu% 3 +blister 'blIst@R J0%,K6% 22A,6A +blistered 'blIst@d Jc%,Jd% 22A,6A +blistering 'blIst@rIN Jb% 32A,6A +blisters 'blIst@z Ja%,Kj% 22A,6A +blithe blaID OA% 1 +blithely 'blaIDlI Pu% 2 +blithering 'blID@rIN OA% 3 +blithesome 'blaIDs@m OA$ 2 +blitz blIts H1%,K7% 16A +blitzed blItst Hc%,Hd% 16A +blitzes 'blItsIz Ha$,Kj$ 26A +blitzing 'blItsIN Hb$ 26A +blizzard 'blIz@d K6% 2 +blizzards 'blIz@dz Kj% 2 +bloated 'bl@UtId OA% 2 +bloater 'bl@Ut@R K6% 2 +bloaters 'bl@Ut@z Kj% 2 +blob bl0b K6% 1 +blobs bl0bz Kj% 1 +bloc bl0k K6% 1 +block bl0k H0%,K6% 16A,15B +blockade bl0'keId H2%,K6% 26A +blockade-runner bl0'keId-rVn@R K6% 4 +blockade-runners bl0'keId-rVn@z Kj% 4 +blockaded bl0'keIdId Hc%,Hd% 36A +blockades bl0'keIdz Ha%,Kj% 26A +blockading bl0'keIdIN Hb% 36A +blockage 'bl0kIdZ K6% 2 +blockages 'bl0kIdZIz Kj% 3 +blockbuster 'bl0kbVst@R K6% 3 +blockbusters 'bl0kbVst@z Kj% 3 +blocked bl0kt Hc%,Hd% 16A,15B +blockhead 'bl0khed K6% 2 +blockheads 'bl0khedz Kj% 2 +blockhouse 'bl0khaUs K6$ 2 +blockhouses 'bl0khaUzIz Kj$ 3 +blocking 'bl0kIN Hb% 26A,15B +blocks bl0ks Ha%,Kj% 16A,15B +blocs bl0ks Kj% 1 +bloke bl@Uk K6% 1 +blokes bl@Uks Kj% 1 +blond bl0nd K6$,OC% 1 +blonde bl0nd K6%,OA% 1 +blonder 'bl0nd@R Or% 2 +blondes bl0ndz Kj% 1 +blondest 'bl0ndIst Os% 2 +blonds bl0ndz Kj$ 1 +blood blVd H0%,M6% 16A +blood-bath 'blVd-bAT K6% 2 +blood-baths 'blVd-bADz Kj% 2 +blood-donor 'blVd-d@Un@R K6% 3 +blood-donors 'blVd-d@Un@z Kj% 3 +blood-group 'blVd-grup K6% 2 +blood-groups 'blVd-grups Kj% 2 +blood-heat 'blVd-hit L@% 2 +blood-letting 'blVd-letIN M6% 3 +blood-lettings 'blVd-letINz Mj$ 3 +blood-money 'blVd-mVnI L@% 3 +blood-poisoning 'blVd-poIznIN L@% 4 +blood-pressure 'blVd-preS@R M6% 3 +blood-pressures 'blVd-preS@z Mj$ 3 +blood-relation ,blVd-rI'leISn K6% 4 +blood-relations ,blVd-rI'leISnz Kj% 4 +blood-sports 'blVd-spOts Kj% 2 +blood-transfusion ,blVd-tr&ns'fjuZn K6% 4 +blood-transfusions ,blVd-tr&ns'fjuZnz Kj% 4 +blood-type 'blVd-taIp K6% 2 +blood-types 'blVd-taIps Kj% 2 +blood-vessel 'blVd-vesl K6% 3 +blood-vessels 'blVd-veslz Kj% 3 +bloodcurdling 'blVdk3dlIN OA% 3 +blooded 'blVdId Hc%,Hd% 26A +bloodhound 'blVdhaUnd K6% 2 +bloodhounds 'blVdhaUndz Kj% 2 +bloodier 'blVdI@R Or% 3 +bloodiest 'blVdIIst Os% 3 +blooding 'blVdIN Hb$ 26A +bloodless 'blVdl@s OA% 2 +bloodlessly 'blVdl@slI Pu% 3 +bloodlust 'blVdlVst L@% 2 +bloods blVdz Ha$,Mj$ 16A +bloodshed 'blVdSed K6% 2 +bloodsheds 'blVdSedz Kj$ 2 +bloodshot 'blVdS0t OA% 2 +bloodstain 'blVdsteIn K6% 2 +bloodstained 'blVdsteInd OA% 2 +bloodstains 'blVdsteInz Kj% 2 +bloodstock 'blVdst0k K6% 2 +bloodstocks 'blVdst0ks Kj$ 2 +bloodsucker 'blVdsVk@R K6% 3 +bloodsuckers 'blVdsVk@z Kj% 3 +bloodthirstiness 'blVdT3stIn@s L@% 4 +bloodthirsty 'blUdT3stI OA% 3 +bloody 'blVdI OD%,Pu% 2 +bloody-minded ,blVdI-'maIndId OA% 4 +bloom blum I0%,M6% 12A,2C +bloomed blumd Ic%,Id% 12A,2C +bloomer 'blum@R K6% 2 +bloomers 'blum@z Kj% 2 +blooming 'blumIN Ib%,OA% 22A,2C +blooms blumz Ia%,Mj% 12A,2C +blossom 'bl0s@m I0%,M6% 22A,2C +blossomed 'bl0s@md Ic%,Id% 22A,2C +blossoming 'bl0s@mIN Ib% 32A,2C +blossoms 'bl0s@mz Ia%,Mj% 22A,2C +blot bl0t H4%,K6% 16A,15B +blotch bl0tS K7% 1 +blotches 'bl0tSIz Kj% 2 +blots bl0ts Ha%,Kj% 16A,15B +blotted 'bl0tId Hc%,Hd% 26A,15B +blotter 'bl0t@R K6% 2 +blotters 'bl0t@z Kj% 2 +blotting 'bl0tIN Hb% 26A,15B +blotting-paper 'bl0tIN-peIp@R K6% 4 +blotting-papers 'bl0tIN-peIp@z Kj$ 4 +blotto 'bl0t@U Op% 2 +blouse blaUz K6% 1 +blouses 'blaUzIz Kj% 2 +blow bl@U J5%,K6% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blow-dried 'bl@U-draId Hc%,Hd% 26A +blow-dries 'bl@U-draIz Ha% 26A +blow-dry 'bl@U-draI H3% 26A +blow-drying 'bl@U-draIIN Hb% 36A +blow-up 'bl@U-Vp K6% 2 +blow-ups 'bl@U-Vps Kj$ 2 +blowback 'bl@Ub&k K6% 2 +blowbacks 'bl@Ub&ks Kj$ 2 +blowed bl@Ud Jd% 16A,15A +blower 'bl@U@R K6% 2 +blowers 'bl@U@z Kj% 2 +blowflies 'bl@UflaIz Kj% 2 +blowfly 'bl@UflaI K8% 2 +blowhole 'bl@Uh@Ul K6% 2 +blowholes 'bl@Uh@Ulz Kj% 2 +blowing 'bl@UIN Jb% 22A,2B,2C,2E,3A,6A,12A,15A,15B +blowing-up ,bl@UIN-'Vp K6% 3 +blowing-ups ,bl@UIN-'Vps Kj$ 3 +blowlamp 'bl@Ul&mp K6% 2 +blowlamps 'bl@Ul&mps Kj% 2 +blown bl@Un Jd% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blowout 'bl@UaUt K6% 2 +blowouts 'bl@UaUts Kj% 2 +blowpipe 'bl@UpaIp K6% 2 +blowpipes 'bl@UpaIps Kj% 2 +blows bl@Uz Ja%,Kj% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blowtorch 'bl@UtOtS K7% 2 +blowtorches 'bl@UtOtSIz Kj% 3 +blowzy 'blaUzI OA% 2 +blubber 'blVb@R J0%,L@% 22A,15B +blubbered 'blVb@d Jc%,Jd% 22A,15B +blubbering 'blVb@rIN Jb% 32A,15B +blubbers 'blVb@z Ja% 22A,15B +bludgeon 'blVdZ@n H0%,K6$ 26A,14 +bludgeoned 'blVdZ@nd Hc%,Hd% 26A,14 +bludgeoning 'blVdZ@nIN Hb% 36A,14 +bludgeons 'blVdZ@nz Ha%,Kj$ 26A,14 +blue blu H2%,M6%,OB% 1 +blue-collar 'blu-k0l@R OA% 3 +blue-jacket 'blu-dZ&kIt K6$ 3 +blue-jackets 'blu-dZ&kIts Kj$ 3 +blue-pencil blu-'pensIl H4% 3 +blue-pencilled blu-'pensIld Hc%,Hd% 3 +blue-pencilling blu-'pensIlIN Hb% 4 +blue-pencils blu-'pensIlz Ha% 3 +bluebell 'blubel K6% 2 +bluebells 'blubelz Kj% 2 +bluebottle 'blub0tl K6% 3 +bluebottles 'blub0tlz Kj% 3 +blued blud Hc%,Hd% 1 +blueprint 'bluprInt K6% 2 +blueprints 'bluprInts Kj% 2 +bluer 'blu@R Or% 2 +blues bluz Ha%,Mj% 1 +bluest 'bluIst Os% 2 +bluestocking 'blust0kIN K6% 3 +bluestockings 'blust0kINz Kj% 3 +bluff blVf J0%,M6%,OA% 12A,6A,14,15B +bluffed blVft Jc%,Jd% 12A,6A,14,15B +bluffer 'blVf@R K6% 2 +bluffers 'blVf@z Kj% 2 +bluffing 'blVfIN Jb% 22A,6A,14,15B +bluffly 'blVflI Pu% 2 +bluffness 'blVfn@s L@$ 2 +bluffs blVfs Ja%,Mj$ 12A,6A,14,15B +bluing 'bluIN Hb% 2 +bluish 'bluIS OA% 2 +blunder 'blVnd@R J0%,K6% 22A,2C,3A +blunderbuss 'blVnd@bVs K7% 3 +blunderbusses 'blVnd@bVsIz Kj% 4 +blundered 'blVnd@d Jc%,Jd% 22A,2C,3A +blunderer 'blVnd@r@R K6% 3 +blunderers 'blVnd@r@z Kj% 3 +blundering 'blVnd@rIN Jb% 32A,2C,3A +blunders 'blVnd@z Ja%,Kj% 22A,2C,3A +blunt blVnt H0%,OC% 16A +blunted 'blVntId Hc%,Hd% 26A +blunter 'blVnt@R Or% 2 +bluntest 'blVntIst Os% 2 +blunting 'blVntIN Hb% 26A +bluntly 'blVntlI Pu% 2 +bluntness 'blVntn@s L@% 2 +blunts blVnts Ha% 16A +blur bl3R J4%,K6% 12A,6A +blurb bl3b M6% 1 +blurbs bl3bz Mj$ 1 +blurred bl3d Jc%,Jd% 12A,6A +blurring 'bl3rIN Jb% 22A,6A +blurs bl3z Ja%,Kj$ 12A,6A +blurt bl3t H0% 115B +blurted 'bl3tId Hc%,Hd% 215B +blurting 'bl3tIN Hb% 215B +blurts bl3ts Ha% 115B +blush blVS I1%,K7% 12A,2C,3A,4B +blushed blVSt Ic%,Id% 12A,2C,3A,4B +blushes 'blVSIz Ia%,Kj% 22A,2C,3A,4B +blushing 'blVSIN Ib%,OA% 22A,2C,3A,4B +blushingly 'blVSINlI Pu% 3 +bluster 'blVst@R J0%,M6% 22A,2C,15B +blustered 'blVst@d Jc%,Jd% 22A,2C,15B +blustering 'blVst@rIN Jb% 32A,2C,15B +blusters 'blVst@z Ja%,Mj% 22A,2C,15B +blustery 'blVst@rI OA% 3 +bo b@U W-% 1 +bo'sn 'b@Usn K6$ 2 +bo'sns 'b@Usnz Kj$ 2 +bo'sun 'b@Usn K6% 2 +bo'suns 'b@Usnz Kj$ 2 +boa 'b@U@ K6% 2 +boa-constrictor 'b@U@-k@n,strIkt@R K6% 5 +boa-constrictors 'b@U@-k@n,strIkt@z Kj% 5 +boar bOR K6% 1 +board bOd J0%,K6% 13A,6A,15B +boarded 'bOdId Jc%,Jd% 23A,6A,15B +boarder 'bOd@R K6% 2 +boarders 'bOd@z Kj% 2 +boarding 'bOdIN Jb%,L@% 23A,6A,15B +boarding-card 'bOdIN-kAd K6% 3 +boarding-cards 'bOdIN-kAdz Kj% 3 +boarding-house 'bOdIN-haUs K6% 3 +boarding-houses 'bOdIN-haUzIz Kj% 4 +boarding-school 'bOdIN-skul K6% 3 +boarding-schools 'bOdIN-skulz Kj% 3 +boardroom 'bOdrum K6% 2 +boardrooms 'bOdrumz Kj% 2 +boards bOdz Ja%,Kj% 13A,6A,15B +boardwalk 'bOdwOk K6% 2 +boardwalks 'bOdwOks Kj$ 2 +boars bOz Kj% 1 +boas 'b@U@z Kj% 2 +boast b@Ust J0%,K6% 12A,3A,3B,6A +boasted 'b@UstId Jc%,Jd% 22A,3A,3B,6A +boaster 'b@Ust@R K6% 2 +boasters 'b@Ust@z Kj% 2 +boastful 'b@Ustf@l OA% 2 +boastfully 'b@Ustf@lI Pu% 3 +boasting 'b@UstIN Jb% 22A,3A,3B,6A +boasts b@Usts Ja%,Kj% 12A,3A,3B,6A +boat b@Ut I0$,K6% 12A,2C +boat-hook 'b@Ut-hUk K6% 2 +boat-hooks 'b@Ut-hUks Kj% 2 +boat-house 'b@Ut-haUs K6% 2 +boat-houses 'b@Ut-haUzIz Kj% 3 +boat-race 'b@Ut-reIs K6% 2 +boat-races 'b@Ut-reIsIz Kj% 3 +boat-train 'b@Ut-treIn K6% 2 +boat-trains 'b@Ut-treInz Kj% 2 +boated 'b@UtId Ic$,Id$ 22A,2C +boater 'b@Ut@R K6% 2 +boaters 'b@Ut@z Kj% 2 +boating 'b@UtIN Ib% 22A,2C +boatman 'b@Utm@n Ki% 2 +boatmen 'b@Utm@n Kj% 2 +boats b@Uts Ia%,Kj% 12A,2C +boatswain 'b@Usn K6$ 2 +boatswains 'b@Usnz Kj$ 2 +bob b0b J4%,K9% 12C,6A +bobbed b0bd Jc%,Jd% 12C,6A +bobbies 'b0bIz Kj% 2 +bobbin 'b0bIn K6% 2 +bobbing 'b0bIN Jb% 22C,6A +bobbins 'b0bInz Kj% 2 +bobby 'b0bI K8% 2 +bobby-socks 'b0bI-s0ks Kj$ 3 +bobby-sox 'b0bI-s0ks Kj$ 3 +bobby-soxer 'b0bI-s0ks@R K6$ 4 +bobby-soxers 'b0bI-s0ks@z Kj$ 4 +bobolink 'b0b@lINk K6$ 3 +bobolinks 'b0b@lINks Kj$ 3 +bobs b0bz Ja%,Kj% 12C,6A +bobsled 'b0bsled K6$ 2 +bobsleds 'b0bsledz Kj$ 2 +bobsleigh 'b0bsleI K6% 2 +bobsleighs 'b0bsleIz Kj% 2 +bobtail 'b0bteIl K6% 2 +bobtails 'b0bteIlz Kj% 2 +bode b@Ud J2% 112B,13B +boded 'b@UdId Jc%,Jd% 212B,13B +bodes b@Udz Ja% 112B,13B +bodice 'b0dIs K6% 2 +bodices 'b0dIsIz Kj% 3 +bodied 'b0dId Ot% 2 +bodies 'b0dIz Mj% 2 +bodily 'b0d@lI OA%,Pu% 3 +boding 'b@UdIN Jb%,L@% 212B,13B +bodkin 'b0dkIn K6$ 2 +bodkins 'b0dkInz Kj$ 2 +body 'b0dI M8* 2 +body-servant 'b0dI-s3v@nt K6$ 4 +body-servants 'b0dI-s3v@nts Kj$ 4 +body-snatcher 'b0dI-sn&tS@R K6% 4 +body-snatchers 'b0dI-sn&tS@z Kj% 4 +bodyguard 'b0dIgAd K6% 3 +bodyguards 'b0dIgAdz Kj% 3 +bodywork 'b0dIw3k K6% 3 +bodyworks 'b0dIw3ks Kj$ 3 +boffin 'b0fIn K6% 2 +boffins 'b0fInz Kj% 2 +bog b0g J4%,K6% 12E,15B +bogey 'b@UgI K6% 2 +bogeyman 'b@UgIm&n Ki% 3 +bogeymen 'b@UgImen Kj% 3 +bogeys 'b@UgIz Kj% 2 +bogged b0gd Jc%,Jd% 12E,15B +boggier 'b0gI@R Or$ 3 +boggiest 'b0gIIst Os$ 3 +bogging 'b0gIN Jb% 22E,15B +boggle 'b0gl I2% 22A,3A +boggled 'b0gld Ic%,Id% 22A,3A +boggles 'b0glz Ia% 22A,3A +boggling 'b0glIN Ib% 22A,3A +boggy 'b0gI OD% 2 +bogie 'b@UgI K6$ 2 +bogies 'b@UgIz Kj$ 2 +bogs b0gz Ja%,Kj% 12E,15B +bogus 'b@Ug@s OA% 2 +bogy 'b@UgI K8$ 2 +boh b@U W-% 1 +bohemian b@U'himI@n K6%,OA% 4 +bohemians b@U'himI@nz Kj% 4 +boil boIl J0%,K6% 12A,2B,2C,2D,6A,15B,22 +boiled boIld Jc%,Jd% 12A,2B,2C,2D,6A,15B,22 +boiler 'boIl@R K6% 2 +boilers 'boIl@z Kj% 2 +boilersuit 'boIl@sut K6% 3 +boilersuits 'boIl@suts Kj% 3 +boiling 'boIlIN Jb% 22A,2B,2C,2D,6A,15B,22 +boiling-point 'boIlIN-poInt K6% 3 +boiling-points 'boIlIN-poInts Kj% 3 +boils boIlz Ja%,Kj% 12A,2B,2C,2D,6A,15B,22 +boisterous 'boIst@r@s OA% 3 +boisterously 'boIst@r@slI Pu% 4 +boisterousness 'boIst@r@snIs L@% 4 +bold b@Uld OC% 1 +bolder 'b@Uld@R Or% 2 +boldest 'b@UldIst Os% 2 +boldly 'b@UldlI Pu% 2 +boldness 'b@Uldn@s L@% 2 +bole b@Ul K6$ 1 +bolero b@'le@r@U K6$ 3 +boleros b@'le@r@Uz Kj$ 3 +boles b@Ulz Kj$ 1 +boll b@Ul K6$ 1 +bollard 'b0l@d K6% 2 +bollards 'b0l@dz Kj% 2 +bollock 'b0l@k K6$ 2 +bollocks 'b0l@ks Kj% 2 +bolls b@Ulz Kj$ 1 +boloney b@'l@UnI L@$ 3 +bolshy 'b0lSI OA% 2 +bolster 'b@Ulst@R H0%,K6% 26A,15B +bolstered 'b@Ulst@d Hc%,Hd% 26A,15B +bolstering 'b@Ulst@rIN Hb% 36A,15B +bolsters 'b@Ulst@z Ha%,Kj% 26A,15B +bolt b@Ult J0%,K6%,Pu% 12A,2C,6A,15B +bolt-hole 'b@Ult-h@Ul K6% 2 +bolt-holes 'b@Ult-h@Ulz Kj% 2 +bolted 'b@UltId Jc%,Jd% 22A,2C,6A,15B +bolting 'b@UltIN Jb% 22A,2C,6A,15B +bolts b@Ults Ja%,Kj% 12A,2C,6A,15B +bomb b0m J0%,K6% 12C,6A,15B +bomb-proof 'b0m-pruf OA% 2 +bomb-sight 'b0m-saIt K6% 2 +bomb-sights 'b0m-saIts Kj% 2 +bomb-site 'b0m-saIt K6% 2 +bomb-sites 'b0m-saIts Kj% 2 +bombard b0m'bAd H0% 26A,14 +bombarded b0m'bAdId Hc%,Hd% 36A,14 +bombardier ,b0mb@'dI@R K6% 4 +bombardiers ,b0mb@'dI@z Kj% 4 +bombarding b0m'bAdIN Hb% 36A,14 +bombardment b0m'bAdm@nt M6% 3 +bombardments b0m'bAdm@nts Mj% 3 +bombards b0m'bAdz Ha% 26A,14 +bombast 'b0mb&st L@% 2 +bombastic b0m'b&stIk OA% 3 +bombastically b0m'b&stIklI Pu% 4 +bombed b0md Jc%,Jd% 12C,6A,15B +bomber 'b0m@R K6% 2 +bombers 'b0m@z Kj% 2 +bombing 'b0mIN Jb% 22C,6A,15B +bombs b0mz Ja%,Kj% 12C,6A,15B +bombshell 'b0mSel K6% 2 +bombshells 'b0mSelz Kj% 2 +bon mot ,b0n 'm@U Ki% 2 +bona fide ,b@Un@ 'faIdI OA%,Pu$ 4 +bona fides ,b@Un@ 'faIdIz Kj$ 4 +bonanza b@'n&nz@ K6% 3 +bonanzas b@'n&nz@z Kj$ 3 +bonbon 'b0nb0n K6% 2 +bonbons 'b0nb0nz Kj% 2 +bond b0nd H0%,K6% 16A +bond- b0nd- U-% 1 +bond-holder 'b0nd-h@Uld@R K6% 3 +bond-holders 'b0nd-h@Uld@z Kj% 3 +bondage 'b0ndIdZ L@% 2 +bonded 'b0ndId Hc%,Hd% 26A +bonding 'b0ndIN Hb% 26A +bonds b0ndz Ha%,Kj% 16A +bone b@Un H2%,M6% 16A +bone-dry b@Un-'draI OA% 2 +bone-head 'b@Un-hed K6% 2 +bone-heads 'b@Un-hedz Kj% 2 +bone-idle b@Un-'aIdl OA% 3 +bone-lazy b@Un-'leIzI OA$ 3 +bone-setter 'b@Un-set@R K6% 3 +bone-setters 'b@Un-set@z Kj% 3 +boned b@Und Hc%,Hd% 16A +boneless 'b@UnlIs OA% 2 +bonemeal 'b@Unmil K6% 2 +bonemeals 'b@Unmilz Kj$ 2 +boner 'b@Un@R K6$ 2 +boners 'b@Un@z Kj$ 2 +bones b@Unz Ha%,Mj% 16A +boneshaker 'b@UnSeIk@R K6% 3 +boneshakers 'b@UnSeIk@z Kj% 3 +bonfire 'b0nfaI@R K6% 2 +bonfires 'b0nfaI@z Kj% 2 +bongo 'b0Ng@U K6% 2 +bongos 'b0Ng@Uz Kj% 2 +bonhomie 'b0n@mI L@% 3 +bonier 'b@UnI@R Or% 3 +boniest 'b@UnIIst Os% 3 +boning 'b@UnIN Hb% 26A +bonito b@'nit@U K6$ 3 +bonitos b@'nit@Uz Kj$ 3 +bonkers 'b0Nk@z Op% 2 +bonnet 'b0nIt K6% 2 +bonnets 'b0nIts Kj% 2 +bonnier 'b0nI@R Or% 3 +bonniest 'b0nIIst Os% 3 +bonnily 'b0nIlI Pu% 3 +bonny 'b0nI OD% 2 +bons mots ,b0n 'm@Uz Kj% 2 +bonus 'b@Un@s K7% 2 +bonuses 'b@Un@sIz Kj% 3 +bony 'b@UnI OD% 2 +boo bu J0%,K6% 12A,6A,15B +boob bub I0%,K6% 1 +boobed bubd Ic%,Id% 1 +boobies 'bubIz Kj% 2 +boobing 'bubIN Ib% 2 +boobs bubz Ia%,Kj% 1 +booby 'bubI K8% 2 +booby-trap 'bubI-tr&p K6% 3 +booby-traps 'bubI-tr&ps Kj% 3 +booed bud Jc%,Jd% 12A,6A,15B +boogie 'bugI M6% 2 +boogie-woogie ,bugI-'wugI M6$ 4 +boogie-woogies ,bugI-'wugIz Mj$ 4 +boogies 'bugIz Mj% 2 +booing 'buIN Jb% 22A,6A,15B +book bUk H0%,K6* 16A +book-end 'bUk-end K6% 2 +book-ends 'bUk-endz Kj% 2 +book-keeper 'bUk-kip@R K6% 3 +book-keepers 'bUk-kip@z Kj% 3 +bookable 'bUk@bl OA% 3 +bookcase 'bUk+keIs K6% 2 +bookcases 'bUk+keIsIz Kj% 3 +bookclub 'bUk+klVb K6% 2 +bookclubs 'bUk+klVbz Kj% 2 +booked bUkt Hc%,Hd% 16A +bookie 'bUkI K6% 2 +bookies 'bUkIz Kj% 2 +booking 'bUkIN Hb%,K6% 26A +bookings 'bUkINz Kj% 2 +bookish 'bUkIS OA% 2 +bookishness 'bUkISn@s L@% 3 +bookkeeper 'bUk+kip@R K6% 3 +bookkeepers 'bUk+kip@z Kj% 3 +bookkeeping 'bUk+kipIN L@% 3 +booklet 'bUklIt K6% 2 +booklets 'bUklIts Kj% 2 +bookmaker 'bUkmeIk@R K6% 3 +bookmakers 'bUkmeIk@z Kj% 3 +bookmark 'bUkmAk K6% 2 +bookmarker 'bUkmAk@R K6$ 3 +bookmarkers 'bUkmAk@z Kj$ 3 +bookmarks 'bUkmAks Kj% 2 +bookmobile 'bUkm@Ubil K6$ 3 +bookmobiles 'bUkm@Ubilz Kj$ 3 +books bUks Ha%,Kj% 16A +bookseller 'bUksel@R K6% 3 +booksellers 'bUksel@z Kj% 3 +bookshop 'bUkS0p K6% 2 +bookshops 'bUkS0ps Kj% 2 +bookstall 'bUkstOl K6% 2 +bookstalls 'bUkstOlz Kj% 2 +bookworm 'bUkw3m K6% 2 +bookworms 'bUkw3mz Kj% 2 +boom bum J0%,K6% 12A,2C,15B +boomed bumd Jc%,Jd% 12A,2C,15B +boomerang 'bum@r&N K6% 3 +boomerangs 'bum@r&Nz Kj% 3 +booming 'bumIN Jb% 22A,2C,15B +booms bumz Ja%,Kj% 12A,2C,15B +boon bun K6%,OA$ 1 +boons bunz Kj$ 1 +boor bU@R K6% 1 +boorish 'bU@rIS OA% 2 +boorishly 'bU@rISlI Pu% 3 +boorishness 'bU@rISn@s L@% 3 +boors bU@z Kj% 1 +boos buz Ja%,Kj% 12A,6A,15B +boost bust H0%,K6% 16A +boosted 'bustId Hc%,Hd% 26A +booster 'bust@R K6% 2 +boosters 'bust@z Kj% 2 +boosting 'bustIN Hb% 26A +boosts busts Ha%,Kj% 16A +boot but H0%,K6% 16A,15A,15B +booted 'butId Hc%,Hd%,OA% 26A,15A,15B +bootee bu'ti K6% 2 +bootees bu'tiz Kj% 2 +booth buD K6% 1 +booths buDz Kj% 1 +booting 'butIN Hb% 26A,15A,15B +bootlace 'butleIs K6% 2 +bootlaces 'butleIsIz Kj% 3 +bootleg 'butleg H4$ 2 +bootlegged 'butlegd Hc$,Hd$ 2 +bootlegger 'butleg@R K6% 3 +bootleggers 'butleg@z Kj% 3 +bootlegging 'butlegIN Hb% 3 +bootlegs 'butlegz Ha$ 2 +bootless 'butlIs OA% 2 +boots buts Ha%,Kj% 16A,15A,15B +booty 'butI L@% 2 +booze buz I2%,L@% 12A,2C +booze-up 'buz-Vp K6% 2 +booze-ups 'buz-Vps Kj% 2 +boozed buzd Ic%,Id% 12A,2C +boozer 'buz@R K6% 2 +boozers 'buz@z Kj% 2 +boozes 'buzIz Ia% 22A,2C +boozier 'buzI@R Or% 3 +booziest 'buzIIst Os% 3 +boozing 'buzIN Ib% 22A,2C +boozy 'buzI OD% 2 +bopeep ,b@U'pip L@$ 2 +boracic b@'r&sIk OA% 3 +borage 'b0rIdZ L@$ 2 +borax 'bOr&ks L@$ 2 +border 'bOd@R J0%,K6% 23A,6A +bordered 'bOd@d Jc%,Jd% 23A,6A +borderer 'bOd@r@R K6$ 3 +borderers 'bOd@r@z Kj$ 3 +bordering 'bOd@rIN Jb% 33A,6A +borderland 'bOd@l&nd K6% 3 +borderlands 'bOd@l&ndz Kj% 3 +borderline 'bOd@laIn K6% 3 +borderlines 'bOd@laInz Kj% 3 +borders 'bOd@z Ja%,Kj% 23A,6A +bore bOR J2%,Jc%,K6% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +bore-hole 'bO-h@Ul K6% 2 +bore-holes 'bO-h@Ulz Kj% 2 +bored bOd Jc%,Jd% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +boredom 'bOd@m L@% 2 +borer 'bOr@R K6% 2 +borers 'bOr@z Kj% 2 +bores bOz Ja%,Kj% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +boric 'bOrIk OA% 2 +boring 'bOrIN Jb%,OA% 22A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +born bOn Hd% 1 +borne bOn Jd% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +boron 'bOr0n L@$ 2 +borough 'bVr@ K6% 2 +boroughs 'bVr@z Kj% 2 +borrow 'b0r@U H0% 26A,14 +borrowed 'b0r@Ud Hc%,Hd% 26A,14 +borrower 'b0r@U@R K6% 3 +borrowers 'b0r@U@z Kj% 3 +borrowing 'b0r@UIN Hb% 36A,14 +borrows 'b0r@Uz Ha% 26A,14 +borsch bOS L@$ 1 +borstal 'bOstl K6% 2 +borstals 'bOstlz Kj$ 2 +bortsch bOtS L@$ 1 +borzoi 'bOzoI K6$ 2 +borzois 'bOzoIz Kj$ 2 +bosh b0S L@$,W-$ 1 +bosky 'b0skI OA$ 2 +bosom 'bUz@m K6% 2 +bosoms 'bUz@mz Kj% 2 +boss b0s H1%,K7% 16A,15B +boss-eyed 'b0s-aId OA% 2 +bossed b0st Hc%,Hd% 16A,15B +bosses 'b0sIz Ha%,Kj% 26A,15B +bossier 'b0sI@R Or% 3 +bossiest 'b0sIIst Os% 3 +bossing 'b0sIN Hb% 26A,15B +bossy 'b0sI OD% 2 +botanical b@'t&nIkl OA% 4 +botanist 'b0t@nIst K6% 3 +botanists 'b0t@nIsts Kj% 3 +botanize 'b0t@naIz I2$ 3 +botanized 'b0t@naIzd Ic$,Id$ 3 +botanizes 'b0t@naIzIz Ia$ 4 +botanizing 'b0t@naIzIN Ib$ 4 +botany 'b0t@nI L@% 3 +botch b0tS H1%,K7% 16A,15B +botched b0tSt Hc%,Hd% 16A,15B +botcher 'b0tS@R K6% 2 +botchers 'b0tS@z Kj% 2 +botches 'b0tSIz Ha%,Kj$ 26A,15B +botching 'b0tSIN Hb% 26A,15B +both b@UT OA*,Pu*,Qx* 1 +bother 'b0D@R J0%,L@% 22A,3A,4C,6A,14,16A +botheration ,b0D@'reISn W-% 4 +bothered 'b0D@d Jc%,Jd% 22A,3A,4C,6A,14,16A +bothering 'b0D@rIN Jb% 32A,3A,4C,6A,14,16A +bothers 'b0D@z Ja% 22A,3A,4C,6A,14,16A +bothersome 'b0D@s@m OA% 3 +bottle 'b0tl H2%,M6% 26A,15B +bottle-fed 'b0tl-fed OA% 3 +bottle-green ,b0tl-'grin OA% 3 +bottled 'b0tld Hc%,Hd% 26A,15B +bottleneck 'b0tlnek K6% 3 +bottlenecks 'b0tlneks Kj% 3 +bottles 'b0tlz Ha%,Mj% 26A,15B +bottling 'b0tlIN Hb% 26A,15B +bottom 'b0t@m I0%,K6% 2 +bottomed 'b0t@md Ic%,Id% 2 +bottoming 'b0t@mIN Ib% 3 +bottomless 'b0t@ml@s OA% 3 +bottoms 'b0t@mz Ia%,Kj% 2 +botulism 'b0tjUlIz@m L@$ 4 +boudoir 'budwAR K6% 2 +boudoirs 'budwAz Kj% 2 +bougainvillea ,bug@n'vIlI@ K6% 5 +bougainvilleas ,bug@n'vIlI@z Kj% 5 +bough baU K6% 1 +boughs baUz Kj% 1 +bought bOt Jc%,Jd% 12A,2C,6A,12B,13B,15B +bouillon 'buj0n L@$ 2 +boulder 'b@Uld@R K6% 2 +boulders 'b@Uld@z Kj% 2 +boulevard 'bul@vAd K6% 3 +boulevards 'bul@vAdz Kj% 3 +bounce baUns J2%,M6% 12A,2C,6A +bounced baUnst Jc%,Jd% 12A,2C,6A +bounces 'baUnsIz Ja%,Mj% 22A,2C,6A +bouncier 'baUnsI@R Or$ 3 +bounciest 'baUnsI@st Os% 3 +bouncing 'baUnsIN Jb%,OA% 22A,2C,6A +bouncy 'baUnsI OD% 2 +bound baUnd J0%,Jc%,Jd%,K6%,OA% 12A,2C,4A,6A,14,15A,15B,16B,17 +boundaries 'baUndrIz Kj% 2 +boundary 'baUndrI K8% 2 +bounded 'baUndId Jc%,Jd% 22A,2C,4A,6A,14,15A,15B,16B,17 +bounden 'baUnd@n OA% 2 +bounder 'baUnd@R K6% 2 +bounders 'baUnd@z Kj% 2 +bounding 'baUndIN Jb% 22A,2C,4A,6A,14,15A,15B,16B,17 +boundless 'baUndlIs OA% 2 +boundlessly 'baUndlIslI Pu% 3 +bounds baUndz Ja%,Kj% 12A,2C,4A,6A,14,15A,15B,16B,17 +bounteous 'baUntI@s OA% 3 +bounteously 'baUntI@slI Pu% 4 +bounties 'baUntIz Mj$ 2 +bountiful 'baUntIf@l OA% 3 +bountifully 'baUntIf@lI Pu% 4 +bounty 'baUntI M8% 2 +bouquet bU'keI K6% 2 +bouquets bU'keIz Kj% 2 +bourbon 'b3b@n M6% 2 +bourbons 'b3b@nz Mj$ 2 +bourgeois 'bU@ZwA K9%,OA% 2 +bourgeoisie ,bU@ZwA'zi K6% 3 +bourgeoisies ,bU@ZwA'ziz Kj$ 3 +bourn bU@n K6$ 1 +bourne bU@n K6$ 1 +bournes bU@nz Kj$ 1 +bourns bU@nz Kj$ 1 +bourse bU@s K6$ 1 +bourses 'bU@sIz Kj$ 2 +bout baUt K6% 1 +boutique bu'tik K6% 2 +boutiques bu'tiks Kj% 2 +bouts baUts Kj% 1 +bovine 'b@UvaIn OA% 2 +bovril 'b0vrIl L@% 2 +bow b@U H0%,K6% 1 +bow baU J0%,K6% 12A,2C,3A,6A,15A,15B +bow-wow 'baU-waU K6% 2 +bow-wow ,baU-'waU W-% 2 +bow-wows 'baU-waUz Kj% 2 +bowdlerize 'baUdl@raIz H2$ 3 +bowdlerized 'baUdl@raIzd Hc$,Hd$ 3 +bowdlerizes 'baUdl@raIzIz Ha$ 4 +bowdlerizing 'baUdl@raIzIN Hb$ 4 +bowed b@Ud Hc%,Hd% 1 +bowed baUd Jc%,Jd% 12A,2C,3A,6A,15A,15B +bowel 'baU@l K6% 2 +bowels 'baU@lz Kj% 2 +bower 'baU@R K6% 2 +bowers 'baU@z Kj% 2 +bowie knife 'b@UI naIf Ki% 3 +bowie knives 'b@UI naIvz Kj% 3 +bowing 'b@UIN Hb%,L@% 2 +bowing 'baUIN Jb% 22A,2C,3A,6A,15A,15B +bowl b@Ul J0%,K6% 12A,2C,6A,15B +bowled b@Uld Jc%,Jd% 12A,2C,6A,15B +bowler 'b@Ul@R K6% 2 +bowlers 'b@Ul@z Kj% 2 +bowline 'b@UlIn K6$ 2 +bowlines 'b@UlInz Kj$ 2 +bowling 'b@UlIN Jb% 22A,2C,6A,15B +bowling-green 'b@UlIN-grin K6% 3 +bowling-greens 'b@UlIN-grinz Kj% 3 +bowls b@Ulz Ja%,Kj%,Lk% 12A,2C,6A,15B +bowman 'b@Um@n Ki% 2 +bowmen 'b@Umen Kj% 2 +bows b@Uz Ha%,Kj% 1 +bows baUz Ja%,Kj% 12A,2C,3A,6A,15A,15B +bowsprit 'b@UsprIt K6$ 2 +bowsprits 'b@UsprIts Kj$ 2 +box b0ks J1%,M7% 12A,3A,6A,15B +box-kite 'b0ks-kaIt K6% 2 +box-kites 'b0ks-kaIts Kj% 2 +box-number 'b0ks-nVmb@R K6% 3 +box-numbers 'b0ks-nVmb@z Kj% 3 +box-office 'b0ks-0fIs K6% 3 +box-offices 'b0ks-0fIsIz Kj% 4 +boxed b0kst Jc%,Jd% 12A,3A,6A,15B +boxer 'b0ks@R K6% 2 +boxers 'b0ks@z Kj% 2 +boxes 'b0ksIz Ja%,Mj% 22A,3A,6A,15B +boxful 'b0ksfUl K6% 2 +boxfuls 'b0ksfUlz Kj% 2 +boxing 'b0ksIN Jb%,L@% 22A,3A,6A,15B +boxing-glove 'b0ksIN-glVv K6% 3 +boxing-gloves 'b0ksIN-glVvz Kj% 3 +boxing-match 'b0ksIN-m&tS K7% 3 +boxing-matches 'b0ksIN-m&tSIz Kj% 4 +boxwood 'b0kswUd L@% 2 +boy boI K6* 1 +boycott 'boIk0t H0%,K6% 26A +boycotted 'boIk0tId Hc%,Hd% 36A +boycotting 'boIk0tIN Hb% 36A +boycotts 'boIk0ts Ha%,Kj% 26A +boyfriend 'boIfrend K6% 2 +boyfriends 'boIfrendz Kj% 2 +boyhood 'boIhUd L@% 2 +boyish 'boIIS OA% 2 +boyishly 'boIISlI Pu% 3 +boys boIz Kj% 1 +bra brA K6% 1 +brace breIs J2%,K9% 16A,15B,16A +braced breIst Jc%,Jd% 16A,15B,16A +bracelet 'breIslIt K6% 2 +bracelets 'breIslIts Kj% 2 +braces 'breIsIz Ja%,Kj% 26A,15B,16A +bracing 'breIsIN Jb% 26A,15B,16A +bracken 'br&k@n L@% 2 +bracket 'br&kIt H0%,K6% 26A,15B +bracketed 'br&kItId Hc%,Hd% 36A,15B +bracketing 'br&kItIN Hb% 36A,15B +brackets 'br&kIts Ha%,Kj% 26A,15B +brackish 'br&kIS OA% 2 +bract br&kt K6$ 1 +bracts br&kts Kj$ 1 +brad br&d K6$ 1 +bradawl 'br&dOl K6$ 2 +bradawls 'br&dOlz Kj$ 2 +brads br&dz Kj$ 1 +brae breI K6$ 1 +braes breIz Kj$ 1 +brag br&g I4% 12A,3A +braggart 'br&g@t K6% 2 +braggarts 'br&g@ts Kj% 2 +bragged br&gd Ic%,Id% 12A,3A +bragging 'br&gIN Ib%,L@% 22A,3A +brags br&gz Ia% 12A,3A +braid breId H0%,M6% 16A +braided 'breIdId Hc%,Hd% 26A +braiding 'breIdIN Hb% 26A +braids breIdz Ha%,Mj% 16A +braille breIl L@% 1 +brain breIn H0%,K6% 16A +brain-fag 'breIn-f&g L@$ 2 +brain-teaser 'breIn-tiz@R K6% 3 +brain-teasers 'breIn-tiz@z Kj% 3 +brainchild 'breIntSaIld Ki% 2 +brained breInd Hc%,Hd% 16A +brainier 'breInI@R Or% 3 +brainiest 'breInIIst Os% 3 +braining 'breInIN Hb% 26A +brainless 'breInl@s OA% 2 +brains breInz Ha%,Kj% 16A +brainstorm 'breInstOm K6% 2 +brainstorms 'breInstOmz Kj% 2 +brainwash 'breInw0S H1% 26A +brainwashed 'breInw0St Hc%,Hd%,OA% 26A +brainwashes 'breInw0SIz Ha$ 36A +brainwashing 'breInw0SIN Hb$,L@% 36A +brainwave 'breInweIv K6% 2 +brainwaves 'breInweIvz Kj% 2 +brainy 'breInI OD% 2 +braise breIz H2% 16A +braised breIzd Hc%,Hd% 16A +braises 'breIzIz Ha% 26A +braising 'breIzIN Hb% 26A +brake breIk J2%,Jc%,K6% 12A,2C,2D,3A,6A,15A,15B,22 +braked breIkt Jc%,Jd% 12A,2C,2D,3A,6A,15A,15B,22 +brakeman 'breIkm@n Ki$ 2 +brakemen 'breIkm@n Kj$ 2 +brakes breIks Ja%,Kj% 12A,2C,2D,3A,6A,15A,15B,22 +braking 'breIkIN Jb% 22A,2C,2D,3A,6A,15A,15B,22 +bramble 'br&mbl K6% 2 +brambles 'br&mblz Kj% 2 +bran br&n L@% 1 +bran-new ,br&n-'nju OA$ 2 +branch brAntS I1%,K7% 12A,2C +branched brAntSt Ic%,Id% 12A,2C +branches 'brAntSIz Ia%,Kj% 22A,2C +branchier 'brAntSI@R Or$ 3 +branchiest 'brAntSIIst Os$ 3 +branching 'brAntSIN Ib% 22A,2C +branchy 'brAntSI OD$ 2 +brand br&nd H0%,K6% 16A,16B +brand-new ,br&n-'nju OA% 2 +branded 'br&ndId Hc%,Hd% 26A,16B +brandies 'br&ndIz Mj% 2 +branding 'br&ndIN Hb% 26A,16B +branding-iron 'br&ndIN-aI@n K6% 4 +branding-irons 'br&ndIN-aI@nz Kj% 4 +brandish 'br&ndIS H1% 26A +brandished 'br&ndISt Hc%,Hd% 26A +brandishes 'br&ndISIz Ha% 36A +brandishing 'br&ndISIN Hb% 36A +brands br&ndz Ha%,Kj% 16A,16B +brandy 'br&ndI M8% 2 +brandy-ball 'br&ndI-bOl K6% 3 +brandy-balls 'br&ndI-bOlz Kj% 3 +brandy-snap 'br&ndI-sn&p K6% 3 +brandy-snaps 'br&ndI-sn&ps Kj% 3 +bras brAz Kj% 1 +brash br&S OC% 1 +brasher 'br&S@R Or% 2 +brashest 'br&SIst Os% 2 +brass brAs M7% 1 +brassard 'br&sAd K6$ 2 +brassards 'br&sAdz Kj$ 2 +brasserie 'br&s@rI K6% 3 +brasseries 'br&s@rIz Kj% 3 +brasses 'brAsIz Mj% 2 +brassi`ere 'br&zI@R K6$ 3 +brassi`eres 'br&zI@z Kj$ 3 +brassier 'brAsI@R Or% 3 +brassiere 'br&zI@R K6$ 3 +brassieres 'br&zI@z Kj$ 3 +brassiest 'brAsIIst Os% 3 +brassy 'brAsI OD% 2 +brat br&t K6% 1 +brats br&ts Kj% 1 +bravado br@'vAd@U M6% 3 +bravados br@'vAd@Uz Mj$ 3 +brave breIv H2%,K6%,OB% 16A,15B +braved breIvd Hc%,Hd% 16A,15B +bravely 'breIvlI Pu% 2 +braver 'breIv@R Or% 2 +bravery 'breIv@rI L@% 3 +braves breIvz Ha%,Kj% 16A,15B +bravest 'breIvIst Os% 2 +braving 'breIvIN Hb% 26A,15B +bravo ,brA'v@U K6$,W-% 2 +bravoes ,brA'v@Uz Kj$ 2 +bravos ,brA'v@Uz Kj$ 2 +brawl brOl I0%,K6% 12A +brawled brOld Ic%,Id% 12A +brawler 'brOl@R K6% 2 +brawlers 'brOl@z Kj% 2 +brawling 'brOlIN Ib% 22A +brawls brOlz Ia%,Kj% 12A +brawn brOn L@% 1 +brawnier 'brOnI@R Or% 3 +brawniest 'brOnIIst Os% 3 +brawny 'brOnI OD% 2 +bray breI H0%,K6% 12A +brayed breId Hc%,Hd% 12A +braying 'breIIN Hb% 22A +brays breIz Ha%,Kj% 12A +braze breIz H2$ 16A +brazed breIzd Hc$,Hd$ 16A +brazen 'breIzn H0%,OA% 2 +brazen-faced 'breIzn-feIst OA$ 3 +brazened 'breIznd Hc%,Hd% 2 +brazening 'breIznIN Hb% 3 +brazens 'breIznz Ha% 2 +brazes 'breIzIz Ha$ 26A +brazier 'breIzI@R K6% 3 +braziers 'breIzI@z Kj% 3 +brazing 'breIzIN Hb$ 26A +breach britS H1%,K7% 16A +breached britSt Hc%,Hd% 16A +breaches 'britSIz Ha%,Kj% 26A +breaching 'britSIN Hb% 26A +bread bred L@% 1 +breadcrumb 'bredkrVm K6% 2 +breadcrumbs 'bredkrVmz Kj% 2 +breadfruit 'bredfrut K9% 2 +breadfruits 'bredfruts Kj$ 2 +breadline 'bredlaIn K6% 2 +breadlines 'bredlaInz Kj$ 2 +breadstuffs 'bredstVfs Kj$ 2 +breadth bredT M6% 1 +breadths bredTs Mj% 1 +breadthways 'bredTweIz Pu% 2 +breadthwise 'bredTwaIz Pu% 2 +breadwinner 'bredwIn@R K6% 3 +breadwinners 'bredwIn@z Kj% 3 +break breIk J5%,M6% 12A,2C,2D,3A,6A,15A,15B,22 +break-in 'breIk-In K6% 2 +break-ins 'breIk-Inz Kj% 2 +break-up 'breIk-Vp K6% 2 +break-ups 'breIk-Vps Kj% 2 +breakable 'breIk@bl OA% 3 +breakables 'breIk@blz Kj% 3 +breakage 'breIkIdZ K6% 2 +breakages 'breIkIdZIz Kj% 3 +breakaway 'breIk@weI K6% 3 +breakaways 'breIk@weIz K6$ 3 +breakdown 'breIkdaUn K6% 2 +breakdowns 'breIkdaUnz Kj% 2 +breaker 'breIk@R K6% 2 +breakers 'breIk@z Kj% 2 +breakfast 'brekf@st I0%,K6% 2 +breakfasted 'brekf@stId Ic%,Id% 3 +breakfasting 'brekf@stIN Ib% 3 +breakfasts 'brekf@sts Ia%,Kj% 2 +breaking 'breIkIN Jb% 22A,2C,2D,3A,6A,15A,15B,22 +breakneck 'breIknek OA% 2 +breaks breIks Ja%,Mj% 12A,2C,2D,3A,6A,15A,15B,22 +breakthrough 'breIkTru K6% 2 +breakthroughs 'breIkTruz Kj% 2 +breakwater 'breIkwOt@R K6% 3 +breakwaters 'breIkwOt@z Kj% 3 +bream brim K9% 1 +breast brest H0$,K6% 16A +breast-deep 'brest-dip Pu% 2 +breast-fed 'brest-fed OA% 2 +breast-high 'brest-haI Pu% 2 +breast-plate 'brest-pleIt K6% 2 +breast-plates 'brest-pleIts Kj% 2 +breasted 'brestId Hc$,Hd% 26A +breastfed 'brestfed Jc%,Jd% 2 +breastfeed 'brestfid J5% 2 +breastfeeding 'brestfidIN Jb% 3 +breastfeeds 'brestfidz Ja% 2 +breasting 'brestIN Hb$ 26A +breasts brests Ha$,Kj% 16A +breaststroke 'bres+str@Uk L@% 2 +breastwork 'brestw3k K6$ 2 +breastworks 'brestw3ks Kj$ 2 +breath breT M6% 1 +breathalyser 'breT@laIz@R K6% 4 +breathalysers 'breT@laIz@z Kj% 4 +breathe briD J2% 12A,2C,6A,15B +breathed briDd Jc%,Jd% 12A,2C,6A,15B +breather 'briD@R K6% 2 +breathers 'briD@z Kj% 2 +breathes briDz Ja% 12A,2C,6A,15B +breathing 'briDIN Jb%,L@% 22A,2C,6A,15B +breathing-space 'briDIN-speIs K6% 3 +breathing-spaces 'briDIN-speIsIz Kj$ 4 +breathless 'breTl@s OA% 2 +breathlessly 'breTl@slI Pu% 3 +breaths breTs Mj% 1 +breathtaking 'breTteIkIN OA% 3 +bred bred Jc%,Jd% 12A,6A +breech britS K7% 1 +breech-block 'britS-bl0k K6$ 2 +breech-blocks 'britS-bl0ks Kj$ 2 +breeches 'brItSIz Kj% 2 +breeches 'britSIz Kj% 2 +breeches-buoy ,britSIz-'boI K6% 3 +breeches-buoys ,britSIz-'boIz Kj% 3 +breed brid J5%,K6% 12A,6A +breeder 'brid@R K6% 2 +breeders 'brid@z Kj% 2 +breeding 'bridIN Jb%,L@% 22A,6A +breeds bridz Ja%,Kj% 12A,6A +breeze briz I2%,M6% 12C +breezed brizd Ic%,Id% 12C +breezes 'brizIz Ia%,Mj% 22C +breezier 'brizI@R Or% 3 +breeziest 'brizIIst Os% 3 +breezily 'briz@lI Pu% 3 +breeziness 'brizIn@s L@% 3 +breezing 'brizIN Ib% 22C +breezy 'brizI OD% 2 +brethren 'breDr@n Kj% 2 +breve briv K6$ 1 +breves brivz Kj$ 1 +brevet 'brevIt K6$ 2 +brevets 'brevIts Kj$ 2 +breviaries 'brivI@rIz Kj$ 4 +breviary 'brivI@rI K8$ 4 +brevity 'brevItI L@% 3 +brew bru J0%,K6% 12A,2C,6A +brewed brud Jc%,Jd% 12A,2C,6A +brewer 'bru@R K6% 2 +breweries 'brU@rIz Kj% 3 +brewers 'bru@z Kj% 2 +brewery 'brU@rI K8% 3 +brewing 'bruIN Jb% 22A,2C,6A +brews bruz Ja%,Kj% 12A,2C,6A +briar 'braI@R M6% 2 +briars 'braI@z Mj% 2 +bribable 'braIb@bl OA% 3 +bribe braIb H2%,K6% 16A,15A,17 +bribed braIbd Hc%,Hd% 16A,15A,17 +bribery 'braIb@rI L@% 3 +bribes braIbz Ha%,Kj% 16A,15A,17 +bribing 'braIbIN Hb% 26A,15A,17 +bric-a-brac 'brIk-@-br&k L@% 3 +brick brIk H0%,M6% 115B +brick-field 'brIk-fild K6$ 2 +brick-fields 'brIk-fildz Kj$ 2 +brickbat 'brIkb&t K6% 2 +brickbats 'brIkb&ts Kj% 2 +bricked brIkt Hc%,Hd% 115B +bricking 'brIkIN Hb% 215B +brickkiln 'brIk+kIln K6% 2 +brickkilns 'brIk+kIlnz Kj% 2 +bricklayer 'brIkleI@R K6% 3 +bricklayers 'brIkleI@z Kj% 3 +bricks brIks Ha%,Mj% 115B +brickwork 'brIkw3k K6% 2 +brickworks 'brIkw3ks Kj% 2 +bridal 'braIdl K6$,Oq% 2 +bridals 'braIdlz Kj$ 2 +bride braId K6% 1 +bridecake 'braIdkeIk K6$ 2 +bridecakes 'braIdkeIks Kj$ 2 +bridegroom 'braIdgrUm K6% 2 +bridegrooms 'braIdgrUmz Kj% 2 +brides braIdz Kj% 1 +bridesmaid 'braIdzmeId K6% 2 +bridesmaids 'braIdzmeIdz Kj% 2 +bridge brIdZ H2%,M6% 16A,15B +bridged brIdZd Hc%,Hd% 16A,15B +bridgehead 'brIdZhed K6% 2 +bridgeheads 'brIdZhedz Kj% 2 +bridges 'brIdZIz Ha%,Mj% 26A,15B +bridging 'brIdZIN Hb% 26A,15B +bridle 'braIdl J2%,K6% 22A,2C,6A +bridle-path 'braIdl-pAT K6% 3 +bridle-paths 'braIdl-pADz Kj% 3 +bridle-road 'braIdl-r@Ud K6% 3 +bridle-roads 'braIdl-r@Udz Kj% 3 +bridled 'braIdld Jc%,Jd% 22A,2C,6A +bridles 'braIdlz Ja%,Kj% 22A,2C,6A +bridling 'braIdlIN Jb% 22A,2C,6A +brief brif H0%,K6%,OC% 16A +briefcase 'brifkeIs K6% 2 +briefcases 'brifkeIsIz Kj% 3 +briefed brift Hc%,Hd% 16A +briefer 'brif@R Or% 2 +briefest 'brifIst Os% 2 +briefing 'brifIN Hb%,K6% 26A +briefings 'brifINz Kj% 2 +briefly 'briflI Pu% 2 +briefs brifs Ha%,Kj% 16A +brier 'braI@R K6$ 2 +briers 'braI@z Kj$ 2 +brig brIg K6$ 1 +brigade brI'geId K6% 2 +brigades brI'geIdz Kj% 2 +brigand 'brIg@nd K6% 2 +brigands 'brIg@ndz Kj% 2 +brigantine 'brIg@ntin K6$ 3 +brigantines 'brIg@ntinz Kj$ 3 +bright braIt OC%,Pu% 1 +brighten 'braItn J0% 22A,2C,6A,15B +brightened 'braItnd Jc%,Jd% 22A,2C,6A,15B +brightening 'braItnIN Jb% 22A,2C,6A,15B +brightens 'braItnz Ja% 22A,2C,6A,15B +brighter 'braIt@R Or% 2 +brightest 'braItIst Os% 2 +brightly 'braItlI Pu% 2 +brightness 'braItn@s L@% 2 +brigs brIgz Kj$ 1 +brill brIl K9$ 1 +brilliance 'brIlI@ns L@% 3 +brilliancy 'brIlI@nsI L@$ 4 +brilliant 'brIlI@nt OA% 3 +brilliantine 'brIlI@ntin L@$ 4 +brilliantly 'brIlI@ntlI Pu% 4 +brim brIm I4%,K6% 12A,2C +brimful ,brIm'fUl OA% 2 +brimfull ,brIm'fUl OA$ 2 +brimmed brImd Ic%,Id% 12A,2C +brimming 'brImIN Ib% 22A,2C +brims brImz Ia%,Kj% 12A,2C +brimstone 'brImst@Un L@% 2 +brindled 'brIndld OA$ 2 +brine braIn M6% 1 +brines braInz Mj$ 1 +bring brIN H5% 16A,12A,12C,13A,14,15B,17,19B +bringing 'brININ Hb% 26A,12A,12C,13A,14,15B,17,19B +brings brINz Ha% 16A,12A,12C,13A,14,15B,17,19B +brinier 'braInI@R Or$ 3 +briniest 'braInIIst Os$ 3 +brink brINk K6% 1 +brinkmanship 'brINkm@nSIp L@% 3 +brinks brINks Kj% 1 +briny 'braInI OD% 2 +brioche bri'0S K6% 2 +brioches bri'0SIz Kj$ 3 +briquet brI'ket K6$ 2 +briquets brI'kets Kj$ 2 +briquette brI'ket K6$ 2 +briquettes brI'kets Kj$ 2 +brisk brIsk OC% 1 +brisker 'brIsk@R Or% 2 +briskest 'brIskIst Os% 2 +brisket 'brIskIt L@% 2 +briskly 'brIsklI Pu% 2 +bristle 'brIsl I2%,K6% 22A,2C +bristled 'brIsld Ic%,Id% 22A,2C +bristles 'brIslz Ia%,Kj% 22A,2C +bristlier 'brIslI@R Or% 3 +bristliest 'brIslIIst Os$ 3 +bristling 'brIslIN Ib% 22A,2C +bristly 'brIslI OD% 2 +brittle 'brItl OA% 2 +broach br@UtS J1% 12C,6A,15B +broached br@UtSt Jc%,Jd% 12C,6A,15B +broaches 'br@UtSIz Ja% 22C,6A,15B +broaching 'br@UtSIN Jb% 22C,6A,15B +broad brOd K6%,OC% 1 +broad-minded brOd-'maIndId OA% 3 +broad-mindedness brOd-'maIndIdnIs L@% 4 +broadcast 'brOdkAst J0%,Jc%,Jd%,K6%,Pu% 22A,6A +broadcasted 'brOdkAstId Jc%,Jd% 32A,6A +broadcasting 'brOdkAstIN Jb%,L@%,OA% 32A,6A +broadcasts 'brOdkAsts Ja%,Kj% 22A,6A +broadcloth 'brOdkl0T L@$ 2 +broaden 'brOdn J0% 22A,2C,6A,15B +broadened 'brOdnd Jc%,Jd% 22A,2C,6A,15B +broadening 'brOdnIN Jb% 22A,2C,6A,15B +broadens 'brOdnz Ja% 22A,2C,6A,15B +broader 'brOd@R Or% 2 +broadest 'brOdIst Os% 2 +broadly 'brOdlI Pu% 2 +broadness 'brOdn@s L@% 2 +broads brOdz Kj% 1 +broadsheet 'brOdSit K6% 2 +broadsheets 'brOdSits Kj% 2 +broadside 'brOdsaId K6% 2 +broadsides 'brOdsaIdz Kj% 2 +broadways 'brOdweIz Pu$ 2 +broadwise 'brOdwaIz Pu$ 2 +brocade br@'keId H2$,M6$ 26A +brocaded br@'keIdId Hc$,Hd$ 36A +brocades br@'keIdz Ha$,Mj$ 26A +brocading br@'keIdIN Hb$ 36A +broccoli 'br0k@lI L@% 3 +brochure 'br@US@R K6% 2 +brochures 'br@US@z Kj% 2 +brogue br@Ug K6% 1 +brogues br@Ugz Kj% 1 +broil broIl J0% 12A,6A +broiled broIld Jc%,Jd% 12A,6A +broiler 'broIl@R K6% 2 +broilers 'broIl@z Kj% 2 +broiling 'broIlIN Jb% 22A,6A +broils broIlz Ja% 12A,6A +broke br@Uk Jc%,Op% 12A,2C,2D,3A,6A,15A,15B,22 +broken 'br@Uk@n Jd% 22A,2C,2D,3A,6A,15A,15B,22 +broken-hearted ,br@Uk@n-'hAtId OA% 4 +broker 'br@Uk@R K6% 2 +brokerage 'br@Uk@rIdZ L@% 3 +brokers 'br@Uk@z Kj% 2 +brollies 'br0lIz Kj% 2 +brolly 'br0lI K8% 2 +bromide 'br@UmaId M6% 2 +bromides 'br@UmaIdz Mj% 2 +bromine 'br@Umin L@$ 2 +bronchi 'br0NkaI Kj$ 2 +bronchial 'br0NkI@l OA% 3 +bronchitic br0N'kItIk OA% 3 +bronchitis br0N'kaItIs L@% 3 +bronchus 'br0Nk@s Ki$ 2 +bronco 'br0Nk@U K6% 2 +broncos 'br0Nk@Uz Kj$ 2 +bronze br0nz J2$,M6% 12A,6A +bronzed br0nzd Jc$,Jd% 12A,6A +bronzes 'br0nzIz Ja$,Mj% 22A,6A +bronzing 'br0nzIN Jb$ 22A,6A +brooch br@UtS K7% 1 +brooches 'br@UtSIz Kj% 2 +brood brud I0%,K6% 12A,2C,3A +brood-hen 'brud-hen K6$ 2 +brood-hens 'brud-henz Kj$ 2 +brood-mare 'brud-me@R K6% 2 +brood-mares 'brud-me@z Kj% 2 +brooded 'brudId Ic%,Id% 22A,2C,3A +broodier 'brudI@R Or$ 3 +broodiest 'brudIIst Os$ 3 +brooding 'brudIN Ib% 22A,2C,3A +broods brudz Ia%,Kj% 12A,2C,3A +broody 'brudI OD% 2 +brook brUk H0$,K6% 16A,6B +brooked brUkt Hc$,Hd$ 16A,6B +brooking 'brUkIN Hb$ 26A,6B +brooks brUks Ha$,Kj% 16A,6B +broom brum M6% 1 +brooms brumz Mj% 1 +broomstick 'brumstIk K6% 2 +broomsticks 'brumstIks Kj% 2 +broth br0T L@% 1 +brothel 'br0Tl K6% 2 +brothels 'br0Tlz Kj% 2 +brother 'brVD@R K6% 2 +brother-in-law 'brVD@r-In-lO Ki% 4 +brotherhood 'brVD@hUd M6% 3 +brotherhoods 'brVD@hUdz Mj$ 3 +brotherly 'brVD@lI OA% 3 +brothers 'brVD@z Kj% 2 +brothers-in-law 'brVD@z-In-lO Kj% 4 +brougham 'bru@m K6$ 2 +broughams 'bru@mz Kj$ 2 +brought brOt Hc*,Hd* 16A,12A,12C,13A,14,15B,17,19B +brouhaha 'bruhAhA K6$ 3 +brouhahas 'bruhAhAz Kj$ 3 +brow braU K6% 1 +browbeat 'braUbit H5%,Hc% 26A,14 +browbeaten 'braUbitn Hd% 36A,14 +browbeating 'braUbitIN Hb% 36A,14 +browbeats 'braUbits Ha% 26A,14 +brown braUn J0%,OC% 12A,6A +browned braUnd Jc%,Jd% 12A,6A +browner 'braUn@R Or% 2 +brownest 'braUnIst Os% 2 +brownie 'braUnI K6% 2 +brownies 'braUnIz Kj% 2 +browning 'braUnIN Jb% 22A,6A +brownish 'braUnIS OA% 2 +browns braUnz Ja% 12A,6A +brownstone 'braUnst@Un M6$ 2 +brownstones 'braUnst@Unz Mj$ 2 +brows braUz Kj% 1 +browse braUz I2%,K6% 12A,2C +browsed braUzd Ic%,Id% 12A,2C +browses 'braUzIz Ia%,Kj% 22A,2C +browsing 'braUzIN Ib% 22A,2C +bruin 'bruIn K6$ 2 +bruins 'bruInz Kj$ 2 +bruise bruz J2%,K6% 12A,6A +bruised bruzd Jc%,Jd% 12A,6A +bruiser 'bruz@R K6% 2 +bruisers 'bruz@z Kj% 2 +bruises 'bruzIz Ja%,Kj% 22A,6A +bruising 'bruzIN Jb% 22A,6A +bruit brut H0$ 115B +bruited 'brutId Hc$,Hd$ 215B +bruiting 'brutIN Hb$ 215B +bruits bruts Ha$ 115B +brunch brVntS K7% 1 +brunches 'brVntSIz Kj$ 2 +brunette bru'net K6% 2 +brunettes bru'nets Kj% 2 +brunt brVnt K6% 1 +brunts brVnts Kj$ 1 +brush brVS J1%,M7% 12A,2C,6A,15B,22 +brush-off 'brVS-0f K6% 2 +brush-offs 'brVS-0fs Kj$ 2 +brush-up 'brVS-Vp K6% 2 +brush-ups 'brVS-Vps Kj% 2 +brushed brVSt Jc%,Jd% 12A,2C,6A,15B,22 +brushes 'brVSIz Ja%,Mj% 22A,2C,6A,15B,22 +brushing 'brVSIN Jb% 22A,2C,6A,15B,22 +brushwood 'brVSwUd L@% 2 +brushwork 'brVSw3k K6% 2 +brushworks 'brVSw3ks Kj$ 2 +brusque brusk OA% 1 +brusquely 'brusklI Pu% 2 +brusqueness 'bruskn@s L@% 2 +brutal 'brutl OA% 2 +brutalities bru't&lItIz Mj$ 4 +brutality bru't&lItI M8% 4 +brutalize 'brut@laIz H2% 36A +brutalized 'brut@laIzd Hc%,Hd% 36A +brutalizes 'brut@laIzIz Ha% 46A +brutalizing 'brut@laIzIN Hb% 46A +brutally 'brut@lI Pu% 3 +brute brut K6% 1 +brutes bruts Kj% 1 +brutish 'brutIS OA% 2 +brutishly 'brutISlI Pu% 3 +bubble 'bVbl I2%,K6% 22A,2C +bubbled 'bVbld Ic%,Id% 22A,2C +bubbles 'bVblz Ia%,Kj% 22A,2C +bubblier 'bVblI@R Or% 3 +bubbliest 'bVblIIst Os% 3 +bubbling 'bVblIN Ib% 22A,2C +bubbly 'bVblI L@%,OD% 2 +bubonic bju'b0nIk OA$ 3 +buccaneer ,bVk@'nI@R K6% 3 +buccaneers ,bVk@'nI@z Kj% 3 +buck bVk J0%,K6% 12A,2C,6A,15B +bucked bVkt Jc%,Jd% 12A,2C,6A,15B +bucket 'bVkIt I0%,K6% 2 +bucketed 'bVkItId Ic%,Id% 3 +bucketful 'bVkItfUl K6% 3 +bucketfuls 'bVkItfUlz Kj% 3 +bucketing 'bVkItIN Ib% 3 +buckets 'bVkIts Ia%,Kj% 2 +bucking 'bVkIN Jb% 22A,2C,6A,15B +buckle 'bVkl J2%,K6% 22A,2C,6A,15B +buckled 'bVkld Jc%,Jd% 22A,2C,6A,15B +buckler 'bVkl@R K6$ 2 +bucklers 'bVkl@z Kj$ 2 +buckles 'bVklz Ja%,Kj% 22A,2C,6A,15B +buckling 'bVklIN Jb% 22A,2C,6A,15B +buckram 'bVkr@m L@$ 2 +bucks bVks Ja%,Kj% 12A,2C,6A,15B +buckshot 'bVkS0t L@% 2 +buckskin 'bVkskIn L@% 2 +buckteeth 'bVktiT Kj% 2 +bucktooth 'bVktuT Ki$ 2 +buckwheat 'bVkwit L@% 2 +bucolic bju'k0lIk OA% 3 +bucolics bju'k0lIks Lk$ 3 +bud bVd I4%,K6% 1 +budded 'bVdId Ic%,Id% 2 +buddies 'bVdIz Kj% 2 +budding 'bVdIN Ib%,OA% 2 +buddy 'bVdI K8% 2 +budge bVdZ J2% 12A,2C,6A +budged bVdZd Jc%,Jd% 12A,2C,6A +budgerigar 'bVdZ@rIgAR K6% 4 +budgerigars 'bVdZ@rIgAz Kj% 4 +budges 'bVdZIz Ja% 22A,2C,6A +budget 'bVdZ@t I0%,K6% 23A +budgetary 'bVdZ@t@rI OA% 4 +budgeted 'bVdZ@tId Ic%,Id% 33A +budgeting 'bVdZ@tIN Ib% 33A +budgets 'bVdZ@ts Ia%,Kj% 23A +budgie 'bVdZI K6% 2 +budgies 'bVdZIz Kj% 2 +budging 'bVdZIN Jb% 22A,2C,6A +buds bVdz Ia%,Kj% 1 +buff bVf H0$,M6$ 1 +buffalo 'bVf@l@U K9% 3 +buffalos 'bVf@l@Uz Kj% 3 +buffed bVft Hc$,Hd$ 1 +buffer 'bVf@R K6% 2 +buffers 'bVf@z Kj% 2 +buffet 'bUfeI K6% 2 +buffet 'bVfIt J0%,K6$ 23A,6A +buffeted 'bVfItId Jc%,Jd% 33A,6A +buffeting 'bVfItIN Jb% 33A,6A +buffets 'bUfeIz Kj% 2 +buffets 'bVfIts Ja%,Kj$ 23A,6A +buffing 'bVfIN Hb$ 2 +buffoon b@'fun K6% 2 +buffoonery b@'fun@rI L@% 4 +buffoons b@'funz Kj% 2 +buffs bVfs Ha$,Mj$ 1 +bug bVg H4%,K6% 16A +bug-hunter 'bVg-hVnt@R K6$ 3 +bug-hunters 'bVg-hVnt@z Kj$ 3 +bugaboo 'bVg@bu K6$ 3 +bugaboos 'bVg@buz Kj$ 3 +bugbear 'bVgbe@R K6% 2 +bugbears 'bVgbe@z Kj$ 2 +bugged bVgd Hc%,Hd% 16A +bugger 'bVg@R J0%,K6% 26A +bugger-all ,bVg@r-'Ol L@% 3 +buggered 'bVg@d Jc%,Jd% 26A +buggering 'bVg@rIN Jb% 36A +buggers 'bVg@z Ja%,Kj% 26A +buggery 'bVg@rI L@% 3 +buggies 'bVgIz Kj% 2 +bugging 'bVgIN Hb% 26A +buggy 'bVgI K8% 2 +bugle 'bjugl K6% 2 +bugler 'bjugl@R K6% 2 +buglers 'bjugl@z Kj% 2 +bugles 'bjuglz Kj% 2 +bugs bVgz Ha%,Kj% 16A +buhl bul L@$ 1 +build bIld J5%,L@% 12C,3A,6A,12B,13B,14,15B +build-up 'bIld-Vp K6% 2 +build-ups 'bIld-Vps Kj$ 2 +builder 'bIld@R K6% 2 +builders 'bIld@z Kj% 2 +building 'bIldIN Jb%,M6% 22C,3A,6A,12B,13B,14,15B +building-societies 'bIldIN-s@,saI@tIz Kj% 6 +building-society 'bIldIN-s@,saI@tI K8% 6 +buildings 'bIldINz Mj% 2 +builds bIldz Ja% 12C,3A,6A,12B,13B,14,15B +built bIlt Jc%,Jd% 12C,3A,6A,12B,13B,14,15B +built-in bIlt-'In OA% 2 +built-up bIlt-'Vp OA% 2 +bulb bVlb K6% 1 +bulbous 'bVlb@s OA% 2 +bulbs bVlbz Kj% 1 +bulbul 'bUlbUl K6$ 2 +bulbuls 'bUlbUlz Kj$ 2 +bulge bVldZ J2%,K6% 12A,2C,6A +bulged bVldZd Jc%,Jd% 12A,2C,6A +bulges 'bVldZIz Ja%,Kj% 22A,2C,6A +bulging 'bVldZIN Jb% 22A,2C,6A +bulk bVlk I0%,L@% 1 +bulked bVlkt Ic%,Id% 1 +bulkhead 'bVlkhed K6% 2 +bulkheads 'bVlkhedz Kj% 2 +bulkier 'bVlkI@R Or% 3 +bulkiest 'bVlkIIst Os% 3 +bulking 'bVlkIN Ib% 2 +bulks bVlks Ia% 1 +bulky 'bVlkI OD% 2 +bull bUl K6% 1 +bull's-eye 'bUlz-aI K6% 2 +bull's-eyes 'bUlz-aIz Kj% 2 +bull-headed 'bUl-hedId OA% 3 +bull-neck bUl-'nek K6% 2 +bull-necks bUl-'neks Kj$ 2 +bull-terrier bUl-'terI@R K6% 4 +bull-terriers bUl-'terI@z Kj% 4 +bulldog 'bUld0g K6% 2 +bulldogs 'bUld0gz Kj% 2 +bulldoze 'bUld@Uz H2% 26A,14 +bulldozed 'bUld@Uzd Hc%,Hd% 26A,14 +bulldozer 'bUld@Uz@R K6% 3 +bulldozers 'bUld@Uz@z Kj% 3 +bulldozes 'bUld@UzIz Ha% 36A,14 +bulldozing 'bUld@UzIN Hb% 36A,14 +bullet 'bUlIt K6% 2 +bullet-headed ,bUlIt-'hedId OA% 4 +bulletin 'bUl@tIn K6% 3 +bulletins 'bUl@tInz Kj% 3 +bulletproof 'bUlItpruf OA% 3 +bullets 'bUlIts Kj% 2 +bullfight 'bUlfaIt K6% 2 +bullfighter 'bUlfaIt@R K6% 3 +bullfighters 'bUlfaIt@z Kj% 3 +bullfights 'bUlfaIts Kj% 2 +bullfinch 'bUlfIntS K7% 2 +bullfinches 'bUlfIntSIz Kj% 3 +bullfrog 'bUlfr0g K6% 2 +bullfrogs 'bUlfr0gz Kj% 2 +bullied 'bUlId Jc%,Jd% 22C,6A,14 +bullies 'bUlIz Ja%,Mj% 22C,6A,14 +bullion 'bUlI@n L@% 3 +bullock 'bUl@k K6% 2 +bullocks 'bUl@ks Kj% 2 +bullring 'bUlrIN K6% 2 +bullrings 'bUlrINz Kj% 2 +bulls bUlz Kj% 1 +bullshit 'bUlSIt I4%,L@% 2 +bullshits 'bUlSIts Ia% 2 +bullshitted 'bUlSItId Ic%,Id% 3 +bullshitting 'bUlSItIN Ib% 3 +bully 'bUlI J3%,M8%,OA$ 22C,6A,14 +bullying 'bUlIIN Jb% 32C,6A,14 +bulrush 'bUlrVS K7% 2 +bulrushes 'bUlrVSIz Kj% 3 +bulwark 'bUlw@k K6% 2 +bulwarks 'bUlw@ks Kj% 2 +bum bVm J4%,K6%,OA% 12C,6A,14 +bumblebee 'bVmblbi K6% 3 +bumblebees 'bVmblbiz Kj% 3 +bumboat 'bVmb@Ut K6$ 2 +bumboats 'bVmb@Uts Kj$ 2 +bummed bVmd Jc%,Jd% 12C,6A,14 +bumming 'bVmIN Jb% 22C,6A,14 +bump bVmp J0%,K6%,Pu% 12C,3A,6A,14,15B +bumped bVmpt Jc%,Jd% 12C,3A,6A,14,15B +bumper 'bVmp@R K6% 2 +bumpers 'bVmp@z Kj% 2 +bumpier 'bVmpI@R Or% 3 +bumpiest 'bVmpIIst Os% 3 +bumping 'bVmpIN Jb% 22C,3A,6A,14,15B +bumpkin 'bVmpkIn K6% 2 +bumpkins 'bVmpkInz Kj% 2 +bumps bVmps Ja%,Kj% 12C,3A,6A,14,15B +bumptious 'bVmpS@s OA% 2 +bumptiously 'bVmpS@slI Pu% 3 +bumptiousness 'bVmpS@sn@s L@% 3 +bumpy 'bVmpI OD% 2 +bums bVmz Ja%,Kj% 12C,6A,14 +bun bVn K6% 1 +buna 'bun@ L@$ 2 +bunch bVntS J1%,K7% 12A,2C,15B +bunched bVntSt Jc%,Jd% 12A,2C,15B +bunches 'bVntSIz Ja%,Kj% 22A,2C,15B +bunching 'bVntSIN Jb% 22A,2C,15B +bundle 'bVndl J2%,K6% 22C,15A,15B +bundled 'bVndld Jc%,Jd% 22C,15A,15B +bundles 'bVndlz Ja%,Kj% 22C,15A,15B +bundling 'bVndlIN Jb% 22C,15A,15B +bung bVN H0%,K6% 16A,15B +bung-hole 'bVN-h@Ul K6% 2 +bung-holes 'bVN-h@Ulz Kj% 2 +bungaloid 'bVNg@loId OA$ 3 +bungalow 'bVNg@l@U K6% 3 +bungalows 'bVNg@l@Uz Kj% 3 +bunged bVNd Hc%,Hd% 16A,15B +bunging 'bVNIN Hb% 26A,15B +bungle 'bVNgl J2%,K6% 22A,6A +bungled 'bVNgld Jc%,Jd% 22A,6A +bungler 'bVNgl@R K6% 2 +bunglers 'bVNgl@z Kj% 2 +bungles 'bVNglz Ja%,Kj% 22A,6A +bungling 'bVNglIN Jb% 22A,6A +bungs bVNz Ha%,Kj% 16A,15B +bunion 'bVnI@n K6% 2 +bunions 'bVnI@nz Kj% 2 +bunk bVNk I0$,M6% 1 +bunked bVNkt Ic$,Id$ 1 +bunker 'bVNk@R J0%,K6% 22A,6A +bunkered 'bVNk@d Jc$,Jd$ 22A,6A +bunkering 'bVNk@rIN Jb$ 32A,6A +bunkers 'bVNk@z Ja$,Kj% 22A,6A +bunking 'bVNkIN Ib$ 2 +bunks bVNks Ia$,Mj% 1 +bunkum 'bVNk@m L@% 2 +bunnies 'bVnIz Kj% 2 +bunny 'bVnI K8% 2 +buns bVnz Kj% 1 +bunting 'bVntIN L@% 2 +buoy boI I0%,K6% 16A,15B +buoyancy 'boI@nsI L@% 3 +buoyant 'boI@nt OA% 2 +buoyantly 'boI@ntlI Pu% 3 +buoyed boId Ic%,Id% 26A,15B +buoying 'boIIN Ib% 26A,15B +buoys boIz Ia%,Kj% 16A,15B +bur b3R K6$ 1 +burble 'b3bl I2% 2 +burbled 'b3bld Ic%,Id% 2 +burbles 'b3blz Ia% 2 +burbling 'b3blIN Ib% 2 +burden 'b3dn H0%,M6% 26A,14 +burdened 'b3dnd Hc%,Hd% 26A,14 +burdening 'b3dnIN Hb% 26A,14 +burdens 'b3dnz Ha%,Mj% 26A,14 +burdensome 'b3dns@m OA% 3 +burdock 'b3d0k K6% 2 +burdocks 'b3d0ks Kj$ 2 +bureau 'bjU@r@U Ki% 2 +bureaucracies bjU@'r0kr@sIz Mj% 4 +bureaucracy bjU@'r0kr@sI M8% 4 +bureaucrat 'bjU@r@kr&t K6% 3 +bureaucratic ,bjU@r@'kr&tIk OA% 4 +bureaucratically ,bjU@r@'kr&tIklI Pu% 5 +bureaucrats 'bjU@r@kr&ts Kj% 3 +bureaux 'bjU@r@Uz Kj% 2 +burette bjU@'ret K6$ 2 +burettes bjU@'rets Kj$ 2 +burg b3g K6$ 1 +burgeon 'b3dZ@n I0% 2 +burgeoned 'b3dZ@nd Ic%,Id% 2 +burgeoning 'b3dZ@nIN Ib% 3 +burgeons 'b3dZ@nz Ia% 2 +burgess 'b3dZIs K7$ 2 +burgesses 'b3dZIsIz Kj$ 3 +burgh 'bVr@ K6$ 2 +burgher 'b3g@R K6% 2 +burghers 'b3g@z Kj% 2 +burghs 'bVr@z Kj$ 2 +burglar 'b3gl@R K6% 2 +burglar-alarm 'b3gl@r-@lAm K6% 4 +burglar-alarms 'b3gl@r-@lAmz Kj% 4 +burglar-proof 'b3gl@r-pruf OA% 3 +burglaries 'b3gl@rIz Mj% 3 +burglarious b3'gle@rI@s OA$ 4 +burglars 'b3gl@z Kj% 2 +burglary 'b3gl@rI M8% 3 +burgle 'b3gl J2% 22A,6A +burgled 'b3gld Jc%,Jd% 22A,6A +burgles 'b3glz Ja% 22A,6A +burgling 'b3glIN Jb% 22A,6A +burgomaster 'b3g@mAst@R K6% 4 +burgomasters 'b3g@mAst@z Kj% 4 +burgs b3gz Kj$ 1 +burial 'berI@l M6% 3 +burial-ground 'berI@l-graUnd K6% 4 +burial-grounds 'berI@l-graUndz Kj% 4 +burials 'berI@lz Mj% 3 +buried 'berId Hc%,Hd% 26A,15A,22 +buries 'berIz Ha% 26A,15A,22 +burke b3k H2$ 16A +burked b3kt Hc$,Hd$ 16A +burkes b3ks Ha$ 16A +burking 'b3kIN Hb$ 26A +burlap 'b3l&p L@$ 2 +burlesque b3'lesk H2$,M6% 26A +burlesqued b3'leskt Hc$,Hd$ 26A +burlesques b3'lesks Ha$,Mj% 26A +burlesquing b3'leskIN Hb$ 36A +burlier 'b3lI@R Or% 3 +burliest 'b3lIIst Os% 3 +burly 'b3lI OD% 2 +burn b3n J0%,K6% 12A,2B,2C,4A,6A,14,15B +burn-up 'b3n-Vp K6% 2 +burn-ups 'b3n-Vps Kj$ 2 +burned b3nd Jc%,Jd% 12A,2B,2C,4A,6A,14,15B +burner 'b3n@R K6% 2 +burners 'b3n@z Kj% 2 +burning 'b3nIN Jb%,OA% 22A,2B,2C,4A,6A,14,15B +burnish 'b3nIS J1% 22A,6A +burnished 'b3nISt Jc%,Jd% 22A,6A +burnishes 'b3nISIz Ja% 32A,6A +burnishing 'b3nISIN Jb% 32A,6A +burnouse b3'nus K6$ 2 +burnouses b3'nusIz Kj$ 3 +burns b3nz Ja%,Kj% 12A,2B,2C,4A,6A,14,15B +burnt b3nt Jc%,Jd% 12A,2B,2C,4A,6A,14,15B +burp b3p J0%,K6% 12A,6A +burped b3pt Jc%,Jd% 12A,6A +burping 'b3pIN Jb% 22A,6A +burps b3ps Ja%,Kj% 12A,6A +burr b3R K6$ 1 +burr-drill 'b3-drIl K6$ 2 +burr-drills 'b3-drIlz Kj$ 2 +burrow 'bVr@U J0%,K6% 22A,2C,6A +burrowed 'bVr@Ud Jc%,Jd% 22A,2C,6A +burrowing 'bVr@UIN Jb% 32A,2C,6A +burrows 'bVr@Uz Ja%,Kj% 22A,2C,6A +burrs b3z Kj$ 1 +burs b3z Kj$ 1 +bursar 'b3s@R K6% 2 +bursaries 'b3s@rIz Kj% 3 +bursars 'b3s@z Kj% 2 +bursary 'b3s@rI K8% 3 +burst b3st J5%,Jc%,Jd%,K6% 12A,2C,3A,6A,22 +bursting 'b3stIN Jb% 22A,2C,3A,6A,22 +bursts b3sts Ja%,Kj% 12A,2C,3A,6A,22 +burthen 'b3D@n H0$,K6$ 2 +burthened 'b3D@nd Hc$,Hd$ 2 +burthening 'b3D@nIN Hb$ 3 +burthens 'b3D@nz Ha$,Kj$ 2 +burton 'b3tn K6$ 2 +burtons 'b3tnz Kj$ 2 +bury 'berI H3% 26A,15A,22 +burying 'berIIN Hb% 36A,15A,22 +burying-ground 'berIIN-graUnd K6% 4 +burying-grounds 'berIIN-graUndz Kj% 4 +bus bVs J1%,K7% 12A,6A +busbies 'bVzbIz Kj% 2 +busby 'bVzbI K8% 2 +bused bVst Jc$,Jd$ 12A,6A +buses 'bVsIz Ja$,Kj% 22A,6A +bush bUS M7% 1 +bushel 'bUSl K6% 2 +bushels 'bUSlz Kj% 2 +bushes 'bUSIz Mj% 2 +bushy 'bUSI OA% 2 +busied 'bIzId Hc%,Hd% 26A,14 +busier 'bIzI@R Or% 3 +busies 'bIzIz Ha% 26A,14 +busiest 'bIzIIst Os% 3 +busily 'bIzIlI Pu% 3 +business 'bIzn@s M7* 2 +businesses 'bIzn@sIz Mj% 3 +businesslike 'bIzn@slaIk OA% 3 +businessman 'bIzn@sm&n Ki% 3 +businessmen 'bIzn@smen Kj% 3 +busing 'bVsIN Jb$ 22A,6A +busker 'bVsk@R K6% 2 +buskers 'bVsk@z Kj% 2 +busman 'bVsm@n Ki% 2 +busmen 'bVsm@n Kj% 2 +bussing 'bVsIN Jb% 22A,6A +bust bVst J0%,Jc%,Jd%,K6% 1 +bust-up 'bVst-Vp K6% 2 +bust-ups 'bVst-Vps Kj$ 2 +bustard 'bVst@d K6$ 2 +bustards 'bVst@dz Kj$ 2 +busted 'bVstId Jc%,Jd% 2 +buster 'bVst@R K6% 2 +busters 'bVst@z Kj$ 2 +busting 'bVstIN Jb% 2 +bustle 'bVsl J2%,M6% 22A,2C,15B +bustled 'bVsld Jc%,Jd% 22A,2C,15B +bustles 'bVslz Ja%,Mj% 22A,2C,15B +bustling 'bVslIN Jb% 22A,2C,15B +busts bVsts Ja%,Kj% 1 +busy 'bIzI H3%,OD% 26A,14 +busybodies 'bIzIb0dIz Kj% 4 +busybody 'bIzIb0dI K8% 4 +busying 'bIzIIN Hb% 36A,14 +but bVt Pu*,Qz$,T-*,V-* 1 +butane 'bjuteIn L@% 2 +butch bUtS OA% 1 +butcher 'bUtS@R H0%,K6% 26A +butchered 'bUtS@d Hc%,Hd% 26A +butchering 'bUtS@rIN Hb% 36A +butchers 'bUtS@z Ha%,Kj% 26A +butchery 'bUtS@rI L@% 3 +butler 'bVtl@R K6% 2 +butlers 'bVtl@z Kj% 2 +butt bVt J0%,K6% 12C,3A,6A,15A +butted 'bVtId Jc%,Jd% 22C,3A,6A,15A +butter 'bVt@R H0%,L@% 26A,15B +butterbean 'bVt@bin K6% 3 +butterbeans 'bVt@binz Kj% 3 +buttercup 'bVt@kVp K6% 3 +buttercups 'bVt@kVps Kj% 3 +buttered 'bVt@d Hc%,Hd% 26A,15B +butterfingers 'bVt@fINg@z Ki% 4 +butterflies 'bVt@flaIz Kj% 3 +butterfly 'bVt@flaI K8% 3 +butteries 'bVt@rIz Kj$ 3 +buttering 'bVt@rIN Hb% 36A,15B +buttermilk 'bVt@mIlk L@% 3 +butters 'bVt@z Ha% 26A,15B +butterscotch 'bVt@sk0tS L@% 3 +buttery 'bVt@rI K8% 3 +butting 'bVtIN Jb% 22C,3A,6A,15A +buttock 'bVt@k K6% 2 +buttocks 'bVt@ks Kj% 2 +button 'bVtn J0%,K6% 22A,6A,15B +buttoned 'bVtnd Jc%,Jd% 22A,6A,15B +buttoned-up ,bVtnd-'Vp OA% 3 +buttonhole 'bVtnh@Ul H2%,K6% 36A +buttonholed 'bVtnh@Uld Hc%,Hd% 36A +buttonholes 'bVtnh@Ulz Ha%,Kj% 36A +buttonholing 'bVtnh@UlIN Hb% 46A +buttonhook 'bVtnhUk K6$ 3 +buttonhooks 'bVtnhUks Kj$ 3 +buttoning 'bVtnIN Jb% 32A,6A,15B +buttons 'bVtnz Ja%,Kj% 22A,6A,15B +buttonwood 'bVtnwUd M6$ 3 +buttonwoods 'bVtnwUdz Mj$ 3 +buttress 'bVtr@s H1%,K7% 26A,15B +buttressed 'bVtr@st Hc%,Hd% 26A,15B +buttresses 'bVtr@sIz Ha%,Kj% 36A,15B +buttressing 'bVtr@sIN Hb% 36A,15B +butts bVts Ja%,Kj% 12C,3A,6A,15A +buxom 'bVks@m OA% 2 +buy baI J5%,K6% 12A,2C,6A,12B,13B,15B +buyer 'baI@R K6% 2 +buyers 'baI@z Kj% 2 +buying 'baIIN Jb% 22A,2C,6A,12B,13B,15B +buys baIz Ja%,Kj% 12A,2C,6A,12B,13B,15B +buzz bVz J1%,K7% 12A,2C,6A +buzzard 'bVz@d K6% 2 +buzzards 'bVz@dz Kj% 2 +buzzed bVzd Jc%,Jd% 12A,2C,6A +buzzer 'bVz@R K6% 2 +buzzers 'bVz@z Kj% 2 +buzzes 'bVzIz Ja%,Kj% 22A,2C,6A +buzzing 'bVzIN Jb% 22A,2C,6A +by baI P+*,T-* 1 +by-election 'baI-IlekSn K6% 4 +by-elections 'baI-IlekSnz Kj% 4 +bye baI K6% 1 +bye-bye 'baI-baI K6% 2 +bye-bye ,baI-'baI W-% 2 +bye-byes 'baI-baIz Kj% 2 +bye-law 'baI-lO K6% 2 +bye-laws 'baI-lOz Kj% 2 +byes baIz Kj% 1 +bygone 'baIg0n OA% 2 +bygones 'baIg0nz Kj% 2 +bylaw 'baIlO K6% 2 +bylaws 'baIlOz Kj% 2 +bypass 'baIpAs H1%,K7% 26A +bypassed 'baIpAst Hc%,Hd% 26A +bypasses 'baIpAsIz Ha%,Kj% 36A +bypassing 'baIpAsIN Hb% 36A +bypath 'baIpAT K6$ 2 +bypaths 'baIpADz Kj$ 2 +byplay 'baIpleI L@% 2 +byproduct 'baIpr0dVkt K6% 3 +byproducts 'baIpr0dVkts Kj% 3 +byroad 'baIr@Ud K6% 2 +byroads 'baIr@Udz Kj% 2 +bystander 'baIst&nd@R K6% 3 +bystanders 'baIst&nd@z Kj% 3 +byway 'baIweI K6% 2 +byways 'baIweIz Kj% 2 +byword 'baIw3d K6% 2 +bywords 'baIw3dz Kj% 2 +c si Ki$ 1 +c's siz Kj$ 1 +ca'canny ,kA'k&nI Ki$ 3 +cab k&b K6% 1 +cab-rank 'k&b-r&Nk K6% 2 +cab-ranks 'k&b-r&Nks Kj% 2 +cabal k@'b&l K6$ 2 +cabals k@'b&lz Kj$ 2 +cabaret 'k&b@reI K6% 3 +cabarets 'k&b@reIz Kj% 3 +cabbage 'k&bIdZ M6% 2 +cabbages 'k&bIdZIz Mj% 3 +cabbies 'k&bIz Kj% 2 +cabby 'k&bI K8% 2 +caber 'keIb@R K6$ 2 +cabers 'keIb@z Kj$ 2 +cabin 'k&bIn K6% 2 +cabinet 'k&bIn@t K6% 3 +cabinet-maker 'k&bIn@t-,meIk@R K6% 5 +cabinet-makers 'k&bIn@t-,meIk@z Kj% 5 +cabinets 'k&bIn@ts Kj% 3 +cabins 'k&bInz Kj% 2 +cable 'keIbl J2%,M6% 22A,6A +cable's-length 'keIblz-leNT K6% 3 +cable's-lengths 'keIblz-leNTs Kj% 3 +cable-car 'keIbl-kAR K6% 3 +cable-cars 'keIbl-kAz Kj% 3 +cable-length 'keIbl-leNT K6$ 3 +cable-lengths 'keIbl-leNTs Kj$ 3 +cable-railway ,keIbl-'reIlweI K6% 4 +cable-railways ,keIbl-'reIlweIz Kj% 4 +cabled 'keIbld Jc%,Jd% 22A,6A +cablegram 'keIblgr&m K6$ 3 +cablegrams 'keIblgr&mz Kj$ 3 +cables 'keIblz Ja%,Mj% 22A,6A +cabling 'keIblIN Jb% 22A,6A +cabman 'k&bm&n Ki% 2 +cabmen 'k&bmen Kj% 2 +caboodle k@'budl K6% 3 +caboodles k@'budlz Kj$ 3 +caboose k@'bus K6$ 2 +cabooses k@'busIz Kj$ 3 +cabs k&bz Kj% 1 +cabstand 'k&bst&nd K6$ 2 +cabstands 'k&bst&ndz Kj$ 2 +cacao k@'kA@U K6$ 3 +cacao-bean k@'kA@U-bin K6$ 4 +cacao-beans k@'kA@U-binz Kj$ 4 +cacao-tree k@'kA@U-tri K6$ 4 +cacao-trees k@'kA@U-triz Kj$ 4 +cacaos k@'kA@Uz Kj$ 3 +cache k&S H2$,K6% 1 +cached k&St Hc$,Hd$ 1 +caches 'k&SIz Ha$,Kj$ 2 +cachet 'k&SeI K6% 2 +cachets 'k&SeIz Kj$ 2 +caching 'k&SIN Hb$ 2 +cachou 'k&Su K6$ 2 +cachous 'k&Suz Kj$ 2 +cackle 'k&kl I2%,M6% 2 +cackled 'k&kld Ic%,Id% 2 +cackler 'k&kl@R K6% 2 +cacklers 'k&kl@z Kj% 2 +cackles 'k&klz Ia%,Mj% 2 +cackling 'k&klIN Ib% 2 +cacophonies k&'k0f@nIz Kj$ 4 +cacophonous k&'k0f@n@s OA% 4 +cacophony k&'k0f@nI K8% 4 +cacti 'k&ktaI Kj% 2 +cactus 'k&kt@s K7% 2 +cactuses 'k&kt@sIz Kj% 3 +cad k&d K6% 1 +cadaver k@'dAv@R K6% 3 +cadaverous k@'d&v@r@s OA% 4 +cadavers k@'dAv@z Kj% 3 +caddie 'k&dI K6% 2 +caddies 'k&dIz Kj% 2 +caddish 'k&dIS OA% 2 +caddy 'k&dI K8% 2 +cadence 'keId@ns K6% 2 +cadences 'keId@nsIz Kj% 3 +cadenza k@'denz@ K6% 3 +cadenzas k@'denz@z Kj% 3 +cadet k@'det K6% 2 +cadets k@'dets Kj% 2 +cadge k&dZ J2% 12A,6A,14 +cadged k&dZd Jc%,Jd% 12A,6A,14 +cadger 'k&dZ@R K6% 2 +cadgers 'k&dZ@z Kj% 2 +cadges 'k&dZIz Ja% 22A,6A,14 +cadging 'k&dZIN Jb% 22A,6A,14 +cadmium 'k&dmI@m L@% 3 +cadre 'kAd@R K6$ 2 +cadres 'kAd@z Kj$ 2 +cads k&dz Kj% 1 +caesura sI'zjU@r@ K6$ 3 +caesuras sI'zjU@r@z Kj$ 3 +caf_e 'k&feI K6% 2 +caf_es 'k&feIz Kj% 2 +cafe-au-lait ,k&feI-@U-'leI K6% 4 +cafe-au-laits ,k&feI-@U-'leIz Kj% 4 +cafeteria ,k&f@'tI@rI@ K6% 5 +cafeterias ,k&f@'tI@rI@z Kj% 5 +caff k&f K6% 1 +caffeine 'k&fin L@% 2 +caffs k&fs Kj% 1 +caftan 'k&ft&n K6% 2 +caftans 'k&ft&nz Kj% 2 +cage keIdZ H2%,K6% 16A +caged keIdZd Hc%,Hd% 16A +cages 'keIdZIz Ha%,Kj% 26A +cagey 'keIdZI OA% 2 +cagily 'keIdZIlI Pu% 3 +caging 'keIdZIN Hb% 26A +cagoule k@'gul K6% 2 +cagoules k@'gulz Kj% 2 +cahoots k@'huts Kj% 2 +caiman 'keIm@n K6$ 2 +caimans 'keIm@nz Kj$ 2 +cairn ke@n K6% 1 +cairns ke@nz Kj% 1 +caisson 'keIsn K6$ 2 +caissons 'keIsnz Kj$ 2 +caitiff 'keItIf K6$ 2 +caitiffs 'keItIfs Kj$ 2 +cajole k@'dZ@Ul H2% 26A,14 +cajoled k@'dZ@Uld Hc%,Hd% 26A,14 +cajolery k@'dZ@Ul@rI L@$ 4 +cajoles k@'dZ@Ulz Ha% 26A,14 +cajoling k@'dZ@UlIN Hb% 36A,14 +cake keIk J2%,M6% 12A,6A +caked keIkt Jc%,Jd% 12A,6A +cakes keIks Ja%,Mj% 12A,6A +caking 'keIkIN Jb% 22A,6A +calabash 'k&l@b&S K7$ 3 +calabashes 'k&l@b&SIz Kj$ 4 +calamities k@'l&mItIz Kj% 4 +calamitous k@'l&mIt@s OA% 4 +calamity k@'l&mItI K8% 4 +calcified 'k&lsIfaId Jc%,Jd% 32A,6A +calcifies 'k&lsIfaIz Ja% 32A,6A +calcify 'k&lsIfaI J3% 32A,6A +calcifying 'k&lsIfaIIN Jb% 42A,6A +calcination ,k&lsI'neISn K6% 4 +calcinations ,k&lsI'neISnz Kj$ 4 +calcine 'k&lsaIn J2$ 22A,6A +calcined 'k&lsaInd Jc$,Jd$ 22A,6A +calcines 'k&lsaInz Ja$ 22A,6A +calcining 'k&lsaInIN Jb$ 32A,6A +calcium 'k&lsI@m L@% 3 +calculable 'k&lkjUl@bl OA% 4 +calculate 'k&lkjUleIt J2% 32A,3A,6A,8,9,10 +calculated 'k&lkjUleItId Jc%,Jd% 42A,3A,6A,8,9,10 +calculates 'k&lkjUleIts Ja% 32A,3A,6A,8,9,10 +calculating 'k&lkjUleItIN Jb%,OA% 42A,3A,6A,8,9,10 +calculation ,k&lkjU'leISn M6% 4 +calculations ,k&lkjU'leISnz Mj% 4 +calculator 'k&lkjUleIt@R K6% 4 +calculators 'k&lkjUleIt@z Kj% 4 +calculi 'k&lkjUlaI Kj$ 3 +calculus 'k&lkjUl@s M7% 3 +calculuses 'k&lkjUl@sIz Mj$ 4 +caldron 'kOldr@n K6$ 2 +caldrons 'kOldr@nz Kj$ 2 +calendar 'k&lInd@R K6% 3 +calendars 'k&lInd@z Kj% 3 +calender 'k&lInd@R H0$,K6$ 36A +calendered 'k&lInd@d Hc$,Hd$ 36A +calendering 'k&lInd@rIN Hb$ 46A +calenders 'k&lInd@z Ha$,Kj$ 36A +calends 'k&l@ndz Kj$ 2 +calf kAf Mi% 1 +calf-love 'kAf-lVv L@% 2 +calibrate 'k&lIbreIt H2% 36A +calibrated 'k&lIbreItId Hc%,Hd% 46A +calibrates 'k&lIbreIts Ha% 36A +calibrating 'k&lIbreItIN Hb% 46A +calibration ,k&lI'breISn M6% 4 +calibrations ,k&lI'breISnz Mj% 4 +calibre 'k&lIb@R M6% 3 +calibres 'k&lIb@z Mj$ 3 +calico 'k&lIk@U L@% 3 +calif 'keIlIf K6$ 2 +califs 'keIlIfs Kj$ 2 +calipers 'k&lIp@z Kj% 3 +caliph 'keIlIf K6% 2 +caliphate 'k&lIfeIt K6$ 3 +caliphates 'k&lIfeIts Kj$ 3 +caliphs 'keIlIfs Kj$ 2 +calisthenics ,k&lIs'TenIks Lk$ 4 +calk kOk H0$,K6$ 1 +calked kOkt Hc$,Hd$ 1 +calking 'kOkIN Hb$ 2 +calks kOks Ha$,Kj$ 1 +call kOl J0%,M6% 12A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +call-box 'kOl-b0ks K7% 2 +call-boxes 'kOl-b0ksIz Kj% 3 +call-girl 'kOl-g3l K6% 2 +call-girls 'kOl-g3lz Kj% 2 +call-over 'kOl-@Uv@R K6$ 3 +call-overs 'kOl-@Uv@z Kj$ 3 +call-up 'kOl-Vp K6% 2 +call-ups 'kOl-Vps Kj$ 2 +called kOld Jc*,Jd* 12A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +caller 'kOl@R K6% 2 +callers 'kOl@z Kj% 2 +calligraphy k@'lIgr@fI L@% 4 +calling 'kOlIN Jb%,K6% 22A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +callings 'kOlINz Kj% 2 +calliope k@'laI@pI K6$ 4 +calliopes k@'laI@pIz Kj$ 4 +callipers 'k&lIp@z Kj$ 3 +callisthenics ,k&lIs'TenIks Lk$ 4 +callosities k&'l0sItIz Kj$ 4 +callosity k&'l0sItI K8$ 4 +callous 'k&l@s OA% 2 +callousness 'k&l@sn@s L@% 3 +callow 'k&l@U OA% 2 +callowness 'k&l@Un@s L@$ 3 +calls kOlz Ja%,Mj% 12A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +callus 'k&l@s K7$ 2 +calluses 'k&l@sIz Kj$ 3 +calm kAm J0%,K6%,OC% 12C,6A,15B +calmed kAmd Jc%,Jd% 12C,6A,15B +calmer 'kAm@R Or% 2 +calmest 'kAmIst Os% 2 +calming 'kAmIN Jb% 22C,6A,15B +calmly 'kAmlI Pu% 2 +calmness 'kAmn@s L@% 2 +calms kAmz Ja%,Kj% 12C,6A,15B +calomel 'k&l@mel L@$ 3 +calorie 'k&l@rI K6% 3 +calories 'k&l@rIz Kj% 3 +calorific ,k&l@'rIfIk OA% 4 +calumniate k@'lVmnIeIt H2$ 46A +calumniated k@'lVmnIeItId Hc$,Hd$ 56A +calumniates k@'lVmnIeIts Ha$ 46A +calumniating k@'lVmnIeItIN Hb$ 56A +calumnies 'k&l@mnIz Mj% 3 +calumny 'k&l@mnI M8% 3 +calve kAv I2% 1 +calved kAvd Ic%,Id% 1 +calves kAvz Ia%,Kj% 1 +calving 'kAvIN Ib% 2 +calyces 'keIlIsiz Kj$ 3 +calypso k@'lIps@U K6% 3 +calypsos k@'lIps@Uz Kj% 3 +calyx 'keIlIks K7$ 2 +calyxes 'keIlIksIz Kj$ 3 +cam k&m K6% 1 +camaraderie ,k&m@'rAd@rI L@% 5 +camber 'k&mb@R J0$,K6% 2 +cambered 'k&mb@d Jc$,Jd% 2 +cambering 'k&mb@rIN Jb$ 3 +cambers 'k&mb@z Ja$,Kj$ 2 +cambric 'keImbrIk L@$ 2 +came keIm Ic* 12A,2B,2C,2D,2E,3A,4A +camel 'k&m@l K6% 2 +camel-hair 'k&m@l-he@R L@% 3 +camellia k@'milI@ K6% 4 +camellias k@'milI@z Kj% 4 +camels 'k&m@lz Kj% 2 +cameo 'k&mI@U K6% 3 +cameos 'k&mI@Uz Kj% 3 +camera 'k&m@r@ K6% 3 +cameraman 'k&m@r@m&n Ki% 4 +cameramen 'k&m@r@men Kj% 4 +cameras 'k&m@r@z Kj% 3 +camion 'k&mI@n K6$ 3 +camions 'k&mI@nz Kj$ 3 +camomile 'k&m@maIl L@% 3 +camouflage 'k&m@flAZ H2%,L@% 36A +camouflaged 'k&m@flAZd Hc$,Hd% 36A +camouflages 'k&m@flAZIz Ha% 46A +camouflaging 'k&m@flAZIN Hb% 46A +camp k&mp J0%,K6%,OA% 12A,2C +camp-bed 'k&mp-bed K6% 2 +camp-beds 'k&mp-bedz Kj% 2 +camp-chair 'k&mp-tSe@R K6$ 2 +camp-chairs 'k&mp-tSe@z Kj$ 2 +camp-fire 'k&mp-faI@R K6% 2 +camp-fires 'k&mp-faI@z Kj% 2 +camp-follower k&mp-'f0l@U@R K6% 4 +camp-followers k&mp-'f0l@U@z Kj% 4 +camp-stool 'k&mp-stul K6% 2 +camp-stools 'k&mp-stulz Kj% 2 +campaign k&m'peIn I0%,K6% 22A,3A +campaigned k&m'peInd Ic%,Id% 22A,3A +campaigner k&m'peIn@R K6% 3 +campaigners k&m'peIn@z Kj% 3 +campaigning k&m'peInIN Ib% 32A,3A +campaigns k&m'peInz Ia%,Kj% 22A,3A +campanile ,k&mp@'nilI K6$ 4 +campaniles ,k&mp@'nilIz Kj$ 4 +campanula k@m'p&njUl@ K6$ 4 +campanulas k@m'p&njUl@z Kj$ 4 +camped k&mpt Jc%,Jd% 12A,2C +camper 'k&mp@R K6% 2 +campers 'k&mp@z Kj% 2 +camphor 'k&mf@R L@% 2 +camphorated 'k&mf@reItId OA% 4 +camping 'k&mpIN Jb%,L@% 22A,2C +campion 'k&mpI@n L@% 3 +camps k&mps Ja%,Kj% 12A,2C +campus 'k&mp@s K7% 2 +campuses 'k&mp@sIz Kj% 3 +cams k&mz Kj% 1 +camshaft 'k&mSAft K6% 2 +camshafts 'k&mSAfts Kj% 2 +can k&n G5*,Ga*,H4%,K6% 15,6A +can't kAnt Gg% 1 +canal k@'n&l K6% 2 +canalization ,k&n@laI'zeISn K6% 5 +canalizations ,k&n@laI'zeISnz Kj$ 5 +canalize 'k&n@laIz H2% 36A,14 +canalized 'k&n@laIzd Hc%,Hd% 36A,14 +canalizes 'k&n@laIzIz Ha% 46A,14 +canalizing 'k&n@laIzIN Hb% 46A,14 +canals k@'n&lz Kj% 2 +canap_e 'k&n@peI K6$ 3 +canap_es 'k&n@peIz Kj$ 3 +canard k&'nAd K6$ 2 +canards k&'nAdz Kj$ 2 +canaries k@'ne@rIz Kj% 3 +canary k@'ne@rI K8% 3 +canary-bird k@'ne@rI-b3d K6$ 4 +canary-birds k@'ne@rI-b3dz Kj$ 4 +canary-wine k@'ne@rI-waIn K6$ 4 +canary-wines k@'ne@rI-waInz Kj$ 4 +canasta k@'n&st@ K6$ 3 +canastas k@'n&st@z Kj$ 3 +cancan 'k&nk&n K6% 2 +cancans 'k&nk&nz Kj% 2 +cancel 'k&ns@l J4% 22C,6A,15B +cancellation ,k&ns@'leISn M6% 4 +cancellations ,k&ns@'leISnz Mj% 4 +cancelled 'k&ns@ld Jc%,Jd% 22C,6A,15B +cancelling 'k&ns@lIN Jb% 32C,6A,15B +cancels 'k&ns@lz Ja% 22C,6A,15B +cancer 'k&ns@R M6% 2 +cancerous 'k&ns@r@s OA% 3 +cancers 'k&ns@z Mj% 2 +candelabra ,k&nd@'lAbr@ Kj% 4 +candelabrum ,k&nd@'lAbr@m Ki$ 4 +candid 'k&ndId OA% 2 +candidate 'k&ndId@t K6% 3 +candidates 'k&ndId@ts Kj% 3 +candidature 'k&ndId@tS@R K6% 4 +candidatures 'k&ndId@tS@z Kj$ 4 +candidly 'k&ndIdlI Pu% 3 +candied 'k&ndId Jc$,Jd%,OA% 22A,6A +candies 'k&ndIz Ja%,Mj% 22A,6A +candle 'k&ndl K6% 2 +candle-power 'k&ndl-paU@R L@% 4 +candlelight 'k&ndl+laIt L@% 3 +candles 'k&ndlz Kj% 2 +candlestick 'k&ndlstIk K6% 3 +candlesticks 'k&ndlstIks Kj% 3 +candlewick 'k&ndlwIk L@% 3 +candour 'k&nd@R L@% 2 +candy 'k&ndI J3$,M8% 22A,6A +candy-floss 'k&ndI-fl0s L@% 3 +candying 'k&ndIIN Jb$ 32A,6A +candytuft 'k&ndItVft K6% 3 +candytufts 'k&ndItVfts Kj$ 3 +cane keIn H2%,M6% 16A +caned keInd Hc%,Hd% 16A +canes keInz Ha%,Mj% 16A +canine 'keInaIn OA% 2 +caning 'keInIN Hb% 26A +canister 'k&nIst@R K6% 3 +canisters 'k&nIst@z Kj% 3 +canker 'k&Nk@R H0$,L@$ 2 +cankered 'k&Nk@d Hc$,Hd$ 2 +cankering 'k&Nk@rIN Hb$ 3 +cankerous 'k&Nk@r@s OA$ 3 +cankers 'k&Nk@z Ha$ 2 +canna 'k&n@ K6$ 2 +cannabis 'k&n@bIs L@% 3 +cannas 'k&n@z Kj$ 2 +canned k&nd Hc%,Hd%,OA% 15,6A +canneries 'k&n@rIz Kj% 3 +cannery 'k&n@rI K8% 3 +cannibal 'k&nIb@l K6% 3 +cannibalism 'k&nIb@lIz@m L@% 5 +cannibalistic ,k&nIb@l'lIstIk OA% 5 +cannibalize 'k&nIb@laIz H2% 4 +cannibalized 'k&nIb@laIzd Hc%,Hd% 4 +cannibalizes 'k&nIb@laIzIz Ha% 5 +cannibalizing 'k&nIb@laIzIN Hb% 5 +cannibals 'k&nIb@lz Kj% 3 +cannier 'k&nI@R Or% 3 +canniest 'k&nIIst Os% 3 +cannily 'k&nIlI Pu% 3 +canning 'k&nIN Hb% 25,6A +cannon 'k&n@n K6% 2 +cannon-fodder 'k&n@n-f0d@R L@% 4 +cannonade ,k&n@'neId K6% 3 +cannonades ,k&n@'neIdz Kj% 3 +cannons 'k&n@nz Kj% 2 +cannot 'k&n@t Gg* 2 +canny 'k&nI OD% 2 +canoe k@'nu H5%,K6% 22A,2C +canoed k@'nud Hc%,Hd% 22A,2C +canoeing k@'nuIN Hb% 32A,2C +canoeist k@'nuIst K6% 3 +canoeists k@'nuIsts Kj% 3 +canoes k@'nuz Ha%,Kj% 22A,2C +canon 'k&n@n K6% 2 +canonical k@'n0nIkl OA% 4 +canonization ,k&n@naI'zeISn K6% 5 +canonizations ,k&n@naI'zeISnz Kj$ 5 +canonize 'k&n@naIz H2% 36A +canonized 'k&n@naIzd Hc%,Hd% 36A +canonizes 'k&n@naIzIz Ha% 46A +canonizing 'k&n@naIzIN Hb% 46A +canons 'k&n@nz Kj% 2 +canopied 'k&n@pId OA% 3 +canopies 'k&n@pIz Kj% 3 +canopy 'k&n@pI K8% 3 +cans k&nz Ha%,Kj% 15,6A +cant k&nt J0%,M6% 12A,2C,6A,15B +cantaloup 'k&nt@lup K6$ 3 +cantaloupe 'k&nt@lup K6% 3 +cantaloupes 'k&nt@lups Kj% 3 +cantaloups 'k&nt@lups Kj$ 3 +cantankerous k&n't&Nk@r@s OA% 4 +cantankerously k&n't&Nk@r@slI Pu% 5 +cantata k&n'tAt@ K6% 3 +cantatas k&n'tAt@z Kj% 3 +canted 'k&ntId Jc$,Jd$ 22A,2C,6A,15B +canteen k&n'tin K6% 2 +canteens k&n'tinz Kj% 2 +canter 'k&nt@R J0%,K6% 2 +cantered 'k&nt@d Jc%,Jd% 2 +cantering 'k&nt@rIN Jb% 3 +canters 'k&nt@z Ja%,Kj% 2 +canticle 'k&ntIkl K6% 3 +canticles 'k&ntIklz Kj% 3 +cantilever 'k&ntIliv@R K6% 4 +cantilevers 'k&ntIliv@z Kj% 4 +canting 'k&ntIN Jb$ 22A,2C,6A,15B +canto 'k&nt@U K6% 2 +canton 'k&nt0n K6% 2 +cantonment k&n'tunm@nt K6$ 3 +cantonments k&n'tunm@nts Kj$ 3 +cantons 'k&nt0nz Kj% 2 +cantor 'k&ntOR K6$ 2 +cantors 'k&ntOz Kj$ 2 +cantos 'k&nt@Uz Kj$ 2 +cants k&nts Ja$,Mj$ 12A,2C,6A,15B +canvas 'k&nv@s M7% 2 +canvases 'k&nv@sIz Mj% 3 +canvass 'k&nv@s J1%,K7% 22A,3A,6A +canvassed 'k&nv@st Jc%,Jd% 22A,3A,6A +canvasses 'k&nv@sIz Ja%,Kj% 32A,3A,6A +canvassing 'k&nv@sIN Jb% 32A,3A,6A +canyon 'k&nj@n K6% 2 +canyons 'k&nj@nz Kj% 2 +cap k&p H4%,K6% 16A +cap-`a-pie ,k&p-@-'pi Pu$ 3 +capabilities ,keIp@'bIlItIz Mj% 5 +capability ,keIp@'bIlItI M8% 5 +capable 'keIp@bl OA% 3 +capably 'keIp@blI Pu% 3 +capacious k@'peIS@s OA% 3 +capacities k@'p&sItIz Mj% 4 +capacity k@'p&sItI M8% 4 +caparison k@'p&rIs@n H0$,K6$ 4 +caparisoned k@'p&rIs@nd Hc$,Hd$ 4 +caparisoning k@'p&rIs@nIN Hb$ 5 +caparisons k@'p&rIs@nz Ha$,Kj$ 4 +cape keIp K6% 1 +caper 'keIp@R I0%,K6% 2 +capered 'keIp@d Ic%,Id% 2 +capering 'keIp@rIN Ib% 3 +capers 'keIp@z Ia%,Kj% 2 +capes keIps Kj% 1 +capillaries k@'pIl@rIz Kj% 4 +capillary k@'pIl@rI K8% 4 +capital 'k&pIt@l M6%,OA% 3 +capitalism 'k&pIt@lIz@m L@%,OA% 5 +capitalist 'k&pIt@lIst K6% 4 +capitalistic ,k&pIt@'lIstIk OA% 5 +capitalists 'k&pIt@lIsts Kj% 4 +capitalization ,k&pIt@laI'zeISn K6% 6 +capitalizations ,k&pIt@laI'zeISnz Kj$ 6 +capitalize 'k&pIt@laIz J2% 43A,6A +capitalized 'k&pIt@laIzd Jc%,Jd% 43A,6A +capitalizes 'k&pIt@laIzIz Ja% 53A,6A +capitalizing 'k&pIt@laIzIN Jb% 53A,6A +capitals 'k&pIt@lz Mj% 3 +capitation ,k&pI'teISn K6% 4 +capitations ,k&pI'teISnz Kj$ 4 +capitulate k@'pItSUleIt H2% 42A +capitulated k@'pItSUleItId Hc%,Hd% 52A +capitulates k@'pItSUleIts Ha% 42A +capitulating k@'pItSUleItIN Hb% 52A +capitulation k@,pItSU'leISn L@% 5 +capon 'keIp@n K6% 2 +capons 'keIp@nz Kj% 2 +capped k&pt Hc%,Hd% 16A +capping 'k&pIN Hb% 26A +caprice k@'pris K6% 2 +caprices k@'prisIz Kj% 3 +capricious k@'prIS@s OA% 3 +capriciously k@'prIS@slI Pu% 4 +capriciousness k@'prIS@snIs L@% 4 +caps k&ps Ha%,Kj% 16A +capsicum 'k&psIk@m K6% 3 +capsicums 'k&psIk@mz Kj% 3 +capsize k&p'saIz J2% 22A,6A +capsized k&p'saIzd Jc%,Jd% 22A,6A +capsizes k&p'saIzIz Ja% 32A,6A +capsizing k&p'saIzIN Jb% 32A,6A +capstan 'k&pst@n K6% 2 +capstans 'k&pst@nz Kj% 2 +capsule 'k&psjul K6% 2 +capsules 'k&psjulz Kj% 2 +captain 'k&ptIn H0%,K6% 26A +captained 'k&ptInd Hc%,Hd% 26A +captaining 'k&ptInIN Hb% 36A +captains 'k&ptInz Ha%,Kj% 26A +caption 'k&pSn K6% 2 +captions 'k&pSnz Kj% 2 +captious 'k&pS@s OA$ 2 +captiously 'k&pS@slI Pu$ 3 +captivate 'k&ptIveIt H2% 36A +captivated 'k&ptIveItId Hc%,Hd% 46A +captivates 'k&ptIveIts Ha% 36A +captivating 'k&ptIveItIN Hb% 46A +captive 'k&ptIv K6%,OA% 2 +captives 'k&ptIvz Kj% 2 +captivity k&p'tIvItI L@% 4 +captor 'k&pt@R K6% 2 +captors 'k&pt@z Kj% 2 +capture 'k&ptS@R H2%,M6% 26A +captured 'k&ptS@d Hc%,Hd% 26A +captures 'k&ptS@z Ha%,Mj% 26A +capturing 'k&ptS@rIN Hb% 36A +car kAR K6* 1 +car-ferries 'kA-ferIz Kj% 3 +car-ferry 'kA-ferI K8% 3 +carafe k@'r&f K6% 2 +carafes k@'r&fs Kj% 2 +caramel 'k&r@m@l M6% 3 +caramels 'k&r@m@lz Mj% 3 +carapace 'k&r@peIs K6$ 3 +carapaces 'k&r@peIsIz Kj$ 4 +carat 'k&r@t K6% 2 +carats 'k&r@ts Kj% 2 +caravan 'k&r@v&n K6% 3 +caravanning ,k&r@'v&nIN L@% 4 +caravans 'k&r@v&nz Kj% 3 +caravansaries ,k&r@'v&ns@rIz Kj$ 5 +caravansary ,k&r@'v&ns@rI K8$ 5 +caravanserai ,k&r@'v&ns@raI K6$ 5 +caravanserais ,k&r@'v&ns@raIz Kj$ 5 +caraway 'k&r@weI K6% 3 +caraways 'k&r@weIz Kj$ 3 +carbide 'kAbaId K6% 2 +carbides 'kAbaIdz Kj% 2 +carbine 'kAbaIn K6% 2 +carbines 'kAbaInz Kj% 2 +carbohydrate ,kAb@'haIdreIt M6% 4 +carbohydrates ,kAb@'haIdreIts Mj% 4 +carbolic kA'b0lIk OA% 3 +carbon 'kAb@n M6% 2 +carbon-paper 'kAb@n-peIp@R L@% 4 +carbonated 'kAb@neItId OA% 4 +carbonic kA'b0nIk OA$ 3 +carboniferous ,kAb@'nIf@r@s OA% 5 +carbonization ,kAb@naI'zeISn M6% 5 +carbonizations ,kAb@naI'zeISnz Mj$ 5 +carbonize 'kAb@naIz H2% 36A +carbonized 'kAb@naIzd Hc%,Hd% 36A +carbonizes 'kAb@naIzIz Ha% 46A +carbonizing 'kAb@naIzIN Hb% 46A +carbons 'kAb@nz Mj% 2 +carborundum ,kAb@'rVnd@m L@% 4 +carboy 'kAboI K6$ 2 +carboys 'kAboIz Kj$ 2 +carbuncle 'kAbVNkl K6% 3 +carbuncles 'kAbVNklz Kj% 3 +carburettor ,kAb@'ret@R K6% 4 +carburettors ,kAb@'ret@z Kj% 4 +carcase 'kAk@s K6$ 2 +carcases 'kAk@sIz Kj$ 3 +carcass 'kAk@s K7% 2 +carcasses 'kAk@sIz Kj% 3 +card kAd H0$,K6% 1 +card-sharper 'kAd-SAp@R K6% 3 +card-sharpers 'kAd-SAp@z Kj% 3 +cardamom 'kAd@m@m L@$ 3 +cardboard 'kAdbOd L@% 2 +carded 'kAdId Hc$,Hd$ 2 +cardiac 'kAdI&k OA% 3 +cardigan 'kAdIg@n K6% 3 +cardigans 'kAdIg@nz Kj% 3 +cardinal 'kAdInl K6%,OA% 3 +cardinals 'kAdInlz Kj% 3 +carding 'kAdIN Hb$ 2 +cards kAdz Ha$,Kj% 1 +care ke@R I2%,M6% 12A,3A,3B,4C +cared ke@d Ic%,Id% 12A,3A,3B,4C +careen k@'rin J0% 22A,6A +careened k@'rind Jc%,Jd% 22A,6A +careening k@'rinIN Jb% 32A,6A +careens k@'rinz Ja% 22A,6A +career k@'rI@R I0%,M6% 22C,3A +careered k@'rI@d Ic%,Id% 22C,3A +careering k@'rI@rIN Ib% 32C,3A +careerist k@'rI@rIst K6% 3 +careerists k@'rI@rIsts Kj% 3 +careers k@'rI@z Ia%,Mj% 22C,3A +carefree 'ke@fri OA% 3 +careful 'ke@fUl OA% 2 +carefully 'ke@f@lI Pu% 3 +carefulness 'ke@f@ln@s L@% 3 +careladen 'ke@leIdn OA$ 3 +careless 'ke@l@s OA% 2 +carelessly 'ke@l@slI Pu% 3 +carelessness 'ke@l@sn@s L@% 3 +cares ke@z Ia%,Mj% 12A,3A,3B,4C +caress k@'res H1%,K7% 26A +caressed k@'rest Hc%,Hd% 26A +caresses k@'resIz Ha%,Kj% 36A +caressing k@'resIN Hb%,OA% 36A +caressingly k@'resINlI Pu% 4 +caret 'k&ret K6$ 2 +caretaker 'ke@teIk@R K6% 3 +caretakers 'ke@teIk@z Kj% 3 +carets 'k&rets Kj$ 2 +careworn 'ke@wOn OA% 2 +cargo 'kAg@U M7% 2 +cargoes 'kAg@Uz Mj% 2 +caribou 'k&rIbu K9% 3 +caribous 'k&rIbuz Kj% 3 +caricature 'k&rIk@tSU@R H2%,M6% 46A +caricatured 'k&rIk@tSU@d Hc%,Hd% 46A +caricatures 'k&rIk@tSU@z Ha%,Mj% 46A +caricaturing 'k&rIk@tSU@rIN Hb% 56A +caricaturist 'k&rIk@tSurIst K6% 5 +caricaturists 'k&rIk@tSurIsts Kj% 5 +caries 'ke@riz L@% 2 +carillon k@'rIlj@n K6$ 3 +carillons k@'rIlj@nz Kj$ 3 +caring 'ke@rIN Ib% 22A,3A,3B,4C +carious 'ke@rI@s OA$ 3 +carmine 'kAmaIn M6%,OA% 2 +carmines 'kAmaInz Mj$ 2 +carnage 'kAnIdZ L@% 2 +carnal 'kAnl OA% 2 +carnally 'kAn@lI Pu% 3 +carnation kA'neISn K6% 3 +carnations kA'neISnz Kj% 3 +carnival 'kAnIvl M6% 3 +carnivals 'kAnIvlz Mj% 3 +carnivore 'kAnIvOR K6% 3 +carnivores 'kAnIvOz Kj% 3 +carnivorous kA'nIv@r@s OA% 4 +carol 'k&r@l H4%,K6% 2 +carolled 'k&r@ld Hc%,Hd% 2 +caroller 'k&r@l@R K6% 3 +carollers 'k&r@l@z Kj% 3 +carolling 'k&r@lIN Hb% 3 +carols 'k&r@lz Ha%,Kj% 2 +carousal k@'raUzl K6$ 3 +carousals k@'raUzlz Kj$ 3 +carouse k@'raUz H2% 22A +caroused k@'raUzd Hc%,Hd% 22A +carousel ,k&r@'sel K6% 3 +carousels ,k&r@'selz Kj$ 3 +carouses k@'raUzIz Ha% 32A +carousing k@'raUzIN Hb% 32A +carp kAp H0%,K9% 12A,3A +carpal 'kApl K6$,OA$ 2 +carpals 'kAplz Kj$ 2 +carped kApt Hc$,Hd$ 12A,3A +carpenter 'kApInt@R K6% 3 +carpenters 'kApInt@z Kj% 3 +carpentry 'kApIntrI L@% 3 +carpet 'kApIt H0%,K6% 26A +carpet-beater 'kApIt-bit@R K6% 4 +carpet-beaters 'kApIt-bit@z Kj% 4 +carpet-knight 'kApIt-naIt K6$ 3 +carpet-knights 'kApIt-naIts Kj$ 3 +carpet-slippers 'kApIt-slIp@z Kj% 4 +carpet-sweeper 'kApIt-swip@R K6% 4 +carpet-sweepers 'kApIt-swip@z Kj% 4 +carpetbag 'kApItb&g K6% 3 +carpetbagger 'kApItb&g@R K6% 4 +carpetbaggers 'kApItb&g@z Kj% 4 +carpetbags 'kApItb&gz Kj% 3 +carpeted 'kApItId Hc%,Hd% 36A +carpeting 'kApItIN Hb% 36A +carpets 'kApIts Ha%,Kj% 26A +carping 'kApIN Hb% 22A,3A +carport 'kApOt K6% 2 +carports 'kApOts Kj% 2 +carps kAps Ha% 12A,3A +carriage 'k&rIdZ M6% 2 +carriages 'k&rIdZIz Mj% 3 +carriageway 'k&rIdZweI K6% 3 +carriageways 'k&rIdZweIz Kj% 3 +carried 'k&rId Jc%,Jd% 22B,2C,6A,15A,15B,16B +carrier 'k&rI@R K6% 3 +carrier-bag 'k&rI@-b&g K6% 4 +carrier-bags 'k&rI@-b&gz Kj% 4 +carrier-pigeon 'k&rI@-pIdZ@n K6% 5 +carrier-pigeons 'k&rI@-pIdZ@nz Kj% 5 +carriers 'k&rI@z Kj% 3 +carries 'k&rIz Ja%,Kj% 22B,2C,6A,15A,15B,16B +carrion 'k&rI@n L@% 3 +carrion-crow 'k&rI@n-kr@U K6% 4 +carrion-crows 'k&rI@n-kr@Uz Kj% 4 +carrot 'k&r@t K6% 2 +carrots 'k&r@ts Kj% 2 +carroty 'k&r@tI OA% 3 +carry 'k&rI J3%,K8% 22B,2C,6A,15A,15B,16B +carrycot 'k&rIk0t K6% 3 +carrycots 'k&rIk0ts Kj% 3 +carrying 'k&rIIN Jb% 32B,2C,6A,15A,15B,16B +carryings-on ,k&rIINz-'0n Kj% 4 +cars kAz Kj% 1 +carsick 'kAsIk OA% 2 +carsickness 'kAsIkn@s L@% 3 +cart kAt H0%,K6% 16A,15B +cart-track 'kAt-tr&k K6% 2 +cart-tracks 'kAt-tr&ks Kj% 2 +cartage 'kAtIdZ L@$ 2 +carte blanche ,kAt 'bl0nS Ki% 2 +carted 'kAtId Hc%,Hd% 26A,15B +cartel kA'tel K6% 2 +cartels kA'telz Kj% 2 +carter 'kAt@R K6% 2 +carters 'kAt@z Kj% 2 +carthorse 'kAthOs K6% 2 +carthorses 'kAthOsIz Kj% 3 +cartilage 'kAtIlIdZ M6% 3 +cartilages 'kAtIlIdZIz Mj$ 4 +cartilaginous ,kAtI'l&dZIn@s OA$ 5 +carting 'kAtIN Hb% 26A,15B +cartload 'kAtl@Ud K6% 2 +cartloads 'kAtl@Udz Kj% 2 +cartographer kA't0gr@f@R K6% 4 +cartographers kA't0gr@f@z Kj% 4 +cartography kA't0gr@fI L@% 4 +carton 'kAtn K6% 2 +cartons 'kAtnz Kj% 2 +cartoon kA'tun H0$,K6% 2 +cartooned kA'tund Hc$,Hd$ 2 +cartooning kA'tunIN Hb$ 3 +cartoonist kA'tunIst K6% 3 +cartoonists kA'tunIsts Kj% 3 +cartoons kA'tunz Ha$,Kj% 2 +cartridge 'kAtrIdZ K6% 2 +cartridge-belt 'kAtrIdZ-belt K6% 3 +cartridge-belts 'kAtrIdZ-belts Kj% 3 +cartridge-paper 'kAtrIdZ-peIp@R K6% 4 +cartridge-papers 'kAtrIdZ-peIp@z Kj% 4 +cartridges 'kAtrIdZIz Kj% 3 +cartroad 'kAtr@Ud K6% 2 +cartroads 'kAtr@Udz Kj% 2 +carts kAts Ha%,Kj% 16A,15B +cartwheel 'kAtwil K6% 2 +cartwheels 'kAtwilz Kj% 2 +carve kAv J2% 16A,14,15A,15B +carved kAvd Jc%,Jd% 16A,14,15A,15B +carver 'kAv@R K6% 2 +carvers 'kAv@z Kj% 2 +carves kAvz Ja% 16A,14,15A,15B +carving 'kAvIN Jb%,M6% 26A,14,15A,15B +carving-fork 'kAvIN-fOk K6% 3 +carving-forks 'kAvIN-fOks Kj% 3 +carving-knife 'kAvIN-naIf Ki% 3 +carving-knives 'kAvIN-naIvz Kj% 3 +carvings 'kAvINz Mj% 2 +caryatid ,k&rI'&tId K6$ 4 +caryatids ,k&rI'&tIdz Kj$ 4 +cascade k&'skeId I2%,K6% 2 +cascaded k&'skeIdId Ic%,Id% 3 +cascades k&'skeIdz Ia%,Kj% 2 +cascading k&'skeIdIN Ib% 3 +case keIs H2%,K6% 16A +case-hardened 'keIs-hAd@nd OA% 3 +case-histories keIs-'hIstrIz Kj% 3 +case-history keIs-'hIstrI K8% 3 +case-law 'keIs-lO K6% 2 +case-laws 'keIs-lOz Kj$ 2 +casebook 'keIsbUk K6% 2 +casebooks 'keIsbUks Kj$ 2 +cased keIst Hc%,Hd% 16A +casein 'keIsin L@$ 2 +casement 'keIsm@nt K6% 2 +casements 'keIsm@nts Kj% 2 +cases 'keIsIz Ha%,Kj% 26A +casework 'keIsw3k K6% 2 +caseworks 'keIsw3ks Kj$ 2 +cash k&S J1%,L@% 12C,6A,12B,13B +cashable 'k&S@bl OA% 3 +cashed k&St Jc%,Jd% 12C,6A,12B,13B +cashes 'k&SIz Ja% 22C,6A,12B,13B +cashew 'k&Su K6% 2 +cashews 'k&Suz Kj% 2 +cashier k&'SI@R H0%,K6% 36A +cashiered k&'SI@d Hc%,Hd% 36A +cashiering k&'SI@rIN Hb% 46A +cashiers k&'SI@z Ha%,Kj% 36A +cashing 'k&SIN Jb% 22C,6A,12B,13B +cashmere k&S'mI@R L@% 2 +casing 'keIsIN Hb%,K6% 26A +casings 'keIsINz Kj% 2 +casino k@'sin@U K6% 3 +casinos k@'sin@Uz Kj% 3 +cask kAsk K6% 1 +casket 'kAskIt K6% 2 +caskets 'kAskIts Kj% 2 +casks kAsks Kj% 1 +cassava k@'sAv@ L@% 3 +casserole 'k&s@r@Ul K6% 3 +casseroles 'k&s@r@Ulz Kj% 3 +cassette k@'set K6% 2 +cassettes k@'sets Kj% 2 +cassock 'k&s@k K6% 2 +cassocks 'k&s@ks Kj% 2 +cassowaries 'k&s@we@rIz Kj$ 4 +cassowary 'k&s@we@rI K8$ 4 +cast kAst J5%,Jc%,Jd%,K6% 12C,6A,15A,15B +cast-iron kAst-'aI@n OA% 3 +cast-off 'kAst-0f Oq% 2 +cast-offs 'kAst-0fs Kj% 2 +castanets ,k&st@'nets Kj% 3 +castaway 'kAst@weI K6% 3 +castaways 'kAst@weIz Kj% 3 +caste kAst M6% 1 +castellated 'k&st@leItId OA% 4 +caster 'kAst@R K6% 2 +casters 'kAst@z Kj% 2 +castes kAsts Mj% 1 +castigate 'k&stIgeIt H2% 36A +castigated 'k&stIgeItId Hc%,Hd% 46A +castigates 'k&stIgeIts Ha% 36A +castigating 'k&stIgeItIN Hb% 46A +castigation ,k&stI'geISn M6% 4 +castigations ,k&stI'geISnz Mj$ 4 +casting 'kAstIN Jb%,K6% 22C,6A,15A,15B +castings 'kAstINz Kj% 2 +castle 'kAsl I2%,K6% 2 +castled 'kAsld Ic%,Id% 2 +castles 'kAslz Ia%,Kj% 2 +castling 'kAslIN Ib% 2 +castor 'kAst@R K6% 2 +castor oil ,kAst@r 'oIl L@% 3 +castors 'kAst@z Kj% 2 +castrate k&'streIt H2% 26A +castrated k&'streItId Hc%,Hd% 36A +castrates k&'streIts Ha% 26A +castrating k&'streItIN Hb% 36A +castration k&'streISn K6% 3 +castrations k&'streISnz Kj$ 3 +casts kAsts Ja%,Kj% 12C,6A,15A,15B +casual 'k&ZU@l OA% 3 +casually 'k&ZU@lI Pu% 4 +casuals 'k&ZU@lz Kj% 3 +casualties 'k&ZU@ltIz Kj% 4 +casualty 'k&ZU@ltI K8% 4 +casuist 'k&zjUIst K6$ 3 +casuistic ,k&zjU'IstIk OA$ 4 +casuistical ,k&zjU'IstIkl OA$ 5 +casuistries 'k&zjUIstrIz Mj$ 4 +casuistry 'k&zjUIstrI M8% 4 +casuists 'k&zjUIsts Kj$ 3 +casus belli ,keIs@s 'belaI Ki$ 4 +cat k&t K6% 1 +cat-nap 'k&t-n&p K6% 2 +cat-naps 'k&t-n&ps Kj% 2 +cat-o'-nine-tails ,k&t-@-'naIn-teIlz Ki% 4 +cat-sleep 'k&t-slip K6$ 2 +cat-sleeps 'k&t-slips Kj$ 2 +cataclysm 'k&t@klIz@m K6% 4 +cataclysmic ,k&t@'klIzmIk OA% 4 +cataclysms 'k&t@klIz@mz Kj% 4 +catacombs 'k&t@kumz Kj% 3 +catafalque 'k&t@f&lk K6$ 3 +catafalques 'k&t@f&lks Kj$ 3 +catalepsy 'k&t@lepsI L@$ 4 +cataleptic ,k&t@'leptIk K6$,OA$ 4 +cataleptics ,k&t@'leptIks Kj$ 4 +catalogue 'k&t@l0g H2%,K6% 36A +catalogued 'k&t@l0gd Hc%,Hd% 36A +catalogues 'k&t@l0gz Ha%,Kj% 36A +cataloguing 'k&t@l0gIN Hb% 46A +catalpa k@'t&lp@ K6$ 3 +catalpas k@'t&lp@z Kj$ 3 +catalysis k@'t&l@sIs L@$ 4 +catalyst 'k&t@lIst K6% 3 +catalysts 'k&t@lIsts Kj% 3 +catalytic ,k&t@'lItIk OA$ 4 +catamaran ,k&t@m@'r&n K6% 4 +catamarans ,k&t@m@'r&nz Kj% 4 +catapult 'k&t@pVlt H0%,K6% 3 +catapulted 'k&t@pVltId Hc%,Hd% 4 +catapulting 'k&t@pVltIN Hb% 4 +catapults 'k&t@pVlts Ha%,Kj% 3 +cataract 'k&t@r&kt K6% 3 +cataracts 'k&t@r&kts Kj% 3 +catarrh k@'tAR L@% 2 +catastrophe k@'t&str@fI K6% 4 +catastrophes k@'t&str@fIz Kj% 4 +catastrophic ,k&t@'str0fIk OA% 4 +catastrophically ,k&t@'str0fIklI Pu% 5 +catcall 'k&tkAl I0%,K6% 2 +catcalled 'k&tkAld Ic%,Id% 2 +catcalling 'k&tkAlIN Ib% 3 +catcalls 'k&tkAlz Ia%,Kj% 2 +catch k&tS J5%,K7% 12C,3A,6A,12C,14,15A,15B,19B,22 +catch-crop 'k&tS-kr0p K6$ 2 +catch-crops 'k&tS-kr0ps Kj$ 2 +catcher 'k&tS@R K6% 2 +catchers 'k&tS@z Kj% 2 +catches 'k&tSIz Ja%,Kj% 22C,3A,6A,12C,14,15A,15B,19B,22 +catchier 'k&tSI@R Or$ 3 +catchiest 'k&tSIIst Os% 3 +catching 'k&tSIN Jb%,OA% 22C,3A,6A,12C,14,15A,15B,19B,22 +catchment 'k&tSm@nt K6% 2 +catchment-area 'k&tSm@nt-e@rI@ K6% 5 +catchment-areas 'k&tSm@nt-e@rI@z Kj% 5 +catchment-basin 'k&tSm@nt-beIsn K6% 4 +catchment-basins 'k&tSm@nt-beIsnz Kj% 4 +catchments 'k&tSm@nts Kj% 2 +catchpenny 'k&tSpenI OA% 3 +catchup 'k&tS@p K6$ 2 +catchups 'k&tS@ps Kj$ 2 +catchword 'k&tSw3d K6% 2 +catchwords 'k&tSw3dz Kj% 2 +catchy 'k&tSI OD% 2 +catechism 'k&t@kIz@m M6% 4 +catechisms 'k&t@kIz@mz Mj$ 4 +catechize 'k&t@kaIz H2$ 36A +catechized 'k&t@kaIzd Hc$,Hd$ 36A +catechizes 'k&t@kaIzIz Ha$ 46A +catechizing 'k&t@kaIzIN Hb$ 46A +categorical ,k&tI'g0rIkl OA% 5 +categorically ,k&tI'g0rIklI Pu% 5 +categories 'k&tIg@rIz Kj% 4 +categorize 'k&tIg@raIz H2% 46A +categorized 'k&tIg@raIzd Hc%,Hd% 46A +categorizes 'k&tIg@raIzIz Ha% 56A +categorizing 'k&tIg@raIzIN Hb% 56A +category 'k&tIg@rI K8% 4 +cater 'keIt@R I0% 23A +catered 'keIt@d Ic%,Id% 23A +caterer 'keIt@r@R K6% 3 +caterers 'keIt@r@z Kj% 3 +catering 'keIt@rIN Ib% 33A +caterpillar 'k&t@pIl@R K6% 4 +caterpillars 'k&t@pIl@z Kj% 4 +caters 'keIt@z Ia% 23A +caterwaul 'k&t@wOl I0%,K6% 3 +caterwauled 'k&t@wOld Ic%,Id% 3 +caterwauling 'k&t@wOlIN Ib% 4 +caterwauls 'k&t@wOlz Ia%,Kj% 3 +catfish 'k&tfIS K9% 2 +catfishes 'k&tfISIz Kj% 3 +catgut 'k&tgVt L@% 2 +catharses k@'TAsiz Kj$ 3 +catharsis k@'TAsIs Mi% 3 +cathartic k@'TAtIk M6% 3 +cathartics k@'TAtIks Mj$ 3 +cathedral k@'Tidr@l K6% 3 +cathedrals k@'Tidr@lz Kj% 3 +cathode 'k&T@Ud K6% 2 +cathodes 'k&T@Udz Kj% 2 +catholic 'k&TlIk OA% 2 +catholicity ,k&T@'lIsItI L@$ 5 +catkin 'k&tkIn K6% 2 +catkins 'k&tkInz Kj% 2 +cats k&ts Kj% 1 +catsup 'k&ts@p M6$ 2 +catsups 'k&ts@ps Mj$ 2 +cattier 'k&tI@R Or% 3 +cattiest 'k&tIIst Os% 3 +cattiness 'k&tIn@s L@% 3 +cattish 'k&tIS OA$ 2 +cattle 'k&tl Kj% 2 +cattle-cake 'k&tl-keIk L@% 3 +cattleman 'k&tlm@n Ki% 3 +cattlemen 'k&tlmen Kj% 3 +catty 'k&tI OD% 2 +catwalk 'k&twOk K6% 2 +catwalks 'k&twOks Kj% 2 +caucus 'kOk@s K7% 2 +caucuses 'kOk@sIz Kj% 3 +caught kOt Jc%,Jd% 12C,3A,6A,12C,14,15A,15B,19B,22 +caul kOl K6$ 1 +cauldron 'kOldr@n K6% 2 +cauldrons 'kOldr@nz Kj% 2 +cauliflower 'k0lIflaU@R M6% 4 +cauliflowers 'k0lIflaU@z Mj% 4 +caulk kOk H0$ 16A +caulked kOkt Hc$,Hd$ 16A +caulking 'kOkIN Hb$ 26A +caulks kOks Ha$ 16A +cauls kOlz Kj$ 1 +causal 'kOzl OA$ 2 +causality kO'z&lItI L@% 4 +causation kO'zeISn L@% 3 +causative 'kOz@tIv OA% 3 +cause kOz H2%,M6% 16A,12A,13A,17 +caused kOzd Hc%,Hd% 16A,12A,13A,17 +causeless 'kOzl@s OA$ 2 +causerie 'k@Uz@rI K6$ 3 +causeries 'k@Uz@rIz Kj$ 3 +causes 'kOzIz Ha%,Mj% 26A,12A,13A,17 +causeway 'kOzweI K6% 2 +causeways 'kOzweIz Kj% 2 +causing 'kOzIN Hb% 26A,12A,13A,17 +caustic 'kOstIk OA% 2 +caustically 'kOstIklI Pu% 3 +cauterize 'kOt@raIz H2% 36A +cauterized 'kOt@raIzd Hc%,Hd% 36A +cauterizes 'kOt@raIzIz Ha% 46A +cauterizing 'kOt@raIzIN Hb% 46A +caution 'kOSn H0%,M6% 26A,14,17 +cautionary 'kOS@nrI OA% 3 +cautioned 'kOSnd Hc%,Hd% 26A,14,17 +cautioning 'kOSnIN Hb% 36A,14,17 +cautions 'kOSnz Ha%,Mj% 26A,14,17 +cautious 'kOS@s OA% 2 +cautiously 'kOS@slI Pu% 3 +cavalcade ,k&v@l'keId K6% 3 +cavalcades ,k&v@l'keIdz Kj% 3 +cavalier ,k&v@'lI@R K6%,OA% 4 +cavalierly ,k&v@'lI@lI Pu$ 5 +cavaliers ,k&v@'lI@z Kj% 4 +cavalries 'k&v@lrIz Kj% 3 +cavalry 'k&v@lrI K8% 3 +cavalryman 'k&v@lrIm@n Ki% 4 +cavalrymen 'k&v@lrImen Kj% 4 +cave keIv J2%,K6% 12C,15B +cave-dweller 'keIv-dwel@R K6% 3 +cave-dwellers 'keIv-dwel@z Kj% 3 +cave-in 'keIv-In K6% 2 +cave-ins 'keIv-Inz Kj% 2 +caveat 'keIvI&t K6% 3 +caveats 'keIvI&ts Kj% 3 +caved keIvd Jc%,Jd% 12C,15B +caveman 'keIvm&n Ki% 2 +cavemen 'keIvmen Kj% 2 +cavern 'k&v@n K6% 2 +cavernous 'k&v@n@s OA% 3 +caverns 'k&v@nz Kj% 2 +caves keIvz Ja%,Kj% 12C,15B +caviar 'k&vIAR L@% 3 +caviare 'k&vIAR L@% 3 +cavil 'k&v@l I4% 22A,3A +cavilled 'k&v@ld Ic%,Id% 22A,3A +cavilling 'k&v@lIN Ib% 32A,3A +cavils 'k&v@lz Ia% 22A,3A +caving 'keIvIN Jb% 22C,15B +cavities 'k&vItIz Kj% 3 +cavity 'k&vItI K8% 3 +cavort k@'vOt I0% 2 +cavorted k@'vOtId Ic%,Id% 3 +cavorting k@'vOtIN Ib% 3 +cavorts k@'vOts Ia% 2 +caw kO J0%,K6% 12A,15B +cawed kOd Jc%,Jd% 12A,15B +cawing 'kOIN Jb% 22A,15B +caws kOz Ja%,Kj% 12A,15B +cayenne keI'en L@% 2 +cayenne pepper ,keIen 'pep@R L@% 4 +cayman 'keIm@n K6$ 2 +caymans 'keIm@nz Kj$ 2 +ca~non 'k&nj@n K6$ 2 +ca~nons 'k&nj@nz Kj$ 2 +cc ,si'si Y]% 2 +cease sis J2%,K6% 12A,3A,6A,6D,7A +cease-fire 'sis-faI@R K6% 2 +cease-fires 'sis-faI@z Kj% 2 +ceased sist Jc%,Jd% 12A,3A,6A,6D,7A +ceaseless 'sisl@s OA% 2 +ceaselessly 'sisl@slI Pu% 3 +ceases 'sisIz Ja%,Kj% 22A,3A,6A,6D,7A +ceasing 'sisIN Jb% 22A,3A,6A,6D,7A +cedar 'sid@R M6% 2 +cedars 'sid@z Mj% 2 +cede sid H2% 16A,14 +ceded 'sidId Hc%,Hd% 26A,14 +cedes sidz Ha% 16A,14 +cedilla sI'dIl@ K6% 3 +cedillas sI'dIl@z Kj% 3 +ceding 'sidIN Hb% 26A,14 +ceiling 'silIN K6% 2 +ceilings 'silINz Kj% 2 +celandine 'sel@ndaIn K6% 3 +celandines 'sel@ndaInz Kj% 3 +celebrant 'selIbr@nt K6% 3 +celebrants 'selIbr@nts Kj% 3 +celebrate 'selIbreIt H2% 36A +celebrated 'selIbreItId Hc%,Hd%,OA% 46A +celebrates 'selIbreIts Ha% 36A +celebrating 'selIbreItIN Hb% 46A +celebration ,selI'breISn M6% 4 +celebrations ,selI'breISnz Mj% 4 +celebrities sI'lebrItIz Mj% 4 +celebrity sI'lebrItI M8% 4 +celerity sI'lerItI L@$ 4 +celery 'sel@rI L@% 3 +celestial sI'lestI@l OA% 4 +celibacy 'selIb@sI L@% 4 +celibate 'selIb@t K6% 3 +celibates 'selIb@ts Kj% 3 +cell sel K6% 1 +cellar 'sel@R K6% 2 +cellarage 'sel@rIdZ M6$ 3 +cellarages 'sel@rIdZIz Mj$ 4 +cellars 'sel@z Kj% 2 +cellist 'tSelIst K6% 2 +cellists 'tSelIsts Kj% 2 +cello 'tSel@U K6% 2 +cellophane 'sel@feIn L@% 3 +cellos 'tSel@Uz Kj% 2 +cells selz Kj% 1 +cellular 'seljUl@R OA% 3 +celluloid 'seljUloId L@% 3 +cellulose 'seljUl@Us L@% 3 +cement sI'ment H0%,L@% 26A,15B +cement-mixer sI'ment-mIks@R K6% 4 +cement-mixers sI'ment-mIks@z Kj% 4 +cemented sI'mentId Hc%,Hd% 36A,15B +cementing sI'mentIN Hb% 36A,15B +cements sI'ments Ha% 26A,15B +cemeteries 'sem@trIz Kj% 3 +cemetery 'sem@trI K8% 3 +cenotaph 'sen@tAf K6% 3 +cenotaphs 'sen@tAfs Kj$ 3 +censer 'sens@R K6$ 2 +censers 'sens@z Kj$ 2 +censor 'sens@R H0%,K6% 26A +censored 'sens@d Hc%,Hd% 26A +censoring 'sens@rIN Hb% 36A +censorious sen'sOrI@s OA% 4 +censors 'sens@z Ha%,Kj% 26A +censorship 'sens@SIp K6% 3 +censorships 'sens@SIps Kj$ 3 +censure 'senS@R H2%,M6% 26A,14 +censured 'senS@d Hc%,Hd% 26A,14 +censures 'senS@z Ha%,Mj% 26A,14 +censuring 'senS@rIN Hb% 36A,14 +census 'sens@s K7% 2 +censuses 'sens@sIz Kj% 3 +cent sent K6% 1 +centaur 'sentOR K6$ 2 +centaurs 'sentOz Kj$ 2 +centenarian ,sentI'ne@rI@n K6%,OA% 5 +centenarians ,sentI'ne@rI@nz Kj% 5 +centenaries sen'tin@rIz Kj% 4 +centenary sen'tin@rI K8%,OA% 4 +centennial sen'tenI@l K6%,OA% 4 +centennially sen'tenI@lI Pu$ 5 +centennials sen'tenI@lz Kj$ 4 +centi- 'sentI- U-% 2 +centigrade 'sentIgreId OA% 3 +centime 's0ntim K6% 2 +centimes 's0ntimz Kj% 2 +centimetre 'sentI,mit@R K6% 4 +centimetres 'sentI,mit@z Kj% 4 +centipede 'sentIpid K6% 3 +centipedes 'sentIpidz Kj% 3 +central 'sentr@l K6$,OA% 2 +centralization ,sentr@laI'zeISn M6% 5 +centralizations ,sentr@laI'zeISnz Mj$ 5 +centralize 'sentr@laIz J2% 32A,6A +centralized 'sentr@laIzd Jc%,Jd% 32A,6A +centralizes 'sentr@laIzIz Ja% 42A,6A +centralizing 'sentr@laIzIN Jb% 42A,6A +centrally 'sentr@lI Pu% 3 +centrals 'sentr@lz Kj$ 2 +centre 'sent@R J2%,K6% 23A,6A,14,15A +centre-bit 'sent@-bIt K6$ 3 +centre-bits 'sent@-bIts Kj$ 3 +centre-board 'sent@-bOd K6% 3 +centre-boards 'sent@-bOdz Kj% 3 +centred 'sent@d Jc%,Jd% 23A,6A,14,15A +centrepiece 'sent@pis K6% 3 +centrepieces 'sent@pisIz Kj$ 4 +centres 'sent@z Ja%,Kj% 23A,6A,14,15A +centrifugal sen'trIfjUgl OA% 4 +centrifuge 'sentrIfjudZ K6% 3 +centrifuges 'sentrIfjudZIz Kj% 4 +centring 'sent@rIN Jb% 23A,6A,14,15A +centripetal sen'trIpItl OA$ 4 +cents sents Kj% 1 +centuries 'sentS@rIz Kj% 3 +centurion sen'tjU@rI@n K6% 4 +centurions sen'tjU@rI@nz Kj% 4 +century 'sentS@rI K8% 3 +ceramic s@'r&mIk OA% 3 +ceramics s@'r&mIks Lk% 3 +cereal 'sI@rI@l M6% 3 +cereals 'sI@rI@lz Mj% 3 +cerebral 'ser@br@l OA% 3 +cerebration ,serI'breISn L@$ 4 +ceremonial ,serI'm@UnI@l M6%,OA% 5 +ceremonially ,serI'm@UnI@lI Pu% 6 +ceremonials ,serI'm@UnI@lz Mj% 5 +ceremonies 'serIm@nIz Mj% 4 +ceremonious ,serI'm@UnI@s OA% 5 +ceremoniously ,serI'm@UnI@slI Pu% 6 +ceremony 'serIm@nI M8% 4 +cerise s@'riz M6%,OA% 2 +cerises s@'rizIz Mj$ 3 +cert s3t K6% 1 +certain 's3tn OA* 2 +certainly 's3tnlI Pu% 3 +certainties 's3tntIz Mj% 3 +certainty 's3tntI M8% 3 +certifiable ,s3tI'faI@bl OA% 5 +certificate s@'tIfIk@t K6% 4 +certificate s@'tIfIkeIt H2$ 4 +certificated s@'tIfIkeItId Hc$,Hd$,OA% 5 +certificates s@'tIfIk@ts Kj% 4 +certificates s@'tIfIkeIts Ha$ 4 +certificating s@'tIfIkeItIN Hb$ 5 +certification ,s3tIfI'keISn M6% 5 +certifications ,s3tIfI'keISnz Mj$ 5 +certified 's3tIfaId Jc%,Jd% 33A,6A,9,16B,25 +certifies 's3tIfaIz Ja% 33A,6A,9,16B,25 +certify 's3tIfaI J3% 33A,6A,9,16B,25 +certifying 's3tIfaIIN Jb% 43A,6A,9,16B,25 +certitude 's3tItjud L@% 3 +certs s3ts Kj% 1 +cerulean sI'rulI@n OA$ 4 +cervical s3'vaIkl OA% 3 +cervices 's3vIsiz Kj$ 3 +cervix 's3vIks K7% 2 +cervixes 's3vIksIz Kj$ 3 +cessation se'seISn L@% 3 +cession 'seSn M6$ 2 +cessions 'seSnz Mj$ 2 +cesspit 'sespIt K6% 2 +cesspits 'sespIts Kj% 2 +cesspool 'sespul K6% 2 +cesspools 'sespulz Kj% 2 +cf ,si'ef Y~% 2 +ch^ateau 'S&t@U Ki% 2 +chafe tSeIf J2%,K6% 12A,3A,6A +chafed tSeIft Jc%,Jd% 12A,3A,6A +chafes tSeIfs Ja%,Kj% 12A,3A,6A +chaff tSAf H0%,L@% 12A,2C,6A,15A +chaffed tSAft Hc%,Hd% 12A,2C,6A,15A +chaffinch 'tS&fIntS K7% 2 +chaffinches 'tS&fIntSIz Kj% 3 +chaffing 'tSAfIN Hb% 22A,2C,6A,15A +chaffs tSAfs Ha% 12A,2C,6A,15A +chafing 'tSeIfIN Jb% 22A,3A,6A +chafing dish 'tSeIfIN dIS K7$ 3 +chafing dishes 'tSeIfIN dISIz Kj$ 4 +chagrin 'S&grIn H0$,L@% 26A +chagrined 'S&grInd Hc$,Hd$ 26A +chagrining 'S&grInIN Hb$ 36A +chagrins 'S&grInz Ha$ 26A +chain tSeIn H0%,K6% 16A,15A,15B +chain-armour tSeIn-'Am@R L@% 3 +chain-gang 'tSeIn-g&N K6% 2 +chain-gangs 'tSeIn-g&Nz Kj% 2 +chain-letter 'tSeIn-let@R K6% 3 +chain-letters 'tSeIn-let@z Kj% 3 +chain-mail 'tSeIn-meIl L@% 2 +chain-smoker 'tSeIn-sm@Uk@R K6% 3 +chain-smokers 'tSeIn-sm@Uk@z Kj% 3 +chain-stitch 'tSeIn-stItS K7% 2 +chain-stitches 'tSeIn-stItSIz Kj$ 3 +chain-store 'tSeIn-stOR K6% 2 +chain-stores 'tSeIn-stOz Kj% 2 +chained tSeInd Hc%,Hd% 16A,15A,15B +chaining 'tSeInIN Hb% 26A,15A,15B +chains tSeInz Ha%,Kj% 16A,15A,15B +chair tSe@R H0%,K6% 16A +chair-lift 'tSe@-lIft K6% 2 +chair-lifts 'tSe@-lIfts Kj% 2 +chaired tSe@d Hc%,Hd% 16A +chairing 'tSe@rIN Hb% 26A +chairman 'tSe@m@n Ki% 2 +chairmanship 'tSe@m@nSIp L@% 3 +chairmen 'tSe@m@n Kj% 2 +chairs tSe@z Ha%,Kj% 16A +chaise SeIz K6% 1 +chaise longue ,SeIz 'l0N K6% 2 +chaise longues ,SeIz 'l0Nz Kj% 2 +chaises 'SeIzIz Kj% 2 +chalet 'S&leI K6% 2 +chalets 'S&leIz Kj% 2 +chalice 'tS&lIs K6% 2 +chalices 'tS&lIsIz Kj% 3 +chalk tSOk H0%,M6% 115B +chalked tSOkt Hc%,Hd% 115B +chalkier 'tSOkI@R Or% 3 +chalkiest 'tSOkIIst Os% 3 +chalking 'tSOkIN Hb% 215B +chalkpit 'tSOkpIt K6% 2 +chalkpits 'tSOkpIts Kj% 2 +chalks tSOks Ha%,Mj% 115B +chalky 'tSOkI OD% 2 +challenge 'tS&l@ndZ H2%,K6% 26A,14,17 +challenged 'tS&l@ndZd Hc%,Hd% 26A,14,17 +challenger 'tS&l@ndZ@R K6% 3 +challengers 'tS&l@ndZ@z Kj% 3 +challenges 'tS&l@ndZIz Ha%,Kj% 36A,14,17 +challenging 'tS&l@ndZIN Hb% 36A,14,17 +chamber 'tSeImb@R K6% 2 +chamberlain 'tSeImb@lIn K6% 3 +chamberlains 'tSeImb@lInz Kj% 3 +chambermaid 'tSeImb@meId K6% 3 +chambermaids 'tSeImb@meIdz Kj% 3 +chamberpot 'tSeImb@p0t K6% 3 +chamberpots 'tSeImb@p0ts Kj% 3 +chambers 'tSeImb@z Kj% 2 +chameleon k@'milI@n K6% 4 +chameleons k@'milI@nz Kj% 4 +chammy-leather 'S&mI-leD@R K6% 4 +chammy-leathers 'S&mI-leD@z Kj% 4 +chamois 'S&mwA K7% 2 +chamois-leather 'S&mI-leD@R K6$ 4 +chamois-leathers 'S&mI-leD@z Kj$ 4 +chamoises 'S&mwAz Kj$ 2 +champ tS&mp J0%,K6% 12A,2C,4A,6A +champagne S&m'peIn K6% 2 +champagnes S&m'peInz Kj% 2 +champed tS&mpt Jc%,Jd% 12A,2C,4A,6A +champing 'tS&mpIN Jb% 22A,2C,4A,6A +champion 'tS&mpI@n H0%,K6%,OA%,Pu% 36A +championed 'tS&mpI@nd Hc%,Hd% 36A +championing 'tS&mpI@nIN Hb% 46A +champions 'tS&mpI@nz Ha%,Kj% 36A +championship 'tS&mpI@nSIp M6% 4 +championships 'tS&mpI@nSIps Mj% 4 +champs tS&mps Ja%,Kj% 12A,2C,4A,6A +chance tSAns J2%,M6% 12A,3A,4E,6A,6C +chanced tSAnst Jc%,Jd% 12A,3A,4E,6A,6C +chancel 'tSAnsl K6% 2 +chancelleries 'tSAns@lrIz Kj$ 3 +chancellery 'tSAns@lrI K8% 3 +chancellor 'tSAns@l@R K6% 3 +chancellors 'tSAns@l@z Kj% 3 +chancels 'tSAnslz Kj% 2 +chanceries 'tSAns@rIz Kj$ 3 +chancery 'tSAns@rI K8% 3 +chances 'tSAnsIz Ja%,Mj% 22A,3A,4E,6A,6C +chancing 'tSAnsIN Jb% 22A,3A,4E,6A,6C +chancy 'tSAnsI OA% 2 +chandelier ,S&nd@'lI@R K6% 4 +chandeliers ,S&nd@'lI@z Kj% 4 +chandler 'tSAndl@R K6% 2 +chandlers 'tSAndl@z Kj% 2 +change tSeIndZ J2*,M6* 12A,2C,6A,14 +changeable 'tSeIndZ@b@l OA% 3 +changeableness 'tSeIndZ@b@ln@s L@% 4 +changed tSeIndZd Jc%,Jd% 12A,2C,6A,14 +changeful 'tSeIndZf@l OA% 2 +changeless 'tSeIndZl@s OA% 2 +changeling 'tSeIndZlIN K6$ 2 +changelings 'tSeIndZlINz Kj$ 2 +changeover 'tSeIndZ@Uv@R K6% 3 +changeovers 'tSeIndZ@Uv@z Kj% 3 +changes 'tSeIndZIz Ja%,Mj% 22A,2C,6A,14 +changing 'tSeIndZIN Jb% 22A,2C,6A,14 +channel 'tS&nl H4%,K6% 26A,14 +channelled 'tS&nld Hc%,Hd% 26A,14 +channelling 'tS&n@lIN Hb% 36A,14 +channels 'tS&nlz Ha%,Kj% 26A,14 +chant tSAnt J0%,K6% 12A,6A +chanted 'tSAntId Jc%,Jd% 22A,6A +chanting 'tSAntIN Jb% 22A,6A +chants tSAnts Ja%,Kj% 12A,6A +chaos 'keI0s L@% 2 +chaotic keI'0tIk OA% 3 +chaotically keI'0tIklI Pu% 4 +chap tS&p J4$,K6% 12A,6A +chapel 'tS&pl K6% 2 +chapelgoer 'tS&plg@U@R K6% 4 +chapelgoers 'tS&plg@U@z Kj% 4 +chapels 'tS&plz Kj% 2 +chaperon 'S&p@r@Un H0%,K6% 36A +chaperoned 'S&p@r@Und Hc%,Hd% 36A +chaperoning 'S&p@r@UnIN Hb% 46A +chaperons 'S&p@r@Unz Ha%,Kj% 36A +chapfallen 'tS&pfOl@n OA$ 3 +chaplain 'tS&plIn K6% 2 +chaplaincies 'tS&plInsIz Kj$ 3 +chaplaincy 'tS&plInsI K8% 3 +chaplains 'tS&plInz Kj% 2 +chaplet 'tS&plIt K6$ 2 +chaplets 'tS&plIts Kj$ 2 +chapman 'tS&pm@n Ki$ 2 +chapmen 'tS&pm@n Kj$ 2 +chapped tS&pt Jc%,Jd% 12A,6A +chapping 'tS&pIN Jb$ 22A,6A +chaps tS&ps Ja$,Kj% 12A,6A +chapter 'tS&pt@R K6% 2 +chapterhouse 'tS&pt@haUs K6% 3 +chapterhouses 'tS&pt@haUzIz Kj% 4 +chapters 'tS&pt@z Kj% 2 +char tSAR J4%,M6% 12A,6A +char`abanc 'S&r@b&N K6$ 3 +char`abancs 'S&r@b&Nz Kj$ 3 +charabanc 'S&r@b&N K6% 3 +charabancs 'S&r@b&Nz Kj% 3 +character 'k&r@kt@R M6% 3 +characteristic ,k&r@kt@'rIstIk K6%,OA% 5 +characteristically ,k&r@kt@'rIstIklI Pu% 6 +characteristics ,k&r@kt@'rIstIks Kj% 5 +characterization ,k&r@kt@raI'zeISn L@% 6 +characterize 'k&r@kt@raIz H2% 46A +characterized 'k&r@kt@raIzd Hc%,Hd% 46A +characterizes 'k&r@kt@raIzIz Ha% 56A +characterizing 'k&r@kt@raIzIN Hb% 56A +characterless 'k&r@kt@l@s OA% 4 +characters 'k&r@kt@z Mj% 3 +charade S@'rAd K6% 2 +charades S@'rAdz Kj% 2 +charcoal 'tSAk@Ul L@% 2 +charcoal-burner 'tSAk@Ul-,b3n@R K6% 4 +charcoal-burners 'tSAk@Ul-,b3n@z Kj% 4 +chard tSAd K6$ 1 +chards tSAdz Kj$ 1 +charg_e d'affaires ,SAZeI d&'fe@R Ki% 4 +charg_es d'affaires ,SAZeI d&'fe@R Kj$ 4 +charge tSAdZ J2%,M6% 12A,2B,2C,6A,14,15A,15B,17 +charge-account 'tSAdZ-@kaUnt K6% 3 +charge-accounts 'tSAdZ-@kaUnts Kj% 3 +charge-sheet 'tSAdZ-Sit K6% 2 +charge-sheets 'tSAdZ-Sits Kj% 2 +chargeable 'tSAdZ@bl OA% 3 +charged tSAdZd Jc%,Jd% 12A,2B,2C,6A,14,15A,15B,17 +charger 'tSAdZ@R K6% 2 +chargers 'tSAdZ@z Kj% 2 +charges 'tSAdZIz Ja%,Mj% 22A,2B,2C,6A,14,15A,15B,17 +charging 'tSAdZIN Jb% 22A,2B,2C,6A,14,15A,15B,17 +charily 'tSe@rIlI Pu% 3 +chariot 'tS&rI@t K6% 3 +charioteer ,tS&rI@'tI@R K6% 4 +charioteers ,tS&rI@'tI@z Kj% 4 +chariots 'tS&rI@ts Kj% 3 +charisma k@'rIzm@ K6% 3 +charismas k@'rIzm@z Kj$ 3 +charismatic ,k&rIz'm&tIk OA% 4 +charitable 'tS&rIt@bl OA% 4 +charitably 'tS&rIt@blI Pu% 4 +charities 'tS&rItIz Mj% 3 +charity 'tS&rItI M8% 3 +charivari ,SArI'vArI L@$ 4 +charladies 'tSAleIdIz Kj% 3 +charlady 'tSAleIdI K8% 3 +charlatan 'SAl@t@n K6% 3 +charlatans 'SAl@t@nz Kj% 3 +charlock 'tSAl0k L@$ 2 +charm tSAm J0%,M6% 12A,6A,15A +charmed tSAmd Jc%,Jd% 12A,6A,15A +charmer 'tSAm@R K6% 2 +charmers 'tSAm@z Kj% 2 +charming 'tSAmIN Jb%,OA% 22A,6A,15A +charmingly 'tSAmINlI Pu% 3 +charms tSAmz Ja%,Mj% 12A,6A,15A +charnel house 'tSAnl haUs K6$ 3 +charnel houses 'tSAnl haUzIz Kj$ 4 +charred tSAd Jc%,Jd% 12A,6A +charring 'tSArIN Jb% 22A,6A +chars tSAz Ja%,Mj% 12A,6A +chart tSAt H0%,K6% 16A +charted 'tSAtId Hc%,Hd% 26A +charter 'tSAt@R H0%,K6% 26A +charter-parties 'tSAt@-,pAtIz Kj$ 4 +charter-party 'tSAt@-,pAtI K8$ 4 +chartered 'tSAt@d Hc%,Hd% 26A +chartering 'tSAt@rIN Hb% 36A +charters 'tSAt@z Ha%,Kj% 26A +charting 'tSAtIN Hb% 26A +chartreuse SA'tr3z L@% 2 +charts tSAts Ha%,Kj% 16A +charwoman 'tSAwUm@n Ki% 3 +charwomen 'tSAwImIn Kj% 3 +chary 'tSe@rI OA% 2 +chase tSeIs J2%,K6% 12C,3A,6A,15A,15B +chased tSeIst Jc%,Jd% 12C,3A,6A,15A,15B +chaser 'tSeIs@R K6% 2 +chasers 'tSeIs@z Kj% 2 +chases 'tSeIsIz Ja%,Kj% 22C,3A,6A,15A,15B +chasing 'tSeIsIN Jb% 22C,3A,6A,15A,15B +chasm 'k&z@m K6% 2 +chasms 'k&z@mz Kj% 2 +chassis 'S&sI K9% 2 +chaste tSeIst OA% 1 +chastely 'tSeIstlI Pu% 2 +chasten 'tSeIsn H0% 26A +chastened 'tSeIsnd Hc%,Hd% 26A +chastening 'tSeIsnIN Hb% 36A +chastens 'tSeIsnz Ha% 26A +chastise tS&'staIz H2% 26A +chastised tS&'staIzd Hc%,Hd% 26A +chastisement tS&'staIzm@nt L@% 3 +chastises tS&'staIzIz Ha% 36A +chastising tS&'staIzIN Hb% 36A +chastity 'tS&stItI L@% 3 +chasuble 'tS&zjUbl K6$ 3 +chasubles 'tS&zjUblz Kj$ 3 +chat tS&t J4%,K6% 12A,2C,15B +chateaux 'S&t@Uz Kj% 2 +chatelaine 'S&t@leIn K6$ 3 +chatelaines 'S&t@leInz Kj$ 3 +chats tS&ts Ja%,Kj% 12A,2C,15B +chatted 'tS&tId Jc%,Jd% 22A,2C,15B +chattel 'tS&tl K6$ 2 +chattels 'tS&tlz Kj% 2 +chatter 'tS&t@R I0%,L@% 22A,2C +chatterbox 'tS&t@b0ks K7% 3 +chatterboxes 'tS&t@b0ksIz Kj% 4 +chattered 'tS&t@d Ic%,Id% 22A,2C +chattering 'tS&t@rIN Ib% 32A,2C +chatters 'tS&t@z Ia% 22A,2C +chattier 'tS&tI@R Or% 3 +chattiest 'tS&tIIst Os% 3 +chattily 'tS&tIlI Pu% 3 +chatting 'tS&tIN Jb% 22A,2C,15B +chatty 'tS&tI OD% 2 +chauffeur 'S@Uf@R K6% 2 +chauffeurs 'S@Uf@z Kj% 2 +chauffeuse 'S@Uf3z Ki% 2 +chauffeuses 'S@Uf3z Kj% 2 +chauvinism 'S@UvInIz@m L@% 4 +chauvinist 'S@UvInIst K6% 3 +chauvinistic ,S@UvIn'IstIk OA% 4 +chauvinists 'S@UvInIsts Kj% 3 +chaw tSO H0$,K6$ 1 +chaw-bacon 'tSO-beIk@n K6$ 3 +chaw-bacons 'tSO-beIk@nz Kj$ 3 +chawed tSOd Hc$,Hd$ 1 +chawing 'tSOIN Hb$ 2 +chaws tSOz Ha$,Kj$ 1 +cheap tSip OC% 1 +cheapen 'tSip@n J0% 22A,6A +cheapened 'tSip@nd Jc%,Jd% 22A,6A +cheapening 'tSip@nIN Jb% 32A,6A +cheapens 'tSip@nz Ja% 22A,6A +cheaper 'tSip@R Or% 2 +cheapest 'tSipIst Os% 2 +cheapjack 'tSipdZ&k OA$ 2 +cheaply 'tSiplI Pu% 2 +cheapness 'tSipn@s L@$ 2 +cheat tSit J0%,K6% 12A,2C,6A,14 +cheated 'tSitId Jc%,Jd% 22A,2C,6A,14 +cheating 'tSitIN Jb% 22A,2C,6A,14 +cheats tSits Ja%,Kj% 12A,2C,6A,14 +check tSek J0%,M6% 12C,6A,15B +checkbook 'tSekbUk K6$ 2 +checkbooks 'tSekbUks Kj$ 2 +checked tSekt Jc%,Jd%,OA% 12C,6A,15B +checker 'tSek@R H0$,K6% 2 +checkered 'tSek@d Hc%,Hd% 2 +checkering 'tSek@rIN Hb$ 3 +checkers 'tSek@z Ha$,Kj%,Lk% 2 +checking 'tSekIN Jb% 22C,6A,15B +checklist 'tSeklIst K6% 2 +checklists 'tSeklIsts Kj% 2 +checkmate 'tSekmeIt H2%,K6% 26A +checkmated 'tSekmeItId Hc%,Hd% 36A +checkmates 'tSekmeIts Ha%,Kj% 26A +checkmating 'tSekmeItIN Hb% 36A +checkout 'tSekaUt K6% 2 +checkouts 'tSekaUts Kj% 2 +checkpoint 'tSekpoInt K6% 2 +checkpoints 'tSekpoInts Kj% 2 +checkroom 'tSekrum K6$ 2 +checkrooms 'tSekrumz Kj$ 2 +checks tSeks Ja%,Mj% 12C,6A,15B +checkup 'tSekVp K6% 2 +checkups 'tSekVps Kj% 2 +cheek tSik H0%,M6% 16A +cheekbone 'tSikb@Un K6% 2 +cheekbones 'tSikb@Unz Kj% 2 +cheeked tSikt Hc%,Hd%,Ot% 16A +cheekier 'tSikI@R Or% 3 +cheekiest 'tSikIIst Os% 3 +cheekily 'tSikIlI Pu% 3 +cheeking 'tSikIN Hb% 26A +cheeks tSiks Ha%,Mj% 16A +cheeky 'tSikI OD% 2 +cheep tSip I0%,K6% 1 +cheeped tSipt Ic%,Id% 1 +cheeping 'tSipIN Ib% 2 +cheeps tSips Ia%,Kj% 1 +cheer tSI@R J0%,M6% 12A,2C,6A,15B +cheered tSI@d Jc%,Jd% 12A,2C,6A,15B +cheerful 'tSI@f@l OA% 2 +cheerfully 'tSI@f@lI Pu% 3 +cheerfulness 'tSI@f@ln@s L@% 3 +cheerily 'tSI@r@lI Pu% 3 +cheering 'tSI@rIN Jb%,L@%,OA% 22A,2C,6A,15B +cheerio ,tSI@rI'@U W-% 3 +cheerleader 'tSI@lid@R K6% 3 +cheerleaders 'tSI@lid@z Kj% 3 +cheerless 'tSI@l@s OA% 2 +cheerlessly 'tSI@l@slI Pu% 3 +cheerlessness 'tSI@l@sn@s L@% 3 +cheers tSI@z Ja%,Mj% 12A,2C,6A,15B +cheery 'tSI@rI OA% 2 +cheese tSiz M6% 1 +cheesecake 'tSizkeIk M6% 2 +cheesecakes 'tSizkeIks Mj% 2 +cheesecloth 'tSizkl0T M6% 2 +cheesecloths 'tSizkl0Ts Mj$ 2 +cheeseparing 'tSizpe@rIN OA% 3 +cheeses 'tSizIz Mj% 2 +cheetah 'tSit@ K6% 2 +cheetahs 'tSit@z Kj% 2 +chef Sef K6% 1 +chef-d'oeuvre ,SeI-'d3vr@ Ki$ 3 +chefs Sefs Kj% 1 +chefs-d'oeuvre ,SeI-'d3vr@ Kj$ 3 +chemical 'kemIkl K6%,OA% 3 +chemically 'kemIklI Pu% 3 +chemicals 'kemIklz Kj% 3 +chemise S@'miz K6% 2 +chemises S@'mizIz Kj$ 3 +chemist 'kemIst K6% 2 +chemistry 'kemIstrI L@% 3 +chemists 'kemIsts Kj% 2 +chemotherapy ,kem@U'Ter@pI L@% 5 +chenille S@'nil L@$ 2 +cheque tSek K6% 1 +chequebook 'tSekbUk K6% 2 +chequebooks 'tSekbUks Kj% 2 +chequer 'tSek@R H0$ 2 +chequered 'tSek@d Hc$,Hd% 2 +chequering 'tSek@rIN Hb$ 3 +chequers 'tSek@z Ha$ 2 +cheques tSeks Kj% 1 +cherish 'tSerIS H1% 26A +cherished 'tSerISt Hc%,Hd% 26A +cherishes 'tSerISIz Ha% 36A +cherishing 'tSerISIN Hb% 36A +cheroot S@'rut K6% 2 +cheroots S@'ruts Kj% 2 +cherries 'tSerIz Kj% 2 +cherry 'tSerI K8%,OA% 2 +cherub 'tSer@b K6% 2 +cherubic tSI'rubIk OA% 3 +cherubs 'tSer@bz Kj% 2 +chervil 'tS3vIl L@% 2 +chess tSes L@% 1 +chessboard 'tSesbOd K6% 2 +chessboards 'tSesbOdz Kj% 2 +chessman 'tSesm&n Ki% 2 +chessmen 'tSesmen Kj% 2 +chest tSest K6% 1 +chesterfield 'tSest@fild K6% 3 +chesterfields 'tSest@fildz Kj% 3 +chestnut 'tSesnVt M6% 2 +chestnuts 'tSesnVts Mj% 2 +chests tSests Kj% 1 +cheval glass S@'v&l glAs K7$ 3 +cheval glasses S@'v&l glAsIz Kj$ 4 +chevron 'Sevr@n K6$ 2 +chevrons 'Sevr@nz Kj$ 2 +chew tSu J0%,K6% 12A,2C,3A,6A,15B +chewed tSud Jc%,Jd% 12A,2C,3A,6A,15B +chewing 'tSuIN Jb% 22A,2C,3A,6A,15B +chewing-gum 'tSuIN-gVm L@% 3 +chews tSuz Ja%,Kj% 12A,2C,3A,6A,15B +chiaroscuro kI,Ar@'skU@r@U L@$ 5 +chic Sik L@%,OA% 1 +chicaneries SI'keIn@rIz Mj$ 4 +chicanery SI'keIn@rI M8% 4 +chichi 'SiSi OA$ 2 +chick tSIk K6% 1 +chicken 'tSIkIn M6% 2 +chicken-hearted ,tSIkIn-'hAtId OA% 4 +chicken-run 'tSIkIn-rVn K6% 3 +chicken-runs 'tSIkIn-rVnz Kj% 3 +chickenfeed 'tSIkInfid L@% 3 +chickenpox 'tSIkInp0ks L@% 3 +chickens 'tSIkInz Mj% 2 +chickpea 'tSIkpi K6% 2 +chickpeas 'tSIkpiz Kj% 2 +chicks tSIks Kj% 1 +chickweed 'tSIkwid L@% 2 +chicle 'tSIkl L@$ 2 +chicory 'tSIk@rI L@% 3 +chid tSId Jc$ 16A,14 +chidden 'tSId@n Jd$ 26A,14 +chide tSaId J2% 16A,14 +chided 'tSaIdId Jc%,Jd% 26A,14 +chides tSaIdz Ja% 16A,14 +chiding 'tSaIdIN Jb% 26A,14 +chief tSif K6%,OA% 1 +chiefly 'tSiflI Pu% 2 +chiefs tSifs Kj% 1 +chieftain 'tSift@n K6% 2 +chieftaincies 'tSift@nsIz Kj$ 3 +chieftaincy 'tSift@nsI K8% 3 +chieftains 'tSift@nz Kj% 2 +chiffon 'SIf0n L@% 2 +chiffonier ,SIf@'nI@R K6$ 4 +chiffoniers ,SIf@'nI@z Kj$ 4 +chignon 'Sinj0n K6% 2 +chignons 'Sinj0nz Kj% 2 +chilblain 'tSIlbleIn K6% 2 +chilblained 'tSIlbleInd OA$ 2 +chilblains 'tSIlbleInz Kj% 2 +child tSaIld Ki* 1 +child's-play 'tSaIlz-pleI L@% 2 +child-bearing 'tSaIl-be@rIN L@% 3 +childbirth 'tSaIldb3T L@% 2 +childhood 'tSaIldhUd L@% 2 +childish 'tSaIldIS OA% 2 +childishly 'tSaIldISlI Pu% 3 +childless 'tSaIldl@s OA% 2 +childlike 'tSaIldlaIk OA% 2 +children 'tSIldr@n Kj* 2 +chill tSIl J0%,K6%,OA% 12A,2C,6A +chilled tSIld Jc%,Jd% 12A,2C,6A +chilli 'tSIlI K7% 2 +chillier 'tSIlI@R Or% 3 +chillies 'tSIlIz Kj% 2 +chilliest 'tSIlIIst Os% 3 +chilling 'tSIlIN Jb% 22A,2C,6A +chills tSIlz Ja%,Kj% 12A,2C,6A +chilly 'tSIlI K8$,OD% 2 +chimaera kaI'mI@r@ K6$ 3 +chimaeras kaI'mI@r@z Kj$ 3 +chime tSaIm J2%,K6% 12A,2C,6A,15A +chimed tSaImd Jc%,Jd% 12A,2C,6A,15A +chimera kaI'mI@r@ K6% 3 +chimeras kaI'mI@r@z Kj% 3 +chimerical kaI'merIkl OA$ 4 +chimes tSaImz Ja%,Kj% 12A,2C,6A,15A +chiming 'tSaImIN Jb% 22A,2C,6A,15A +chimney 'tSImnI K6% 2 +chimney-sweep 'tSImnI-swip K6% 3 +chimney-sweeps 'tSImnI-swips Kj% 3 +chimneybreast 'tSImnIbrest K6% 3 +chimneybreasts 'tSImnIbrests Kj% 3 +chimneypiece 'tSImnIpis K6% 3 +chimneypieces 'tSImnIpisIz Kj% 4 +chimneypot 'tSImnIp0t K6% 3 +chimneypots 'tSImnIp0ts Kj% 3 +chimneys 'tSImnIz Kj% 2 +chimneystack 'tSImnIst&k K6% 3 +chimneystacks 'tSImnIst&ks Kj% 3 +chimneysweep 'tSImnIswip K6% 3 +chimneysweeper 'tSImnIswip@R K6$ 4 +chimneysweepers 'tSImnIswip@z Kj$ 4 +chimneysweeps 'tSImnIswips Kj% 3 +chimp tSImp K6% 1 +chimpanzee ,tSImp&n'zi K6% 3 +chimpanzees ,tSImp&n'ziz Kj% 3 +chimps tSImps Kj% 1 +chin tSIn K6% 1 +chin-strap 'tSIn-str&p K6% 2 +chin-straps 'tSIn-str&ps Kj% 2 +chin-wagging 'tSIn-w&gIN L@% 3 +china 'tSaIn@ L@% 2 +china-closet ,tSaIn@-'kl0zIt K6$ 4 +china-closets ,tSaIn@-'kl0zIts Kj$ 4 +chinaware 'tSaIn@we@R L@% 3 +chinchilla tSIn'tSIl@ M6% 3 +chinchillas tSIn'tSIl@z Mj% 3 +chine tSaIn K6$ 1 +chines tSaInz Kj$ 1 +chink tSINk J0%,K6% 12A,2C,6A,15B +chinked tSINkt Jc%,Jd% 12A,2C,6A,15B +chinking 'tSINkIN Jb% 22A,2C,6A,15B +chinks tSINks Ja%,Kj% 12A,2C,6A,15B +chins tSInz Kj% 1 +chintz tSInts L@% 1 +chip tSIp J4%,K6% 12A,2C,6A,15A,15B +chipboard 'tSIpbOd L@% 2 +chipmunk 'tSIpmVNk K6% 2 +chipmunks 'tSIpmVNks Kj% 2 +chipped tSIpt Jc%,Jd% 12A,2C,6A,15A,15B +chipping 'tSIpIN Jb% 22A,2C,6A,15A,15B +chippings 'tSIpINz Kj% 2 +chips tSIps Ja%,Kj% 12A,2C,6A,15A,15B +chiropodist kI'r0p@dIst K6% 4 +chiropodists kI'r0p@dIsts Kj% 4 +chiropody kI'r0p@dI L@% 4 +chiropractor 'kaI@r@Upr&kt@R K6% 4 +chiropractors 'kaI@r@Upr&kt@z Kj% 4 +chirp tS3p J0%,K6% 1 +chirped tS3pt Jc%,Jd% 1 +chirpily 'tS3pIlI Pu% 3 +chirpiness 'tS3pIn@s L@% 3 +chirping 'tS3pIN Jb% 2 +chirps tS3ps Ja%,Kj% 1 +chirpy 'tS3pI OA% 2 +chirrup 'tSIr@p J0%,K6% 2 +chirruped 'tSIr@pt Jc%,Jd% 2 +chirruping 'tSIr@pIN Jb% 3 +chirrups 'tSIr@ps Ja%,Kj% 2 +chisel 'tSIzl H4%,K6% 26A,14,15B +chiselled 'tSIzld Hc%,Hd% 26A,14,15B +chiseller 'tSIz@l@R K6% 3 +chisellers 'tSIz@l@z Kj% 3 +chiselling 'tSIz@lIN Hb% 36A,14,15B +chisels 'tSIzlz Ha%,Kj% 26A,14,15B +chit tSIt K6% 1 +chit-chat 'tSIt-tS&t L@% 2 +chits tSIts Kj% 1 +chivalrous 'SIv@lr@s OA% 3 +chivalrously 'SIvlr@slI Pu% 4 +chivalry 'SIv@lrI L@% 3 +chive tSaIv M6$ 1 +chives tSaIvz Mj% 1 +chivied 'tSIvId Hc$,Hd$ 215B +chivies 'tSIvIz Ha$ 215B +chivvied 'tSIvId Hc%,Hd% 215B +chivvies 'tSIvIz Ha% 215B +chivvy 'tSIvI H3% 215B +chivvying 'tSIvIIN Hb% 315B +chivy 'tSIvI H3$ 215B +chivying 'tSIvIIN Hb$ 315B +chloride 'klOraId L@% 2 +chlorinate 'kl0rIneIt H2% 3 +chlorinated 'kl0rIneItId Hc%,Hd% 4 +chlorinates 'kl0rIneIts Ha% 3 +chlorinating 'kl0rIneItIN Hb% 4 +chlorination ,kl0rI'neISn L@% 4 +chlorine 'klOrin L@% 2 +chloroform 'kl0r@fOm L@% 3 +chlorophyll 'kl0r@fIl L@% 3 +choc tS0k K6% 1 +choc-ice 'tS0k-aIs K6% 2 +choc-ices 'tS0k-aIsIz Kj% 3 +chock tS0k H0%,K6% 16A,15B +chock-a-block ,tS0k-@-'bl0k OA%,Pu% 3 +chock-full tS0k-'fUl OA% 2 +chocked tS0kt Hc%,Hd% 16A,15B +chocking 'tS0kIN Hb% 26A,15B +chocks tS0ks Ha%,Kj% 16A,15B +chocolate 'tS0kl@t M6% 2 +chocolates 'tS0kl@ts Mj% 2 +chocs tS0ks Kj% 1 +choice tSoIs M6%,OA% 1 +choices 'tSoIsIz Mj% 2 +choir 'kwaI@R K6% 2 +choir-school 'kwaI@-skul K6% 3 +choir-schools 'kwaI@-skulz Kj% 3 +choirboy 'kwaI@boI K6% 3 +choirboys 'kwaI@boIz Kj% 3 +choirs 'kwaI@z Kj% 3 +choke tS@Uk J2%,K6% 12A,3A,6A,14,15B +choke-damp 'tS@Uk-d&mp L@$ 2 +choked tS@Ukt Jc%,Jd% 12A,3A,6A,14,15B +choker 'tS@Uk@R K6% 2 +chokers 'tS@Uk@z Kj% 2 +chokes tS@Uks Ja%,Kj% 12A,3A,6A,14,15B +chokey 'tS@UkI K6$ 2 +chokeys 'tS@UkIz Kj$ 2 +chokies 'tS@UkIz Kj$ 2 +choking 'tS@UkIN Jb% 22A,3A,6A,14,15B +choky 'tS@UkI K8$ 2 +choler 'k0l@R K6$ 2 +cholera 'k0l@r@ L@% 3 +choleric 'k0l@rIk OA% 3 +cholers 'k0l@z Kj$ 2 +choose tSuz J5% 12A,2C,3A,6A,7A,16A,16B,23 +chooses 'tSuzIz Ja% 22A,2C,3A,6A,7A,16A,16B,23 +choosey 'tSuzI OA% 2 +choosier 'tSuzI@R Or% 3 +choosiest 'tSuzIIst Os% 3 +choosing 'tSuzIN Jb% 22A,2C,3A,6A,7A,16A,16B,23 +choosy 'tSuzI OD% 2 +chop tS0p J4%,K6% 12A,2C,3A,6A,15A,15B +chop suey ,tS0p 'suI L@% 3 +chop-chop ,tS0p-'tS0p Pu% 2 +chop-house 'tS0p-haUs K6$ 2 +chop-houses 'tS0p-haUzIz Kj$ 3 +chopped tS0pt Jc%,Jd% 12A,2C,3A,6A,15A,15B +chopper 'tS0p@R K6% 2 +choppers 'tS0p@z Kj% 2 +choppier 'tS0pI@R Or% 3 +choppiest 'tS0pIIst Os% 3 +chopping 'tS0pIN Jb% 22A,2C,3A,6A,15A,15B +choppy 'tS0pI OD% 2 +chops tS0ps Ja%,Kj% 12A,2C,3A,6A,15A,15B +chopsticks 'tS0pstIks Kj% 2 +choral 'kOr@l OA% 2 +chorale k@'rAl K6% 2 +chorales k@'rAlz Kj% 2 +chord kOd K6% 1 +chords kOdz Kj% 1 +chore tSOR K6% 1 +choreographer ,k0rI'0gr@f@R K6% 5 +choreographers ,k0rI'0gr@f@z Kj% 5 +choreography ,k0rI'0gr@fI L@% 5 +chores tSOz Kj% 1 +chorister 'k0rIst@R K6% 3 +choristers 'k0rIst@z Kj% 3 +chortle 'tSOtl I2%,K6% 2 +chortled 'tSOtld Ic%,Id% 2 +chortles 'tSOtlz Ia%,Kj% 2 +chortling 'tSOtlIN Ib% 2 +chorus 'kOr@s H1%,K7% 2 +chorus-girl 'kOr@s-g3l K6% 3 +chorus-girls 'kOr@s-g3lz Kj% 3 +chorused 'kOr@st Hc%,Hd% 2 +choruses 'kOr@sIz Ha%,Kj% 3 +chorusing 'kOr@sIN Hb% 3 +chose tS@Uz Jc% 12A,2C,3A,6A,7A,16A,16B,23 +chosen 'tS@Uz@n Jd% 22A,2C,3A,6A,7A,16A,16B,23 +chow tSaU K6% 1 +chowder 'tSaUd@R K6% 2 +chowders 'tSaUd@z Kj$ 2 +chows tSaUz Kj% 1 +christen 'krIsn H0% 26A,23 +christened 'krIsnd Hc%,Hd% 26A,23 +christening 'krIsnIN Hb%,K6% 36A,23 +christenings 'krIsnINz Kj% 3 +christens 'krIsnz Ha% 26A,23 +chromatic kr@U'm&tIk OA% 3 +chrome kr@Um L@% 1 +chromium 'kr@UmI@m L@% 3 +chromosome 'kr@Um@s@Um K6% 3 +chromosomes 'kr@Um@s@Umz Kj% 3 +chronic 'kr0nIk OA% 2 +chronically 'kr0nIklI Pu% 3 +chronicle 'kr0nIkl H2%,K6% 36A +chronicled 'kr0nIkld Hc%,Hd% 36A +chronicler 'kr0nIkl@R K6% 3 +chroniclers 'kr0nIkl@z Kj% 3 +chronicles 'kr0nIklz Ha%,Kj% 36A +chronicling 'kr0nIklIN Hb% 36A +chronological ,kr0n@'l0dZIkl OA% 5 +chronologically ,kr0n@'l0dZIklI Pu% 5 +chronologies kr@'n0l@dZIz Mj$ 4 +chronology kr@'n0l@dZI M8% 4 +chronometer kr@'n0mIt@R K6$ 4 +chronometers kr@'n0mIt@z Kj$ 4 +chrysalis 'krIs@lIs K7% 3 +chrysalises 'krIs@lIsIz Kj$ 4 +chrysanthemum krI's&nT@m@m K6% 4 +chrysanthemums krI's&nT@m@mz Kj% 4 +chubbier 'tSVbI@R Or% 3 +chubbiest 'tSVbIIst Os% 3 +chubby 'tSVbI OD% 2 +chuck tSVk H0%,K6$ 16A,12A,13A,15A,15B +chucked tSVkt Hc%,Hd% 16A,12A,13A,15A,15B +chucker-out ,tSVk@r-'aUt Ki% 3 +chuckers-out ,tSVk@z-'aUt Kj% 3 +chucking 'tSVkIN Hb% 26A,12A,13A,15A,15B +chuckle 'tSVkl I2%,K6% 22A,2C +chuckled 'tSVkld Ic%,Id% 22A,2C +chuckles 'tSVklz Ia%,Kj% 22A,2C +chuckling 'tSVklIN Ib% 22A,2C +chucks tSVks Ha%,Kj$ 16A,12A,13A,15A,15B +chug tSVg I4%,K6% 12C +chugged tSVgd Ic%,Id% 12C +chugging 'tSVgIN Ib% 22C +chugs tSVgz Ia%,Kj% 12C +chukker 'tSVk@R K6$ 2 +chukkers 'tSVk@z Kj$ 2 +chum tSVm I4$,K6% 12C +chummed tSVmd Ic$,Id$ 12C +chummier 'tSVmI@R Or$ 3 +chummiest 'tSVmIIst Os$ 3 +chumming 'tSVmIN Ib$ 22C +chummy 'tSVmI OD% 2 +chump tSVmp K6% 1 +chumps tSVmps Kj% 1 +chums tSVmz Ia$,Kj% 12C +chunk tSVNk K6% 1 +chunkier 'tSVNkI@R Or% 3 +chunkiest 'tSVNkIIst Os% 3 +chunks tSVNks Kj% 1 +chunky 'tSVNkI OD% 2 +church tS3tS M7% 1 +churches 'tS3tSIz Mj% 2 +churchgoer 'tS3tSg@U@R K6% 3 +churchgoers 'tS3tSg@U@z Kj% 3 +churchman 'tS3tSm@n Ki% 2 +churchmen 'tS3tSmen Kj% 2 +churchwarden tS3tS'wOdn K6% 3 +churchwardens tS3tS'wOdnz Kj% 3 +churchyard 'tS3tSjAd K6% 2 +churchyards 'tS3tSjAdz Kj% 2 +churl tS3l K6% 1 +churlish 'tS3lIS OA% 2 +churlishly 'tS3lISlI Pu% 3 +churls tS3lz Kj% 1 +churn tS3n J0%,K6% 12A,2C,6A,15B +churned tS3nd Jc%,Jd% 12A,2C,6A,15B +churning 'tS3nIN Jb% 22A,2C,6A,15B +churns tS3nz Ja%,Kj% 12A,2C,6A,15B +chute Sut K6% 1 +chutes Suts Kj% 1 +chutney 'tSVtnI M6% 2 +chutneys 'tSVtnIz Mj% 2 +cicada sI'kAd@ K6% 3 +cicadas sI'kAd@z Kj% 3 +cicala sI'kAl@ K6$ 3 +cicalas sI'kAl@z Kj$ 3 +cicatrice 'sIk@trIs K6$ 3 +cicatrices 'sIk@trIsIz Kj$ 4 +cicatrices ,sIk@'traIsiz Kj$ 4 +cicatrix 'sIk@trIks Ki$ 3 +cicerone ,tSItS@'r@UnI Ki$ 4 +ciceroni ,tSItS@'r@Uni Kj$ 4 +cider 'saId@R M6% 2 +ciderpress 'saId@pres K7% 3 +ciderpresses 'saId@presIz Kj% 4 +ciders 'saId@z Mj% 2 +cif ,si,aI'ef Y~$ 3 +cigar sI'gAR K6% 2 +cigar-shaped sI'gA-SeIpt OA% 3 +cigarette ,sIg@'ret K6% 3 +cigarette-case ,sIg@'ret-keIs K6% 4 +cigarette-cases ,sIg@'ret-keIsIz Kj% 5 +cigarette-holder ,sIg@'ret-h@Uld@R K6% 5 +cigarette-holders ,sIg@'ret-h@Uld@z Kj% 5 +cigarette-paper ,sIg@'ret-peIp@R K6% 5 +cigarette-papers ,sIg@'ret-peIp@z Kj% 5 +cigarettes ,sIg@'rets Kj% 3 +cigars sI'gAz Kj% 2 +cinch sIntS Ki% 1 +cinchona sIN'k@Un@ K6$ 3 +cinchonas sIN'k@Un@z Kj$ 3 +cincture 'sINktS@R K6$ 2 +cinctures 'sINktS@z Kj$ 2 +cinder 'sInd@R K6% 2 +cinder-track 'sInd@-tr&k K6% 3 +cinder-tracks 'sInd@-tr&ks Kj% 3 +cinders 'sInd@z Kj% 2 +cine- 'sInI- U-% 2 +cine-camera 'sInI-k&mr@ K6% 4 +cine-cameras 'sInI-k&mr@z Kj% 4 +cine-film 'sInI-fIlm K6% 3 +cine-films 'sInI-fIlmz Kj% 3 +cine-projector 'sInI-pr@dZekt@R K6% 5 +cine-projectors 'sInI-pr@dZekt@z Kj% 5 +cinema 'sIn@m@ K6% 3 +cinemas 'sIn@m@z Kj% 3 +cinematic ,sIn@'m&tIk OA% 4 +cinematography ,sIn@m@'t0gr@fI L@% 6 +cinnamon 'sIn@m@n L@% 3 +cinquefoil 'sINkfoIl K6$ 2 +cinquefoils 'sINkfoIlz Kj$ 2 +cipher 'saIf@R J0%,K6% 22A,6A +ciphered 'saIf@d Jc%,Jd% 22A,6A +ciphering 'saIf@rIN Jb% 32A,6A +ciphers 'saIf@z Ja%,Kj% 22A,6A +circa 's3k@ T-% 2 +circle 's3kl J2%,K6% 22A,2C,6A +circled 's3kld Jc%,Jd% 22A,2C,6A +circles 's3klz Ja%,Kj% 22A,2C,6A +circlet 's3klIt K6$ 2 +circlets 's3klIts Kj$ 2 +circling 's3klIN Jb% 22A,2C,6A +circuit 's3kIt K6% 2 +circuitous s3'kjuIt@s OA% 4 +circuits 's3kIts Kj% 2 +circular 's3kjUl@R K6%,OA% 3 +circularity ,s3kjU'l&rItI L@% 5 +circularize 's3kjUl@raIz H2% 46A +circularized 's3kjUl@raIzd Hc%,Hd% 46A +circularizes 's3kjUl@raIzIz Ha$ 56A +circularizing 's3kjUl@raIzIN Hb$ 56A +circulars 's3kjUl@z Kj% 3 +circulate 's3kjUleIt J2% 32A,2C,6A +circulated 's3kjUleItId Jc%,Jd% 42A,2C,6A +circulates 's3kjUleIts Ja% 32A,2C,6A +circulating 's3kjUleItIN Jb% 42A,2C,6A +circulation ,s3kjU'leISn M6% 4 +circulations ,s3kjU'leISnz Mj$ 4 +circumcise 's3k@msaIz H2% 3 +circumcised 's3k@msaIzd Hc%,Hd% 3 +circumcises 's3k@msaIzIz Ha% 4 +circumcising 's3k@msaIzIN Hb% 4 +circumcision ,s3k@m'sIZn K6% 4 +circumcisions ,s3k@m'sIZnz Kj$ 4 +circumference s3'kVmf@r@ns K6% 4 +circumferences s3'kVmf@r@nsIz Kj% 5 +circumflex 's3k@mfleks K7% 3 +circumflexes 's3k@mfleksIz Kj$ 4 +circumlocution ,s3k@ml@'kjuSn M6% 5 +circumlocutions ,s3k@ml@'kjuSnz Mj% 5 +circumnavigate ,s3k@m'n&vIgeIt H2% 56A +circumnavigated ,s3k@m'n&vIgeItId Hc%,Hd% 66A +circumnavigates ,s3k@m'n&vIgeIts Ha% 56A +circumnavigating ,s3k@m'n&vIgeItIN Hb% 66A +circumnavigation ,s3k@m,n&vI'geISn K6% 6 +circumnavigations ,s3k@m,n&vI'geISnz Kj$ 6 +circumscribe 's3k@mskraIb H2% 36A +circumscribed 's3k@mskraIbd Hc%,Hd% 36A +circumscribes 's3k@mskraIbz Ha% 36A +circumscribing 's3k@mskraIbIN Hb% 46A +circumscription ,s3k@m'skrIpSn M6% 4 +circumscriptions ,s3k@m'skrIpSnz Mj$ 4 +circumspect 's3k@mspekt OA% 3 +circumspection ,s3k@m'spekSn L@% 4 +circumspectly 's3k@mspektlI Pu% 4 +circumstance 's3k@mst@ns K6% 3 +circumstances 's3k@mst@nsIz Kj% 4 +circumstantial ,s3k@m'st&nSl OA% 4 +circumstantially ,s3k@m'st&nS@lI Pu% 5 +circumvent ,s3k@m'vent H0% 36A +circumvented ,s3k@m'ventId Hc%,Hd% 46A +circumventing ,s3k@m'ventIN Hb% 46A +circumvention ,s3k@m'venSn K6% 4 +circumventions ,s3k@m'venSnz Kj% 4 +circumvents ,s3k@m'vents Ha% 36A +circus 's3k@s K7% 2 +circuses 's3k@sIz Kj% 3 +cirrhosis sI'r@UsIs L@% 3 +cirrus 'sIr@s L@% 2 +cissies 'sIsIz Kj% 2 +cissy 'sIsI K8%,OA% 2 +cistern 'sIst@n K6% 2 +cisterns 'sIst@nz Kj% 2 +citadel 'sIt@d@l K6% 3 +citadels 'sIt@d@lz Kj% 3 +citation saI'teISn M6% 3 +citations saI'teISnz Mj% 3 +cite saIt H2% 16A +cited 'saItId Hc%,Hd% 26A +cites saIts Ha% 16A +cities 'sItIz Kj% 2 +citing 'saItIN Hb% 26A +citizen 'sItIz@n K6% 3 +citizens 'sItIz@nz Kj% 3 +citizenship 'sItIz@nSIp K6% 4 +citizenships 'sItIz@nSIps Kj$ 4 +citric 'sItrIk OA% 2 +citron 'sItr@n K6% 2 +citrons 'sItr@nz Kj$ 2 +citrous 'sItr@s OA% 2 +citrus 'sItr@s K7% 2 +citruses 'sItr@sIz Kj$ 3 +city 'sItI K8* 2 +civet 'sIvIt M6% 2 +civet-cat 'sIvIt-k&t K6$ 3 +civet-cats 'sIvIt-k&ts Kj$ 3 +civets 'sIvIts Mj$ 2 +civic 'sIvIk OA% 2 +civics 'sIvIks Lk% 2 +civies 'sIvIz Kj$ 2 +civil 'sIv@l OA% 2 +civilian sI'vIlI@n K6%,OA% 4 +civilians sI'vIlI@nz Kj% 4 +civilities sI'vIlItIz Mj% 4 +civility sI'vIlItI M8% 4 +civilization ,sIvIlaI'zeISn M6% 5 +civilizations ,sIvIlaI'zeISnz Mj% 5 +civilize 'sIvIlaIz H2% 36A +civilized 'sIvIlaIzd Hc%,Hd% 36A +civilizes 'sIvIlaIzIz Ha% 46A +civilizing 'sIvIlaIzIN Hb% 46A +civilly 'sIv@lI Pu% 3 +civvies 'sIvIz Kj% 2 +clack kl&k I0%,K6% 1 +clacked kl&kt Ic%,Id% 1 +clacking 'kl&kIN Ib% 2 +clacks kl&ks Ia%,Kj% 1 +clad kl&d Hc%,Hd% 16A +claim kleIm J0%,M6% 12A,4A,7A,9 +claimant 'kleIm@nt K6% 2 +claimants 'kleIm@nts Kj% 2 +claimed kleImd Jc%,Jd% 12A,4A,7A,9 +claiming 'kleImIN Jb% 22A,4A,7A,9 +claims kleImz Ja%,Mj% 12A,4A,7A,9 +clairvoyance kle@'voI@ns L@% 3 +clairvoyant kle@'voI@nt K6% 3 +clairvoyants kle@'voI@nts Kj% 3 +clam kl&m I4%,K6% 12A,2C +clambake 'kl&mbeIk K6% 2 +clambakes 'kl&mbeIks Kj$ 2 +clamber 'kl&mb@R I0%,K6% 22C +clambered 'kl&mb@d Ic%,Id% 22C +clambering 'kl&mb@rIN Ib% 32C +clambers 'kl&mb@z Ia%,Kj% 22C +clammed kl&md Ic%,Id% 12A,2C +clammier 'kl&mI@R Or% 3 +clammiest 'kl&mIIst Os% 3 +clammily 'kl&mIlI Pu% 3 +clamming 'kl&mIN Ib% 22A,2C +clammy 'kl&mI OD% 2 +clamorous 'kl&m@r@s OA% 3 +clamour 'kl&m@R J0%,M6% 22A,2C,4A +clamoured 'kl&m@d Jc%,Jd% 22A,2C,4A +clamouring 'kl&m@rIN Jb% 32A,2C,4A +clamours 'kl&m@z Ja%,Mj% 22A,2C,4A +clamp kl&mp J0%,K6% 12C,6A,15B +clamp-down 'kl&mp-daUn K6% 2 +clamp-downs 'kl&mp-daUnz Kj% 2 +clamped kl&mpt Jc%,Jd% 12C,6A,15B +clamping 'kl&mpIN Jb% 22C,6A,15B +clamps kl&mps Ja%,Kj% 12C,6A,15B +clams kl&mz Ia%,Kj% 12A,2C +clan kl&n K6% 1 +clandestine kl&n'destIn OA% 3 +clang kl&N J0%,K6% 1 +clanged kl&Nd Jc%,Jd% 1 +clanger 'kl&N@R K6% 2 +clangers 'kl&N@z Kj% 2 +clanging 'kl&NIN Jb% 2 +clangorous 'kl&N@r@s OA$ 3 +clangour 'kl&N@R L@% 2 +clangs kl&Nz Ja%,Kj% 1 +clank kl&Nk J0%,K6% 1 +clanked kl&Nkt Jc%,Jd% 1 +clanking 'kl&NkIN Jb% 2 +clanks kl&Nks Ja%,Kj% 1 +clannish 'kl&nIS OA% 2 +clannishly 'kl&nISlI Pu% 3 +clans kl&nz Kj% 1 +clansman 'kl&nzm@n Ki% 2 +clansmen 'kl&nzm@n Kj% 2 +clap kl&p J4%,M6% 12A,2B,6A,14,15A,15B +clapboard 'kl&p+bOd K6% 2 +clapboards 'kl&p+bOdz Kj$ 2 +clapped kl&pt Jc%,Jd% 12A,2B,6A,14,15A,15B +clapper 'kl&p@R K6% 2 +clapperboard 'kl&p@bOd K6% 3 +clapperboards 'kl&p@bOdz Kj% 3 +clappers 'kl&p@z Kj% 2 +clapping 'kl&pIN Jb% 22A,2B,6A,14,15A,15B +claps kl&ps Ja%,Mj% 12A,2B,6A,14,15A,15B +claptrap 'kl&ptr&p L@% 2 +claque kl&k K6$ 1 +claques kl&ks Kj$ 1 +claret 'kl&r@t M6% 2 +clarets 'kl&r@ts Mj% 2 +clarification ,kl&rIfI'keISn L@% 5 +clarified 'kl&rIfaId Jc%,Jd% 32A,6A +clarifies 'kl&rIfaIz Ja% 32A,6A +clarify 'kl&rIfaI J3% 32A,6A +clarifying 'kl&rIfaIIN Jb% 42A,6A +clarinet ,kl&rI'net K6% 3 +clarinetist ,kl&rI'netIst K6$ 4 +clarinetists ,kl&rI'netIsts Kj$ 4 +clarinets ,kl&rI'nets Kj% 3 +clarinettist ,kl&rI'netIst K6% 4 +clarinettists ,kl&rI'netIsts Kj% 4 +clarion 'kl&rI@n K6% 3 +clarions 'kl&rI@nz Kj$ 3 +clarity 'kl&rItI L@% 3 +clash kl&S J1%,K7% 12A,2C,3A,6A,15B +clashed kl&St Jc%,Jd% 12A,2C,3A,6A,15B +clashes 'kl&SIz Ja%,Kj% 22A,2C,3A,6A,15B +clashing 'kl&SIN Jb% 22A,2C,3A,6A,15B +clasp klAsp J0%,K6% 12A,6A,15A +clasp-knife 'klAsp-naIf Ki% 2 +clasp-knives 'klAsp-naIvz Kj% 2 +clasped klAspt Jc%,Jd% 12A,6A,15A +clasping 'klAspIN Jb% 22A,6A,15A +clasps klAsps Ja%,Kj% 12A,6A,15A +class klAs H1%,M7% 16A,14 +class-conscious klAs-'k0nS@s OA% 3 +class-feeling klAs-'filIN L@% 3 +class-fellow 'klAs-fel@U K6% 3 +class-fellows 'klAs-fel@Uz Kj% 3 +class-list 'klAs-lIst K6% 2 +class-lists 'klAs-lIsts Kj% 2 +class-warfare klAs-'wOfe@R L@% 3 +classed klAst Hc%,Hd% 16A,14 +classes 'klAsIz Ha%,Mj% 26A,14 +classic 'kl&sIk K6%,OA% 2 +classical 'kl&sIkl OA% 3 +classically 'kl&sIklI Pu% 3 +classicism 'kl&sIsIzm L@% 4 +classicist 'kl&sIsIst K6% 3 +classicists 'kl&sIsIsts Kj% 3 +classics 'kl&sIks Kj%,Lk% 2 +classier 'klAsI@R Or% 3 +classiest 'klAsIIst Os% 3 +classifiable 'kl&sIfaI@bl OA% 5 +classification ,kl&sIfI'keISn M6% 5 +classifications ,kl&sIfI'keISnz Mj% 5 +classified 'kl&sIfaId Hc%,Hd%,OA% 36A +classifies 'kl&sIfaIz Ha% 36A +classify 'kl&sIfaI H3% 36A +classifying 'kl&sIfaIIN Hb% 46A +classing 'klAsIN Hb% 26A,14 +classless 'klAsl@s OA% 2 +classmate 'klAsmeIt K6% 2 +classmates 'klAsmeIts Kj% 2 +classroom 'kl&srum K6% 2 +classrooms 'kl&srumz Kj% 2 +classy 'klAsI OD% 2 +clatter 'kl&t@R J0%,Ki% 22A,2C,6A +clattered 'kl&t@d Jc%,Jd% 22A,2C,6A +clattering 'kl&t@rIN Jb% 32A,2C,6A +clatters 'kl&t@z Ja% 22A,2C,6A +clause klOz K6% 1 +clauses 'klOzIz Kj% 2 +claustrophobia ,klOstr@'f@UbI@ L@% 5 +claustrophobic ,klOstr@'f@UbIk OA% 4 +clave kleIv Ic$ 13A +clavichord 'kl&vIkOd K6% 3 +clavichords 'kl&vIkOdz Kj% 3 +clavicle 'kl&vIkl K6% 3 +clavicles 'kl&vIklz Kj% 3 +claw klO H0%,K6% 13A,6A,15B +clawback 'klOb&k L@% 2 +clawed klOd Hc%,Hd% 13A,6A,15B +clawhammer 'klOh&m@R K6% 3 +clawhammers 'klOh&m@z Kj% 3 +clawing 'klOIN Hb% 23A,6A,15B +claws klOz Ha%,Kj% 13A,6A,15B +clay kleI L@% 1 +clayey 'kleII OA% 2 +clean klin J0%,K6%,OC%,Pu% 12A,2C,6A,15B +clean-bowled klin-'b@Uld OA% 2 +clean-cut klin-'kVt OA% 2 +clean-limbed klin-'lImd OA% 2 +clean-living klin-'lIvIN OA% 3 +clean-shaven klin-'SeIvn OA% 3 +clean-up 'klin-Vp K6% 2 +clean-ups 'klin-Vps Kj$ 2 +cleaned klind Jc%,Jd% 12A,2C,6A,15B +cleaner 'klin@R K6%,Or% 2 +cleaners 'klin@z Kj% 2 +cleanest 'klinIst Os% 2 +cleaning 'klinIN Jb% 22A,2C,6A,15B +cleanlier 'klenlI@R Or$ 3 +cleanliest 'klenlIIst Os$ 3 +cleanliness 'klenlIn@s L@% 3 +cleanly 'klenlI OD$ 2 +cleanly 'klinlI Pu% 2 +cleans klinz Ja%,Kj% 12A,2C,6A,15B +cleanse klenz H2% 16A +cleansed klenzd Hc%,Hd% 16A +cleanser 'klenz@R M6% 2 +cleansers 'klenz@z Mj% 2 +cleanses 'klenzIz Ha% 26A +cleansing 'klenzIN Hb% 26A +clear klI@R J0%,K6%,OC%,Pu% 12C,6A,14,15B +clear-cut klI@-'kVt Pu% 2 +clear-headed klI@-'hedId OA% 3 +clear-sighted klI@-'saItId OA% 3 +clearance 'klI@r@ns M6% 2 +clearances 'klI@r@nsIz Mj% 3 +cleared klI@d Jc%,Jd% 12C,6A,14,15B +clearer 'klI@r@R Or% 2 +clearest 'klI@rIst Os% 2 +clearing 'klI@rIN Jb%,K6% 22C,6A,14,15B +clearing-house 'klI@rIN-haUs K6% 3 +clearing-houses 'klI@rIN-haUzIz Kj% 4 +clearings 'klI@rINz Kj% 2 +clearly 'klI@lI Pu% 2 +clearness 'klI@n@s L@% 2 +clears klI@z Ja%,Kj$ 12C,6A,14,15B +clearway 'klI@weI K6% 2 +clearways 'klI@weIz Kj% 2 +cleat klit K6$ 1 +cleats klits Kj$ 1 +cleavage 'klivIdZ K6% 2 +cleavages 'klivIdZIz Kj$ 3 +cleave kliv J2% 12A,3A,6A,14,15A,15B,22 +cleaved klivd Jc%,Jd% 12A,3A,6A,14,15A,15B,22 +cleaver 'kliv@R K6% 2 +cleavers 'kliv@z Kj% 2 +cleaves klivz Ja% 12A,3A,6A,14,15A,15B,22 +cleaving 'klivIN Jb% 22A,3A,6A,14,15A,15B,22 +clef klef K6% 1 +clefs klefs Kj% 1 +cleft kleft Jc%,Jd%,K6% 12A,6A,14,15A,15B,22 +clefts klefts Kj% 1 +clematis 'klem@tIs L@% 3 +clemency 'klem@nsI L@% 3 +clement 'klem@nt OA% 2 +clench klentS H1% 16A,14 +clenched klentSt Hc%,Hd% 16A,14 +clenches 'klentSIz Ha% 26A,14 +clenching 'klentSIN Hb% 26A,14 +clerestories 'klI@stOrIz Kj$ 3 +clerestory 'klI@stOrI K8$ 3 +clergies 'kl3dZIz Kj% 2 +clergy 'kl3dZI K8% 2 +clergyman 'kl3dZIm@n Ki% 3 +clergymen 'kl3dZIm@n Kj% 3 +cleric 'klerIk K6% 2 +clerical 'klerIkl OA% 3 +clerics 'klerIks Kj% 2 +clerihew 'klerIhju K6$ 3 +clerihews 'klerIhjuz Kj$ 3 +clerk klAk I0$,K6% 1 +clerked klAkt Ic$,Id$ 1 +clerking 'klAkIN Ib$ 2 +clerks klAks Ia$,Kj% 1 +clever 'klev@R OC% 2 +cleverer 'klev@r@R Or% 3 +cleverest 'klev@rIst Os% 3 +cleverly 'klev@lI Pu% 3 +cleverness 'klev@n@s L@% 3 +clew klu H0$,K6$ 1 +clewed klud Hc$,Hd$ 1 +clewing 'kluIN Hb$ 2 +clews kluz Ha$,Kj$ 1 +clich_e 'kliSeI K6% 2 +clich_es 'kliSeIz Kj% 2 +click klIk I0%,K6% 12A +clicked klIkt Ic%,Id% 12A +clicking 'klIkIN Ib% 22A +clicks klIks Ia%,Kj% 12A +client 'klaI@nt K6% 2 +clientele ,kli@n'tel K6% 3 +clienteles ,kli@n'telz Kj% 3 +clients 'klaI@nts Kj% 2 +cliff klIf K6% 1 +cliff-hanger 'klIf-h&N@R K6% 3 +cliff-hangers 'klIf-h&N@z Kj% 3 +cliffs klIfs Kj% 1 +climacteric klaI'm&kt@rIk K6$ 4 +climacterics klaI'm&kt@rIks Kj$ 4 +climactic klaI'm&ktIk OA% 3 +climate 'klaIm@t K6% 2 +climates 'klaIm@ts Kj% 2 +climatic klaI'm&tIk OA% 3 +climatically klaI'm&tIklI Pu% 4 +climatology ,klaIm@'t0l@dZI L@% 5 +climax 'klaIm&ks J1%,K7% 2 +climaxed 'klaIm&kst Jc%,Jd% 2 +climaxes 'klaIm&ksIz Ja%,Kj% 3 +climaxing 'klaIm&ksIN Jb% 3 +climb klaIm J0%,K6% 12A,2C,6A +climb-down 'klaIm-daUn K6% 2 +climb-downs 'klaIm-daUnz Kj$ 2 +climbed klaImd Jc%,Jd% 12A,2C,6A +climber 'klaIm@R K6% 2 +climbers 'klaIm@z Kj% 2 +climbing 'klaImIN Jb% 22A,2C,6A +climbs klaImz Ja%,Kj% 12A,2C,6A +clime klaIm K6$ 1 +climes klaImz Kj% 1 +clinch klIntS J1%,K7% 12A,6A +clinched klIntSt Jc%,Jd% 12A,6A +clincher 'klIntS@R K6% 2 +clinchers 'klIntS@z Kj$ 2 +clinches 'klIntSIz Ja%,Kj% 22A,6A +clinching 'klIntSIN Jb% 22A,6A +cling klIN I5% 12C,3A +clinging 'klININ Ib% 22C,3A +clings klINz Ia% 12C,3A +clinic 'klInIk K6% 2 +clinical 'klInIkl OA% 3 +clinically 'klInIklI Pu% 3 +clinics 'klInIks Kj% 2 +clink klINk J0%,K6% 1 +clinked klINkt Jc%,Jd% 1 +clinker 'klINk@R M6% 2 +clinker-built 'klINk@-bIlt OA$ 3 +clinkers 'klINk@z Mj% 2 +clinking 'klINkIN Jb% 2 +clinks klINks Ja%,Kj% 1 +clip klIp H4%,K6% 12C,6A,15A,15B,22 +clip-joint 'klIp-dZoInt K6% 2 +clip-joints 'klIp-dZoInts Kj% 2 +clip-on 'klIp-0n OA% 2 +clipped klIpt Hc%,Hd% 12C,6A,15A,15B,22 +clipper 'klIp@R K6% 2 +clippers 'klIp@z Kj% 2 +clipping 'klIpIN Hb%,K6% 22C,6A,15A,15B,22 +clippings 'klIpINz Kj% 2 +clips klIps Ha%,Kj% 12C,6A,15A,15B,22 +clique klik K6% 1 +cliques kliks Kj% 1 +cliquish 'klikIS OA% 2 +clitoris 'klIt@rIs K7% 3 +clitorises 'klIt@rIsIz Kj$ 4 +cloak kl@Uk H0%,K6% 16A +cloaked kl@Ukt Hc%,Hd% 16A +cloaking 'kl@UkIN Hb% 26A +cloakroom 'kl@Ukrum K6% 2 +cloakrooms 'kl@Ukrumz Kj% 2 +cloaks kl@Uks Ha%,Kj% 16A +clobber 'kl0b@R H0%,K6% 26A +clobbered 'kl0b@d Hc%,Hd% 26A +clobbering 'kl0b@rIN Hb% 36A +clobbers 'kl0b@z Ha%,Kj% 26A +cloche kl0S K6% 1 +cloches 'kl0SIz Kj% 2 +clock kl0k J0%,K6% 12C,6A,15B +clock-dial 'kl0k-daI@l K6$ 3 +clock-dials 'kl0k-daI@lz Kj$ 3 +clock-face 'kl0k-feIs K6% 2 +clock-faces 'kl0k-feIsIz Kj% 3 +clock-golf kl0k-'g0lf L@$ 2 +clock-tower 'kl0k-taU@R K6% 3 +clock-towers 'kl0k-taU@z Kj% 3 +clock-watching 'kl0k-w0tSIN L@% 3 +clocked kl0kt Jc%,Jd% 12C,6A,15B +clocking 'kl0kIN Jb% 22C,6A,15B +clocks kl0ks Ja%,Kj% 12C,6A,15B +clockwise 'kl0kwaIz Pu% 2 +clockwork 'kl0kw3k K6% 2 +clockworks 'kl0kw3ks Kj$ 2 +clod kl0d K6% 1 +clodhopper 'kl0dh0p@R K6% 3 +clodhoppers 'kl0dh0p@z Kj% 3 +clods kl0dz Kj% 1 +clog kl0g J4%,K6% 12A,2C,6A,15B +clog-dance 'kl0g-dAns K6% 2 +clog-dances 'kl0g-dAnsIz Kj% 3 +clogged kl0gd Jc%,Jd% 12A,2C,6A,15B +cloggier 'kl0gI@R Or$ 3 +cloggiest 'kl0gIIst Os$ 3 +clogging 'kl0gIN Jb% 22A,2C,6A,15B +cloggy 'kl0gI OD% 2 +clogs kl0gz Ja%,Kj% 12A,2C,6A,15B +cloisonn_e klwA'z0neI L@$ 3 +cloister 'kloIst@R H0%,K6% 26A +cloistered 'kloIst@d Hc%,Hd% 26A +cloistering 'kloIst@rIN Hb$ 36A +cloisters 'kloIst@z Ha$,Kj% 26A +clone kl@Un K6% 1 +clones kl@Unz Kj% 1 +close kl@Us K6%,OB*,Pu* 1 +close kl@Uz J2*,Ki% 12A,2C,3A,6A,15B +close-cropped kl@Us-'kr0pt OA% 2 +close-cut kl@Us-'kVt OA% 2 +close-down 'kl@Uz-daUn K6% 2 +close-downs 'kl@Uz-daUnz Kj$ 2 +close-fisted kl@Us-'fIstId OA% 3 +close-fitting kl@Us-'fItIN OA% 3 +close-grained kl@Us-'greInd OA% 2 +close-hauled kl@Us-'hOld OA$ 2 +close-set 'kl@Us-set OA% 2 +close-up 'kl@Us-Vp K6% 2 +close-ups 'kl@Us-Vps Kj% 2 +closed kl@Uzd Jc%,Jd% 12A,2C,3A,6A,15B +closely 'kl@UslI Pu% 2 +closeness 'kl@Usn@s L@% 2 +closer 'kl@Us@R Or% 2 +closes 'kl@UsIz Kj$ 2 +closes 'kl@UzIz Ja% 22A,2C,3A,6A,15B +closest 'kl@UsIst Os% 2 +closet 'kl0zIt H0%,K6%,Oq% 2 +closeted 'kl0zItId Hc%,Hd% 3 +closeting 'kl0zItIN Hb$ 3 +closets 'kl0zIts Ha$,Kj% 2 +closing 'kl@UzIN Jb% 22A,2C,3A,6A,15B +closure 'kl@UZ@R M6% 2 +closures 'kl@UZ@z Mj% 2 +clot kl0t J4%,K6% 12A,6A +cloth kl0T M6% 1 +clothe kl@UD H2% 16A +clothed kl@UDd Hc%,Hd% 16A +clothes kl@UDz Ha%,Kj% 16A +clothes-basket 'kl@UDz-bAskIt K6% 3 +clothes-baskets 'kl@UDz-bAskIts Kj% 3 +clothes-hanger 'kl@UDz-h&N@R K6% 3 +clothes-hangers 'kl@UDz-h&N@z Kj% 3 +clothes-moth 'kl@UDz-m0T K6% 2 +clothes-moths 'kl@UDz-m0Ts Kj% 2 +clothes-peg 'kl@UDz-peg K6% 2 +clothes-pegs 'kl@UDz-pegz Kj% 2 +clothes-pin 'kl@UDz-pIn K6$ 2 +clothes-pins 'kl@UDz-pInz Kj$ 2 +clotheshorse 'kl@UDzhOs K6% 2 +clotheshorses 'kl@UDzhOsIz Kj% 3 +clothesline 'kl@UDzlaIn K6% 2 +clotheslines 'kl@UDzlaInz Kj% 2 +clothier 'kl@UDI@R K6% 3 +clothiers 'kl@UDI@z Kj% 3 +clothing 'kl@UDIN Hb%,L@% 26A +cloths kl0Ts Mj% 1 +clots kl0ts Ja%,Kj% 12A,6A +clotted 'kl0tId Jc%,Jd% 22A,6A +clotting 'kl0tIN Jb% 22A,6A +cloud klaUd J0%,M6% 12A,2C,3A,6A +cloud-bank 'klaUd-b&Nk K6% 2 +cloud-banks 'klaUd-b&Nks Kj% 2 +cloud-capped 'klaUd-k&pt OA% 2 +cloud-cuckoo-land ,klaUd-'kUku-l&nd Ki% 4 +cloudburst 'klaUdb3st K6% 2 +cloudbursts 'klaUdb3sts Kj% 2 +clouded 'klaUdId Jc%,Jd% 22A,2C,3A,6A +cloudier 'klaUdI@R Or% 3 +cloudiest 'klaUdIIst Os% 3 +clouding 'klaUdIN Jb% 22A,2C,3A,6A +cloudless 'klaUdl@s OA% 2 +clouds klaUdz Ja%,Mj% 12A,2C,3A,6A +cloudy 'klaUdI OD% 2 +clout klaUt H0%,K6% 1 +clouted 'klaUtId Hc%,Hd% 2 +clouting 'klaUtIN Hb% 2 +clouts klaUts Ha%,Kj$ 1 +clove kl@Uv Jc%,K6% 12A,6A,14,15A,15B,22 +clove hitch 'kl@Uv hItS K7% 2 +clove hitches 'kl@Uv hItSIz Kj% 3 +cloven 'kl@Uvn Jc%,Jd% 22A,6A,14,15A,15B,22 +clover 'kl@Uv@R L@% 2 +cloverleaf 'kl@Uv@lif Ki% 3 +cloverleaves 'kl@Uv@livz Kj% 3 +cloves kl@Uvz Kj% 1 +clown klaUn I0%,K6% 12A +clowned klaUnd Ic%,Id% 12A +clowning 'klaUnIN Ib% 22A +clownish 'klaUnIS OA% 2 +clowns klaUnz Ia%,Kj% 12A +cloy kloI J0% 12A,6A +cloyed kloId Jc%,Jd% 12A,6A +cloying 'kloIIN Jb% 22A,6A +cloys kloIz Ja% 12A,6A +club klVb J4%,K6% 12C,6A,16A +club-footed 'klVb-fUtId OA% 3 +clubbable 'klVb@b@l OA% 3 +clubbed klVbd Jc%,Jd% 12C,6A,16A +clubbing 'klVbIN Jb% 22C,6A,16A +clubfoot 'klVbfUt Ki% 2 +clubhouse 'klVbhaUs K6% 2 +clubhouses 'klVbhaUzIz Kj% 3 +clubs klVbz Ja%,Kj% 12C,6A,16A +cluck klVk I0%,K6% 1 +clucked klVkt Ic%,Id% 1 +clucking 'klVkIN Ib% 2 +clucks klVks Ia%,Kj% 1 +clue klu K6% 1 +clues kluz Kj% 1 +clump klVmp J0%,K6% 12A,2C +clumped klVmpt Jc%,Jd% 12A,2C +clumping 'klVmpIN Jb% 22A,2C +clumps klVmps Ja%,Kj% 12A,2C +clumsier 'klVmzI@R Or% 3 +clumsiest 'klVmzIIst Os% 3 +clumsily 'klVmzIlI Pu% 3 +clumsiness 'klVmzIn@s L@% 3 +clumsy 'klVmzI OD% 2 +clung klVN Ic%,Id% 12C,3A +clunk klVNk I0%,K6% 1 +clunked klVNkt Ic%,Id% 1 +clunking 'klVNkIN Ib% 2 +clunks klVNks Ia%,Kj% 1 +cluster 'klVst@R I0%,K6% 22A,2C,3A +clustered 'klVst@d Ic%,Id% 22A,2C,3A +clustering 'klVst@rIN Ib% 32A,2C,3A +clusters 'klVst@z Ia%,Kj% 22A,2C,3A +clutch klVtS J1%,K7% 12A,3A,15A +clutched klVtSt Jc%,Jd% 12A,3A,15A +clutches 'klVtSIz Ja%,Kj% 22A,3A,15A +clutching 'klVtSIN Jb% 22A,3A,15A +clutter 'klVt@R H0%,M6% 26A,15B +cluttered 'klVt@d Hc%,Hd% 26A,15B +cluttering 'klVt@rIN Hb% 36A,15B +clutters 'klVt@z Ha%,Mj% 26A,15B +cm ,si'em Y]% 2 +co- k@U- U-% 1 +co-ed 'k@U-ed K6$ 2 +co-eds 'k@U-edz Kj$ 2 +co-op 'k@U-0p K6% 2 +co-ops 'k@U-0ps Kj% 2 +co-opt k@U-'0pt H0% 26A,14 +co-opted k@U-'0ptId Hc%,Hd% 36A,14 +co-opting k@U-'0ptIN Hb% 36A,14 +co-opts k@U-'0pts Ha% 26A,14 +co-respondent ,k@U-rI'sp0nd@nt K6% 4 +co-respondents ,k@U-rI'sp0nd@nts Kj% 4 +co-star 'k@U-stAR K6% 2 +co-star ,k@U-'stAR J4% 26A,14 +co-starred ,k@U-'stAd Jc%,Jd% 26A,14 +co-starring ,k@U-'stArIN Jb% 36A,14 +co-stars 'k@U-stAz Kj% 2 +co-stars ,k@U-'stAz Ja% 26A,14 +coach k@UtS J1%,K7% 12A,6A,14 +coach-builder 'k@UtS-bIld@R K6% 3 +coach-builders 'k@UtS-bIld@z Kj% 3 +coached k@UtSt Jc%,Jd% 12A,6A,14 +coaches 'k@UtSIz Ja%,Kj% 22A,6A,14 +coaching 'k@UtSIN Jb% 22A,6A,14 +coachman 'k@UtSm@n Ki% 2 +coachmen 'k@UtSmen Kj% 2 +coagulate k@U'&gjUleIt J2% 42A,6A +coagulated k@U'&gjUleItId Jc%,Jd% 52A,6A +coagulates k@U'&gjUleIts Ja% 42A,6A +coagulating k@U'&gjUleItIN Jb% 52A,6A +coagulation k@U,&gjU'leISn M6% 5 +coagulations k@U,&gjU'leISnz Mj$ 5 +coal k@Ul J0$,M6% 12A,6A +coal-gas 'k@Ul-g&s L@% 2 +coal-hole 'k@Ul-h@Ul K6% 2 +coal-holes 'k@Ul-h@Ulz Kj% 2 +coal-house 'k@Ul-haUs K6% 2 +coal-houses 'k@Ul-haUzIz Kj% 3 +coal-scuttle 'k@Ul-skVtl K6% 3 +coal-scuttles 'k@Ul-skVtlz Kj% 3 +coal-seam 'k@Ul-sim K6% 2 +coal-seams 'k@Ul-simz Kj% 2 +coal-tar 'k@Ul-tAR L@% 2 +coaled k@Uld Jc$,Jd$ 12A,6A +coalesce ,k@U@'les I2% 3 +coalesced ,k@U@'lest Ic%,Id% 3 +coalescence ,k@U@'les@ns M6% 4 +coalescences ,k@U@'les@nsIz Mj$ 5 +coalesces ,k@U@'lesIz Ia% 4 +coalescing ,k@U@'lesIN Ib% 4 +coalface 'k@UlfeIs K6% 2 +coalfaces 'k@UlfeIsIz Kj% 3 +coalfield 'k@Ulfild K6% 2 +coalfields 'k@Ulfildz Kj% 2 +coaling 'k@UlIN Jb$ 22A,6A +coaling-station 'k@UlIN-steISn K6$ 4 +coaling-stations 'k@UlIN-steISnz Kj$ 4 +coalition ,k@U@'lISn M6% 4 +coalitions ,k@U@'lISnz Mj% 4 +coalman 'k@Ulm@n Ki% 2 +coalmen 'k@Ulmen Kj% 2 +coalmine 'k@UlmaIn K6% 2 +coalmines 'k@UlmaInz Kj% 2 +coalpit 'k@UlpIt K6% 2 +coalpits 'k@UlpIts Kj% 2 +coals k@Ulz Ja$,Mj% 12A,6A +coaming 'k@UmIN K6$ 2 +coamings 'k@UmINz Kj$ 2 +coarse kOs OB% 1 +coarsely 'kOslI Pu% 2 +coarsen 'kOsn J0% 22A,6A +coarsened 'kOsnd Jc%,Jd% 22A,6A +coarseness 'kOsn@s L@% 2 +coarsening 'kOsnIN Jb% 32A,6A +coarsens 'kOsnz Ja% 22A,6A +coarser 'kOs@R Or% 2 +coarsest 'kOsIst Os% 2 +coast k@Ust J0%,K6% 12A,2C,3A,6A +coastal 'k@Ustl OA% 2 +coasted 'k@UstId Jc%,Jd% 22A,2C,3A,6A +coaster 'k@Ust@R K6% 2 +coasters 'k@Ust@z Kj% 2 +coastguard 'k@UstgAd K6% 2 +coastguards 'k@UstgAdz Kj% 2 +coasting 'k@UstIN Jb% 22A,2C,3A,6A +coastline 'k@UstlaIn K6% 2 +coastlines 'k@UstlaInz Kj% 2 +coasts k@Usts Ja%,Kj% 12A,2C,3A,6A +coastwise 'k@UstwaIz OA$,Pu$ 2 +coat k@Ut H0%,K6% 16A,14 +coat-hanger 'k@Ut-h&N@R K6% 3 +coat-hangers 'k@Ut-h&N@z Kj% 3 +coat-tails 'k@Ut-teIls Kj% 2 +coated 'k@UtId Hc%,Hd% 26A,14 +coatee k@U'ti K6$ 2 +coatees k@U'tiz Kj$ 2 +coating 'k@UtIN Hb%,M6% 26A,14 +coatings 'k@UtINz Mj% 2 +coats k@Uts Ha%,Kj% 16A,14 +coax k@Uks J1% 12A,6A,14,15B,17 +coaxed k@Ukst Jc%,Jd% 12A,6A,14,15B,17 +coaxes 'k@UksIz Ja% 22A,6A,14,15B,17 +coaxing 'k@UksIN Jb%,M6% 22A,6A,14,15B,17 +coaxingly 'k@UksINlI Pu% 3 +coaxings 'k@UksINz Mj$ 2 +cob k0b K6% 1 +cob-nut 'k0b-nVt K6% 2 +cob-nuts 'k0b-nVts Kj% 2 +cobalt 'k@UbOlt L@% 2 +cobber 'k0b@R K6$ 2 +cobbers 'k0b@z Kj$ 2 +cobble 'k0bl H2%,K6% 26A +cobbled 'k0bld Hc%,Hd% 26A +cobbler 'k0bl@R K6% 2 +cobblers 'k0bl@z Kj% 2 +cobbles 'k0blz Ha%,Kj% 26A +cobblestone 'k0blst@Un K6% 3 +cobblestones 'k0blst@Unz Kj% 3 +cobbling 'k0blIN Hb% 26A +cobra 'k@Ubr@ K6% 2 +cobras 'k@Ubr@z Kj% 2 +cobs k0bz Kj% 1 +cobweb 'k0bweb K6% 2 +cobwebs 'k0bwebz Kj% 2 +cocaine k@U'keIn L@% 2 +cochineal ,k0tSI'nil L@$ 3 +cochlea 'k0klI@ K6$ 3 +cochleas 'k0klI@z Kj$ 3 +cock k0k H0%,K6% 16A,15B +cock-a-doodle-doo ,k0k-@-,dudl-'du K6% 5 +cock-a-doodle-doos ,k0k-@-,dudl-'duz Kj% 5 +cock-a-hoop ,k0k-@-'hup OA%,Pu% 3 +cock-crow 'k0k-kr@U K6% 2 +cock-crows 'k0k-kr@Uz Kj% 2 +cockade k0'keId K6% 2 +cockades k0'keIdz Kj% 2 +cockatoo ,k0k@'tu K6% 3 +cockatoos ,k0k@'tuz Kj% 3 +cockchafer 'k0ktSeIf@R K6% 3 +cockchafers 'k0ktSeIf@z Kj% 3 +cocked k0kt Hc%,Hd% 16A,15B +cocker 'k0k@R K6$ 2 +cockerel 'k0k@r@l K6% 3 +cockerels 'k0k@r@lz Kj% 3 +cockers 'k0k@z Kj$ 2 +cockeyed 'k0kaId OA% 2 +cockfighting 'k0kfaItIN L@% 3 +cockhorse ,k0k'hOs K6% 2 +cockhorses ,k0k'hOsIz Kj$ 3 +cockier 'k0kI@R Or% 3 +cockiest 'k0kIIst Os% 3 +cocking 'k0kIN Hb% 26A,15B +cockle 'k0kl K6% 2 +cockles 'k0klz Kj% 2 +cockleshell 'k0klSel K6% 3 +cockleshells 'k0klSelz Kj% 3 +cockney 'k0knI K6%,OA% 2 +cockneys 'k0knIz Kj% 2 +cockpit 'k0kpIt K6% 2 +cockpits 'k0kpIts Kj% 2 +cockroach 'k0kr@UtS K7% 2 +cockroaches 'k0kr@UtSIz Kj% 3 +cocks k0ks Ha%,Kj% 16A,15B +cockscomb 'k0ksk@Um K6% 2 +cockscombs 'k0ksk@Umz Kj$ 2 +cocksure ,k0k'SU@R OA% 2 +cocktail 'k0kteIl K6% 2 +cocktails 'k0kteIlz Kj% 2 +cockup 'k0kVp K6% 2 +cockups 'k0kVps Kj% 2 +cocky 'k0kI OD% 2 +coco 'k@Uk@U K6$ 2 +cocoa 'k@Uk@U L@% 2 +coconut 'k@Uk@nVt K6% 3 +coconuts 'k@Uk@nVts Kj% 3 +cocoon k@'kun H0%,K6% 26A +cocooned k@'kund Hc%,Hd% 26A +cocooning k@'kunIN Hb% 36A +cocoons k@'kunz Ha%,Kj% 26A +cocos 'k@Uk@Uz Kj$ 2 +cocotte k0'k0t K6$ 2 +cocottes k0'k0ts Kj$ 2 +cod k0d J4%,M6% 12A,6A +cod-liver oil ,k0d-lIv@r 'oIl L@% 4 +coda 'k@Ud@ K6% 2 +codas 'k@Ud@z Kj% 2 +codded 'k0dId Jc%,Jd% 22A,6A +codding 'k0dIN Jb% 22A,6A +coddle 'k0dl H2% 26A +coddled 'k0dld Hc%,Hd% 26A +coddles 'k0dlz Ha% 26A +coddling 'k0dlIN Hb% 26A +code k@Ud H2%,M6% 1 +coded 'k@UdId Hc%,Hd% 2 +codeine 'k@Udin L@% 2 +codes k@Udz Ha%,Mj% 1 +codex 'k@Udeks Ki$ 2 +codfish 'k0dfIS K9% 2 +codfishes 'k0dfISIz Kj$ 3 +codger 'k0dZ@R K6% 2 +codgers 'k0dZ@z Kj% 2 +codices 'k@UdIsiz Kj$ 3 +codicil 'k@UdIsIl K6$ 3 +codicils 'k@UdIsIlz Kj$ 3 +codification ,k@UdIfI'keISn K6% 5 +codifications ,k@UdIfI'keISnz Kj$ 5 +codified 'k@UdIfaId Hc%,Hd% 36A +codifies 'k@UdIfaIz Ha% 36A +codify 'k@UdIfaI H3% 36A +codifying 'k@UdIfaIIN Hb% 46A +coding 'k@UdIN Hb% 2 +codling 'k0dlIN K6$ 2 +codlings 'k0dlINz Kj$ 2 +codpiece 'k0dpis K6% 2 +codpieces 'k0dpisIz Kj% 3 +cods k0dz Ja%,Mj$ 12A,6A +coeducation ,k@U,edZU'keISn L@% 5 +coeducational ,k@UIdj@'keIS@n@l OA% 6 +coefficient ,k@UI'fISnt K6% 4 +coefficients ,k@UI'fISnts Kj% 4 +coerce k@U'3s H2% 26A,14 +coerced k@U'3st Hc%,Hd% 26A,14 +coerces k@U'3sIz Ha% 36A,14 +coercing k@U'3sIN Hb% 36A,14 +coercion k@U'3Sn L@% 3 +coercive k@U'3sIv OA$ 3 +coeval ,k@U'ivl K6$,OA$ 3 +coevals ,k@U'ivlz Kj$ 3 +coexist ,k@UIg'zIst I0% 32A,3A +coexisted ,k@UIg'zIstId Ic%,Id% 42A,3A +coexistence ,k@UIg'zIst@ns L@% 4 +coexisting ,k@UIg'zIstIN Ib% 42A,3A +coexists ,k@UIg'zIsts Ia% 32A,3A +coffee 'k0fI M6% 2 +coffee-house 'k0fI-haUs K6% 3 +coffee-houses 'k0fI-haUzIz Kj% 4 +coffee-mill 'k0fI-mIl K6% 3 +coffee-mills 'k0fI-mIlz Kj% 3 +coffee-stall 'k0fI-stOl K6% 3 +coffee-stalls 'k0fI-stOlz Kj% 3 +coffees 'k0fIz Mj% 2 +coffer 'k0f@R K6$ 2 +coffer-dam 'k0f@-d&m K6$ 3 +coffer-dams 'k0f@-d&mz Kj$ 3 +coffers 'k0f@z Kj% 2 +coffin 'k0fIn K6% 2 +coffins 'k0fInz Kj% 2 +cog k0g K6% 1 +cogency 'k@UdZ@nsI L@% 3 +cogent 'k@UdZ@nt OA% 2 +cogitate 'k0dZIteIt J2% 32A,3A,6A,14 +cogitated 'k0dZIteItId Jc%,Jd% 42A,3A,6A,14 +cogitates 'k0dZIteIts Ja% 32A,3A,6A,14 +cogitating 'k0dZIteItIN Jb% 42A,3A,6A,14 +cogitation ,k0dZI'teISn L@% 4 +cognac 'k0nj&k L@% 2 +cognate 'k0gneIt K6$,OA% 2 +cognates 'k0gneIts Kj$ 2 +cognition k0g'nISn L@% 3 +cognizance 'k0gnIz@ns L@% 3 +cognizant 'k0gnIz@nt OA% 3 +cognomen k0g'n@Um@n K6$ 3 +cognomens k0g'n@Um@nz Kj$ 3 +cogs k0gz Kj% 1 +cogwheel 'k0gwil K6% 2 +cogwheels 'k0gwilz Kj% 2 +cohabit k@U'h&bIt I0% 3 +cohabitation ,k@Uh&bI'teISn M6% 5 +cohabited k@U'h&bItId Ic%,Id% 4 +cohabiting k@U'h&bItIN Ib% 4 +cohabits k@U'h&bIts Ia% 3 +cohere k@U'hI@R I2$ 22A +cohered k@U'hI@d Ic$,Id$ 22A +coherence ,k@U'hI@r@ns L@% 3 +coherency ,k@U'hI@r@nsI L@$ 4 +coherent k@'hI@r@nt OA% 3 +coherently k@'hI@r@ntlI Pu% 4 +coheres k@U'hI@z Ia$ 22A +cohering k@U'hI@rIN Ib% 32A +cohesion k@U'hiZn L@% 3 +cohesive k@U'hisIv OA% 3 +cohort 'k@UhOt K6% 2 +cohorts 'k@UhOts Kj% 2 +coif koIf K6$ 1 +coiffeur kwA'f3R K6% 2 +coiffeurs kwA'f3z Kj% 2 +coiffure kwA'fjU@R K6% 2 +coiffures kwA'fjU@z Kj% 2 +coifs koIfs Kj$ 1 +coign koIn K6$ 1 +coigns koInz Kj$ 1 +coil koIl J0%,K6% 12A,2C,6A,15A,15B +coiled koIld Jc%,Jd% 12A,2C,6A,15A,15B +coiling 'koIlIN Jb% 22A,2C,6A,15A,15B +coils koIlz Ja%,Kj% 12A,2C,6A,15A,15B +coin koIn H0%,M6% 16A +coinage 'koInIdZ M6% 2 +coinages 'koInIdZIz Mj% 3 +coincide ,k@UIn'saId I2% 32A,3A +coincided ,k@UIn'saIdId Ic%,Id% 42A,3A +coincidence k@U'InsId@ns M6% 4 +coincidences k@U'InsId@nsIz Mj% 5 +coincident k@U'InsId@nt OA$ 4 +coincidental k@U,InsI'dentl OA% 5 +coincides ,k@UIn'saIdz Ia% 32A,3A +coinciding ,k@UIn'saIdIN Ib% 42A,3A +coined koInd Hc%,Hd% 16A +coiner 'koIn@R K6% 2 +coiners 'koIn@z Kj% 2 +coining 'koInIN Hb% 26A +coins koInz Ha%,Mj% 16A +coir 'koI@R L@$ 2 +coition k@U'ISn L@$ 3 +coitus 'k@UIt@s L@% 3 +coke k@Uk H2$,M6% 1 +coked k@Ukt Hc$,Hd$ 1 +cokes k@Uks Ha$,Mj$ 1 +coking 'k@UkIN Hb$ 2 +col k0l K6$ 1 +cola 'k@Ul@ K6$ 2 +colander 'kVl@nd@R K6% 3 +colanders 'kVl@nd@z Kj% 3 +colas 'k@Ul@z Kj$ 2 +cold k@Uld M6%,OC% 1 +cold-blooded k@Uld-'blVdId OA% 3 +cold-hearted k@Uld-'hAtId OA% 3 +cold-shoulder k@Uld-'S@Uld@R H0% 36A +cold-shouldered k@Uld-'S@Uld@d Hc%,Hd% 36A +cold-shouldering k@Uld-'S@Uld@rIN Hb% 46A +cold-shoulders k@Uld-'S@Uld@z Ha% 36A +colder 'k@Uld@R Or% 2 +coldest 'k@UldIst Os% 2 +coldly 'k@UldlI Pu% 2 +coldness 'k@Uldn@s L@% 2 +colds k@Uldz Mj% 1 +coleslaw 'k@UlslO L@% 2 +colic 'k0lIk L@% 2 +colitis k@'laItIs L@% 3 +collaborate k@'l&b@reIt I2% 42A,3A +collaborated k@'l&b@reItId Ic%,Id% 52A,3A +collaborates k@'l&b@reIts Ia% 42A,3A +collaborating k@'l&b@reItIN Ib% 52A,3A +collaboration k@,l&b@'reISn L@% 5 +collaborationist k@,l&b@'reIS@nIst K6$ 6 +collaborationists k@,l&b@'reIS@nIsts Kj$ 6 +collaborator k@'l&b@reIt@R K6% 5 +collaborators k@'l&b@reIt@z Kj% 5 +collage 'k0lAZ M6% 2 +collages 'k0lAZIz Mj% 3 +collapsable k@'l&ps@bl OA$ 4 +collapse k@'l&ps I2%,K6% 22A,6A +collapsed k@'l&pst Ic%,Id% 22A,6A +collapses k@'l&psIz Ia%,Kj% 32A,6A +collapsible k@'l&ps@bl OA% 4 +collapsing k@'l&psIN Ib% 32A,6A +collar 'k0l@R H0%,K6% 26A +collarbone 'k0l@b@Un K6% 3 +collarbones 'k0l@b@Unz Kj% 3 +collared 'k0l@d Hc%,Hd% 26A +collaring 'k0l@rIN Hb% 36A +collars 'k0l@z Ha%,Kj% 26A +collate k@'leIt H2% 26A +collated k@'leItId Hc%,Hd% 36A +collateral k@'l&t@r@l L@%,OA% 4 +collates k@'leIts Ha% 26A +collating k@'leItIN Hb% 36A +collation k@'leISn K6$ 3 +collations k@'leISnz Kj$ 3 +colleague 'k0lig K6% 2 +colleagues 'k0ligz Kj% 2 +collect 'k0lekt K6$ 2 +collect k@'lekt J0%,OA%,Pu% 22A,2C,6A,15B +collected k@'lektId Jc%,Jd%,OA% 32A,2C,6A,15B +collectedly k@'lektIdlI Pu% 4 +collecting k@'lektIN Jb% 32A,2C,6A,15B +collection k@'lekSn M6% 3 +collections k@'lekSnz Mj% 3 +collective k@'lektIv OA% 3 +collectivization k@,lektIvaI'zeISn K6% 6 +collectivizations k@,lektIvaI'zeISnz Kj$ 6 +collectivize k@'lektIvaIz H2$ 46A +collectivized k@'lektIvaIzd Hc$,Hd$ 46A +collectivizes k@'lektIvaIzIz Ha$ 56A +collectivizing k@'lektIvaIzIN Hb$ 56A +collector k@'lekt@R K6% 3 +collectors k@'lekt@z Kj% 3 +collects 'k0lekts Kj$ 2 +collects k@'lekts Ja% 22A,2C,6A,15B +colleen 'k0lin K6$ 2 +colleens 'k0linz Kj$ 2 +college 'k0lIdZ M6% 2 +colleges 'k0lIdZIz Mj% 3 +collegiate k@'lidZI@t OA% 3 +collide k@'laId I2% 22A,2C,3A +collided k@'laIdId Ic%,Id% 32A,2C,3A +collides k@'laIdz Ia% 22A,2C,3A +colliding k@'laIdIN Ib% 32A,2C,3A +collie 'k0lI K6% 2 +collier 'k0lI@R K6% 3 +collieries 'k0lj@rIz Kj% 3 +colliers 'k0lI@z Kj% 3 +colliery 'k0lj@rI K8% 3 +collies 'k0lIz Kj% 2 +collision k@'lIZn M6% 3 +collisions k@'lIZnz Mj% 3 +collocate 'k0l@keIt I2$ 32A,3A +collocated 'k0l@keItId Ic$,Id$ 42A,3A +collocates 'k0l@keIts Ia$ 32A,3A +collocating 'k0l@keItIN Ib$ 42A,3A +collocation ,k0l@'keISn M6$ 4 +collocations ,k0l@'keISnz Mj$ 4 +colloquial k@'l@UkwI@l OA% 4 +colloquialism k@'l@UkwI@lIz@m K6% 6 +colloquialisms k@'l@UkwI@lIz@mz Kj% 6 +colloquially k@'l@UkwI@lI Pu% 5 +colloquies 'k0l@kwIz Mj$ 3 +colloquy 'k0l@kwI M8$ 3 +collusion k@'luZn L@% 3 +collusive k@'lusIv OA$ 3 +collywobbles 'k0lIw0blz Kj% 4 +colon 'k@Ul@n K6% 2 +colonel 'k3nl K6% 2 +colonels 'k3nlz Kj% 2 +colonial k@'l@UnI@l K6%,OA% 4 +colonialism k@'l@UnI@lIz@m L@% 6 +colonialist k@'l@UnI@lIst K6% 5 +colonialists k@'l@UnI@lIsts Kj% 5 +colonials k@'l@UnI@lz Kj% 4 +colonies 'k0l@nIz Kj% 3 +colonist 'k0l@nIst K6% 3 +colonists 'k0l@nIsts Kj% 3 +colonization ,k0l@naI'zeISn L@% 5 +colonize 'k0l@naIz H2% 36A +colonized 'k0l@naIzd Hc%,Hd% 36A +colonizer 'k0l@naIz@R K6% 4 +colonizers 'k0l@naIz@z Kj% 4 +colonizes 'k0l@naIzIz Ha% 46A +colonizing 'k0l@naIzIN Hb% 46A +colonnade ,k0l@'neId K6% 3 +colonnaded ,k0l@'neIdId OA% 4 +colonnades ,k0l@'neIdz Kj% 3 +colons 'k@Ul@nz Kj% 2 +colony 'k0l@nI K8% 3 +coloratura ,k0l@r@'tU@r@ L@$ 5 +colossal k@'l0sl OA% 3 +colossi k@'l0saI Kj$ 3 +colossus k@'l0s@s Ki% 3 +colour 'kVl@R J0%,M6% 22A,2C,6A,22 +colour-bar 'kVl@-bAR K6% 3 +colour-bars 'kVl@-bAz Kj% 3 +colour-blind 'kVl@-blaInd OA% 3 +colour-wash 'kVl@-w0S K7% 3 +colour-washes 'kVl@-w0SIz Kj% 4 +coloured 'kVl@d Jc%,Jd%,OA% 22A,2C,6A,22 +colourful 'kVl@f@l OA% 3 +colouring 'kVl@rIN Jb%,L@% 32A,2C,6A,22 +colourless 'kVl@l@s OA% 3 +colours 'kVl@z Ja%,Mj% 22A,2C,6A,22 +cols k0lz Kj$ 1 +colt k@Ult K6% 1 +coltish 'k@UltIS OA% 2 +colts k@Ults Kj% 1 +columbine 'k0l@mbaIn K6% 3 +columbines 'k0l@mbaInz Kj$ 3 +column 'k0l@m K6% 2 +columnist 'k0l@mnIst K6% 3 +columnists 'k0l@mnIsts Kj% 3 +columns 'k0l@mz Kj% 2 +coma 'k@Um@ K6% 2 +comas 'k@Um@z Kj% 2 +comatose 'k@Um@t@Us OA% 3 +comb k@Um J0%,K6% 12C,3A,6A,15B +comb-out 'k@Um-aUt K6% 2 +comb-outs 'k@Um-aUts Kj$ 2 +combat 'k0mb&t J0%,K6% 23A,6A +combatant 'k0mb@t@nt K6%,OA% 3 +combatants 'k0mb@t@nts Kj% 3 +combated 'k0mb&tId Jc%,Jd% 33A,6A +combating 'k0mb&tIN Jb% 33A,6A +combative 'k0mb@tIv OA% 3 +combatively 'k0mb@tIvlI Pu$ 4 +combats 'k0mb&ts Ja%,Kj% 23A,6A +combed k@Umd Jc%,Jd% 12C,3A,6A,15B +combination ,k0mbI'neISn M6% 4 +combination-lock ,k0mbI'neISn-l0k K6% 5 +combination-locks ,k0mbI'neISn-l0ks Kj% 5 +combinations ,k0mbI'neISnz Mj% 4 +combine 'k0mbaIn K6% 2 +combine k@m'baIn J2% 22A,3A,4A,6A,14 +combined k@m'baInd Jc%,Jd% 22A,3A,4A,6A,14 +combines 'k0mbaInz Kj% 2 +combines k@m'baInz Ja% 22A,3A,4A,6A,14 +combing 'k@UmIN Jb% 22C,3A,6A,15B +combining k@m'baInIN Jb% 32A,3A,4A,6A,14 +combs k@Umz Ja%,Kj% 12C,3A,6A,15B +combustible k@m'bVst@bl K6$,OA% 4 +combustibles k@m'bVst@blz Kj$ 4 +combustion k@m'bVstS@n L@% 3 +come kVm I5*,Id* 12A,2B,2C,2D,2E,3A,4A +come-at-able ,kVm-'&t-@bl OA$ 4 +come-on 'kVm-0n K6% 2 +come-ons 'kVm-0nz Kj$ 2 +comeback 'kVmb&k K6% 2 +comebacks 'kVmb&ks Kj$ 2 +comedian k@'midI@n K6% 4 +comedians k@'midI@nz Kj% 4 +comedienne k@,midI'en K6% 4 +comediennes k@,midI'enz Kj% 4 +comedies 'k0m@dIz Mj% 3 +comedown 'kVmdaUn K6% 2 +comedowns 'kVmdaUnz Kj$ 2 +comedy 'k0m@dI M8% 3 +comelier 'kVmlI@R Or% 3 +comeliest 'kVmlIIst Os% 3 +comeliness 'kVmlIn@s L@% 3 +comely 'kVmlI OD% 2 +comer 'kVm@R K6% 2 +comers 'kVm@z Kj% 2 +comes kVmz Ia% 12A,2B,2C,2D,2E,3A,4A +comestible k@'mest@bl K6$ 4 +comestibles k@'mest@blz Kj% 4 +comet 'k0mIt K6% 2 +comets 'k0mIts Kj% 2 +comfier 'kVmfI@R Or% 3 +comfiest 'kVmfIIst Os% 3 +comfit 'kVmfIt K6$ 2 +comfits 'kVmfIts Kj$ 2 +comfort 'kVmf@t H0%,M6% 26A +comfortable 'kVmft@bl OA% 4 +comfortably 'kVmft@blI Pu% 4 +comforted 'kVmf@tId Hc%,Hd% 36A +comforter 'kVmf@t@R K6% 3 +comforters 'kVmf@t@z Kj% 3 +comforting 'kVmf@tIN Hb% 36A +comfortingly 'kVmf@tINlI Pu% 4 +comfortless 'kVmf@tl@s OA% 3 +comforts 'kVmf@ts Ha%,Mj% 26A +comfrey 'kVmfrI L@$ 2 +comfy 'kVmfI OD% 2 +comic 'k0mIk K6%,OA% 2 +comical 'k0mIkl OA% 3 +comically 'k0mIklI Pu% 3 +comics 'k0mIks Kj% 2 +coming 'kVmIN Ib%,K6%,OA% 22A,2B,2C,2D,2E,3A,4A +comings 'kVmINz Kj% 2 +comity 'k0mItI L@$ 3 +comma 'k0m@ K6% 2 +command k@'mAnd J0%,M6% 22A,6A,9,17 +commandant ,k0m@n'd&nt K6% 3 +commandants ,k0m@n'd&nts Kj% 3 +commanded k@'mAndId Jc%,Jd% 32A,6A,9,17 +commandeer ,k0m@n'dI@R H0% 36A +commandeered ,k0m@n'dI@d Hc%,Hd% 36A +commandeering ,k0m@n'dI@rIN Hb% 46A +commandeers ,k0m@n'dI@z Ha% 36A +commander k@'mAnd@R K6% 3 +commanders k@'mAnd@z Kj% 3 +commanding k@'mAndIN Jb%,OA% 32A,6A,9,17 +commandment k@'mAndm@nt K6% 3 +commandments k@'mAndm@nts Kj% 3 +commando k@'mAnd@U K6% 3 +commandoes k@'mAnd@Uz Kj$ 3 +commandos k@'mAnd@Uz Kj% 3 +commands k@'mAndz Ja%,Mj% 22A,6A,9,17 +commas 'k0m@z Kj% 2 +commemorate k@'mem@reIt H2% 46A +commemorated k@'mem@reItId Hc%,Hd% 56A +commemorates k@'mem@reIts Ha% 46A +commemorating k@'mem@reItIN Hb% 56A +commemoration k@,mem@'reISn M6% 5 +commemorations k@,mem@'reISnz Mj$ 5 +commemorative k@'mem@r@tIv OA% 5 +commence k@'mens J2% 22A,3A,6A,6C +commenced k@'menst Jc%,Jd% 22A,3A,6A,6C +commencement k@'mensm@nt K6% 3 +commencements k@'mensm@nts Kj$ 3 +commences k@'mensIz Ja% 32A,3A,6A,6C +commencing k@'mensIN Jb% 32A,3A,6A,6C +commend k@'mend H0% 26A,14 +commendable k@'mend@bl OA% 4 +commendation ,k0men'deISn M6% 4 +commendations ,k0men'deISnz Mj% 4 +commended k@'mendId Hc%,Hd% 36A,14 +commending k@'mendIN Hb% 36A,14 +commends k@'mendz Ha% 26A,14 +commensurable k@'menS@r@bl OA$ 5 +commensurate k@'menS@r@t OA% 4 +comment 'k0ment I0%,M6% 22A,3A +commentaries 'k0m@ntrIz Kj% 3 +commentary 'k0m@ntrI K8% 3 +commentate 'k0m@nteIt I2% 33A +commentated 'k0m@nteItId Ic%,Id% 43A +commentates 'k0m@nteIts Ia% 33A +commentating 'k0m@nteItIN Ib% 43A +commentator 'k0m@nteIt@R K6% 4 +commentators 'k0m@nteIt@z Kj% 4 +commented 'k0mentId Ic%,Id% 32A,3A +commenting 'k0mentIN Ib% 32A,3A +comments 'k0ments Ia%,Mj% 22A,3A +commerce 'k0m3s L@% 2 +commercial k@'m3Sl K6%,OA% 3 +commercialism k@'m3SlIzm L@% 5 +commercialize k@'m3S@laIz H2% 46A +commercialized k@'m3S@laIzd Hc%,Hd% 46A +commercializes k@'m3S@laIzIz Ha% 56A +commercializing k@'m3S@laIzIN Hb% 56A +commercially k@'m3SlI Pu% 4 +commercials k@'m3Slz Kj% 3 +commination ,k0mI'neISn M6$ 4 +comminations ,k0mI'neISnz Mj$ 4 +comminatory 'k0mIn@trI OA$ 4 +commingle k@'mINgl J2$ 32A,6A +commingled k@'mINgld Jc$,Jd$ 32A,6A +commingles k@'mINglz Ja$ 32A,6A +commingling k@'mINglIN Jb$ 32A,6A +commiserate k@'mIz@reIt I2% 43A +commiserated k@'mIz@reItId Ic%,Id% 53A +commiserates k@'mIz@reIts Ia% 43A +commiserating k@'mIz@reItIN Ib% 53A +commiseration k@,mIz@'reISn M6% 5 +commiserations k@,mIz@'reISnz Mj% 5 +commissar 'k0mIsAR K6% 3 +commissariat ,k0mI'se@rI@t K6% 5 +commissariats ,k0mI'se@rI@ts Kj% 5 +commissaries 'k0mIs@rIz Kj$ 4 +commissars 'k0mIsAz Kj% 3 +commissary 'k0mIs@rI K8$ 4 +commission k@'mISn H0%,M6% 36A,17 +commissionaire k@,mIS@'ne@R K6% 4 +commissionaires k@,mIS@'ne@z Kj% 4 +commissioned k@'mISnd Hc%,Hd%,OA% 36A,17 +commissioner k@'mIS@n@R K6% 4 +commissioners k@'mIS@n@z Kj% 4 +commissioning k@'mISnIN Hb% 46A,17 +commissions k@'mISnz Ha%,Mj% 36A,17 +commit k@'mIt H4% 26A,14,16A +commital k@'mItl K6% 3 +commitals k@'mItlz Kj% 3 +commitment k@'mItm@nt M6% 3 +commitments k@'mItm@nts Mj% 3 +commits k@'mIts Ha% 26A,14,16A +committed k@'mItId Hc%,Hd% 36A,14,16A +committee k@'mItI K6% 3 +committees k@'mItIz Kj% 3 +committing k@'mItIN Hb% 36A,14,16A +commode k@'m@Ud K6% 2 +commodes k@'m@Udz Kj% 2 +commodious k@'m@UdI@s OA% 4 +commodities k@'m0dItIz Kj% 4 +commodity k@'m0dItI K8% 4 +commodore 'k0m@dOR K6% 3 +commodores 'k0m@dOz Kj% 3 +common 'k0m@n K6%,OC* 2 +common-room 'k0m@n-rum K6% 3 +common-rooms 'k0m@n-rumz Kj% 3 +commonalties 'k0m@n@ltIz Kj$ 4 +commonalty 'k0m@n@ltI K8$ 4 +commoner 'k0m@n@R K6%,Or% 3 +commoners 'k0m@n@z Kj% 3 +commonest 'k0m@nIst Os% 3 +commonly 'k0m@nlI Pu% 3 +commonplace 'k0m@npleIs K6%,OA% 3 +commonplaces 'k0m@npleIsIz Kj% 4 +commons 'k0m@nz Kj% 2 +commonwealth 'k0m@nwelT K6% 3 +commonwealths 'k0m@nwelTs Kj$ 3 +commotion k@'m@USn M6% 3 +commotions k@'m@USnz Mj$ 3 +communal 'k0mjUnl OA% 3 +communally 'k0mjUn@lI Pu% 4 +commune 'k0mjun K6% 2 +commune k@'mjun I2% 22C,3A +communed k@'mjund Ic%,Id% 22C,3A +communes 'k0mjunz Kj% 2 +communes k@'mjunz Ia% 22C,3A +communicable k@'mjunIk@bl OA% 5 +communicant k@'mjunIk@nt K6$ 4 +communicants k@'mjunIk@nts Kj$ 4 +communicate k@'mjunIkeIt J2% 42A,3A,6A,14 +communicated k@'mjunIkeItId Jc%,Jd% 52A,3A,6A,14 +communicates k@'mjunIkeIts Ja% 42A,3A,6A,14 +communicating k@'mjunIkeItIN Jb% 52A,3A,6A,14 +communication k@,mjunI'keISn M6% 5 +communications k@,mjunI'keISnz Mj% 5 +communicative k@'mjunIk@tIv OA% 5 +communing k@'mjunIN Ib% 32C,3A +communion k@'mjunI@n M6% 3 +communions k@'mjunI@nz Mj$ 3 +communiqu_e k@'mjunIkeI K6% 4 +communiqu_es k@'mjunIkeIz Kj% 4 +communism 'k0mjUnIz@m L@% 4 +communist 'k0mjUnIst K6%,OA% 3 +communists 'k0mjUnIsts Kj% 3 +communities k@'mjunItIz Mj% 4 +community k@'mjunItI M8% 4 +commutable k@'mjut@bl OA$ 4 +commutation ,k0mju'teISn M6$ 4 +commutations ,k0mju'teISnz Mj$ 4 +commutator 'k0mjuteIt@R K6$ 4 +commutators 'k0mjuteIt@z Kj$ 4 +commute k@'mjut J2% 22A,6A,14 +commuted k@'mjutId Jc%,Jd% 32A,6A,14 +commuter k@'mjut@R K6% 3 +commuters k@'mjut@z Kj% 3 +commutes k@'mjuts Ja% 22A,6A,14 +commuting k@'mjutIN Jb% 32A,6A,14 +comp`ere 'k0mpe@R H2%,K6% 2 +comp`ered 'k0mpe@d Hc%,Hd% 2 +comp`eres 'k0mpe@z Ha%,Kj% 2 +comp`ering 'k0mpe@rIN Hb% 3 +compact 'k0mp&kt K6% 2 +compact k@m'p&kt H0$,OA% 2 +compacted k@m'p&ktId Hc$,Hd% 3 +compacting k@m'p&ktIN Hb$ 3 +compactly k@m'p&ktlI Pu% 3 +compactness k@m'p&ktn@s L@% 3 +compacts 'k0mp&kts Kj% 2 +compacts k@m'p&kts Ha$ 2 +companies 'kVmp@nIz Mj% 3 +companion k@m'p&nI@n K6% 3 +companionable k@m'p&nI@n@bl OA% 5 +companions k@m'p&nI@nz Kj% 3 +companionship k@m'p&nI@nSIp L@% 4 +companionway k@m'p&nI@nweI K6% 4 +companionways k@m'p&nI@nweIz Kj$ 4 +company 'kVmp@nI M8% 3 +comparability ,k0mp@r@'bIlItI L@% 6 +comparable 'k0mp@r@bl OA% 4 +comparative k@m'p&r@tIv K6%,OA% 4 +comparatively k@m'p&r@tIvlI Pu% 5 +comparatives k@m'p&r@tIvz Kj% 4 +compare k@m'pe@R J2%,K6% 23A,6A,14 +compared k@m'pe@d Jc%,Jd% 23A,6A,14 +compares k@m'pe@z Ja%,Kj% 23A,6A,14 +comparing k@m'pe@rIN Jb% 33A,6A,14 +comparison k@m'p&rIsn M6% 4 +comparisons k@m'p&rIsnz Mj% 4 +compartment k@m'pAtm@nt K6% 3 +compartmentalize ,k0mpAt'ment@laIz H2% 5 +compartmentalized ,k0mpAt'ment@laIzd Hc%,Hd% 5 +compartmentalizes ,k0mpAt'ment@laIzIz Ha% 6 +compartmentalizing ,k0mpAt'ment@laIzIN Hb% 6 +compartments k@m'pAtm@nts Kj% 3 +compass 'kVmp@s H1$,K7% 2 +compassed 'kVmp@st Hc$,Hd$ 2 +compasses 'kVmp@sIz Ha$,Kj% 3 +compassing 'kVmp@sIN Hb$ 3 +compassion k@m'p&Sn L@% 3 +compassionate k@m'p&S@n@t OA% 4 +compassionately k@m'p&S@n@tlI Pu% 5 +compatibility k@m,p&t@'bIlItI L@% 6 +compatible k@m'p&t@bl OA% 4 +compatibly k@m'p&t@blI Pu% 4 +compatriot k@m'p&trI@t K6% 4 +compatriots k@m'p&trI@ts Kj% 4 +compeer 'k0mpI@R K6$ 2 +compeers 'k0mpI@z Kj$ 2 +compel k@m'pel H4% 26A,14,17 +compelled k@m'peld Hc%,Hd% 26A,14,17 +compelling k@m'pelIN Hb% 36A,14,17 +compels k@m'pelz Ha% 26A,14,17 +compendious k@m'pendI@s OA% 4 +compendium k@m'pendI@m K6% 4 +compendiums k@m'pendI@mz Kj% 4 +compensate 'k0mp@nseIt J2% 33A,6A,14 +compensated 'k0mp@nseItId Jc%,Jd% 43A,6A,14 +compensates 'k0mp@nseIts Ja% 33A,6A,14 +compensating 'k0mp@nseItIN Jb% 43A,6A,14 +compensation ,k0mpen'seISn M6% 4 +compensations ,k0mpen'seISnz Mj% 4 +compensatory k@m'pens@t@rI OA% 5 +compete k@m'pit I2% 22A,3A +competed k@m'pitId Ic%,Id% 32A,3A +competence 'k0mpIt@ns L@% 3 +competent 'k0mpIt@nt OA% 3 +competently 'k0mpIt@ntlI Pu% 4 +competes k@m'pits Ia% 22A,3A +competing k@m'pitIN Ib% 32A,3A +competition ,k0mp@'tISn M6% 4 +competitions ,k0mp@'tISnz Mj% 4 +competitive k@m'pet@tIv OA% 4 +competitiveness k@m'pet@tIvnIs L@% 5 +competitor k@m'petIt@R K6% 4 +competitors k@m'petIt@z Kj% 4 +compilation ,k0mpI'leISn M6% 4 +compilations ,k0mpI'leISnz Mj$ 4 +compile k@m'paIl H2% 26A +compiled k@m'paIld Hc%,Hd% 26A +compiler k@m'paIl@R K6% 3 +compilers k@m'paIl@z Kj% 3 +compiles k@m'paIlz Ha% 26A +compiling k@m'paIlIN Hb% 36A +complacence k@m'pleIs@ns L@% 3 +complacency k@m'pleIs@nsI L@% 4 +complacent k@m'pleIs@nt OA% 3 +complacently k@m'pleIs@ntlI Pu% 4 +complain k@m'pleIn I0% 22A,3A,3B +complainant k@m'pleIn@nt K6% 3 +complainants k@m'pleIn@nts Kj% 3 +complained k@m'pleInd Ic%,Id% 22A,3A,3B +complaining k@m'pleInIN Ib% 32A,3A,3B +complainingly k@m'pleInINlI Pu% 4 +complains k@m'pleInz Ia% 22A,3A,3B +complaint k@m'pleInt M6% 2 +complaints k@m'pleInts Mj% 2 +complaisance k@m'pleIz@ns L@$ 3 +complaisant k@m'pleIz@nt OA$ 3 +complement 'k0mplIm@nt H0%,K6% 36A +complementary ,k0mplI'mentrI OA% 4 +complemented 'k0mplIm@ntId Hc%,Hd% 46A +complementing 'k0mplIm@ntIN Hb% 46A +complements 'k0mplIm@nts Ha%,Kj% 36A +complete k@m'plit H2%,OA% 26A +completed k@m'plitId Hc%,Hd% 36A +completely k@m'plitlI Pu% 3 +completeness k@m'plitn@s L@% 3 +completes k@m'plits Ha% 26A +completing k@m'plitIN Hb% 36A +completion k@m'pliSn L@% 3 +complex 'k0mpleks K7%,OA% 2 +complexes 'k0mpleksIz Kj% 3 +complexion k@m'plekSn K6% 3 +complexions k@m'plekSnz Kj% 3 +complexities k@m'pleksItIz Mj% 4 +complexity k@m'pleksItI M8% 4 +compliance k@m'plaI@ns L@% 3 +compliant k@m'plaI@nt OA% 3 +complicate 'k0mplIkeIt H2% 36A +complicated 'k0mplIkeItId Hc%,Hd%,OA% 46A +complicates 'k0mplIkeIts Ha% 36A +complicating 'k0mplIkeItIN Hb% 46A +complication ,k0mplI'keISn K6% 4 +complications ,k0mplI'keISnz Kj% 4 +complicity k@m'plIsItI L@% 4 +complied k@m'plaId Hc%,Hd% 22A,3A +complies k@m'plaIz Ha% 22A,3A +compliment 'k0mplIm@nt K6% 3 +compliment 'k0mplIment H0% 36A,14 +complimentary ,k0mplI'mentrI OA% 4 +complimented 'k0mplImentId Hc%,Hd% 46A,14 +complimenting 'k0mplImentIN Hb% 46A,14 +compliments 'k0mplIm@nts Kj% 3 +compliments 'k0mplIments Ha% 36A,14 +complin 'k0mplIn K6$ 2 +compline 'k0mplIn K6$ 2 +complines 'k0mplInz Kj$ 2 +complins 'k0mplInz Kj$ 2 +comply k@m'plaI H3% 22A,3A +complying k@m'plaIIN Hb% 32A,3A +component k@m'p@Un@nt K6%,OA% 3 +components k@m'p@Un@nts Kj% 3 +comport k@m'pOt J0% 23A,15A +comported k@m'pOtId Jc%,Jd% 33A,15A +comporting k@m'pOtIN Jb% 33A,15A +comportment k@m'pOtm@nt K6$ 3 +comportments k@m'pOtm@nts Kj$ 3 +comports k@m'pOts Ja% 23A,15A +compos mentis ,k0mp@s 'mentIs OA% 4 +compose k@m'p@Uz J2% 22A,6A,16A +composed k@m'p@Uzd Jc%,Jd%,OA% 22A,6A,16A +composedly k@m'p@UzIdlI Pu% 4 +composer k@m'p@Uz@R K6% 3 +composers k@m'p@Uz@z Kj% 3 +composes k@m'p@UzIz Ja% 32A,6A,16A +composing k@m'p@UzIN Jb% 32A,6A,16A +composite 'k0mp@zIt OA% 3 +composition ,k0mp@'zISn M6% 4 +compositions ,k0mp@'zISnz Mj% 4 +compositor k@m'p0zIt@R K6% 4 +compositors k@m'p0zIt@z Kj% 4 +compost 'k0mp0st H0$,L@% 26A +composted 'k0mp0stId Hc$,Hd$ 36A +composting 'k0mp0stIN Hb$ 36A +composts 'k0mp0sts Ha$ 26A +composure k@m'p@UZ@R L@% 3 +compote 'k0mp0t M6$ 2 +compotes 'k0mp0ts Mj$ 2 +compound 'k0mpaUnd K6%,OA% 2 +compound k@m'paUnd J0% 22A,3A,6A +compounded k@m'paUndId Jc%,Jd% 32A,3A,6A +compounding k@m'paUndIN Jb% 32A,3A,6A +compounds 'k0mpaUndz Kj% 2 +compounds k@m'paUndz Ja% 22A,3A,6A +comprehend ,k0mprI'hend H0% 36A +comprehended ,k0mprI'hendId Hc%,Hd% 46A +comprehending ,k0mprI'hendIN Hb% 46A +comprehends ,k0mprI'hendz Ha% 36A +comprehensibility ,k0mprI,hens@'bIlItI L@% 7 +comprehensible ,k0mprI'hens@bl OA% 5 +comprehension ,k0mprI'henSn M6% 4 +comprehensions ,k0mprI'henSnz Mj$ 4 +comprehensive ,k0mprI'hensIv OA% 4 +comprehensively ,k0mprI'hensIvlI Pu% 5 +comprehensiveness ,k0mprI'hensIvn@s L@% 5 +compress 'k0mpres K7% 2 +compress k@m'pres H1% 26A,14 +compressed k@m'prest Hc%,Hd% 26A,14 +compresses 'k0mpresIz Kj% 3 +compresses k@m'presIz Ha% 36A,14 +compressing k@m'presIN Hb% 36A,14 +compression k@m'preSn L@% 3 +compressor k@m'pres@R K6% 3 +compressors k@m'pres@z Kj% 3 +comprise k@m'praIz H2% 26A +comprised k@m'praIzd Hc%,Hd% 26A +comprises k@m'praIzIz Ha% 36A +comprising k@m'praIzIN Hb% 36A +compromise 'k0mpr@maIz J2%,M6% 32A,6A +compromised 'k0mpr@maIzd Jc%,Jd% 32A,6A +compromises 'k0mpr@maIzIz Ja%,Mj% 42A,6A +compromising 'k0mpr@maIzIN Jb% 42A,6A +comptroller k@n'tr@Ul@R K6$ 3 +comptrollers k@n'tr@Ul@z Kj$ 3 +compulsion k@m'pVlSn L@% 3 +compulsive k@m'pVlsIv OA% 3 +compulsively k@m'pVlsIvlI Pu% 4 +compulsorily k@m'pVls@r@lI Pu% 5 +compulsory k@m'pVls@rI OA% 4 +compunction k@m'pVNkSn L@% 3 +computation ,k0mpjU'teISn M6% 4 +computational ,k0mpjU'teIS@nl OA% 5 +computationally ,k0mpjU'teISn@lI Pu% 6 +computations ,k0mpjU'teISnz Mj% 4 +compute k@m'pjut J2% 22A,6A,14 +computed k@m'pjutId Jc%,Jd% 32A,6A,14 +computer k@m'pjut@R K6% 3 +computerize k@m'pjut@raIz H2% 46A +computerized k@m'pjut@raIzd Hc%,Hd% 46A +computerizes k@m'pjut@raIzIz Ha% 56A +computerizing k@m'pjut@raIzIN Hb% 56A +computers k@m'pjut@z Kj% 3 +computes k@m'pjuts Ja% 22A,6A,14 +computing k@m'pjutIN Jb% 32A,6A,14 +comrade 'k0mreId K6% 2 +comradely 'k0mreIdlI Pu% 3 +comrades 'k0mreIdz Kj% 2 +comradeship 'k0mreIdSIp K6% 3 +comradeships 'k0mreIdSIps Kj$ 3 +con k0n H4%,K6%,Pu% 16A,14 +con-man 'k0n-m&n Ki% 2 +con-men 'k0n-men Kj% 2 +concatenation k0n,k&t@'neISn M6$ 5 +concatenations k0n,k&t@'neISnz Mj$ 5 +concave 'k0NkeIv OA% 2 +concavities ,k0n'k&vItIz Mj$ 4 +concavity ,k0n'k&vItI M8% 4 +conceal k@n'sil H0% 26A,14 +concealed k@n'sild Hc%,Hd% 26A,14 +concealing k@n'silIN Hb% 36A,14 +concealment k@n'silm@nt L@% 3 +conceals k@n'silz Ha% 26A,14 +concede k@n'sid H2% 26A,9,12A,13A +conceded k@n'sidId Hc%,Hd% 36A,9,12A,13A +concedes k@n'sidz Ha% 26A,9,12A,13A +conceding k@n'sidIN Hb% 36A,9,12A,13A +conceit k@n'sit M6% 2 +conceited k@n'sitId OA% 3 +conceitedly k@n'sitIdlI Pu% 4 +conceits k@n'sits Mj% 2 +conceivable k@n'siv@bl OA% 4 +conceivably k@n'siv@blI Pu% 4 +conceive k@n'siv J2% 22A,3A,6A,9,10,14 +conceived k@n'sivd Jc%,Jd% 22A,3A,6A,9,10,14 +conceives k@n'sivz Ja% 22A,3A,6A,9,10,14 +conceiving k@n'sivIN Jb% 32A,3A,6A,9,10,14 +concentrate 'k0ns@ntreIt J2%,K6% 32A,3A,6A,14 +concentrated 'k0ns@ntreItId Jc%,Jd%,OA% 42A,3A,6A,14 +concentrates 'k0ns@ntreIts Ja%,Kj% 32A,3A,6A,14 +concentrating 'k0ns@ntreItIN Jb% 42A,3A,6A,14 +concentration ,k0ns@n'treISn M6% 4 +concentrations ,k0ns@n'treISnz Mj% 4 +concentric k@n'sentrIk OA% 3 +concept 'k0nsept K6% 2 +conception k@n'sepSn M6% 3 +conceptions k@n'sepSnz Mj% 3 +concepts 'k0nsepts Kj% 2 +conceptual k@n'septjU@l OA% 4 +conceptually k@n'septjU@lI Pu% 5 +concern k@n's3n H0%,M6% 26A,14 +concerned k@n's3nd Hc%,Hd%,OA% 26A,14 +concernedly k@n's3nIdlI Pu% 4 +concerning k@n's3nIN Hb%,T-% 36A,14 +concerns k@n's3nz Ha%,Mj% 26A,14 +concert 'k0ns@t M6% 2 +concert k@n's3t H0$ 2 +concert-hall 'k0ns@t-hOl K6% 3 +concert-halls 'k0ns@t-hOlz Kj% 3 +concerted k@n's3tId Hc$,Hd%,OA% 3 +concertina ,k0ns@'tin@ K6% 4 +concertinas ,k0ns@'tin@z Kj% 4 +concerting k@n's3tIN Hb$ 3 +concerto k@n'tSe@t@U K6% 3 +concertos k@n'tSe@t@Uz Kj% 3 +concerts 'k0ns@ts Mj% 2 +concerts k@n's3ts Ha$ 2 +concession k@n'seSn M6% 3 +concessionaire k@n,seS@'ne@R K6$ 4 +concessionaires k@n,seS@'ne@z Kj$ 4 +concessions k@n'seSnz Mj% 3 +concessive k@n'sesIv OA$ 3 +conch k0ntS K7% 1 +conches 'k0ntSIz Kj% 2 +conchology k0N'k0l@dZI L@$ 4 +concierge ,k0nsI'e@Z K6% 3 +concierges ,k0nsI'e@ZIz Kj% 4 +conciliate k@n'sIlIeIt H2% 46A +conciliated k@n'sIlIeItId Hc%,Hd% 56A +conciliates k@n'sIlIeIts Ha% 46A +conciliating k@n'sIlIeItIN Hb% 56A +conciliation k@n,sIlI'eISn L@% 5 +conciliatory k@n'sIlI@t@rI OA% 6 +concise k@n'saIs OA% 2 +concisely k@n'saIslI Pu% 3 +conciseness k@n'saIsn@s L@% 3 +conclave 'k0nkleIv K6% 2 +conclaves 'k0nkleIvz Kj$ 2 +conclude k@n'klud J2% 22A,3A,6A,7A,9,14 +concluded k@n'kludId Jc%,Jd% 32A,3A,6A,7A,9,14 +concludes k@n'kludz Ja% 22A,3A,6A,7A,9,14 +concluding k@n'kludIN Jb% 32A,3A,6A,7A,9,14 +conclusion k@n'kluZn K6% 3 +conclusions k@n'kluZnz Kj% 3 +conclusive k@n'klusIv OA% 3 +conclusively k@n'klusIvlI Pu% 4 +concoct k@n'k0kt H0% 26A +concocted k@n'k0ktId Hc%,Hd% 36A +concocting k@n'k0ktIN Hb% 36A +concoction k@n'k0kSn M6% 3 +concoctions k@n'k0kSnz Mj% 3 +concocts k@n'k0kts Ha% 26A +concomitant k@n'k0mIt@nt K6$,OA% 4 +concomitants k@n'k0mIt@nts Kj$ 4 +concord 'k0NkOd M6% 2 +concordance k@n'kOd@ns M6% 3 +concordances k@n'kOd@nsIz Mj% 4 +concordant k@n'kOd@nt OA% 3 +concordat k@n'kOd&t K6% 3 +concordats k@n'kOd&ts Kj% 3 +concords 'k0NkOdz Mj$ 2 +concourse 'k0NkOs K6% 2 +concourses 'k0NkOsIz Kj$ 3 +concrete 'k0Nkrit J2%,L@%,OA% 22A,6A +concreted 'k0NkritId Jc%,Jd% 32A,6A +concretely k@n'kritlI Pu% 3 +concretes 'k0Nkrits Ja% 22A,6A +concreting 'k0NkritIN Jb% 32A,6A +concretion k@n'kriSn M6% 3 +concretions k@n'kriSnz Mj$ 3 +concubine 'k0NkjUbaIn K6% 3 +concubines 'k0NkjUbaInz Kj% 3 +concupiscence k@n'kjupIs@ns L@$ 4 +concur k@n'k3R I4% 22A,3A,4A +concurred k@n'k3d Ic%,Id% 22A,3A,4A +concurrence k@n'kVr@ns M6% 3 +concurrences k@n'kVr@nsIz Mj% 4 +concurrent k@n'kVr@nt OA% 3 +concurrently k@n'kVr@ntlI Pu% 4 +concurring k@n'k3rIN Ib% 32A,3A,4A +concurs k@n'k3z Ia% 22A,3A,4A +concuss k@n'kVs H1% 26A +concussed k@n'kVst Hc%,Hd% 26A +concusses k@n'kVsIz Ha% 36A +concussing k@n'kVsIN Hb% 36A +concussion k@n'kVSn M6% 3 +concussions k@n'kVSnz Mj$ 3 +condemn k@n'dem H0% 26A,14,16B,17 +condemnation ,k0ndem'neISn M6% 4 +condemnations ,k0ndem'neISnz Mj$ 4 +condemned k@n'demd Hc%,Hd% 26A,14,16B,17 +condemning k@n'demIN Hb% 36A,14,16B,17 +condemns k@n'demz Ha% 26A,14,16B,17 +condensation ,k0nden'seISn M6% 4 +condensations ,k0nden'seISnz Mj$ 4 +condense k@n'dens J2% 22A,3A,6A,14 +condensed k@n'denst Jc%,Jd% 22A,3A,6A,14 +condenser k@n'dens@R K6% 3 +condensers k@n'dens@z Kj% 3 +condenses k@n'densIz Ja% 32A,3A,6A,14 +condensing k@n'densIN Jb% 32A,3A,6A,14 +condescend ,k0ndI'send I0% 32A,3A,4A +condescended ,k0ndI'sendId Ic%,Id% 42A,3A,4A +condescending ,k0ndI'sendIN Ib%,OA% 42A,3A,4A +condescendingly ,k0ndI'sendINlI Pu% 5 +condescends ,k0ndI'sendz Ia% 32A,3A,4A +condescension ,k0ndI'senSn M6% 4 +condescensions ,k0ndI'senSnz Mj$ 4 +condign k@n'daIn OA$ 2 +condiment 'k0ndIm@nt M6$ 3 +condiments 'k0ndIm@nts Mj% 3 +condition k@n'dISn H0%,K6% 36A +conditional k@n'dIS@nl OA% 4 +conditionally k@n'dIS@n@lI Pu% 5 +conditioned k@n'dIS@nd OA% 3 +conditioned k@n'dISnd Hc%,Hd% 36A +conditioner k@n'dIS@n@R K6% 4 +conditioners k@n'dIS@n@z Kj% 4 +conditioning k@n'dISnIN Hb% 46A +conditions k@n'dISnz Ha%,Kj% 36A +condole k@n'd@Ul I2% 23A +condoled k@n'd@Uld Ic%,Id% 23A +condolence k@n'd@Ul@ns K6% 3 +condolences k@n'd@Ul@nsIz Kj% 4 +condoles k@n'd@Ulz Ia% 23A +condoling k@n'd@UlIN Ib% 33A +condominium ,k0nd@'mInI@m K6% 5 +condominiums ,k0nd@'mInI@mz Kj% 5 +condonation ,k0nd@U'neISn K6$ 4 +condonations ,k0nd@U'neISnz Kj$ 4 +condone k@n'd@Un H2% 26A,6C +condoned k@n'd@Und Hc%,Hd% 26A,6C +condones k@n'd@Unz Ha% 26A,6C +condoning k@n'd@UnIN Hb% 36A,6C +condor 'k0ndOR K6% 2 +condors 'k0ndOz Kj% 2 +conduce k@n'djus I2% 23A +conduced k@n'djust Ic%,Id% 23A +conduces k@n'djusIz Ia% 33A +conducing k@n'djusIN Ib% 33A +conducive k@n'djusIv OA% 3 +conduct 'k0ndVkt L@% 2 +conduct k@n'dVkt J0% 22A,6A,14,15A,15B,16A +conducted k@n'dVktId Jc%,Jd% 32A,6A,14,15A,15B,16A +conducting k@n'dVktIN Jb% 32A,6A,14,15A,15B,16A +conduction k@n'dVkSn L@% 3 +conductive k@n'dVktIv OA% 3 +conductivities ,k0ndVk'tIvItIz Mj$ 5 +conductivity ,k0ndVk'tIvItI M8% 5 +conductor k@n'dVkt@R K6% 3 +conductors k@n'dVkt@z Kj% 3 +conductress k@n'dVktrIs K7% 3 +conductresses k@n'dVktrIsIz Kj% 4 +conducts k@n'dVkts Ja% 22A,6A,14,15A,15B,16A +conduit 'k0ndwIt K6% 2 +conduits 'k0ndwIts Kj% 2 +cone k@Un H2$,K6% 115B +coned k@Und Hc$,Hd$ 115B +cones k@Unz Ha$,Kj% 115B +coney 'k@UnI K6% 2 +coneys 'k@UnIz Kj% 2 +confab 'k0nf&b I4$,K6% 2 +confabbed 'k0nf&bd Ic$,Id$ 2 +confabbing 'k0nf&bIN Ib$ 3 +confabs 'k0nf&bz Ia$,Kj% 2 +confabulate ,k@n'f&bjUleIt I2$ 42A,3A +confabulated ,k@n'f&bjUleItId Ic$,Id$ 52A,3A +confabulates ,k@n'f&bjUleIts Ia$ 42A,3A +confabulating ,k@n'f&bjUleItIN Ib$ 52A,3A +confabulation k@n,f&bjU'leISn K6$ 5 +confabulations k@n,f&bjU'leISnz Kj$ 5 +confection k@n'fekSn M6% 3 +confectioner k@n'fekSn@R K6% 4 +confectioneries k@n'fekS@n@rIz Mj$ 5 +confectioners k@n'fekSn@z Kj% 4 +confectionery k@n'fekS@n@rI M8% 5 +confections k@n'fekSnz Mj% 3 +confederacies k@n'fed@r@sIz Kj$ 5 +confederacy k@n'fed@r@sI K8% 5 +confederate k@n'fed@r@t K6%,OA% 4 +confederate k@n'fed@reIt J2% 42A,3A,6A,14 +confederated k@n'fed@reItId Jc%,Jd% 52A,3A,6A,14 +confederates k@n'fed@r@ts Kj% 4 +confederates k@n'fed@reIts Ja% 42A,3A,6A,14 +confederating k@n'fed@reItIN Jb% 52A,3A,6A,14 +confederation k@n,fed@'reISn M6% 5 +confederations k@n,fed@'reISnz Mj% 5 +confer k@n'f3R J4% 22A,3A,14 +conference 'k0nf@r@ns M6% 3 +conferences 'k0nf@r@nsIz Mj% 4 +conferment k@n'f3m@nt K6% 3 +conferments k@n'f3m@nts Kj$ 3 +conferred k@n'f3d Jc%,Jd% 22A,3A,14 +conferring k@n'f3rIN Jb% 32A,3A,14 +confers k@n'f3z Ja% 22A,3A,14 +confess k@n'fes J1% 22A,3A,3B,6A,9,14,25 +confessed k@n'fest Jc%,Jd% 22A,3A,3B,6A,9,14,25 +confessedly k@n'fesIdlI Pu% 4 +confesses k@n'fesIz Ja% 32A,3A,3B,6A,9,14,25 +confessing k@n'fesIN Jb% 32A,3A,3B,6A,9,14,25 +confession k@n'feSn M6% 3 +confessional k@n'feS@nl K6% 4 +confessionals k@n'feS@nlz Kj% 4 +confessions k@n'feSnz Mj% 3 +confessor k@n'fes@R K6% 3 +confessors k@n'fes@z Kj% 3 +confetti k@n'fetI Lk% 3 +confidant ,k0nfI'd&nt K6% 3 +confidants ,k0nfI'd&nts Kj% 3 +confide k@n'faId J2% 23A,14 +confided k@n'faIdId Jc%,Jd% 33A,14 +confidence 'k0nfId@ns M6% 3 +confidences 'k0nfId@nsIz Mj% 4 +confident 'k0nfId@nt OA% 3 +confidential ,k0nfI'denSl OA% 4 +confidentialities ,k0nfI,denSI'&lItIz Mj$ 7 +confidentiality ,k0nfI,denSI'&lItI M8% 7 +confidentially ,k0nfI'denS@lI Pu% 5 +confidently 'k0nfId@ntlI Pu% 4 +confides k@n'faIdz Ja% 23A,14 +confiding k@n'faIdIN Jb%,OA% 33A,14 +confidingly k@n'faIdINlI Pu% 4 +configuration k@n,fIg@'reISn K6% 5 +configurations k@n,fIg@'reISnz Kj% 5 +configure k@n'fIg@R H2% 36A +configured k@n'fIg@d Hc%,Hd%,OA% 36A +configures k@n'fIg@z Ha% 36A +configuring k@n'fIg@rIN Hb% 46A +confine k@n'faIn H2% 26A,14 +confined k@n'faInd Hc%,Hd%,OA% 26A,14 +confinement k@n'faInm@nt M6% 3 +confinements k@n'faInm@nts Mj% 3 +confines 'k0nfaInz Kj% 2 +confines k@n'faInz Ha% 26A,14 +confining k@n'faInIN Hb% 36A,14 +confirm k@n'f3m H0% 26A,9 +confirmation ,k0nf@'meISn M6% 4 +confirmations ,k0nf@'meISnz Mj% 4 +confirmed k@n'f3md Hc%,Hd%,OA% 26A,9 +confirming k@n'f3mIN Hb% 36A,9 +confirms k@n'f3mz Ha% 26A,9 +confiscate 'k0nfIskeIt H2% 36A +confiscated 'k0nfIskeItId Hc%,Hd% 46A +confiscates 'k0nfIskeIts Ha% 36A +confiscating 'k0nfIskeItIN Hb% 46A +confiscation ,k0nfI'skeISn M6% 4 +confiscations ,k0nfI'skeISnz Mj$ 4 +conflagration ,k0nfl@'greISn K6% 4 +conflagrations ,k0nfl@'greISnz Kj% 4 +conflict 'k0nflIkt M6% 2 +conflict k@n'flIkt I0% 22A,3A +conflicted k@n'flIktId Ic%,Id% 32A,3A +conflicting k@n'flIktIN Ib%,OA% 32A,3A +conflicts 'k0nflIkts Mj% 2 +conflicts k@n'flIkts Ia% 22A,3A +confluence 'k0nflU@ns K6% 3 +confluences 'k0nflU@nsIz Kj$ 3 +confluent 'k0nflU@nt OA$ 3 +conform k@n'fOm J0% 22A,3A,14 +conformable k@n'fOm@bl OA$ 4 +conformation ,k0nfO'meISn K6$ 4 +conformations ,k0nfO'meISnz Kj$ 4 +conformed k@n'fOmd Jc%,Jd% 22A,3A,14 +conforming k@n'fOmIN Jb% 32A,3A,14 +conformist k@n'fOmIst K6% 3 +conformists k@n'fOmIsts Kj% 3 +conformity k@n'fOmItI L@% 4 +conforms k@n'fOmz Ja% 22A,3A,14 +confound k@n'faUnd H0% 26A,14 +confounded k@n'faUndId Hc%,Hd%,OA% 36A,14 +confoundedly k@n'faUndIdlI Pu$ 4 +confounding k@n'faUndIN Hb% 36A,14 +confounds k@n'faUndz Ha% 26A,14 +confr`ere 'k0nfre@R K6$ 2 +confr`eres 'k0nfre@z Kj$ 2 +confront k@n'frVnt H0% 26A,14 +confrontation ,k0nfrVn'teISn M6% 4 +confrontations ,k0nfrVn'teISnz Mj% 4 +confronted k@n'frVntId Hc%,Hd% 36A,14 +confronting k@n'frVntIN Hb% 36A,14 +confronts k@n'frVnts Ha% 26A,14 +confuse k@n'fjuz H2% 26A,14 +confused k@n'fjuzd Hc%,Hd% 26A,14 +confusedly k@n'fjuzIdlI Pu% 4 +confuses k@n'fjuzIz Ha% 36A,14 +confusing k@n'fjuzIN Hb% 36A,14 +confusion k@n'fjuZn L@% 3 +confutation ,k0nfju'teISn K6$ 4 +confutations ,k0nfju'teISnz Kj$ 4 +confute k@n'fjut H2% 26A +confuted k@n'fjutId Hc%,Hd% 36A +confutes k@n'fjuts Ha% 26A +confuting k@n'fjutIN Hb$ 36A +cong_e 'k0nZeI K6$ 2 +cong_es 'k0nZeIz Kj$ 2 +congeal k@n'dZil J0% 22A,6A +congealed k@n'dZild Jc%,Jd% 22A,6A +congealing k@n'dZilIN Jb% 32A,6A +congeals k@n'dZilz Ja% 22A,6A +congenial k@n'dZinI@l OA% 4 +congenially k@n'dZinI@lI Pu% 5 +congenital k@n'dZenItl OA% 4 +conger 'k0Ng@R K6$ 2 +conger-eel 'k0Ng@r-il K6% 3 +conger-eels 'k0Ng@r-ilz Kj% 3 +congers 'k0Ng@z Kj$ 2 +congested k@n'dZestId OA% 3 +congestion k@n'dZestS@n L@% 3 +conglomerate k@n'gl0m@r@t K6%,OA% 4 +conglomerate k@n'gl0m@reIt J2$ 42A,6A +conglomerated k@n'gl0m@reItId Jc$,Jd$ 52A,6A +conglomerates k@n'gl0m@r@ts Kj% 4 +conglomerates k@n'gl0m@reIts Ja$ 42A,6A +conglomerating k@n'gl0m@reItIN Jb$ 52A,6A +conglomeration k@n,gl0m@'reISn M6% 5 +conglomerations k@n,gl0m@'reISnz Mj$ 5 +congratulate k@n'gr&tSUleIt H2% 46A,14 +congratulated k@n'gr&tSUleItId Hc%,Hd% 56A,14 +congratulates k@n'gr&tSUleIts Ha% 46A,14 +congratulating k@n'gr&tSUleItIN Hb% 56A,14 +congratulation k@n,gr&tSU'leISn K6% 5 +congratulations k@n,gr&tSU'leISnz Kj% 5 +congratulatory k@n'gr&tSUl@t@rI OA% 6 +congregate 'k0NgrIgeIt J2% 32A,2C,6A +congregated 'k0NgrIgeItId Jc%,Jd% 42A,2C,6A +congregates 'k0NgrIgeIts Ja% 32A,2C,6A +congregating 'k0NgrIgeItIN Jb% 42A,2C,6A +congregation ,k0NgrI'geISn M6% 4 +congregational ,k0NgrI'geISn@l OA% 5 +congregations ,k0NgrI'geISnz Mj% 4 +congress 'k0Ngres K7% 2 +congresses 'k0NgresIz Kj% 3 +congressional k@n'greS@nl OA% 4 +congressman 'k0Ngresm@n Ki% 3 +congressmen 'k0Ngresm@n Kj% 3 +congresswoman 'k0NgreswUm@n Ki$ 4 +congresswomen 'k0NgreswImIn Kj$ 4 +congruent 'k0NgrU@nt OA% 3 +congruous 'k0NgrU@s OA$ 3 +conic 'k0nIk OA$ 2 +conical 'k0nIkl OA% 3 +conies 'k@UnIz Kj$ 2 +conifer 'k0nIf@R K6% 3 +coniferous k@'nIf@r@s OA% 4 +conifers 'k0nIf@z Kj% 3 +coning 'k@UnIN Hb$ 215B +conjectural k@n'dZektS@r@l OA% 4 +conjecture k@n'dZektS@R J2%,M6% 32A,6A,9,25 +conjectured k@n'dZektS@d Jc%,Jd% 32A,6A,9,25 +conjectures k@n'dZektS@z Ja%,Mj% 32A,6A,9,25 +conjecturing k@n'dZektS@rIN Jb% 42A,6A,9,25 +conjoin k@n'dZoIn J0$ 22A,6A +conjoined k@n'dZoInd Jc$,Jd$ 22A,6A +conjoining k@n'dZoInIN Jb$ 32A,6A +conjoins k@n'dZoInz Ja$ 22A,6A +conjoint k@n'dZoInt OA$ 2 +conjointly k@n'dZoIntlI Pu% 3 +conjugal 'k0ndZUg@l OA% 3 +conjugally 'k0ndZUg@lI Pu% 4 +conjugate 'k0ndZUgeIt J2% 32A,6A +conjugated 'k0ndZUgeItId Jc%,Jd% 42A,6A +conjugates 'k0ndZUgeIts Ja% 32A,6A +conjugating 'k0ndZUgeItIN Jb% 42A,6A +conjugation ,k0ndZU'geISn M6% 4 +conjugations ,k0ndZU'geISnz Mj% 4 +conjunction k@n'dZVNkSn M6% 3 +conjunctions k@n'dZVNkSnz Mj% 3 +conjunctive k@n'dZVNktIv K6%,OA% 3 +conjunctives k@n'dZVNktIvz Kj% 3 +conjuncture k@n'dZVNktS@R K6$ 3 +conjunctures k@n'dZVNktS@z Kj$ 3 +conjuration ,k0ndZU'reISn K6$ 4 +conjurations ,k0ndZU'reISnz Kj$ 4 +conjure 'kVndZ@R J2% 22A,15A,15B,17 +conjured 'kVndZ@d Jc%,Jd% 22A,15A,15B,17 +conjurer 'kVndZ@r@R K6$ 3 +conjurers 'kVndZ@r@z Kj$ 3 +conjures 'kVndZ@z Ja% 22A,15A,15B,17 +conjuring 'kVndZ@rIN Jb% 32A,15A,15B,17 +conjuror 'kVndZ@r@R K6% 3 +conjurors 'kVndZ@r@z Kj% 3 +conk k0Nk I0%,K6% 1 +conked k0Nkt Ic%,Id% 1 +conker 'k0Nk@R K6% 2 +conkers 'k0Nk@z Kj% 2 +conking 'k0NkIN Ib% 2 +conks k0Nks Ia%,Kj% 1 +connect k@'nekt J0% 22A,2C,3A,6A,14,15A,15B +connected k@'nektId Jc%,Jd% 32A,2C,3A,6A,14,15A,15B +connecting k@'nektIN Jb% 32A,2C,3A,6A,14,15A,15B +connection k@'nekSn M6% 3 +connections k@'nekSnz Mj% 3 +connective k@'nektIv K6%,OA% 3 +connectives k@'nektIvz Kj% 3 +connects k@'nekts Ja% 22A,2C,3A,6A,14,15A,15B +conned k0nd Hc%,Hd% 16A,14 +connexion k@'nekSn M6$ 3 +connexions k@'nekSnz Mj$ 3 +conning 'k0nIN Hb%,Oq% 26A,14 +connivance k@'naIv@ns L@% 3 +connive k@'naIv I2% 23A +connived k@'naIvd Ic%,Id% 23A +connives k@'naIvz Ia% 23A +conniving k@'naIvIN Ib% 33A +connoisseur ,k0n@'s3R K6% 3 +connoisseurs ,k0n@'s3z Kj% 3 +connotation ,k0n@'teISn K6% 4 +connotations ,k0n@'teISnz Kj% 4 +connote k@'n@Ut H2$ 26A +connoted k@'n@UtId Hc$,Hd$ 36A +connotes k@'n@Uts Ha$ 26A +connoting k@'n@UtIN Hb$ 36A +connubial k@'njubI@l OA$ 4 +conquer 'k0Nk@R H0% 26A +conquered 'k0Nk@d Hc%,Hd% 26A +conquering 'k0Nk@rIN Hb% 36A +conqueror 'k0Nk@r@R K6% 3 +conquerors 'k0Nk@r@z Kj% 3 +conquers 'k0Nk@z Ha% 26A +conquest 'k0Nkwest M6% 2 +conquests 'k0Nkwests Mj% 2 +conquistador k0n'kwIst@dOR K6% 4 +conquistadors k0n'kwIst@dOz Kj% 4 +cons k0nz Ha%,Kj$ 16A,14 +consanguinity ,k0ns&N'gwInItI L@$ 5 +conscience 'k0nS@ns M6% 2 +conscience-smitten 'k0nS@ns-smItn OA% 4 +consciences 'k0nS@nsIz Mj% 3 +conscientious ,k0nSI'enS@s OA% 4 +conscientiously ,k0nSI'enS@slI Pu% 5 +conscientiousness ,k0nSI'enS@sn@s L@% 5 +conscious 'k0nS@s OA% 2 +consciously 'k0nS@slI Pu% 3 +consciousness 'k0nS@sn@s L@% 3 +conscript 'k0nskrIpt K6% 2 +conscript k@n'skrIpt H0% 26A,14 +conscripted k@n'skrIptId Hc%,Hd% 36A,14 +conscripting k@n'skrIptIN Hb% 36A,14 +conscription k@n'skrIpSn L@% 3 +conscripts 'k0nskrIpts Kj% 2 +conscripts k@n'skrIpts Ha% 26A,14 +consecrate 'k0nsIkreIt H2% 36A,14,23 +consecrated 'k0nsIkreItId Hc%,Hd% 46A,14,23 +consecrates 'k0nsIkreIts Ha% 36A,14,23 +consecrating 'k0nsIkreItIN Hb% 46A,14,23 +consecration ,k0nsI'kreISn M6% 4 +consecrations ,k0nsI'kreISnz Mj$ 4 +consecutive k@n'sekjUtIv OA% 4 +consecutively k@n'sekjUtIvlI Pu% 5 +consensus k@n'sens@s Mi% 3 +consent k@n'sent I0%,L@% 22A,3A,7A +consented k@n'sentId Ic%,Id% 32A,3A,7A +consenting k@n'sentIN Ib% 32A,3A,7A +consents k@n'sents Ia% 22A,3A,7A +consequence 'k0nsIkw@ns M6% 3 +consequences 'k0nsIkw@nsIz Mj% 4 +consequent 'k0nsIkw@nt OA% 3 +consequential ,k0nsI'kwenSl OA% 4 +consequentially ,k0nsI'kwenS@lI Pu% 5 +consequently 'k0nsIkw@ntlI Pu% 4 +conservancies k@n's3v@nsIz Mj$ 4 +conservancy k@n's3v@nsI M8$ 4 +conservation ,k0ns@'veISn L@% 4 +conservatism k@n's3v@tIz@m L@% 5 +conservative k@n's3v@tIv K6%,OA% 4 +conservatively k@n's3v@tIvlI Pu% 5 +conservatives k@n's3v@tIvz Kj% 4 +conservatoire k@n's3v@twAR K6% 4 +conservatoires k@n's3v@twAz Kj% 4 +conservatories k@n's3v@trIz Kj% 4 +conservatory k@n's3v@trI K8% 4 +conserve k@n's3v H2%,K6% 26A +conserved k@n's3vd Hc%,Hd% 26A +conserves k@n's3vz Ha%,Kj% 26A +conserving k@n's3vIN Hb% 36A +consider k@n'sId@R H0% 36A,6C,8,9,10,25 +considerable k@n'sId@r@bl OA% 5 +considerably k@n'sId@r@blI Pu% 5 +considerate k@n'sId@r@t OA% 4 +considerately k@n'sId@r@tlI Pu% 5 +considerateness k@n'sId@r@tn@s L@% 5 +consideration k@n,sId@'reISn M6% 5 +considerations k@n,sId@'reISnz Mj% 5 +considered k@n'sId@d Hc%,Hd% 36A,6C,8,9,10,25 +considering k@n'sId@rIN Hb%,T-% 46A,6C,8,9,10,25 +considers k@n'sId@z Ha% 36A,6C,8,9,10,25 +consign k@n'saIn H0% 26A,14 +consigned k@n'saInd Hc%,Hd% 26A,14 +consignee ,k0nsaI'ni K6$ 3 +consignees ,k0nsaI'niz Kj$ 3 +consigner k@n'saIn@R K6% 3 +consigners k@n'saIn@z Kj% 3 +consigning k@n'saInIN Hb% 36A,14 +consignment k@n'saInm@nt M6% 3 +consignments k@n'saInm@nts Mj% 3 +consignor k@n'saIn@R K6$ 3 +consignors k@n'saIn@z Kj$ 3 +consigns k@n'saInz Ha% 26A,14 +consist k@n'sIst I0% 23A +consisted k@n'sIstId Ic%,Id% 33A +consistence k@n'sIst@ns L@% 3 +consistencies k@n'sIst@nsIz Mj% 4 +consistency k@n'sIst@nsI M8% 4 +consistent k@n'sIst@nt OA% 3 +consistently k@n'sIst@ntlI Pu% 4 +consisting k@n'sIstIN Ib% 33A +consistories k@n'sIst@rIz Kj$ 4 +consistory k@n'sIst@rI K8$ 4 +consists k@n'sIsts Ia% 23A +consolable k@n's@Ul@bl OA% 4 +consolation ,k0ns@'leISn M6% 4 +consolations ,k0ns@'leISnz Mj% 4 +consolatory k@n's0l@t@rI OA$ 5 +console 'k0ns@Ul K6% 2 +console k@n's@Ul H2% 26A,14 +consoled k@n's@Uld Hc%,Hd% 26A,14 +consoles 'k0ns@Ulz Kj% 2 +consoles k@n's@Ulz Ha% 26A,14 +consolidate k@n's0lIdeIt J2% 42A,6A +consolidated k@n's0lIdeItId Jc%,Jd% 52A,6A +consolidates k@n's0lIdeIts Ja% 42A,6A +consolidating k@n's0lIdeItIN Jb% 52A,6A +consolidation k@n,s0lI'deISn M6% 5 +consolidations k@n,s0lI'deISnz Mj$ 5 +consoling k@n's@UlIN Hb% 36A,14 +consols 'k0ns0lz Kj% 2 +consomm_e k@n's0meI M6% 3 +consomm_es k@n's0meIz Mj$ 3 +consonance 'k0ns@n@ns L@$ 3 +consonant 'k0ns@n@nt K6%,OA% 3 +consonants 'k0ns@n@nts Kj% 3 +consort 'k0nsOt K6% 2 +consort k@n'sOt I0% 22C,3A +consorted k@n'sOtId Ic%,Id% 32C,3A +consortia k@n'sOtI@ Kj% 4 +consorting k@n'sOtIN Ib% 32C,3A +consortium k@n'sOtI@m Ki% 4 +consorts 'k0nsOts Kj% 2 +consorts k@n'sOts Ia% 22C,3A +conspectus k@n'spekt@s K7$ 3 +conspectuses k@n'spekt@sIz Kj$ 4 +conspicuous k@n'spIkjU@s OA% 4 +conspicuously k@n'spIkjU@slI Pu% 5 +conspicuousness k@n'spIkjU@sn@s L@% 5 +conspiracies k@n'spIr@sIz Mj% 4 +conspiracy k@n'spIr@sI M8% 4 +conspirator k@n'spIr@t@R K6% 4 +conspiratorial k@n,spIr@'tOrI@l OA% 6 +conspirators k@n'spIr@t@z Kj% 4 +conspire k@n'spaI@R J2% 22A,3A,4A,6A +conspired k@n'spaI@d Jc%,Jd% 22A,3A,4A,6A +conspires k@n'spaI@z Ja% 22A,3A,4A,6A +conspiring k@n'spaI@rIN Jb% 32A,3A,4A,6A +constable 'k0nst@bl K6% 3 +constables 'k0nst@blz Kj% 3 +constabularies k@n'st&bjUl@rIz Kj% 5 +constabulary k@n'st&bjUl@rI K8% 5 +constancy 'k0nst@nsI L@% 3 +constant 'k0nst@nt K6%,OA% 2 +constantly 'k0nst@ntlI Pu% 3 +constants 'k0nst@nts Kj% 2 +constellation ,k0nst@'leISn K6% 4 +constellations ,k0nst@'leISnz Kj% 4 +consternation ,k0nst@'neISn L@% 4 +constipate 'k0nstIpeIt H2% 36A +constipated 'k0nstIpeItId Hc%,Hd%,OA% 46A +constipates 'k0nstIpeIts Ha% 36A +constipating 'k0nstIpeItIN Hb% 46A +constipation ,k0nstI'peISn L@% 4 +constituencies k@n'stItjU@nsIz Kj% 5 +constituency k@n'stItjU@nsI K8% 5 +constituent k@n'stItjU@nt K6%,OA% 4 +constituents k@n'stItjU@nts Kj% 3 +constitute 'k0nstItjut H2% 36A,23 +constituted 'k0nstItjutId Hc%,Hd% 46A,23 +constitutes 'k0nstItjuts Ha% 36A,23 +constituting 'k0nstItjutIN Hb% 46A,23 +constitution ,k0nstI'tjuSn M6% 4 +constitutional ,k0nstI'tjuS@nl K6%,OA% 5 +constitutionalism ,k0nstI'tjuS@n@lIz@m L@$ 7 +constitutionalist ,k0nstI'tjuSn@lIst K6$ 5 +constitutionalists ,k0nstI'tjuSn@lIsts Kj$ 5 +constitutionalize ,k0nstI'tjuSn@laIz H2$ 5 +constitutionalized ,k0nstI'tjuSn@laIzd Hc$,Hd$ 5 +constitutionalizes ,k0nstI'tjuSn@laIzIz Ha$ 6 +constitutionalizing ,k0nstI'tjuSn@laIzIN Hb$ 6 +constitutionally ,k0nstI'tjuS@n@lI Pu% 6 +constitutionals ,k0nstI'tjuS@nlz Kj$ 5 +constitutions ,k0nstI'tjuSnz Mj% 4 +constitutive k@n'stItjUtIv OA$ 4 +constrain k@n'streIn H0% 26A,17 +constrained k@n'streInd Hc%,Hd%,OA% 26A,17 +constrainedly k@n'streIn@dlI Pu% 4 +constraining k@n'streInIN Hb% 36A,17 +constrains k@n'streInz Ha% 26A,17 +constraint k@n'streInt M6% 2 +constraints k@n'streInts Mj% 2 +constrict k@n'strIkt H0% 26A +constricted k@n'strIktId Hc%,Hd% 36A +constricting k@n'strIktIN Hb% 36A +constriction k@n'strIkSn M6% 3 +constrictions k@n'strIkSnz Mj% 3 +constricts k@n'strIkts Ha% 26A +construct k@n'strVkt H0% 26A +constructed k@n'strVktId Hc%,Hd% 36A +constructing k@n'strVktIN Hb% 36A +construction k@n'strVkSn M6% 3 +constructional k@n'strVkS@nl OA% 4 +constructions k@n'strVkSnz Mj% 3 +constructive k@n'strVktIv OA% 3 +constructively k@n'strVktIvlI Pu% 4 +constructor k@n'strVkt@R K6% 3 +constructors k@n'strVkt@z Kj% 3 +constructs k@n'strVkts Ha% 26A +construe k@n'stru J2% 22A,6A +construed k@n'strud Jc%,Jd% 22A,6A +construes k@n'struz Ja% 22A,6A +construing k@n'struIN Jb% 32A,6A +consubstantiation ,k0ns@b,st&nSI'eISn L@$ 6 +consul 'k0nsl K6% 2 +consular 'k0nsjUl@R OA% 3 +consulate 'k0nsjUl@t K6% 3 +consulates 'k0nsjUl@ts Kj% 3 +consuls 'k0nslz Kj% 2 +consulship 'k0ns@lSIp K6% 3 +consulships 'k0ns@lSIps Kj$ 3 +consult k@n'sVlt J0% 23A,6A,14 +consultant k@n'sVlt@nt K6% 3 +consultants k@n'sVlt@nts Kj% 3 +consultation ,k0nsl'teISn M6% 4 +consultations ,k0nsl'teISnz Mj% 4 +consultative k@n'sVlt@tIv OA% 4 +consulted k@n'sVltId Jc%,Jd% 33A,6A,14 +consulting k@n'sVltIN Jb% 33A,6A,14 +consults k@n'sVlts Ja% 23A,6A,14 +consume k@n'sjum J2% 26A +consumed k@n'sjumd Jc%,Jd% 26A +consumer k@n'sjum@R K6% 3 +consumers k@n'sjum@z Kj% 3 +consumes k@n'sjumz Ja% 26A +consuming k@n'sjumIN Jb%,OA% 36A +consummate 'k0ns@meIt H2% 36A +consummate k@n'sVm@t OA% 3 +consummated 'k0ns@meItId Hc%,Hd% 46A +consummates 'k0ns@meIts Ha% 36A +consummating 'k0ns@meItIN Hb% 46A +consummation ,k0ns@'meISn M6% 4 +consummations ,k0ns@'meISnz Mj$ 4 +consumption k@n'sVmpSn L@% 3 +consumptive k@n'sVmptIv K6%,OA% 3 +consumptives k@n'sVmptIvz Kj% 3 +cont k0nt Y~% 1 +contact 'k0nt&kt H0%,M6% 26A +contacted 'k0nt&ktId Hc%,Hd% 36A +contacting 'k0nt&ktIN Hb% 36A +contacts 'k0nt&kts Ha%,Mj% 26A +contagion k@n'teIdZ@n M6% 3 +contagions k@n'teIdZ@nz Mj$ 3 +contagious k@n'teIdZ@s OA% 3 +contagiously k@n'teIdZ@slI Pu% 4 +contain k@n'teIn H0% 26A +contained k@n'teInd Hc%,Hd% 26A +container k@n'teIn@R K6% 3 +containers k@n'teIn@z Kj% 3 +containing k@n'teInIN Hb% 36A +containment k@n'teInm@nt L@% 3 +contains k@n'teInz Ha% 26A +contaminant k@n't&mIn@nt K6% 4 +contaminants k@n't&mIn@nts Kj% 4 +contaminate k@n't&mIneIt H2% 46A +contaminated k@n't&mIneItId Hc%,Hd% 56A +contaminates k@n't&mIneIts Ha% 46A +contaminating k@n't&mIneItIN Hb% 56A +contamination k@n,t&mI'neISn M6% 5 +contaminations k@n,t&mI'neISnz Mj% 5 +contemn k@n'tem H0$ 26A +contemned k@n'temd Hc$,Hd$ 26A +contemning k@n'temIN Hb$ 36A +contemns k@n'temz Ha$ 26A +contemplate 'k0nt@mpleIt J2% 32A,6A,6C,19C +contemplated 'k0nt@mpleItId Jc%,Jd% 42A,6A,6C,19C +contemplates 'k0nt@mpleIts Ja% 32A,6A,6C,19C +contemplating 'k0nt@mpleItIN Jb% 42A,6A,6C,19C +contemplation ,k0nt@m'pleISn L@% 4 +contemplative k@n'templ@tIv OA% 4 +contemporaneous k@n,temp@'reInI@s OA% 6 +contemporaneously k@n,temp@'reInI@slI Pu% 7 +contemporaries k@n'tempr@rIz Kj% 4 +contemporary k@n'tempr@rI K8%,OA% 4 +contempt k@n'tempt L@% 2 +contemptible k@n'tempt@bl OA% 4 +contemptuous k@n'temptSU@s OA% 4 +contemptuously k@n'temptSU@slI Pu% 5 +contend k@n'tend J0% 23A,9 +contended k@n'tendId Jc%,Jd% 33A,9 +contender k@n'tend@R K6% 3 +contenders k@n'tend@z Kj% 3 +contending k@n'tendIN Jb% 33A,9 +contends k@n'tendz Ja% 23A,9 +content 'k0ntent K6% 2 +content k@n'tent H0%,L@%,OA% 26A,14 +contented k@n'tentId Hc%,Hd%,OA% 36A,14 +contentedly k@n'tentIdlI Pu% 4 +contenting k@n'tentIN Hb% 36A,14 +contention k@n'tenSn M6% 3 +contentions k@n'tenSnz Mj% 3 +contentious k@n'tenS@s OA% 3 +contentment k@n'tentm@nt L@% 3 +contents 'k0ntents Kj% 2 +contents k@n'tents Ha% 26A,14 +conterminous k0n't3mIn@s OA$ 4 +contest 'k0ntest K6% 2 +contest k@n'test J0% 23A,6A,9 +contestant k@n'test@nt K6% 3 +contestants k@n'test@nts Kj% 3 +contested k@n'testId Jc%,Jd% 33A,6A,9 +contesting k@n'testIN Jb% 33A,6A,9 +contests 'k0ntests Kj% 2 +contests k@n'tests Ja% 23A,6A,9 +context 'k0ntekst M6% 2 +contexts 'k0nteksts Mj% 2 +contextual k@n'tekstSU@l OA% 4 +contiguity ,k0ntI'gjuItI L@% 5 +contiguous k@n'tIgjU@s OA% 4 +contiguously k@n'tIgjU@slI Pu% 4 +continence 'k0ntIn@ns L@% 3 +continent 'k0ntIn@nt K6%,OA% 3 +continental ,k0ntI'nentl OA% 4 +continents 'k0ntIn@nts Kj% 3 +contingencies k@n'tIndZ@nsIz Mj% 4 +contingency k@n'tIndZ@nsI M8% 4 +contingent k@n'tIndZ@nt K6%,OA% 3 +contingents k@n'tIndZ@nts Kj$ 3 +continual k@n'tInjU@l OA% 4 +continually k@n'tInjU@lI Pu% 5 +continuance k@n'tInjU@ns Ki% 4 +continuation k@n,tInjU'eISn M6% 5 +continuations k@n,tInjU'eISnz Mj$ 5 +continue k@n'tInju J2% 32A,2B,2D,2E,6A,6D,7A,14 +continued k@n'tInjud Jc%,Jd% 32A,2B,2D,2E,6A,6D,7A,14 +continues k@n'tInjuz Ja% 32A,2B,2D,2E,6A,6D,7A,14 +continuing k@n'tInjuIN Jb% 42A,2B,2D,2E,6A,6D,7A,14 +continuity ,k0ntI'njuItI L@% 5 +continuous k@n'tInjU@s OA% 4 +continuously k@n'tInjU@slI Pu% 5 +contort k@n'tOt H0% 26A,14 +contorted k@n'tOtId Hc%,Hd% 36A,14 +contorting k@n'tOtIN Hb% 36A,14 +contortion k@n'tOSn M6% 3 +contortionist k@n'tOS@nIst K6% 4 +contortionists k@n'tOS@nIsts Kj% 4 +contortions k@n'tOSnz Mj% 3 +contorts k@n'tOts Ha% 26A,14 +contour 'k0ntU@R H0%,K6% 26A +contoured 'k0ntU@d Hc%,Hd% 26A +contouring 'k0ntU@rIN Hb% 36A +contours 'k0ntU@z Ha%,Kj% 26A +contra- ,k0ntr@- U-% 2 +contraband 'k0ntr@b&nd L@% 3 +contrabass ,k0ntr@'beIs K7% 3 +contrabasses ,k0ntr@'beIsIz Kj% 4 +contraception ,k0ntr@'sepSn L@% 4 +contraceptive ,k0ntr@'septIv K6%,OA% 4 +contraceptives ,k0ntr@'septIvz Kj% 4 +contract 'k0ntr&kt M6% 2 +contract k@n'tr&kt J0% 22A,2C,4A,6A,14 +contracted k@n'tr&ktId Jc%,Jd% 32A,2C,4A,6A,14 +contractible 'k0ntr&kt@bl OA$ 4 +contractile k@n'tr&ktaIl OA$ 3 +contracting k@n'tr&ktIN Jb% 32A,2C,4A,6A,14 +contraction k@n'tr&kSn M6% 3 +contractions k@n'tr&kSnz Mj% 3 +contractor 'k0ntr&kt@R K6% 3 +contractors 'k0ntr&kt@z Kj% 3 +contracts 'k0ntr&kts Mj% 2 +contracts k@n'tr&kts Ja% 22A,2C,4A,6A,14 +contractual k@n'tr&ktSU@l OA% 4 +contradict ,k0ntr@'dIkt H0% 36A +contradicted ,k0ntr@'dIktId Hc%,Hd% 46A +contradicting ,k0ntr@'dIktIN Hb% 46A +contradiction ,k0ntr@'dIkSn M6% 4 +contradictions ,k0ntr@'dIkSnz Mj% 4 +contradictory ,k0ntr@'dIkt@rI OA% 5 +contradicts ,k0ntr@'dIkts Ha% 36A +contradistinction ,k0ntr@dI'stINkSn K6$ 5 +contradistinctions ,k0ntr@dI'stINkSnz Kj$ 5 +contradistinguish ,k0ntr@dI'stINgwIS H1$ 514 +contradistinguished ,k0ntr@dI'stINgwISt Hc$,Hd$ 514 +contradistinguishes ,k0ntr@dI'stINgwISIz Ha$ 614 +contradistinguishing ,k0ntr@dI'stINgwISIN Hb$ 614 +contralto k@n'tr<@U K6% 3 +contraltos k@n'tr<@Uz Kj% 3 +contraption k@n'tr&pSn K6% 3 +contraptions k@n'tr&pSnz Kj% 3 +contrapuntal ,k0ntr@'pVntl OA% 4 +contraries 'k0ntr@rIz Mj$ 3 +contrarieties ,k0ntr@'raI@tIz Mj$ 5 +contrariety ,k0ntr@'raI@tI M8$ 5 +contrarily 'k0ntr@r@lI Pu% 4 +contrariness k@n'tre@rIn@s L@% 4 +contrariwise ,k0n'tre@rIwaIz Pu% 4 +contrary 'k0ntr@rI M8%,OA% 3 +contrary k@n'tre@rI OA% 3 +contrast 'k0ntrAst M6% 2 +contrast k@n'trAst J0% 22C,3A,6A,14 +contrasted k@n'trAstId Jc%,Jd% 32C,3A,6A,14 +contrasting k@n'trAstIN Jb% 32C,3A,6A,14 +contrastingly k@n'trAstINlI Pu% 4 +contrasts 'k0ntrAsts Mj% 2 +contrasts k@n'trAsts Ja% 22C,3A,6A,14 +contravene ,k0ntr@'vin H2% 36A +contravened ,k0ntr@'vind Hc%,Hd% 36A +contravenes ,k0ntr@'vinz Ha% 36A +contravening ,k0ntr@'vinIN Hb% 46A +contravention ,k0ntr@'venSn M6% 4 +contraventions ,k0ntr@'venSnz Mj% 4 +contretemps 'k0ntr@t0m K9% 3 +contribute k@n'trIbjut J2% 32A,3A,6A,14 +contributed k@n'trIbjutId Jc%,Jd% 42A,3A,6A,14 +contributes k@n'trIbjuts Ja% 32A,3A,6A,14 +contributing k@n'trIbjutIN Jb% 42A,3A,6A,14 +contribution ,k0ntrI'bjuSn M6% 4 +contributions ,k0ntrI'bjuSnz Mj% 4 +contributor k@n'trIbjut@R K6% 4 +contributors k@n'trIbjut@z Kj% 4 +contributory k@n'trIbjUt@rI OA% 5 +contrite k@n'traIt OA% 2 +contritely k@n'traItlI Pu% 3 +contrition k@n'trISn L@% 3 +contrivance k@n'traIv@ns M6% 3 +contrivances k@n'traIv@nsIz Mj% 4 +contrive k@n'traIv J2% 22A,6A,7A +contrived k@n'traIvd Jc%,Jd% 22A,6A,7A +contriver k@n'traIv@R K6$ 3 +contrivers k@n'traIv@z Kj$ 3 +contrives k@n'traIvz Ja% 22A,6A,7A +contriving k@n'traIvIN Jb% 32A,6A,7A +control k@n'tr@Ul H4%,M6% 26A +controllable k@n'tr@Ul@bl OA% 4 +controlled k@n'tr@Uld Hc%,Hd% 26A +controller k@n'tr@Ul@R K6% 3 +controllers k@n'tr@Ul@z Kj% 3 +controlling k@n'tr@UlIN Hb% 36A +controls k@n'tr@Ulz Ha%,Mj% 26A +controversial ,k0ntr@'v3Sl OA% 4 +controversialist ,k0ntr@'v3S@lIst K6$ 5 +controversialists ,k0ntr@'v3S@lIsts Kj$ 5 +controversially ,k0ntr@'v3S@lI Pu% 5 +controversies 'k0ntr@v3sIz Mj% 4 +controversy 'k0ntr@v3sI M8% 4 +controvert ,k0ntr@'v3t H0$ 36A +controverted ,k0ntr@'v3tId Hc$,Hd$ 46A +controverting ,k0ntr@'v3tIN Hb$ 46A +controverts ,k0ntr@'v3ts Ha$ 36A +contumacies 'k0ntjUm@sIz Mj$ 4 +contumacious ,k0ntju'meIS@s OA$ 4 +contumaciously ,k0ntju'meIS@slI Pu$ 5 +contumacy 'k0ntjUm@sI M8$ 4 +contumelies 'k0ntjumlIz Mj$ 3 +contumelious ,k0ntju'milI@s OA$ 5 +contumeliously ,k0ntju'milI@slI Pu$ 6 +contumely 'k0ntjumlI M8$ 3 +contuse k@n'tjuz H2$ 26A +contused k@n'tjuzd Hc$,Hd$ 26A +contuses k@n'tjuzIz Ha$ 36A +contusing k@n'tjuzIN Hb$ 36A +contusion k@n'tjuZn K6% 3 +contusions k@n'tjuZnz Kj% 3 +conundrum k@'nVndr@m K6% 3 +conundrums k@'nVndr@mz Kj% 3 +conurbation ,k0n3'beISn K6% 4 +conurbations ,k0n3'beISnz Kj% 4 +convalesce ,k0nv@'les I2% 32A +convalesced ,k0nv@'lest Ic%,Id% 32A +convalescence ,k0nv@'lesns L@% 4 +convalescent ,k0nv@'lesnt K6%,OA% 4 +convalescents ,k0nv@'lesnts Kj% 4 +convalesces ,k0nv@'lesIz Ia% 42A +convalescing ,k0nv@'lesIN Ib% 42A +convection k@n'vekSn L@% 3 +convector k@n'vekt@R K6% 3 +convectors k@n'vekt@z Kj% 3 +convene k@n'vin J2% 22A,6A +convened k@n'vind Jc%,Jd% 22A,6A +convener k@n'vin@R K6% 3 +conveners k@n'vin@z Kj% 3 +convenes k@n'vinz Ja% 22A,6A +convenience k@n'vinI@ns M6% 4 +conveniences k@n'vinI@nsIz Mj% 5 +convenient k@n'vinI@nt OA% 4 +conveniently k@n'vinI@ntlI Pu% 5 +convening k@n'vinIN Jb% 32A,6A +convent 'k0nv@nt K6% 2 +conventicle k@n'ventIkl K6$ 4 +conventicles k@n'ventIklz Kj$ 4 +convention k@n'venSn M6% 3 +conventional k@n'venS@nl OA% 4 +conventionalities k@n,venS@'n&lItIz Mj$ 6 +conventionality k@n,venS@'n&lItI M8$ 6 +conventionally k@n'venS@n@lI Pu% 5 +conventions k@n'venSnz Mj% 3 +convents 'k0nv@nts Kj% 2 +converge k@n'v3dZ I2% 22A,2C,3A +converged k@n'v3dZd Ic%,Id% 22A,2C,3A +convergence k@n'v3dZ@ns K6% 3 +convergences k@n'v3dZ@nsIz Kj$ 4 +convergent k@n'v3dZ@nt OA% 3 +converges k@n'v3dZIz Ia% 32A,2C,3A +converging k@n'v3dZIN Ib% 32A,2C,3A +conversant k@n'v3snt OA% 3 +conversation ,k0nv@'seISn M6% 4 +conversational ,k0nv@'seISn@l OA% 5 +conversationalist ,k0nv@'seISn@lIst K6% 6 +conversationalists ,k0nv@'seISn@lIsts Kj% 6 +conversationally ,k0nv@'seISn@lI Pu% 6 +conversations ,k0nv@'seISnz Mj% 4 +converse 'k0nv3s Mi%,OA% 2 +converse k@n'v3s I2% 22A,2C,3A +conversed k@n'v3st Ic%,Id% 22A,2C,3A +conversely k@n'v3slI Pu% 3 +converses k@n'v3sIz Ia% 32A,2C,3A +conversing k@n'v3sIN Ib% 32A,2C,3A +conversion k@n'v3Sn M6% 3 +conversions k@n'v3Snz Mj% 3 +convert 'k0nv3t K6% 2 +convert k@n'v3t H0% 26A,14 +converted k@n'v3tId Hc%,Hd%,OA% 36A,14 +converter k@n'v3t@R K6% 3 +converters k@n'v3t@z Kj% 3 +convertibility k@n,v3t@'bIlItI L@% 6 +convertible k@n'v3t@bl K6%,OA% 4 +convertibles k@n'v3t@blz Kj% 4 +converting k@n'v3tIN Hb% 36A,14 +converts 'k0nv3ts Kj% 2 +converts k@n'v3ts Ha% 26A,14 +convex 'k0nveks OA% 2 +convexity k@n'veksItI L@$ 4 +convexly 'k0nvekslI Pu$ 3 +convey k@n'veI H0% 26A,14 +conveyance k@n'veI@ns M6% 3 +conveyancer k@n'veI@ns@R K6% 4 +conveyancers k@n'veI@ns@z Kj% 4 +conveyances k@n'veI@nsIz Mj% 4 +conveyed k@n'veId Hc%,Hd% 26A,14 +conveyer k@n'veI@R K6% 3 +conveyer-belt k@n'veI@-belt K6% 4 +conveyer-belts k@n'veI@-belts Kj% 4 +conveyers k@n'veI@z Kj% 3 +conveying k@n'veIIN Hb% 36A,14 +conveyor k@n'veI@R K6% 3 +conveyors k@n'veI@z Kj% 3 +conveys k@n'veIz Ha% 26A,14 +convict 'k0nvIkt K6% 2 +convict k@n'vIkt H0% 26A,14 +convicted k@n'vIktId Hc%,Hd% 36A,14 +convicting k@n'vIktIN Hb% 36A,14 +conviction k@n'vIkSn M6% 3 +convictions k@n'vIkSnz Mj% 3 +convicts 'k0nvIkts Kj% 2 +convicts k@n'vIkts Ha% 26A,14 +convince k@n'vIns H2% 26A,11,14 +convinced k@n'vInst Hc%,Hd% 26A,11,14 +convinces k@n'vInsIz Ha% 36A,11,14 +convincible k@n'vIns@bl OA$ 4 +convincing k@n'vInsIN Hb%,OA% 36A,11,14 +convincingly k@n'vInsINlI Pu% 4 +convivial k@n'vIvI@l OA% 4 +convivialities k@n,vIvI'&lItIz Mj$ 6 +conviviality k@n,vIvI'&lItI M8% 6 +convivially k@n'vIvI@lI Pu% 5 +convocation ,k0nv@'keISn M6% 4 +convocations ,k0nv@'keISnz Mj$ 4 +convoke k@n'v@Uk H2$ 26A +convoked k@n'v@Ukt Hc$,Hd$ 26A +convokes k@n'v@Uks Ha$ 26A +convoking k@n'v@UkIN Hb$ 36A +convoluted ,k0nv@'lutId OA% 4 +convolution ,k0nv@'luSn K6% 4 +convolutions ,k0nv@'luSnz Kj% 4 +convolvulus k@n'v0lvjUl@s K7% 4 +convolvuluses k@n'v0lvjUl@sIz Kj$ 5 +convoy 'k0nvoI H0%,M6% 26A +convoyed 'k0nvoId Hc%,Hd% 26A +convoying 'k0nvoIIN Hb% 36A +convoys 'k0nvoIz Ha%,Mj% 26A +convulse k@n'vVls H2% 26A +convulsed k@n'vVlst Hc%,Hd% 26A +convulses k@n'vVlsIz Ha% 36A +convulsing k@n'vVlsIN Hb% 36A +convulsion k@n'vVlSn K6% 3 +convulsions k@n'vVlSnz Kj% 3 +convulsive k@n'vVlsIv OA% 3 +convulsively k@n'vVlsIvlI Pu% 4 +cony 'k@UnI K8$ 2 +coo ku J0%,K6% 1 +cooed kud Jc%,Jd% 1 +cooing 'kuIN Jb% 2 +cook kUk J0%,K6% 12A,6A,12B,13B,15B +cookbook 'kUkbUk K6% 2 +cookbooks 'kUkbUks Kj% 2 +cooked kUkt Jc%,Jd% 12A,6A,12B,13B,15B +cooker 'kUk@R K6% 2 +cookers 'kUk@z Kj% 2 +cookery 'kUk@rI L@% 3 +cookery-book 'kUk@rI-bUk K6% 4 +cookery-books 'kUk@rI-bUks Kj% 4 +cookhouse 'kUkhaUs K6% 2 +cookhouses 'kUkhaUzIz Kj% 3 +cookie 'kUkI K6% 2 +cookies 'kUkIz Kj% 2 +cooking 'kUkIN Jb%,L@% 22A,6A,12B,13B,15B +cooks kUks Ja%,Kj% 12A,6A,12B,13B,15B +cooky 'kUkI K8$ 2 +cool kul J0%,L@%,OC% 12A,2C,6A +cool-headed 'kul-hedId OA% 3 +coolant 'kul@nt M6% 2 +coolants 'kul@nts Mj% 2 +cooled kuld Jc%,Jd% 12A,2C,6A +cooler 'kul@R K6%,Or% 2 +coolers 'kul@z Kj% 2 +coolest 'kulIst Os% 2 +coolie 'kulI K6% 2 +coolies 'kulIz Kj% 2 +cooling 'kulIN Jb% 22A,2C,6A +cooling-tower 'kulIN-taU@R K6% 4 +cooling-towers 'kulIN-taU@z Kj% 4 +coolly 'kul+lI Pu% 2 +coolness 'kuln@s L@% 2 +cools kulz Ja% 12A,2C,6A +coon kun K6% 1 +coons kunz Kj% 1 +coop kup H0%,K6% 16A,15B +cooped kupt Hc%,Hd% 16A,15B +cooper 'kup@R K6$ 2 +cooperate k@U'0p@reIt I2% 42A,3A,4A +cooperated k@U'0p@reItId Ic%,Id% 52A,3A,4A +cooperates k@U'0p@reIts Ia% 42A,3A,4A +cooperating k@U'0p@reItIN Ib% 52A,3A,4A +cooperation k@U,0p@'reISn L@% 5 +cooperative k@U'0p@r@tIv K6%,OA% 4 +cooperatives k@U'0p@r@tIvz Kj% 4 +cooperator k@U'0p@reIt@R K6% 5 +cooperators k@U'0p@reIt@z Kj% 5 +coopers 'kup@z Kj$ 2 +cooping 'kupIN Hb$ 26A,15B +coops kups Ha$,Kj% 16A,15B +coordinate ,k@U'Od@n@t K6%,OA% 4 +coordinate ,k@U'OdIneIt H2% 46A +coordinated ,k@U'OdIneItId Hc%,Hd% 56A +coordinately ,k@U'OdIn@tlI Pu$ 5 +coordinates ,k@U'Od@n@ts Kj% 4 +coordinates ,k@U'OdIneIts Ha% 46A +coordinating ,k@U'OdIneItIN Hb% 56A +coordination ,k@U,OdIn'eISn M6% 5 +coordinations ,k@U,OdIn'eISnz Mj$ 5 +coordinator k@U'OdIneIt@R K6% 5 +coordinators k@U'OdIneIt@z Kj% 5 +coos kuz Ja%,Kj% 1 +coot kut K6% 1 +coots kuts Kj% 1 +cop k0p J4%,K6% 12C +cop-out 'k0p-aUt K6% 2 +cop-outs 'k0p-aUts Kj$ 2 +copartner ,k@U'pAtn@R K6% 3 +copartners ,k@U'pAtn@z Kj% 3 +copartnership k@U'pAtn@SIp K6% 4 +copartnerships k@U'pAtn@SIps Kj% 4 +cope k@Up I2%,K6% 12A,3A +copeck 'k@Upek K6$ 2 +copecks 'k@Upeks Kj$ 2 +coped k@Upt Ic%,Id% 12A,3A +copes k@Ups Ia%,Kj% 12A,3A +copied 'k0pId Jc%,Jd% 22A,6A,15A,15B +copies 'k0pIz Ja%,Mj% 22A,6A,15A,15B +coping 'k@UpIN Ib%,K6% 22A,3A +coping-stone 'k@UpIN-st@Un K6% 3 +coping-stones 'k@UpIN-st@Unz Kj% 3 +copings 'k@UpINz Kj$ 2 +copious 'k@UpI@s OA% 3 +copiously 'k@UpI@slI Pu% 4 +copped k0pt Jc%,Jd% 12C +copper 'k0p@R H0$,M6% 2 +copper-bottom ,k0p@-'b0t@m H0$ 4 +copper-bottomed 'k0p@-b0t@md OA% 4 +copper-bottomed ,k0p@-'b0t@md Hc$,Hd% 4 +copper-bottoming ,k0p@-'b0t@mIN Hb$ 5 +copper-bottoms ,k0p@-'b0t@mz Ha$ 4 +coppered 'k0p@d Hc$,Hd$ 2 +copperhead 'k0p@hed K6$ 3 +copperheads 'k0p@hedz Kj$ 3 +coppering 'k0p@rIN Hb$ 3 +copperplate 'k0p@pleIt L@% 3 +coppers 'k0p@z Ha$,Mj% 2 +coppersmith 'k0p@smIT K6% 3 +coppersmiths 'k0p@smITs Kj% 3 +coppice 'k0pIs K6% 2 +coppices 'k0pIsIz Kj% 3 +copping 'k0pIN Jb% 22C +copra 'k0pr@ L@$ 2 +cops k0ps Ja%,Kj% 12C +copse k0ps K6% 1 +copses 'k0psIz Kj% 2 +copula 'k0pjUl@ K6$ 3 +copulas 'k0pjUl@z Kj$ 3 +copulate 'k0pjUleIt I2% 32A,3A +copulated 'k0pjUleItId Ic%,Id% 42A,3A +copulates 'k0pjUleIts Ia% 32A,3A +copulating 'k0pjUleItIN Ib% 42A,3A +copulation ,k0pjU'leISn K6% 4 +copulations ,k0pjU'leISnz Kj% 4 +copulative 'k0pjUl@tIv K6$,OA$ 4 +copulatives 'k0pjUl@tIvz Kj$ 4 +copy 'k0pI J3%,M8% 22A,6A,15A,15B +copybook 'k0pIbUk K6% 3 +copybooks 'k0pIbUks Kj% 3 +copycat 'k0pIk&t K6% 3 +copycats 'k0pIk&ts Kj% 3 +copyhold 'k0pIh@Uld L@$ 3 +copyholder 'k0pIh@Uld@R K6$ 4 +copyholders 'k0pIh@Uld@z Kj$ 4 +copying 'k0pIIN Jb% 32A,6A,15A,15B +copyist 'k0pIIst K6$ 3 +copyists 'k0pIIsts Kj$ 3 +copyright 'k0pIraIt H0%,M6% 3 +copyrighted 'k0pIraItId Hc$,Hd% 4 +copyrighting 'k0pIraItIN Hb$ 4 +copyrights 'k0pIraIts Ha$,Mj$ 3 +copywriter 'k0pIraIt@R K6% 4 +copywriters 'k0pIraIt@z Kj% 4 +coquetries 'k0kItrIz Mj$ 3 +coquetry 'k0kItrI M8% 3 +coquette k0'ket K6% 2 +coquettes k0'kets Kj% 2 +coquettish k@U'ketIS OA% 3 +coquettishly k@U'ketISlI Pu% 4 +cor anglais ,kOr '0NgleI Ki% 3 +coracle 'k0r@kl K6% 3 +coracles 'k0r@klz Kj% 3 +coral 'k0r@l M6%,OA% 2 +coral-reef 'k0r@l-rif K6% 3 +coral-reefs 'k0r@l-rifs Kj% 3 +corals 'k0r@lz Mj% 2 +corbel 'kObl K6$ 2 +corbels 'kOblz Kj$ 2 +cord kOd H0%,M6% 1 +cordage 'kOdIdZ L@$ 2 +corded 'kOdId Hc$,Hd$ 2 +cordial 'kOdI@l M6%,OA% 3 +cordialities ,kOdI'&lItIz Mj$ 5 +cordiality ,kOdI'&lItI M8% 5 +cordially 'kOdI@lI Pu% 4 +cordials 'kOdI@lz Mj% 3 +cording 'kOdIN Hb$ 2 +cordite 'kOdaIt L@% 2 +cordon 'kOdn H0%,K6% 215B +cordon bleu ,kOd0n 'bl3 OA% 3 +cordoned 'kOdnd Hc%,Hd% 215B +cordoning 'kOdnIN Hb% 315B +cordons 'kOdnz Ha%,Kj% 215B +cords kOdz Ha%,Mj% 1 +corduroy 'kOd@roI L@% 3 +core kOR H2$,K6% 16A +cored kOd Hc$,Hd$ 16A +coreligionist ,k@UrI'lIdZ@nIst K6% 5 +coreligionists ,k@UrI'lIdZ@nIsts Kj% 5 +cores kOz Ha$,Kj% 16A +corgi 'kOgI K6% 2 +corgis 'kOgIz Kj% 2 +coring 'kOrIN Hb$ 26A +cork kOk H0%,M6% 16A,15A +corkage 'kOkIdZ L@% 2 +corked kOkt Hc%,Hd%,OA% 16A,15A +corker 'kOk@R K6% 2 +corkers 'kOk@z Kj% 2 +corking 'kOkIN Hb% 26A,15A +corks kOks Ha%,Mj% 16A,15A +corkscrew 'kOkskru K6% 2 +corkscrews 'kOkskruz Kj% 2 +corm kOm K6% 1 +cormorant 'kOm@r@nt K6% 3 +cormorants 'kOm@r@nts Kj% 3 +corms kOmz Kj% 1 +corn kOn H0$,M6% 1 +corn-exchange 'kOn-IkstSeIndZ K6% 3 +corn-exchanges 'kOn-IkstSeIndZIz Kj% 4 +corncob 'kOnk0b K6% 2 +corncobs 'kOnk0bz Kj% 2 +corncrake 'kOnkreIk K6% 2 +corncrakes 'kOnkreIks Kj% 2 +cornea 'kOnI@ K6% 3 +corneas 'kOnI@z Kj% 3 +corned kOnd Hc$,Hd$ 1 +cornelian kO'nilI@n K6$ 4 +cornelians kO'nilI@nz Kj$ 4 +corner 'kOn@R J0%,K6% 22A,6A +corner-kick 'kOn@-kIk K6% 3 +corner-kicks 'kOn@-kIks Kj% 3 +cornered 'kOn@d Jc%,Jd%,OA% 22A,6A +cornering 'kOn@rIN Jb% 32A,6A +corners 'kOn@z Ja%,Kj% 22A,6A +cornerstone 'kOn@st@Un K6% 3 +cornerstones 'kOn@st@Unz Kj% 3 +cornet 'kOnIt K6% 2 +cornets 'kOnIts Kj% 2 +cornflake 'kOnfleIk K6% 2 +cornflakes 'kOnfleIks Kj% 2 +cornflour 'kOnflaU@R L@% 3 +cornflower 'kOnflaU@R K6% 3 +cornflowers 'kOnflaU@z Kj% 3 +cornice 'kOnIs K6% 2 +cornices 'kOnIsIz Kj% 3 +cornier 'kOnI@R Or% 3 +corniest 'kOnIIst Os% 3 +corning 'kOnIN Hb$ 2 +cornpone 'kOnp@Un L@$ 2 +corns kOnz Ha$,Mj% 1 +cornstarch 'kOnstAtS L@% 2 +cornucopia ,kOnjU'k@UpI@ K6% 5 +cornucopias ,kOnjU'k@UpI@z Kj$ 5 +corny 'kOnI OD% 2 +corolla k@'r0l@ K6$ 3 +corollaries k@'r0l@rIz Kj% 4 +corollary k@'r0l@rI K8% 4 +corollas k@'r0l@z Kj$ 3 +corona k@'r@Un@ K6% 3 +coronaries 'k0r@nrIz Kj% 3 +coronary 'k0r@nrI K8%,OA% 3 +coronas k@'r@Un@z Kj$ 3 +coronation ,k0r@'neISn K6% 4 +coronations ,k0r@'neISnz Kj% 4 +coroner 'k0r@n@R K6% 3 +coroners 'k0r@n@z Kj% 3 +coronet 'k0r@net K6% 3 +coronets 'k0r@nets Kj% 3 +corpora 'kOp@r@ Kj$ 3 +corporal 'kOp@r@l K6%,OA% 3 +corporals 'kOp@r@lz Kj% 3 +corporate 'kOp@r@t OA% 3 +corporation ,kOp@'reISn K6% 4 +corporations ,kOp@'reISnz Kj% 4 +corporeal kO'pOrI@l OA% 4 +corps kOR Ki$ 1 +corps kOz Kj$ 1 +corps de ballet ,kO d@ 'b&leI Ki% 4 +corps de ballets ,kO d@ 'b&leI Kj$ 4 +corpse kOps K6% 1 +corpses 'kOpsIz Kj% 2 +corpulence 'kOpjUl@ns L@% 3 +corpulent 'kOpjUl@nt OA% 3 +corpus 'kOp@s Ki% 2 +corpuscle 'kOpVsl K6% 3 +corpuscles 'kOpVslz Kj% 3 +corral k@'rAl H4$,K6% 26A +corralled k@'rAld Hc$,Hd$ 26A +corralling k@'rAlIN Hb$ 36A +corrals k@'rAlz Ha$,Kj% 26A +correct k@'rekt H0%,OA% 26A,14 +corrected k@'rektId Hc%,Hd% 36A,14 +correcting k@'rektIN Hb% 36A,14 +correction k@'rekSn M6% 3 +corrections k@'rekSnz Mj% 3 +correctitude k@'rektItjud L@$ 4 +corrective k@'rektIv K6%,OA% 3 +correctives k@'rektIvz Kj% 3 +correctly k@'rektlI Pu% 3 +correctness k@'rektn@s L@% 3 +corrects k@'rekts Ha% 26A,14 +correlate 'k0r@leIt J2% 32A,3A,6A,14 +correlated 'k0r@leItId Jc%,Jd% 42A,3A,6A,14 +correlates 'k0r@leIts Ja% 32A,3A,6A,14 +correlating 'k0r@leItIN Jb% 42A,3A,6A,14 +correlation ,k0r@'leISn K6% 4 +correlations ,k0r@'leISnz Kj% 4 +correlative k0'rel@tIv K6$,OA$ 4 +correlatives k0'rel@tIvz Kj$ 4 +correspond ,k0rI'sp0nd I0% 32A,3A +corresponded ,k0rI'sp0ndId Ic%,Id% 42A,3A +correspondence ,k0rI'sp0nd@ns M6% 4 +correspondences ,k0rI'sp0nd@nsIz Mj% 5 +correspondent ,k0rI'sp0nd@nt K6% 4 +correspondents ,k0rI'sp0nd@nts Kj% 4 +corresponding ,k0rI'sp0ndIN Ib%,OA% 42A,3A +correspondingly ,k0rI'sp0ndINlI Pu% 5 +corresponds ,k0rI'sp0ndz Ia% 32A,3A +corridor 'k0rIdOR K6% 3 +corridors 'k0rIdOz Kj% 3 +corrie 'k0rI K6$ 2 +corries 'k0rIz Kj$ 2 +corrigenda ,k0rI'dZend@ Kj$ 4 +corrigendum ,k0rI'dZend@m Ki$ 4 +corrigible 'k0rIdZ@bl OA$ 4 +corroborate k@'r0b@reIt H2% 46A +corroborated k@'r0b@reItId Hc%,Hd% 56A +corroborates k@'r0b@reIts Ha% 46A +corroborating k@'r0b@reItIN Hb% 56A +corroboration k@,r0b@'reISn L@% 5 +corroborative k@'r0b@r@tIv OA% 5 +corrode k@'r@Ud J2% 22A,6A +corroded k@'r@UdId Jc%,Jd% 32A,6A +corrodes k@'r@Udz Ja% 22A,6A +corroding k@'r@UdIN Jb% 32A,6A +corrosion k@'r@UZn L@% 3 +corrosive k@'r@UsIv K6%,OA% 3 +corrosives k@'r@UsIvz Kj% 3 +corrugate 'k0r@geIt J2$ 32A,6A +corrugated 'k0r@geItId Jc$,Jd% 42A,6A +corrugates 'k0r@geIts Ja% 32A,6A +corrugating 'k0r@geItIN Jb$ 42A,6A +corrugation ,k0r@'geISn M6$ 4 +corrugations ,k0r@'geISnz Mj$ 4 +corrupt k@'rVpt J0%,OA% 22A,6A +corrupted k@'rVptId Jc%,Jd% 32A,6A +corruptibility k@,rVpt@'bIlItI L@$ 6 +corruptible k@'rVpt@bl OA% 4 +corrupting k@'rVptIN Jb% 32A,6A +corruption k@'rVpSn L@% 3 +corruptly k@'rVptlI Pu% 3 +corruptness k@'rVptn@s L@% 3 +corrupts k@'rVpts Ja% 22A,6A +cors anglais ,kOr '0NgleI Kj$ 3 +corsage kO'sAZ K6$ 2 +corsages kO'sAZIz Kj$ 3 +corsair 'kOse@R K6$ 2 +corsairs 'kOse@z Kj$ 2 +corse kOs K6$ 1 +corselet 'kOslIt K6$ 2 +corselets 'kOslIts Kj$ 2 +corses 'kOsIz Kj$ 2 +corset 'kOsIt K6% 2 +corsets 'kOsIts Kj% 2 +corslet 'kOslIt K6$ 2 +corslets 'kOslIts Kj$ 2 +cort`ege kO'teIZ K6$ 2 +cort`eges kO'teIZIz Kj$ 3 +cortege kO'teIZ K6$ 2 +corteges kO'teIZIz Kj$ 3 +cortex 'kOteks Ki% 2 +cortical 'kOtIkl OA% 3 +cortices 'kOtIsiz Kj$ 3 +cortisone 'kOtIz@Un L@% 3 +corundum k@'rVnd@m L@$ 3 +coruscate 'k0r@skeIt I2$ 32A +coruscated 'k0r@skeItId Ic$,Id$ 42A +coruscates 'k0r@skeIts Ia$ 32A +coruscating 'k0r@skeItIN Ib$ 42A +coruscation ,k0r@'skeISn K6$ 4 +coruscations ,k0r@'skeISnz Kj$ 4 +corv_ee 'kOveI K6$ 2 +corv_ees 'kOveIz Kj$ 2 +corvette kO'vet K6$ 2 +corvettes kO'vets Kj$ 2 +cos k0s K9$ 1 +cos k@z V-$ 1 +cosh k0S H1%,K7% 1 +coshed k0St Hc%,Hd% 1 +cosher 'k@US@R OA% 2 +coshes 'k0SIz Ha%,Kj% 2 +coshing 'k0SIN Hb% 2 +cosier 'k@UzI@R Or% 3 +cosies 'k@UzIz Kj% 2 +cosiest 'k@UzIIst Os% 3 +cosignatories ,k@U'sIgn@t@rIz Kj% 5 +cosignatory ,k@U'sIgn@t@rI K8%,OA% 5 +cosily 'k@UzIlI Pu% 3 +cosine 'k@UsaIn K6% 2 +cosines 'k@UsaInz Kj% 2 +cosiness 'k@UzIn@s L@% 3 +cosmetic k0z'metIk K6%,OA% 3 +cosmetician ,k0zm@'tISn K6% 4 +cosmeticians ,k0zm@'tISnz Kj% 4 +cosmetics k0z'metIks Kj% 3 +cosmic 'k0zmIk OA% 2 +cosmogonies k0z'm0g@nIz Kj$ 4 +cosmogony k0z'm0g@nI K8$ 4 +cosmonaut 'k0zm@nOt K6% 3 +cosmonauts 'k0zm@nOts Kj% 3 +cosmopolitan ,k0zm@'p0lIt@n K6$,OA% 5 +cosmopolitans ,k0zm@'p0lIt@nz Kj$ 5 +cosmos 'k0zm0s Ki% 2 +cosset 'k0sIt H0% 2 +cosseted 'k0sItId Hc%,Hd% 3 +cosseting 'k0sItIN Hb% 3 +cossets 'k0sIts Ha% 2 +cost k0st Ic%,Id%,J0%,M6% 12B,6A +costed 'k0stId Jc%,Jd% 22B,6A +costermonger 'k0st@mVNg@R K6% 4 +costermongers 'k0st@mVNg@z Kj% 4 +costing 'k0stIN Jb%,M6% 22B,6A +costings 'k0stINz Mj% 2 +costive 'k0stIv OA$ 2 +costlier 'k0stlI@R Or% 3 +costliest 'k0stlIIst Os% 3 +costliness 'k0stlIn@s L@% 3 +costly 'k0stlI OD% 2 +costs k0sts Ja%,Mj% 12B,6A +costume 'k0stjum M6% 2 +costumes 'k0stjumz Mj% 2 +costumier k0'stjumI@R K6% 4 +costumiers k0'stjumI@z Kj% 4 +cosy 'k@UzI K8%,OD% 2 +cot k0t K6% 1 +cote k@Ut K6$ 1 +cotenant ,k@U'ten@nt K6% 3 +cotenants ,k@U'ten@nts Kj% 3 +coterie 'k@Ut@rI K6% 3 +coteries 'k@Ut@rIz Kj% 3 +coterminous ,k@U't3mIn@s OA$ 4 +cotes k@Uts Kj$ 1 +cotilion k@'tIlI@n K6$ 4 +cotilions k@'tIlI@nz Kj$ 4 +cotillion k@'tIlI@n K6$ 4 +cotillions k@'tIlI@nz Kj$ 4 +cots k0ts Kj% 1 +cottage 'k0tIdZ K6% 2 +cottages 'k0tIdZIz Kj% 3 +cottar 'k0t@R K6$ 2 +cottars 'k0t@z Kj$ 2 +cotter 'k0t@R K6$ 2 +cotters 'k0t@z Kj$ 2 +cotton 'k0tn I0%,L@% 2 +cotton-cake 'k0tn-keIk L@$ 3 +cotton-plant 'k0tn-plAnt K6% 3 +cotton-plants 'k0tn-plAnts Kj% 3 +cotton-wool ,k0tn-'wUl L@% 3 +cottoned 'k0tnd Ic%,Id% 2 +cottoning 'k0tnIN Ib% 3 +cottons 'k0tnz Ia% 2 +cottontail 'k0tnteIl K6$ 3 +cottontails 'k0tnteIlz Kj$ 3 +cotyledon ,k0tI'lidn K6$ 4 +cotyledons ,k0tI'lidnz Kj$ 4 +couch kaUtS J1%,M7% 12A,6A,14 +couch-grass 'kaUtS-grAs L@% 2 +couchant 'kaUtS@nt OA$ 2 +couched kaUtSt Jc%,Jd% 12A,6A,14 +couches 'kaUtSIz Ja%,Mj% 22A,6A,14 +couchette ku'Set K6% 2 +couchettes ku'Sets Kj% 2 +couching 'kaUtSIN Jb% 22A,6A,14 +cougar 'kug@R K6% 2 +cougars 'kug@z Kj% 2 +cough k0f J0%,K6% 12A,15B +coughed k0ft Jc%,Jd% 12A,15B +coughing 'k0fIN Jb% 22A,15B +coughs k0fs Ja%,Kj% 12A,15B +could kUd Gc* 15 +couldn't 'kUdnt Gg% 2 +couldst kUdst Gc$ 1 +coulter 'k@Ult@R K6$ 2 +coulters 'k@Ult@z Kj$ 2 +council 'kaUnsl K6% 2 +council-board 'kaUnsl-bOd K6$ 3 +council-boards 'kaUnsl-bOdz Kj$ 3 +council-chamber 'kaUnsl-tSeImb@R K6% 4 +council-chambers 'kaUnsl-tSeImb@z Kj% 4 +councillor 'kaUns@l@R K6% 3 +councillors 'kaUns@l@z Kj% 3 +councils 'kaUnslz Kj% 2 +counsel 'kaUnsl H4%,L@% 26A,6B,17 +counselled 'kaUnsld Hc%,Hd% 26A,6B,17 +counselling 'kaUns@lIN Hb% 36A,6B,17 +counsellor 'kaUns@l@R K6% 3 +counsellors 'kaUns@l@z Kj% 3 +counsels 'kaUnslz Ha% 26A,6B,17 +count kaUnt J0%,M6% 12A,2C,3A,6A,14,16B,25 +countable 'kaUnt@bl OA% 3 +countdown 'kaUntdaUn K6% 2 +countdowns 'kaUntdaUnz Kj$ 2 +counted 'kaUntId Jc%,Jd% 22A,2C,3A,6A,14,16B,25 +countenance 'kaUntIn@ns H2%,M6% 36A +countenanced 'kaUntIn@nst Hc%,Hd% 36A +countenances 'kaUntIn@nsIz Ha%,Mj% 46A +countenancing 'kaUntIn@nsIN Hb% 46A +counter 'kaUnt@R J0%,K6%,Pu% 22A,3A,6A,14 +counter- ,kaUnt@R- U-% 2 +counter-example 'kaUnt@r-Ig,zAmpl K6% 5 +counter-examples 'kaUnt@r-Ig,zAmplz Kj% 5 +counter-revolution ,kaUnt@-,rev@'luSn M6% 6 +counter-revolutionaries,kaUnt@-,rev@'luSn@riz Kj% 7 +counter-revolutionary ,kaUnt@-,rev@'luSn@ri K8%,OA% 7 +counter-revolutions ,kaUnt@-,rev@'luSnz Mj% 6 +counteract ,kaUnt@'r&kt H0% 36A +counteracted ,kaUnt@'r&ktId Hc%,Hd% 46A +counteracting ,kaUnt@'r&ktIN Hb% 46A +counteraction ,kaUnt@'r&kSn K6% 4 +counteractions ,kaUnt@'r&kSnz Kj$ 4 +counteracts ,kaUnt@'r&kts Ha% 36A +counterattack 'kaUnt@r@t&k J0%,K6% 4 +counterattacked 'kaUnt@r@t&kt Jc%,Jd% 4 +counterattacking 'kaUnt@r@t&kIN Jb% 5 +counterattacks 'kaUnt@r@t&ks Ja%,Kj% 4 +counterattraction ,kaUnt@r@'tr&kSn K6% 5 +counterattractions ,kaUnt@r@'tr&kSnz Kj% 5 +counterbalance 'kaUnt@b&l@ns K6$ 4 +counterbalance ,kaUnt@'b&l@ns H2% 46A +counterbalanced ,kaUnt@'b&l@nst Hc%,Hd% 46A +counterbalances 'kaUnt@b&l@nsIz Kj$ 5 +counterbalances ,kaUnt@'b&l@nsIz Ha% 56A +counterbalancing ,kaUnt@'b&l@nsIN Hb% 56A +counterblast 'kaUnt@blAst K6% 3 +counterblasts 'kaUnt@blAsts Kj$ 3 +counterclaim 'kaUnt@kleIm K6% 3 +counterclaims 'kaUnt@kleImz Kj% 3 +counterclockwise ,kaUnt@'kl0kwaIz Pu$ 4 +countered 'kaUnt@d Jc%,Jd% 22A,3A,6A,14 +counterespionage ,kaUnt@'respI@nAZ L@% 5 +counterfeit 'kaUnt@fIt H0%,K6%,OA% 36A +counterfeited 'kaUnt@fItId Hc%,Hd% 46A +counterfeiter 'kaUnt@fIt@R K6% 4 +counterfeiters 'kaUnt@fIt@z Kj% 4 +counterfeiting 'kaUnt@fItIN Hb% 46A +counterfeits 'kaUnt@fIts Ha%,Kj% 36A +counterfoil 'kaUnt@foIl K6% 3 +counterfoils 'kaUnt@foIlz Kj% 3 +countering 'kaUnt@rIN Jb% 32A,3A,6A,14 +counterintelligence ,kaUnt@rIn'telIdZ@ns L@% 6 +counterirritant ,kaUnt@'rIrIt@nt K6$ 5 +counterirritants ,kaUnt@'rIrIt@nts Kj$ 5 +countermand ,kaUnt@'mAnd H0% 36A +countermanded ,kaUnt@'mAndId Hc%,Hd% 46A +countermanding ,kaUnt@'mAndIN Hb% 46A +countermands ,kaUnt@'mAndz Ha% 36A +countermine 'kaUnt@maIn J2$,K6$ 3 +countermined 'kaUnt@maInd Jc$,Jd$ 3 +countermines 'kaUnt@maInz Ja$,Kj$ 3 +countermining 'kaUnt@maInIN Jb$ 4 +counteroffer 'kaUnt@r0f@R K6% 4 +counteroffers 'kaUnt@r0f@z Kj% 4 +counterpane 'kaUnt@peIn K6% 3 +counterpanes 'kaUnt@peInz Kj% 3 +counterpart 'kaUnt@pAt K6% 3 +counterparts 'kaUnt@pAts Kj% 3 +counterplot 'kaUnt@pl0t J4$,K6$ 3 +counterplots 'kaUnt@pl0ts Ja$,Kj$ 3 +counterplotted 'kaUnt@pl0tId Jc$,Jd$ 4 +counterplotting 'kaUnt@pl0tIN Jb$ 4 +counterpoint 'kaUnt@poInt M6% 3 +counterpoints 'kaUnt@poInts Mj$ 3 +counterpoise 'kaUnt@poIz H2$,M6$ 3 +counterpoised 'kaUnt@poIzd Hc$,Hd$ 3 +counterpoises 'kaUnt@poIzIz Ha$,Mj$ 4 +counterpoising 'kaUnt@poIzIN Hb$ 4 +counters 'kaUnt@z Ja%,Kj% 22A,3A,6A,14 +countersank 'kaUnt@s&Nk Hc$ 3 +countersign 'kaUnt@saIn H0%,K6% 36A +countersigned 'kaUnt@saInd Hc%,Hd% 36A +countersigning 'kaUnt@saInIN Hb% 46A +countersigns 'kaUnt@saInz Ha%,Kj% 36A +countersink 'kaUnt@sINk H5% 3 +countersinking 'kaUnt@sINkIN Hb$ 4 +countersinks 'kaUnt@sINks Ha$ 3 +countersunk 'kaUnt@sVNk Hd% 3 +countertenor 'kaUnt@ten@R K6% 4 +countertenors 'kaUnt@ten@z Kj% 4 +countervail 'kaUnt@veIl J0$ 32A,6A +countervailed 'kaUnt@veIld Jc$,Jd$ 32A,6A +countervailing 'kaUnt@veIlIN Jb$ 42A,6A +countervails 'kaUnt@veIlz Ja$ 32A,6A +countess 'kaUntIs K7% 2 +countesses 'kaUntIsIz Kj% 3 +counties 'kaUntIz Kj% 2 +counting 'kaUntIN Jb% 22A,2C,3A,6A,14,16B,25 +counting-house 'kaUntIN-haUs K6% 3 +counting-houses 'kaUntIN-haUzIz Kj% 4 +countless 'kaUntl@s OA% 2 +countries 'kVntrIz Mj% 2 +countrified 'kVntrIfaId OA% 3 +country 'kVntrI M8* 2 +country-house ,kVntrI-'haUs K6% 3 +country-houses ,kVntrI-'haUzIz Kj% 4 +country-seat ,kVntrI-'sit K6% 3 +country-seats ,kVntrI-'sits Kj% 3 +countryman 'kVntrIm@n Ki% 3 +countrymen 'kVntrIm@n Kj% 3 +countryside 'kVntrIsaId L@% 3 +countrywoman 'kVntrIwUm@n Ki% 4 +countrywomen 'kVntrIwImIn Kj% 4 +counts kaUnts Ja%,Mj% 12A,2C,3A,6A,14,16B,25 +county 'kaUntI K8% 2 +coup ku K6% 1 +coup d'etat ,ku deI'tA Ki% 3 +coup de grace ,ku d@ 'grAs Ki% 3 +coup_e 'kupeI K6% 2 +coup_es 'kupeIz Kj% 2 +couple 'kVpl J2%,K6% 22A,6A,14 +coupled 'kVpld Jc%,Jd% 22A,6A,14 +couples 'kVplz Ja$,Kj% 22A,6A,14 +couplet 'kVplIt K6% 2 +couplets 'kVplIts Kj% 2 +coupling 'kVplIN Jb$,M6% 22A,6A,14 +couplings 'kVplINz Mj% 2 +coupon 'kup0n K6% 2 +coupons 'kup0nz Kj% 2 +coups kuz Kj% 1 +coups d'etat ,ku deI'tA Kj$ 3 +coups de grace ,ku d@ 'grAs Kj$ 3 +courage 'kVrIdZ L@% 2 +courageous k@'reIdZ@s OA% 3 +courageously k@'reIdZ@slI Pu% 4 +courgette kU@'Zet K6% 2 +courgettes kU@'Zets Kj% 2 +courier 'kUrI@R K6% 3 +couriers 'kUrI@z Kj% 3 +course kOs J2$,M6* 12A,2C,6A +coursed kOst Jc$,Jd$ 12A,2C,6A +courser 'kOs@R K6$ 2 +coursers 'kOs@z Kj$ 2 +courses 'kOsIz Ja$,Mj% 22A,2C,6A +coursing 'kOsIN Jb$,K6$ 22A,2C,6A +coursings 'kOsINz Kj$ 2 +court kOt J0%,M6% 12A,6A +court-card 'kOt-kAd K6% 2 +court-cards 'kOt-kAdz Kj% 2 +court-martial ,kOt-'mASl H0%,Ki% 36A +court-martialed ,kOt-'mASld Hc%,Hd% 36A +court-martialing ,kOt-'mAS@lIN Hb$ 46A +court-martials ,kOt-'mASlz Ha$ 36A +courted 'kOtId Jc%,Jd% 22A,6A +courteous 'k3tI@s OA% 2 +courteously 'k3tI@slI Pu% 3 +courtesan ,kOtI'z&n K6% 3 +courtesans ,kOtI'z&nz Kj% 3 +courtesies 'k3t@sIz Mj% 3 +courtesy 'k3t@sI M8% 3 +courtier 'kOtI@R K6% 3 +courtiers 'kOtI@z Kj% 3 +courting 'kOtIN Jb% 22A,6A +courtlier 'kOtlI@R Or$ 3 +courtliest 'kOtlIIst Os$ 3 +courtliness 'kOtlIn@s L@% 3 +courtly 'kOtlI OD% 2 +courtroom 'kOtrum K6% 2 +courtrooms 'kOtrumz Kj% 2 +courts kOts Ja%,Mj% 12A,6A +courts-martial ,kOts-'mASl Kj$ 3 +courtship 'kOt+SIp M6% 2 +courtships 'kOt+SIps Mj% 2 +courtyard 'kOtjAd K6% 2 +courtyards 'kOtjAdz Kj% 2 +cousin 'kVzn K6% 2 +cousinly 'kVznlI OA$ 3 +cousins 'kVznz Kj% 2 +cove k@Uv K6% 1 +coven 'kVvn K6% 2 +covenant 'kVv@n@nt J0%,K6% 33A,6A,7A,9,14 +covenanted 'kVv@n@ntId Jc%,Jd% 43A,6A,7A,9,14 +covenanting 'kVv@n@ntIN Jb% 43A,6A,7A,9,14 +covenants 'kVv@n@nts Ja%,Kj% 33A,6A,7A,9,14 +covens 'kVvnz Kj% 2 +cover 'kVv@R H0%,M6% 26A,15A,15B +cover-up 'kVv@r-Vp K6% 3 +cover-ups 'kVv@r-Vps Kj% 3 +coverage 'kVv@rIdZ L@% 3 +covered 'kVv@d Hc%,Hd% 26A,15A,15B +covering 'kVv@rIN Hb%,K6%,OA% 36A,15A,15B +coverings 'kVv@rINz Kj% 3 +coverlet 'kVv@lIt K6% 3 +coverlets 'kVv@lIts Kj% 3 +covers 'kVv@z Ha%,Mj% 26A,15A,15B +covert 'kVv@t K6%,OA% 2 +covertly 'kVv@tlI Pu% 3 +coverts 'kVv@ts Kj% 2 +coves k@Uvz Kj% 1 +covet 'kVvIt H0% 26A +coveted 'kVvItId Hc%,Hd% 36A +coveting 'kVvItIN Hb% 36A +covetous 'kVvIt@s OA% 3 +covetously 'kVvIt@slI Pu% 4 +covetousness 'kVvIt@sn@s L@% 4 +covets 'kVvIts Ha% 26A +covey 'kVvI K6% 2 +coveys 'kVvIz Kj% 2 +cow kaU H0%,K6% 16A +coward 'kaU@d K6% 2 +cowardice 'kaU@dIs L@% 3 +cowardly 'kaU@dlI OA% 3 +cowards 'kaU@dz Kj% 2 +cowbell 'kaUbel K6% 2 +cowbells 'kaUbelz Kj% 2 +cowboy 'kaUboI K6% 2 +cowboys 'kaUboIz Kj% 2 +cowcatcher 'kaUk&tS@R K6$ 3 +cowcatchers 'kaUk&tS@z Kj$ 3 +cowed kaUd Hc%,Hd% 16A +cower 'kaU@R I0% 22A,2C +cowered 'kaU@d Ic%,Id% 22A,2C +cowering 'kaU@rIN Ib% 32A,2C +cowers 'kaU@z Ia% 22A,2C +cowhand 'kaUh&nd K6% 2 +cowhands 'kaUh&ndz Kj% 2 +cowherd 'kaUh3d K6% 2 +cowherds 'kaUh3dz Kj% 2 +cowhide 'kaUhaId M6% 2 +cowhides 'kaUhaIdz Kj$ 2 +cowhouse 'kaUhaUs K6$ 2 +cowhouses 'kaUhaUzIz Kj$ 3 +cowing 'kaUIN Hb% 26A +cowl kaUl K6% 1 +cowling 'kaUlIN K6% 2 +cowlings 'kaUlINz Kj$ 2 +cowls kaUlz Kj% 1 +cowman 'kaUm&n Ki% 2 +cowmen 'kaUmen Kj% 2 +cowpox 'kaUp0ks K7% 2 +cowpoxes 'kaUp0ksIz Kj% 3 +cowrie 'kaUrI K6% 2 +cowries 'kaUrIz Kj% 2 +cows kaUz Ha%,Kj% 16A +cowshed 'kaUSed K6% 2 +cowsheds 'kaUSedz Kj% 2 +cowskin 'kaUskIn K6$ 2 +cowskins 'kaUskInz Kj$ 2 +cowslip 'kaUslIp K6% 2 +cowslips 'kaUslIps Kj% 2 +cox k0ks J1%,K7% 12A,6A +coxcomb 'k0ksk@Um K6% 2 +coxcombs 'k0ksk@Umz Kj% 2 +coxed k0kst Jc%,Jd% 12A,6A +coxes 'k0ksIz Ja%,Kj% 22A,6A +coxing 'k0ksIN Jb% 22A,6A +coxswain 'k0ksn K6$ 2 +coxswains 'k0ksnz Kj$ 2 +coy koI OC% 1 +coyer 'koI@R Or% 2 +coyest 'koIIst Os% 2 +coyly 'koIlI Pu% 2 +coyness 'koIn@s L@% 2 +coyote koI'@Ut K6% 2 +coyotes koI'@Uts Kj% 2 +coypu 'koIpu K6% 2 +coypus 'koIpuz Kj% 2 +cozen 'kVzn H0$ 26A,14 +cozened 'kVznd Hc$,Hd$ 26A,14 +cozening 'kVznIN Hb$ 36A,14 +cozens 'kVznz Ha$ 26A,14 +cozier 'k@UzI@R Or% 3 +coziest 'k@UzIIst Os% 3 +cozy 'k@UzI OD% 2 +cp ,si'pi Y~$ 2 +cr^epe kreIp L@% 1 +cr`eche kreIS K6% 1 +cr`eches 'kreISIz Kj% 2 +cr`eme de menthe ,krem d@ 'm0nT L@% 3 +crab kr&b J4%,M6% 1 +crab-apple 'kr&b-&pl K6% 3 +crab-apples 'kr&b-&plz Kj% 3 +crabbed 'kr&bId OA$ 2 +crabbed kr&bd Jc$,Jd$ 1 +crabbing 'kr&bIN Jb% 2 +crabs kr&bz Ja$,Mj% 1 +crack kr&k J0%,K6% 12A,2C,6A,14 +crack-down 'kr&k-daUn K6% 2 +crack-downs 'kr&k-daUnz Kj% 2 +crack-up 'kr&k-Vp K6% 2 +crack-ups 'kr&k-Vps Kj% 2 +cracked kr&kt Jc%,Jd% 12A,2C,6A,14 +cracker 'kr&k@R K6% 2 +crackers 'kr&k@z Kj%,Op% 2 +cracking 'kr&kIN Jb% 22A,2C,6A,14 +crackle 'kr&kl I2%,L@% 22A,2C +crackle-china 'kr&kl-tSaIn@ L@$ 4 +crackled 'kr&kld Ic%,Id% 22A,2C +crackles 'kr&klz Ia% 22A,2C +crackleware 'kr&klwe@R L@$ 3 +crackling 'kr&klIN Ib%,L@% 22A,2C +crackpot 'kr&kp0t K6% 2 +crackpots 'kr&kp0ts Kj% 2 +cracks kr&ks Ja%,Kj% 12A,2C,6A,14 +cracksman 'kr&ksm@n Ki% 2 +cracksmen 'kr&ksm@n Kj% 2 +cradle 'kreIdl H2%,K6% 26A,14 +cradled 'kreIdld Hc%,Hd% 26A,14 +cradles 'kreIdlz Ha%,Kj% 26A,14 +cradling 'kreIdlIN Hb% 26A,14 +craft krAft M6% 1 +craftier 'krAftI@R Or% 3 +craftiest 'krAftIIst Os% 3 +craftily 'krAftIlI Pu% 3 +craftiness 'krAftIn@s L@% 3 +crafts krAfts Mj% 1 +craftsman 'krAftsm@n Ki% 2 +craftsmanship 'krAftm@nSIp L@% 3 +craftsmen 'krAftsm@n Kj% 2 +crafty 'krAftI OD% 2 +crag kr&g K6% 1 +cragged 'kr&gId OA$ 2 +craggier 'kr&gI@R Or$ 3 +craggiest 'kr&gIIst Os$ 3 +craggy 'kr&gI OD% 2 +crags kr&gz Kj% 1 +cragsman 'kr&gzm@n Ki% 2 +cragsmen 'kr&gzm@n Kj% 2 +crake kreIk K6$ 1 +crakes kreIks Kj$ 1 +cram kr&m J4% 12A,6A,14,15B +cram-full kr&m-'fUl OA%,Pu$ 2 +crammed kr&md Jc%,Jd% 12A,6A,14,15B +crammer 'kr&m@R K6% 2 +crammers 'kr&m@z Kj% 2 +cramming 'kr&mIN Jb% 22A,6A,14,15B +cramp kr&mp H0%,M6% 16A +cramp-iron 'kr&mp-aI@n K6$ 3 +cramp-irons 'kr&mp-aI@nz Kj$ 3 +cramped kr&mpt Hc%,Hd%,OA% 16A +cramping 'kr&mpIN Hb% 26A +crampon 'kr&mp0n K6% 2 +crampons 'kr&mp0nz Kj% 2 +cramps kr&mps Ha%,Mj% 16A +crams kr&mz Ja% 12A,6A,14,15B +cranberries 'kr&nb@rIz Kj% 3 +cranberry 'kr&nb@rI K8% 3 +crane kreIn J2%,K6% 12A,2C,6A,16A +crane-flies 'kreIn-flaIz Kj$ 2 +crane-fly 'kreIn-flaI K8$ 2 +craned kreInd Jc%,Jd% 12A,2C,6A,16A +cranes kreInz Ja%,Kj% 12A,2C,6A,16A +cranial 'kreInI@l OA% 3 +craning 'kreInIN Jb% 22A,2C,6A,16A +cranium 'kreInI@m K6% 3 +craniums 'kreInI@mz Kj$ 3 +crank kr&Nk H0%,K6% 16A,15B +cranked kr&Nkt Hc%,Hd% 16A,15B +crankier 'kr&NkI@R Or% 3 +crankiest 'kr&NkIIst Os% 3 +cranking 'kr&NkIN Hb% 26A,15B +cranks kr&Nks Ha%,Kj% 16A,15B +crankshaft 'kr&nkSAft K6% 2 +crankshafts 'kr&nkSAfts Kj% 2 +cranky 'kr&NkI OD% 2 +crannied 'kr&nId OA$ 2 +crannies 'kr&nIz Kj% 2 +cranny 'kr&nI K8% 2 +crap kr&p I4%,M6% 1 +crap-shooting 'kr&p-SutIN K6% 3 +crap-shootings 'kr&p-SutINz Kj$ 3 +crape kreIp L@$ 1 +crapped kr&pt Ic%,Id% 1 +crapping 'kr&pIN Ib% 2 +craps kr&ps Ia%,Lk%,Mj% 1 +crash kr&S J1%,M7%,Pu% 12A,2C,6A +crash-dive 'kr&S-daIv I2%,K6% 2 +crash-dived 'kr&S-daIvd Ic%,Id% 2 +crash-dives 'kr&S-daIvz Ia%,Kj% 2 +crash-diving 'kr&S-daIvIN Ib% 3 +crash-helmet 'kr&S-helmIt K6% 3 +crash-helmets 'kr&S-helmIts Kj% 3 +crash-land kr&S-'l&nd J0% 2 +crash-landed kr&S-'l&ndId Jc%,Jd% 3 +crash-landing kr&S-'l&ndIN Jb%,K6% 3 +crash-landings kr&S-'l&ndINz Kj% 3 +crash-lands kr&S-'l&ndz Ja% 2 +crashed kr&St Jc%,Jd% 12A,2C,6A +crashes 'kr&SIz Ja%,Mj% 22A,2C,6A +crashing 'kr&SIN Jb% 22A,2C,6A +crass kr&s OA% 1 +crate kreIt H2$,K6% 1 +crated 'kreItId Hc$,Hd$ 2 +crater 'kreIt@R K6% 2 +craters 'kreIt@z Kj% 2 +crates kreIts Ha$,Kj% 1 +crating 'kreItIN Hb$ 2 +cravat kr@'v&t K6% 2 +cravats kr@'v&ts Kj% 2 +crave kreIv J2% 12A,3A +craved kreIvd Jc%,Jd% 12A,3A +craven 'kreIvn K6$,OA% 2 +cravens 'kreIvnz Kj$ 2 +craves kreIvz Ja% 12A,3A +craving 'kreIvIN Jb%,K6% 22A,3A +cravings 'kreIvINz Kj% 2 +crawfish 'krOfIS K7$ 2 +crawfishes 'krOfISIz Kj$ 3 +crawl krOl I0%,Ki% 12A,2C +crawled krOld Ic%,Id% 12A,2C +crawler 'krOl@R K6% 2 +crawlers 'krOl@z Kj% 2 +crawling 'krOlIN Ib% 22A,2C +crawls krOlz Ia% 12A,2C +crayfish 'kreIfIS K7% 2 +crayfishes 'kreIfISIz Kj$ 3 +crayon 'kreI@n H0%,K6% 2 +crayoned 'kreI@nd Hc%,Hd% 2 +crayoning 'kreI@nIN Hb% 3 +crayons 'kreI@nz Ha%,Kj% 2 +craze kreIz K6% 1 +crazed kreIzd OA% 1 +crazes 'kreIzIz Kj% 2 +crazier 'kreIzI@R Or% 3 +craziest 'kreIzIIst Os% 3 +crazily 'kreIzIlI Pu% 3 +craziness 'kreIzIn@s L@% 3 +crazy 'kreIzI OD% 2 +creak krik I0%,K6% 1 +creaked krikt Ic%,Id% 1 +creakier 'krikI@R Or% 3 +creakiest 'krikIIst Os% 3 +creakily 'krikIlI Pu% 3 +creaking 'krikIN Ib% 2 +creaks kriks Ia%,Kj% 1 +creaky 'krikI OD% 2 +cream krim H0%,M6% 1 +creamed krimd Hc%,Hd% 1 +creameries 'krim@rIz Kj% 3 +creamery 'krim@rI K8% 3 +creamier 'krimI@R Or% 3 +creamiest 'krimIIst Os% 3 +creaming 'krimIN Hb% 2 +creams krimz Ha%,Mj% 1 +creamy 'krimI OD% 2 +crease kris J2%,K6% 12A,6A +creased krist Jc%,Jd% 12A,6A +creases 'krisIz Ja%,Kj% 22A,6A +creasing 'krisIN Jb% 22A,6A +create kri'eIt H2% 26A,23 +created kri'eItId Hc%,Hd% 36A,23 +creates kri'eIts Ha% 26A,23 +creating kri'eItIN Hb% 36A,23 +creation kri'eISn M6% 3 +creations kri'eISnz Mj% 3 +creative kri'eItIv OA% 3 +creatively kri'eItIvlI Pu% 4 +creativeness kri'eItIvn@s L@% 4 +creator kri'eIt@R K6% 3 +creators kri'eIt@z Kj% 3 +creature 'kritS@R K6% 2 +creatures 'kritS@z Kj% 2 +credence 'kridns L@% 2 +credentials krI'denSlz Kj% 3 +credibility ,kredI'bIlItI L@% 5 +credible 'kred@bl OA% 3 +credibly 'kred@blI Pu% 3 +credit 'kredIt H0%,M6% 26A,14 +credit-side 'kredIt-saId K6% 3 +credit-sides 'kredIt-saIdz Kj$ 3 +credit-worthiness 'kredIt-w3DIn@s L@% 5 +credit-worthy 'kredIt-w3DI OA% 4 +creditable 'kredIt@bl OA% 4 +creditably 'kredIt@blI Pu% 4 +credited 'kredItId Hc%,Hd% 36A,14 +crediting 'kredItIN Hb% 36A,14 +creditor 'kredIt@R K6% 3 +creditors 'kredIt@z Kj% 3 +credits 'kredIts Ha%,Mj% 26A,14 +credo 'krid@U K6% 2 +credos 'krid@Uz Kj% 2 +credulities krI'djulItIz Mj$ 4 +credulity krI'djulItI M8% 4 +credulous 'kredjUl@s OA% 3 +credulously 'kredjUl@slI Pu% 4 +creed krid K6% 1 +creeds kridz Kj% 1 +creek krik K6% 1 +creeks kriks Kj% 1 +creel kril K6$ 1 +creels krilz Kj$ 1 +creep krip I5%,K6% 12A,2B,2C +creeper 'krip@R K6% 2 +creepers 'krip@z Kj% 2 +creepier 'kripI@R Or% 3 +creepiest 'kripIIst Os% 3 +creeping 'kripIN Ib% 22A,2B,2C +creeps krips Ia%,Kj% 12A,2B,2C +creepy 'kripI OD% 2 +cremate krI'meIt H2% 26A +cremated krI'meItId Hc%,Hd% 36A +cremates krI'meIts Ha% 26A +cremating krI'meItIN Hb% 36A +cremation krI'meISn M6% 3 +cremations krI'meISnz Mj% 3 +crematoria ,krem@'tOrI@ Kj% 5 +crematories 'krem@t@rIz Kj$ 4 +crematorium ,krem@'tOrI@m K6% 5 +crematoriums ,krem@'tOrI@mz Kj% 5 +crematory 'krem@t@rI K8$ 4 +crenellated 'kren@leItId OA$ 4 +creosote 'krI@s@Ut L@% 3 +crepe kreIp L@% 1 +crepitate 'krepIteIt I2$ 32A +crepitated 'krepIteItId Ic$,Id$ 42A +crepitates 'krepIteIts Ia$ 32A +crepitating 'krepIteItIN Ib$ 42A +crepitation ,krepI'teISn K6$ 4 +crepitations ,krepI'teISnz Kj$ 4 +crept krept Ic%,Id% 12A,2B,2C +crepuscular krI'pVskjUl@R OA$ 4 +crescendo krI'Send@U K6% 3 +crescendos krI'Send@Uz Kj% 3 +crescent 'kresnt K6% 2 +crescents 'kresnts Kj% 2 +cress kres L@% 1 +crest krest J0%,K6% 1 +crested 'krestId Jc%,Jd%,OA% 2 +crestfallen 'krestfOl@n OA% 3 +cresting 'krestIN Jb% 2 +crests krests Ja%,Kj% 1 +cretaceous krI'teIS@s OA$ 3 +cretin 'kretIn K6% 2 +cretinous 'kretIn@s OA% 3 +cretins 'kretInz Kj% 2 +cretonne 'kret0n L@$ 2 +crevasse krI'v&s K6% 2 +crevasses krI'v&sIz Kj% 3 +crevice 'krevIs K6% 2 +crevices 'krevIsIz Kj% 3 +crew kru I0%,Ic%,K6% 13A,6A +crew-cut 'kru-kVt K6% 2 +crew-cuts 'kru-kVts Kj% 2 +crew-neck 'kru-nek K6$ 2 +crew-necks 'kru-neks Kj$ 2 +crewed krud Ic%,Id% 13A,6A +crewing 'kruIN Ib% 23A,6A +crews kruz Ia%,Kj% 13A,6A +crib krIb J4%,K6% 1 +cribbage 'krIbIdZ L@% 2 +cribbage-board 'krIbIdZ-bOd K6% 3 +cribbage-boards 'krIbIdZ-bOdz Kj% 3 +cribbed krIbd Jc%,Jd% 1 +cribbing 'krIbIN Jb% 2 +cribs krIbz Ja%,Kj% 1 +crick krIk H0%,K6% 1 +cricked krIkt Hc%,Hd% 1 +cricket 'krIkIt M6% 2 +cricketer 'krIkIt@R K6% 3 +cricketers 'krIkIt@z Kj% 3 +crickets 'krIkIts Mj% 2 +cricking 'krIkIN Hb% 2 +cricks krIks Ha%,Kj% 1 +cried kraId Jc%,Jd% 12A,2B,2C,3A,4A,6A,9,14,15A,15B +crier 'kraI@R K6% 2 +criers 'kraI@z Kj% 2 +cries kraIz Ja%,Kj% 12A,2B,2C,3A,4A,6A,9,14,15A,15B +crikey 'kraIkI W-% 2 +crime kraIm H2$,M6% 1 +crimed kraImd Hc$,Hd$ 1 +crimes kraImz Ha$,Mj% 1 +criminal 'krImInl K6%,OA% 3 +criminally 'krImIn@lI Pu% 4 +criminals 'krImInlz Kj% 3 +criming 'kraImIN Hb$ 2 +criminology ,krImI'n0l@dZI L@% 5 +crimp krImp H0% 1 +crimped krImpt Hc%,Hd% 1 +crimping 'krImpIN Hb% 2 +crimps krImps Ha% 1 +crimson 'krImzn J0%,M6%,OA% 2 +crimsoned 'krImznd Jc%,Jd% 2 +crimsoning 'krImznIN Jb% 3 +crimsons 'krImznz Ja%,Mj% 2 +cringe krIndZ I2% 12A,2C +cringed krIndZd Ic%,Id% 12A,2C +cringes 'krIndZIz Ia% 22A,2C +cringing 'krIndZIN Ib% 22A,2C +crinkle 'krINkl J2%,K6% 22A,2C,6A,15B +crinkled 'krINkld Jc%,Jd% 22A,2C,6A,15B +crinkles 'krINklz Ja%,Kj% 22A,2C,6A,15B +crinklier 'krINklI@R Or% 3 +crinkliest 'krINklIIst Os% 3 +crinkling 'krINklIN Jb% 22A,2C,6A,15B +crinkly 'krINklI OD% 2 +crinoline 'krIn@lIn M6% 3 +crinolines 'krIn@lInz Mj% 3 +cripes kraIps W-$ 1 +cripple 'krIpl H2%,K6% 26A +crippled 'krIpld Hc%,Hd% 26A +cripples 'krIplz Ha%,Kj% 26A +crippling 'krIplIN Hb% 26A +crises 'kraIsiz Kj% 2 +crisis 'kraIsIs Ki% 2 +crisp krIsp J0%,K6%,OC% 1 +crisped krIspt Jc%,Jd% 1 +crisper 'krIsp@R Or% 2 +crispest 'krIspIst Os% 2 +crisping 'krIspIN Jb% 2 +crisply 'krIsplI Pu% 2 +crispness 'krIspn@s L@% 2 +crisps krIsps Ja%,Kj% 1 +crisscross 'krIskr0s J1%,OA%,Pu% 2 +crisscrossed 'krIskr0st Jc%,Jd% 2 +crisscrosses 'krIskr0sIz Ja% 3 +crisscrossing 'krIskr0sIN Jb% 3 +criteria kraI'tI@rI@ Kj% 4 +criterion kraI'tI@rI@n K6% 4 +criterions kraI'tI@rI@nz Kj$ 4 +critic 'krItIk K6% 2 +critical 'krItIkl OA% 3 +critically 'krItIklI Pu% 3 +criticism 'krItIsIz@m M6% 4 +criticisms 'krItIsIz@mz Mj% 4 +criticize 'krItIsaIz J2% 32A,6A,14 +criticized 'krItIsaIzd Jc%,Jd% 32A,6A,14 +criticizes 'krItIsaIzIz Ja% 42A,6A,14 +criticizing 'krItIsaIzIN Jb% 42A,6A,14 +critics 'krItIks Kj% 2 +critique krI'tik K6% 2 +critiques krI'tiks Kj% 2 +croak kr@Uk J0%,K6% 12A,6A,15B +croaked kr@Ukt Jc%,Jd% 12A,6A,15B +croaking 'kr@UkIN Jb% 22A,6A,15B +croaks kr@Uks Ja%,Kj% 12A,6A,15B +crochet 'kr@USeI J0%,L@% 22A,6A +crochet-hook 'kr@USeI-hUk K6% 3 +crochet-hooks 'kr@USeI-hUks Kj% 3 +crocheted 'kr@USeId Jc%,Jd% 22A,6A +crocheting 'kr@USeIIN Jb% 32A,6A +crochets 'kr@USeIz Ja% 22A,6A +crock kr0k J0$,K6% 12C,15B +crocked kr0kt Jc$,Jd$ 12C,15B +crockery 'kr0k@rI L@% 3 +crocking 'kr0kIN Jb$ 22C,15B +crocks kr0ks Ja$,Kj% 12C,15B +crocodile 'kr0k@daIl K6% 3 +crocodiles 'kr0k@daIlz Kj% 3 +crocus 'kr@Uk@s K7% 2 +crocuses 'kr@Uk@sIz Kj% 3 +croft kr0ft K6% 1 +crofter 'kr0ft@R K6% 2 +crofters 'kr0ft@z Kj% 2 +crofts kr0fts Kj% 1 +cromlech 'kr0mlek K6$ 2 +cromlechs 'kr0mleks Kj$ 2 +crone kr@Un K6% 1 +crones kr@Unz Kj% 1 +cronies 'kr@UnIz Kj% 2 +crony 'kr@UnI K8% 2 +crook krUk J0%,K6% 12A,6A +crook-back 'krUk-b&k OA$ 2 +crook-backed 'krUk-b&kt OA$ 2 +crooked 'krUkId OA% 2 +crooked krUkt Jc%,Jd% 12A,6A +crookedly 'krUkIdlI Pu% 3 +crookedness 'krUkIdn@s L@% 3 +crooking 'krUkIN Jb% 22A,6A +crooks krUks Ja%,Kj% 12A,6A +croon krun J0% 12C,6A,13A,15A +crooned krund Jc%,Jd% 12C,6A,13A,15A +crooner 'krun@R K6% 2 +crooners 'krun@z Kj% 2 +crooning 'krunIN Jb% 22C,6A,13A,15A +croons krunz Ja% 12C,6A,13A,15A +crop kr0p J4%,K6% 12A,2C,6A,14,22 +crop-dusting 'kr0p-dVstIN L@% 3 +cropped kr0pt Jc%,Jd% 12A,2C,6A,14,22 +cropper 'kr0p@R K6% 2 +croppers 'kr0p@z Kj$ 2 +cropping 'kr0pIN Jb% 22A,2C,6A,14,22 +crops kr0ps Ja%,Kj% 12A,2C,6A,14,22 +croquet 'kr@UkeI L@% 2 +croquette kr@U'ket K6% 2 +croquettes kr@U'kets Kj% 2 +crore krOR K6$ 1 +crores krOz Kj$ 1 +crosier 'kr@UzI@R K6$ 3 +crosiers 'kr@UzI@z Kj$ 3 +cross kr0s J1%,K7%,OA% 12A,2C,6A,14,15A,15B +cross-bench 'kr0s-bentS K7% 2 +cross-bencher 'kr0s-bentS@R K6% 3 +cross-benchers 'kr0s-bentS@z Kj% 3 +cross-benches 'kr0s-bentSIz Kj% 3 +cross-division ,kr0s-dI'vIzn M6$ 4 +cross-divisions ,kr0s-dI'vIznz Mj$ 4 +cross-examination ,kr0s-Ig,z&mI'neISn K6% 6 +cross-examinations ,kr0s-Ig,z&mI'neISnz Kj% 6 +cross-examine ,kr0s-Ig'z&mIn H2% 46A +cross-examined ,kr0s-Ig'z&mInd Hc%,Hd% 46A +cross-examiner ,kr0s-Ig'z&mIn@R K6% 5 +cross-examiners ,kr0s-Ig'z&mIn@z Kj% 5 +cross-examines ,kr0s-Ig'z&mInz Ha% 46A +cross-examining ,kr0s-Ig'z&mInIN Hb% 56A +cross-fertilization ,kr0s-,f3t@laI'zeISn K6% 6 +cross-fertilizations ,kr0s-,f3t@laI'zeISnz Kj% 6 +cross-fertilize ,kr0s-'f3t@laIz H2% 4 +cross-fertilized ,kr0s-'f3t@laIzd Hc%,Hd% 4 +cross-fertilizes ,kr0s-'f3t@laIzIz Ha% 5 +cross-fertilizing ,kr0s-'f3t@laIzIN Hb% 5 +cross-grained ,kr0s-'greInd OA% 2 +cross-heading ,kr0s-'hedIN K6% 3 +cross-headings ,kr0s-'hedINz Kj% 3 +cross-index ,kr0s-'Indeks H1%,K7% 3 +cross-indexed ,kr0s-'Indekst Hc%,Hd% 3 +cross-indexes ,kr0s-'IndeksIz Ha%,Kj% 4 +cross-indexing ,kr0s-'IndeksIN Hb% 4 +cross-indices ,kr0s-'IndIsiz Kj$ 4 +cross-legged ,kr0s-'legd Pu% 2 +cross-purposes ,kr0s-'p3p@sIz Kj% 4 +cross-question ,kr0s-'kwestS@n H0% 36A +cross-questioned ,kr0s-'kwestS@nd Hc%,Hd% 36A +cross-questioning ,kr0s-'kwestS@nIN Hb% 46A +cross-questions ,kr0s-'kwestS@nz Ha% 36A +cross-reference ,kr0s-'ref@r@ns K6% 4 +cross-references ,kr0s-'ref@r@nsIz Kj% 5 +cross-section ,kr0s-'sekSn K6% 3 +cross-sections ,kr0s-'sekSnz Kj% 3 +cross-stitch 'kr0s-stItS M7% 2 +cross-stitches 'kr0s-stItSIz Mj% 3 +crossbar 'kr0sbAR K6% 2 +crossbars 'kr0sbAz Kj% 2 +crossbeam 'kr0sbim K6$ 2 +crossbeams 'kr0sbimz Kj$ 2 +crossbones 'kr0sb@Unz Kj% 2 +crossbow 'kr0sb@U K6% 2 +crossbows 'kr0sb@Uz Kj% 2 +crossbred 'kr0sbred Hc%,Hd%,OA% 22A,6A +crossbreed 'kr0sbrid H5%,K6% 22A,6A +crossbreeding 'kr0sbridIN Hb% 32A,6A +crossbreeds 'kr0sbridz Ha%,Kj% 22A,6A +crosscheck ,kr0s'tSek J0%,K6% 22A,6A +crosschecked ,kr0s'tSekt Jc%,Jd% 22A,6A +crosschecking ,kr0s'tSekIN Jb% 32A,6A +crosschecks ,kr0s'tSeks Ja%,Kj% 22A,6A +crosscountry ,kr0s'kVntrI OA%,Pu% 3 +crosscurrent 'kr0skVr@nt K6% 3 +crosscurrents 'kr0skVr@nts Kj% 3 +crosscut 'kr0skVt K6%,OA% 2 +crosscuts 'kr0skVts Kj% 2 +crosse kr0s K6$ 1 +crossed kr0st Jc%,Jd% 12A,2C,6A,14,15A,15B +crosses 'kr0sIz Ja%,Kj% 22A,2C,6A,14,15A,15B +crosseyed 'kr0saId OA% 2 +crossfire 'kr0sfaI@R M6% 2 +crossfires 'kr0sfaI@z Mj$ 2 +crossing 'kr0sIN Jb%,M6% 22A,2C,6A,14,15A,15B +crossings 'kr0sINz Mj% 2 +crosskeys ,kr0s'kiz Kj$ 2 +crossly 'kr0slI Pu% 2 +crossness 'kr0sn@s L@% 2 +crosspatch 'kr0sp&tS K7% 2 +crosspatches 'kr0sp&tSIz Kj% 3 +crosspiece 'kr0spis K6% 2 +crosspieces 'kr0spisIz Kj% 3 +crossroad 'kr0sr@Ud K6% 2 +crossroads 'kr0sr@Udz Kj% 2 +crosstalk 'kr0stOk L@% 2 +crosstrees 'kr0striz Kj% 2 +crosswalk 'kr0swOk K6$ 2 +crosswalks 'kr0swOks Kj$ 2 +crosswind 'kr0swInd K6% 2 +crosswinds 'kr0swIndz Kj% 2 +crosswise 'kr0swaIz Pu% 2 +crossword 'kr0sw3d K6% 2 +crosswords 'kr0sw3dz Kj% 2 +crotch kr0tS K7% 1 +crotches 'kr0tSIz Kj% 2 +crotchet 'kr0tSIt K6% 2 +crotchets 'kr0tSIts Kj% 2 +crotchety 'kr0tSItI OA% 3 +crouch kraUtS I1%,K7% 12A,2C,4A +crouched kraUtSt Ic%,Id% 12A,2C,4A +crouches 'kraUtSIz Ia%,Kj% 22A,2C,4A +crouching 'kraUtSIN Ib% 22A,2C,4A +croup krup M6% 1 +croupier 'krupIeI K6% 3 +croupiers 'krupIeIz Kj% 3 +croups krups Mj$ 1 +crow kr@U I0%,K6% 13A,6A +crow's-feet 'kr@Uz-fit Kj% 2 +crow's-nest 'kr@Uz-nest K6% 2 +crow's-nests 'kr@Uz-nests Kj% 2 +crowbar 'kr@UbAR K6% 2 +crowbars 'kr@UbAz Kj% 2 +crowd kraUd J0%,K6% 12B,2C,6A,14,15A,15B +crowded 'kraUdId Jc%,Jd%,OA% 22B,2C,6A,14,15A,15B +crowding 'kraUdIN Jb% 22B,2C,6A,14,15A,15B +crowds kraUdz Ja%,Kj% 12B,2C,6A,14,15A,15B +crowed kr@Ud Ic%,Id% 13A,6A +crowing 'kr@UIN Ib% 23A,6A +crown kraUn H0%,K6% 16A,14,23 +crown-land 'kraUn-l&nd K6% 2 +crown-lands 'kraUn-l&ndz Kj% 2 +crowned kraUnd Hc%,Hd% 16A,14,23 +crowning 'kraUnIN Hb%,OA% 26A,14,23 +crowns kraUnz Ha%,Kj% 16A,14,23 +crows kr@Uz Ia%,Kj% 13A,6A +crozier 'kr@UzI@R K6$ 3 +croziers 'kr@UzI@z Kj$ 3 +crucial 'kruSl OA% 2 +crucially 'kruS@lI Pu% 3 +crucible 'krusIbl K6% 3 +crucibles 'krusIblz Kj% 3 +crucified 'krusIfaId Hc%,Hd% 3 +crucifies 'krusIfaIz Ha% 3 +crucifix 'krusIfIks K7% 3 +crucifixes 'krusIfIksIz Kj% 4 +crucifixion ,krusI'fIkSn M6% 4 +crucifixions ,krusI'fIkSnz Mj% 4 +cruciform 'krusIfOm OA$ 3 +crucify 'krusIfaI H3% 3 +crucifying 'krusIfaIIN Hb% 4 +crude krud OB% 1 +crudely 'krudlI Pu% 2 +crudeness 'krudnIs L@% 2 +cruder 'krud@R Or% 2 +crudest 'krudIst Os% 2 +crudities 'krudItIz Mj% 3 +crudity 'krudItI M8% 3 +cruel krU@l OE% 2 +crueller 'krU@l@R Or% 3 +cruellest 'krU@lIst Os% 3 +cruelly 'krU@lI Pu% 3 +cruelties 'kru@ltIz Mj% 3 +cruelty 'kru@ltI M8% 3 +cruet 'kruIt K6% 2 +cruet-stand 'kruIt-st&nd K6$ 3 +cruet-stands 'kruIt-st&ndz Kj$ 3 +cruets 'kruIts Kj$ 2 +cruise kruz I2%,K6% 12A,2C +cruised kruzd Ic%,Id% 12A,2C +cruiser 'kruz@R K6% 2 +cruisers 'kruz@z Kj% 2 +cruises 'kruzIz Ia%,Kj% 22A,2C +cruising 'kruzIN Ib% 22A,2C +crumb krVm M6% 1 +crumble 'krVmbl J2% 22A,2C,6A +crumbled 'krVmbld Jc%,Jd% 22A,2C,6A +crumbles 'krVmblz Ja% 22A,2C,6A +crumblier 'krVmblI@R Or% 3 +crumbliest 'krVmblIIst Os% 3 +crumbling 'krVmblIN Jb% 22A,2C,6A +crumbly 'krVmblI OD% 2 +crumbs krVmz Mj% 1 +crumpet 'krVmpIt K6% 2 +crumpets 'krVmpIts Kj% 2 +crumple 'krVmpl J2% 22A,2C,6A,15B +crumpled 'krVmpld Jc%,Jd% 22A,2C,6A,15B +crumples 'krVmplz Ja% 22A,2C,6A,15B +crumpling 'krVmplIN Jb% 22A,2C,6A,15B +crunch krVntS J1%,K7% 12A,2C,6A +crunched krVntSt Jc%,Jd% 12A,2C,6A +crunches 'krVntSIz Ja%,Kj% 22A,2C,6A +crunching 'krVntSIN Jb% 22A,2C,6A +crupper 'krVp@R K6$ 2 +cruppers 'krVp@z Kj$ 2 +crusade kru'seId I2%,K6% 22A,3A +crusaded kru'seIdId Ic%,Id% 32A,3A +crusader kru'seId@R K6% 3 +crusaders kru'seId@z Kj% 3 +crusades kru'seIdz Ia%,Kj% 22A,3A +crusading kru'seIdIN Ib% 32A,3A +cruse kruz K6$ 1 +cruses 'kruzIz Kj$ 2 +crush krVS J1%,L@% 12A,2C,6A,15A,15B +crushed krVSt Jc%,Jd% 12A,2C,6A,15A,15B +crushes 'krVSIz Ja% 22A,2C,6A,15A,15B +crushing 'krVSIN Jb%,OA% 22A,2C,6A,15A,15B +crushingly 'krVSINlI Pu% 3 +crust krVst J0%,M6% 12A,2C,6A +crustacean krV'steISn K6% 3 +crustaceans krV'steISnz Kj% 3 +crusted 'krVstId Jc%,Jd%,OA% 22A,2C,6A +crustier 'krVstI@R Or% 3 +crustiest 'krVstIIst Os% 3 +crusting 'krVstIN Jb% 22A,2C,6A +crusts krVsts Ja%,Mj% 12A,2C,6A +crusty 'krVstI OD% 2 +crutch krVtS K7% 1 +crutches 'krVtSIz Kj% 2 +crux krVks K7% 1 +cruxes 'krVksIz Kj$ 2 +cruzeiro kru'ze@r@U K6$ 3 +cruzeiros kru'ze@r@Uz Kj$ 3 +cry kraI J3%,K8% 12A,2B,2C,3A,4A,6A,9,14,15A,15B +crybabies 'kraIbeIbIz Kj% 3 +crybaby 'kraIbeIbI K8% 3 +crying 'kraIIN Jb%,Oq% 22A,2B,2C,3A,4A,6A,9,14,15A,15B +crypt krIpt K6% 1 +cryptic 'krIptIk OA% 2 +cryptically 'krIptIklI Pu% 3 +crypto- ,krIpt@U- U-% 2 +cryptogram 'krIpt@gr&m K6% 3 +cryptograms 'krIpt@gr&mz Kj% 3 +crypts krIpts Kj% 1 +crystal 'krIstl M6% 2 +crystal-gazing 'krIst@l-geIzIN L@% 4 +crystalline 'krIst@laIn OA% 3 +crystallization ,krIst@laI'zeISn M6% 5 +crystallizations ,krIst@laI'zeISnz Mj$ 5 +crystallize 'krIst@laIz J2% 32A,6A +crystallized 'krIst@laIzd Jc%,Jd% 32A,6A +crystallizes 'krIst@laIzIz Ja% 42A,6A +crystallizing 'krIst@laIzIN Jb% 42A,6A +crystallography ,krIst@'l0gr@fI L@% 5 +crystals 'krIstlz Mj% 2 +cub kVb K6% 1 +cubbyhole 'kVbIh@Ul K6% 3 +cubbyholes 'kVbIh@Ulz Kj% 3 +cube kjub H2%,K6% 16A +cubed kjubd Hc%,Hd% 16A +cubes kjubz Ha%,Kj% 16A +cubic 'kjubIk OA% 2 +cubical 'kjubIkl OA$ 3 +cubicle 'kjubIkl K6% 3 +cubicles 'kjubIklz Kj% 3 +cubing 'kjubIN Hb% 26A +cubism 'kjubIz@m L@% 3 +cubist 'kjubIst K6% 2 +cubists 'kjubIsts Kj% 2 +cubit 'kjubIt K6$ 2 +cubits 'kjubIts Kj$ 2 +cubs kVbz Kj% 1 +cuckold 'kVk@Uld H0%,K6% 26A +cuckolded 'kVk@UldId Hc%,Hd% 36A +cuckolding 'kVk@UldIN Hb% 36A +cuckolds 'kVk@Uldz Ha%,Kj% 26A +cuckoo 'kUku K6% 2 +cuckoo-clock 'kUku-kl0k K6% 3 +cuckoo-clocks 'kUku-kl0ks Kj% 3 +cuckoos 'kUkuz Kj% 2 +cucumber 'kjukVmb@R M6% 3 +cucumbers 'kjukVmb@z Mj% 3 +cud kVd L@% 1 +cuddle 'kVdl J2%,K6% 22C,6A,15B +cuddled 'kVdld Jc%,Jd% 22C,6A,15B +cuddles 'kVdlz Ja%,Kj% 22C,6A,15B +cuddlesome 'kVdls@m OA% 3 +cuddlier 'kVdlI@R Or% 3 +cuddliest 'kVdlIIst Os% 3 +cuddling 'kVdlIN Jb% 22C,6A,15B +cuddly 'kVdlI OD% 2 +cudgel 'kVdZ@l H0%,K6% 2 +cudgeled 'kVdZ@ld Hc%,Hd% 2 +cudgeling 'kVdZ@lIN Hb% 3 +cudgels 'kVdZ@lz Ha%,Kj% 2 +cue kju K6% 1 +cues kjuz Kj% 1 +cuff kVf H0%,K6% 1 +cuff-links 'kVf-lINks Kj% 2 +cuffed kVft Hc%,Hd% 1 +cuffing 'kVfIN Hb% 2 +cuffs kVfs Ha%,Kj% 1 +cuirass kwI'r&s K7$ 2 +cuirasses kwI'r&sIz Kj$ 3 +cuirassier ,kwIr@'sI@R K6$ 4 +cuirassiers ,kwIr@'sI@z Kj$ 4 +cuisine kwI'zin L@% 2 +cul-de-sac 'kVl-d@-s&k K6% 3 +cul-de-sacs 'kVl-d@-s&ks Kj% 3 +culinary 'kVlIn@rI OA% 4 +cull kVl H0%,K6% 16A +culled kVld Hc%,Hd% 16A +cullender 'kVl@nd@R K6$ 3 +cullenders 'kVl@nd@z Kj$ 3 +culling 'kVlIN Hb% 26A +culls kVlz Ha%,Kj% 16A +culminate 'kVlmIneIt H2% 33A +culminated 'kVlmIneItId Hc%,Hd% 43A +culminates 'kVlmIneIts Ha% 33A +culminating 'kVlmIneItIN Hb% 43A +culmination ,kVlmI'neISn K6% 4 +culminations ,kVlmI'neISnz Kj$ 4 +culpability ,kVlp@'bIlItI L@% 5 +culpable 'kVlp@bl OA% 3 +culpably 'kVlp@blI Pu% 3 +culprit 'kVlprIt K6% 2 +culprits 'kVlprIts Kj% 2 +cult kVlt K6% 1 +cultivable 'kVltIv@bl OA% 4 +cultivate 'kVltIveIt H2% 36A +cultivated 'kVltIveItId Hc%,Hd%,OA% 46A +cultivates 'kVltIveIts Ha% 36A +cultivating 'kVltIveItIN Hb% 46A +cultivation ,kVltI'veISn L@% 4 +cultivator 'kVltIveIt@R K6% 4 +cultivators 'kVltIveIt@z Kj% 4 +cults kVlts Kj% 1 +cultural 'kVltS@r@l OA% 3 +culture 'kVltS@R M6% 2 +cultured 'kVltS@d OA% 2 +cultures 'kVltS@z Mj% 2 +culvert 'kVlv@t K6% 2 +culverts 'kVlv@ts Kj% 2 +cumber 'kVmb@R H0$ 26A,14 +cumbered 'kVmb@d Hc%,Hd% 26A,14 +cumbering 'kVmb@rIN Hb$ 36A,14 +cumbers 'kVmb@z Ha$ 26A,14 +cumbersome 'kVmb@s@m OA% 3 +cumbrous 'kVmbr@s OA$ 2 +cummerbund 'kVm@bVnd K6$ 3 +cummerbunds 'kVm@bVndz Kj$ 3 +cumulative 'kjumjUl@tIv OA% 4 +cumulatively 'kjumjUl@tIvlI Pu% 5 +cumuli 'kjumjUlaI Kj$ 3 +cumulus 'kjumjUl@s Ki% 3 +cuneiform 'kjunIfOm OA$ 3 +cunning 'kVnIN L@%,OA% 2 +cunningly 'kVnINlI Pu% 3 +cunt kVnt K6% 1 +cunts kVnts Kj% 1 +cup kVp H4%,K6% 16A +cup-bearer 'kVp-be@r@R K6% 3 +cup-bearers 'kVp-be@r@z Kj% 3 +cup-final kVp-'faInl K6% 3 +cup-finals kVp-'faInlz Kj% 3 +cup-tie 'kVp-taI K6% 2 +cup-ties 'kVp-taIz Kj% 2 +cupboard 'kVb@d K6% 2 +cupboard-love 'kVb@d-lVv L@% 3 +cupboards 'kVb@dz Kj% 2 +cupful 'kVpfUl K6% 2 +cupfuls 'kVpfUlz Kj% 2 +cupidity kju'pIdItI L@$ 4 +cupola 'kjup@l@ K6$ 3 +cupolas 'kjup@l@z Kj$ 3 +cuppa 'kVp@ K6% 2 +cuppas 'kVp@z Kj% 2 +cupped kVpt Hc%,Hd% 16A +cupping 'kVpIN Hb%,L@% 26A +cupric 'kjuprIk OA$ 2 +cupro-nickel ,kjupr@U-'nIkl L@$ 4 +cups kVps Ha%,Kj% 16A +cur k3R K6% 1 +cur_e 'kjU@reI K6$ 2 +cur_es 'kjU@reIz Kj$ 2 +cura$ 3 +etc et'setr@ Y~% 3 +etch etS J1% 12A,6A +etched etSt Jc%,Jd% 12A,6A +etcher 'etS@R K6% 2 +etchers 'etS@z Kj% 2 +etches 'etSIz Ja% 22A,6A +etching 'etSIN Jb%,M6% 22A,6A +etchings 'etSINz Mj% 2 +etd ,i,ti'di Y>$ 3 +eternal I't3nl OA% 3 +eternally I't3n@lI Pu% 4 +eternities I't3nItIz Mj% 4 +eternity I't3nItI M8% 4 +ether 'iT@R L@$ 2 +ethereal I'TI@rI@l OA$ 4 +ethic 'eTIk Ki% 2 +ethical 'eTIkl OA% 3 +ethically 'eTIklI Pu% 3 +ethics 'eTIks Lk% 2 +ethnic 'eTnIk OA% 2 +ethnically 'eTnIklI Pu% 3 +ethnographer eT'n0gr@f@R K6% 4 +ethnographers eT'n0gr@f@z Kj% 4 +ethnographic ,eTn@'gr&fIk OA% 4 +ethnography eT'n0gr@fI L@% 4 +ethnological ,eTn@'l0dZIkl OA% 5 +ethnologist eT'n0l@dZIst K6% 4 +ethnologists eT'n0l@dZIsts Kj% 4 +ethnology eT'n0l@dZI L@% 4 +ethos 'iT0s Ki% 2 +ethyl 'eTIl M6$ 2 +ethyls 'eTIlz Mj$ 2 +etiologies ,itI'0l@dZIz Kj$ 5 +etiology ,itI'0l@dZI K8$ 5 +etiquette 'etIket L@% 3 +etymological ,etIm@'l0dZIkl OA% 6 +etymologies ,etI'm0l@dZIz Mj% 5 +etymologist ,etI'm0l@dZIst K6% 5 +etymologists ,etI'm0l@dZIsts Kj% 5 +etymology ,etI'm0l@dZI M8% 5 +eucalyptus ,juk@'lIpt@s K7% 4 +eucalyptuses ,juk@'lIpt@sIz Kj% 5 +eugenics ju'dZenIks Lk% 3 +eulogies 'jul@dZIz Mj% 3 +eulogist 'jul@dZIst K6$ 3 +eulogistic ,jul@'dZIstIk OA$ 4 +eulogists 'jul@dZIsts Kj$ 3 +eulogize 'jul@dZaIz H2% 36A +eulogized 'jul@dZaIzd Hc%,Hd% 36A +eulogizes 'jul@dZaIzIz Ha% 46A +eulogizing 'jul@dZaIzIN Hb% 46A +eulogy 'jul@dZI M8% 3 +eunuch 'jun@k K6% 2 +eunuchs 'jun@ks Kj% 2 +euphemism 'juf@mIz@m M6% 4 +euphemisms 'juf@mIz@mz Mj% 4 +euphemistic ,juf@'mIstIk OA% 4 +euphemistically ,juf@'mIstIklI Pu% 5 +euphonies 'juf@nIz Mj$ 3 +euphonium ju'f@UnI@m K6% 4 +euphoniums ju'f@UnI@mz Kj% 4 +euphony 'juf@nI M8$ 3 +euphoria ju'fOrI@ L@% 4 +euphoric ju'f0rIk OA% 3 +euphuism 'jufjuIz@m K6$ 4 +euphuisms 'jufjuIz@mz Kj$ 4 +eureka jU@'rik@ W-% 3 +eurhythmics ju'rIDmIks Lk$ 3 +eurythmics ju'rIDmIks Lk$ 3 +euthanasia ,juT@'neIzI@ L@% 5 +evacuate I'v&kjUeIt H2% 46A,14 +evacuated I'v&kjUeItId Hc%,Hd% 56A,14 +evacuates I'v&kjUeIts Ha% 46A,14 +evacuating I'v&kjUeItIN Hb% 56A,14 +evacuation I,v&kjU'eISn M6% 5 +evacuations I,v&kjU'eISnz Mj% 5 +evacuee I,v&kju'i K6% 4 +evacuees I,v&kju'iz Kj% 4 +evade I'veId H2% 26A,6C +evaded I'veIdId Hc%,Hd% 36A,6C +evades I'veIdz Ha% 26A,6C +evading I'veIdIN Hb% 36A,6C +evaluate I'v&ljUeIt H2% 46A +evaluated I'v&ljUeItId Hc%,Hd% 56A +evaluates I'v&ljUeIts Ha% 46A +evaluating I'v&ljUeItIN Hb% 56A +evaluation I,v&ljU'eISn K6% 5 +evaluations I,v&ljU'eISnz Kj% 5 +evaluative I'v&ljU@tIv OA% 5 +evanescence ,iv@'nesns L@$ 4 +evanescent ,iv@'nesnt OA$ 4 +evangelical ,iv&n'dZelIkl OA% 5 +evangelicalism ,iv&n'dZelIk@lIz@m L@% 7 +evangelism I'v&ndZ@lIz@m L@% 5 +evangelist I'v&ndZ@lIst K6% 4 +evangelistic I,v&ndZ@'lIstIk OA% 5 +evangelists I'v&ndZ@lIsts Kj% 4 +evaporate I'v&p@reIt J2% 42A,6A +evaporated I'v&p@reItId Jc%,Jd% 52A,6A +evaporates I'v&p@reIts Ja% 42A,6A +evaporating I'v&p@reItIN Jb% 52A,6A +evaporation I,v&p@'reISn M6% 5 +evaporations I,v&p@'reISnz Mj% 5 +evasion I'veIZn M6% 3 +evasions I'veIZnz Mj% 3 +evasive I'veIsIv OA% 3 +evasively I'veIsIvlI Pu% 4 +evasiveness I'veIsIvn@s L@% 4 +eve iv K6% 1 +even 'ivn H0%,K6%,OA*,Pu* 26A,15B +even-handed ,ivn-'h&ndId OA% 4 +evened 'ivnd Hc%,Hd% 26A,15B +evening 'ivnIN Hb%,M6% 26A,15B +evenings 'ivnINz Mj% 2 +evenly 'ivnlI Pu% 3 +evenness 'ivn+n@s L@% 3 +evens 'ivnz Ha%,Kj% 26A,15B +evensong 'ivns0N K6% 3 +evensongs 'ivns0Nz Kj$ 3 +event I'vent K6% 2 +eventful I'ventf@l OA% 3 +eventide 'ivntaId L@% 3 +events I'vents Kj% 2 +eventual I'ventSU@l OA% 4 +eventualities I,ventSU'&lItIz Kj% 6 +eventuality I,ventSU'&lItI K8% 6 +eventually I'ventSU@lI Pu% 5 +ever 'ev@R Pu* 2 +evergreen 'ev@grin K6%,OA% 3 +evergreens 'ev@grinz Kj% 3 +everlasting ,ev@'lAstIN OA% 4 +evermore ,ev@'mOR Pu$ 3 +every 'evrI OA* 2 +everybody 'evrIb0dI Qx% 4 +everyday 'evrIdeI OA% 3 +everyone 'evrIwVn Qx% 3 +everyplace 'evrIpleIs Pu$ 3 +everything 'evrITIN Qx* 3 +everywhere 'evrIwe@R Pu% 3 +eves ivz Kj% 1 +evict I'vIkt H0% 214 +evicted I'vIktId Hc%,Hd% 314 +evicting I'vIktIN Hb% 314 +eviction I'vIkSn M6% 3 +evictions I'vIkSnz Mj% 3 +evicts I'vIkts Ha% 214 +evidence 'evId@ns H2%,L@% 36A +evidenced 'evId@nst Hc%,Hd% 36A +evidences 'evId@nsIz Ha$ 46A +evidencing 'evId@nsIN Hb$ 46A +evident 'evId@nt OA% 3 +evidently 'evId@ntlI Pu% 4 +evil 'ivl M6%,OA% 2 +evil-doer 'ivl-du@R K6% 4 +evil-doers 'ivl-du@z Kj% 4 +evil-minded ,ivl-'maIndId OA% 4 +evilly 'iv@lI Pu% 3 +evils 'ivlz Mj% 2 +evince I'vIns H2% 26A,9 +evinced I'vInst Hc%,Hd% 26A,9 +evinces I'vInsIz Ha% 36A,9 +evincing I'vInsIN Hb% 36A,9 +eviscerate I'vIs@reIt H2$ 46A +eviscerated I'vIs@reItId Hc$,Hd$ 56A +eviscerates I'vIs@reIts Ha$ 46A +eviscerating I'vIs@reItIN Hb$ 56A +evocation ,iv@U'keISn K6% 4 +evocations ,iv@U'keISnz Kj% 4 +evocative I'v0k@tIv OA% 4 +evoke I'v@Uk H2% 26A +evoked I'v@Ukt Hc%,Hd% 26A +evokes I'v@Uks Ha% 26A +evoking I'v@UkIN Hb% 36A +evolution ,iv@'luSn M6% 4 +evolutionary ,iv@'luSnrI OA% 5 +evolutions ,iv@'luSnz Mj% 4 +evolve I'v0lv J2% 22A,6A +evolved I'v0lvd Jc%,Jd% 22A,6A +evolves I'v0lvz Ja% 22A,6A +evolving I'v0lvIN Jb% 32A,6A +ewe ju K6% 1 +ewer 'ju@R K6$ 2 +ewers 'ju@z Kj$ 2 +ewes juz Kj% 1 +ex gratia ,eks 'greIS@ OA% 3 +ex officio ,eks @'fISI@U OA%,Pu% 5 +ex- eks- U-% 1 +ex-directory ,eks-dI'rekt@rI OA% 5 +ex-service ,eks-'s3vIs OA% 3 +ex-serviceman ,eks-'s3vIsm@n Ki% 4 +ex-servicemen ,eks-'s3vIsm@n Kj% 4 +exacerbate Ig'z&s@beIt H2% 46A +exacerbated Ig'z&s@beItId Hc%,Hd% 56A +exacerbates Ig'z&s@beIts Ha% 46A +exacerbating Ig'z&s@beItIN Hb% 56A +exacerbation Ig,z&s@'beISn K6% 5 +exacerbations Ig,z&s@'beISnz Kj% 5 +exact Ig'z&kt H0%,OA% 26A,14 +exacted Ig'z&ktId Hc%,Hd% 36A,14 +exacting Ig'z&ktIN Hb%,OA% 36A,14 +exaction Ig'z&kSn M6$ 3 +exactions Ig'z&kSnz Mj$ 3 +exactitude Ig'z&ktItjud L@% 4 +exactly Ig'z&ktlI Pu% 3 +exactness Ig'z&ktn@s L@% 3 +exacts Ig'z&kts Ha% 26A,14 +exaggerate Ig'z&dZ@reIt J2% 42A,6A +exaggerated Ig'z&dZ@reItId Jc%,Jd% 52A,6A +exaggerates Ig'z&dZ@reIts Ja% 42A,6A +exaggerating Ig'z&dZ@reItIN Jb% 52A,6A +exaggeration Ig,z&dZ@'reISn M6% 5 +exaggerations Ig,z&dZ@'reISnz Mj% 5 +exalt Ig'zOlt H0% 26A +exaltation ,egzOl'teISn L@% 4 +exalted Ig'zOltId Hc%,Hd%,OA% 36A +exalting Ig'zOltIN Hb% 36A +exalts Ig'zOlts Ha% 26A +exam Ig'z&m K6% 2 +examination Ig,z&mI'neISn M6% 5 +examinations Ig,z&mI'neISnz Mj% 5 +examine Ig'z&mIn H2% 36A,14 +examined Ig'z&mInd Hc%,Hd% 36A,14 +examiner Ig'z&mIn@R K6% 4 +examiners Ig'z&mIn@z Kj% 4 +examines Ig'z&mInz Ha% 36A,14 +examining Ig'z&mInIN Hb% 46A,14 +example Ig'zAmpl M6* 3 +examples Ig'zAmplz Mj% 3 +exams Ig'z&mz Kj% 2 +exasperate Ig'z&sp@reIt H2% 46A +exasperated Ig'z&sp@reItId Hc%,Hd% 56A +exasperates Ig'z&sp@reIts Ha% 46A +exasperating Ig'z&sp@reItIN Hb% 56A +exasperation Ig,z&sp@'reISn L@% 5 +excavate 'eksk@veIt H2% 36A +excavated 'eksk@veItId Hc%,Hd% 46A +excavates 'eksk@veIts Ha% 36A +excavating 'eksk@veItIN Hb% 46A +excavation ,eksk@'veISn M6% 4 +excavations ,eksk@'veISnz Mj% 4 +excavator 'eksk@veIt@R K6% 4 +excavators 'eksk@veIt@z Kj% 4 +exceed Ik'sid H0% 26A +exceeded Ik'sidId Hc%,Hd% 36A +exceeding Ik'sidIN Hb% 36A +exceedingly Ik'sidINlI Pu% 4 +exceeds Ik'sidz Ha% 26A +excel Ik'sel J4% 22C,3A,6A,15A +excelled Ik'seld Jc%,Jd% 22C,3A,6A,15A +excellence 'eks@l@ns M6% 3 +excellences 'eks@l@nsIz Mj$ 4 +excellent 'eks@l@nt OA% 3 +excellently 'eks@l@ntlI Pu% 4 +excelling Ik'selIN Jb% 32C,3A,6A,15A +excels Ik'selz Ja% 22C,3A,6A,15A +excelsior ek'selsIOR L@$ 4 +except Ik'sept H0%,T-%,V-% 26A,14 +excepted Ik'septId Hc%,Hd% 36A,14 +excepting Ik'septIN Hb%,T-% 36A,14 +exception Ik'sepSn M6% 3 +exceptionable Ik'sepSn@bl OA$ 4 +exceptional Ik'sepS@nl OA% 4 +exceptionally Ik'sepS@n@lI Pu% 5 +exceptions Ik'sepSnz Mj% 3 +excepts Ik'septs Ha% 26A,14 +excerpt 'eks3pt K6% 2 +excerpts 'eks3pts Kj% 2 +excess 'ekses OA% 2 +excess Ik'ses M7% 2 +excesses Ik'sesIz Mj% 3 +excessive Ik'sesIv OA% 3 +excessively Ik'sesIvlI Pu% 4 +exchange Ik'stSeIndZ H2%,M6% 26A,14 +exchangeable Ik'stSeIndZ@bl OA% 4 +exchanged Ik'stSeIndZd Hc%,Hd% 26A,14 +exchanger Ik'stSeIndZ@R K6% 3 +exchangers Ik'stSeIndZ@z Kj% 3 +exchanges Ik'stSeIndZIz Ha%,Mj% 36A,14 +exchanging Ik'stSeIndZIN Hb% 36A,14 +exchequer Ik'stSek@R K6% 3 +exchequers Ik'stSek@z Kj$ 3 +excise 'eksaIz L@% 2 +excise Ik'saIz H2$ 26A +excised Ik'saIzd Hc%,Hd% 26A +exciseman 'eksaIsm@n Ki% 3 +excisemen 'eksaIsm@n Kj% 3 +excises Ik'saIzIz Ha$ 36A +excising Ik'saIzIN Hb$ 36A +excision Ik'sIZn M6% 3 +excisions Ik'sIZnz Mj% 3 +excitability Ik,saIt@'bIlItI L@% 6 +excitable Ik'saIt@bl OA% 4 +excite Ik'saIt H2% 26A,14,17 +excited Ik'saItId Hc%,Hd% 36A,14,17 +excitedly Ik'saItIdlI Pu% 4 +excitement Ik'saItm@nt M6% 3 +excitements Ik'saItm@nts Mj% 3 +excites Ik'saIts Ha% 26A,14,17 +exciting Ik'saItIN Hb% 36A,14,17 +excitingly Ik'saItINlI Pu% 4 +excl Ik'skludIN Y~% 3 +exclaim Ik'skleIm J0% 22A,9 +exclaimed Ik'skleImd Jc%,Jd% 22A,9 +exclaiming Ik'skleImIN Jb% 32A,9 +exclaims Ik'skleImz Ja% 22A,9 +exclamation ,ekskl@'meISn M6% 4 +exclamations ,ekskl@'meISnz Mj% 4 +exclamatory Ik'skl&m@trI OA% 4 +exclude Ik'sklud H2% 26A,14 +excluded Ik'skludId Hc%,Hd% 36A,14 +excludes Ik'skludz Ha% 26A,14 +excluding Ik'skludIN Hb% 36A,14 +exclusion Ik'skluZn L@% 3 +exclusive Ik'sklusIv OA% 3 +exclusively Ik'sklusIvlI Pu% 4 +excogitate eks'k0dZIteIt H2% 46A +excogitated eks'k0dZIteItId Hc$,Hd$ 56A +excogitates eks'k0dZIteIts Ha$ 46A +excogitating eks'k0dZIteItIN Hb$ 56A +excogitation ,eks,k0dZI'teISn M6$ 5 +excogitations ,eks,k0dZI'teISnz Mj$ 5 +excommunicate ,eksk@'mjunIkeIt H2% 56A +excommunicated ,eksk@'mjunIkeItId Hc%,Hd% 66A +excommunicates ,eksk@'mjunIkeIts Ha% 56A +excommunicating ,eksk@'mjunIkeItIN Hb% 66A +excommunication ,eksk@,mjunI'keISn M6% 6 +excommunications ,eksk@,mjunI'keISnz Mj$ 6 +excoriate Ik'skOrIeIt H2$ 46A +excoriated Ik'skOrIeItId Hc$,Hd$ 56A +excoriates Ik'skOrIeIts Ha$ 46A +excoriating Ik'skOrIeItIN Hb$ 56A +excoriation Ik,skOrI'eISn K6$ 5 +excoriations Ik,skOrI'eISnz Kj$ 5 +excrement 'ekskr@m@nt L@% 3 +excrescence Ik'skresns K6% 3 +excrescences Ik'skresnsIz Kj% 4 +excreta Ik'skrit@ Kj% 3 +excrete Ik'skrit H2% 26A +excreted Ik'skritId Hc%,Hd% 36A +excretes Ik'skrits Ha% 26A +excreting Ik'skritIN Hb% 36A +excretion Ik'skriSn M6% 3 +excretions Ik'skriSnz Mj% 3 +excruciating Ik'skruSIeItIN OA% 5 +excruciatingly Ik'skruSIeItINlI Pu% 6 +exculpate 'ekskVlpeIt H2$ 36A,14 +exculpated 'ekskVlpeItId Hc$,Hd$ 46A,14 +exculpates 'ekskVlpeIts Ha$ 36A,14 +exculpating 'ekskVlpeItIN Hb$ 46A,14 +excursion Ik'sk3Sn K6% 3 +excursionist Ik'sk3S@nIst K6$ 4 +excursionists Ik'sk3S@nIsts Kj$ 4 +excursions Ik'sk3Snz Kj% 3 +excusable Ik'skjuz@bl OA% 4 +excusably Ik'skjuz@blI Pu% 4 +excuse Ik'skjus K6% 2 +excuse Ik'skjuz H2% 26A,6C,12B,13B,14,19C +excused Ik'skjuzd Hc%,Hd% 26A,6C,12B,13B,14,19C +excuses Ik'skjusIz Kj% 3 +excuses Ik'skjuzIz Ha% 36A,6C,12B,13B,14,19C +excusing Ik'skjuzIN Hb% 36A,6C,12B,13B,14,19C +execrable 'eksIkr@bl OA% 4 +execrate 'eksIkreIt H2$ 36A +execrated 'eksIkreItId Hc$,Hd$ 46A +execrates 'eksIkreIts Ha$ 36A +execrating 'eksIkreItIN Hb$ 46A +execration ,eksI'kreISn K6$ 4 +execrations ,eksI'kreISnz Kj$ 4 +executant Ig'zekjUt@nt K6% 4 +executants Ig'zekjUt@nts Kj% 4 +execute 'eksIkjut H2% 36A +executed 'eksIkjutId Hc%,Hd% 46A +executes 'eksIkjuts Ha% 36A +executing 'eksIkjutIN Hb% 46A +execution ,eksI'kjuSn M6% 4 +executioner ,eksI'kjuSn@R K6% 5 +executioners ,eksI'kjuSn@z Kj% 5 +executions ,eksI'kjuSnz Mj% 4 +executive Ig'zekjUtIv K6%,OA% 4 +executives Ig'zekjUtIvz Kj% 4 +executor Ig'zekjUt@R K6% 4 +executors Ig'zekjUt@z Kj% 4 +executrix Ig'zekjUtrIks K7$ 4 +executrixes Ig'zekjUtrIksIz Kj$ 5 +exegesis ,eksI'dZisIs L@% 4 +exemplary Ig'zempl@rI OA% 4 +exemplification Ig,zemplIfI'keISn M6% 6 +exemplifications Ig,zemplIfI'keISnz Mj$ 6 +exemplified Ig'zemplIfaId Hc%,Hd% 46A +exemplifies Ig'zemplIfaIz Ha% 46A +exemplify Ig'zemplIfaI H3% 46A +exemplifying Ig'zemplIfaIIN Hb% 56A +exempt Ig'zempt H0%,OA% 26A,14 +exempted Ig'zemptId Hc%,Hd% 36A,14 +exempting Ig'zemptIN Hb% 36A,14 +exemption Ig'zempSn M6% 3 +exemptions Ig'zempSnz Mj% 3 +exempts Ig'zempts Ha% 26A,14 +exercise 'eks@saIz J2%,M6% 32A,6A,15A +exercised 'eks@saIzd Jc%,Jd% 32A,6A,15A +exercises 'eks@saIzIz Ja%,Mj% 42A,6A,15A +exercising 'eks@saIzIN Jb% 42A,6A,15A +exert Ig'z3t H0% 26A,14,16A +exerted Ig'z3tId Hc%,Hd% 36A,14,16A +exerting Ig'z3tIN Hb% 36A,14,16A +exertion Ig'z3Sn M6% 3 +exertions Ig'z3Snz Mj% 3 +exerts Ig'z3ts Ha% 26A,14,16A +exeunt 'eksI@nt Ie$ 3 +exhalation ,eksh@'leISn M6% 4 +exhalations ,eksh@'leISnz Mj% 4 +exhale eks'heIl J2% 22A,6A +exhaled eks'heIld Jc%,Jd% 22A,6A +exhales eks'heIlz Ja% 22A,6A +exhaling eks'heIlIN Jb% 32A,6A +exhaust Ig'zOst H0%,M6% 26A +exhaust-pipe Ig'zOst-paIp K6% 3 +exhaust-pipes Ig'zOst-paIps Kj% 3 +exhausted Ig'zOstId Hc%,Hd% 36A +exhausting Ig'zOstIN Hb% 36A +exhaustion Ig'zOstS@n L@% 3 +exhaustive Ig'zOstIv OA% 3 +exhaustively Ig'zOstIvlI Pu% 4 +exhausts Ig'zOsts Ha%,Mj% 26A +exhibit Ig'zIbIt H0%,K6% 32A,6A +exhibited Ig'zIbItId Hc%,Hd% 42A,6A +exhibiting Ig'zIbItIN Hb% 42A,6A +exhibition ,eksI'bISn K6% 4 +exhibitioner ,eksI'bISn@R K6$ 5 +exhibitioners ,eksI'bISn@z Kj$ 5 +exhibitionism ,eksI'bIS@nIz@m L@% 6 +exhibitionist ,eksI'bIS@nIst K6% 5 +exhibitionists ,eksI'bIS@nIsts Kj% 5 +exhibitions ,eksI'bISnz Kj% 4 +exhibitor Ig'zIbIt@R K6% 4 +exhibitors Ig'zIbIt@z Kj% 4 +exhibits Ig'zIbIts Ha%,Kj% 32A,6A +exhilarate Ig'zIl@reIt H2% 46A +exhilarated Ig'zIl@reItId Hc%,Hd% 56A +exhilarates Ig'zIl@reIts Ha% 46A +exhilarating Ig'zIl@reItIN Hb% 56A +exhilaration Ig,zIl@'reISn L@% 5 +exhort Ig'zOt H0% 26A,14,17 +exhortation ,eksO'teISn M6% 4 +exhortations ,eksO'teISnz Mj% 4 +exhorted Ig'zOtId Hc%,Hd% 36A,14,17 +exhorting Ig'zOtIN Hb% 36A,14,17 +exhorts Ig'zOts Ha% 26A,14,17 +exhumation ,ekshju'meISn M6% 4 +exhumations ,ekshju'meISnz Mj$ 4 +exhume eks'hjum H2% 26A +exhumed eks'hjumd Hc%,Hd% 26A +exhumes eks'hjumz Ha% 26A +exhuming eks'hjumIN Hb% 36A +exigencies 'eksIdZ@nsIz Kj% 4 +exigency 'eksIdZ@nsI K8% 4 +exigent 'egzIdZ@nt OA$ 3 +exiguous eg'zIgjU@s OA$ 4 +exile 'eksaIl H2%,M6% 26A,15A +exiled 'eksaIld Hc%,Hd% 26A,15A +exiles 'eksaIlz Ha%,Mj% 26A,15A +exiling 'eksaIlIN Hb% 36A,15A +exist Ig'zIst I0% 22A,2C,3A +existed Ig'zIstId Ic%,Id% 32A,2C,3A +existence Ig'zIst@ns M6% 3 +existences Ig'zIst@nsIz Mj% 4 +existent Ig'zIst@nt OA% 3 +existentialism ,egzI'stenS@lIz@m L@% 6 +existentialist ,egzI'stenS@lIst K6% 5 +existentialists ,egzI'stenS@lIsts Kj% 5 +existing Ig'zIstIN Ib% 32A,2C,3A +exists Ig'zIsts Ia% 22A,2C,3A +exit 'eksIt I0%,K6% 2 +exited 'eksItId Ic%,Id% 3 +exiting 'eksItIN Ib% 3 +exits 'eksIts Ia%,Kj% 2 +exodus 'eks@d@s K7% 3 +exoduses 'eks@d@sIz Kj$ 4 +exonerate Ig'z0n@reIt H2% 46A,14 +exonerated Ig'z0n@reItId Hc%,Hd% 56A,14 +exonerates Ig'z0n@reIts Ha% 46A,14 +exonerating Ig'z0n@reItIN Hb% 56A,14 +exoneration Ig,z0n@'reISn K6% 5 +exonerations Ig,z0n@'reISnz Kj$ 5 +exorbitance Ig'zObIt@ns L@$ 4 +exorbitant Ig'zObIt@nt OA% 4 +exorbitantly Ig'zObIt@ntlI Pu% 5 +exorcize 'eksOsaIz H2% 36A,14 +exorcized 'eksOsaIzd Hc%,Hd% 36A,14 +exorcizes 'eksOsaIzIz Ha% 46A,14 +exorcizing 'eksOsaIzIN Hb% 46A,14 +exotic Ig'z0tIk OA% 3 +expand Ik'sp&nd J0% 22A,2C,6A,14 +expanded Ik'sp&ndId Jc%,Jd% 32A,2C,6A,14 +expanding Ik'sp&ndIN Jb% 32A,2C,6A,14 +expands Ik'sp&ndz Ja% 22A,2C,6A,14 +expanse Ik'sp&ns K6% 2 +expanses Ik'sp&nsIz Kj% 3 +expansion Ik'sp&nSn L@% 3 +expansive Ik'sp&nsIv OA% 3 +expansively Ik'sp&nsIvlI Pu% 4 +expansiveness Ik'sp&nsIvn@s L@% 4 +expatiate Ik'speISIeIt I2$ 43A +expatiated Ik'speISIeItId Ic$,Id$ 53A +expatiates Ik'speISIeIts Ia$ 43A +expatiating Ik'speISIeItIN Ib$ 53A +expatriate eks'p&trI@t K6$ 4 +expatriate eks'p&trIeIt H2$ 46A +expatriated eks'p&trIeItId Hc$,Hd$ 56A +expatriates eks'p&trI@ts Kj$ 4 +expatriates eks'p&trIeIts Ha$ 46A +expatriating eks'p&trIeItIN Hb$ 56A +expect Ik'spekt H0% 26A,7A,9,14,17 +expectancies Ik'spekt@nsIz Mj% 4 +expectancy Ik'spekt@nsI M8% 4 +expectant Ik'spekt@nt OA% 3 +expectantly Ik'spekt@ntlI Pu% 4 +expectation ,ekspek'teISn M6% 4 +expectations ,ekspek'teISnz Mj% 4 +expected Ik'spektId Hc%,Hd%,OA% 36A,7A,9,14,17 +expecting Ik'spektIN Hb% 36A,7A,9,14,17 +expectorant Ik'spekt@r@nt K6$ 4 +expectorants Ik'spekt@r@nts Kj$ 4 +expectorate Ik'spekt@reIt J2$ 42A,6A +expectorated Ik'spekt@reItId Jc$,Jd$ 52A,6A +expectorates Ik'spekt@reIts Ja$ 42A,6A +expectorating Ik'spekt@reItIN Jb$ 52A,6A +expects Ik'spekts Ha% 26A,7A,9,14,17 +expedience Ik'spidI@ns L@% 4 +expediency Ik'spidI@nsI L@% 5 +expedient Ik'spidI@nt K6%,OA% 4 +expediently Ik'spidI@ntlI Pu% 5 +expedients Ik'spidI@nts Kj% 4 +expedite 'ekspIdaIt H2$ 36A +expedited 'ekspIdaItId Hc$,Hd$ 46A +expedites 'ekspIdaIts Ha$ 36A +expediting 'ekspIdaItIN Hb$ 46A +expedition ,ekspI'dISn M6% 4 +expeditionary ,ekspI'dIS@n@rI OA% 6 +expeditions ,ekspI'dISnz Mj% 4 +expeditious ,ekspI'dIS@s OA$ 4 +expeditiously ,ekspI'dIS@slI Pu$ 5 +expel Ik'spel H4% 26A,14 +expelled Ik'speld Hc%,Hd% 26A,14 +expelling Ik'spelIN Hb% 36A,14 +expels Ik'spelz Ha% 26A,14 +expend Ik'spend H0% 26A,14 +expendable Ik'spend@bl OA% 4 +expended Ik'spendId Hc%,Hd% 36A,14 +expending Ik'spendIN Hb% 36A,14 +expenditure Ik'spendItS@R M6% 4 +expenditures Ik'spendItS@z Mj% 4 +expends Ik'spendz Ha% 26A,14 +expense Ik'spens M6% 2 +expenses Ik'spensIz Mj% 3 +expensive Ik'spensIv OA% 3 +expensively Ik'spensIvlI Pu% 4 +experience Ik'spI@rI@ns H2%,M6% 46A +experienced Ik'spI@rI@nst Hc%,Hd%,OA% 46A +experiences Ik'spI@rI@nsIz Ha%,Mj% 56A +experiencing Ik'spI@rI@nsIN Hb% 56A +experiment Ik'sperIm@nt I0%,M6% 42A,2C,3A +experimental Ik,sperI'mentl OA% 5 +experimentally Ik,sperI'ment@lI Pu% 6 +experimentation Ik,sperImen'teISn L@% 6 +experimented Ik'sperIm@ntId Ic%,Id% 52A,2C,3A +experimenter Ik'sperIm@nt@R K6% 5 +experimenters Ik'sperIm@nt@z Kj% 5 +experimenting Ik'sperIm@ntIN Ib% 52A,2C,3A +experiments Ik'sperIm@nts Ia%,Mj% 42A,2C,3A +expert 'eksp3t K6%,OA% 2 +expertise ,eksp3'tiz L@% 3 +expertly 'eksp3tlI Pu% 3 +expertness 'eksp3tn@s L@$ 3 +experts 'eksp3ts Kj% 2 +expiate 'ekspIeIt H2$ 36A +expiated 'ekspIeItId Hc$,Hd$ 46A +expiates 'ekspIeIts Ha$ 36A +expiating 'ekspIeItIN Hb$ 46A +expiation ,ekspI'eISn L@$ 4 +expiration ,ekspI'reISn L@$ 4 +expire Ik'spaI@R I2$ 22A +expired Ik'spaI@d Ic%,Id% 22A +expires Ik'spaI@z Ia% 22A +expiries Ik'spaI@rIz Kj$ 3 +expiring Ik'spaI@rIN Ib% 32A +expiry Ik'spaI@rI K8% 3 +explain Ik'spleIn H0% 26A,8,9,10,14,15B +explained Ik'spleInd Hc%,Hd% 26A,8,9,10,14,15B +explaining Ik'spleInIN Hb% 36A,8,9,10,14,15B +explains Ik'spleInz Ha% 26A,8,9,10,14,15B +explanation ,ekspl@'neISn M6% 4 +explanations ,ekspl@'neISnz Mj% 4 +explanatory Ik'spl&n@trI OA% 4 +expletive Ik'splitIv K6% 3 +expletives Ik'splitIvz Kj% 3 +explicable ek'splIk@bl OA% 4 +explicate 'eksplIkeIt H2$ 36A +explicated 'eksplIkeItId Hc$,Hd$ 46A +explicates 'eksplIkeIts Ha$ 36A +explicating 'eksplIkeItIN Hb$ 46A +explicit Ik'splIsIt OA% 3 +explicitly Ik'splIsItlI Pu% 4 +explicitness Ik'splIsItn@s L@% 4 +explode Ik'spl@Ud J2% 22A,2C,6A +exploded Ik'spl@UdId Jc%,Jd% 32A,2C,6A +explodes Ik'spl@Udz Ja% 22A,2C,6A +exploding Ik'spl@UdIN Jb% 32A,2C,6A +exploit 'eksploIt K6% 2 +exploit Ik'sploIt H0% 26A +exploitation ,eksploI'teISn L@% 4 +exploited Ik'sploItId Hc%,Hd% 36A +exploiting Ik'sploItIN Hb% 36A +exploits 'eksploIts Kj% 2 +exploits Ik'sploIts Ha% 26A +exploration ,ekspl@'reISn M6% 4 +explorations ,ekspl@'reISnz Mj% 4 +exploratory Ik'spl0r@trI OA% 4 +explore Ik'splOR H2% 26A +explored Ik'splOd Hc%,Hd% 26A +explorer Ik'splOr@R K6% 3 +explorers Ik'splOr@z Kj% 3 +explores Ik'splOz Ha% 26A +exploring Ik'splOrIN Hb% 36A +explosion Ik'spl@UZn K6% 3 +explosions Ik'spl@UZnz Kj% 3 +explosive Ik'spl@UsIv K6%,OA% 3 +explosively Ik'spl@UsIvlI Pu% 4 +explosives Ik'spl@UsIvz Kj% 3 +expo 'eksp@U K6$ 2 +exponent Ik'sp@Un@nt K6% 3 +exponential ,eksp@'nenSl K6$,OA% 4 +exponentially ,eksp@'nenS@lI Pu% 5 +exponentials ,eksp@'nenSlz Kj$ 4 +exponents Ik'sp@Un@nts Kj% 3 +export 'ekspOt M6% 2 +export Ik'spOt H0% 26A +exportable Ik'spOt@bl OA% 4 +exportation ,ekspO'teISn L@$ 4 +exported Ik'spOtId Hc%,Hd% 36A +exporter Ik'spOt@R K6% 3 +exporters Ik'spOt@z Kj% 3 +exporting Ik'spOtIN Hb% 36A +exports 'ekspOts Mj% 2 +exports Ik'spOts Ha% 26A +expos 'eksp@Uz Kj$ 2 +expos_e ek'sp@UzeI K6% 3 +expos_es ek'sp@UzeIz Kj% 3 +expose Ik'sp@Uz H2% 26A,14,15A +exposed Ik'sp@Uzd Hc%,Hd% 26A,14,15A +exposes Ik'sp@UzIz Ha% 36A,14,15A +exposing Ik'sp@UzIN Hb% 36A,14,15A +exposition ,eksp@'zISn M6% 4 +expositions ,eksp@'zISnz Mj% 4 +expostulate Ik'sp0stSUleIt I2% 42A,3A +expostulated Ik'sp0stSUleItId Ic%,Id% 52A,3A +expostulates Ik'sp0stSUleIts Ia% 42A,3A +expostulating Ik'sp0stSUleItIN Ib% 52A,3A +expostulation Ik,sp0stSU'leISn M6% 5 +expostulations Ik,sp0stSU'leISnz Mj$ 5 +exposure Ik'sp@UZ@R M6% 3 +exposures Ik'sp@UZ@z Mj% 3 +expound Ik'spaUnd H0% 26A,14 +expounded Ik'spaUndId Hc%,Hd% 36A,14 +expounding Ik'spaUndIN Hb% 36A,14 +expounds Ik'spaUndz Ha% 26A,14 +express Ik'spres H1%,M7%,OA%,Pu% 26A,10,14,15A +expressed Ik'sprest Hc%,Hd% 26A,10,14,15A +expresses Ik'spresIz Ha%,Mj% 36A,10,14,15A +expressing Ik'spresIN Hb% 36A,10,14,15A +expression Ik'spreSn M6% 3 +expressionism Ik'spreS@nIz@m L@% 5 +expressionist Ik'spreS@nIst K6% 4 +expressionists Ik'spreS@nIsts Kj% 4 +expressionless Ik'spreSnl@s OA% 4 +expressions Ik'spreSnz Mj% 3 +expressive Ik'spresIv OA% 3 +expressively Ik'spresIvlI Pu% 4 +expressly Ik'spreslI Pu% 3 +expressway Iks'presweI K6$ 3 +expressways Iks'presweIz Kj$ 3 +expropriate eks'pr@UprIeIt H2$ 46A,14 +expropriated eks'pr@UprIeItId Hc$,Hd% 56A,14 +expropriates eks'pr@UprIeIts Ha$ 46A,14 +expropriating eks'pr@UprIeItIN Hb$ 56A,14 +expropriation ,eks,pr@UprI'eISn L@$ 5 +expulsion Ik'spVlSn M6% 3 +expulsions Ik'spVlSnz Mj% 3 +expunge Ik'spVndZ H2% 26A,14 +expunged Ik'spVndZd Hc%,Hd% 26A,14 +expunges Ik'spVndZIz Ha% 36A,14 +expunging Ik'spVndZIN Hb% 36A,14 +expurgate 'eksp@geIt H2% 36A +expurgated 'eksp@geItId Hc%,Hd% 46A +expurgates 'eksp@geIts Ha% 36A +expurgating 'eksp@geItIN Hb% 46A +expurgation ,eksp@'geISn K6% 4 +expurgations ,eksp@'geISnz Kj$ 4 +exquisite 'ekskwIzIt OA% 3 +exquisitely 'ekskwIzItlI Pu% 4 +exquisiteness 'ekskwIzItn@s L@% 4 +extant ek'st&nt OA% 2 +extemporaneous ek,stemp@'reInI@s OA$ 6 +extemporaneously ek,stemp@'reInI@slI Pu$ 7 +extemporarily Ik,stemp@'re@rIlI Pu$ 6 +extemporary Ik'stemp@r@rI OA$ 5 +extempore ek'stemp@rI OA%,Pu% 4 +extemporize Ik'stemp@raIz J3% 42A,6A +extemporized Ik'stemp@raIzd Jc%,Jd% 42A,6A +extemporizes Ik'stemp@raIzIz Ja% 52A,6A +extemporizing Ik'stemp@raIzIN Jb% 52A,6A +extend Ik'stend J0% 22B,2C,6A,14,15A +extended Ik'stendId Jc%,Jd% 32B,2C,6A,14,15A +extending Ik'stendIN Jb% 32B,2C,6A,14,15A +extends Ik'stendz Ja% 22B,2C,6A,14,15A +extension Ik'stenSn M6% 3 +extensions Ik'stenSnz Mj% 3 +extensive Ik'stensIv OA% 3 +extensively Ik'stensIvlI Pu% 4 +extent Ik'stent L@% 2 +extenuate Ik'stenjUeIt H2% 46A +extenuated Ik'stenjUeItId Hc%,Hd% 56A +extenuates Ik'stenjUeIts Ha% 46A +extenuating Ik'stenjUeItIN Hb% 56A +extenuation Ik,stenjU'eISn M6% 5 +extenuations Ik,stenjU'eISnz Mj$ 5 +exterior Ik'stI@rI@R K6%,OA% 4 +exteriorize Iks'tI@rI@raIz H2$ 5 +exteriorized Iks'tI@rI@raIzd Hc$,Hd$ 5 +exteriorizes Iks'tI@rI@raIzIz Ha$ 6 +exteriorizing Iks'tI@rI@raIzIN Hb$ 6 +exteriors Ik'stI@rI@z Kj% 4 +exterminate Ik'st3mIneIt H2% 46A +exterminated Ik'st3mIneItId Hc%,Hd% 56A +exterminates Ik'st3mIneIts Ha% 46A +exterminating Ik'st3mIneItIN Hb% 56A +extermination Ik,st3mI'neISn K6% 5 +exterminations Ik,st3mI'neISnz Kj$ 5 +external Ik'st3nl K6%,OA% 3 +externalize Iks't3n@laIz H2% 46A +externalized Iks't3n@laIzd Hc%,Hd% 46A +externalizes Iks't3n@laIzIz Ha% 56A +externalizing Iks't3n@laIzIN Hb% 56A +externally ek'st3n@lI Pu% 4 +externals Ik'st3nlz Kj% 3 +exterritorial ,eks,terI'tOrI@l OA$ 6 +extinct Ik'stINt OA% 2 +extinction Ik'stINkSn L@% 3 +extinguish Ik'stINwIS H1% 36A +extinguished Ik'stINwISt Hc%,Hd% 36A +extinguisher Ik'stINwIS@R K6% 4 +extinguishers Ik'stINwIS@z Kj% 4 +extinguishes Ik'stINwISIz Ha% 46A +extinguishing Ik'stINwISIN Hb% 46A +extirpate 'ekst@peIt H2$ 36A +extirpated 'ekst@peItId Hc$,Hd$ 46A +extirpates 'ekst@peIts Ha$ 36A +extirpating 'ekst@peItIN Hb$ 46A +extirpation ,ekst@'peISn L@$ 4 +extol Ik'st@Ul H4% 26A,15A +extolled Ik'st@Uld Hc%,Hd% 26A,15A +extolling Ik'st@UlIN Hb% 36A,15A +extols Ik'st@Ulz Ha% 26A,15A +extort Ik'stOt H0% 26A,14 +extorted Ik'stOtId Hc%,Hd% 36A,14 +extorting Ik'stOtIN Hb% 36A,14 +extortion Ik'stOSn M6% 3 +extortionate Ik'stOS@n@t OA% 4 +extortionately Ik'stOS@n@tlI Pu% 5 +extortions Ik'stOSnz Mj$ 3 +extorts Ik'stOts Ha% 26A,14 +extra 'ekstr@ K6%,OA%,Pu% 2 +extract 'ekstr&kt M6% 2 +extract Ik'str&kt H0% 26A,14 +extracted Ik'str&ktId Hc%,Hd% 36A,14 +extracting Ik'str&ktIN Hb% 36A,14 +extraction Ik'str&kSn M6% 3 +extractions Ik'str&kSnz Mj% 3 +extracts 'ekstr&kts Mj% 2 +extracts Ik'str&kts Ha% 26A,14 +extracurricular ,ekstr@k@'rIkjUl@R OA% 6 +extradite 'ekstr@daIt H2% 36A +extradited 'ekstr@daItId Hc%,Hd% 46A +extradites 'ekstr@daIts Ha% 36A +extraditing 'ekstr@daItIN Hb% 46A +extradition ,ekstr@'dISn M6% 4 +extraditions ,ekstr@'dISnz Mj% 4 +extrajudicial ,ekstr@dZu'dISl OA$ 5 +extramarital ,ekstr@'m&rItl OA% 5 +extramural ,ekstr@'mjU@r@l OA% 4 +extraneous Ik'streInI@s OA% 4 +extraordinarily Ik'strOdnr@lI Pu% 4 +extraordinary Ik'strOdnrI OA% 3 +extrapolate Ik'str&p@leIt J3% 46A +extrapolated Ik'str&p@leItId Jc%,Jd% 56A +extrapolates Ik'str&p@leIts Ja% 46A +extrapolating Ik'str&p@leItIN Jb% 56A +extrapolation Ik,str&p@'leISn L@% 5 +extras 'ekstr@z Kj% 2 +extrasensory ,ekstr@'sens@rI OA% 5 +extraterritorial ,ekstr@,terI'tOrI@l OA$ 7 +extravagance Ik'str&v@g@ns M6% 4 +extravagances Ik'str&v@g@nsIz Mj% 5 +extravagant Ik'str&v@g@nt OA% 4 +extravagantly Ik'str&v@g@ntlI Pu% 5 +extravaganza Ik,str&v@'g&nz@ K6% 5 +extravaganzas Ik,str&v@'g&nz@z Kj% 5 +extreme Ik'strim K6%,OA% 2 +extremely Ik'strimlI Pu% 3 +extremes Ik'strimz Kj% 2 +extremist Ik'strimIst K6% 3 +extremists Ik'strimIsts Kj% 3 +extremities Ik'stremItIz Kj% 4 +extremity Ik'stremItI K8% 4 +extricable ek'strIk@bl OA$ 4 +extricate 'ekstrIkeIt H2% 36A,14 +extricated 'ekstrIkeItId Hc%,Hd% 46A,14 +extricates 'ekstrIkeIts Ha% 36A,14 +extricating 'ekstrIkeItIN Hb% 46A,14 +extrication ,ekstrI'keISn L@$ 4 +extrinsic ek'strInsIk OA$ 3 +extroversion ,ekstr@'v3Sn L@$ 4 +extrovert 'ekstr@v3t K6% 3 +extroverts 'ekstr@v3ts Kj% 3 +extrude Ik'strud H2$ 26A,14 +extruded Ik'strudId Hc$,Hd% 36A,14 +extrudes Ik'strudz Ha$ 26A,14 +extruding Ik'strudIN Hb$ 36A,14 +extrusion Ik'struZn M6$ 3 +extrusions Ik'struZnz Mj$ 3 +exuberance Ig'zjub@r@ns L@% 4 +exuberant Ig'zjub@r@nt OA% 4 +exuberantly Ig'zjub@r@ntlI Pu% 5 +exude Ig'zjud J2% 22A,2C,6A +exuded Ig'zjudId Jc%,Jd% 32A,2C,6A +exudes Ig'zjudz Ja% 22A,2C,6A +exuding Ig'zjudIN Jb% 32A,2C,6A +exult Ig'zVlt I0% 22A,3A,4C +exultant Ig'zVlt@nt OA% 3 +exultantly Ig'zVlt@ntlI Pu% 4 +exultation ,egzVl'teISn L@% 4 +exulted Ig'zVltId Ic%,Id% 32A,3A,4C +exulting Ig'zVltIN Ib% 32A,3A,4C +exults Ig'zVlts Ia% 22A,3A,4C +eye aI H2%,K6% 16A,15A +eye-catching 'aI-k&tSIN OA% 3 +eye-opener 'aI-@Up@n@R K6% 4 +eye-openers 'aI-@Up@n@z Kj% 4 +eye-shadow 'aI-S&d@U L@% 3 +eyeball 'aIbOl K6% 2 +eyeballs 'aIbOlz Kj% 2 +eyebath 'aIbAT K6% 2 +eyebaths 'aIbADz Kj% 2 +eyebrow 'aIbraU K6% 2 +eyebrows 'aIbraUz Kj% 2 +eyecatching 'aIk&tSIN OA% 3 +eyecup 'aIkVp K6$ 2 +eyecups 'aIkVps Kj$ 2 +eyed aId Hc%,Hd%,Ot% 16A,15A +eyeful 'aIfUl K6% 2 +eyefuls 'aIfUlz Kj$ 2 +eyeglass 'aIglAs K7% 2 +eyeglasses 'aIglAsIz Kj% 3 +eyeing 'aIIN Hb% 26A,15A +eyelash 'aIl&S K7% 2 +eyelashes 'aIl&SIz Kj% 3 +eyeless 'aIl@s OA% 2 +eyelet 'aIlIt K6$ 2 +eyelets 'aIlIts Kj$ 2 +eyelid 'aIlId K6% 2 +eyelids 'aIlIdz Kj% 2 +eyepiece 'aIpis K6$ 2 +eyepieces 'aIpisIz Kj$ 3 +eyes aIz Ha%,Kj* 16A,15A +eyeshot 'aIS0t L@$ 2 +eyesight 'aIsaIt L@% 2 +eyesore 'aIsOR K6% 2 +eyesores 'aIsOz Kj% 2 +eyestrain 'aIstreIn L@% 2 +eyeteeth 'aItiT Kj$ 2 +eyetooth 'aItuT Ki$ 2 +eyewash 'aIw0S L@% 2 +eyewitness 'aIwItn@s K7% 3 +eyewitnesses 'aIwItn@sIz Kj% 4 +eying 'aIIN Hb$ 26A,15A +eyrie 'e@rI K6$ 2 +eyries 'e@rIz Kj$ 2 +eyry 'e@rI K8% 2 +f ef Ki$ 1 +f"uhrer 'fjU@r@R K6$ 2 +f"uhrers 'fjU@r@z Kj$ 2 +f's efs Kj$ 1 +f^ete feIt H2%,K6% 16A +f^eted 'feItId Hc%,Hd% 26A +f^etes feIts Ha%,Kj% 16A +f^eting 'feItIN Hb% 26A +fa fA Ki$ 1 +fa% 1 +fig-leaf 'fIg-lif Ki% 2 +fig-leaves 'fIg-livz Kj% 2 +fight faIt J5%,M6% 12A,2B,2C,3A,4A,6A,15A,15B +fighter 'faIt@R K6% 2 +fighters 'faIt@z Kj% 2 +fighting 'faItIN Jb%,L@% 22A,2B,2C,3A,4A,6A,15A,15B +fights faIts Ja%,Mj% 12A,2B,2C,3A,4A,6A,15A,15B +figment 'fIgm@nt K6% 2 +figments 'fIgm@nts Kj% 2 +figs fIgz Kj% 1 +figurative 'fIgj@r@tIv OA% 4 +figuratively 'fIgj@r@tIvlI Pu% 5 +figure 'fIg@R J2%,K6% 22C,3A,9,15A,15B,25 +figured 'fIg@d Jc%,Jd%,OA% 22C,3A,9,15A,15B,25 +figurehead 'fIg@hed K6% 3 +figureheads 'fIg@hedz Kj% 3 +figures 'fIg@z Ja%,Kj% 22C,3A,9,15A,15B,25 +figuring 'fIg@rIN Jb% 32C,3A,9,15A,15B,25 +filament 'fIl@m@nt K6% 3 +filaments 'fIl@m@nts Kj% 3 +filature 'fIl@tS@R K6$ 3 +filatures 'fIl@tS@z Kj$ 3 +filbert 'fIlb@t K6$ 2 +filberts 'fIlb@ts Kj$ 2 +filch fIltS H1$ 16A +filched fIltSt Hc$,Hd$ 16A +filches 'fIltSIz Ha$ 26A +filching 'fIltSIN Hb$ 26A +file faIl J2%,K6% 12C,6A,15A,15B,22 +filed faIld Jc%,Jd% 12C,6A,15A,15B,22 +files faIlz Ja%,Kj% 12C,6A,15A,15B,22 +filial 'fIlI@l OA% 3 +filibuster 'fIlIbVst@R I0%,K6% 4 +filibustered 'fIlIbVst@d Ic%,Id% 4 +filibustering 'fIlIbVst@rIN Ib% 5 +filibusters 'fIlIbVst@z Ia%,Kj% 4 +filigree 'fIlIgri L@$ 3 +filing 'faIlIN Jb% 22C,6A,15A,15B,22 +filings 'faIlINz Kj% 2 +fill fIl J0%,M6% 12A,2C,6A,12B,13B,14,15B +filled fIld Jc%,Jd% 12A,2C,6A,12B,13B,14,15B +fillet 'fIlIt H0%,K6% 26A +filleted 'fIlItId Hc%,Hd% 36A +filleting 'fIlItIN Hb% 36A +fillets 'fIlIts Ha%,Kj% 26A +fillies 'fIlIz Kj$ 2 +filling 'fIlIN Jb%,M6% 22A,2C,6A,12B,13B,14,15B +fillings 'fIlINz Mj% 2 +fillip 'fIlIp K6$ 2 +fillips 'fIlIps Kj$ 2 +fills fIlz Ja%,Mj% 12A,2C,6A,12B,13B,14,15B +filly 'fIlI K8$ 2 +film fIlm J0%,M6% 12A,2C,6A +film-star 'fIlm-stAR K6% 2 +film-stars 'fIlm-stAz Kj% 2 +filmable 'fIlm@bl OA% 3 +filmed fIlmd Jc%,Jd% 12A,2C,6A +filmier 'fIlmI@R Or$ 3 +filmiest 'fIlmIIst Os$ 3 +filming 'fIlmIN Jb% 22A,2C,6A +films fIlmz Ja%,Mj% 12A,2C,6A +filmy 'fIlmI OD% 2 +filter 'fIlt@R J0%,K6% 22A,2C,6A,14,15B +filtered 'fIlt@d Jc%,Jd% 22A,2C,6A,14,15B +filtering 'fIlt@rIN Jb% 32A,2C,6A,14,15B +filters 'fIlt@z Ja%,Kj% 22A,2C,6A,14,15B +filtertipped 'fIlt@tIpt OA% 3 +filth fIlT L@% 1 +filthier 'fIlTI@R Or% 3 +filthiest 'fIlTIIst Os% 3 +filthily 'fIlTIlI Pu% 3 +filthiness 'fIlTIn@s L@% 3 +filthy 'fIlTI OD% 2 +filtrate 'fIltreIt K6$ 2 +filtrate fIl'treIt J2$ 2 +filtrated fIl'treItId Jc$,Jd$ 3 +filtrates 'fIltreIts Kj$ 2 +filtrates fIl'treIts Ja$ 2 +filtrating fIl'treItIN Jb$ 3 +filtration fIl'treISn L@$ 3 +fin fIn K6% 1 +finable 'faIn@bl OA$ 3 +final 'faInl K6%,OA% 2 +finale fI'nAlI K6% 3 +finales fI'nAlIz Kj% 3 +finalist 'faIn@lIst K6% 3 +finalists 'faIn@lIsts Kj% 3 +finality faI'n&lItI L@% 4 +finalize 'faIn@laIz H2% 36A +finalized 'faIn@laIzd Hc%,Hd% 36A +finalizes 'faIn@laIzIz Ha% 46A +finalizing 'faIn@laIzIN Hb% 46A +finally 'faIn@lI Pu% 3 +finals 'faInlz Kj% 2 +finance 'faIn&ns H2%,M6% 26A +financed 'faIn&nst Hc%,Hd% 26A +finances 'faIn&nsIz Ha%,Mj% 36A +financial faI'n&nSl OA% 3 +financially faI'n&nS@lI Pu% 4 +financier faI'n&nsI@R K6% 4 +financiers faI'n&nsI@z Kj% 4 +financing 'faIn&nsIN Hb% 36A +finch fIntS K7% 1 +finches 'fIntSIz Kj% 2 +find faInd H5*,K6% 16A,8,9,10,12A,12B,13A,13B,15A,15B,19B,22,25 +finder 'faInd@R K6% 2 +finders 'faInd@z Kj% 2 +finding 'faIndIN Hb%,K6% 26A,8,9,10,12A,12B,13A,13B,15A,15B,19B,22,25 +findings 'faIndINz Kj% 2 +finds faIndz Ha%,Kj% 16A,8,9,10,12A,12B,13A,13B,15A,15B,19B,22,25 +fine faIn H2%,K6%,OB%,Pu% 16A,14 +fine-tooth 'faIn-tuT Oq% 2 +fineable 'faIn@bl OA$ 3 +fined faInd Hc%,Hd% 16A,14 +finely 'faInlI Pu% 2 +fineness 'faIn+n@s L@% 2 +finer 'faIn@R Or% 2 +finery 'faIn@rI L@% 3 +fines faInz Ha%,Kj% 16A,14 +finesse fI'nes M6% 2 +finesses fI'nesIz Mj$ 3 +finest 'faInIst Os% 2 +finger 'fINg@R H0%,K6% 26A +finger-alphabet ,fINg@r-'&lf@bet K6$ 5 +finger-alphabets ,fINg@r-'&lf@bets Kj$ 5 +finger-bowl 'fINg@-b@Ul K6% 3 +finger-bowls 'fINg@-b@Ulz Kj% 3 +finger-plate 'fINg@-pleIt K6% 3 +finger-plates 'fINg@-pleIts Kj% 3 +finger-post 'fINg@-p@Ust K6$ 3 +finger-posts 'fINg@-p@Usts Kj$ 3 +fingerboard 'fINg@bOd K6% 3 +fingerboards 'fINg@bOdz Kj% 3 +fingered 'fINg@d Hc%,Hd% 26A +fingering 'fINg@rIN Hb% 36A +fingermark 'fINg@mAk K6% 3 +fingermarks 'fINg@mAks Kj% 3 +fingernail ,fINg@'neIl K6% 3 +fingernails ,fINg@'neIlz Kj% 3 +fingerprint 'fINg@prInt K6% 3 +fingerprints 'fINg@prInts Kj% 3 +fingers 'fINg@z Ha%,Kj% 26A +fingerstall 'fINg@stOl K6$ 3 +fingerstalls 'fINg@stOlz Kj$ 3 +fingertip 'fINg@tIp K6% 3 +fingertips 'fINg@tIps Kj% 3 +finical 'fInIkl OA$ 3 +finicky 'fInIkI OA% 3 +fining 'faInIN Hb% 26A,14 +finis 'fInIs Ki$ 2 +finish 'fInIS J1%,M7% 22A,2C,6A,6C,15B,24B +finished 'fInISt Jc%,Jd% 22A,2C,6A,6C,15B,24B +finishes 'fInISIz Ja%,Mj% 32A,2C,6A,6C,15B,24B +finishing 'fInISIN Jb% 32A,2C,6A,6C,15B,24B +finite 'faInaIt OA% 2 +finnan 'fIn@n L@$ 2 +finnan haddie ,fIn@n 'h&dI L@$ 4 +finnan haddock ,fIn@n 'h&d@k L@% 4 +fins fInz Kj% 1 +fiord fI'Od K6% 2 +fiords fI'Odz Kj% 2 +fir f3R M6% 1 +fir-cone 'f3-k@Un K6% 2 +fir-cones 'f3-k@Unz Kj% 2 +fire 'faI@R J2%,M6% 12A,2C,3A,6A,15B +fire-alarm 'faI@r-@lAm K6% 3 +fire-alarms 'faI@r-@lAmz Kj% 3 +fire-brigade 'faI@-brIgeId K6% 3 +fire-brigades 'faI@-brIgeIdz Kj% 3 +fire-control 'faI@-k@ntr@Ul L@$ 3 +fire-eater 'faI@r-it@R K6% 3 +fire-eaters 'faI@r-it@z Kj% 3 +fire-engine 'faI@r-endZIn K6% 3 +fire-engines 'faI@r-endZInz Kj% 3 +fire-escape 'faI@r-IskeIp K6% 3 +fire-escapes 'faI@r-IskeIps Kj% 3 +fire-extinguisher 'faI@r-Ik,stINwIS@R K6% 5 +fire-extinguishers 'faI@r-Ik,stINwIS@z Kj% 5 +fire-fighter 'faI@-faIt@R K6% 3 +fire-fighters 'faI@-faIt@z Kj% 3 +fire-hose 'faI@-h@Uz K6% 2 +fire-hoses 'faI@-h@UzIz Kj% 3 +fire-irons 'faI@r-aI@nz Kj$ 3 +fire-power 'faI@-paU@R L@% 3 +fire-raising 'faI@-reIzIN L@% 3 +fire-walker 'faI@-wOk@R K6% 3 +fire-walkers 'faI@-wOk@z Kj% 3 +fire-walking 'faI@-wOkIN L@% 3 +fire-watcher 'faI@-w0tS@R K6% 3 +fire-watchers 'faI@-w0tS@z Kj% 3 +fire-watching 'faI@-w0tSIN L@% 3 +firearm 'faI@rAm K6% 2 +firearms 'faI@rAmz Kj% 2 +fireball 'faI@bOl K6% 2 +fireballs 'faI@bOlz Kj% 2 +firebird 'faI@b3d K6$ 2 +firebirds 'faI@b3dz Kj$ 2 +firebomb 'faI@b0m K6% 2 +firebombs 'faI@b0mz Kj% 2 +firebox 'faI@b0ks K7$ 2 +fireboxes 'faI@b0ksIz Kj$ 3 +firebrand 'faI@br&nd K6% 2 +firebrands 'faI@br&ndz Kj% 2 +firebreak 'faI@breIk K6% 3 +firebreaks 'faI@breIks Kj% 3 +firebrick 'faI@brIk K6% 2 +firebricks 'faI@brIks Kj% 2 +firebug 'faI@bVg K6$ 2 +firebugs 'faI@bVgz Kj$ 2 +fireclay 'faI@kleI L@% 2 +firecracker 'faI@kr&k@R K6% 3 +firecrackers 'faI@kr&k@z Kj% 3 +fired 'faI@d Jc%,Jd% 12A,2C,3A,6A,15B +firedamp 'faI@d&mp L@% 2 +firedog 'faI@d0g K6$ 2 +firedogs 'faI@d0gz Kj$ 2 +fireflies 'faI@flaIz Kj% 3 +firefly 'faI@flaI K8% 3 +fireguard 'faI@gAd K6% 2 +fireguards 'faI@gAdz Kj% 2 +firelight 'faI@laIt K6% 2 +firelighter 'faI@laIt@R K6% 3 +firelighters 'faI@laIt@z Kj% 3 +firelights 'faI@laIts Kj$ 2 +fireman 'faI@m@n Ki% 2 +firemen 'faI@m@n Kj% 2 +fireplace 'faI@pleIs K6% 2 +fireplaces 'faI@pleIsIz Kj% 3 +fireproof 'faI@pruf OA% 2 +fires 'faI@z Ja%,Mj% 12A,2C,3A,6A,15B +fireside 'faI@saId K6% 2 +firesides 'faI@saIdz Kj% 2 +firestone 'faI@st@Un L@$ 2 +firewater 'faI@wOt@R L@% 4 +firewood 'faI@wUd L@% 2 +firework 'faI@w3k K6% 2 +fireworks 'faI@w3ks Kj% 2 +firing 'faI@rIN Jb% 22A,2C,3A,6A,15B +firing-line 'faIrIN-laIn K6% 3 +firing-lines 'faIrIN-laInz Kj$ 3 +firing-parties 'faIrIN-pAtIz Kj$ 4 +firing-party 'faIrIN-pAtI K8$ 4 +firing-squad 'faIrIN-skw0d K6% 3 +firing-squads 'faIrIN-skw0dz Kj% 3 +firkin 'f3kIn K6$ 2 +firkins 'f3kInz Kj$ 2 +firm f3m J0%,K6%,OC%,Pu% 1 +firmament 'f3m@m@nt K6% 3 +firmaments 'f3m@m@nts Kj$ 3 +firmed f3md Jc%,Jd% 1 +firmer 'f3m@R Or% 2 +firmest 'f3mIst Os% 2 +firming 'f3mIN Jb% 2 +firmly 'f3mlI Pu% 2 +firmness 'f3mn@s L@% 2 +firms f3mz Ja%,Kj% 1 +firs f3z Mj% 1 +first f3st K6%,OA*,Pu* 1 +first-class f3st-'klAs OA%,Pu% 2 +first-fruits f3st-'fruts Kj% 2 +first-hand f3st-'h&nd OA%,Pu% 2 +first-nighter f3st-'naIt@R K6% 3 +first-nighters f3st-'naIt@z Kj% 3 +first-rate f3st-'reIt OA%,Pu% 2 +firstborn 'f3stbOn K6%,OA% 2 +firstborns 'f3stbOnz Kj$ 2 +firstly 'f3stlI Pu% 2 +firsts f3sts Kj$ 1 +firth f3T K6$ 1 +firths f3Ts Kj$ 1 +fiscal 'fIskl OA% 2 +fish fIS J1%,M9% 12A,2C,6A,15A,15B +fish-hook 'fIS-hUk K6% 2 +fish-hooks 'fIS-hUks Kj% 2 +fish-knife 'fIS-naIf Ki% 2 +fish-knives 'fIS-naIvz Kj% 2 +fish-slice 'fIS-slaIs K6% 2 +fish-slices 'fIS-slaIsIz Kj% 3 +fishball 'fISbOl K6$ 2 +fishballs 'fISbOlz Kj$ 2 +fishbone 'fISb@Un K6% 2 +fishbones 'fISb@Unz Kj% 2 +fishcake 'fISkeIk K6% 2 +fishcakes 'fISkeIks Kj% 2 +fished fISt Jc%,Jd% 12A,2C,6A,15A,15B +fisher 'fIS@R K6% 2 +fisheries 'fIS@rIz Kj% 3 +fisherman 'fIS@m@n Ki% 3 +fishermen 'fIS@m@n Kj% 3 +fishers 'fIS@z Kj% 2 +fishery 'fIS@rI K8% 3 +fishes 'fISIz Ja%,Kj% 22A,2C,6A,15A,15B +fishier 'fISI@R Or% 3 +fishiest 'fISIIst Os% 3 +fishing 'fISIN Jb%,L@% 22A,2C,6A,15A,15B +fishing-line 'fISIN-laIn K6% 3 +fishing-lines 'fISIN-laInz Kj% 3 +fishing-rod 'fISIN-r0d K6% 3 +fishing-rods 'fISIN-r0dz Kj% 3 +fishing-tackle 'fISIN-t&kl L@% 4 +fishmonger 'fISmVNg@R K6% 3 +fishmongers 'fISmVNg@z Kj% 3 +fishpaste 'fISpeIst M6% 2 +fishpastes 'fISpeIsts Mj% 2 +fishplate 'fISpleIt K6$ 2 +fishplates 'fISpleIts Kj$ 2 +fishwife 'fISwaIf Ki% 2 +fishwives 'fISwaIvz Kj% 2 +fishy 'fISI OD% 2 +fissile 'fIsaIl OA$ 2 +fission 'fISn L@% 2 +fissionable 'fISn@bl OA$ 4 +fissiparous fI'sIp@r@s OA$ 4 +fissure 'fIS@R K6% 2 +fissures 'fIS@z Kj% 2 +fist fIst K6% 1 +fisticuffs 'fIstIkVfs Kj% 3 +fists fIsts Kj% 1 +fistula 'fIstjUl@ K6$ 3 +fistulas 'fIstjUl@z Kj$ 3 +fit fIt J4%,K6%,OE% 12A,2C,6A,14,15A,15B,16A +fitful 'fItf@l OA% 2 +fitfully 'fItf@lI Pu% 3 +fitly 'fItlI Pu$ 2 +fitment 'fItm@nt K6$ 2 +fitments 'fItm@nts Kj% 2 +fitness 'fItn@s L@% 2 +fits fIts Ja%,Kj% 12A,2C,6A,14,15A,15B,16A +fitted 'fItId Jc%,Jd% 22A,2C,6A,14,15A,15B,16A +fitter 'fIt@R K6%,Or% 2 +fitters 'fIt@z Kj% 2 +fittest 'fItIst Os% 2 +fitting 'fItIN Jb%,K6%,OA% 22A,2C,6A,14,15A,15B,16A +fittings 'fItINz Kj% 2 +five faIv K6%,OA* 1 +fivefold 'faIvf@Uld OA% 2 +fivepence 'faIvp@ns K6% 2 +fivepences 'faIvp@nsIz Kj$ 3 +fivepenny 'faIvp@nI OA% 3 +fiver 'faIv@R K6% 2 +fivers 'faIv@z Kj% 2 +fives faIvz Kj%,Lk$ 1 +fix fIks J1%,K7% 13A,6A,14,15A,15B +fixate fIk'seIt H2% 26A +fixated fIk'seItId Hc%,Hd% 36A +fixates fIk'seIts Ha% 26A +fixating fIk'seItIN Hb% 36A +fixation fIk'seISn M6% 3 +fixations fIk'seISnz Mj% 3 +fixative 'fIks@tIv K6% 3 +fixatives 'fIks@tIvz Kj% 3 +fixed fIkst Jc%,Jd%,OA% 13A,6A,14,15A,15B +fixedly 'fIksIdlI Pu% 3 +fixes 'fIksIz Ja%,Kj% 23A,6A,14,15A,15B +fixing 'fIksIN Jb% 23A,6A,14,15A,15B +fixture 'fIkstS@R K6% 2 +fixtures 'fIkstS@z Kj% 2 +fizz fIz I1%,L@% 12A,2C +fizzed fIzd Ic%,Id% 12A,2C +fizzes 'fIzIz Ia% 22A,2C +fizzier 'fIzI@R Or% 3 +fizziest 'fIzIIst Os% 3 +fizzing 'fIzIN Ib% 22A,2C +fizzle 'fIzl I2% 22A,2C +fizzled 'fIzld Ic%,Id% 22A,2C +fizzles 'fIzlz Ia% 22A,2C +fizzling 'fIzlIN Ib% 22A,2C +fizzy 'fIzI OD% 2 +fjord fI'Od K6$ 2 +fjords fI'Odz Kj$ 2 +flabbergast 'fl&b@gAst H0$ 36A +flabbergasted 'fl&b@gAstId Hc$,Hd% 46A +flabbergasting 'fl&b@gAstIN Hb$ 46A +flabbergasts 'fl&b@gAsts Ha$ 36A +flabbier 'fl&bI@R Or% 3 +flabbiest 'fl&bIIst Os% 3 +flabbily 'fl&bIlI Pu% 3 +flabbiness 'fl&bIn@s L@% 3 +flabby 'fl&bI OD% 2 +flaccid 'fl&ksId OA% 2 +flaccidity fl&k'sIdItI L@$ 4 +flag fl&g J4%,K6% 12A,6A,15B +flag-captain 'fl&g-k&ptIn K6$ 3 +flag-captains 'fl&g-k&ptInz Kj$ 3 +flag-day 'fl&g-deI K6% 2 +flag-days 'fl&g-deIz Kj% 2 +flagellant 'fl&dZ@l@nt K6$ 3 +flagellants 'fl&dZ@l@nts Kj$ 3 +flagellate 'fl&dZ@leIt H2% 36A +flagellated 'fl&dZ@leItId Hc%,Hd% 46A +flagellates 'fl&dZ@leIts Ha% 36A +flagellating 'fl&dZ@leItIN Hb% 46A +flagellation ,fl&dZ@'leISn K6% 4 +flagellations ,fl&dZ@'leISnz Kj$ 4 +flageolet ,fl&dZ@U'let K6$ 3 +flageolets ,fl&dZ@U'lets Kj$ 3 +flagged fl&gd Jc%,Jd% 12A,6A,15B +flagging 'fl&gIN Jb% 22A,6A,15B +flagon 'fl&g@n K6% 2 +flagons 'fl&g@nz Kj% 2 +flagpole 'fl&gp@Ul K6% 2 +flagpoles 'fl&gp@Ulz Kj% 2 +flagrant 'fleIgr@nt OA% 2 +flagrantly 'fleIgr@ntlI Pu% 3 +flags fl&gz Ja%,Kj% 12A,6A,15B +flagship 'fl&gSIp K6% 2 +flagships 'fl&gSIps Kj% 2 +flagstaff 'fl&gstAf K6% 2 +flagstaffs 'fl&gstAfs Kj% 2 +flagstone 'fl&gst@Un K6% 2 +flagstones 'fl&gst@Unz Kj% 2 +flail fleIl H0%,K6% 16A +flailed fleIld Hc%,Hd% 16A +flailing 'fleIlIN Hb% 26A +flails fleIlz Ha%,Kj% 16A +flair fle@R M6% 1 +flairs fle@z Mj$ 1 +flak fl&k L@% 1 +flake fleIk I2%,K6% 12A,2C +flaked fleIkt Ic%,Id% 12A,2C +flakes fleIks Ia%,Kj% 12A,2C +flakier 'fleIkI@R Or% 3 +flakiest 'fleIkIIst Os% 3 +flakiness 'fleIkIn@s L@% 3 +flaking 'fleIkIN Ib% 22A,2C +flaky 'fleIkI OD% 2 +flambeau 'fl&mb@U K6$ 2 +flambeaus 'fl&mb@Uz Kj$ 2 +flambeaux 'fl&mb@Uz Kj$ 2 +flamboyance fl&m'boI@ns L@% 3 +flamboyant fl&m'boI@nt OA% 3 +flamboyantly fl&m'boI@ntlI Pu% 4 +flame fleIm I2%,M6% 12A,2C +flamed fleImd Ic%,Id% 12A,2C +flames fleImz Ia%,Mj% 12A,2C +flamethrower 'fleImTr@U@R K6% 3 +flamethrowers 'fleImTr@U@z Kj% 3 +flaming 'fleImIN Ib%,OA% 22A,2C +flamingo fl@'mINg@U K6% 3 +flamingoes fl@'miNg@Uz Kj% 3 +flamingos fl@'mINg@Uz Kj% 3 +flammable 'fl&m@bl OA% 3 +flan fl&n K6% 1 +flange fl&ndZ K6% 1 +flanges 'fl&ndZIz Kj% 2 +flank fl&Nk H0%,K6% 16A +flanked fl&Nkt Hc%,Hd% 16A +flanking 'fl&NkIN Hb% 26A +flanks fl&Nks Ha%,Kj% 16A +flannel 'fl&nl M6% 2 +flannelette ,fl&n@'let L@% 3 +flannels 'fl&nlz Mj% 2 +flans fl&nz Kj% 1 +flap fl&p J4%,K6% 12A,2C,6A,15B +flapjack 'fl&pdZ&k M6% 2 +flapjacks 'fl&pdZ&ks Mj$ 2 +flapped fl&pt Jc%,Jd% 12A,2C,6A,15B +flapper 'fl&p@R K6$ 2 +flappers 'fl&p@z Kj$ 2 +flapping 'fl&pIN Jb% 22A,2C,6A,15B +flaps fl&ps Ja%,Kj% 12A,2C,6A,15B +flare fle@R J2%,M6% 12A,2C,6A +flare-path 'fle@-pAT K6$ 2 +flare-paths 'fle@-pADz Kj$ 2 +flare-up 'fle@r-Vp K6% 2 +flare-ups 'fle@r-Vps Kj% 2 +flared fle@d Jc%,Jd% 12A,2C,6A +flares fle@z Ja%,Mj% 12A,2C,6A +flaring 'fle@rIN Jb% 22A,2C,6A +flash fl&S J1%,K7% 12A,2C,6A,12C,15A +flashback 'fl&Sb&k K6% 2 +flashbacks 'fl&Sb&ks Kj% 2 +flashbulb 'fl&SbVlb K6% 2 +flashbulbs 'fl&SbVlbz Kj% 2 +flashed fl&St Jc%,Jd% 12A,2C,6A,12C,15A +flashes 'fl&SIz Ja%,Kj% 22A,2C,6A,12C,15A +flashgun 'fl&SgVn K6% 2 +flashguns 'fl&SgVnz Kj% 2 +flashier 'fl&SI@R Or% 3 +flashiest 'fl&SIIst Os% 3 +flashily 'fl&SIlI Pu% 3 +flashing 'fl&SIN Jb% 22A,2C,6A,12C,15A +flashlight 'fl&SlaIt K6% 2 +flashlights 'fl&SlaIts Kj% 2 +flashpoint 'fl&SpoInt K6% 2 +flashpoints 'fl&SpoInts Kj% 2 +flashy 'fl&SI OD% 2 +flask flAsk K6% 1 +flasks flAsks Kj% 1 +flat fl&t K6%,OE%,Pu% 1 +flat-bottomed fl&t-'b0t@md OA% 3 +flat-car 'fl&t-kAR K6$ 2 +flat-cars 'fl&t-kAz Kj$ 2 +flat-footed fl&t-'fUtId OA% 3 +flat-iron 'fl&t-aI@n K6% 3 +flat-irons 'fl&t-aI@nz Kj% 3 +flatfish 'fl&tfIS K9% 2 +flatfishes 'fl&tfISIz Kj% 3 +flatlet 'fl&tlIt K6$ 2 +flatlets 'fl&tlIts Kj$ 2 +flatly 'fl&tlI Pu% 2 +flatness 'fl&tn@s L@% 2 +flats fl&ts Kj% 1 +flatten 'fl&tn J0% 22A,2C,6A,15A,15B +flattened 'fl&tnd Jc%,Jd% 22A,2C,6A,15A,15B +flattening 'fl&tnIN Jb% 32A,2C,6A,15A,15B +flattens 'fl&tnz Ja% 22A,2C,6A,15A,15B +flatter 'fl&t@R H0%,Or% 26A +flattered 'fl&t@d Hc%,Hd% 26A +flatterer 'fl&t@r@R K6% 3 +flatterers 'fl&t@r@z Kj% 3 +flatteries 'fl&t@rIz Mj% 3 +flattering 'fl&t@rIN Hb% 36A +flatters 'fl&t@z Ha% 26A +flattery 'fl&t@rI M8% 3 +flattest 'fl&tIst Os% 2 +flattop 'fl&t+t0p K6$ 2 +flattops 'fl&t+t0ps Kj$ 2 +flatulence 'fl&tjUl@ns L@% 3 +flaunt flOnt J0% 12A,2C,6A +flaunted 'flOntId Jc%,Jd% 22A,2C,6A +flaunting 'flOntIN Jb% 22A,2C,6A +flaunts flOnts Ja% 12A,2C,6A +flautist 'flOtIst K6% 2 +flautists 'flOtIsts Kj% 2 +flavour 'fleIv@R H0%,M6% 26A +flavoured 'fleIv@d Hc%,Hd% 26A +flavouring 'fleIv@rIN Hb%,M6% 36A +flavourings 'fleIv@rINz Mj% 3 +flavourless 'fleIv@l@s OA% 3 +flavours 'fleIv@z Ha%,Mj% 26A +flaw flO K6% 1 +flawed flOd OA% 1 +flawless 'flOl@s OA% 2 +flawlessly 'flOl@slI Pu% 3 +flaws flOz Kj% 1 +flax fl&ks L@$ 1 +flaxen 'fl&ksn OA% 2 +flay fleI H0% 16A +flayed fleId Hc%,Hd% 16A +flaying 'fleIIN Hb$ 26A +flays fleIz Ha$ 16A +flea fli K6% 1 +flea-bite 'fli-baIt K6% 2 +flea-bites 'fli-baIts Kj% 2 +flea-bitten 'fli-bItn OA% 3 +fleapit 'flipIt K6% 2 +fleapits 'flipIts Kj% 2 +fleas fliz Kj% 1 +fleck flek H0$,K6% 16A +flecked flekt Hc$,Hd% 16A +flecking 'flekIN Hb$ 26A +flecks fleks Ha$,Kj$ 16A +fled fled Jc%,Jd% 12A,2C,6A +fledged fledZd OA$ 1 +fledgeling 'fledZlIN K6% 2 +fledgelings 'fledZlINz Kj% 2 +fledgling 'fledZlIN K6% 2 +fledglings 'fledZlINz Kj% 2 +flee fli J5% 12A,2C,6A +fleece flis H2%,M6% 16A,14 +fleeced flist Hc%,Hd% 16A,14 +fleeces 'flisIz Ha%,Mj% 26A,14 +fleecier 'flisI@R Or$ 3 +fleeciest 'flisIIst Os$ 3 +fleecing 'flisIN Hb% 26A,14 +fleecy 'flisI OD% 2 +fleeing 'fliIN Jb% 22A,2C,6A +flees fliz Ja% 12A,2C,6A +fleet flit K6%,OC% 1 +fleeter 'flit@R Or$ 2 +fleetest 'flitIst Os$ 2 +fleeting 'flitIN OA% 2 +fleetly 'flitlI Pu$ 2 +fleetness 'flitn@s L@% 2 +fleets flits Kj% 1 +flesh fleS L@% 1 +flesh-wound 'fleS-wund K6% 2 +flesh-wounds 'fleS-wundz Kj% 2 +fleshier 'fleSI@R Or$ 3 +fleshiest 'fleSIIst Os$ 3 +fleshings 'fleSINz Kj$ 2 +fleshly 'fleSlI OA$ 2 +fleshpots 'fleSp0ts Kj% 2 +fleshy 'fleSI OD% 2 +fleur-de-lis ,fl3-d@-'li Ki$ 3 +fleur-de-lys ,fl3-d@-'li Ki% 3 +fleurs-de-lis ,fl3-d@-'li Kj$ 3 +fleurs-de-lys ,fl3-d@-'li Kj$ 3 +flew flu Jc% 12A,2B,2C,2D,4A,6A,15A,15B +flex fleks H1%,M7% 16A +flexed flekst Hc%,Hd% 16A +flexes 'fleksIz Ha%,Mj% 26A +flexibility ,fleks@'bIlItI L@% 5 +flexible 'fleks@bl OA% 3 +flexibly 'fleks@blI Pu% 3 +flexing 'fleksIN Hb% 26A +flibbertigibbet ,flIb@tI'dZIbIt K6$ 5 +flibbertigibbets ,flIb@tI'dZIbIts Kj$ 5 +flick flIk H0%,K6% 16A,15A,15B,22 +flick-knife 'flIk-naIf Ki% 2 +flick-knives 'flIk-naIvz Kj% 2 +flicked flIkt Hc%,Hd% 16A,15A,15B,22 +flicker 'flIk@R I0%,K6% 22A,2C +flickered 'flIk@d Ic%,Id% 22A,2C +flickering 'flIk@rIN Ib% 32A,2C +flickers 'flIk@z Ia%,Kj% 22A,2C +flicking 'flIkIN Hb% 26A,15A,15B,22 +flicks flIks Ha%,Kj% 16A,15A,15B,22 +flier 'flaI@R K6% 2 +fliers 'flaI@z Kj% 2 +flies flaIz Ja%,Kj% 12A,2B,2C,2D,4A,6A,15A,15B +flight flaIt H0$,M6% 16A +flighted 'flaItId Hc%,Hd% 26A +flighting 'flaItIN Hb$ 26A +flightless 'flaItl@s OA% 2 +flights flaIts Ha$,Mj% 16A +flighty 'flaItI OA% 2 +flimsier 'flImzI@R Or% 3 +flimsiest 'flImzIIst Os% 3 +flimsily 'flImzIlI Pu% 3 +flimsiness 'flImsIn@s L@% 3 +flimsy 'flImzI L@%,OD% 2 +flinch flIntS I1% 12A,3A +flinched flIntSt Ic%,Id% 12A,3A +flinches 'flIntSIz Ia% 22A,3A +flinching 'flIntSIN Ib% 22A,3A +fling flIN J5%,K6% 12C,6A,12A,13A,15A,15B,22 +flinging 'flININ Jb% 22C,6A,12A,13A,15A,15B,22 +flings flINz Ja%,Kj% 12C,6A,12A,13A,15A,15B,22 +flint flInt M6% 1 +flintier 'flIntI@R Or$ 3 +flintiest 'flIntIIst Os$ 3 +flints flInts Mj% 1 +flintstone 'flIntst@Un L@% 2 +flinty 'flIntI OD% 2 +flip flIp J4%,K6%,OA% 16A,15A,15B +flippancies 'flIp@nsIz Mj$ 3 +flippancy 'flIp@nsI M8% 3 +flippant 'flIp@nt OA% 2 +flippantly 'flIp@ntlI Pu% 3 +flipped flIpt Jc%,Jd% 16A,15A,15B +flipper 'flIp@R K6% 2 +flippers 'flIp@z Kj% 2 +flipping 'flIpIN Jb% 26A,15A,15B +flips flIps Ja%,Kj% 16A,15A,15B +flirt fl3t I0%,K6% 12A,3A +flirtation fl3'teISn M6% 3 +flirtations fl3'teISnz Mj% 3 +flirtatious fl3'teIS@s OA% 3 +flirted 'fl3tId Ic%,Id% 22A,3A +flirting 'fl3tIN Ib% 22A,3A +flirts fl3ts Ia%,Kj% 12A,3A +flit flIt I4%,K6% 12C +flits flIts Ia%,Kj% 12C +flitted 'flItId Ic%,Id% 22C +flitting 'flItIN Ib% 22C +float fl@Ut J0%,K6% 12A,2C,6A,15A,15B +floatation fl@U'teISn M6% 3 +floatations fl@U'teISnz Mj$ 3 +floated 'fl@UtId Jc%,Jd% 22A,2C,6A,15A,15B +floating 'fl@UtIN Jb%,OA% 22A,2C,6A,15A,15B +floats fl@Uts Ja%,Kj% 12A,2C,6A,15A,15B +flock fl0k I0%,K6% 12C,4A +flocked fl0kt Ic%,Id% 12C,4A +flocking 'fl0kIN Ib% 22C,4A +flocks fl0ks Ia%,Kj% 12C,4A +floe fl@U K6$ 1 +floes fl@Uz Kj$ 1 +flog fl0g H4% 16A +flogged fl0gd Hc%,Hd% 16A +flogging 'fl0gIN Hb%,M6% 26A +floggings 'fl0gINz Mj% 2 +flogs fl0gz Ha% 16A +flood flVd J0%,K6% 13A,6A,14,15B,16A +flood-tide flVd-'taId K6% 2 +flood-tides flVd-'taIdz Kj% 2 +flooded 'flVdId Jc%,Jd% 23A,6A,14,15B,16A +floodgate 'flVdgeIt K6% 2 +floodgates 'flVdgeIts Kj% 2 +flooding 'flVdIN Jb% 23A,6A,14,15B,16A +floodlight 'flVdlaIt H0% 2 +floodlighted 'flVdlaItId Hc$,Hd$ 3 +floodlighting 'flVdlaItIN Hb% 3 +floodlights 'flVdlaIts Ha%,Kj% 2 +floodlit 'flVdlIt Hc%,Hd% 2 +floods flVdz Ja%,Kj% 13A,6A,14,15B,16A +floor flOR H0%,K6% 16A +floor-walker 'flO-wOk@R K6% 3 +floor-walkers 'flO-wOk@z Kj% 3 +floorboard 'flObOd K6% 2 +floorboards 'flObOdz Kj% 2 +floored flOd Hc%,Hd% 16A +flooring 'flOrIN Hb%,L@% 26A +floors flOz Ha%,Kj% 16A +floozie 'fluzI K6$ 2 +floozies 'fluzIz Kj$ 2 +floozy 'fluzI K8$ 2 +flop fl0p J4%,K6%,Pu% 12A,2C,15A,15B +flopped fl0pt Jc%,Jd% 12A,2C,15A,15B +floppier 'fl0pI@R Or% 3 +floppiest 'fl0pIIst Os% 3 +flopping 'fl0pIN Jb% 22A,2C,15A,15B +floppy 'fl0pI OD% 2 +flops fl0ps Ja%,Kj% 12A,2C,15A,15B +flora 'flOr@ Kj% 2 +floral 'flOr@l OA% 2 +floriculture 'flOrIkVltS@R L@$ 4 +florid 'fl0rId OA% 2 +floridly 'fl0rIdlI Pu$ 3 +florin 'fl0rIn K6$ 2 +florins 'fl0rInz Kj$ 2 +florist 'fl0rIst K6% 2 +florists 'fl0rIsts Kj% 2 +floss fl0s L@% 1 +flotation fl@U'teISn M6% 3 +flotations fl@U'teISnz Mj% 3 +flotilla fl@'tIl@ K6% 3 +flotillas fl@'tIl@z Kj% 3 +flotsam 'fl0ts@m L@% 2 +flounce flaUns J2%,K6% 12C,6A +flounced flaUnst Jc%,Jd% 12C,6A +flounces 'flaUnsIz Ja%,Kj% 22C,6A +flouncing 'flaUnsIN Jb% 22C,6A +flounder 'flaUnd@R I0%,K6% 22A,2C +floundered 'flaUnd@d Ic%,Id% 22A,2C +floundering 'flaUnd@rIN Ib% 32A,2C +flounders 'flaUnd@z Ia%,Kj% 22A,2C +flour 'flaU@R H0%,L@% 26A +floured 'flaU@d Hc%,Hd% 26A +flourier 'flaU@rI@R Or$ 4 +flouriest 'flaU@rIIst Os$ 4 +flouring 'flaU@rIN Hb$ 36A +flourish 'flVrIS J1%,K7% 22A,6A +flourished 'flVrISt Jc%,Jd% 22A,6A +flourishes 'flVrISIz Ja%,Kj% 32A,6A +flourishing 'flVrISIN Jb% 32A,6A +flours 'flaU@z Ha$ 26A +floury 'flaU@rI OD% 3 +flout flaUt H0% 16A +flouted 'flaUtId Hc%,Hd% 26A +flouting 'flaUtIN Hb% 26A +flouts flaUts Ha% 16A +flow fl@U I0%,Ki% 12A,2C +flowed fl@Ud Ic%,Id% 12A,2C +flower 'flaU@R I0%,K6% 22A,2C +flower-girl 'flaU@-g3l K6% 3 +flower-girls 'flaU@-g3lz Kj% 3 +flowerbed 'flaU@bed K6% 3 +flowerbeds 'flaU@bedz Kj% 3 +flowered 'flaU@d Ic%,Id%,OA% 22A,2C +flowerier 'flaU@rI@R Or% 4 +floweriest 'flaU@rIIst Os% 4 +flowering 'flaU@rIN Ib% 32A,2C +flowerless 'flaU@l@s OA$ 3 +flowerpot 'flaU@p0t K6% 3 +flowerpots 'flaU@p0ts Kj% 3 +flowers 'flaU@z Ia%,Kj% 22A,2C +flowery 'flaU@rI OD% 3 +flowing 'fl@UIN Ib% 22A,2C +flown fl@Un Jd% 12A,2B,2C,2D,4A,6A,15A,15B +flows fl@Uz Ia% 12A,2C +flu flu L@% 1 +fluctuate 'flVktSUeIt I2% 32A,2C +fluctuated 'flVktSUeItId Ic%,Id% 42A,2C +fluctuates 'flVktSUeIts Ia% 32A,2C +fluctuating 'flVktSUeItIN Ib% 42A,2C +fluctuation ,flVktSU'eISn M6% 4 +fluctuations ,flVktSU'eISnz Mj% 4 +flue flu K6% 1 +fluency 'flu@nsI L@% 3 +fluent 'flu@nt OA% 2 +fluently 'flu@ntlI Pu% 3 +flues fluz Kj% 1 +fluff flVf H0%,L@% 16A,15B +fluffed flVft Hc%,Hd% 16A,15B +fluffier 'flVfI@R Or% 3 +fluffiest 'flVfIIst Os% 3 +fluffing 'flVfIN Hb% 26A,15B +fluffs flVfs Ha% 16A,15B +fluffy 'flVfI OD% 2 +fluid 'fluId M6%,OA% 2 +fluidities flu'IdItIz Mj$ 4 +fluidity flu'IdItI M8% 4 +fluids 'fluIdz Mj% 2 +fluke fluk K6% 1 +flukes fluks Kj% 1 +flume flum K6$ 1 +flumes flumz Kj$ 1 +flummox 'flVm@ks H1$ 26A +flummoxed 'flVm@kst Hc$,Hd% 26A +flummoxes 'flVm@ksIz Ha$ 36A +flummoxing 'flVm@ksIN Hb$ 36A +flung flVN Jc%,Jd% 12C,6A,12A,13A,15A,15B,22 +flunk flVNk J0% 12A,2C,6A,15B +flunked flVNkt Jc%,Jd% 12A,2C,6A,15B +flunkey 'flVNkI K6% 2 +flunkeys 'flVNkIz Kj% 2 +flunkies 'flVNkIz Kj$ 2 +flunking 'flVNkIN Jb% 22A,2C,6A,15B +flunks flVNks Ja% 12A,2C,6A,15B +flunky 'flVNkI K8$ 2 +fluorescence flU@'resns M6% 4 +fluorescences flU@'resnsIz Mj$ 5 +fluorescent flU@'resnt OA% 4 +fluoridate 'flU@rIdeIt H2% 46A +fluoridated 'flU@rIdeItId Hc%,Hd% 56A +fluoridates 'flU@rIdeIts Ha% 46A +fluoridating 'flU@rIdeItIN Hb% 56A +fluoridation ,flU@rI'deISn K6% 5 +fluoridations ,flU@rI'deISnz Kj$ 5 +fluoride 'flU@raId M6% 3 +fluorides 'flU@raIdz Mj$ 3 +fluoridization ,flU@rIdaI'zeISn K6$ 6 +fluoridizations ,flU@rIdaI'zeISnz Kj$ 6 +fluoridize 'flU@rIdaIz H2$ 4 +fluoridized 'flU@rIdaIzd Hc$,Hd$ 4 +fluoridizes 'flU@rIdaIzIz Ha$ 5 +fluoridizing 'flU@rIdaIzIN Hb$ 5 +fluorine 'flU@rin L@% 3 +flurried 'flVrId Hc%,Hd% 26A +flurries 'flVrIz Ha$,Kj% 26A +flurry 'flVrI H3$,K8% 26A +flurrying 'flVrIIN Hb$ 36A +flush flVS J1%,M7%,OA% 12A,2C,2D,6A,14 +flushed flVSt Jc%,Jd% 12A,2C,2D,6A,14 +flushes 'flVSIz Ja%,Mj% 22A,2C,2D,6A,14 +flushing 'flVSIN Jb% 22A,2C,2D,6A,14 +fluster 'flVst@R H0%,K6% 26A +flustered 'flVst@d Hc%,Hd% 26A +flustering 'flVst@rIN Hb% 36A +flusters 'flVst@z Ha%,Kj% 26A +flute flut J2%,K6% 16A +fluted 'flutId Jc%,Jd% 26A +flutes fluts Ja%,Kj% 16A +fluting 'flutIN Jb%,L@% 26A +flutist 'flutIst K6$ 2 +flutists 'flutIsts Kj$ 2 +flutter 'flVt@R J0%,M6% 22A,2C,6A,15A,15B +fluttered 'flVt@d Jc%,Jd% 22A,2C,6A,15A,15B +fluttering 'flVt@rIN Jb% 32A,2C,6A,15A,15B +flutters 'flVt@z Ja%,Mj% 22A,2C,6A,15A,15B +fluvial 'fluvI@l OA$ 3 +flux flVks M7% 1 +fluxes 'flVksIz Mj$ 2 +fly flaI J5%,K8%,OA% 12A,2B,2C,2D,4A,6A,15A,15B +fly-fish 'flaI-fIS I1% 22A +fly-fished 'flaI-fISt Ic%,Id% 22A +fly-fishes 'flaI-fISIz Ia% 32A +fly-fishing 'flaI-fISIN Ib%,L@% 32A +fly-swat 'flaI-sw0t K6% 2 +fly-swats 'flaI-sw0ts Kj$ 2 +fly-swatter 'flaI-sw0t@R K6% 3 +fly-swatters 'flaI-sw0t@z Kj% 3 +flyblown 'flaIbl@Un OA% 2 +flycatcher 'flaIk&tS@R K6% 3 +flycatchers 'flaIk&tS@z Kj% 3 +flyer 'flaI@R K6% 2 +flyers 'flaI@z Kj% 2 +flying 'flaIIN Jb%,OA% 22A,2B,2C,2D,4A,6A,15A,15B +flying-bomb 'flaIIN-b0m K6% 3 +flying-bombs 'flaIIN-b0mz Kj% 3 +flying-fish 'flaIIN-fIS K9% 3 +flying-fishes 'flaIIN-fISIz Kj% 4 +flying-fox 'flaIIN-f0ks K7$ 3 +flying-foxes 'flaIIN-f0ksIz Kj$ 4 +flying-squad 'flaIIN-skw0d K6% 3 +flying-squads 'flaIIN-skw0dz Kj$ 3 +flyleaf 'flaIlif Ki% 2 +flyleaves 'flaIlivz Kj% 2 +flyover 'flaI@Uv@R K6% 3 +flyovers 'flaI@Uv@z Kj% 3 +flypaper 'flaIpeIp@R K6% 3 +flypapers 'flaIpeIp@z Kj% 3 +flypast 'flaIpAst K6% 2 +flypasts 'flaIpAsts Kj% 2 +flytrap 'flaItr&p K6% 2 +flytraps 'flaItr&ps Kj% 2 +flyweight 'flaIweIt K6% 2 +flyweights 'flaIweIts Kj% 2 +flywheel 'flaIwil K6% 2 +flywheels 'flaIwilz Kj% 2 +fo'c'sle 'f@Uksl K6$ 2 +fo'c'sles 'f@Ukslz Kj$ 2 +foal f@Ul I0$,K6% 12A +foaled f@Uld Ic$,Id$ 12A +foaling 'f@UlIN Ib$ 22A +foals f@Ulz Ia$,Kj% 12A +foam f@Um I0%,M6% 12A,2C +foam-rubber f@Um-'rVb@R L@% 3 +foamed f@Umd Ic%,Id% 12A,2C +foamier 'f@UmI@R Or$ 3 +foamiest 'f@UmIIst Os$ 3 +foaming 'f@UmIN Ib% 22A,2C +foams f@Umz Ia%,Mj% 12A,2C +foamy 'f@UmI OD% 2 +fob f0b H4% 115B +fobbed f0bd Hc%,Hd% 115B +fobbing 'f0bIN Hb% 215B +fobs f0bz Ha% 115B +focal 'f@Ukl OA% 2 +foci 'f@UsaI Kj$ 2 +focus 'f@Uk@s J1%,K7% 22A,2C,6A,14 +focused 'f@Uk@st Jc%,Jd% 22A,2C,6A,14 +focuses 'f@Uk@sIz Ja%,Kj% 32A,2C,6A,14 +focusing 'f@Uk@sIN Jb% 32A,2C,6A,14 +focussed 'f@Uk@st Jc%,Jd% 22A,2C,6A,14 +focussing 'f@Uk@sIN Jb% 32A,2C,6A,14 +fodder 'f0d@R L@% 2 +foe f@U K6% 1 +foes f@Uz Kj% 1 +foetal 'fitl OA% 2 +foetus 'fit@s K7% 2 +foetuses 'fit@sIz Kj% 3 +fog f0g H4%,M6% 1 +fogbank 'f0gb&Nk K6$ 2 +fogbanks 'f0gb&Nks Kj$ 2 +fogbound 'f0gbaUnd OA% 2 +fogey 'f@UgI K6% 2 +fogeys 'f@UgIz Kj% 2 +fogged f0gd Hc%,Hd% 1 +foggier 'f0gI@R Or% 3 +foggiest 'f0gIIst Os% 3 +fogging 'f0gIN Hb% 2 +foggy 'f0gI OD% 2 +foghorn 'f0ghOn K6% 2 +foghorns 'f0ghOnz Kj% 2 +foglamp 'f0gl&mp K6% 2 +foglamps 'f0gl&mps Kj% 2 +fogs f0gz Ha%,Mj% 1 +fogsignal 'f0gsIgn@l K6% 3 +fogsignals 'f0gsIgn@lz Kj% 3 +foible 'foIbl K6$ 2 +foibles 'foIblz Kj% 2 +foil foIl H0%,M6% 16A +foiled foIld Hc%,Hd% 16A +foiling 'foIlIN Hb% 26A +foils foIlz Ha%,Mj% 16A +foist foIst H0% 114,15A +foisted 'foIstId Hc%,Hd% 214,15A +foisting 'foIstIN Hb% 214,15A +foists foIsts Ha% 114,15A +fold f@Uld J0%,K6% 12A,2C,6A,15A,15B +folded 'f@UldId Jc%,Jd% 22A,2C,6A,15A,15B +folder 'f@Uld@R K6% 2 +folders 'f@Uld@z Kj% 2 +folding 'f@UldIN Jb% 22A,2C,6A,15A,15B +folds f@Uldz Ja%,Kj% 12A,2C,6A,15A,15B +foliage 'f@UlIIdZ L@% 3 +folio 'f@UlI@U K6% 3 +folios 'f@UlI@Uz Kj% 3 +folk f@Uk K6% 1 +folk-dance 'f@Uk-dAns K6% 2 +folk-dances 'f@Uk-dAnsIz Kj% 3 +folklore 'f@UklOR L@% 2 +folks f@Uks Kj% 1 +folksong 'f@Uks0N K6% 2 +folksongs 'f@Uks0Nz Kj% 2 +folksy 'f@UksI OA% 2 +folktale 'f@UkteIl K6% 2 +folktales 'f@UkteIlz Kj% 2 +follies 'f0lIz Mj% 2 +follow 'f0l@U J0% 22A,2B,2C,6A,15B +follow-on ,f0l@U-'0n K6% 3 +follow-ons ,f0l@U-'0nz Kj$ 3 +follow-through ,f0l@U-'Tru K6% 3 +follow-throughs ,f0l@U-'Truz Kj$ 3 +follow-up 'f0l@U-Vp K6% 3 +follow-ups 'f0l@U-Vps Kj$ 3 +followed 'f0l@Ud Jc%,Jd% 22A,2B,2C,6A,15B +follower 'f0l@U@R K6% 3 +followers 'f0l@U@z Kj% 3 +following 'f0l@UIN Jb*,K6%,OA* 32A,2B,2C,6A,15B +followings 'f0l@UINz Kj% 3 +follows 'f0l@Uz Ja% 22A,2B,2C,6A,15B +folly 'f0lI M8% 2 +foment f@U'ment H0$ 26A +fomentation ,f@Umen'teISn M6$ 4 +fomentations ,f@Umen'teISnz Mj$ 4 +fomented f@U'mentId Hc$,Hd$ 36A +fomenting f@U'mentIN Hb$ 36A +foments f@U'ments Ha$ 26A +fond f0nd OC% 1 +fondant 'f0nd@nt K6% 2 +fondants 'f0nd@nts Kj% 2 +fonder 'f0nd@R Or% 2 +fondest 'f0ndIst Os% 2 +fondle 'f0ndl H2% 26A +fondled 'f0ndld Hc%,Hd% 26A +fondles 'f0ndlz Ha% 26A +fondling 'f0ndlIN Hb% 26A +fondly 'f0ndlI Pu% 2 +fondness 'f0ndn@s L@% 2 +font f0nt K6% 1 +fonts f0nts Kj% 1 +food fud M6* 1 +foodless 'fudl@s OA$ 2 +foods fudz Mj% 1 +foodstuff 'fudstVf K6% 2 +foodstuffs 'fudstVfs Kj% 2 +fool ful J0%,K6% 12A,2C,6A,14,15B +fooled fuld Jc%,Jd% 12A,2C,6A,14,15B +foolery 'ful@rI L@% 3 +foolhardiness 'fulhAdIn@s L@% 4 +foolhardy 'fulhAdI OA% 3 +fooling 'fulIN Jb% 22A,2C,6A,14,15B +foolish 'fulIS OA% 2 +foolishly 'fulISlI Pu% 3 +foolishness 'fulISn@s L@% 3 +foolproof 'fulpruf OA% 2 +fools fulz Ja%,Kj% 12A,2C,6A,14,15B +foolscap 'fulsk&p L@% 2 +foot fUt J0%,Ki% 16A +foot-and-mouth ,fUt-n-'maUT L@%,OA% 3 +foot-bath 'fUt-bAT K6% 2 +foot-baths 'fUt-bADz Kj% 2 +foot-pound 'fUt-paUnd K6$ 2 +foot-pounds 'fUt-paUndz Kj$ 2 +foot-race 'fUt-reIs K6$ 2 +foot-races 'fUt-reIsIz Kj$ 3 +foot-rot 'fUt-r0t L@% 2 +footage 'fUtIdZ L@% 2 +football 'fUtbOl M6% 2 +footballer 'fUtbOl@R K6% 3 +footballers 'fUtbOl@z Kj% 3 +footballs 'fUtbOlz Mj% 2 +footboard 'fUtbOd K6% 2 +footboards 'fUtbOdz Kj% 2 +footbridge 'fUtbrIdZ K6% 2 +footbridges 'fUtbrIdZIz Kj% 3 +footed 'fUtId Jc%,Jd%,Ot% 26A +footer 'fUt@R K6% 2 +footers 'fUt@z Kj% 2 +footfall 'fUtfOl K6% 2 +footfalls 'fUtfOlz Kj% 2 +footfault 'fUtfOlt K6% 2 +footfaults 'fUtfOlts Kj% 2 +foothills 'fUthIlz Kj% 2 +foothold 'fUth@Uld K6% 2 +footholds 'fUth@Uldz Kj% 2 +footing 'fUtIN Jb%,Ki% 26A +footle 'futl J2% 2 +footled 'futld Jc%,Jd% 2 +footles 'futlz Ja% 2 +footlights 'fUtlaIts Kj% 2 +footling 'futlIN Jb%,OA% 2 +footloose 'fUtlus OA% 2 +footman 'fUtm@n Ki% 2 +footmark 'fUtmAk K6% 2 +footmarks 'fUtmAks Kj% 2 +footmen 'fUtm@n Kj% 2 +footnote 'fUtn@Ut K6% 2 +footnotes 'fUtn@Uts Kj% 2 +footpath 'fUtpAT K6% 2 +footpaths 'fUtpADz Kj% 2 +footplate 'fUtpleIt K6% 2 +footplates 'fUtpleIts Kj% 2 +footprint 'fUtprInt K6% 2 +footprints 'fUtprInts Kj% 2 +foots fUts Ja$ 16A +footslog 'fUtsl0g I4% 2 +footslogged 'fUtsl0gd Ic%,Id% 2 +footslogger 'fUtsl0g@R K6% 3 +footsloggers 'fUtsl0g@z Kj% 3 +footslogging 'fUtsl0gIN Ib% 3 +footslogs 'fUtsl0gz Ia% 2 +footsore 'fUtsOR OA% 2 +footstep 'fUtstep K6% 2 +footsteps 'fUtsteps Kj% 2 +footstool 'fUtstul K6% 2 +footstools 'fUtstulz Kj% 2 +footsure 'fUtSU@R OA% 2 +footwear 'fUtwe@R L@% 2 +footwork 'fUtw3k L@% 2 +fop f0p K6% 1 +foppish 'f0pIS OA% 2 +fops f0ps Kj% 1 +for fOR T-*,V-* 1 +forage 'f0rIdZ I2%,L@% 22A,3A +foraged 'f0rIdZd Ic%,Id% 22A,3A +forages 'f0rIdZIz Ia% 32A,3A +foraging 'f0rIdZIN Ib% 32A,3A +forasmuch as ,fOr@z'mVtS @z V-% 4 +foray 'f0reI I0$,K6% 22A +forayed 'f0reId Ic$,Id$ 22A +foraying 'f0reIIN Ib$ 32A +forays 'f0reIz Ia$,Kj% 22A +forbad f@'b&d Hc$ 26A,12C,17 +forbade f@'b&d Hc% 26A,12C,17 +forbear 'fObe@R K6% 2 +forbear fO'be@R J5% 22A,3A,6C,7A +forbearance fO'be@r@ns L@% 3 +forbearing fO'be@rIN Jb% 32A,3A,6C,7A +forbears 'fObe@z Kj% 2 +forbears fO'be@z Ja% 22A,3A,6C,7A +forbid f@'bId H5% 26A,12C,17 +forbidden f@'bIdn Hd% 36A,12C,17 +forbidding f@'bIdIN Hb%,OA% 36A,12C,17 +forbiddingly f@'bIdINlI Pu% 4 +forbids f@'bIdz Ha% 26A,12C,17 +forbore fO'bOR Jc% 22A,3A,6C,7A +forborne fO'bOn Jd% 22A,3A,6C,7A +force fOs H2%,M6% 16A,15A,15B,17,22 +force majeure ,fOs m&'Z3R L@% 3 +force-fed 'fOs-fed Hc%,Hd% 26A +force-feed 'fOs-fid H5% 26A +force-feeding 'fOs-fidIN Hb% 36A +force-feeds 'fOs-fidz Ha% 26A +force-land fOs-'l&nd J0% 2 +force-landed fOs-'l&ndId Jc%,Jd% 3 +force-landing fOs-'l&ndIN Jb% 3 +force-lands fOs-'l&ndz Ja% 2 +forced fOst Hc%,Hd% 16A,15A,15B,17,22 +forceful 'fOsf@l OA% 2 +forcefully 'fOsf@lI Pu% 3 +forcefulness 'fOsf@ln@s L@% 3 +forcemeat 'fOsmit L@$ 2 +forceps 'fOseps Kj% 2 +forces 'fOsIz Ha%,Mj% 26A,15A,15B,17,22 +forcible 'fOs@bl OA% 3 +forcibly 'fOs@blI Pu% 3 +forcing 'fOsIN Hb% 26A,15A,15B,17,22 +ford fOd H0%,K6% 16A +fordable 'fOd@bl OA% 3 +forded 'fOdId Hc%,Hd% 26A +fording 'fOdIN Hb% 26A +fords fOdz Ha%,Kj% 16A +fore fOR L@%,OA%,Pu%,W-% 1 +forearm 'fOrAm K6$ 2 +forearm ,fO'rAm H0% 26A +forearmed ,fO'rAmd Hc%,Hd% 26A +forearming ,fO'rAmIN Hb$ 36A +forearms 'fOrAmz Kj% 2 +forearms ,fO'rAmz Ha$ 26A +forebode fO'b@Ud H2$ 26A,9 +foreboded fO'b@UdId Hc$,Hd$ 36A,9 +forebodes fO'b@Udz Ha$ 26A,9 +foreboding fO'b@UdIN Hb%,M6% 36A,9 +forebodings fO'b@UdINz Mj% 3 +forecast 'fOkAst H0%,Hc%,Hd%,K6% 26A +forecasted 'fOkAstId Hc%,Hd% 36A +forecaster 'fOkAst@R K6% 3 +forecasters 'fOkAst@z Kj% 3 +forecasting 'fOkAstIN Hb% 36A +forecastle 'f@Uksl K6$ 2 +forecastles 'f@Ukslz Kj$ 2 +forecasts 'fOkAsts Ha%,Kj% 26A +foreclose fO'kl@Uz J2% 22A,3A,6A +foreclosed fO'kl@Uzd Jc%,Jd% 22A,3A,6A +forecloses fO'kl@UzIz Ja% 32A,3A,6A +foreclosing fO'kl@UzIN Jb% 32A,3A,6A +foreclosure fO'kl@UZ@R M6% 3 +foreclosures fO'kl@UZ@z Mj% 3 +forecourt 'fOkOt K6% 2 +forecourts 'fOkOts Kj% 2 +foredoom fO'dum H0$ 26A,14 +foredoomed fO'dumd Hc$,Hd% 26A,14 +foredooming fO'dumIN Hb$ 36A,14 +foredooms fO'dumz Ha$ 26A,14 +forefather 'fOfAD@R K6% 3 +forefathers 'fOfAD@z Kj% 3 +forefeet 'fOfit Kj% 2 +forefinger 'fOfINg@R K6% 3 +forefingers 'fOfINg@z Kj% 3 +forefoot 'fOfUt Ki$ 2 +forefront 'fOfrVnt K6% 2 +forefronts 'fOfrVnts Kj$ 2 +foregather fO'g&D@R I0% 32A,2C +foregathered fO'g&D@d Ic%,Id% 32A,2C +foregathering fO'g&D@rIN Ib% 42A,2C +foregathers fO'g&D@z Ia% 32A,2C +forego fO'g@U J5% 2 +foregoes fO'g@Uz Ja% 2 +foregoing fO'g@UIN Jb%,OA% 3 +foregone 'fOg0n OA% 2 +foregone fO'g0n Jd% 2 +foreground 'fOgraUnd K6% 2 +foregrounds 'fOgraUndz Kj$ 2 +forehand 'fOh&nd OA% 2 +forehead 'f0rId K6% 2 +foreheads 'f0rIdz Kj% 2 +foreign 'f0r@n OA% 2 +foreigner 'f0r@n@R K6% 3 +foreigners 'f0r@n@z Kj% 3 +foreknew fO'nju Jc$ 22A,3A,6A,8,9,10,17,18B,25 +foreknow fO'n@U J5$ 22A,3A,6A,8,9,10,17,18B,25 +foreknowing fO'n@UIN Jb$ 32A,3A,6A,8,9,10,17,18B,25 +foreknowledge ,fO'n0lIdZ L@% 3 +foreknown fO'n@Un Jd% 22A,3A,6A,8,9,10,17,18B,25 +foreknows fO'n@Uz Ja$ 22A,3A,6A,8,9,10,17,18B,25 +foreland 'fOl@nd K6% 2 +forelands 'fOl@ndz Kj$ 2 +foreleg 'fOleg K6% 2 +forelegs 'fOlegz Kj% 2 +forelock 'fOl0k K6% 2 +forelocks 'fOl0ks Kj$ 2 +foreman 'fOm@n Ki% 2 +foremast 'fOmAst K6% 2 +foremasts 'fOmAsts Kj% 2 +foremen 'fOm@n Kj% 2 +foremost 'fOm@Ust OA%,Pu% 2 +forename 'fOneIm K6% 2 +forenames 'fOneImz Kj% 2 +forenoon 'fOnun K6% 2 +forenoons 'fOnunz Kj% 2 +forensic f@'rensIk OA% 3 +foreordain ,fOrO'deIn H0$ 36A,14,17 +foreordained ,fOrO'deInd Hc$,Hd% 36A,14,17 +foreordaining ,fOrO'deInIN Hb$ 46A,14,17 +foreordains ,fOrO'deInz Ha$ 36A,14,17 +forerunner 'fOrVn@R K6% 3 +forerunners 'fOrVn@z Kj% 3 +foresail 'fOseIl K6% 2 +foresails 'fOseIlz Kj% 2 +foresaw fO'sO Hc% 26A,9,10 +foresee fO'si H5% 26A,9,10 +foreseeable fO'si@bl OA% 4 +foreseeing fO'siIN Hb% 36A,9,10 +foreseen fO'sin Hd% 26A,9,10 +foresees fO'siz Ha% 26A,9,10 +foreshadow fO'S&d@U H0% 36A +foreshadowed fO'S&d@Ud Hc%,Hd% 36A +foreshadowing fO'S&d@UIN Hb% 46A +foreshadows fO'S&d@Uz Ha% 36A +foreshore 'fOSOR K6% 2 +foreshores 'fOSOz Kj$ 2 +foreshorten fO'SOtn H0% 36A +foreshortened fO'SOtnd Hc%,Hd% 36A +foreshortening fO'SOtnIN Hb% 36A +foreshortens fO'SOtnz Ha% 36A +foresight 'fOsaIt L@% 2 +foreskin 'fOskIn K6% 2 +foreskins 'fOskInz Kj$ 2 +forest 'f0rIst M6% 2 +forestall fO'stOl H0% 26A +forestalled fO'stOld Hc%,Hd% 26A +forestalling fO'stOlIN Hb% 36A +forestalls fO'stOlz Ha% 26A +forester 'f0rIst@R K6% 3 +foresters 'f0rIst@z Kj% 3 +forestry 'f0r@strI L@% 3 +forests 'f0rIsts Mj% 2 +foreswear fO'swe@R H5% 26A +foreswearing fO'swe@rIN Hb% 36A +foreswears fO'swe@z Ha% 26A +foreswore fO'swOR Hc% 26A +foresworn fO'swOn Hd% 26A +foretaste 'fOteIst K6% 2 +foretastes 'fOteIsts Kj% 2 +foretell fO'tel H5% 26A,9,10,12A,13A +foretelling fO'telIN Hb% 36A,9,10,12A,13A +foretells fO'telz Ha% 26A,9,10,12A,13A +forethought 'fOTOt L@% 2 +foretold fO't@Uld Hc%,Hd% 26A,9,10,12A,13A +foretop 'fOt0p K6$ 2 +foretops 'fOt0ps Kj$ 2 +forever f@'rev@R Pu% 3 +forewarn fO'wOn H0% 26A +forewarned fO'wOnd Hc%,Hd% 26A +forewarning fO'wOnIN Hb% 36A +forewarns fO'wOnz Ha% 26A +forewent fO'went Jc$ 2 +forewoman 'fOwUm@n Ki$ 3 +forewomen 'fOwImIn Kj$ 3 +foreword 'fOw3d K6% 2 +forewords 'fOw3dz Kj% 2 +forfeit 'fOfIt H0%,K6% 26A +forfeited 'fOfItId Hc%,Hd% 36A +forfeiting 'fOfItIN Hb% 36A +forfeits 'fOfIts Ha%,Kj% 26A +forfeiture 'fOfItS@R L@% 3 +forgather fO'g&D@R I0% 32A,2C +forgathered fO'g&D@d Ic%,Id% 32A,2C +forgathering fO'g&D@rIN Ib% 42A,2C +forgathers fO'g&D@z Ia% 32A,2C +forgave f@'geIv Jc% 22A,6A,12C,14 +forge fOdZ J2%,K6% 12C,6A +forged fOdZd Jc%,Jd% 12C,6A +forger 'fOdZ@R K6% 2 +forgeries 'fOdZ@rIz Mj% 3 +forgers 'fOdZ@z Kj% 2 +forgery 'fOdZ@rI M8% 3 +forges 'fOdZIz Ja%,Kj% 22C,6A +forget f@'get J5% 22A,3A,6A,6C,6D,7A,8,9,10 +forget-me-not f@'get-mI-n0t K6% 4 +forget-me-nots f@'get-mI-n0ts Kj% 4 +forgetful f@'getf@l OA% 3 +forgetfully f@'getf@lI Pu% 4 +forgetfulness f@'getf@ln@s L@% 4 +forgets f@'gets Ja% 22A,3A,6A,6C,6D,7A,8,9,10 +forgetting f@'getIN Jb% 32A,3A,6A,6C,6D,7A,8,9,10 +forging 'fOdZIN Jb$,K6% 22C,6A +forgings 'fOdZINz Kj$ 2 +forgivable f@'gIv@bl OA% 4 +forgivably f@'gIv@blI Pu% 4 +forgive f@'gIv J5% 22A,6A,12C,14 +forgiven f@'gIvn Jd% 32A,6A,12C,14 +forgiveness f@'gIvn@s L@% 3 +forgives f@'gIvz Ja% 22A,6A,12C,14 +forgiving f@'gIvIN Jb%,OA% 32A,6A,12C,14 +forgivingly f@'gIvINlI Pu% 4 +forgo fO'g@U H5% 2 +forgoes fO'g@Uz Ja% 2 +forgoing fO'g@UIN Jb% 3 +forgone fO'g0n Jd% 2 +forgot f@'g0t Jc% 22A,3A,6A,6C,6D,7A,8,9,10 +forgotten f@'g0tn Jd% 32A,3A,6A,6C,6D,7A,8,9,10 +fork fOk J0%,K6% 12A,2C,6A,15A,15B +forked fOkt Jc%,Jd%,OA% 12A,2C,6A,15A,15B +forking 'fOkIN Jb% 22A,2C,6A,15A,15B +forks fOks Ja%,Kj% 12A,2C,6A,15A,15B +forlorn f@'lOn OA% 2 +forlornly f@'lOnlI Pu% 3 +forlornness f@'lOn+n@s L@% 3 +form fOm J0*,M6* 12A,2C,6A,14,15A +formal 'fOml OA% 2 +formaldehyde fO'm&ldIhaId L@$ 4 +formalin 'fOm@lIn L@$ 3 +formalism 'fOm@lIz@m L@$ 4 +formalities fO'm&lItIz Mj% 4 +formality fO'm&lItI M8% 4 +formalize 'fOm@laIz H2% 36A +formalized 'fOm@laIzd Hc%,Hd% 36A +formalizes 'fOm@laIzIz Ha% 46A +formalizing 'fOm@laIzIN Hb% 46A +formally 'fOm@lI Pu% 3 +format 'fOm&t K6% 2 +formation fO'meISn M6% 3 +formations fO'meISnz Mj% 3 +formative 'fOm@tIv OA% 3 +formats 'fOm&ts Kj% 2 +formed fOmd Jc%,Jd% 12A,2C,6A,14,15A +former 'fOm@R OA% 2 +formerly 'fOm@lI Pu% 3 +formic 'fOmIk OA$ 2 +formidable 'fOmId@bl OA% 4 +formidably 'fOmId@blI Pu% 4 +forming 'fOmIN Jb% 22A,2C,6A,14,15A +formless 'fOml@s OA% 2 +formlessly 'fOml@slI Pu% 3 +forms fOmz Ja%,Mj% 12A,2C,6A,14,15A +formula 'fOmjUl@ K6% 3 +formulae 'fOmjUli Kj% 3 +formulas 'fOmjUl@z Kj% 3 +formulate 'fOmjUleIt H2% 36A +formulated 'fOmjUleItId Hc%,Hd% 46A +formulates 'fOmjUleIts Ha% 36A +formulating 'fOmjUleItIN Hb% 46A +formulation ,fOmjU'leISn M6$ 4 +formulations ,fOmjU'leISnz Mj$ 4 +fornicate 'fOnIkeIt I2% 321 +fornicated 'fOnIkeItId Ic%,Id% 421 +fornicates 'fOnIkeIts Ia% 321 +fornicating 'fOnIkeItIN Ib% 421 +fornication ,fOnI'keISn L@% 4 +forrader 'f0r@d@R Pu$ 3 +forsake f@'seIk H5% 26A +forsaken f@'seIk@n Hd% 36A +forsakes f@'seIks Ha% 26A +forsaking f@'seIkIN Hb% 36A +forsook f@'sUk Hc% 26A +forsooth fO'suT Pu$ 2 +forswear fO'swe@R H5% 26A +forswearing fO'swe@rIN Hb% 36A +forswears fO'swe@z Ha% 26A +forswore fO'swOR Hc% 26A +forsworn fO'swOn Hd% 26A +forsythia fO'saITI@ L@$ 4 +fort fOt K6% 1 +forte 'fOteI K6$,OA$,Pu$ 2 +fortes 'fOteIz Kj$ 2 +forth fOT Pu% 1 +forthcoming ,fOT'kVmIN OA% 3 +forthright 'fOTraIt OA% 2 +forthwith ,fOT'wIT Pu% 2 +forties 'fOtIz Kj% 2 +fortieth 'fOtI@T K6%,OA% 3 +fortieths 'fOtI@Ts Kj% 3 +fortification ,fOtIfI'keISn M6% 5 +fortifications ,fOtIfI'keISnz Mj% 5 +fortified 'fOtIfaId Hc%,Hd% 36A,14 +fortifies 'fOtIfaIz Ha% 36A,14 +fortify 'fOtIfaI H3% 36A,14 +fortifying 'fOtIfaIIN Hb% 46A,14 +fortissimo fO'tIsIm@U OA$,Pu% 4 +fortitude 'fOtItjud L@% 3 +fortnight 'fOtnaIt K6% 2 +fortnightly 'fOtnaItlI OA%,Pu% 3 +fortnights 'fOtnaIts Kj% 2 +fortress 'fOtrIs K7% 2 +fortresses 'fOtrIsIz Kj% 3 +forts fOts Kj% 1 +fortuitous fO'tjuIt@s OA% 4 +fortuitously fO'tjuIt@slI Pu% 5 +fortunate 'fOtS@n@t OA% 3 +fortunately 'fOtS@n@tlI Pu% 4 +fortune 'fOtSun M6% 2 +fortunes 'fOtSunz Mj% 2 +forty 'fOtI K8%,OA% 2 +fortyish 'fOtIIS OA% 3 +forum 'fOr@m K6% 2 +forums 'fOr@mz Kj$ 2 +forward 'fOw@d H0%,K6%,OA%,Pu% 26A,12A,13A,15A +forwarded 'fOw@dId Hc%,Hd% 36A,12A,13A,15A +forwarding 'fOw@dIN Hb% 36A,12A,13A,15A +forwardness 'fOw@dn@s L@% 3 +forwards 'fOw@dz Ha%,Kj%,Pu% 26A,12A,13A,15A +forwent fO'went Jc$ 2 +fosse f0s K6$ 1 +fosses 'f0sIz Kj$ 2 +fossil 'f0sl K6% 2 +fossilization ,f0s@laI'zeISn M6% 5 +fossilizations ,f0s@laI'zeISnz Mj$ 5 +fossilize 'f0s@laIz J2% 32A,6A +fossilized 'f0s@laIzd Jc%,Jd% 32A,6A +fossilizes 'f0s@laIzIz Ja% 42A,6A +fossilizing 'f0s@laIzIN Jb% 42A,6A +fossils 'f0slz Kj% 2 +foster 'f0st@R H0% 26A +foster-brother 'f0st@-brVD@R K6% 4 +foster-brothers 'f0st@-brVD@z Kj% 4 +foster-child 'f0st@-tSaIld Ki% 3 +foster-children 'f0st@-tSIldr@n Kj% 4 +foster-father 'f0st@-fAD@R K6% 4 +foster-fathers 'f0st@-fAD@z Kj% 4 +foster-mother 'f0st@-mVD@R K6% 4 +foster-mothers 'f0st@-mVD@z Kj% 4 +foster-parent 'f0st@-pe@r@nt K6% 4 +foster-parents 'f0st@-pe@r@nts Kj% 4 +foster-sister 'f0st@-sIst@R K6% 4 +foster-sisters 'f0st@-sIst@z Kj% 4 +fostered 'f0st@d Hc%,Hd% 26A +fostering 'f0st@rIN Hb% 36A +fosters 'f0st@z Ha% 26A +fought fOt Jc%,Jd% 12A,2B,2C,3A,4A,6A,15A,15B +foul faUl J0%,M6%,OC% 12A,2C,6A +foul-mouthed faUl-'maUDd OA% 2 +foul-spoken faUl-'sp@Uk@n OA% 3 +fouled faUld Jc%,Jd% 12A,2C,6A +fouler 'faUl@R Or% 2 +foulest 'faUlIst Os% 2 +fouling 'faUlIN Jb% 22A,2C,6A +foully 'faUlI Pu% 2 +foulness 'faUln@s L@% 2 +fouls faUlz Ja%,Mj% 12A,2C,6A +found faUnd H0%,Hc*,Hd* 16A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +foundation faUn'deISn M6% 3 +foundation-stone faUn'deISn-st@Un K6% 4 +foundation-stones faUn'deISn-st@Unz Kj% 4 +foundations faUn'deISnz Mj% 3 +founded 'faUndId Hc%,Hd% 26A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +founder 'faUnd@R J0%,K6% 22A,6A +foundered 'faUnd@d Jc%,Jd% 22A,6A +foundering 'faUnd@rIN Jb% 32A,6A +founders 'faUnd@z Ja%,Kj% 22A,6A +founding 'faUndIN Hb% 26A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +foundling 'faUndlIN K6$ 2 +foundlings 'faUndlINz Kj$ 2 +foundress 'faUndrIs K7$ 2 +foundresses 'faUndrIsIz Kj$ 3 +foundries 'faUndrIz Kj% 2 +foundry 'faUndrI K8% 2 +founds faUndz Ha% 16A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +fount faUnt K6% 1 +fountain 'faUntIn K6% 2 +fountain-head 'faUntIn-hed K6% 3 +fountain-heads 'faUntIn-hedz Kj$ 3 +fountain-pen 'faUntIn-pen K6% 3 +fountain-pens 'faUntIn-penz Kj% 3 +fountains 'faUntInz Kj% 2 +founts faUnts Kj% 1 +four fOR K6%,OA* 1 +four-in-hand ,fOr-In-'h&nd K6$ 3 +four-in-hands ,fOr-In-'h&ndz Kj$ 3 +four-part 'fO-pAt OA% 2 +four-ply 'fO-plaI OA% 2 +four-poster fO'-p@Ust@R K6% 3 +four-posters fO'-p@Ust@z Kj% 3 +four-pounder fO'-paUnd@R K6% 3 +four-pounders fO'-paUnd@z Kj% 3 +four-wheeler fO-'wil@R K6% 3 +four-wheelers fO-'wil@z Kj% 3 +fourfold 'fOf@Uld OA%,Pu% 2 +fourpence 'fOp@ns K6% 2 +fourpences 'fOp@nsIz Kj% 3 +fourpenny 'fOpnI OA% 3 +fours fOz Kj% 1 +fourscore 'fOskOR Ki%,OA% 2 +foursome 'fOs@m K6% 2 +foursomes 'fOs@mz Kj% 2 +foursquare 'fOskwe@R OA% 2 +fourteen ,fO'tin K6%,OA% 2 +fourteens ,fO'tinz Kj% 2 +fourteenth ,fO'tinT K6%,OA% 2 +fourteenths ,fO'tinTs Kj% 2 +fourth fOT K6%,OA% 1 +fourthly 'fOTlI Pu% 2 +fourths fOTs Kj% 1 +fowl faUl I0%,M6% 1 +fowl-run 'faUl-rVn K6% 2 +fowl-runs 'faUl-rVnz Kj$ 2 +fowled faUld Ic$,Id$ 1 +fowler 'faUl@R K6$ 2 +fowlers 'faUl@z Kj$ 2 +fowling 'faUlIN Ib$ 2 +fowlingpiece 'faUlINpis K6$ 3 +fowlingpieces 'faUlINpisIz Kj$ 4 +fowlpest 'faUlpest L@% 2 +fowls faUlz Ia%,Mj% 1 +fox f0ks H1%,K7% 16A +fox-terrier f0ks-'terI@R K6% 4 +fox-terriers f0ks-'terI@z Kj% 4 +foxed f0kst Hc%,Hd% 16A +foxes 'f0ksIz Ha%,Kj% 26A +foxglove 'f0ksglVv K6% 2 +foxgloves 'f0ksglVvz Kj% 2 +foxhole 'f0ksh@Ul K6% 2 +foxholes 'f0ksh@Ulz Kj% 2 +foxhound 'f0kshaUnd K6% 2 +foxhounds 'f0kshaUndz Kj% 2 +foxhunt 'f0kshVnt I0%,K6% 2 +foxhunted 'f0kshVntId Ic%,Id% 3 +foxhunter 'f0kshVnt@R K6% 3 +foxhunters 'f0kshVnt@z Kj% 3 +foxhunting 'f0kshVntIN Ib% 3 +foxhunts 'f0kshVnts Ia%,Kj% 2 +foxier 'f0ksI@R Or% 3 +foxiest 'f0ksIIst Os% 3 +foxing 'f0ksIN Hb% 26A +foxtrot 'f0kstr0t K6% 2 +foxtrots 'f0kstr0ts Kj% 2 +foxy 'f0ksI OD% 2 +foyer 'foIeI K6% 2 +foyers 'foIeIz Kj$ 2 +fracas 'fr&kA Ki$ 2 +fracas 'fr&kAz Kj$ 2 +fraction 'fr&kSn K6% 2 +fractional 'fr&kSn@l OA% 3 +fractions 'fr&kSnz Kj% 2 +fractious 'fr&kS@s OA$ 2 +fractiously 'fr&kS@slI Pu$ 3 +fractiousness 'fr&kS@sn@s L@$ 3 +fracture 'fr&ktS@R J2%,M6% 22A,6A +fractured 'fr&ktS@d Jc%,Jd% 22A,6A +fractures 'fr&ktS@z Ja%,Mj% 22A,6A +fracturing 'fr&ktS@rIN Jb% 32A,6A +fragile 'fr&dZaIl OA% 2 +fragility fr@'dZIlItI L@% 4 +fragment 'fr&gm@nt K6% 2 +fragment fr&g'ment I0% 22A +fragmentary 'fr&gm@ntrI OA% 3 +fragmentation ,fr&gmen'teISn M6% 4 +fragmentations ,fr&gmen'teISnz Mj$ 4 +fragmented fr&g'mentId Ic%,Id% 32A +fragmenting fr&g'mentIN Ib% 32A +fragments 'fr&gm@nts Kj% 2 +fragments fr&g'ments Ia% 22A +fragrance 'freIgr@ns M6% 2 +fragrances 'freIgr@nsIz Mj% 3 +fragrant 'freIgr@nt OA% 2 +frail freIl OC% 1 +frailer 'freIl@R Or% 2 +frailest 'freIlIst Os% 2 +frailties 'freIltIz Mj% 2 +frailty 'freIltI M8% 2 +frame freIm J2%,K6% 12A,2C,6A +frame-up 'freIm-Vp K6% 2 +frame-ups 'freIm-Vps Kj% 2 +framed freImd Jc%,Jd% 12A,2C,6A +frames freImz Ja%,Kj% 12A,2C,6A +framework 'freImw3k K6% 2 +frameworks 'freImw3ks Kj% 2 +framing 'freImIN Jb% 22A,2C,6A +franc fr&Nk K6% 1 +franchise 'fr&ntSaIz M6% 2 +franchises 'fr&ntSaIzIz Mj$ 3 +francs fr&Nks Kj% 1 +frank fr&Nk H0%,OC% 16A +franked fr&Nkt Hc%,Hd% 16A +franker 'fr&Nk@R Or% 2 +frankest 'fr&NkIst Os% 2 +frankfurter 'fr&Nkf3t@R K6% 3 +frankfurters 'fr&Nkf3t@z Kj% 3 +frankincense 'fr&NkInsens L@% 3 +franking 'fr&NkIN Hb% 26A +franking-machine 'fr&nkIN-m@Sin K6% 4 +franking-machines 'fr&nkIN-m@Sinz Kj% 4 +franklin 'fr&NklIn K6$ 2 +franklins 'fr&NklInz Kj$ 2 +frankly 'fr&NklI Pu% 2 +frankness 'fr&Nkn@s L@% 2 +franks fr&Nks Ha% 16A +frantic 'fr&ntIk OA% 2 +frantically 'fr&ntIklI Pu% 3 +fraternal fr@'t3nl OA% 3 +fraternally fr@'t3n@lI Pu% 4 +fraternities fr@'t3nItIz Mj% 4 +fraternity fr@'t3nItI M8% 4 +fraternization ,fr&t@naI'zeISn L@% 5 +fraternize 'fr&t@naIz I2% 32A,2C,3A +fraternized 'fr&t@naIzd Ic%,Id% 32A,2C,3A +fraternizes 'fr&t@naIzIz Ia% 42A,2C,3A +fraternizing 'fr&t@naIzIN Ib% 42A,2C,3A +fratricide 'fr&trIsaId M6% 3 +fratricides 'fr&trIsaIdz Mj% 3 +fraud frOd M6% 1 +frauds frOdz Mj% 1 +fraudulent 'frOdjUl@nt OA% 3 +fraudulently 'frOdjUl@ntlI Pu% 4 +fraught frOt Op% 1 +fray freI J0%,K6% 12A,2C,6A +frayed freId Jc%,Jd% 12A,2C,6A +fraying 'freIIN Jb% 22A,2C,6A +frays freIz Ja%,Kj% 12A,2C,6A +frazzle 'fr&zl K6% 2 +frazzles 'fr&zlz Kj% 2 +freak frik J0%,K6% 12C,15B +freak-out 'frik-aUt K6% 2 +freak-outs 'frik-aUts Kj$ 2 +freaked frikt Jc%,Jd% 12C,15B +freakier 'frikI@R Or% 3 +freakiest 'frikIIst Os% 3 +freaking 'frikIN Jb% 22C,15B +freakish 'frikIS OA% 2 +freakishly 'frikISlI Pu% 3 +freakishness 'frikISn@s L@% 3 +freaks friks Ja%,Kj% 12C,15B +freaky 'frikI OD% 2 +freckle 'frekl J2%,K6% 22A,6A +freckled 'frekld Jc%,Jd% 22A,6A +freckles 'freklz Ja%,Kj% 22A,6A +freckling 'freklIN Jb% 22A,6A +free fri H5%,OB% 16A,14 +free-and-easy ,fri-@n-'izI OA% 4 +free-for-all 'fri-f@r-Ol K6% 3 +free-for-alls 'fri-f@r-Olz Kj$ 3 +free-handed fri-'h&ndId OA$ 3 +free-list 'fri-lIst K6$ 2 +free-lists 'fri-lIsts Kj$ 2 +free-liver fri-'lIv@R K6$ 3 +free-livers fri-'lIv@z Kj$ 3 +free-living fri-'lIvIN L@% 3 +free-range fri-'reIndZ OA% 2 +free-spoken fri-'sp@Uk@n OA% 3 +free-standing fri-'st&ndIN OA% 3 +free-thinker fri-'TINk@R K6% 3 +free-thinkers fri-'TINk@z Kj% 3 +free-thinking fri-'TINkIN OA% 3 +free-thought fri-'TOt L@$ 2 +free-trader fri-'treId@R K6$ 3 +free-traders fri-'treId@z Kj$ 3 +freebooter 'fribut@R K6$ 3 +freebooters 'fribut@z Kj$ 3 +freeborn 'fribOn OA% 2 +freed frid Hc%,Hd% 16A,14 +freedman 'fridm@n Ki$ 2 +freedmen 'fridm@n Kj$ 2 +freedom 'frid@m M6% 2 +freedoms 'frid@mz Mj% 2 +freehand 'frih&nd OA% 2 +freehold 'frih@Uld K6% 2 +freeholder 'frih@Uld@R K6% 3 +freeholders 'frih@Uld@z Kj% 3 +freeholds 'frih@Uldz Kj% 2 +freeing 'friIN Hb% 26A,14 +freelance 'frilAns I2%,K6% 2 +freelanced 'frilAnst Ic%,Id% 2 +freelances 'frilAnsIz Ia%,Kj% 3 +freelancing 'frilAnsIN Ib% 3 +freely 'frilI Pu% 2 +freeman 'frim@n Ki% 2 +freemen 'frim@n Kj% 2 +freer 'fri@R Or% 2 +frees friz Ha% 16A,14 +freesia 'frizI@ K6$ 3 +freesias 'frizI@z Kj$ 3 +freest 'friIst Os$ 2 +freestone 'frist@Un L@$ 2 +freestyle 'fristaIl L@% 2 +freeway 'friweI K6% 2 +freeways 'friweIz Kj% 2 +freewheel fri'wil I0% 22A,2C +freewheeled fri'wild Ic%,Id% 22A,2C +freewheeling fri'wilIN Ib% 32A,2C +freewheels fri'wilz Ia% 22A,2C +freewill 'friwIl OA% 2 +freeze friz J5%,K6% 12A,2C,3A,6A,15B +freezer 'friz@R K6% 2 +freezers 'friz@z Kj% 2 +freezes 'frizIz Ja%,Kj% 22A,2C,3A,6A,15B +freezing 'frizIN Jb% 22A,2C,3A,6A,15B +freezing-mixture 'frizIN-mIkstS@R K6$ 4 +freezing-mixtures 'frizIN-mIkstS@z Kj$ 4 +freezing-point 'frizIN-poInt K6% 3 +freezing-points 'frizIN-poInts Kj% 3 +freight freIt H0$,L@% 16A,14 +freight-train 'freIt-treIn K6% 2 +freight-trains 'freIt-treInz Kj% 2 +freighted 'freItId Hc$,Hd$ 26A,14 +freighter 'freIt@R K6% 2 +freighters 'freIt@z Kj% 2 +freighting 'freItIN Hb$ 26A,14 +freightliner 'freItlaIn@R K6% 3 +freightliners 'freItlaIn@z Kj% 3 +freights freIts Ha$ 16A,14 +frenetic fr@'netIk OA% 3 +frenzied 'frenzId OA% 2 +frenziedly 'frenzIdlI Pu% 3 +frenzy 'frenzI L@% 2 +frequencies 'frikw@nsIz Mj% 3 +frequency 'frikw@nsI M8% 3 +frequent 'frikw@nt OA% 2 +frequent frI'kwent H0% 26A +frequented frI'kwentId Hc%,Hd% 36A +frequenting frI'kwentIN Hb% 36A +frequently 'frikw@ntlI Pu% 3 +frequents frI'kwents Ha% 26A +fresco 'fresk@U H0$,M6% 2 +frescoed 'fresk@Ud Hc$,Hd$ 2 +frescoes 'fresk@Uz Kj% 2 +frescoing 'fresk@UIN Hb$ 3 +frescos 'fresk@Uz Ha$,Mj$ 2 +fresh freS OC%,Pu% 1 +freshen 'freSn J0% 22A,2C,6A,15B +freshened 'freSnd Jc%,Jd% 22A,2C,6A,15B +freshening 'freSnIN Jb% 32A,2C,6A,15B +freshens 'freSnz Ja% 22A,2C,6A,15B +fresher 'freS@R K6%,Or% 2 +freshers 'freS@z Kj% 2 +freshest 'freSIst Os% 2 +freshly 'freSlI Pu% 2 +freshman 'freSm@n Ki% 2 +freshmen 'freSm@n Kj% 2 +freshness 'freSn@s L@% 2 +freshwater 'freSwOt@R OA% 3 +fret fret J4%,K6% 12A,2C,3A,6A,15A +fretful 'fretf@l OA% 2 +fretfully 'fretf@lI Pu% 3 +frets frets Ja%,Kj% 12A,2C,3A,6A,15A +fretsaw 'fretsO K6% 2 +fretsaws 'fretsOz Kj% 2 +fretted 'fretId Jc%,Jd% 22A,2C,3A,6A,15A +fretting 'fretIN Jb% 22A,2C,3A,6A,15A +fretwork 'fretw3k L@% 2 +friability ,fraI@'bIlItI L@$ 5 +friable 'fraI@bl OA% 3 +friar 'fraI@R K6% 2 +friars 'fraI@z Kj% 2 +fricassee 'frIk@si M6$ 3 +fricassee ,frIk@'si H5$ 3 +fricasseed ,frIk@'sid Hc$,Hd$ 3 +fricasseeing ,frIk@'siIN Hb$ 4 +fricassees 'frIk@siz Mj$ 3 +fricassees ,frIk@'siz Ha$ 3 +fricative 'frIk@tIv K6$,OA$ 3 +fricatives 'frIk@tIvz Kj$ 3 +friction 'frIkSn M6% 2 +frictions 'frIkSnz Mj$ 2 +fridge frIdZ K6% 1 +fridges 'frIdZIz Kj% 2 +fried fraId Jc%,Jd% 12A,6A +friend frend K6% 1 +friendless 'frendl@s OA% 2 +friendlessness 'frendl@sn@s L@% 3 +friendlier 'frendlI@R Or% 3 +friendliest 'frendlIIst Os% 3 +friendliness 'frendlIn@s L@% 3 +friendly 'frendlI OD% 2 +friends frendz Kj% 1 +friendship 'frendSIp M6% 2 +friendships 'frendSIps Mj% 2 +frier 'fraI@R K6$ 2 +friers 'fraI@z Kj$ 2 +fries fraIz Ja%,Kj% 12A,6A +frieze friz K6% 1 +friezes 'frizIz Kj% 2 +frigate 'frIg@t K6% 2 +frigates 'frIg@ts Kj% 2 +fright fraIt H0$,M6% 1 +frighted 'fraItId Hc$,Hd$ 2 +frighten 'fraItn H0% 26A,14,15B +frightened 'fraItnd Hc%,Hd%,OA% 26A,14,15B +frightening 'fraItnIN Hb%,OA% 36A,14,15B +frighteningly 'fraItnINlI Pu% 4 +frightens 'fraItnz Ha% 26A,14,15B +frightful 'fraItf@l OA% 2 +frightfully 'fraItf@lI Pu% 3 +frightfulness 'fraItf@ln@s L@% 3 +frighting 'fraItIN Hb$ 2 +frights fraIts Ha$,Mj% 1 +frigid 'frIdZId OA% 2 +frigidity frI'dZIdItI L@% 4 +frigidly 'frIdZIdlI Pu% 3 +frill frIl K6% 1 +frilled frIld OA% 1 +frillier 'frIlI@R Or$ 3 +frilliest 'frIlIIst Os$ 3 +frills frIlz Kj% 1 +frilly 'frIlI OD% 2 +fringe frIndZ H2%,K6% 16A +fringed frIndZd Hc%,Hd% 16A +fringes 'frIndZIz Ha%,Kj% 26A +fringing 'frIndZIN Hb% 26A +fripperies 'frIp@rIz Mj$ 3 +frippery 'frIp@rI M8$ 3 +frisk frIsk J0% 12A,2C,6A +frisked frIskt Jc%,Jd% 12A,2C,6A +friskier 'frIskI@R Or% 3 +friskiest 'frIskIIst Os% 3 +friskily 'frIskIlI Pu% 3 +frisking 'frIskIN Jb% 22A,2C,6A +frisks frIsks Ja% 12A,2C,6A +frisky 'frIskI OD% 2 +frisson 'fris0n K6$ 2 +frissons 'fris0nz Kj$ 2 +fritter 'frIt@R H0%,K6% 215B +frittered 'frIt@d Hc%,Hd% 215B +frittering 'frIt@rIN Hb% 315B +fritters 'frIt@z Ha%,Kj% 215B +frivol 'frIvl J4$ 22A,15B +frivolities frI'v0lItIz Mj% 4 +frivolity frI'v0lItI M8% 4 +frivolled 'frIvld Jc$,Jd$ 22A,15B +frivolling 'frIv@lIN Jb$ 32A,15B +frivolous 'frIv@l@s OA% 3 +frivolously 'frIv@l@slI Pu% 4 +frivols 'frIvlz Ja$ 22A,15B +frizz frIz H1$ 16A +frizzed frIzd Hc$,Hd% 16A +frizzes 'frIzIz Ha$ 26A +frizzier 'frIzI@R Or$ 3 +frizziest 'frIzIIst Os$ 3 +frizzing 'frIzIN Hb$ 26A +frizzle 'frIzl J2% 22A,2C,6A,15B +frizzled 'frIzld Jc%,Jd% 22A,2C,6A,15B +frizzles 'frIzlz Ja% 22A,2C,6A,15B +frizzling 'frIzlIN Jb% 22A,2C,6A,15B +frizzy 'frIzI OD% 2 +fro fr@U Pu% 1 +frock fr0k K6% 1 +frock-coat 'fr0k-k@Ut K6% 2 +frock-coats 'fr0k-k@Uts Kj% 2 +frocks fr0ks Kj% 1 +frog fr0g K6% 1 +frogman 'fr0gm@n Ki% 2 +frogmarch 'fr0gmAtS H1% 26A +frogmarched 'fr0gmAtSt Hc%,Hd% 26A +frogmarches 'fr0gmAtSIz Ha% 36A +frogmarching 'fr0gmAtSIN Hb% 36A +frogmen 'fr0gm@n Kj% 2 +frogs fr0gz Kj% 1 +frolic 'fr0lIk I5%,K6% 22A,2C +frolicked 'fr0lIkt Ic%,Id% 22A,2C +frolicking 'fr0lIkIN Ib% 32A,2C +frolics 'fr0lIks Ia%,Kj% 22A,2C +frolicsome 'fr0lIks@m OA% 3 +from fr0m T-* 1 +frond fr0nd K6% 1 +fronds fr0ndz Kj% 1 +front frVnt J0%,M6% 12A,2C,6A +front-bench frVnt-'bentS K7% 2 +front-bencher frVnt-'bentS@R K6% 3 +front-benchers frVnt-'bentS@z Kj% 3 +front-benches frVnt-'bentSIz Kj% 3 +frontage 'frVntIdZ K6$ 2 +frontages 'frVntIdZIz Kj$ 3 +frontal 'frVntl OA% 2 +fronted 'frVntId Jc%,Jd% 22A,2C,6A +frontier 'frVntI@R K6% 3 +frontiers 'frVntI@z Kj% 3 +frontiersman 'frVntI@zm@n Ki% 4 +frontiersmen 'frVntI@zm@n Kj% 4 +fronting 'frVntIN Jb% 22A,2C,6A +frontispiece 'frVntIspis K6% 3 +frontispieces 'frVntIspisIz Kj% 4 +fronts frVnts Ja%,Mj% 12A,2C,6A +frost fr0st J0%,M6% 12A,2C,6A +frost-bound 'fr0st-baUnd OA% 2 +frostbite 'fr0stbaIt L@% 2 +frostbitten 'fr0stbItn OA% 3 +frosted 'fr0stId Jc%,Jd% 22A,2C,6A +frostier 'fr0stI@R Or% 3 +frostiest 'fr0stIIst Os% 3 +frostily 'fr0stIlI Pu% 3 +frostiness 'fr0stIn@s L@% 3 +frosting 'fr0stIN Jb%,L@% 22A,2C,6A +frosts fr0sts Ja%,Mj% 12A,2C,6A +frosty 'fr0stI OD% 2 +froth fr0T I0%,L@% 12A,2C +frothed fr0Tt Ic%,Id% 12A,2C +frothier 'fr0TI@R Or% 3 +frothiest 'fr0TIIst Os% 3 +frothily 'fr0TIlI Pu% 3 +frothiness 'fr0TIn@s L@% 3 +frothing 'fr0TIN Ib% 22A,2C +froths fr0Ts Ia% 12A,2C +frothy 'fr0TI OD% 2 +froward 'fr@U@d OA$ 2 +frown fraUn I0%,K6% 12A,3A +frowned fraUnd Ic%,Id% 12A,3A +frowning 'fraUnIN Ib% 22A,3A +frowningly 'fraUnINlI Pu% 3 +frowns fraUnz Ia%,Kj% 12A,3A +frowsty 'fraUstI OA$ 2 +frowzy 'fraUzI OA$ 2 +froze fr@Uz Jc% 12A,2C,3A,6A,15B +frozen 'fr@Uz@n Jd% 22A,2C,3A,6A,15B +fructification ,frVktIfI'keISn L@$ 5 +fructified 'frVktIfaId Jc$,Jd$ 32A,6A +fructifies 'frVktIfaIz Ja$ 32A,6A +fructify 'frVktIfaI J3$ 32A,6A +fructifying 'frVktIfaIIN Jb$ 42A,6A +frugal 'frugl OA% 2 +frugalities fru'g&lItIz Mj$ 4 +frugality fru'g&lItI M8% 4 +frugally 'frug@lI Pu% 3 +fruit frut I0%,M6% 1 +fruit-flies 'frut-flaIz Kj% 2 +fruit-fly 'frut-flaI K8% 2 +fruitcake 'frutkeIk K6% 2 +fruitcakes 'frutkeIks Kj% 2 +fruited 'frutId Ic%,Id% 2 +fruiterer 'frut@r@R K6% 3 +fruiterers 'frut@r@z Kj% 3 +fruitful 'frutf@l OA% 2 +fruitfully 'frutf@lI Pu% 3 +fruitfulness 'frutf@ln@s L@% 3 +fruitier 'frutI@R Or% 3 +fruitiest 'frutIIst Os% 3 +fruiting 'frutIN Ib% 2 +fruition fru'ISn L@% 3 +fruitless 'frutl@s OA% 2 +fruitlessly 'frutl@slI Pu% 3 +fruitlessness 'frutl@sn@s L@% 3 +fruits fruts Ia%,Mj% 1 +fruity 'frutI OD% 2 +frump frVmp K6% 1 +frumpier 'frVmpI@R Or$ 3 +frumpiest 'frVmpIIst Os$ 3 +frumpish 'frVmpIS OA% 2 +frumps frVmps Kj$ 1 +frumpy 'frVmpI OD% 2 +frustrate frV'streIt H2% 26A,15A +frustrated frV'streItId Hc%,Hd% 36A,15A +frustrates frV'streIts Ha% 26A,15A +frustrating frV'streItIN Hb% 36A,15A +frustration frV'streISn M6% 3 +frustrations frV'streISnz Mj% 3 +fry fraI J3%,K9% 12A,6A +fry-pan 'fraI-p&n K6% 2 +fry-pans 'fraI-p&nz Kj% 2 +fryer 'fraI@R K6$ 2 +fryers 'fraI@z Kj$ 2 +frying 'fraIIN Jb% 22A,6A +frying-pan 'fraIIN-p&n K6% 3 +frying-pans 'fraIIN-p&nz Kj% 3 +ft fit Y]% 2 +fuchsia 'fjuS@ K6% 2 +fuchsias 'fjuS@z Kj% 2 +fuck fVk J0% 12A,6A +fuck-all fVk-'Ol L@% 2 +fucked fVkt Jc%,Jd% 12A,6A +fucker 'fVk@R K6% 2 +fuckers 'fVk@z Kj% 2 +fucking 'fVkIN Jb%,OA% 22A,6A +fucks fVks Ja% 12A,6A +fuddle 'fVdl H2$ 26A,15A +fuddled 'fVdld Hc$,Hd% 26A,15A +fuddles 'fVdlz Ha$ 26A,15A +fuddling 'fVdlIN Hb$ 26A,15A +fuddy-duddies 'fVdI-dVdIz Kj% 4 +fuddy-duddy 'fVdI-dVdI K8% 4 +fudge fVdZ M6%,W-% 1 +fudges 'fVdZIz Mj% 2 +fuel 'fju@l J4%,M6% 22A,6A +fuelled 'fju@ld Jc%,Jd% 22A,6A +fuelling 'fju@lIN Jb% 32A,6A +fuels 'fju@lz Ja%,Mj% 22A,6A +fug fVg K6% 1 +fuggier 'fVgI@R Or$ 3 +fuggiest 'fVgIIst Os$ 3 +fuggy 'fVgI OD% 2 +fugitive 'fjudZ@tIv K6%,OA% 3 +fugitives 'fjudZ@tIvz Kj% 3 +fugs fVgz Kj$ 1 +fugue fjug K6% 1 +fugues fjugz Kj% 1 +fulcra 'fUlkr@ Kj$ 2 +fulcrum 'fUlkr@m K6% 2 +fulcrums 'fUlkr@mz Kj$ 2 +fulfil fUl'fIl H4% 26A +fulfilled fUl'fIld Hc%,Hd% 26A +fulfilling fUl'fIlIN Hb% 36A +fulfilment fUl'fIlm@nt K6% 3 +fulfilments fUl'fIlm@nts Kj$ 3 +fulfils fUl'fIlz Ha% 26A +full fUl OC* 1 +full-blooded fUl-'blVdId OA% 3 +full-blown fUl-'bl@Un OA% 2 +full-dress fUl-'dres OA% 2 +full-fashioned fUl-'f&Snd OA% 3 +full-fledged fUl-'fledZd OA% 2 +full-grown fUl-'gr@Un OA% 2 +full-length fUl-'leNT OA% 2 +full-page fUl-'peIdZ OA% 2 +full-scale fUl-'skeIl OA% 2 +full-time fUl-'taIm OA%,Pu% 2 +fullback 'fUlb&k K6% 2 +fullbacks 'fUlb&ks Kj% 2 +fuller 'fUl@R K6$,Or% 2 +fullers 'fUl@z Kj$ 2 +fullest 'fUlIst Os% 2 +fullness 'fUln@s L@% 2 +fully 'fUlI Pu% 2 +fully-fashioned ,fUlI-'f&Snd OA% 4 +fully-fledged ,fUlI-'fledZd OA% 3 +fully-grown ,fUlI-'gr@Un OA% 3 +fulmar 'fUlm@R K6$ 2 +fulmars 'fUlm@z Kj$ 2 +fulminate 'fVlmIneIt I2$ 32A,3A +fulminated 'fVlmIneItId Ic$,Id$ 42A,3A +fulminates 'fVlmIneIts Ia$ 32A,3A +fulminating 'fVlmIneItIN Ib$ 42A,3A +fulmination ,fVlmI'neISn M6$ 4 +fulminations ,fVlmI'neISnz Mj$ 4 +fulsome 'fUls@m OA% 2 +fulsomely 'fUls@mlI Pu% 3 +fulsomeness 'fUls@mn@s L@$ 3 +fumble 'fVmbl J2% 22A,2C,6A +fumbled 'fVmbld Jc%,Jd% 22A,2C,6A +fumbler 'fVmbl@R K6% 2 +fumblers 'fVmbl@z Kj% 2 +fumbles 'fVmblz Ja% 22A,2C,6A +fumbling 'fVmblIN Jb% 22A,2C,6A +fume fjum J2%,K6% 12A,2C,3A,6A +fumed fjumd Jc%,Jd% 12A,2C,3A,6A +fumes fjumz Ja%,Kj% 12A,2C,3A,6A +fumigate 'fjumIgeIt H2% 36A +fumigated 'fjumIgeItId Hc%,Hd% 46A +fumigates 'fjumIgeIts Ha% 36A +fumigating 'fjumIgeItIN Hb% 46A +fumigation ,fjumI'geISn K6% 4 +fumigations ,fjumI'geISnz Kj% 4 +fuming 'fjumIN Jb% 22A,2C,3A,6A +fun fVn L@% 1 +function 'fVNkSn I0%,K6% 22A,2C +functional 'fVNkS@nl OA% 3 +functionalism 'fVNkS@n@lIz@m L@$ 5 +functionalist 'fVNkSn@lIst K6$ 3 +functionalists 'fVNkSn@lIsts Kj$ 3 +functionally 'fVNkS@n@lI Pu% 4 +functionaries 'fVNkS@n@rIz Kj$ 4 +functionary 'fVNkS@n@rI K8$ 4 +functioned 'fVNkSnd Ic%,Id% 22A,2C +functioning 'fVNkSnIN Ib% 32A,2C +functions 'fVNkSnz Ia%,Kj% 22A,2C +fund fVnd H0%,K6% 16A +fundamental ,fVnd@'mentl K6%,OA% 4 +fundamentalism ,fVnd@'ment@lIz@m L@% 6 +fundamentalist ,fVnd@'ment@lIst K6% 5 +fundamentalists ,fVnd@'ment@lIsts Kj% 5 +fundamentally ,fVnd@'ment@lI Pu% 5 +fundamentals ,fVnd@'mentlz Kj% 4 +funded 'fVndId Hc%,Hd% 26A +funding 'fVndIN Hb% 26A +funds fVndz Ha%,Kj% 16A +funeral 'fjun@r@l K6% 3 +funerals 'fjun@r@lz Kj% 3 +funereal fju'nI@rI@l OA% 4 +funfair 'fVnfe@R K6% 2 +funfairs 'fVnfe@z Kj% 2 +fungi 'fVNgaI Kj% 2 +fungicide 'fVndZIsaId M6% 3 +fungicides 'fVndZIsaIdZ Mj% 3 +fungoid 'fVNgoId OA$ 2 +fungous 'fVNg@s OA$ 2 +fungus 'fVNg@s M7% 2 +funguses 'fVNg@sIz Mj% 3 +funicular fju'nIkjUl@R K6$ 4 +funiculars fju'nIkjUl@z Kj$ 4 +funk fVNk J0%,K6% 12A,6A +funked fVNkt Jc%,Jd% 12A,6A +funkier 'fVNkI@R Or$ 3 +funkiest 'fVNkIIst Os$ 3 +funking 'fVNkIN Jb% 22A,6A +funks fVNks Ja%,Kj% 12A,6A +funky 'fVNkI OD% 2 +funnel 'fVnl J4%,K6% 22A,6A +funnelled 'fVnld Jc%,Jd% 22A,6A +funnelling 'fVn@lIN Jb% 32A,6A +funnels 'fVnlz Ja%,Kj% 22A,6A +funnier 'fVnI@R Or% 3 +funniest 'fVnIIst Os% 3 +funnily 'fVnIlI Pu% 3 +funniness 'fVnIn@s L@% 3 +funny 'fVnI OD% 2 +funny-bone 'fVnI-b@Un K6% 3 +funny-bones 'fVnI-b@Unz Kj% 3 +fur f3R M6% 1 +furbelow 'f3bIl@U K6$ 3 +furbelows 'f3bIl@Uz Kj% 3 +furbish 'f3bIS H1% 26A +furbished 'f3bISt Hc%,Hd% 26A +furbishes 'f3bISIz Ha% 36A +furbishing 'f3bISIN Hb% 36A +furies 'fjU@rIz Mj% 2 +furious 'fjU@rI@s OA% 3 +furiously 'fjU@rI@slI Pu% 4 +furl f3l J0% 12A,6A +furled f3ld Jc%,Jd% 12A,6A +furling 'f3lIN Jb$ 22A,6A +furlong 'f3l0N K6% 2 +furlongs 'f3l0Nz Kj% 2 +furlough 'f3l@U M6$ 2 +furloughs 'f3l@Uz Mj$ 2 +furls f3lz Ja% 12A,6A +furnace 'f3nIs K6% 2 +furnaces 'f3nIsIz Kj% 3 +furnish 'f3nIS H1% 26A,14 +furnished 'f3nISt Hc%,Hd% 26A,14 +furnishes 'f3nISIz Ha% 36A,14 +furnishing 'f3nISIN Hb% 36A,14 +furnishings 'f3nISINz Kj% 3 +furniture 'f3nItS@R L@% 3 +furore fjU'rOrI K6% 3 +furores fjU'rOrIz Kj% 3 +furrier 'f3rI@R Or% 3 +furrier 'fVrI@R K6% 3 +furriers 'fVrI@z Kj% 3 +furriest 'f3rIIst Os% 3 +furrow 'fVr@U H0%,K6% 26A +furrowed 'fVr@Ud Hc%,Hd% 26A +furrowing 'fVr@UIN Hb% 36A +furrows 'fVr@Uz Ha%,Kj% 26A +furry 'f3rI OD% 2 +furs f3z Mj% 1 +further 'f3D@R H0%,Or%,Pu% 26A +furtherance 'f3D@r@ns L@% 3 +furthered 'f3D@d Hc%,Hd% 26A +furthering 'f3D@rIN Hb% 36A +furthermore ,f3D@'mOR Pu% 3 +furthermost 'f3D@m@Ust OA% 3 +furthers 'f3D@z Ha% 26A +furthest 'f3DIst OA%,Pu% 2 +furtive 'f3tIv OA% 2 +furtively 'f3tIvlI Pu% 3 +furtiveness 'f3tIvn@s L@% 3 +fury 'fjU@rI M8% 2 +furze f3z L@$ 1 +fuse fjuz J2%,K6% 12A,6A,15A,15B +fused fjuzd Jc%,Jd% 12A,6A,15A,15B +fuselage 'fjuz@lAZ K6% 3 +fuselages 'fjuz@lAZIz Kj$ 4 +fuses 'fjuzIz Ja%,Kj% 22A,6A,15A,15B +fusilier ,fjuz@'lI@R K6% 4 +fusiliers ,fjuz@'lI@z Kj% 4 +fusillade ,fjuzI'leId K6$ 3 +fusillades ,fjuzI'leIdz Kj$ 3 +fusing 'fjuzIN Jb% 22A,6A,15A,15B +fusion 'fjuZn M6% 2 +fusions 'fjuZnz Mj% 2 +fuss fVs J1%,M7% 12A,2C,6A +fussed fVst Jc%,Jd% 12A,2C,6A +fusses 'fVsIz Ja%,Mj% 22A,2C,6A +fussier 'fVsI@R Or% 3 +fussiest 'fVsIIst Os% 3 +fussily 'fVsIlI Pu% 3 +fussiness 'fVsIn@s L@% 3 +fussing 'fVsIN Jb% 22A,2C,6A +fusspot 'fVsp0t K6% 2 +fusspots 'fVsp0ts Kj% 2 +fussy 'fVsI OD% 2 +fustian 'fVstI@n L@$ 3 +fusty 'fVstI OA$ 2 +futile 'fjutaIl OA% 2 +futilities fju'tIlItIz Mj% 4 +futility fju'tIlItI M8% 4 +future 'fjutS@R M6%,OA% 2 +futureless 'fjutS@l@s OA% 3 +futures 'fjutS@z Mj% 2 +futurism 'fjutS@rIz@m L@$ 4 +futurist 'fjutS@rIst K6$ 3 +futurists 'fjutS@rIsts Kj$ 3 +futurities fju'tjU@rItIz Mj$ 4 +futurity fju'tjU@rItI M8$ 4 +fuze fjuz K6% 1 +fuzes 'fjuzIz Kj% 2 +fuzz fVz L@% 1 +fuzzier 'fVzI@R Or% 3 +fuzziest 'fVzIIst Os% 3 +fuzzy 'fVzI OD% 2 +fwd 'fOw@d Y~% 2 +g dZi Ki$ 1 +g's dZiz Kj$ 1 +g^ateau 'g&t@U K6% 2 +g^ateaus 'g&t@Uz Kj% 2 +gab g&b L@% 1 +gabardine ,g&b@'din L@$ 3 +gabble 'g&bl J2%,L@% 22A,2C,6A,15B +gabbled 'g&bld Jc%,Jd% 22A,2C,6A,15B +gabbles 'g&blz Ja% 22A,2C,6A,15B +gabbling 'g&blIN Jb% 22A,2C,6A,15B +gaberdine ,g&b@'din L@% 3 +gable 'geIbl K6% 2 +gabled 'geIbld OA% 2 +gables 'geIblz Kj% 2 +gad g&d I4$,W-$ 12C +gadabout 'g&d@baUt K6% 3 +gadabouts 'g&d@baUts Kj% 3 +gadded 'g&dId Ic$,Id$ 22C +gadding 'g&dIN Ib$ 22C +gadflies 'g&dflaIz Kj% 2 +gadfly 'g&dflaI K8% 2 +gadget 'g&dZIt K6% 2 +gadgetry 'g&dZItrI L@% 3 +gadgets 'g&dZIts Kj% 2 +gads g&dz Ia$ 12C +gaff g&f K6$ 1 +gaffe g&f K6$ 1 +gaffer 'g&f@R K6% 2 +gaffers 'g&f@z Kj% 2 +gaffes g&fs Kj$ 1 +gaffs g&fs Kj$ 1 +gag g&g J4%,K6% 12A,6A +gaga 'gAgA OA$ 2 +gage geIdZ H2$,K6$ 16A +gaged geIdZd Hc$,Hd$ 16A +gages 'geIdZIz Ha$,Kj$ 26A +gagged g&gd Jc%,Jd% 12A,6A +gagging 'g&gIN Jb% 22A,6A +gaggle 'g&gl K6% 2 +gaggles 'g&glz Kj% 2 +gaging 'geIdZIN Hb$ 26A +gags g&gz Ja%,Kj% 12A,6A +gaiety 'geI@tI L@% 3 +gaily 'geIlI Pu% 2 +gain geIn J0%,M6% 12A,2B,2C,3A,6A,12B,13B,14 +gained geInd Jc%,Jd% 12A,2B,2C,3A,6A,12B,13B,14 +gainful 'geInf@l OA% 2 +gainfully 'geInf@lI Pu% 3 +gaining 'geInIN Jb% 22A,2B,2C,3A,6A,12B,13B,14 +gainings 'geIniNz Kj% 2 +gains geInz Ja%,Mj% 12A,2B,2C,3A,6A,12B,13B,14 +gainsaid ,geIn'sed Hc%,Hd% 26A +gainsay ,geIn'seI H5% 26A +gainsaying ,geIn'seIIN Hb% 36A +gainsays ,geIn'seIz Ha% 26A +gait geIt K6% 1 +gaiter 'geIt@R K6% 2 +gaiters 'geIt@z Kj% 2 +gaits geIts Kj$ 1 +gal g&l K6$ 1 +gala 'gAl@ K6% 2 +galactic g@'l&ktIk OA% 3 +galantine 'g&l@ntin K6$ 3 +galantines 'g&l@ntinz Kj$ 3 +galas 'gAl@z Kj% 2 +galaxies 'g&l@ksIz Kj% 3 +galaxy 'g&l@ksI K8% 3 +gale geIl K6% 1 +gales geIlz Kj% 1 +gall gOl H0%,M6% 16A +gallant 'g&l@nt OA% 2 +gallant g@'l&nt K6$ 2 +gallantly 'g&l@ntlI Pu% 3 +gallantries 'g&l@ntrIz Mj% 3 +gallantry 'g&l@ntrI M8% 3 +gallants g@'l&nts Kj$ 2 +galled gOld Hc%,Hd% 16A +galleon 'g&lI@n K6% 3 +galleons 'g&lI@nz Kj% 3 +galleries 'g&l@rIz Kj% 3 +gallery 'g&l@rI K8% 3 +galley 'g&lI K6% 2 +galley-proof 'g&lI-pruf K6% 3 +galley-proofs 'g&lI-prufs Kj% 3 +galley-slave 'g&lI-sleIv K6% 3 +galley-slaves 'g&lI-sleIvz Kj% 3 +galleys 'g&lIz Kj% 2 +gallicism 'g&lIsIz@m K6$ 4 +gallicisms 'g&lIsIz@mz Kj$ 4 +galling 'gOlIN Hb% 26A +gallivant ,g&lI'v&nt I0% 32C +gallivanted ,g&lI'v&ntId Ic%,Id% 42C +gallivanting ,g&lI'v&ntIN Ib% 42C +gallivants ,g&lI'v&nts Ia% 32C +gallon 'g&l@n K6% 2 +gallons 'g&l@nz Kj% 2 +gallop 'g&l@p J0%,K6% 22A,2B,2C,6A +galloped 'g&l@pt Jc%,Jd% 22A,2B,2C,6A +galloping 'g&l@pIN Jb% 32A,2B,2C,6A +gallops 'g&l@ps Ja%,Kj% 22A,2B,2C,6A +gallows 'g&l@Uz Kj% 2 +gallows-bird 'g&l@Uz-b3d K6$ 3 +gallows-birds 'g&l@Uz-b3dz Kj$ 3 +galls gOlz Ha%,Mj% 16A +gallstone 'gOlst@Un K6% 2 +gallstones 'gOlst@Unz Kj% 2 +galore g@'lOR Pu% 2 +galosh g@'l0S K7$ 2 +galoshes g@'l0SIz Kj% 3 +gals g&lz Kj$ 1 +galumph g@'lVmf I0$ 2 +galumphed g@'lVmft Ic$,Id$ 2 +galumphing g@'lVmfIN Ib$ 3 +galumphs g@'lVmfs Ia$ 2 +galvanic g&l'v&nIk OA$ 3 +galvanism 'g&lv@nIz@m L@$ 4 +galvanize 'g&lv@naIz H2% 36A,14 +galvanized 'g&lv@naIzd Hc%,Hd% 36A,14 +galvanizes 'g&lv@naIzIz Ha% 46A,14 +galvanizing 'g&lv@naIzIN Hb% 46A,14 +gambit 'g&mbIt K6% 2 +gambits 'g&mbIts Kj% 2 +gamble 'g&mbl J2%,K6% 22A,2B,2C,15B +gambled 'g&mbld Jc%,Jd% 22A,2B,2C,15B +gambler 'g&mbl@R K6% 2 +gamblers 'g&mbl@z Kj% 2 +gambles 'g&mblz Ja%,Kj% 22A,2B,2C,15B +gambling 'g&mblIN Jb%,L@% 22A,2B,2C,15B +gambling-den 'g&mblIN-den K6% 3 +gambling-dens 'g&mblIN-denz Kj% 3 +gamboge g&m'buZ L@$ 2 +gambol 'g&mbl I4%,K6% 22A,2C +gambolled 'g&mbld Ic%,Id% 22A,2C +gambolling 'g&mblIN Ib% 32A,2C +gambols 'g&mblz Ia%,Kj% 22A,2C +game geIm J2$,M6%,OA% 12A,2C,15B +game-bag 'geIm-b&g K6$ 2 +game-bags 'geIm-b&gz Kj$ 2 +game-bird 'geIm-b3d K6% 2 +game-birds 'geIm-b3dz Kj% 2 +game-licence 'geIm-laIsns K6% 3 +game-licences 'geIm-laIsnsIz Kj% 4 +gamecock 'geImk0k K6$ 2 +gamecocks 'geImk0ks Kj$ 2 +gamed geImd Jc$,Jd$ 12A,2C,15B +gamekeeper 'geImkip@R K6% 3 +gamekeepers 'geImkip@z Kj% 3 +gamely 'geImlI Pu% 2 +games geImz Ja$,Mj% 12A,2C,15B +games-master 'geImz-mAst@R K6% 3 +games-masters 'geImz-mAst@z Kj% 3 +games-mistress 'geImz-mIstrIs K7% 3 +games-mistresses 'geImz-mIstrIsIz Kj% 4 +gamesmanship 'geImzm@nSIp L@% 3 +gamier 'geImI@R Or$ 3 +gamiest 'geImIIst Os$ 3 +gaming 'geImIN Jb% 22A,2C,15B +gaming-house 'geImIN-haUs K6% 3 +gaming-houses 'geImIN-haUzIz Kj% 4 +gaming-rooms 'geImIN-rumz Kj% 3 +gaming-table 'geImIN-teIbl K6% 4 +gaming-tables 'geImIN-teIblz Kj% 4 +gamma 'g&m@ K6$ 2 +gamma-rays 'g&m@-reIz Kj% 3 +gammas 'g&m@z Kj$ 2 +gammon 'g&m@n M6% 2 +gammons 'g&m@nz Mj$ 2 +gammy 'g&mI OA$ 2 +gamp g&mp K6$ 1 +gamps g&mps Kj$ 1 +gamut 'g&m@t K6% 2 +gamuts 'g&m@ts Kj$ 2 +gamy 'geImI OD$ 2 +gander 'g&nd@R K6% 2 +ganders 'g&nd@z Kj% 2 +gang g&N I0%,K6% 12C +ganged g&Nd Ic%,Id% 12C +ganger 'g&N@R K6% 2 +gangers 'g&N@z Kj% 2 +ganging 'g&NIN Ib% 22C +ganglia 'g&NglI@ Kj$ 3 +gangling 'g&NglIN OA% 2 +ganglion 'g&NglI@n K6$ 3 +ganglions 'g&NglI@nz Kj$ 3 +gangplank 'g&Npl&Nk K6% 2 +gangplanks 'g&Npl&Nks Kj% 2 +gangrene 'g&Ngrin J2$,L@% 22A,6A +gangrened 'g&Ngrind Jc$,Jd$ 22A,6A +gangrenes 'g&Ngrinz Ja$ 22A,6A +gangrening 'g&NgrinIN Jb$ 32A,6A +gangrenous 'g&NgrIn@s OA% 3 +gangs g&Nz Ia%,Kj% 12C +gangster 'g&Nst@R K6% 2 +gangsters 'g&Nst@z Kj% 2 +gangway 'g&NweI K6%,W-% 2 +gangways 'g&NweIz Kj% 2 +gannet 'g&nIt K6% 2 +gannets 'g&nIts Kj% 2 +gantries 'g&ntrIz Kj% 2 +gantry 'g&ntrI K8% 2 +gaol dZeIl H0%,M6% 16A +gaolbird 'dZeIlb3d K6% 2 +gaolbirds 'dZeIlb3dz Kj% 2 +gaolbreak 'dZeIlbreIk K6% 2 +gaolbreaks 'dZeIlbreIks Kj% 2 +gaoled dZeIld Hc%,Hd% 16A +gaoler 'dZeIl@R K6% 2 +gaolers 'dZeIl@z Kj% 2 +gaoling 'dZeIlIN Hb% 26A +gaols dZeIlz Ha%,Mj% 16A +gap g&p K6% 1 +gap-toothed 'g&p-tuTt OA% 2 +gape geIp I2%,K6% 12A,2C +gaped geIpt Ic%,Id% 12A,2C +gapes geIps Ia%,Kj% 12A,2C +gaping 'geIpIN Ib% 22A,2C +gaps g&ps Kj% 1 +garage 'g&rAZ H2%,K6% 26A +garaged 'g&rAZd Hc%,Hd% 26A +garages 'g&rAZIz Ha%,Kj% 36A +garaging 'g&rAZIN Hb% 36A +garb gAb H0$,L@% 16A +garbage 'gAbIdZ L@% 2 +garbage-can 'gAbIdZ-k&n K6% 3 +garbage-cans 'gAbIdZ-k&nz Kj% 3 +garbed gAbd Hc$,Hd% 16A +garbing 'gAbIN Hb$ 26A +garble 'gAbl H2$ 26A +garbled 'gAbld Hc$,Hd% 26A +garbles 'gAblz Ha$ 26A +garbling 'gAblIN Hb$ 26A +garbs gAbz Ha$ 16A +garden 'gAdn I0%,M6% 22A +garden-truck ,gAdn-'trVk K6$ 3 +garden-trucks ,gAdn-'trVks Kj$ 3 +gardened 'gAdnd Ic%,Id% 22A +gardener 'gAdn@R K6% 2 +gardeners 'gAdn@z Kj% 2 +gardenia gA'dinI@ K6% 4 +gardenias gA'dinI@z Kj% 4 +gardening 'gAdnIN Ib%,L@% 22A +gardens 'gAdnz Ia%,Mj% 22A +gargantuan gA'g&ntjU@n OA% 4 +gargle 'gAgl J2%,K6% 22A,6A +gargled 'gAgld Jc%,Jd% 22A,6A +gargles 'gAglz Ja%,Kj% 22A,6A +gargling 'gAglIN Jb% 22A,6A +gargoyle 'gAgoIl K6% 2 +gargoyles 'gAgoIlz Kj% 2 +garish 'ge@rIS OA% 2 +garishly 'ge@rISlI Pu% 3 +garland 'gAl@nd H0%,K6% 26A +garlanded 'gAl@ndId Hc%,Hd% 36A +garlanding 'gAl@ndIN Hb% 36A +garlands 'gAl@ndz Ha%,Kj% 26A +garlic 'gAlIk L@% 2 +garment 'gAm@nt K6% 2 +garments 'gAm@nts Kj% 2 +garner 'gAn@R H0%,K6$ 26A,15B +garnered 'gAn@d Hc%,Hd% 26A,15B +garnering 'gAn@rIN Hb% 36A,15B +garners 'gAn@z Ha%,Kj$ 26A,15B +garnet 'gAnIt K6% 2 +garnets 'gAnIts Kj% 2 +garnish 'gAnIS H1%,K7% 26A,14 +garnished 'gAnISt Hc%,Hd% 26A,14 +garnishes 'gAnISIz Ha%,Kj% 36A,14 +garnishing 'gAnISIN Hb% 36A,14 +garotte g@'r0t H2%,K6% 26A +garotted g@'r0tId Hc%,Hd% 36A +garottes g@'r0ts Ha%,Kj% 26A +garotting g@'r0tIN Hb% 36A +garret 'g&r@t K6% 2 +garrets 'g&r@ts Kj% 2 +garrison 'g&rIsn H0$,K6% 36A +garrisoned 'g&rIsnd Hc$,Hd% 36A +garrisoning 'g&rIsnIN Hb$ 46A +garrisons 'g&rIsnz Ha$,Kj% 36A +garrotte g@'r0t H2$,K6$ 26A +garrotted g@'r0tId Hc$,Hd$ 36A +garrottes g@'r0ts Ha$,Kj$ 26A +garrotting g@'r0tIN Hb$ 36A +garrulity g@'rulItI L@$ 4 +garrulous 'g&r@l@s OA% 3 +garter 'gAt@R K6% 2 +garters 'gAt@z Kj% 2 +gas g&s J5%,M7% 12A,2C,6A +gas-bracket 'g&s-br&kIt K6% 3 +gas-brackets 'g&s-br&kIts Kj% 3 +gas-cooker 'g&s-kUk@R K6% 3 +gas-cookers 'g&s-kUk@z Kj% 3 +gas-engine 'g&s-endZIn K6$ 3 +gas-engines 'g&s-endZInz Kj$ 3 +gas-fitter 'g&s-fIt@R K6% 3 +gas-fitters 'g&s-fIt@z Kj% 3 +gas-fittings 'g&s-fItINz Kj% 3 +gas-helmet 'g&s-helmIt K6$ 3 +gas-helmets 'g&s-helmIts Kj$ 3 +gas-holder 'g&s-h@Uld@R K6% 3 +gas-holders 'g&s-h@Uld@z Kj% 3 +gas-mask 'g&s-mAsk K6% 2 +gas-masks 'g&s-mAsks Kj% 2 +gas-meter 'g&s-mit@R K6% 3 +gas-meters 'g&s-mit@z Kj% 3 +gas-oven 'g&s-Vvn K6% 3 +gas-ovens 'g&s-Vvnz Kj% 3 +gas-ring 'g&s-rIN K6% 2 +gas-rings 'g&s-rINz Kj% 2 +gas-station 'g&s-steISn K6% 3 +gas-stations 'g&s-steISnz Kj% 3 +gas-stove 'g&s-st@Uv K6% 2 +gas-stoves 'g&s-st@Uvz Kj% 2 +gasbag 'g&sb&g K6% 2 +gasbags 'g&sb&gz Kj% 2 +gaseous 'g&sI@s OA% 3 +gases 'g&sIz Mj% 2 +gash g&S H1%,K7% 16A +gashed g&St Hc%,Hd% 16A +gashes 'g&SIz Ha%,Kj% 26A +gashing 'g&SIN Hb% 26A +gasification ,g&sIfI'keISn M6$ 5 +gasifications ,g&sIfI'keISnz Mj$ 5 +gasified 'g&sIfaId Jc$,Jd$ 32A,6A +gasifies 'g&sIfaIz Ja$ 32A,6A +gasify 'g&sIfaI J3$ 32A,6A +gasifying 'g&sIfaIIN Jb$ 42A,6A +gasket 'g&skIt K6% 2 +gaskets 'g&skIts Kj% 2 +gaslight 'g&slaIt L@% 2 +gasmask 'g&smAsk K6% 2 +gasmasks 'g&smAsks Kj% 2 +gasolene 'g&s@lin L@$ 3 +gasoline 'g&s@lin L@% 3 +gasometer g@'s0mIt@R K6% 4 +gasometers g@'s0mIt@z Kj% 4 +gasp gAsp J0%,K6% 12A,2C,6A,15B +gasped gAspt Jc%,Jd% 12A,2C,6A,15B +gasping 'gAspIN Jb% 22A,2C,6A,15B +gasps gAsps Ja%,Kj% 12A,2C,6A,15B +gassed g&st Jc%,Jd% 12A,2C,6A +gasses 'g&sIz Ja% 22A,2C,6A +gassier 'g&sI@R Or% 3 +gassiest 'g&sIIst Os% 3 +gassing 'g&sIN Jb% 22A,2C,6A +gassy 'g&sI OD% 2 +gastric 'g&strIk OA% 2 +gastritis g&'straItIs L@% 3 +gastronomic ,g&str@'n0mIk OA% 4 +gastronomy g&'str0n@mI L@% 4 +gasworks 'g&sw3ks K9% 2 +gate geIt H2$,K6% 16A +gateaux 'g&t@Uz Kj% 2 +gatecrash 'geItkr&S H1% 26A +gatecrashed 'geItkr&St Hc%,Hd% 26A +gatecrasher 'geItkr&S@R K6% 3 +gatecrashers 'geItkr&S@z Kj% 3 +gatecrashes 'geItkr&SIz Ha% 36A +gatecrashing 'geItkr&SIN Hb% 36A +gated 'geItId Hc%,Hd% 26A +gatehouse 'geIthaUs K6% 2 +gatehouses 'geIthaUzIz Kj% 3 +gatepost 'geItp@Ust K6% 2 +gateposts 'geItp@Usts Kj% 2 +gates geIts Ha%,Kj% 16A +gateway 'geItweI K6% 2 +gateways 'geItweIz Kj% 2 +gather 'g&D@R J0% 22A,2C,6A,9,12B,13B,15A,15B +gathered 'g&D@d Jc%,Jd% 22A,2C,6A,9,12B,13B,15A,15B +gatherer 'g&D@r@R K6% 3 +gatherers 'g&D@r@z Kj% 3 +gathering 'g&D@rIN Jb%,K6% 32A,2C,6A,9,12B,13B,15A,15B +gatherings 'g&D@rINz Kj% 3 +gathers 'g&D@z Ja% 22A,2C,6A,9,12B,13B,15A,15B +gating 'geItIN Hb$ 26A +gauche g@US OA% 1 +gaucherie 'g@US@rI M6$ 3 +gaucheries 'g@US@rIz Mj$ 3 +gaucho 'gaUtS@U K6$ 2 +gauchos 'gaUtS@Uz Kj$ 2 +gaud gOd K6$ 1 +gaudier 'gOdI@R Or% 3 +gaudies 'gOdIz Kj$ 2 +gaudiest 'gOdIIst Os% 3 +gaudily 'gOdIlI Pu% 3 +gauds gOdz Kj$ 1 +gaudy 'gOdI K8%,OD% 2 +gauge geIdZ H2%,M6% 16A +gauged geIdZd Hc%,Hd% 16A +gauges 'geIdZIz Ha%,Mj% 26A +gauging 'geIdZIN Hb% 26A +gaunt gOnt OA% 1 +gauntlet 'gOntlIt K6% 2 +gauntlets 'gOntlIts Kj% 2 +gauntness 'gOntn@s L@% 2 +gauze gOz L@% 1 +gauzier 'gOzI@R Or$ 3 +gauziest 'gOzIIst Os$ 3 +gauzy 'gOzI OD% 2 +gave geIv Jc* 12A,2C,3A,6A,12A,12B,13A,15B,16A +gavel 'g&vl K6% 2 +gavels 'g&vlz Kj% 2 +gavotte g@'v0t K6% 2 +gavottes g@'v0ts Kj% 2 +gawk gOk K6% 1 +gawkier 'gOkI@R Or% 3 +gawkiest 'gOkIIst Os% 3 +gawkiness 'gOkIn@s L@% 3 +gawks gOks Kj% 1 +gawky 'gOkI OD% 2 +gawp gOp I0% 12A,3A +gawped gOpt Ic%,Id% 12A,3A +gawping 'gOpIN Ib% 22A,3A +gawps gOps Ia% 12A,3A +gay geI K6%,OC% 1 +gayer 'geI@R Or% 2 +gayest 'geIIst Os% 2 +gayness 'geIn@s L@% 2 +gays geIz Kj% 1 +gaze geIz I2%,Ki% 12A,2C,3A +gazed geIzd Ic%,Id% 12A,2C,3A +gazelle g@'zel K6% 2 +gazelles g@'zelz Kj% 2 +gazes 'geIzIz Ia% 22A,2C,3A +gazette g@'zet H2$,K6% 2 +gazetted g@'zetId Hc$,Hd% 3 +gazetteer ,g&z@'tI@R K6% 3 +gazetteers ,g&z@'tI@z Kj% 3 +gazettes g@'zets Ha$,Kj% 2 +gazetting g@'zetIN Hb$ 3 +gazing 'geIzIN Ib% 22A,2C,3A +gazump g@'zVmp J0% 22A,6A +gazumped g@'zVmpt Jc%,Jd% 22A,6A +gazumping g@'zVmpIN Jb% 32A,6A +gazumps g@'zVmps Ja% 22A,6A +gear gI@R J0%,M6% 12A,2C,3A,14,15A +gear-case 'gI@-keIs K6$ 2 +gear-cases 'gI@-keIsIz Kj$ 3 +gearbox 'gI@b0ks K7% 2 +gearboxes 'gI@b0ksIz Kj% 3 +geared gI@d Jc%,Jd% 12A,2C,3A,14,15A +gearing 'gI@rIN Jb% 22A,2C,3A,14,15A +gears gI@z Ja%,Mj% 12A,2C,3A,14,15A +gearshift 'gI@SIft K6% 2 +gearshifts 'gI@SIfts Kj% 2 +gecko 'gek@U K6$ 2 +geckoes 'gek@Uz Kj$ 2 +geckos 'gek@Uz Kj$ 2 +gee dZi W-% 1 +gee whiz ,dZi 'wIz W-% 2 +gee-gee 'dZi-dZi K6% 2 +gee-gees 'dZi-dZiz Kj% 2 +gee-up ,dZi-'Vp W-% 2 +geese gis Kj% 1 +geezer 'giz@R K6% 2 +geezers 'giz@z Kj% 2 +geisha 'geIS@ K6% 2 +geishas 'geIS@z Kj% 2 +gel dZel I4%,K6% 1 +gelatin 'dZel@tIn L@$ 3 +gelatine 'dZel@tin L@% 3 +gelatinous dZI'l&tIn@s OA% 4 +geld geld H0$ 16A +gelded 'geldId Hc$,Hd% 26A +gelding 'geldIN Hb$,K6% 26A +geldings 'geldINz Kj% 2 +gelds geldz Ha$ 16A +gelignite 'dZelIgnaIt L@% 3 +gelled dZeld Ic%,Id% 1 +gelling 'dZelIN Ib% 2 +gels dZelz Ia%,Kj% 1 +gem dZem K6% 1 +gemmed dZemd OA% 1 +gems dZemz Kj% 1 +gen dZen H4%,L@% 115B +gendarme 'Z0ndAm K6% 2 +gendarmerie Z0n'dAm@rI K6$ 4 +gendarmeries Z0n'dAm@rIz Kj$ 4 +gendarmes 'Z0ndAmz Kj% 2 +gender 'dZend@R K6% 2 +genders 'dZend@z Kj% 2 +gene dZin K6% 1 +genealogical ,dZinI@'l0dZIkl OA% 6 +genealogically ,dZinI@'l0dZIklI Pu% 6 +genealogies ,dZinI'&l@dZIz Mj% 5 +genealogist ,dZinI'&l@dZIst K6% 5 +genealogists ,dZinI'&l@dZIsts Kj% 5 +genealogy ,dZinI'&l@dZI M8% 5 +genera 'dZen@r@ Kj$ 3 +general 'dZenr@l K6%,OA% 2 +generalissimo ,dZenr@'lIsIm@U K6$ 5 +generalissimos ,dZenr@'lIsIm@Uz Kj$ 5 +generalities ,dZen@'r&lItIz Mj% 5 +generality ,dZen@'r&lItI M8% 5 +generalization ,dZenr@laI'zeISn M6% 5 +generalizations ,dZenr@laI'zeISnz Mj% 5 +generalize 'dZenr@laIz J2% 32A,3A,6A,14 +generalized 'dZenr@laIzd Jc%,Jd% 32A,3A,6A,14 +generalizes 'dZenr@laIzIz Ja% 42A,3A,6A,14 +generalizing 'dZenr@laIzIN Jb% 42A,3A,6A,14 +generally 'dZenr@lI Pu% 3 +generals 'dZenr@lz Kj% 2 +generate 'dZen@reIt H2% 36A +generated 'dZen@reItId Hc%,Hd% 46A +generates 'dZen@reIts Ha% 36A +generating 'dZen@reItIN Hb% 46A +generation ,dZen@'reISn M6% 4 +generations ,dZen@'reISnz Mj% 4 +generative 'dZen@r@tIv OA% 4 +generator 'dZen@reIt@R K6% 4 +generators 'dZen@reIt@z Kj% 4 +generic dZI'nerIk OA% 3 +generically dZI'nerIklI Pu% 4 +generosities ,dZen@'r0sItIz Mj$ 5 +generosity ,dZen@'r0sItI M8% 5 +generous 'dZen@r@s OA% 3 +generously 'dZen@r@slI Pu% 4 +genes dZinz Kj% 1 +genesis 'dZen@sIs Ki% 3 +genetic dZI'netIk OA% 3 +genetically dZI'netIklI Pu% 4 +geneticist dZI'netIsIst K6% 4 +geneticists dZI'netIsIsts Kj% 4 +genetics dZI'netIks Lk% 3 +genial 'dZinI@l OA% 3 +genialities ,dZinI'&lItIz Mj$ 5 +geniality ,dZinI'&lItI M8% 5 +genially 'dZinI@lI Pu% 4 +genie 'dZinI K6% 2 +genies 'dZinIz Kj% 2 +genii 'dZinIaI Kj$ 3 +genital 'dZenItl OA% 3 +genitals 'dZenItlz Kj% 3 +genitive 'dZen@tIv OA% 3 +genius 'dZinI@s M7% 3 +genius loci ,dZinI@s 'l@UsaI Ki$ 5 +geniuses 'dZinI@sIz Mj% 4 +genned dZend Hc%,Hd% 115B +genning 'dZenIN Hb$ 215B +genocide 'dZen@saId L@% 3 +genre 'ZAnr@ K6% 2 +genre-painting 'ZAnr@-peIntIN K6$ 4 +genre-paintings 'ZAnr@-peIntINz Kj$ 4 +genres 'ZAnr@z Kj% 2 +gens dZenz Ha$ 115B +gent dZent K6% 1 +genteel dZen'til OA% 2 +genteelly dZen'ti@lI Pu% 3 +gentian 'dZenSn K6$ 2 +gentians 'dZenSnz Kj$ 2 +gentile 'dZentaIl K6%,OA% 2 +gentiles 'dZentaIlz Kj% 2 +gentility dZen'tIlItI L@% 4 +gentle 'dZentl OB% 2 +gentlefolk 'dZentlf@Uk Kj% 3 +gentleman 'dZentlm@n Ki% 3 +gentleman-at-arms ,dZentlm@n-@t-'Amz Ki$ 5 +gentlemanly 'dZentlm@nlI OA% 4 +gentlemen 'dZentlm@n Kj% 3 +gentlemen-at-arms ,dZentlm@n-@t-'Amz Kj$ 5 +gentleness 'dZentln@s L@% 3 +gentler 'dZentl@R Or% 2 +gentlest 'dZentlIst Os% 2 +gentlewoman 'dZentlwUm@n Ki% 4 +gentlewomen 'dZentlwImIn Kj% 4 +gently 'dZentlI Pu% 2 +gentry 'dZentrI K9% 2 +gents dZents Kj% 1 +genuflect 'dZenjUflekt I0% 32A +genuflected 'dZenjUflektId Ic%,Id% 42A +genuflecting 'dZenjUflektIN Ib% 42A +genuflection ,dZenjU'flekSn K6% 4 +genuflections ,dZenjU'flekSnz Kj% 4 +genuflects 'dZenjUflekts Ia% 32A +genuflexion ,dZenjU'flekSn K6$ 4 +genuflexions ,dZenjU'flekSnz Kj$ 4 +genuine 'dZenjUIn OA% 3 +genuinely 'dZenjUInlI Pu% 4 +genuineness 'dZenjUIn+n@s L@% 4 +genus 'dZin@s Ki% 2 +geo- ,dZI@U- U-% 2 +geocentric ,dZi@U'sentrIk OA% 4 +geographer dZI'0gr@f@R K6% 4 +geographers dZI'0gr@f@z Kj% 4 +geographical ,dZI@'gr&fIkl OA% 5 +geographically ,dZI@'gr&fIklI Pu% 5 +geography dZI'0gr@fI L@% 4 +geological ,dZI@'l0dZIkl OA% 5 +geologically ,dZI@'l0dZIklI Pu% 5 +geologist dZI'0l@dZIst K6% 4 +geologists dZI'0l@dZIsts Kj% 4 +geology dZI'0l@dZI L@% 4 +geometric ,dZI@'metrIk OA% 4 +geometrical ,dZI@'metrIkl OA% 5 +geometrically ,dZI@'metrIklI Pu% 5 +geometry dZI'0m@trI L@% 4 +geophysical ,dZI@'fIzIkl OA% 5 +geophysics ,dZi@U'fIzIks Lk% 4 +geopolitics ,dZI@U'p0l@tIks Lk$ 5 +georgette dZO'dZet L@$ 2 +geranium dZ@'reInI@m K6% 4 +geraniums dZ@'reInI@mz Kj% 4 +geriatric ,dZerI'&trIk OA% 4 +geriatrician ,dZerI@'trISn K6% 5 +geriatricians ,dZerI@'trISnz Kj% 5 +geriatrics ,dZerI'&trIks Lk% 4 +germ dZ3m K6% 1 +germane dZ@'meIn OA% 2 +germicide 'dZ3mIsaId K6% 3 +germicides 'dZ3mIsaIdz Kj$ 3 +germinate 'dZ3mIneIt J2% 32A,6A +germinated 'dZ3mIneItId Jc%,Jd% 42A,6A +germinates 'dZ3mIneIts Ja% 32A,6A +germinating 'dZ3mIneItIN Jb% 42A,6A +germination ,dZ3mI'neISn L@% 4 +germs dZ3mz Kj% 1 +gerontology ,dZer0n't0l@dZI L@$ 5 +gerrymander ,dZerI'm&nd@R H0$,K6$ 46A +gerrymandered ,dZerI'm&nd@d Hc$,Hd$ 46A +gerrymandering ,dZerI'm&nd@rIN Hb$ 56A +gerrymanders ,dZerI'm&nd@z Ha$,Kj$ 46A +gerund 'dZer@nd K6$ 2 +gerunds 'dZer@ndz Kj$ 2 +gestation dZe'steISn K6% 3 +gestations dZe'steISnz Kj$ 3 +gesticulate dZe'stIkjUleIt I2% 42A +gesticulated dZe'stIkjUleItId Ic%,Id% 52A +gesticulates dZe'stIkjUleIts Ia% 42A +gesticulating dZe'stIkjUleItIN Ib% 52A +gesticulation dZe,stIkjU'leISn M6% 5 +gesticulations dZe,stIkjU'leISnz Mj% 5 +gesture 'dZestS@R I2%,M6% 22A +gestured 'dZestS@d Ic%,Id% 22A +gestures 'dZestS@z Ia%,Mj% 22A +gesturing 'dZestS@rIN Ib% 32A +get get J5* 12C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +get-at-able ,get-'&t-@bl OA$ 4 +get-together 'get-t@geD@R K6% 4 +get-togethers 'get-t@geD@z Kj$ 4 +get-up 'get-Vp K6% 2 +get-ups 'get-Vps Kj$ 2 +getaway 'get@weI K6% 3 +getaways 'get@weIz Kj$ 3 +gets gets Ja% 12C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +getting 'getIN Jb% 22C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +geum 'dZi@m K6$ 2 +geums 'dZi@mz Kj$ 2 +geyser 'giz@R K6% 2 +geysers 'giz@z Kj% 2 +gharries 'g&rIz Kj$ 2 +gharry 'g&rI K8$ 2 +ghastlier 'gAstlI@R Or% 3 +ghastliest 'gAstlIIst Os% 3 +ghastly 'gAstlI OD% 2 +ghat gOt K6$ 1 +ghats gOts Kj$ 1 +ghee gi L@$ 1 +gherkin 'g3kIn K6% 2 +gherkins 'g3kInz Kj% 2 +ghetto 'get@U K6% 2 +ghettos 'get@Uz Kj% 2 +ghost g@Ust J0%,K6% 1 +ghost-writer 'g@Ust-raIt@R K6% 3 +ghost-writers 'g@Ust-raIt@z Kj% 3 +ghosted 'g@UstId Jc%,Jd% 2 +ghosting 'g@UstIN Jb% 2 +ghostliness 'g@UstlIn@s L@% 3 +ghostly 'g@UstlI OA% 2 +ghosts g@Usts Ja%,Kj% 1 +ghoul gul K6% 1 +ghoulish 'gulIS OA% 2 +ghouls gulz Kj% 1 +giant 'dZaI@nt K6% 2 +giantess 'dZaI@ntes K7$ 3 +giantesses 'dZaI@ntesIz Kj$ 4 +giants 'dZaI@nts Kj% 2 +gibber 'dZIb@R I0$ 22A,2C +gibbered 'dZIb@d Ic%,Id% 22A,2C +gibbering 'dZIb@rIN Ib% 32A,2C +gibberish 'dZIb@rIS L@% 3 +gibbers 'dZIb@z Ia$ 22A,2C +gibbet 'dZIbIt H0$,K6% 2 +gibbeted 'dZIbItId Hc$,Hd$ 3 +gibbeting 'dZIbItIN Hb$ 3 +gibbets 'dZIbIts Ha$,Kj$ 2 +gibbon 'gIb@n K6% 2 +gibbons 'gIb@nz Kj% 2 +gibbous 'dZIb@s OA$ 2 +gibe dZaIb I2%,K6% 12A,3A +gibed dZaIbd Ic%,Id% 12A,3A +gibes dZaIbz Ia%,Kj% 12A,3A +gibing 'dZaIbIN Ib% 22A,3A +gibingly 'dZaIbINlI Pu% 3 +giblets 'dZIblIts Kj% 2 +giddier 'gIdI@R Or% 3 +giddiest 'gIdIIst Os% 3 +giddily 'gIdIlI Pu% 3 +giddiness 'gIdIn@s L@% 3 +giddy 'gIdI OD% 2 +gift gIft H0$,M6% 16A +gifted 'gIftId Hc$,Hd%,OA% 26A +gifting 'gIftIN Hb$ 26A +gifts gIfts Ha$,Mj% 16A +gig gIg K6% 1 +gigantic dZaI'g&ntIk OA% 3 +giggle 'gIgl I2%,K6% 22A,6A +giggled 'gIgld Ic%,Id% 22A,6A +giggles 'gIglz Ia%,Kj% 22A,6A +giggling 'gIglIN Ib% 22A,6A +gigolo 'ZIg@l@U K6% 3 +gigolos 'ZIg@l@Uz Kj% 3 +gigs gIgz Kj% 1 +gild gIld H0%,K6% 16A +gilded 'gIldId Hc%,Hd% 26A +gilder 'gIld@R K6$ 2 +gilders 'gIld@z Kj$ 2 +gilding 'gIldIN Hb%,L@% 26A +gilds gIldz Ha%,Kj% 16A +gill dZIl K6% 1 +gill gIl K6$ 1 +gillie 'gIlI K6$ 2 +gillies 'gIlIz Kj$ 2 +gills dZIlz Kj% 1 +gills gIlz Kj% 1 +gilt gIlt Hd$,L@% 16A +gilt-edged 'gIlt-edZd OA% 2 +gimbals 'dZImblz Kj$ 2 +gimcrack 'gImkr&k OA$ 2 +gimlet 'gImlIt K6% 2 +gimlets 'gImlIts Kj% 2 +gimmick 'gImIk K6% 2 +gimmicks 'gImIks Kj% 2 +gin dZIn H4$,M6% 16A +ginger 'dZIndZ@R H0%,L@% 26A,15B +gingerbread 'dZIndZ@bred M6% 3 +gingerbreads 'dZIndZ@bredz Mj% 3 +gingered 'dZIndZ@d Hc%,Hd% 26A,15B +gingering 'dZIndZ@rIN Hb% 36A,15B +gingerly 'dZIndZ@lI OA%,Pu% 3 +gingers 'dZIndZ@z Ha% 26A,15B +gingham 'gIN@m L@% 2 +gingko 'gINk@U K6$ 2 +gingkoes 'gINk@Uz Kj$ 2 +gingkos 'gINk@Uz Kj$ 2 +ginned dZInd Hc$,Hd$ 16A +ginning 'dZInIN Hb$ 26A +gins dZInz Ha$,Mj$ 16A +ginseng 'dZInseN L@% 2 +gipsies 'dZIpsIz Kj% 2 +gipsy 'dZIpsI K8% 2 +giraffe dZI'rAf K6% 2 +giraffes dZI'rAfs Kj% 2 +gird g3d H0% 115B +girded 'g3dId Hc%,Hd% 215B +girder 'g3d@R K6% 2 +girders 'g3d@z Kj% 2 +girding 'g3dIN Hb% 215B +girdle 'g3dl H2%,K6% 215A,15B +girdled 'g3dld Hc%,Hd% 215A,15B +girdles 'g3dlz Ha%,Kj% 215A,15B +girdling 'g3dlIN Hb% 215A,15B +girds g3dz Ha% 115B +girl g3l K6* 1 +girlfriend 'g3lfrend K6% 2 +girlfriends 'g3lfrendz Kj% 2 +girlhood 'g3lhUd L@% 2 +girlish 'g3lIS OA% 2 +girlishly 'g3lISlI Pu% 3 +girlishness 'g3lISn@s L@% 3 +girls g3lz Kj% 1 +giro 'dZaIr@U L@% 2 +girt g3t Hc$,Hd$ 115B +girth g3T K6% 1 +girths g3Ts Kj% 1 +gist dZIst K6% 1 +gists dZIsts Kj$ 1 +give gIv J5*,L@% 12A,2C,3A,6A,12A,12B,13A,15B,16A +giveaway 'gIv@weI K6% 3 +giveaways 'gIv@weIz Kj$ 3 +given gIvn Jd* 22A,2C,3A,6A,12A,12B,13A,15B,16A +giver 'gIv@R K6% 2 +givers 'gIv@z Kj% 2 +gives gIvz Ja% 12A,2C,3A,6A,12A,12B,13A,15B,16A +giving 'gIvIN Jb% 22A,2C,3A,6A,12A,12B,13A,15B,16A +gizzard 'gIz@d K6$ 2 +gizzards 'gIz@dz Kj$ 2 +glac_e 'gl&seI OA% 2 +glacial 'gleIsI@l OA% 3 +glacier 'gl&sI@R K6% 3 +glaciers 'gl&sI@z Kj% 3 +glad gl&d OE% 1 +gladden 'gl&dn H0% 26A +gladdened 'gl&dnd Hc%,Hd% 26A +gladdening 'gl&dnIN Hb% 36A +gladdens 'gl&dnz Ha% 26A +gladder 'gl&d@R Or$ 2 +gladdest 'gl&dIst Os$ 2 +glade gleId K6% 1 +glades gleIdz Kj% 1 +gladiator 'gl&dIeIt@R K6% 4 +gladiatorial ,gl&dI@'tOrI@l OA% 6 +gladiators 'gl&dIeIt@z Kj% 4 +gladioli ,gl&dI'@UlaI Kj$ 4 +gladiolus ,gl&dI'@Ul@s K7$ 4 +gladioluses ,gl&dI'@Ul@sIz Kj$ 5 +gladly 'gl&dlI Pu% 2 +gladness 'gl&dn@s L@% 2 +gladsome 'gl&ds@m OA$ 2 +glamorization ,gl&m@raI'zeISn L@% 5 +glamorize 'gl&m@raIz H2% 36A +glamorized 'gl&m@raIzd Hc%,Hd% 36A +glamorizes 'gl&m@raIzIz Ha% 46A +glamorizing 'gl&m@raIzIN Hb% 46A +glamorous 'gl&m@r@s OA% 3 +glamour 'gl&m@R L@% 2 +glance glAns J2%,K6% 12C,3A,15A +glanced glAnst Jc%,Jd% 12C,3A,15A +glances 'glAnsIz Ja%,Kj% 22C,3A,15A +glancing 'glAnsIN Jb% 22C,3A,15A +gland gl&nd K6% 1 +glanders 'gl&nd@z L@$ 2 +glands gl&ndz Kj% 1 +glandular 'gl&ndjUl@R OA% 3 +glare gle@R J2%,M6% 12A,2C,3A,6A,14 +glared gle@d Jc%,Jd% 12A,2C,3A,6A,14 +glares gle@z Ja%,Mj% 12A,2C,3A,6A,14 +glaring 'gle@rIN Jb%,OA% 22A,2C,3A,6A,14 +glass glAs H1$,M7% 16A,15B +glass-blower 'glAs-bl@U@R K6% 3 +glass-blowers 'glAs-bl@U@z Kj% 3 +glass-cutter 'glAs-kVt@R K6% 3 +glass-cutters 'glAs-kVt@z Kj% 3 +glass-wool 'glAs-wUl L@$ 2 +glassed glAst Hc$,Hd% 16A,15B +glasses 'glAsIz Ha$,Mj% 26A,15B +glassful 'glAsfUl K6% 2 +glassfuls 'glAsfUlz Kj% 2 +glasshouse 'glAshaUs K6% 2 +glasshouses 'glAshaUzIz Kj% 3 +glassier 'glAsI@R Or$ 3 +glassiest 'glAsIIst Os$ 3 +glassing 'glAsIN Hb$ 26A,15B +glassware 'glAswe@R L@% 2 +glassworks 'glAsw3ks K9% 2 +glassy 'glAsI OD% 2 +glaucoma glO'k@Um@ L@% 3 +glaucous 'glOk@s OA$ 2 +glaze gleIz J2%,M6% 12A,2C,6A,15B +glazed gleIzd Jc%,Jd% 12A,2C,6A,15B +glazes 'gleIzIz Ja%,Mj% 22A,2C,6A,15B +glazier 'gleIzI@R K6% 3 +glaziers 'gleIzI@z Kj% 3 +glazing 'gleIzIN Jb% 22A,2C,6A,15B +gleam glim I0%,K6% 12A,2C +gleamed glimd Ic%,Id% 12A,2C +gleaming 'glimIN Ib% 22A,2C +gleams glimz Ia%,Kj% 12A,2C +glean glin J0% 12A,6A +gleaned glind Jc%,Jd% 12A,6A +gleaner 'glin@R K6% 2 +gleaners 'glin@z Kj% 2 +gleaning 'glinIN Jb% 22A,6A +gleanings 'glinINz Kj% 2 +gleans glinz Ja% 12A,6A +glebe glib K6$ 1 +glebes glibz Kj$ 1 +glee gli M6% 1 +gleeful 'glif@l OA% 2 +gleefully 'glif@lI Pu% 3 +glees gliz Mj$ 1 +glen glen K6% 1 +glens glenz Kj% 1 +glib glIb OE% 1 +glibber 'glIb@R Or$ 2 +glibbest 'glIbIst Os$ 2 +glibly 'glIblI Pu% 2 +glibness 'glIbn@s L@% 2 +glide glaId I2%,K6% 12A,2C +glided 'glaIdId Ic%,Id% 22A,2C +glider 'glaId@R K6% 2 +gliders 'glaId@z Kj% 2 +glides glaIdz Ia%,Kj% 12A,2C +gliding 'glaIdIN Ib%,L@% 22A,2C +glimmer 'glIm@R I0%,K6% 22A,2C +glimmered 'glIm@d Ic%,Id% 22A,2C +glimmering 'glIm@rIN Ib% 32A,2C +glimmers 'glIm@z Ia%,Kj% 22A,2C +glimpse glImps H2%,K6% 16A,19A +glimpsed glImpst Hc%,Hd% 16A,19A +glimpses 'glImpsIz Ha%,Kj% 26A,19A +glimpsing 'glImpsIN Hb% 26A,19A +glint glInt I0%,K6% 1 +glinted 'glIntId Ic%,Id% 2 +glinting 'glIntIN Ib% 2 +glints glInts Ia%,Kj% 1 +glissade glI'seId I2$,K6$ 2 +glissaded glI'seIdId Ic$,Id$ 3 +glissades glI'seIdz Ia$,Kj$ 2 +glissading glI'seIdIN Ib$ 3 +glissando glI's&nd@U OA$,Pu$ 3 +glisten 'glIsn I0% 22A,2C +glistened 'glIsnd Ic%,Id% 22A,2C +glistening 'glIsnIN Ib% 32A,2C +glistens 'glIsnz Ia% 22A,2C +glister 'glIst@R I0$,Ki$ 2 +glistered 'glIst@d Ic$,Id$ 2 +glistering 'glIst@rIN Ib$ 3 +glisters 'glIst@z Ia$ 2 +glitter 'glIt@R I0%,L@% 22A,2C +glittered 'glIt@d Ic%,Id% 22A,2C +glittering 'glIt@rIN Ib%,OA% 32A,2C +glitters 'glIt@z Ia% 22A,2C +gloaming 'gl@UmIN Ki% 2 +gloat gl@Ut I0% 12A,3A +gloated 'gl@UtId Ic%,Id% 22A,3A +gloating 'gl@UtIN Ib% 22A,3A +gloatingly 'gl@UtINlI Pu% 3 +gloats gl@Uts Ia% 12A,3A +global 'gl@Ubl OA% 2 +globe gl@Ub K6% 1 +globes gl@Ubz Kj% 1 +globetrot 'gl@Ubtr0t I4% 22A +globetrots 'gl@Ubtr0ts Ia% 22A +globetrotted 'gl@Ubtr0tId Ic%,Id% 32A +globetrotter 'gl@Ubtr0t@R K6% 3 +globetrotters 'gl@Ubtr0t@z Kj% 3 +globetrotting 'gl@Ubtr0tIN Ib% 32A +globular 'gl0bjUl@R OA% 3 +globule 'gl0bjul K6% 2 +globules 'gl0bjulz Kj% 2 +glockenspiel 'gl0k@nspil K6% 3 +glockenspiels 'gl0k@nspilz Kj% 3 +gloom glum M6% 1 +gloomier 'glumI@R Or% 3 +gloomiest 'glumIIst Os% 3 +gloomily 'glumIlI Pu% 3 +glooms glumz Mj$ 1 +gloomy 'glumI OD% 2 +gloried 'glOrId Ic%,Id% 23A +glories 'glOrIz Ia%,Mj% 23A +glorification ,glOrIfI'keISn L@% 5 +glorified 'glOrIfaId Hc%,Hd% 36A +glorifies 'glOrIfaIz Ha% 36A +glorify 'glOrIfaI H3% 36A +glorifying 'glOrIfaIIN Hb% 46A +glorious 'glOrI@s OA% 3 +gloriously 'glOrI@slI Pu% 4 +glory 'glOrI I3%,M8% 23A +glory-hole 'glOrI-h@Ul K6% 3 +glory-holes 'glOrI-h@Ulz Kj$ 3 +glorying 'glOrIIN Ib% 33A +gloss gl0s H1%,K7% 16A,15A +glossaries 'gl0s@rIz Kj% 3 +glossary 'gl0s@rI K8% 3 +glossed gl0st Hc%,Hd% 16A,15A +glosses 'gl0sIz Ha%,Kj% 26A,15A +glossier 'gl0sI@R Or% 3 +glossiest 'gl0sIIst Os% 3 +glossily 'gl0sIlI Pu% 3 +glossiness 'gl0sIn@s L@% 3 +glossing 'gl0sIN Hb% 26A,15A +glossy 'gl0sI OD% 2 +glottal 'gl0tl OA% 2 +glottis 'gl0tIs K7$ 2 +glottises 'gl0tIsIz Kj$ 3 +glove glVv K6% 1 +glove-compartment 'glVv-k@m,pAtm@nt K6% 4 +glove-compartments 'glVv-k@m,pAtm@nts Kj% 4 +gloved glVvd OA% 1 +gloves glVvz Kj% 1 +glow gl@U I0%,Ki% 12A,2C +glow-worm 'gl@U-w3m K6% 2 +glow-worms 'gl@U-w3mz Kj% 2 +glowed gl@Ud Ic%,Id% 12A,2C +glower 'glaU@R I0% 22A,3A +glowered 'glaU@d Ic%,Id% 22A,3A +glowering 'glaU@rIN Ib% 32A,3A +gloweringly 'glaUw@rINlI Pu% 4 +glowers 'glaU@z Ia% 22A,3A +glowing 'gl@UIN Ib%,OA% 22A,2C +glowingly 'gl@UINlI Pu% 3 +glows gl@Uz Ia% 12A,2C +glucose 'gluk@Us L@% 2 +glue glu H5%,M6% 16A,15A,15B +glued glud Hc%,Hd% 16A,15A,15B +glues gluz Ha%,Mj% 16A,15A,15B +gluey 'gluI OA% 2 +gluing 'gluIN Hb% 26A,15A,15B +glum glVm OE% 1 +glumly 'glVmlI Pu% 2 +glummer 'glVm@R Or% 2 +glummest 'glVmIst Os% 2 +glumness 'glVmn@s L@% 2 +glut glVt H4%,K6% 16A,14 +gluten 'glut@n L@$ 2 +glutinous 'glutIn@s OA% 3 +gluts glVts Ha%,Kj% 16A,14 +glutted 'glVtId Hc%,Hd% 26A,14 +glutting 'glVtIN Hb% 26A,14 +glutton 'glVtn K6% 2 +gluttonous 'glVt@n@s OA% 3 +gluttonously 'glVt@n@slI Pu$ 4 +gluttons 'glVtnz Kj% 2 +gluttony 'glVtnI L@% 3 +glycerine 'glIs@rin L@% 3 +gnarled nAld OA% 1 +gnash n&S J1% 12A,6A +gnashed n&St Jc%,Jd% 12A,6A +gnashes 'n&SIz Ja% 22A,6A +gnashing 'n&SIN Jb% 22A,6A +gnat n&t K6% 1 +gnats n&ts Kj% 1 +gnaw nO J0% 13A,6A,15B +gnawed nOd Jc%,Jd% 13A,6A,15B +gnawing 'nOIN Jb% 23A,6A,15B +gnaws nOz Ja% 13A,6A,15B +gnome n@Um K6% 1 +gnomes n@Umz Kj% 1 +gnu nu K6$ 1 +gnus nuz Kj$ 1 +go g@U I5*,Ki% 12A,2B,2C,2D,2E,3A,4A,6A,15B +go-ahead 'g@U-@hed Ki% 3 +go-as-you-please ,g@U-@z-ju-'pliz Oq$ 4 +go-between 'g@U-bItwin K6% 3 +go-betweens 'g@U-bItwinz Kj% 3 +go-by 'g@U-baI Ki$ 2 +go-cart 'g@U-kAt K6$ 2 +go-carts 'g@U-kAts Kj$ 2 +go-getter ,g@U-'get@R K6% 3 +go-getters ,g@U-'get@z Kj% 3 +go-kart 'g@U-kAt K6% 2 +go-karts 'g@U-kAts Kj% 2 +go-slow 'g@U-sl@U K6% 2 +go-slows 'g@U-sl@Uz Kj$ 2 +go-to-meeting 'g@U-t@-mitIN Oq$ 4 +goad g@Ud H0%,K6% 16A,14,15B,17 +goaded 'g@UdId Hc%,Hd% 26A,14,15B,17 +goading 'g@UdIN Hb% 26A,14,15B,17 +goads g@Udz Ha%,Kj% 16A,14,15B,17 +goal g@Ul K6% 1 +goal-kick 'g@Ul-kIk K6% 2 +goal-kicks 'g@Ul-kIks Kj% 2 +goal-line 'g@Ul-laIn K6% 2 +goal-lines 'g@Ul-laInz Kj% 2 +goalie 'g@UlI K6% 2 +goalies 'g@UlIz Kj% 2 +goalkeeper 'g@Ulkip@R K6% 3 +goalkeepers 'g@Ulkip@z Kj% 3 +goalless 'g@Ul+lIs OA% 2 +goalmouth 'g@UlmaUT K6% 2 +goalmouths 'g@UlmaUDz Kj$ 2 +goals g@Ulz Kj% 1 +goat g@Ut K6% 1 +goatee g@U'ti K6$ 2 +goatees g@U'tiz Kj$ 2 +goatherd 'g@Uth3d K6% 2 +goatherds 'g@Uth3dz Kj% 2 +goats g@Uts Kj% 1 +goatskin 'g@UtskIn M6% 2 +goatskins 'g@UtskInz Mj% 2 +gob g0b K6% 1 +gobbet 'g0bIt K6$ 2 +gobbets 'g0bIts Kj$ 2 +gobble 'g0bl J2%,K6% 22A,2C,6A,15B +gobbled 'g0bld Jc%,Jd% 22A,2C,6A,15B +gobbledygook 'g0bldIgUk L@% 4 +gobbler 'g0bl@R K6$ 2 +gobblers 'g0bl@z Kj$ 2 +gobbles 'g0blz Ja%,Kj% 22A,2C,6A,15B +gobbling 'g0blIN Jb% 22A,2C,6A,15B +goblet 'g0blIt K6% 2 +goblets 'g0blIts Kj% 2 +goblin 'g0blIn K6% 2 +goblins 'g0blInz Kj% 2 +gobs g0bz Kj$ 1 +god g0d K6% 1 +god-damn 'g0d-d&m OA$ 2 +god-damned 'g0d-d&md OA% 2 +godchild 'g0dtSaIld Ki% 2 +godchildren 'g0dtSIldr@n Kj% 3 +goddam 'g0d&m OA%,Pu% 2 +goddaughter 'g0d+dOt@R K6% 3 +goddaughters 'g0d+dOt@z Kj% 3 +goddess 'g0dIs K7% 2 +goddesses 'g0dIsIz Kj% 3 +godfather 'g0dfAD@R K6% 3 +godfathers 'g0dfAD@z Kj% 3 +godfearing 'g0dfI@rIN OA% 3 +godforsaken 'g0df@seIk@n OA% 4 +godhead 'g0dhed L@% 2 +godless 'g0dlIs OA% 2 +godlessness 'g0dlIsn@s L@% 3 +godlier 'g0dlI@R Or$ 3 +godliest 'g0dlIIst Os$ 3 +godlike 'g0dlaIk OA% 2 +godliness 'g0dlIn@s L@% 3 +godly 'g0dlI OD% 2 +godmother 'g0dmVD@R K6% 3 +godmothers 'g0dmVD@z Kj% 3 +godown 'g@UdaUn K6$ 2 +godowns 'g@UdaUnz Kj$ 2 +godparent 'g0dpe@r@nt K6% 3 +godparents 'g0dpe@r@nts Kj% 3 +gods g0dz Kj% 1 +godsend 'g0dsend K6% 2 +godsends 'g0dsendz Kj% 2 +godson 'g0dsVn K6% 2 +godsons 'g0dsVnz Kj% 2 +godspeed g0d'spid L@% 2 +goes g@Uz Ia%,Kj% 12A,2B,2C,2D,2E,3A,4A,6A,15B +goggle 'g0gl I2% 22A,3A +goggle-box 'g0gl-b0ks K7% 3 +goggle-boxes 'g0gl-b0ksIz Kj% 4 +goggle-eyed 'g0gl-aId OA% 3 +goggled 'g0gld Ic%,Id% 22A,3A +goggles 'g0glz Ia%,Kj% 22A,3A +goggling 'g0glIN Ib% 22A,3A +going 'g@UIN Ib*,M6%,OA% 22A,2B,2C,2D,2E,3A,4A,6A,15B +going-over ,g@UIN-'@Uv@R K6% 4 +going-overs ,g@UIN-'@Uv@z Kj$ 4 +goings 'g@UINz Mj% 2 +goings-on ,g@UINz-'0n Kj% 3 +goitre 'goIt@R K6$ 2 +goitres 'goIt@z Kj$ 2 +gold g@Uld L@% 1 +gold-beater 'g@Uld-bit@R K6$ 3 +gold-beaters 'g@Uld-bit@z Kj$ 3 +gold-digger 'g@Uld-dIg@R K6% 3 +gold-diggers 'g@Uld-dIg@z Kj% 3 +gold-dust 'g@Uld-dVst L@% 2 +gold-foil g@Uld-'foIl L@% 2 +gold-leaf g@Uld-'lif L@% 2 +gold-plate g@Uld-'pleIt L@% 2 +gold-rush 'g@Uld-rVS K7% 2 +gold-rushes 'g@Uld-rVSIz Kj$ 3 +golden 'g@Uld@n OA% 2 +goldfield 'g@Uldfild K6% 2 +goldfields 'g@Uldfildz Kj% 2 +goldfinch 'g@UldfIntS K7% 2 +goldfinches 'g@UldfIntSIz Kj% 3 +goldfish 'g@UldfIS K9% 2 +goldfishes 'g@UldfISIz Kj% 3 +goldmine 'g@UldmaIn K6% 2 +goldmines 'g@UldmaInz Kj% 2 +goldsmith 'g@UldsmIT K6% 2 +goldsmiths 'g@UldsmITs Kj% 2 +golf g0lf I0$,L@% 1 +golf-ball 'g0lf-bOl K6% 2 +golf-balls 'g0lf-bOlz Kj% 2 +golf-club 'g0lf-klVb K6% 2 +golf-clubs 'g0lf-klVbz Kj% 2 +golf-course 'g0lf-kOs K6% 2 +golf-courses 'g0lf-kOsIz Kj% 3 +golf-links 'g0lf-lINks K9% 2 +golfed g0lft Ic$,Id$ 1 +golfer 'g0lf@R K6% 2 +golfers 'g0lf@z Kj% 2 +golfing 'g0lfIN Ib% 2 +golfs g0lfs Ia$ 1 +golliwog 'g0lIw0g K6% 3 +golliwogs 'g0lIw0gz Kj% 3 +golly 'g0lI W-% 2 +golosh g@'l0S K7$ 2 +goloshes g@'l0SIz Kj% 3 +gondola 'g0nd@l@ K6% 3 +gondolas 'g0nd@l@z Kj% 3 +gondolier ,g0nd@'lI@R K6% 4 +gondoliers ,g0nd@'lI@z Kj% 4 +gone g0n Id* 12A,2B,2C,2D,2E,3A,4A,6A,15B +goner 'g0n@R K6% 2 +goners 'g0n@z Kj% 2 +gong g0N H0$,K6% 1 +gonged g0Nd Hc$,Hd$ 1 +gonging 'g0NIN Hb$ 2 +gongs g0Nz Ha$,Kj% 1 +gonna 'g0n@ Gh% 2 +gonorrhea ,g0n@'rI@ L@$ 4 +gonorrhoea ,g0n@'rI@ L@% 4 +goo gu L@% 1 +good gUd L@%,OE* 1 +good-fellowship gUd-'fel@USIp L@$ 4 +good-for-naught 'gUd-f@-nOt K6$,OA$ 3 +good-for-naughts 'gUd-f@-nOts Kj$ 3 +good-for-nothing 'gUd-f@-nVTIN K6%,OA% 4 +good-for-nothings 'gUd-f@-nVTINz Kj% 4 +good-humoured gUd-'hjum@d OA% 3 +good-looking gUd-'lUkIN OA% 3 +good-natured gUd-'neItS@d OA% 3 +good-neighbourliness gUd-'neIb@lIn@s L@% 5 +good-tempered gUd-'temp@d OA% 3 +good-time 'gUd-taIm OA% 2 +goodbye ,gUd'baI K6%,W-% 2 +goodbyes ,gUd'baIz Kj% 2 +goodies 'gUdIz Kj% 2 +goodish 'gUdIS Oq% 2 +goodlier 'gUdlI@R Or$ 3 +goodliest 'gUdlIIst Os$ 3 +goodly 'gUdlI OD% 2 +goodness 'gUdn@s L@% 2 +goods gUdz Kj% 1 +goodwill ,gUd'wIl L@% 2 +goody 'gUdI K8$ 2 +goody-goodies 'gUdI-gUdIz Kj% 4 +goody-goody 'gUdI-gUdI K8%,OA% 4 +gooey 'guI OE% 2 +goof guf J0%,K6% 12A,6A +goofed guft Jc%,Jd% 12A,6A +goofier 'gufI@R Or$ 3 +goofiest 'gufIIst Os$ 3 +goofing 'gufIN Jb% 22A,6A +goofs gufs Ja%,Kj% 12A,6A +goofy 'gufI OD% 2 +googlies 'guglIz Kj% 2 +googly 'guglI K8% 2 +gooier 'guI@R Or% 2 +gooiest 'guIIst Os% 3 +goon gun K6% 1 +goons gunz Kj% 1 +goose gus Ki% 1 +goose-flesh 'gus-fleS L@% 2 +goose-step 'gus-step K6% 2 +goose-steps 'gus-steps Kj$ 2 +gooseberries 'gUzb@rIz Kj% 3 +gooseberry 'gUzb@rI K8% 3 +gopher 'g@Uf@R K6$ 2 +gophers 'g@Uf@z Kj$ 2 +gore gOR H2%,L@% 16A +gored gOd Hc%,Hd% 16A +gores gOz Ha% 16A +gorge gOdZ J2%,K6% 12A,2C,6A,14 +gorged gOdZd Jc%,Jd% 12A,2C,6A,14 +gorgeous 'gOdZ@s OA% 2 +gorgeously 'gOdZ@slI Pu% 3 +gorges 'gOdZIz Ja%,Kj% 22A,2C,6A,14 +gorging 'gOdZIN Jb% 22A,2C,6A,14 +gorier 'gOrI@R Or$ 3 +goriest 'gOrIIst Os% 3 +gorilla g@'rIl@ K6% 3 +gorillas g@'rIl@z Kj% 3 +goring 'gOrIN Hb% 26A +gormandize 'gOm@ndaIz I2$ 3 +gormandized 'gOm@ndaIzd Ic$,Id$ 3 +gormandizes 'gOm@ndaIzIz Ia$ 4 +gormandizing 'gOm@ndaIzIN Ib$ 4 +gormless 'gOmlIs OA% 2 +gorse gOs L@% 1 +gory 'gOrI OD% 2 +gosh g0S W-% 1 +gosling 'g0zlIN K6% 2 +goslings 'g0zlINz Kj% 2 +gospel 'g0spl M6% 2 +gospels 'g0splz Mj% 2 +gossamer 'g0s@m@R M6% 3 +gossamers 'g0s@m@z Mj$ 3 +gossip 'g0sIp I0%,M6% 22A,2C +gossiped 'g0sIpt Ic%,Id% 22A,2C +gossiping 'g0sIpIN Ib% 32A,2C +gossipped 'g0sIpt Ic%,Id% 22A,2C +gossipping 'g0sIpIN Ib% 32A,2C +gossips 'g0sIps Ia%,Mj% 22A,2C +got g0t Jc*,Jd* 12C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +gotta 'g0t@ Gh% 2 +gotten 'g0t@n Jd$ 22C,2D,2E,3A,4A,6A,7A,12B,13B,14,15A,15B,17,19B,22,24C +gouache gU'AS L@$ 2 +gouge gaUdZ H2%,K6% 16A,15B +gouged gaUdZd Hc%,Hd% 16A,15B +gouges 'gaUdZIz Ha%,Kj% 26A,15B +gouging 'gaUdZIN Hb% 26A,15B +goulash 'gul&S M7% 2 +goulashes 'gul&SIz Mj$ 3 +gourd gU@d K6% 1 +gourds gU@dz Kj% 1 +gourmand 'gU@m@nd K6$ 2 +gourmands 'gU@m@ndz Kj$ 2 +gourmet 'gU@meI K6% 2 +gourmets 'gU@meIz Kj% 2 +gout gaUt L@% 1 +goutier 'gaUtI@R Or$ 3 +goutiest 'gaUtIIst Os$ 3 +gouty 'gaUtI OD% 2 +govern 'gVvn J0% 22A,6A +governance 'gVv@n@ns L@% 3 +governed 'gVvnd Jc%,Jd% 22A,6A +governess 'gVv@nes K7% 3 +governesses 'gVv@nesIz Kj% 4 +governing 'gVvnIN Jb%,OA% 32A,6A +government 'gVv@nm@nt M6% 3 +governmental ,gVvn'mentl OA% 4 +governments 'gVv@nm@nts Mj% 3 +governor 'gVv@n@R K6% 3 +governors 'gVv@n@z Kj% 3 +governs 'gVvnz Ja% 22A,6A +govt 'gVv@nm@nt Y>% 3 +gown gaUn H0$,K6% 1 +gowned gaUnd Hc$,Hd% 1 +gowning 'gaUnIN Hb$ 2 +gowns gaUnz Ha$,Kj% 1 +grab gr&b J4%,K6% 13A,6A +grabbed gr&bd Jc%,Jd% 13A,6A +grabber 'gr&b@R K6% 2 +grabbers 'gr&b@z Kj% 2 +grabbing 'gr&bIN Jb% 23A,6A +grabs gr&bz Ja%,Kj% 13A,6A +grace greIs H2%,M6% 16A +graced greIst Hc%,Hd% 16A +graceful 'greIsf@l OA% 2 +gracefully 'greIsf@lI Pu% 3 +graceless 'greIslIs OA% 2 +gracelessly 'greIslIslI Pu% 3 +graces 'greIsIz Ha%,Mj% 26A +gracing 'greIsIN Hb% 26A +gracious 'greIS@s OA% 2 +graciously 'greIS@slI Pu% 3 +graciousness 'greIS@sn@s L@% 3 +gradation gr@'deISn M6% 3 +gradations gr@'deISnz Mj% 3 +grade greId H2%,K6% 16A,15B +graded 'greIdId Hc%,Hd% 26A,15B +grades greIdz Ha%,Kj% 16A,15B +gradient 'greIdI@nt K6% 3 +gradients 'greIdI@nts Kj% 3 +grading 'greIdIN Hb% 26A,15B +gradual 'gr&dZU@l OA% 3 +gradually 'gr&dZU@lI Pu% 4 +gradualness 'gr&dZU@ln@s L@% 4 +graduate 'gr&dZU@t K6% 3 +graduate 'gr&dZUeIt J2% 32A,2C,6A +graduated 'gr&dZUeItId Jc%,Jd% 42A,2C,6A +graduates 'gr&dZU@ts Kj% 3 +graduates 'gr&dZUeIts Ja% 32A,2C,6A +graduating 'gr&dZUeItIN Jb% 42A,2C,6A +graduation ,gr&dZU'eISn K6% 4 +graduations ,gr&dZU'eISnz Kj$ 4 +graffiti gr@'fiti Kj% 3 +graffito gr@'fit@U Ki$ 3 +graft grAft J0%,M6% 12A,6A,15A,15B +grafted 'grAftId Jc%,Jd% 22A,6A,15A,15B +grafting 'grAftIN Jb% 22A,6A,15A,15B +grafts grAfts Ja%,Mj% 12A,6A,15A,15B +grail greIl K6$ 1 +grails greIlz Kj$ 1 +grain greIn M6% 1 +grained greInd Ot% 1 +grains greInz Mj% 1 +gram gr&m K6% 1 +grammar 'gr&m@R M6% 2 +grammarian gr@'me@rI@n K6% 4 +grammarians gr@'me@rI@nz Kj% 4 +grammars 'gr&m@z Mj% 2 +grammatical gr@'m&tIkl OA% 4 +grammatically gr@'m&tIklI Pu% 4 +gramme gr&m K6% 1 +grammes gr&mz Kj% 1 +gramophone 'gr&m@f@Un K6% 3 +gramophones 'gr&m@f@Unz Kj% 3 +grampus 'gr&mp@s K7$ 2 +grampuses 'gr&mp@sIz Kj$ 3 +grams gr&mz Kj% 1 +granaries 'gr&n@rIz Kj% 3 +granary 'gr&n@rI K8% 3 +grand gr&nd OC% 1 +grand- gr&nd- U-% 1 +grandad 'gr&nd&d K6% 2 +grandads 'gr&nd&dz Kj% 2 +grandaunt gr&nd'Ant K6$ 2 +grandaunts gr&nd'Ants Kj$ 2 +grandchild 'gr&ntSaIld Ki% 2 +grandchildren 'gr&ntSIldr@n Kj% 3 +granddad 'gr&nd&d K6$ 2 +granddads 'gr&nd&dz Kj$ 2 +granddaughter 'gr&ndOt@R K6% 3 +granddaughters 'gr&ndOt@z Kj% 3 +grandee gr&n'di K6$ 2 +grandees gr&n'diz Kj$ 2 +grander 'gr&nd@R Or% 2 +grandest 'gr&ndIst Os% 2 +grandeur 'gr&ndZ@R L@% 2 +grandfather 'gr&nfAD@R K6% 3 +grandfathers 'gr&nfAD@z Kj% 3 +grandiloquence gr&n'dIl@kw@ns L@% 4 +grandiloquent gr&n'dIl@kw@nt OA% 4 +grandiose 'gr&ndI@Us OA% 3 +grandly 'gr&ndlI Pu% 2 +grandma 'gr&nmA K6% 2 +grandmas 'gr&nmAz Kj% 2 +grandmother 'gr&nmVD@R K6% 3 +grandmothers 'gr&nmVD@z Kj% 3 +grandnephew 'gr&n+nefju K6$ 3 +grandnephews 'gr&n+nefjuz Kj$ 3 +grandniece gr&n'nis K6$ 2 +grandnieces gr&n'nisIz Kj$ 3 +grandpa 'gr&npA K6% 2 +grandparent 'gr&npe@r@nt K6% 3 +grandparents 'gr&npe@r@nts Kj% 3 +grandpas 'gr&npAz Kj% 2 +grandson 'gr&nsVn K6% 2 +grandsons 'gr&nsVnz Kj% 2 +grandstand 'gr&nst&nd K6% 2 +grandstands 'gr&nst&ndz Kj% 2 +granduncle 'gr&ndVNkl K6$ 3 +granduncles 'gr&ndVNklz Kj$ 3 +grange greIndZ K6$ 1 +granges 'greIndZIz Kj$ 2 +granite 'gr&nIt L@% 2 +grannie 'gr&nI K6% 2 +grannies 'gr&nIz Kj% 2 +granny 'gr&nI K8% 2 +grant grAnt H0%,K6% 16A,9,12A,13A,25 +granted 'grAntId Hc%,Hd% 26A,9,12A,13A,25 +granting 'grAntIN Hb% 26A,9,12A,13A,25 +grants grAnts Ha%,Kj% 16A,9,12A,13A,25 +granular 'gr&njUl@R OA% 3 +granularity ,gr&njU'l&rItI L@% 5 +granulate 'gr&njUleIt J2$ 32A,6A +granulated 'gr&njUleItId Jc$,Jd% 42A,6A +granulates 'gr&njUleIts Ja$ 32A,6A +granulating 'gr&njUleItIN Jb$ 42A,6A +granule 'gr&njul K6% 2 +granules 'gr&njulz Kj% 2 +grape greIp K6% 1 +grape-sugar 'greIp-SUg@R L@% 3 +grapefruit 'greIpfrut M9% 2 +grapefruits 'greIpfruts Kj% 2 +grapes greIps Kj% 1 +grapeshot 'greIpS0t L@% 2 +grapevine 'greIpvaIn K6% 2 +grapevines 'greIpvaInz Kj% 2 +graph grAf K6% 1 +graphic 'gr&fIk OA% 2 +graphical 'gr&fIkl OA% 3 +graphically 'gr&fIklI Pu% 3 +graphics 'gr&fIks Lk% 2 +graphite 'gr&faIt L@% 2 +graphs grAfs Kj% 1 +grapnel 'gr&pnl K6$ 2 +grapnels 'gr&pnlz Kj$ 2 +grapple 'gr&pl I2% 22A,2C,3A +grappled 'gr&pld Ic%,Id% 22A,2C,3A +grapples 'gr&plz Ia% 22A,2C,3A +grappling 'gr&plIN Ib% 22A,2C,3A +grappling-iron 'gr&plIN-aI@n K6$ 4 +grappling-irons 'gr&plIN-aI@nz Kj$ 4 +grasp grAsp J0%,K6% 13A,6A +grasped grAspt Jc%,Jd% 13A,6A +grasping 'grAspIN Jb%,OA% 23A,6A +grasps grAsps Ja%,Kj% 13A,6A +grass grAs J1%,M7% 12A,3A,6A,15B +grassed grAst Jc%,Jd% 12A,3A,6A,15B +grasses 'grAsIz Ja%,Mj% 22A,3A,6A,15B +grasshopper 'grAsh0p@R K6% 3 +grasshoppers 'grAsh0p@z Kj% 3 +grassier 'grAsI@R Or% 3 +grassiest 'grAsIIst Os% 3 +grassing 'grAsIN Jb% 22A,3A,6A,15B +grassland 'grAsl&nd K6% 2 +grasslands 'grAsl&ndz Kj% 2 +grassroots 'grAsruts Kj% 2 +grassy 'grAsI OD% 2 +grate greIt J2%,K6% 12A,3A,6A,15A +grated 'greItId Jc%,Jd% 22A,3A,6A,15A +grateful 'greItf@l OA% 2 +gratefully 'greItf@lI Pu% 3 +gratefulness 'greItf@ln@s L@% 3 +grater 'greIt@R K6% 2 +graters 'greIt@z Kj% 2 +grates greIts Ja%,Kj% 12A,3A,6A,15A +gratification ,gr&tIfI'keISn M6% 5 +gratifications ,gr&tIfI'keISnz Mj% 5 +gratified 'gr&tIfaId Hc%,Hd% 36A +gratifies 'gr&tIfaIz Ha% 36A +gratify 'gr&tIfaI H3% 36A +gratifying 'gr&tIfaIIN Hb%,OA% 46A +grating 'greItIN Jb%,K6% 22A,3A,6A,15A +gratingly 'greItINlI Pu% 3 +gratings 'greItINz Kj$ 2 +gratis 'gr&tIs OA%,Pu% 2 +gratitude 'gr&tItjud L@% 3 +gratuities gr@'tjuItIz Kj% 4 +gratuitous gr@'tjuIt@s OA% 4 +gratuitously gr@'tjuIt@slI Pu% 5 +gratuity gr@'tjuItI K8% 4 +grave grAv K6% 1 +grave greIv H5$,K6%,OB% 1 +grave-clothes 'greIv-kl@UDz Kj% 2 +gravel 'gr&vl H4$,L@% 26A +gravelled 'gr&vld Hc$,Hd% 26A +gravelling 'gr&v@lIN Hb$ 36A +gravelly 'gr&v@lI OA% 3 +gravels 'gr&vlz Ha$ 26A +gravely 'greIvlI Pu$ 2 +graven 'greIv@n Hd$,OA% 2 +graver 'greIv@R Or% 2 +graves grAvz Kj$ 1 +graves greIvz Kj% 1 +gravest 'greIvIst Os% 2 +gravestone 'greIvst@Un K6% 2 +gravestones 'greIvst@Unz Kj% 2 +graveyard 'greIvjAd K6% 2 +graveyards 'greIvjAdz Kj% 2 +graving dock 'greIvIN d0k K6$ 3 +graving docks 'greIvIN d0ks Kj$ 3 +gravitate 'gr&vIteIt I2% 33A +gravitated 'gr&vIteItId Ic%,Id% 43A +gravitates 'gr&vIteIts Ia% 33A +gravitating 'gr&vIteItIN Ib% 43A +gravitation ,gr&vI'teISn L@% 4 +gravity 'gr&vItI L@% 3 +gravure gr@'vjU@R K6$ 2 +gravures gr@'vjU@z Kj$ 2 +gravy 'greIvI L@% 2 +gravy-boat 'greIvI-b@Ut K6% 3 +gravy-boats 'greIvI-b@Uts Kj% 3 +gray greI J0$,M6%,OC% 12A,6A +grayed greId Jc$,Jd$ 12A,6A +grayer 'greI@R Or% 2 +grayest 'greIIst Os% 2 +graying 'greIIN Jb% 22A,6A +grays greIz Ja$,Mj% 12A,6A +graze greIz J2%,K6% 12A,2C,6A +grazed greIzd Jc%,Jd% 12A,2C,6A +grazes 'greIzIz Ja%,Kj% 22A,2C,6A +grazier 'greIzI@R K6$ 3 +graziers 'greIzI@z Kj$ 3 +grazing 'greIzIN Jb% 22A,2C,6A +grazing-land 'greIzIN-l&nd K6% 3 +grazing-lands 'greIzIN-l&ndz Kj% 3 +grease gris H2%,L@% 1 +grease-gun 'gris-gVn K6% 2 +grease-guns 'gris-gVnz Kj% 2 +greased grist Hc%,Hd% 1 +greasepaint 'grispeInt L@% 2 +greaseproof 'grispruf OA% 2 +greaser 'gris@R K6% 2 +greasers 'gris@z Kj% 2 +greases 'grisIz Ha% 2 +greasier 'grisI@R Or% 3 +greasiest 'grisIIst Os% 3 +greasily 'grisIlI Pu% 3 +greasiness 'grisIn@s L@% 3 +greasing 'grisIN Hb% 2 +greasy 'grisI OD% 2 +great greIt OC* 1 +greatcoat 'greItk@Ut K6% 2 +greatcoats 'greItk@Uts Kj% 2 +greater 'greIt@R Or% 2 +greatest 'greItIst Os% 2 +greatly 'greItlI Pu% 2 +greatness 'greItn@s L@% 2 +greaves grivz Kj$ 1 +grebe grib K6$ 1 +grebes gribz Kj$ 1 +greed grid L@% 1 +greedier 'gridI@R Or% 3 +greediest 'gridIIst Os% 3 +greedily 'gridIlI Pu% 3 +greediness 'gridIn@s L@% 3 +greedy 'gridI OD% 2 +green grin M6%,OC% 1 +greenback 'grinb&k K6$ 2 +greenbacks 'grinb&ks Kj$ 2 +greener 'grin@R Or% 2 +greenery 'grin@rI L@% 3 +greenest 'grinIst Os% 2 +greeneyed 'grinaId OA% 2 +greenfly 'grinflaI L@% 2 +greengage 'gringeIdZ K6% 2 +greengages 'gringeIdZIz Kj% 3 +greengrocer 'gringr@Us@R K6% 3 +greengroceries 'gringr@Us@rIz Kj$ 4 +greengrocers 'gringr@Us@z Kj% 3 +greengrocery 'gringr@Us@rI K8% 4 +greenhorn 'grinhOn K6$ 2 +greenhorns 'grinhOnz Kj$ 2 +greenhouse 'grinhaUs K6% 2 +greenhouses 'grinhaUzIz Kj% 3 +greenish 'grinIS OA% 2 +greenishness 'grinISn@s L@% 3 +greens grinz Mj% 1 +greenstuffs 'grinstVfs Kj$ 2 +greensward 'grinswOd L@$ 2 +greenwood 'grinwUd K6$ 2 +greenwoods 'grinwUdz Kj$ 2 +greet grit H0% 16A,14 +greeted 'gritId Hc%,Hd% 26A,14 +greeting 'gritIN Hb%,K6% 26A,14 +greetings 'gritINz Kj% 2 +greets grits Ha% 16A,14 +gregarious grI'ge@rI@s OA% 4 +gregariously grI'ge@rI@slI Pu% 5 +gregariousness grI'ge@rI@sn@s L@% 5 +gremlin 'gremlIn K6% 2 +gremlins 'gremlInz Kj% 2 +grenade grI'neId K6% 2 +grenades grI'neIdz Kj% 2 +grenadier ,gren@'dI@R K6% 4 +grenadiers ,gren@'dI@z Kj% 4 +grew gru Jc% 12A,2C,2D,3A,4A,6A,12B,13B +grey greI J0$,M6%,OC% 12A,6A +grey-headed greI-'hedId OA% 3 +greybeard 'greIbI@d K6% 2 +greybeards 'greIbI@dz Kj% 2 +greyed greId Jc$,Jd$ 12A,6A +greyer 'greI@R Or% 2 +greyest 'greIIst Os% 2 +greyhound 'greIhaUnd K6% 2 +greyhounds 'greIhaUndz Kj% 2 +greying 'greIIN Jb% 22A,6A +greyish 'greIIS OA% 2 +greyly 'greIlI Pu% 2 +greys greIz Ja$,Mj% 12A,6A +grid grId K6% 1 +griddle 'grIdl K6% 2 +griddles 'grIdlz Kj% 2 +gridiron 'grIdaI@n K6% 3 +gridirons 'grIdaI@nz Kj$ 3 +grids grIdz Kj% 1 +grief grif M6% 1 +griefs grifs Mj% 1 +grievance 'grivns K6% 2 +grievances 'grivnsIz Kj% 3 +grieve griv J2% 12A,2C,6A +grieved grivd Jc%,Jd% 12A,2C,6A +grieves grivz Ja% 12A,2C,6A +grieving 'grivIN Jb% 22A,2C,6A +grievous 'griv@s OA% 2 +grievously 'griv@slI Pu% 3 +griffin 'grIfIn K6$ 2 +griffins 'grIfInz Kj$ 2 +griffon 'grIf@n K6$ 2 +griffons 'grIf@nz Kj$ 2 +grill grIl J0%,K6% 12A,2C,6A +grille grIl K6$ 1 +grilled grIld Jc%,Jd% 12A,2C,6A +grilles grIlz Kj$ 1 +grilling 'grIlIN Jb% 22A,2C,6A +grillroom 'grIlrum K6% 2 +grillrooms 'grIlrumz Kj% 2 +grills grIlz Ja%,Kj% 12A,2C,6A +grim grIm OE% 1 +grimace grI'meIs I2%,K6% 22A +grimaced grI'meIst Ic%,Id% 22A +grimaces grI'meIsIz Ia%,Kj% 32A +grimacing grI'meIsIN Ib% 32A +grime graIm H2$,L@% 16A +grimed graImd Hc$,Hd% 16A +grimes graImz Ha$ 16A +grimier 'graImI@R Or% 3 +grimiest 'graImIIst Os% 3 +griming 'graImIN Hb$ 26A +grimly 'grImlI Pu% 2 +grimmer 'grIm@R Or% 2 +grimmest 'grImIst Os% 2 +grimness 'grImn@s L@% 2 +grimy 'graImI OD% 2 +grin grIn J4%,K6% 12A,2C,6A +grind graInd J5%,K6% 12A,2C,6A,15A,15B +grinder 'graInd@R K6% 2 +grinders 'graInd@z Kj% 2 +grinding 'graIndIN Jb% 22A,2C,6A,15A,15B +grinds graIndz Ja%,Kj% 12A,2C,6A,15A,15B +grindstone 'graIndst@Un K6$ 2 +grindstones 'graIndst@Unz Kj$ 2 +grinned grInd Jc%,Jd% 12A,2C,6A +grinning 'grInIN Jb% 22A,2C,6A +grins grInz Ja%,Kj% 12A,2C,6A +grip grIp J4%,K6% 12A,6A +gripes graIps Kj% 1 +grippe grip K6$ 1 +gripped grIpt Jc%,Jd% 12A,6A +grippes grips Kj$ 1 +gripping 'grIpIN Jb% 22A,6A +grips grIps Ja%,Kj% 12A,6A +gripsack 'grIps&k K6$ 2 +gripsacks 'grIps&ks Kj$ 2 +grisly 'grIzlI OA% 2 +grist grIst L@% 1 +gristle 'grIsl L@% 2 +grit grIt H4%,L@% 1 +grits grIts Ha%,Lk% 1 +gritted 'grItId Hc%,Hd% 2 +grittier 'grItI@R Or% 3 +grittiest 'grItIIst Os% 3 +gritting 'grItIN Hb% 2 +gritty 'grItI OD% 2 +grizzle 'grIzl I2% 2 +grizzled 'grIzld Ic%,Id%,OA% 2 +grizzles 'grIzlz Ia% 2 +grizzlies 'grIzlIz Kj$ 2 +grizzling 'grIzlIN Ib% 2 +grizzly 'grIzlI K8$ 2 +groan gr@Un J0%,K6% 12A,2C,6A,15B +groaned gr@Und Jc%,Jd% 12A,2C,6A,15B +groaning 'gr@UnIN Jb% 22A,2C,6A,15B +groans gr@Unz Ja%,Kj% 12A,2C,6A,15B +groat gr@Ut K6$ 1 +groats gr@Uts Kj$ 1 +grocer 'gr@Us@R K6% 2 +groceries 'gr@Us@rIz Mj% 3 +grocers 'gr@Us@z Kj% 2 +grocery 'gr@Us@rI M8% 3 +grog gr0g L@% 1 +groggier 'gr0gI@R Or$ 3 +groggiest 'gr0gIIst Os$ 3 +groggy 'gr0gI OD% 2 +groin groIn H0$,K6% 1 +groined groInd Hc$,Hd% 1 +groining 'groInIN Hb$ 2 +groins groInz Ha$,Kj$ 1 +groom grum H0%,K6% 16A +groomed grumd Hc%,Hd% 16A +grooming 'grumIN Hb% 26A +grooms grumz Ha%,Kj% 16A +groove gruv H2$,K6% 1 +grooved gruvd Hc$,Hd% 1 +groover 'gruv@R K6% 2 +groovers 'gruv@z Kj% 2 +grooves gruvz Ha$,Kj% 1 +groovier 'gruvI@R Or% 3 +grooviest 'gruvIIst Os% 3 +grooving 'gruvIN Hb$ 2 +groovy 'gruvI OD% 2 +grope gr@Up J2% 12A,2C,3A,15A +groped gr@Upt Jc%,Jd% 12A,2C,3A,15A +gropes gr@Ups Ja% 12A,2C,3A,15A +groping 'gr@UpIN Jb% 22A,2C,3A,15A +gropingly 'gr@UpINlI Pu% 3 +gross gr@Us H1%,K9%,OA% 16A +grossed gr@Ust Hc%,Hd% 16A +grosses 'gr@UsIz Ha% 26A +grossing 'gr@UsIN Hb% 26A +grossly 'gr@UslI Pu% 2 +grossness 'gr@Usn@s L@% 2 +grot gr0t M6% 1 +grotesque gr@U'tesk K6%,OA% 2 +grotesquely gr@U'tesklI Pu% 3 +grotesqueness gr@U'teskn@s L@% 3 +grotesques gr@U'tesks Kj$ 2 +grots gr0ts Mj$ 1 +grottier 'gr0tI@R Or% 3 +grottiest 'gr0tIIst Os% 3 +grotto 'gr0t@U K6% 2 +grottoes 'gr0t@Uz Kj% 2 +grottos 'gr0t@Uz Kj% 2 +grotty 'gr0tI OD% 2 +grouch graUtS I1%,K7% 1 +grouched graUtSt Ic%,Id% 1 +grouches 'graUtSIz Ia%,Kj% 2 +grouchier 'graUtSI@R Or$ 3 +grouchiest 'graUtSIIst Os$ 3 +grouching 'graUtSIN Ib% 2 +grouchy 'graUtSI OD% 2 +ground graUnd J0%,Jc%,Jd%,M6% 12A,2C,6A,14,15A,15B +ground-bait 'graUnd-beIt L@% 2 +ground-fish 'graUnd-fIS K9$ 2 +ground-fishes 'graUnd-fISIz Kj$ 3 +ground-plan 'graUnd-pl&n K6% 2 +ground-plans 'graUnd-pl&nz Kj% 2 +ground-rent 'graUnd-rent M6% 2 +ground-rents 'graUnd-rents Mj$ 2 +grounded 'graUndId Jc%,Jd% 22A,2C,6A,14,15A,15B +grounding 'graUndIN Jb%,K6% 22A,2C,6A,14,15A,15B +groundings 'graUndINz Kj% 2 +groundless 'graUndlIs OA% 2 +groundnut 'graUndnVt K6% 2 +groundnuts 'graUndnVts Kj% 2 +grounds graUndz Ja%,Mj% 12A,2C,6A,14,15A,15B +groundsel 'graUnsl L@$ 2 +groundsheet 'graUndSit K6% 2 +groundsheets 'graUndSits Kj% 2 +groundsman 'graUndzm@n Ki% 2 +groundsmen 'graUndzm@n Kj% 2 +groundwork 'graUndw3k L@% 2 +group grup J0%,K6* 12C,6A,15A,15B +grouped grupt Jc%,Jd% 12C,6A,15A,15B +grouping 'grupIN Jb%,K6% 22C,6A,15A,15B +groupings 'grupINz Kj% 2 +groups grups Ja%,Kj% 12C,6A,15A,15B +grouse graUs I2%,K9% 12A,2C +groused graUst Ic%,Id% 12A,2C +grouses 'graUsIz Ia%,Kj% 22A,2C +grousing 'graUsIN Ib% 22A,2C +grove gr@Uv K6% 1 +grovel 'gr0vl I4% 22A,2C +grovelled 'gr0vld Ic%,Id% 22A,2C +groveller 'gr0vl@R K6% 3 +grovellers 'gr0vl@z Kj% 3 +grovelling 'gr0v@lIN Ib% 32A,2C +grovels 'gr0vlz Ia% 22A,2C +groves gr@Uvz Kj% 1 +grow gr@U J5% 12A,2C,2D,3A,4A,6A,12B,13B +grower 'gr@U@R K6% 2 +growers 'gr@U@z Kj% 2 +growing 'gr@UIN Jb% 22A,2C,2D,3A,4A,6A,12B,13B +growing-pains 'gr@UIN-peInz Kj% 3 +growl graUl J0%,K6% 12A,2C,6A,15B +growled graUld Jc%,Jd% 12A,2C,6A,15B +growler 'graUl@R K6% 2 +growlers 'graUl@z Kj% 2 +growling 'graUlIN Jb% 22A,2C,6A,15B +growlingly 'graUlINlI Pu$ 3 +growls graUlz Ja%,Kj% 12A,2C,6A,15B +grown gr@Un Jd% 12A,2C,2D,3A,4A,6A,12B,13B +grown-up 'gr@Un-Vp K6%,OA% 2 +grown-ups 'gr@Un-Vps Kj% 2 +grows gr@Uz Ja% 12A,2C,2D,3A,4A,6A,12B,13B +growth gr@UT M6% 1 +growths gr@UTs Mj% 1 +groyne groIn K6$ 1 +groynes groInz Kj$ 1 +grub grVb J4$,M6% 12C,6A,15B +grubbed grVbd Jc$,Jd$ 12C,6A,15B +grubbier 'grVbI@R Or% 3 +grubbiest 'grVbIIst Os% 3 +grubbiness 'grVbInIs L@% 3 +grubbing 'grVbIN Jb% 22C,6A,15B +grubby 'grVbI OD% 2 +grubs grVbz Ja$,Mj% 12C,6A,15B +grudge grVdZ H2%,K6% 16C,12A,13A +grudged grVdZd Hc%,Hd% 16C,12A,13A +grudges 'grVdZIz Ha%,Kj% 26C,12A,13A +grudging 'grVdZIN Hb% 26C,12A,13A +grudgingly 'grVdZINlI Pu% 3 +gruel 'gru@l L@$ 2 +gruelling 'gru@lIN OA% 3 +gruesome 'grus@m OA% 2 +gruesomely 'grus@mlI Pu% 3 +gruesomeness 'grus@mn@s L@$ 3 +gruff grVf OC% 1 +gruffer 'grVf@R Or% 2 +gruffest 'grVfIst Os% 2 +gruffly 'grVflI Pu% 2 +gruffness 'grVfn@s L@% 2 +grumble 'grVmbl J2%,K6% 22A,2C,3A,6A,15B +grumbled 'grVmbld Jc%,Jd% 22A,2C,3A,6A,15B +grumbler 'grVmbl@R K6% 2 +grumblers 'grVmbl@z Kj% 2 +grumbles 'grVmblz Ja%,Kj% 22A,2C,3A,6A,15B +grumbling 'grVmblIN Jb% 22A,2C,3A,6A,15B +grumpier 'grVmpI@R Or% 3 +grumpiest 'grVmpIIst Os% 3 +grumpily 'grVmpIlI Pu% 3 +grumpiness 'grVmpIn@s L@% 3 +grumpy 'grVmpI OD% 2 +grunt grVnt J0%,K6% 12A,6A,15B +grunted 'grVntId Jc%,Jd% 22A,6A,15B +grunting 'grVntIN Jb% 22A,6A,15B +grunts grVnts Ja%,Kj% 12A,6A,15B +gryphon 'grIf@n K6$ 2 +gryphons 'grIf@nz Kj$ 2 +guano 'gwAn@U M6$ 2 +guanos 'gwAn@Uz Mj$ 2 +guarantee ,g&r@n'ti H5%,K6% 36A,7A,9,12A,13A,25 +guaranteed ,g&r@n'tid Hc%,Hd% 36A,7A,9,12A,13A,25 +guaranteeing ,g&r@n'tiIN Hb% 46A,7A,9,12A,13A,25 +guarantees ,g&r@n'tiz Ha%,Kj% 36A,7A,9,12A,13A,25 +guaranties 'g&r@ntIz Kj$ 3 +guarantor ,g&r@n'tOR K6% 3 +guarantors ,g&r@n'tOz Kj% 3 +guaranty 'g&r@ntI K8$ 3 +guard gAd J0%,M6% 13A,6A,15A +guard-boat 'gAd-b@Ut K6$ 2 +guard-boats 'gAd-b@Uts Kj$ 2 +guarded 'gAdId Jc%,Jd%,OA% 23A,6A,15A +guardedly 'gAdIdlI Pu% 3 +guardhouse 'gAdhaUs K6% 2 +guardhouses 'gAdhaUzIz Kj% 3 +guardian 'gAdI@n K6% 3 +guardians 'gAdI@nz Kj% 3 +guardianship 'gAdI@nSIp K6% 4 +guardianships 'gAdI@nSIps Kj$ 4 +guarding 'gAdIN Jb% 23A,6A,15A +guardrail 'gAdreIl K6% 2 +guardrails 'gAdreIlz Kj% 2 +guardroom 'gAdrum K6% 2 +guardrooms 'gAdrumz Kj% 2 +guards gAdz Ja%,Mj% 13A,6A,15A +guardship 'gAdSIp K6$ 2 +guardships 'gAdSIps Kj$ 2 +guardsman 'gAdzm@n Ki% 2 +guardsmen 'gAdzm@n Kj% 2 +guava 'gwAv@ M6% 2 +guavas 'gwAv@z Mj% 2 +gudgeon 'gVdZ@n K6$ 2 +gudgeons 'gVdZ@nz Kj$ 2 +guelder rose 'geld@ r@Uz K6$ 3 +guelder roses 'geld@ r@UzIz Kj$ 4 +guerilla g@'rIl@ K6% 3 +guerillas g@'rIl@z Kj% 3 +guerrilla g@'rIl@ K6$ 3 +guerrillas g@'rIl@z Kj$ 3 +guess ges J1%,K7% 12A,2C,3A,6A,8,9,10,25 +guessed gest Jc%,Jd% 12A,2C,3A,6A,8,9,10,25 +guesses 'gesIz Ja%,Kj% 22A,2C,3A,6A,8,9,10,25 +guessing 'gesIN Jb% 22A,2C,3A,6A,8,9,10,25 +guesstimate 'gestIm@t K6$ 3 +guesstimates 'gestIm@ts Kj$ 3 +guesswork 'gesw3k L@% 2 +guest gest K6% 1 +guest-night 'gest-naIt K6% 2 +guest-nights 'gest-naIts Kj% 2 +guesthouse 'gesthaUs K6% 2 +guesthouses 'gesthaUzIz Kj% 3 +guestroom 'gestrum K6% 2 +guestrooms 'gestrumz Kj% 2 +guests gests Kj% 1 +guffaw g@'fO I0%,K6% 2 +guffawed g@'fOd Ic%,Id% 2 +guffawing g@'fOIN Ib$ 3 +guffaws g@'fOz Ia%,Kj% 2 +guidance 'gaIdns L@% 2 +guide gaId H2%,K6% 16A,15A,15B +guidebook 'gaIdbUk K6% 2 +guidebooks 'gaIdbUks Kj% 2 +guided 'gaIdId Hc%,Hd% 26A,15A,15B +guideline 'gaIdlaIn K6% 2 +guidelines 'gaIdlaInz Kj% 2 +guides gaIdz Ha%,Kj% 16A,15A,15B +guiding 'gaIdIN Hb% 26A,15A,15B +guild gIld K6% 1 +guilder 'gIld@R K6$ 2 +guilders 'gIld@z Kj$ 2 +guildhall 'gIldhOl K6% 2 +guildhalls 'gIldhOlz Kj$ 2 +guilds gIldz Kj% 1 +guile gaIl L@% 1 +guileful 'gaIlf@l OA% 2 +guileless 'gaIl+l@s OA% 2 +guillemot 'gIlIm0t K6$ 3 +guillemots 'gIlIm0ts Kj$ 3 +guillotine 'gIl@tin H2%,K6% 36A +guillotined 'gIl@tind Hc%,Hd% 36A +guillotines 'gIl@tinz Ha%,Kj% 36A +guillotining 'gIl@tinIN Hb% 46A +guilt gIlt L@% 1 +guiltier 'gIltI@R Or% 3 +guiltiest 'gIltIIst Os% 3 +guiltily 'gIltIlI Pu% 3 +guiltiness 'gIltIn@s L@% 3 +guiltless 'gIltl@s OA% 2 +guilty 'gIltI OD% 2 +guinea 'gInI K6% 2 +guinea-fowl 'gInI-faUl K9% 3 +guinea-pig 'gInI-pIg K6% 3 +guinea-pigs 'gInI-pIgz Kj% 3 +guineas 'gInIz Kj% 2 +guise gaIz K6% 1 +guises 'gaIzIz Kj% 2 +guitar gI'tAR K6% 2 +guitarist gI'tArIst K6% 3 +guitarists gI'tArIsts Kj% 3 +guitars gI'tAz Kj% 2 +gulch gVltS K7$ 1 +gulches 'gVltSIz Kj$ 2 +gulden 'gUld@n K6$ 2 +guldens 'gUld@nz Kj$ 2 +gulf gVlf K6% 1 +gulfs gVlfs Kj% 1 +gull gVl H0%,K6% 16A,15A +gulled gVld Hc%,Hd% 16A,15A +gullet 'gVlIt K6% 2 +gullets 'gVlIts Kj% 2 +gullibility ,gVl@'bIlItI L@% 5 +gullible 'gVlIbl OA% 3 +gullies 'gVlIz Kj% 2 +gulling 'gVlIN Hb% 26A,15A +gulls gVlz Ha%,Kj% 16A,15A +gully 'gVlI K8% 2 +gulp gVlp J0%,K6% 12A,6A,15B +gulped gVlpt Jc%,Jd% 12A,6A,15B +gulping 'gVlpIN Jb% 22A,6A,15B +gulps gVlps Ja%,Kj% 12A,6A,15B +gum gVm H4%,M6% 16A,15A,15B +gumbo 'gVmb@U K6$ 2 +gumboil 'gVmboIl K6% 2 +gumboils 'gVmboIlz Kj% 2 +gumboot 'gVmbut K6% 2 +gumboots 'gVmbuts Kj% 2 +gumbos 'gVmb@Uz Kj$ 2 +gummed gVmd Hc%,Hd% 16A,15A,15B +gummier 'gVmI@R Or$ 3 +gummiest 'gVmIIst Os$ 3 +gumming 'gVmIN Hb% 26A,15A,15B +gummy 'gVmI OD% 2 +gumption 'gVmpSn L@% 2 +gums gVmz Ha%,Mj% 16A,15A,15B +gumshoe 'gVmSu K6$ 2 +gumshoes 'gVmSuz Kj$ 2 +gun gVn H4%,K6% 16A,15B +gun-carriage 'gVn-k&rIdZ K6% 3 +gun-carriages 'gVn-k&rIdZIz Kj% 4 +gunboat 'gVnb@Ut K6% 2 +gunboats 'gVnb@Uts Kj% 2 +guncotton 'gVnk0tn L@$ 3 +gundog 'gVnd0g K6% 2 +gundogs 'gVnd0gz Kj% 2 +gunfire 'gVnfaI@R L@% 2 +gunman 'gVnm@n Ki% 2 +gunmen 'gVnm@n Kj% 2 +gunmetal 'gVnmetl L@% 3 +gunned gVnd Hc%,Hd% 16A,15B +gunner 'gVn@R K6% 2 +gunners 'gVn@z Kj% 2 +gunnery 'gVn@rI L@% 3 +gunning 'gVnIN Hb% 26A,15B +gunny 'gVnI L@$ 2 +gunplay 'gVnpleI L@% 2 +gunpoint 'gVnpoInt Ki% 2 +gunpowder 'gVnpaUd@R L@% 3 +gunroom 'gVnrum K6% 2 +gunrooms 'gVnrumz Kj% 2 +gunrunner 'gVnrVn@R K6% 3 +gunrunners 'gVnrVn@z Kj% 3 +gunrunning 'gVnrVnIN L@% 3 +guns gVnz Ha%,Kj% 16A,15B +gunshot 'gVnS0t M6% 2 +gunshots 'gVnS0ts Mj% 2 +gunsmith 'gVnsmIT K6% 2 +gunsmiths 'gVnsmITs Kj% 2 +gunwale 'gVnl K6$ 2 +gunwales 'gVnlz Kj$ 2 +gurgle 'g3gl I2%,M6% 2 +gurgled 'g3gld Ic%,Id% 2 +gurgles 'g3glz Ia%,Mj% 2 +gurgling 'g3glIN Ib% 2 +guru 'gUru K6% 2 +gurus 'gUruz Kj% 2 +gush gVS I1%,K7% 12A,2C,3A +gushed gVSt Ic%,Id% 12A,2C,3A +gusher 'gVS@R K6$ 2 +gushers 'gVS@z Kj$ 2 +gushes 'gVSIz Ia%,Kj% 22A,2C,3A +gushing 'gVSIN Ib%,OA% 22A,2C,3A +gushingly 'gVSINlI Pu% 3 +gusset 'gVsIt K6% 2 +gusseted 'gVsItId OA% 3 +gussets 'gVsIts Kj% 2 +gust gVst K6% 1 +gustation gV'steISn L@$ 3 +gustier 'gVstI@R Or$ 3 +gustiest 'gVstIIst Os$ 3 +gusto 'gVst@U L@% 2 +gusts gVsts Kj% 1 +gusty 'gVstI OD% 2 +gut gVt H4%,M6% 16A +gutless 'gVtl@s OA% 2 +guts gVts Ha%,Mj% 16A +gutta-percha ,gVt@-'p3tS@ L@$ 4 +gutted 'gVtId Hc%,Hd% 26A +gutter 'gVt@R I0%,K6% 22A +guttered 'gVt@d Ic%,Id% 22A +guttering 'gVt@rIN Ib% 32A +gutters 'gVt@z Ia%,Kj% 22A +guttersnipe 'gVt@snaIp K6% 3 +guttersnipes 'gVt@snaIps Kj% 3 +gutting 'gVtIN Hb% 26A +guttural 'gVt@r@l K6%,OA% 3 +gutturally 'gVt@r@lI Pu% 4 +gutturals 'gVt@r@lz Kj% 3 +guvnor 'gVvn@R K6$ 2 +guvnors 'gVvn@z Kj$ 2 +guy gaI H0$,K6% 16A +guyed gaId Hc$,Hd$ 16A +guying 'gaIIN Hb$ 26A +guys gaIz Ha$,Kj% 16A +guzzle 'gVzl J2% 22A,6A,15B +guzzled 'gVzld Jc%,Jd% 22A,6A,15B +guzzler 'gVzl@R K6% 2 +guzzlers 'gVzl@z Kj% 2 +guzzles 'gVzlz Ja% 22A,6A,15B +guzzling 'gVzlIN Jb% 22A,6A,15B +gybe dZaIb J2$ 12A,6A +gybed dZaIbd Jc$,Jd$ 12A,6A +gybes dZaIbz Ja$ 12A,6A +gybing 'dZaIbIN Jb$ 22A,6A +gym dZIm K6% 1 +gymkhana dZIm'kAn@ K6% 3 +gymkhanas dZIm'kAn@z Kj% 3 +gymnasium dZIm'neIzI@m K6% 4 +gymnasiums dZIm'neIzI@mz Kj% 4 +gymnast 'dZImn&st K6% 2 +gymnastic dZIm'n&stIk OA% 3 +gymnastics dZIm'n&stIks Lk% 3 +gymnasts 'dZImn&sts Kj% 2 +gyms dZImz Kj% 1 +gymslip 'dZImslIp K6% 2 +gymslips 'dZImslIps Kj% 2 +gynaecological ,gaInIk@'l0dZIkl OA% 6 +gynaecologist ,gaInI'k0l@dZIst K6% 5 +gynaecologists ,gaInI'k0l@dZIsts Kj% 5 +gynaecology ,gaInI'k0l@dZI L@% 5 +gynecological ,gaInIk@'l0dZIkl OA$ 6 +gynecologist ,gaInI'k0l@dZIst K6$ 5 +gynecologists ,gaInI'k0l@dZIsts Kj$ 5 +gyp dZIp H4$,K6% 16A +gypped dZIpt Hc$,Hd$ 16A +gypping 'dZIpIN Hb$ 26A +gyps dZIps Ha$,Kj$ 16A +gypsum 'dZIps@m L@% 2 +gyrate ,dZaI'reIt I2% 2 +gyrated ,dZaI'reItId Ic%,Id% 3 +gyrates ,dZaI'reIts Ia% 2 +gyrating ,dZaI'reItIN Ib% 3 +gyration ,dZaI'reISn M6% 3 +gyrations ,dZaI'reISnz Mj% 3 +gyro 'dZaI@r@U K6$ 2 +gyros 'dZaI@r@Uz Kj$ 2 +gyroscope 'dZaIr@sk@Up K6% 3 +gyroscopes 'dZaIr@sk@Ups Kj% 3 +gyroscopic ,dZaIr@'sk0pIk OA% 4 +h eItS Ki$ 1 +h'm h@m I4$,W-$ 1 +h'mmed h@md Ic$,Id$ 1 +h'mming 'h@mIN Ib$ 1 +h'ms h@mz Ia$ 1 +h's 'eItSIz Kj$ 2 +ha hA W-% 1 +ha'p'orth 'heIp@T K6$ 2 +ha'p'orths 'heIp@Ts Kj$ 2 +ha'pennies 'heIpnIz Kj% 2 +ha'penny 'heIpnI K8% 2 +habeas corpus ,heIbI@s 'kOp@s L@% 4 +haberdasher 'h&b@d&S@R K6% 4 +haberdashers 'h&b@d&S@z Kj% 4 +haberdashery ,h&b@'d&S@rI L@% 5 +habiliments h@'bIlIm@nts Kj$ 4 +habit 'h&bIt M6% 2 +habitable 'h&bIt@bl OA% 4 +habitat 'h&bIt&t K6% 3 +habitation ,h&bI'teISn M6% 4 +habitations ,h&bI'teISnz Mj% 4 +habitats 'h&bIt&ts Kj% 3 +habits 'h&bIts Mj% 2 +habitu_e h@'bItSUeI K6% 4 +habitu_es h@'bItSUeIz Kj% 4 +habitual h@'bItSU@l OA% 4 +habitually h@'bItSU@lI Pu% 5 +habituate h@'bItSUeIt H2$ 414 +habituated h@'bItSUeItId Hc$,Hd% 514 +habituates h@'bItSUeIts Ha$ 414 +habituating h@'bItSUeItIN Hb$ 514 +habituation h@,bItSU'eISn L@% 5 +habitude 'h&bItjud L@$ 3 +hacienda ,h&sI'end@ K6$ 4 +haciendas ,h&sI'end@z Kj$ 4 +hack h&k J0%,K6% 12A,2C,3A,6A,15A,15B +hacked h&kt Jc%,Jd% 12A,2C,3A,6A,15A,15B +hacking 'h&kIN Jb% 22A,2C,3A,6A,15A,15B +hackles 'h&klz Kj% 2 +hackney 'h&knI K6$ 2 +hackneyed 'h&knId OA% 2 +hackneys 'h&knIz Kj$ 2 +hacks h&ks Ja%,Kj% 12A,2C,3A,6A,15A,15B +hacksaw 'h&ksO K6% 2 +hacksaws 'h&ksOz Kj% 2 +had h&d Gc*,Gd*,Jc*,Jd* 16A,6B,7B,15B,18C,19B,24B,24C +haddock 'h&d@k M9% 2 +hadn't 'h&dnt Gg% 2 +haematite 'hem@taIt K6$ 3 +haematites 'hem@taIts Kj$ 3 +haemoglobin ,him@'gl@UbIn L@% 4 +haemophilia ,him@'fIlI@ L@% 5 +haemophiliac ,him@'fIlI&k K6% 5 +haemophiliacs ,him@'fIlI&ks Kj% 5 +haemorrhage 'hem@rIdZ M6% 3 +haemorrhages 'hem@rIdZIz Mj% 4 +haemorrhoids 'hem@roIdz Kj% 3 +haft hAft K6$ 1 +hafts hAfts Kj$ 1 +hag h&g K6% 1 +hag-ridden 'h&g-rIdn OA$ 3 +haggard 'h&g@d OA% 2 +haggis 'h&gIs K7% 2 +haggises 'h&gIsIz Kj% 3 +haggle 'h&gl I2% 22A,3A +haggled 'h&gld Ic%,Id% 22A,3A +haggles 'h&glz Ia% 22A,3A +haggling 'h&glIN Ib% 22A,3A +hagiologies ,h&gI'0l@dZIz Kj$ 5 +hagiology ,h&gI'0l@dZI K8$ 5 +hags h&gz Kj% 1 +haha 'hAhA K6$ 2 +hahas 'hAhAz Kj$ 2 +hail heIl J0%,M6% 12C,3A,6A,15B,16B,23 +hailed heIld Jc%,Jd% 12C,3A,6A,15B,16B,23 +hailing 'heIlIN Jb% 22C,3A,6A,15B,16B,23 +hails heIlz Ja%,Mj% 12C,3A,6A,15B,16B,23 +hailstone 'heIlst@Un K6% 2 +hailstones 'heIlst@Unz Kj% 2 +hailstorm 'heIlstOm K6% 2 +hailstorms 'heIlstOmz Kj% 2 +hair he@R M6% 1 +hair's-breadth 'he@z-bretT K6% 2 +hair's-breadths 'he@z-bretTs Kj% 2 +hair-breadth 'he@-bretT K6$ 2 +hair-breadths 'he@-bretTs Kj$ 2 +hair-dye 'he@-daI K6% 2 +hair-dyes 'he@-daIz Kj% 2 +hair-oil 'he@r-oIl M6% 2 +hair-oils 'he@r-oIlz Mj% 2 +hair-raising 'he@-reIzIN OA% 3 +hair-shirt 'he@-S3t K6% 2 +hair-shirts 'he@-S3ts Kj% 2 +hair-slide 'he@-slaId K6% 2 +hair-slides 'he@-slaIdz Kj% 2 +hair-trigger 'he@-trIg@R K6$ 3 +hair-triggers 'he@-trIg@z Kj$ 3 +hairbrush 'he@brVS K7% 2 +hairbrushes 'he@brVSIz Kj% 3 +haircloth 'he@kl0T K6$ 2 +haircloths 'he@kl0Ts Kj$ 2 +haircut 'he@kVt K6% 2 +haircuts 'he@kVts Kj% 2 +hairdo 'he@du K6% 2 +hairdos 'he@duz Kj% 2 +hairdresser 'he@dres@R K6% 3 +hairdressers 'he@dres@z Kj% 3 +hairdressing 'he@dresIN L@% 3 +hairier 'he@rI@R Or% 3 +hairiest 'he@rIIst Os% 3 +hairiness 'he@rIn@s L@% 3 +hairless 'he@l@s OA% 2 +hairlike 'he@laIk OA% 2 +hairline 'he@laIn K6% 2 +hairlines 'he@laInz Kj% 2 +hairnet 'he@net K6% 2 +hairnets 'he@nets Kj% 2 +hairpiece 'he@pis K6% 2 +hairpieces 'he@pisIz Kj% 3 +hairpin 'he@pIn K6% 2 +hairpins 'he@pInz Kj% 2 +hairs he@z Mj% 1 +hairsplitting 'he@splItIN L@%,OA$ 3 +hairspring 'he@sprIN K6$ 2 +hairsprings 'he@sprINz Kj$ 2 +hairstyle 'he@staIl K6% 2 +hairstyles 'he@staIlz Kj% 2 +hairstylist 'he@staIlIst K6% 3 +hairstylists 'he@staIlIsts Kj% 3 +hairy 'he@rI OD% 2 +hake heIk M9% 1 +halberd 'h&lb@d K6$ 2 +halberdier ,h&lb@'dI@R K6$ 4 +halberdiers ,h&lb@'dI@z Kj$ 4 +halberds 'h&lb@dz Kj$ 2 +halcyon 'h&lsI@n OA% 3 +hale heIl OA% 1 +half hAf Ki* 1 +half-baked hAf-'beIkt OA% 2 +half-blood 'hAf-blVd K6$ 2 +half-bloods 'hAf-blVdz Kj$ 2 +half-breed 'hAf-brid K6% 2 +half-breeds 'hAf-bridz Kj% 2 +half-brother 'hAf-brVD@R K6% 3 +half-brothers 'hAf-brVD@z Kj% 3 +half-caste 'hAf-kAst K6% 2 +half-castes 'hAf-kAsts Kj% 2 +half-crazed hAf-'kreIzd OA% 2 +half-crown hAf-'kraUn K6% 2 +half-crowns hAf-'kraUnz Kj% 2 +half-hardy hAf-'hAdI OA$ 3 +half-hearted 'hAf-hAtId OA% 3 +half-heartedly hAf-'hAtIdlI Pu% 4 +half-holiday hAf-'h0l@deI K6% 4 +half-holidays hAf-'h0l@deIz Kj% 4 +half-hour hAf-'aU@R K6% 3 +half-hourly hAf-'aU@lI OA%,Pu% 4 +half-hours hAf-'aU@z Kj% 3 +half-length hAf-'leNT OA% 2 +half-pay hAf-'peI L@% 2 +half-price hAf-'praIs Pu% 2 +half-seas-over ,hAf-siz-'@Uv@R Op$ 4 +half-sister 'hAf-sIst@R K6% 3 +half-sisters 'hAf-sIst@z Kj% 3 +half-size hAf-'saIz OA% 2 +half-timbered hAf-'tImb@d OA% 3 +half-time hAf-'taIm L@% 2 +half-track 'hAf-tr&k K6$ 2 +half-tracked 'hAf-tr&kt OA$ 2 +half-tracks 'hAf-tr&ks Kj$ 2 +half-truth 'hAf-truT K6% 2 +half-truths 'hAf-truDz Kj% 2 +half-volley hAf-'v0lI K6% 3 +half-volleys hAf-'v0lIz Kj% 3 +half-yearly hAf-'j3lI OA%,Pu% 3 +halfback 'hAfb&k K6% 2 +halfbacks 'hAfb&ks Kj% 2 +halfpennies 'heIpnIz Kj% 2 +halfpenny 'heIpnI K8% 2 +halfpennyworth 'heIpnIw3T K6$ 3 +halfpennyworths 'heIpnIw3Ts Kj$ 3 +halftone 'hAft@Un K6% 2 +halftones 'hAft@Unz Kj% 2 +halfway hAf'weI OA%,Pu% 2 +halfwit 'hAfwIt K6% 2 +halfwits 'hAfwIts Kj% 2 +halfwitted 'hAfwItId OA% 3 +halibut 'h&lIb@t M9% 3 +halitosis ,h&lI't@UsIs L@% 4 +hall hOl K6% 1 +hall-stand 'hOl-st&nd K6% 2 +hall-stands 'hOl-st&ndz Kj% 2 +hallelujah ,h&lI'luj@ K6%,W-% 4 +hallelujahs ,h&lI'luj@z Kj% 4 +halliard 'h&lj@d K6$ 2 +halliards 'h&lj@dz Kj$ 2 +hallmark 'hOlmAk K6% 2 +hallmarks 'hOlmAks Kj% 2 +hallo h@'l@U W-$ 2 +halloo h@'lu I0$,K6$,W-$ 2 +hallooed h@'lud Ic$,Id$ 2 +hallooing h@'luIN Ib$ 3 +halloos h@'luz Ia$,Kj$ 2 +hallow 'h&l@U H0%,K6$ 26A +hallowed 'h&l@Ud Hc%,Hd% 26A +hallowing 'h&l@UIN Hb% 36A +hallows 'h&l@Uz Ha%,Kj$ 26A +halls hOlz Kj% 1 +hallucination h@,lusI'neISn M6% 5 +hallucinations h@,lusI'neISnz Mj% 5 +hallucinatory h@'lusIn@trI OA% 5 +hallucinogenic h@,lusIn@'dZenIk OA% 6 +halma 'h&lm@ L@$ 2 +halo 'heIl@U K6% 2 +haloes 'heIl@Uz Kj% 2 +halos 'heIl@Uz Kj% 2 +halt hOlt J0%,K6%,OA% 12A,2C,6A +halted 'hOltId Jc%,Jd% 22A,2C,6A +halter 'hOlt@R K6% 2 +halters 'hOlt@z Kj% 2 +halting 'hOltIN Jb% 22A,2C,6A +haltingly 'hOltINlI Pu% 3 +halts hOlts Ja%,Kj% 12A,2C,6A +halve hAv H2% 16A +halved hAvd Hc%,Hd% 16A +halves hAvz Ha%,Kj% 16A +halving 'hAvIN Hb% 26A +halyard 'h&lj@d K6$ 2 +halyards 'h&lj@dz Kj$ 2 +ham h&m J4%,M6% 12A,6A,15B +ham-fisted h&m-'fIstId OA% 3 +ham-handed h&m-'h&ndId OA% 3 +hamadryad ,h&m@'draI@d K6$ 4 +hamadryads ,h&m@'draI@dz Kj$ 4 +hamburger 'h&mb3g@R K6% 3 +hamburgers 'h&mb3g@z Kj% 3 +hamlet 'h&mlIt K6% 2 +hamlets 'h&mlIts Kj% 2 +hammed h&md Jc%,Jd% 12A,6A,15B +hammer 'h&m@R J0%,K6% 22A,2C,3A,6A,15B,22 +hammered 'h&m@d Jc%,Jd% 22A,2C,3A,6A,15B,22 +hammering 'h&m@rIN Jb% 32A,2C,3A,6A,15B,22 +hammers 'h&m@z Ja%,Kj% 22A,2C,3A,6A,15B,22 +hamming 'h&mIN Jb% 22A,6A,15B +hammock 'h&m@k K6% 2 +hammocks 'h&m@ks Kj% 2 +hamper 'h&mp@R H0%,K6% 26A +hampered 'h&mp@d Hc%,Hd% 26A +hampering 'h&mp@rIN Hb% 36A +hampers 'h&mp@z Ha%,Kj% 26A +hams h&mz Ja%,Mj% 12A,6A,15B +hamster 'h&mst@R K6% 2 +hamsters 'h&mst@z Kj% 2 +hamstring 'h&mstrIN H5%,K6% 26A +hamstringing 'h&mstrININ Hb$ 36A +hamstrings 'h&mstrINz Ha%,Kj% 26A +hamstrung 'h&mstrVN Hc%,Hd% 26A +hand h&nd H0%,K6* 112A,13A,15A,15B +hand-barrow 'h&nd-b&r@U K6% 3 +hand-barrows 'h&nd-b&r@Uz Kj% 3 +hand-grenade 'h&nd-grIneId K6% 3 +hand-grenades 'h&nd-grIneIdz Kj% 3 +hand-luggage 'h&nd-lVgIdZ L@% 3 +hand-me-down 'h&nd-mI-daUn K6% 3 +hand-me-downs 'h&nd-mI-daUnz Kj% 3 +hand-organ 'h&nd-Og@n K6$ 3 +hand-organs 'h&nd-Og@nz Kj$ 3 +hand-out 'h&nd-aUt K6% 2 +hand-outs 'h&nd-aUts Kj% 2 +hand-picked h&nd-'pIkt OA% 2 +handbag 'h&ndb&g K6% 2 +handbags 'h&ndb&gz Kj% 2 +handbill 'h&ndbIl K6% 2 +handbills 'h&ndbIlz Kj% 2 +handbook 'h&ndbUk K6% 2 +handbooks 'h&ndbUks Kj% 2 +handbrake 'h&ndbreIk K6% 2 +handbrakes 'h&ndbreIks Kj% 2 +handcart 'h&ndkAt K6% 2 +handcarts 'h&ndkAts Kj% 2 +handclap 'h&ndkl&p K6% 2 +handclaps 'h&ndkl&ps Kj% 2 +handcuff 'h&ndkVf H0%,K6% 2 +handcuffed 'h&ndkVft Hc%,Hd% 2 +handcuffing 'h&ndkVfIN Hb% 3 +handcuffs 'h&ndkVfs Ha%,Kj% 2 +handed 'h&ndId Hc%,Hd% 212A,13A,15A,15B +handful 'h&ndfUl K6% 2 +handfuls 'h&ndfUlz Kj% 2 +handhold 'h&ndh@Uld K6% 2 +handholds 'h&ndh@Uldz Kj% 2 +handicap 'h&ndIk&p H4%,K6% 36A +handicapped 'h&ndIk&pt Hc%,Hd% 36A +handicapping 'h&ndIk&pIN Hb% 46A +handicaps 'h&ndIk&ps Ha%,Kj% 36A +handicraft 'h&ndIkrAft M6% 3 +handicrafts 'h&ndIkrAfts Mj% 3 +handier 'h&ndI@R Or% 3 +handiest 'h&ndIIst Os% 3 +handily 'h&ndIlI Pu% 3 +handiness 'h&ndIn@s L@% 3 +handing 'h&ndIN Hb% 212A,13A,15A,15B +handiwork 'h&ndIw3k M6% 3 +handiworks 'h&ndIw3ks Mj$ 3 +handkerchief 'h&Nk@tSIf K6% 3 +handkerchiefs 'h&Nk@tSIfs Kj% 3 +handle 'h&ndl H2%,K6% 26A +handlebar 'h&ndlbAR K6% 3 +handlebars 'h&ndlbAz Kj% 3 +handled 'h&ndld Hc%,Hd% 26A +handler 'h&ndl@R K6% 2 +handlers 'h&ndl@z Kj% 2 +handles 'h&ndlz Ha%,Kj% 26A +handling 'h&ndlIN Hb% 26A +handmade h&nd'meId OA% 2 +handmaid 'h&ndmeId K6% 2 +handmaids 'h&ndmeIdz Kj% 2 +handover 'h&nd@Uv@R K6% 3 +handovers 'h&nd@Uv@z Kj$ 3 +handrail 'h&ndreIl K6% 2 +handrails 'h&ndreIlz Kj% 2 +hands h&ndz Ha%,Kj* 112A,13A,15A,15B +handsaw 'h&ndsO K6$ 2 +handsaws 'h&ndsOz Kj$ 2 +handshake 'h&ndSeIk K6% 2 +handshakes 'h&ndSeIks Kj% 2 +handshaking 'h&ndSeIkIN L@% 3 +handsome 'h&ns@m OA% 2 +handsomely 'h&ns@mlI Pu% 3 +handsomest 'h&ns@mIst Os% 3 +handstand 'h&ndst&nd K6% 2 +handstands 'h&ndst&ndz Kj% 2 +handwork 'h&ndw3k L@% 2 +handwriting 'h&ndraItIN L@% 3 +handy 'h&ndI OD% 2 +handyman 'h&ndIm&n Ki% 3 +handymen 'h&ndImen Kj% 3 +hang h&N J0%,Ki% 12A,2B,2C,3A,6A,15A,15B +hang-up 'h&N-Vp K6% 2 +hang-ups 'h&N-Vps Kj% 2 +hangar 'h&N@R K6% 2 +hangars 'h&N@z Kj% 2 +hangdog 'h&Nd0g Oq% 2 +hanged h&Nd Jc%,Jd% 12A,2B,2C,3A,6A,15A,15B +hanger 'h&N@R K6% 2 +hanger-on ,h&N@r-'0n Ki% 3 +hangers 'h&N@z Kj% 2 +hangers-on ,h&N@z-'0n Kj% 3 +hanging 'h&NIN Jb%,M6% 22A,2B,2C,3A,6A,15A,15B +hangings 'h&NINz Mj% 2 +hangman 'h&Nm@n Ki% 2 +hangmen 'h&Nm@n Kj% 2 +hangnail 'h&NneIl K6$ 2 +hangnails 'h&NneIlz Kj$ 2 +hangover 'h&N@Uv@R K6% 3 +hangovers 'h&N@Uv@z Kj% 3 +hangs h&Nz Ja% 12A,2B,2C,3A,6A,15A,15B +hank h&Nk K6$ 1 +hanker 'h&Nk@R I0% 23A +hankered 'h&Nk@d Ic%,Id% 23A +hankering 'h&Nk@rIN Ib%,K6% 33A +hankerings 'h&Nk@rINz Kj% 3 +hankers 'h&Nk@z Ia% 23A +hankies 'h&NkIz Kj% 2 +hanks h&Nks Kj$ 1 +hanky 'h&NkI K8% 2 +hanky-panky ,h&NkI-'p&NkI L@% 4 +hansom 'h&ns@m K6$ 2 +hansoms 'h&ns@mz Kj$ 2 +hap h&p I4$,K6$ 1 +haphazard h&p'h&z@d OA%,Pu% 3 +haphazardly h&p'h&z@dlI Pu% 4 +hapless 'h&plIs OA% 2 +haply 'h&plI Pu$ 2 +happed h&pt Ic$,Id$ 1 +happen 'h&p@n I0% 22A,3A,4E +happened 'h&p@nd Ic%,Id% 22A,3A,4E +happening 'h&p@nIN Ib%,K6% 32A,3A,4E +happenings 'h&p@nINz Kj% 3 +happens 'h&p@nz Ia% 22A,3A,4E +happier 'h&pI@R Or% 3 +happiest 'h&pIIst Os% 3 +happily 'h&pIlI Pu% 3 +happiness 'h&pIn@s L@% 3 +happing 'h&pIN Ib$ 2 +happy 'h&pI OD% 2 +happy-go-lucky ,h&pI-g@U-'lVkI OA% 5 +haps h&ps Ia$,Kj$ 1 +hara-kiri ,h&r@-'kIrI L@$ 4 +harangue h@'r&N J2%,K6% 22A,6A +harangued h@'r&Nd Jc%,Jd% 22A,6A +harangues h@'r&Nz Ja%,Kj% 22A,6A +haranguing h@'r&NIN Jb% 32A,6A +harass 'h&r@s H1% 26A +harassed 'h&r@st Hc%,Hd% 26A +harasses 'h&r@sIz Ha% 36A +harassing 'h&r@sIN Hb% 36A +harassment 'h&r@sm@nt L@% 3 +harbinger 'hAbIndZ@R K6$ 3 +harbingers 'hAbIndZ@z Kj$ 3 +harbour 'hAb@R J0%,K6% 22A,6A +harbourage 'hAb@rIdZ K6$ 3 +harbourages 'hAb@rIdZIz Kj$ 4 +harboured 'hAb@d Jc%,Jd% 22A,6A +harbouring 'hAb@rIN Jb% 32A,6A +harbours 'hAb@z Ja%,Kj% 22A,6A +hard hAd OC*,Pu* 1 +hard-baked hAd-'beIkt OA% 2 +hard-bitten hAd-'bItn OA% 3 +hard-boiled hAd-'boIld OA% 2 +hard-headed hAd-'hedId OA% 3 +hardback 'hAdb&k K6% 2 +hardbacked 'hAdb&kt OA% 2 +hardbacks 'hAdb&ks Kj% 2 +hardboard 'hAdbOd L@% 2 +hardbound 'hAdbaUnd OA% 2 +hardcover 'hAdkVv@R K6% 3 +hardcovered 'hAdkVv@d OA$ 3 +hardcovers 'hAdkVv@z Kj% 3 +harden 'hAdn J0% 22A,2C,6A,15B +hardened 'hAdnd Jc%,Jd% 22A,2C,6A,15B +hardening 'hAdnIN Jb% 32A,2C,6A,15B +hardens 'hAdnz Ja% 22A,2C,6A,15B +harder 'hAd@R Or% 2 +hardest 'hAdIst Os% 2 +hardhearted hAd'hAtId OA% 3 +hardhitting hAd'hItIN OA% 3 +hardier 'hAdI@R Or% 3 +hardiest 'hAdIIst Os% 3 +hardihood 'hAdIhUd L@$ 3 +hardiness 'hAdIn@s L@% 3 +hardliner hAd'laIn@R K6% 3 +hardliners hAd'laIn@z Kj% 3 +hardly 'hAdlI Pu% 2 +hardness 'hAdn@s L@% 2 +hardship 'hAdSIp M6% 2 +hardships 'hAdSIps Mj% 2 +hardtop 'hAdt0p K6$ 2 +hardtops 'hAdt0ps Kj$ 2 +hardware 'hAdwe@R L@% 2 +hardwood 'hAdwUd L@% 2 +hardworking hAd'w3kIN OA% 3 +hardy 'hAdI OD% 2 +hare he@R I2%,K6% 12C +harebell 'he@bel K6$ 2 +harebells 'he@belz Kj$ 2 +harebrained 'he@breInd OA% 2 +hared he@d Ic%,Id% 12C +harelip 'he@lIp K6% 2 +harelips 'he@lIps Kj$ 2 +harem 'hArim K6% 2 +harems 'hArimz Kj% 2 +hares he@z Ia%,Kj% 12C +haricot 'h&rIk@U K6% 3 +haricots 'h&rIk@Uz Kj% 3 +haring 'he@rIN Ib% 22C +hark hAk I0% 1 +harked hAkt Ic%,Id% 1 +harking 'hAkIN Ib% 2 +harks hAks Ia% 1 +harlequin 'hAlIkwIn K6% 3 +harlequinade ,hAlIkwI'neId K6$ 4 +harlequinades ,hAlIkwI'neIdz Kj$ 4 +harlequins 'hAlIkwInz Kj% 3 +harlot 'hAl@t K6% 2 +harlots 'hAl@ts Kj% 2 +harm hAm H0%,L@% 16A +harmattan ,hAm@'t&n K6$ 3 +harmattans ,hAm@'t&nz Kj$ 3 +harmed hAmd Hc%,Hd% 16A +harmful 'hAmf@l OA% 2 +harmfully 'hAmf@lI Pu% 3 +harming 'hAmIN Hb% 26A +harmless 'hAml@s OA% 2 +harmlessly 'hAml@slI Pu% 3 +harmonic hA'm0nIk K6% 3 +harmonica hA'm0nIk@ K6% 4 +harmonicas hA'm0nIk@z Kj% 4 +harmonics hA'm0nIks Kj% 3 +harmonies 'hAm@nIz Mj% 3 +harmonious hA'm@UnI@s OA% 4 +harmoniously hA'm@UnI@slI Pu% 5 +harmonium hA'm@UnI@m K6% 4 +harmoniums hA'm@UnI@mz Kj% 4 +harmonization ,hAm@naI'zeISn K6% 5 +harmonizations ,hAm@naI'zeISnz Kj$ 5 +harmonize 'hAm@naIz J2% 32A,2C,6A,14 +harmonized 'hAm@naIzd Jc%,Jd% 32A,2C,6A,14 +harmonizes 'hAm@naIzIz Ja% 42A,2C,6A,14 +harmonizing 'hAm@naIzIN Jb% 42A,2C,6A,14 +harmony 'hAm@nI M8% 3 +harms hAmz Ha% 16A +harness 'hAn@s H1%,K7% 26A +harnessed 'hAn@st Hc%,Hd% 26A +harnesses 'hAn@sIz Ha%,Kj% 36A +harnessing 'hAn@sIN Hb% 36A +harp hAp I0%,K6% 1 +harped hApt Ic%,Id% 1 +harper 'hAp@R K6% 2 +harpers 'hAp@z Kj% 2 +harpies 'hApIz Kj% 2 +harping 'hApIN Ib% 2 +harpist 'hApIst K6% 2 +harpists 'hApIsts Kj$ 2 +harpoon hA'pun H0%,K6% 2 +harpooned hA'pund Hc%,Hd% 2 +harpooning hA'punIN Hb% 3 +harpoons hA'punz Ha%,Kj% 2 +harps hAps Ia%,Kj% 1 +harpsichord 'hApsIkOd K6% 3 +harpsichordist 'hApsIkOdIst K6% 4 +harpsichordists 'hApsIkOdIsts Kj% 4 +harpsichords 'hApsIkOdz Kj% 3 +harpy 'hApI K8% 2 +harridan 'h&rId@n K6$ 3 +harridans 'h&rId@nz Kj$ 3 +harried 'h&rId Hc%,Hd% 26A +harrier 'h&rI@R K6% 3 +harriers 'h&rI@z Kj% 3 +harries 'h&rIz Ha% 26A +harrow 'h&r@U H0%,K6% 26A +harrowed 'h&r@Ud Hc%,Hd% 26A +harrowing 'h&r@UIN Hb% 36A +harrows 'h&r@Uz Ha%,Kj% 26A +harry 'h&rI H3% 26A +harrying 'h&rIIN Hb% 36A +harsh hAS OC% 1 +harsher 'hAS@R Or% 2 +harshest 'hASIst Os% 2 +harshly 'hASlI Pu% 2 +harshness 'hASn@s L@% 2 +hart hAt K6$ 1 +harts hAts Kj$ 1 +harum-scarum ,he@r@m-'ske@r@m K6$,OA$ 4 +harum-scarums ,he@r@m-'ske@r@mz Kj$ 4 +harvest 'hAvIst H0%,K6% 26A +harvested 'hAvIstId Hc%,Hd% 36A +harvester 'hAvIst@R K6% 3 +harvesters 'hAvIst@z Kj% 3 +harvesting 'hAvIstIN Hb% 36A +harvests 'hAvIsts Ha%,Kj% 26A +has h&z Ga*,Ja* 16A,6B,7B,15B,18C,19B,24B,24C +has-been 'h&z-bin K6% 2 +has-beens 'h&z-binz Kj$ 2 +hash h&S H1%,L@% 16A,15B +hashed h&St Hc%,Hd% 16A,15B +hashes 'h&SIz Ha% 26A,15B +hashing 'h&SIN Hb% 26A,15B +hashish 'h&SiS L@% 2 +hasn't 'h&znt Gg% 2 +hasp hAsp K6$ 1 +hasps hAsps Kj$ 1 +hassle 'h&sl J2%,K6% 22A,3A,6A +hassled 'h&sld Jc%,Jd% 22A,3A,6A +hassles 'h&slz Ja%,Kj% 22A,3A,6A +hassling 'h&slIN Jb% 22A,3A,6A +hassock 'h&s@k K6% 2 +hassocks 'h&s@ks Kj% 2 +hast h&st Ge$ 1 +haste heIst L@% 1 +hasten 'heIsn J0% 22A,2C,4A,6A +hastened 'heIsnd Jc%,Jd% 22A,2C,4A,6A +hastening 'heIsnIN Jb% 32A,2C,4A,6A +hastens 'heIsnz Ja% 22A,2C,4A,6A +hastier 'heIstI@R Or$ 3 +hastiest 'heIstIIst Os$ 3 +hastily 'heIstIlI Pu% 3 +hastiness 'heIstIn@s L@% 3 +hasty 'heIstI OD% 2 +hat h&t K6% 1 +hatband 'h&tb&nd K6$ 2 +hatbands 'h&tb&ndz Kj$ 2 +hatch h&tS J1%,K7% 12A,6A +hatched h&tSt Jc%,Jd% 12A,6A +hatcheries 'h&tS@rIz Kj% 3 +hatchery 'h&tS@rI K8% 3 +hatches 'h&tSIz Ja%,Kj% 22A,6A +hatchet 'h&tSIt K6% 2 +hatchets 'h&tSIts Kj% 2 +hatching 'h&tSIN Jb%,L@% 22A,6A +hatchway 'h&tSweI K6% 2 +hatchways 'h&tSweIz Kj% 2 +hate heIt H2%,M6% 16A,6D,7A,17,19C +hated 'heItId Hc%,Hd% 26A,6D,7A,17,19C +hateful 'heItf@l OA% 2 +hatefully 'heItf@lI Pu% 3 +hates heIts Ha%,Mj% 16A,6D,7A,17,19C +hatful 'h&tfUl K6% 2 +hatfuls 'h&tfUlz Kj% 2 +hath h&T Ge$ 1 +hating 'heItIN Hb% 26A,6D,7A,17,19C +hatless 'h&tl@s OA% 2 +hatpin 'h&tpIn K6% 2 +hatpins 'h&tpInz Kj% 2 +hatred 'heItrId M6% 2 +hatreds 'heItrIdz Mj$ 2 +hats h&ts Kj% 1 +hatter 'h&t@R K6% 2 +hatters 'h&t@z Kj% 2 +hauberk 'hOb3k K6$ 2 +hauberks 'hOb3ks Kj$ 2 +haughtier 'hOtI@R Or% 3 +haughtiest 'hOtIIst Os% 3 +haughtily 'hOtIlI Pu% 3 +haughtiness 'hOtIn@s L@% 3 +haughty 'hOtI OD% 2 +haul hOl J0%,K6% 12C,3A,6A,15A,15B +haulage 'hOlIdZ L@% 2 +hauled hOld Jc%,Jd% 12C,3A,6A,15A,15B +haulier 'hOlI@R K6% 3 +hauliers 'hOlI@z Kj% 3 +hauling 'hOlIN Jb% 22C,3A,6A,15A,15B +haulm hOm L@$ 1 +hauls hOlz Ja%,Kj% 12C,3A,6A,15A,15B +haunch hOntS K7% 1 +haunches 'hOntSIz Kj% 2 +haunt hOnt H0%,K6% 16A +haunted 'hOntId Hc%,Hd% 26A +haunting 'hOntIN Hb% 26A +haunts hOnts Ha%,Kj% 16A +hautboy 'h@UboI K6$ 2 +hautboys 'h@UboIz Kj$ 2 +hauteur @U't3R L@$ 2 +have h&v G5*,J5* 16A,6B,7B,15B,18C,19B,24B,24C +haven 'heIvn K6% 2 +haven't 'h&vnt Gg% 2 +havens 'heIvnz Kj% 2 +haversack 'h&v@s&k K6% 3 +haversacks 'h&v@s&ks Kj% 3 +haves h&vz Kj% 1 +having 'h&vIN Gb%,Jb% 26A,6B,7B,15B,18C,19B,24B,24C +havoc 'h&v@k L@% 2 +haw hO I0%,K6% 1 +haw-haw 'hO-hO K6$,W-$ 2 +haw-haws 'hO-hOz Kj$ 2 +hawed hOd Ic$,Id$ 1 +hawing 'hOIN Ib$ 2 +hawk hOk H0%,K6% 16A,15B +hawk-eyed 'hOk-aId OA% 2 +hawked hOkt Hc%,Hd% 16A,15B +hawker 'hOk@R K6% 2 +hawkers 'hOk@z Kj% 2 +hawking 'hOkIN Hb% 26A,15B +hawks hOks Ha%,Kj% 16A,15B +haws hOz Ia$,Kj$ 1 +hawser 'hOz@R K6% 2 +hawsers 'hOz@z Kj% 2 +hawthorn 'hOTOn K6% 2 +hawthorns 'hOTOnz Kj% 2 +hay heI L@% 1 +haycock 'heIk0k K6$ 2 +haycocks 'heIk0ks Kj$ 2 +hayfork 'heIfOk K6% 2 +hayforks 'heIfOks Kj% 2 +haymaker 'heImeIk@R K6% 3 +haymakers 'heImeIk@z Kj% 3 +haymaking 'heImeIkIN L@% 3 +hayrick 'heIrIk K6% 2 +hayricks 'heIrIks Kj% 2 +haystack 'heIst&k K6% 2 +haystacks 'heIst&ks Kj% 2 +haywire 'heIwaI@R L@$,Op% 2 +hazard 'h&z@d H0%,M6% 26A +hazarded 'h&z@dId Hc%,Hd% 36A +hazarding 'h&z@dIN Hb% 36A +hazardous 'h&z@d@s OA% 3 +hazards 'h&z@dz Ha%,Mj% 26A +haze heIz H2$,M6% 1 +hazed heIzd Hc$,Hd$ 1 +hazel 'heIzl M6% 2 +hazels 'heIzlz Mj% 2 +hazes 'heIzIz Ha$,Mj% 2 +hazier 'heIzI@R Or% 3 +haziest 'heIzIIst Os% 3 +hazily 'heIzIlI Pu% 3 +haziness 'heIzIn@s L@% 3 +hazing 'heIzIN Hb% 2 +hazy 'heIzI OD% 2 +he hi Qx* 1 +he'd hid Gf% 1 +he'll hil Gf% 1 +he's hiz Gf% 1 +he-goat 'hi-g@Ut K6% 2 +he-goats 'hi-g@Uts Kj% 2 +he-man 'hi-m&n Ki% 2 +he-men 'hi-men Kj% 2 +head hed J0%,K6* 12C,6A,15B +head-hunter 'hed-hVnt@R K6% 3 +head-hunters 'hed-hVnt@z Kj% 3 +head-on 'hed-0n OA%,Pu% 2 +headache 'hedeIk M6% 2 +headaches 'hedeIks Mj% 2 +headband 'hedb&nd K6% 2 +headbands 'hedb&ndz Kj% 2 +headdress 'hed+dres K7% 2 +headdresses 'hed+dresIz Kj% 3 +headed 'hedId Jc%,Jd%,OA% 22C,6A,15B +header 'hed@R K6% 2 +headers 'hed@z Kj% 2 +headgear 'hedgI@R L@% 2 +headier 'hedI@R Or$ 3 +headiest 'hedIIst Os$ 3 +heading 'hedIN Jb%,K6% 22C,6A,15B +headings 'hedINz Kj% 2 +headlamp 'hedl&mp K6% 2 +headlamps 'hedl&mps Kj% 2 +headland 'hedl&nd K6% 2 +headlands 'hedl&ndz Kj% 2 +headless 'hedl@s OA% 2 +headlight 'hedlaIt K6% 2 +headlights 'hedlaIts Kj% 2 +headline 'hedlaIn K6% 2 +headlines 'hedlaInz Kj% 2 +headlong 'hedl0N OA%,Pu% 2 +headman 'hedm&n Ki% 2 +headmaster hed'mAst@R K6% 3 +headmasters hed'mAst@z Kj% 3 +headmen 'hedmen Kj% 2 +headmistress hed'mIstrIs K7% 3 +headmistresses hed'mIstrIsIz Kj% 4 +headphones 'hedf@Unz Kj% 2 +headpiece 'hedpis K6$ 2 +headpieces 'hedpisIz Kj$ 3 +headquarters hed'kwOt@z Kj% 3 +headrest 'hedrest K6% 2 +headrests 'hedrests Kj% 2 +headroom 'hedrum L@% 2 +heads hedz Ja%,Kj% 12C,6A,15B +headset 'hedset K6% 2 +headsets 'hedsets Kj% 2 +headship 'hedSIp K6% 2 +headships 'hedSIps Kj% 2 +headstall 'hedstOl K6$ 2 +headstalls 'hedstOlz Kj$ 2 +headstone 'hedst@Un K6% 2 +headstones 'hedst@Unz Kj% 2 +headstrong 'hedstr0N OA% 2 +headwaters 'hedwOt@z Kj$ 3 +headway 'hedweI L@% 2 +headwind 'hedwInd K6% 2 +headwinds 'hedwIndz Kj% 2 +headword 'hedw3d K6$ 2 +headwords 'hedw3dz Kj$ 2 +heady 'hedI OD% 2 +heal hil J0% 12A,2C,6A +healed hild Jc%,Jd% 12A,2C,6A +healer 'hil@R K6% 2 +healers 'hil@z Kj% 2 +healing 'hilIN Jb%,OA% 22A,2C,6A +heals hilz Ja% 12A,2C,6A +health helT L@% 1 +healthful 'helTf@l OA$ 2 +healthier 'helTI@R Or% 3 +healthiest 'helTIIst Os% 3 +healthily 'helTIlI Pu% 3 +healthy 'helTI OD% 2 +heap hip H0%,K6% 16A,14,15A,15B +heaped hipt Hc%,Hd% 16A,14,15A,15B +heaping 'hipIN Hb% 26A,14,15A,15B +heaps hips Ha%,Kj%,Pu% 16A,14,15A,15B +hear hI@R J5% 12A,3A,6A,9,10,15A,18A,19A,24A +heard h3d Jc*,Jd* 12A,3A,6A,9,10,15A,18A,19A,24A +hearer 'hI@r@R K6% 2 +hearers 'hI@r@z Kj% 2 +hearing 'hI@rIN Jb%,M6% 22A,3A,6A,9,10,15A,18A,19A,24A +hearing-aid 'hI@rIN-eId K6% 3 +hearing-aids 'hI@rIN-eIdz Kj% 3 +hearings 'hI@rINz Mj$ 2 +hearken 'hAk@n I0% 2 +hearkened 'hAk@nd Ic%,Id% 2 +hearkening 'hAk@nIN Ib% 3 +hearkens 'hAk@nz Ia% 2 +hears hI@z Ja% 12A,3A,6A,9,10,15A,18A,19A,24A +hearsay 'hI@seI L@% 2 +hearse h3s K6% 1 +hearses 'h3sIz Kj$ 2 +heart hAt M6% 1 +heart's-ease 'hAts-iz L@$ 2 +heart-disease 'hAt-dIziz M6% 3 +heart-diseases 'hAt-dIzizIz Mj% 4 +heart-failure 'hAt-feIlj@R L@% 3 +heart-rending 'hAt-rendIN OA% 3 +heartache 'hAteIk M6% 2 +heartaches 'hAteIks Mj% 2 +heartbeat 'hAtbit K6% 2 +heartbeats 'hAtbits Kj% 2 +heartbreak 'hAtbreIk L@% 2 +heartbreaking 'hAtbreIkIN OA% 3 +heartbroken 'hAtbr@Uk@n OA% 3 +heartburn 'hAtb3n L@% 2 +heartburning 'hAtb3nIN L@$ 3 +hearted 'hAtId Ot% 2 +hearten 'hAtn H0% 26A +heartened 'hAtnd Hc%,Hd% 26A +heartening 'hAtnIN Hb% 36A +heartens 'hAtnz Ha% 26A +heartfelt 'hAtfelt OA% 2 +hearth hAT K6% 1 +hearthrug 'hATrVg K6% 2 +hearthrugs 'hATrVgz Kj% 2 +hearths hATs Kj% 1 +heartier 'hAtI@R Or% 3 +heartiest 'hAtIIst Os% 3 +heartily 'hAtIlI Pu% 3 +heartless 'hAtl@s OA% 2 +heartlessly 'hAtl@slI Pu% 3 +heartlessness 'hAtl@sn@s L@% 3 +hearts hAts Mj% 1 +heartsick 'hAtsIk OA$ 2 +heartstrings 'hAtstrINz Kj% 2 +hearty 'hAtI OD% 2 +heat hit J0%,M6% 12C,6A,15B +heat-flash 'hit-fl&S K7$ 2 +heat-flashes 'hit-fl&SIz Kj$ 3 +heated 'hitId Jc%,Jd%,OA% 22C,6A,15B +heatedly 'hitIdlI Pu% 3 +heater 'hit@R K6% 2 +heaters 'hit@z Kj% 2 +heath hiT M6% 1 +heathen 'hiDn K6% 2 +heathenish 'hiDnIS OA% 3 +heathens 'hiDnz Kj% 2 +heather 'heD@R M6% 2 +heather-mixture 'heD@-mIkstS@R L@$ 4 +heathers 'heD@z Mj$ 2 +heaths hiTs Mj% 1 +heating 'hitIN Jb%,L@% 22C,6A,15B +heats hits Ja%,Mj$ 12C,6A,15B +heatspot 'hitsp0t K6% 2 +heatspots 'hitsp0ts Kj% 2 +heatstroke 'hitstr@Uk L@% 2 +heatwave 'hitweIv K6% 2 +heatwaves 'hitweIvz Kj% 2 +heave hiv J2%,K6% 12A,2C,3A,6A,15A,15B +heaved hivd Jc%,Jd% 12A,2C,3A,6A,15A,15B +heaven 'hevn K6% 2 +heavenly 'hevnlI OA% 3 +heavens 'hevnz Kj% 2 +heavensent 'hevnsent OA% 3 +heavenward 'hevnw@d OA%,Pu% 3 +heavenwards 'hevnw@dz OA%,Pu% 3 +heaves hivz Ja%,Kj% 12A,2C,3A,6A,15A,15B +heavier 'hevI@R Or% 3 +heaviest 'hevIIst Os% 3 +heavily 'hevIlI Pu% 3 +heaviness 'hevIn@s L@% 3 +heaving 'hivIN Jb% 22A,2C,3A,6A,15A,15B +heavy 'hevI OD%,Pu% 2 +heavy-handed ,hevI-'h&ndId OA% 4 +heavy-hearted ,hevI-'hAtId OA% 4 +heavy-laden ,hevI-'leIdn OA% 4 +heavyweight 'hevIweIt K6% 3 +heavyweights 'hevIweIts Kj% 3 +hebdomadal heb'd0m@dl OA$ 4 +hecatomb 'hek@tum K6$ 3 +hecatombs 'hek@tumz Kj$ 3 +heck hek K6$ 1 +heckle 'hekl H2% 26A +heckled 'hekld Hc%,Hd% 26A +heckler 'hekl@R K6% 2 +hecklers 'hekl@z Kj% 2 +heckles 'heklz Ha% 26A +heckling 'heklIN Hb% 26A +hecks heks Kj$ 1 +hectare 'hekte@R K6% 2 +hectares 'hekte@z Kj% 2 +hectic 'hektIk OA% 2 +hecto- 'hekt@U- U-% 2 +hector 'hekt@R J0$ 2 +hectored 'hekt@d Jc$,Jd$ 2 +hectoring 'hekt@rIN Jb% 3 +hectors 'hekt@z Ja$ 2 +hedge hedZ J2%,K6% 12A,6A,15A,15B +hedge-sparrow 'hedZ-sp&r@U K6% 3 +hedge-sparrows 'hedZ-sp&r@Uz Kj% 3 +hedged hedZd Jc%,Jd% 12A,6A,15A,15B +hedgehog 'hedZh0g K6% 2 +hedgehogs 'hedZh0gz Kj% 2 +hedgehop 'hedZh0p I4$ 2 +hedgehopped 'hedZh0pt Ic$,Id$ 2 +hedgehopping 'hedZh0pIN Ib$ 3 +hedgehops 'hedZh0ps Ia$ 2 +hedgerow 'hedZr@U K6% 2 +hedgerows 'hedZr@Uz Kj% 2 +hedges 'hedZIz Ja%,Kj% 22A,6A,15A,15B +hedging 'hedZIN Jb% 22A,6A,15A,15B +hedonism 'hid@nIz@m L@$ 4 +hedonist 'hid@nIst K6% 3 +hedonistic ,hid@'nIstIk OA$ 4 +hedonists 'hid@nIsts Kj$ 3 +heed hid H0%,L@% 16A +heeded 'hidId Hc%,Hd% 26A +heedful 'hidf@l OA% 2 +heeding 'hidIN Hb% 26A +heedless 'hidl@s OA% 2 +heeds hidz Ha% 16A +heehaw 'hihO K6$ 2 +heehaws 'hihOz Kj$ 2 +heel hil J0%,K6% 12A,2C,6A,15B +heeled hild Jc%,Jd% 12A,2C,6A,15B +heeling 'hilIN Jb% 22A,2C,6A,15B +heels hilz Ja%,Kj% 12A,2C,6A,15B +heftier 'heftI@R Or% 3 +heftiest 'heftIIst Os% 3 +hefty 'heftI OD% 2 +hegemonies hI'gem@nIz Mj$ 4 +hegemony hI'gem@nI M8$ 4 +heifer 'hef@R K6% 2 +heifers 'hef@z Kj% 2 +heighho ,heI'h@U W-$ 2 +height haIt M6% 1 +heighten 'haItn J0% 22A,6A +heightened 'haItnd Jc%,Jd% 22A,6A +heightening 'haItnIN Jb% 32A,6A +heightens 'haItnz Ja% 22A,6A +heights haIts Mj% 1 +heinous 'heIn@s OA% 2 +heinously 'heIn@slI Pu$ 3 +heinousness 'heIn@sn@s L@$ 3 +heir e@R K6% 1 +heiress 'e@rIs K7% 2 +heiresses 'e@rIsIz Kj% 3 +heirloom 'e@lum K6% 2 +heirlooms 'e@lumz Kj% 2 +heirs e@z Kj% 1 +held held Jc*,Jd* 12A,2C,2D,3A,6A,9,14,15A,15B,22,25 +helicopter 'helIk0pt@R K6% 4 +helicopters 'helIk0pt@z Kj% 4 +heliograph 'hilI@grAf H0$,K6$ 4 +heliographed 'hilI@grAft Hc$,Hd$ 4 +heliographing 'hilI@grAfIN Hb$ 5 +heliographs 'hilI@grAfs Ha$,Kj$ 4 +heliotrope 'hilI@tr@Up K6$ 4 +heliotropes 'hilI@tr@Ups Kj$ 4 +heliport 'helIpOt K6$ 3 +heliports 'helIpOts Kj$ 3 +helium 'hilI@m L@% 3 +hell hel K6% 1 +hellcat 'helk&t K6% 2 +hellcats 'helk&ts Kj% 2 +hellish 'helIS OA% 2 +hello h@'l@U W-% 2 +hells helz Kj$ 1 +helm helm K6% 1 +helmet 'helmIt K6% 2 +helmeted 'helmItId OA% 3 +helmets 'helmIts Kj% 2 +helms helmz Kj% 1 +helmsman 'helmzm@n Ki% 2 +helmsmen 'helmzm@n Kj% 2 +helot 'hel@t K6$ 2 +helots 'hel@ts Kj$ 2 +help help J0*,M6* 12A,2C,6A,6C,14,15A,15B,17,18B +helped helpt Jc%,Jd% 12A,2C,6A,6C,14,15A,15B,17,18B +helper 'help@R K6% 2 +helpers 'help@z Kj% 2 +helpful 'helpf@l OA% 2 +helpfully 'helpf@lI Pu% 3 +helpfulness 'helpf@ln@s L@% 3 +helping 'helpIN Jb%,K6% 22A,2C,6A,6C,14,15A,15B,17,18B +helpings 'helpINz Kj% 2 +helpless 'helpl@s OA% 2 +helplessly 'helpl@slI Pu% 3 +helplessness 'helpl@sn@s L@% 3 +helpmate 'helpmeIt K6$ 2 +helpmates 'helpmeIts Kj$ 2 +helpmeet 'helpmit K6$ 2 +helpmeets 'helpmits Kj$ 2 +helps helps Ja%,Mj% 12A,2C,6A,6C,14,15A,15B,17,18B +helter-skelter ,helt@-'skelt@R K6%,Pu% 4 +helter-skelters ,helt@-'skelt@z Kj% 4 +helve helv K6$ 1 +helves helvz Kj$ 1 +hem hem J4%,K6%,W-% 16A,15B +hematite 'hem@taIt K6$ 3 +hematites 'hem@taIts Kj$ 3 +hemisphere 'hemIsfI@R K6% 3 +hemispheres 'hemIsfI@z Kj% 3 +hemline 'hemlaIn K6% 2 +hemlines 'hemlaInz Kj% 2 +hemlock 'heml0k M6% 2 +hemlocks 'heml0ks Mj$ 2 +hemmed hemd Jc%,Jd% 16A,15B +hemming 'hemIN Jb% 26A,15B +hemming-stitch 'hemIN-stItS K7% 3 +hemming-stitches 'hemIN-stItSIz Kj$ 4 +hemoglobin ,him@'gl@UbIn L@$ 4 +hemophilia ,him@'fIlI@ L@$ 5 +hemophiliac ,him@'fIlI&k K6$ 5 +hemophiliacs ,him@'fIlI&ks Kj$ 5 +hemorrhage 'hem@rIdZ M6$ 3 +hemorrhages 'hem@rIdZIz Mj$ 4 +hemorrhoids 'hem@roIdz Kj$ 3 +hemp hemp L@% 1 +hempen 'hemp@n OA$ 2 +hems hemz Ja%,Kj% 16A,15B +hemstitch 'hemstItS H1$,K7% 2 +hemstitched 'hemstItSt Hc$,Hd% 2 +hemstitches 'hemstItSIz Ha$,Kj% 3 +hemstitching 'hemstItSIN Hb% 3 +hen hen K6% 1 +hen-parties 'hen-pAtIz Kj% 3 +hen-party 'hen-pAtI K8% 3 +henbane 'henbeIn L@$ 2 +hence hens Pu% 1 +henceforth hens'fOT Pu% 2 +henceforward hens'fOw@d Pu% 3 +henchman 'hentSm@n Ki% 2 +henchmen 'hentSm@n Kj% 2 +hencoop 'henkup K6% 2 +hencoops 'henkups Kj% 2 +henhouse 'henhaUs K6% 2 +henhouses 'henhaUzIz Kj% 3 +henna 'hen@ L@% 2 +hennaed 'hen@d OA% 2 +henpecked 'henpekt OA% 2 +henroost 'henrust K6% 2 +henroosts 'henrusts Kj% 2 +hens henz Kj% 1 +hep hep OA$ 1 +hepatitis ,hep@'taItIs L@% 4 +heptagon 'hept@g@n K6% 3 +heptagons 'hept@g@nz Kj% 3 +her h3R Oq*,Qx* 1 +herald 'her@ld H0%,K6% 26A +heralded 'her@ldId Hc%,Hd% 36A +heraldic he'r&ldIk OA% 3 +heralding 'her@ldIN Hb% 36A +heraldry 'her@ldrI L@% 3 +heralds 'her@ldz Ha%,Kj% 26A +herb h3b K6% 1 +herbaceous h3'beIS@s OA% 3 +herbage 'h3bIdZ L@$ 2 +herbal 'h3bl OA% 2 +herbalist 'h3b@lIst K6% 3 +herbalists 'h3b@lIsts Kj% 3 +herbivorous h3'bIv@r@s OA% 4 +herbs h3bz Kj% 1 +herculean ,h3kjU'li@n OA% 4 +herd h3d J0%,K6% 12C,15A,15B +herded 'h3dId Jc%,Jd% 22C,15A,15B +herding 'h3dIN Jb% 22C,15A,15B +herds h3dz Ja%,Kj% 12C,15A,15B +herdsman 'h3dzm@n Ki% 2 +herdsmen 'h3dzm@n Kj% 2 +here hI@R Pu* 1 +here's hI@z Gh% 1 +hereabouts ,hI@r@'baUts Pu% 3 +hereafter hI@'rAft@R Ki%,Pu% 3 +hereby hI@'baI Pu% 2 +hereditament ,herI'dIt@m@nt K6$ 5 +hereditaments ,herI'dIt@m@nts Kj$ 5 +hereditary hI'redItrI OA% 4 +heredity hI'redItI L@% 4 +herein ,hI@'rIn Pu% 2 +hereinafter ,hI@rIn'Aft@R Pu% 4 +hereinbefore ,hI@rInbI'fOR Pu$ 4 +hereof hI@'r0v Pu% 2 +heresies 'her@sIz Mj% 3 +heresy 'her@sI M8% 3 +heretic 'her@tIk K6% 3 +heretical hI'retIkl OA% 4 +heretics 'her@tIks Kj% 3 +hereto hI@'tu Pu% 3 +heretofore ,hI@tu'fOR Pu$ 3 +hereupon ,hI@r@'p0n Pu% 3 +herewith ,hI@'wID Pu% 2 +heritable 'herIt@bl OA$ 4 +heritage 'herItIdZ Ki% 3 +hermaphrodite h3'm&fr@daIt K6$ 4 +hermaphrodites h3'm&fr@daIts Kj$ 4 +hermetic h3'metIk OA$ 3 +hermetically h3'metIklI Pu% 4 +hermit 'h3mIt K6% 2 +hermitage 'h3mItIdZ K6% 3 +hermitages 'h3mItIdZIz Kj% 4 +hermits 'h3mIts Kj% 2 +hernia 'h3nI@ M6% 3 +hernias 'h3nI@z Mj% 3 +hero 'hI@r@U K7% 2 +heroes 'hI@r@Uz Kj% 2 +heroic hI'r@UIk OA% 3 +heroically hI'r@UIklI Pu% 4 +heroics hI'r@UIks Lk% 3 +heroin 'her@UIn L@% 3 +heroine 'her@UIn K6% 3 +heroines 'her@UInz Kj% 3 +heroism 'her@UIz@m L@% 4 +heron 'her@n K6% 2 +heronries 'her@nrIz Kj$ 3 +heronry 'her@nrI K8$ 3 +herons 'her@nz Kj% 2 +herring 'herIN M9% 2 +herringbone 'herINb@Un L@% 3 +herrings 'herINz Kj% 2 +hers h3z Qx% 1 +herself h3'self Qx% 2 +hertz h3ts K9$ 1 +hesitance 'hezIt@ns Mi$ 3 +hesitancy 'hezIt@nsI L@$ 4 +hesitant 'hezIt@nt OA% 3 +hesitantly 'hezIt@ntlI Pu% 4 +hesitate 'hezIteIt I2% 32A,3A,3B,4C +hesitated 'hezIteItId Ic%,Id% 42A,3A,3B,4C +hesitates 'hezIteIts Ia% 32A,3A,3B,4C +hesitating 'hezIteItIN Ib% 42A,3A,3B,4C +hesitatingly 'hesIteItINlI Pu% 5 +hesitation ,hezI'teISn M6% 4 +hesitations ,hezI'teISnz Mj% 4 +hessian 'hesI@n L@% 3 +het-up ,het-'Vp OA% 2 +heterodox 'het@r@d0ks OA$ 4 +heterodoxy 'het@r@d0ksI L@$ 5 +heterogeneous ,het@r@'dZinI@s OA% 6 +heterosexual ,het@r@'sekSU@l K6%,OA% 6 +heterosexuality ,het@r@,sekSU'&lItI L@% 8 +heterosexuals ,het@r@'sekSU@lz Kj% 6 +heuristic hjU@'rIstIk OA$ 3 +heuristics hjU@'rIstIks Lk$ 3 +hew hju J0$ 12A,2C,6A,15A,15B +hewed hjud Jc$,Jd$ 12A,2C,6A,15A,15B +hewer 'hju@R K6$ 2 +hewers 'hju@z Kj$ 2 +hewing 'hjuIN Jb% 22A,2C,6A,15A,15B +hewn hjun Jd% 12A,2C,6A,15A,15B +hews hjuz Ja$ 12A,2C,6A,15A,15B +hexagon 'heks@g@n K6% 3 +hexagonal heks'&g@nl OA% 4 +hexagons 'heks@g@nz Kj% 3 +hexameter heks'&mIt@R K6$ 4 +hexameters heks'&mIt@z Kj$ 4 +hey heI W-% 1 +heyday 'heIdeI Ki% 2 +hi haI W-% 1 +hi-fi ,haI-'faI K6%,OA% 2 +hi-fis ,haI-'faIz Kj$ 2 +hiatus haI'eIt@s K7$ 3 +hiatuses haI'eIt@sIz Kj$ 4 +hibernate 'haIb@neIt I2% 32A +hibernated 'haIb@neItId Ic%,Id% 42A +hibernates 'haIb@neIts Ia% 32A +hibernating 'haIb@neItIN Ib% 42A +hibernation ,haIb@'neISn L@% 4 +hibiscus hI'bIsk@s L@$ 3 +hiccough 'hIkVp I0$,K6$ 2 +hiccoughed 'hIkVpt Ic$,Id$ 2 +hiccoughing 'hIkVpIN Ib$ 3 +hiccoughs 'hIkVps Ia$,Kj$ 2 +hiccup 'hIkVp I4%,K6% 2 +hiccupped 'hIkVpt Ic%,Id% 2 +hiccupping 'hIkVpIN Ib% 3 +hiccups 'hIkVps Ia%,Kj% 2 +hick hIk K6$,OA$ 1 +hickories 'hIk@rIz Mj$ 3 +hickory 'hIk@rI M8$ 3 +hicks hIks Kj$ 1 +hid hId Jc% 12A,6A,14 +hidden 'hIdn Jd% 22A,6A,14 +hide haId J5%,M6% 12A,6A,14 +hide-and-seek ,haId-n-'sik L@% 3 +hide-out 'haId-aUt K6% 2 +hide-outs 'haId-aUts Kj$ 2 +hideaway 'haId@weI K6% 3 +hideaways 'haId@weIz Kj$ 3 +hidebound 'haIdbaUnd OA% 2 +hideous 'hIdI@s OA% 3 +hideously 'hIdI@slI Pu% 4 +hides haIdz Ja%,Mj% 12A,6A,14 +hiding 'haIdIN Jb%,M6% 22A,6A,14 +hiding-place 'haIdIN-pleIs K6% 3 +hiding-places 'haIdIN-pleIsIz Kj% 4 +hidings 'haIdINz Mj$ 2 +hie haI I5$ 1 +hied haId Ic$,Id$ 1 +hieing 'haIIN Ib$ 2 +hierarchic ,haI@'rAkIk OA$ 4 +hierarchical ,haI@'rAkIkl OA% 5 +hierarchies 'haI@rAkIz Kj% 4 +hierarchy 'haI@rAkI K8% 4 +hieroglyph 'haI@r@glIf K6$ 4 +hieroglyphic ,haI@r@'glIfIk OA$ 5 +hieroglyphics ,haI@r@'glIfIks Lk% 5 +hieroglyphs 'haI@r@glIfs Kj$ 4 +hies haIz Ia$ 1 +higgledy-piggledy ,hIgldI-'pIgldI OA%,Pu% 6 +high haI OC*,Pu* 1 +high-class 'haI-klAs OA% 2 +high-falutin ,haI-f@'lutn OA% 4 +high-fidelity ,haI-fI'delItI L@%,OA% 5 +high-frequencies haI-'frikw@nsIz Mj$ 4 +high-frequency haI-'frikw@nsI M8% 4 +high-grade 'haI-greId OA% 2 +high-handed haI-'h&ndId OA% 3 +high-handedly haI-'h&ndIdlI Pu% 4 +high-keyed haI-'kid OA$ 2 +high-level 'haI-levl OA% 3 +high-minded haI-'maIndId OA% 3 +high-mindedly ,haI-'maIndIdlI Pu% 4 +high-mindedness ,haI-'maIndIdn@s L@% 4 +high-necked haI-'nekt OA% 2 +high-octane haI-'0kteIn OA% 3 +high-pitched haI-'pItSt OA% 2 +high-powered haI-'paU@d OA% 3 +high-pressure haI-'preS@R L@% 3 +high-priced haI-'praIst OA% 2 +high-principled haI-'prIns@pld OA% 4 +high-ranking haI-'r&nkIN OA% 3 +high-rise 'haI-raIz Oq% 2 +high-sounding haI-'saUndIN OA% 3 +high-speed 'haI-spid OA% 2 +high-spirited haI-'spIrItId OA% 4 +high-tension haI-'tenSn OA% 3 +high-toned haI-'t@Und OA% 2 +high-up 'haI-Vp K6$ 2 +high-ups 'haI-Vps Kj% 2 +highball 'haIbOl K6$ 2 +highballs 'haIbOlz Kj$ 2 +highborn 'haIbOn OA% 2 +highboy 'haIboI K6$ 2 +highboys 'haIboIz Kj$ 2 +highbrow 'haIbraU K6$,OA% 2 +highbrows 'haIbraUz Kj$ 2 +higher 'haI@R Or% 2 +higher-ups ,haI@r-'Vps Kj$ 3 +highest 'haIIst Os% 2 +highflier haI'flaI@R K6% 3 +highfliers haI'flaI@z Kj% 3 +highflown 'haIfl@Un OA% 2 +highflyer haI'flaI@R K6% 3 +highflyers haI'flaI@z Kj% 3 +highflying haI'flaIIN OA% 3 +highjack 'haIdZ&k H0$,K6$ 26A +highjacked 'haIdZ&kt Hc$,Hd$ 26A +highjacking 'haIdZ&kIN Hb$ 36A +highjacks 'haIdZ&ks Ha$,Kj$ 26A +highland 'haIl&nd K6% 2 +highlands 'haIl&ndz Kj% 2 +highlight 'haIlaIt H0%,K6% 2 +highlighted 'haIlaItId Hc%,Hd% 3 +highlighting 'haIlaItIN Hb% 3 +highlights 'haIlaIts Ha%,Kj% 2 +highly 'haIlI Pu% 2 +highness 'haIn@s M7% 2 +highnesses 'haIn@sIz Mj% 3 +highroad 'haIr@Ud K6% 2 +highroads 'haIr@Udz Kj% 2 +highway 'haIweI K6% 2 +highwayman 'haIweIm@n Ki% 3 +highwaymen 'haIweIm@n Kj% 3 +highways 'haIweIz Kj% 2 +hijack 'haIdZ&k H0%,K6% 26A +hijacked 'haIdZ&kt Hc%,Hd% 26A +hijacker 'haIdZ&k@R K6% 3 +hijackers 'haIdZ&k@z Kj% 3 +hijacking 'haIdZ&kIN Hb% 36A +hijacks 'haIdZ&ks Ha%,Kj% 26A +hike haIk I2%,K6% 1 +hiked haIkt Ic%,Id% 1 +hiker 'haIk@R K6% 2 +hikers 'haIk@z Kj% 2 +hikes haIks Ia%,Kj% 1 +hiking 'haIkIN Ib% 2 +hilarious hI'le@rI@s OA% 4 +hilariously hI'le@rI@slI Pu% 5 +hilarity hI'l&rItI L@% 4 +hill hIl K6% 1 +hill-billies 'hIl-bIlIz Kj% 3 +hill-billy 'hIl-bIlI K8% 3 +hillier 'hIlI@R Or% 3 +hilliest 'hIlIIst Os% 3 +hillock 'hIl@k K6% 2 +hillocks 'hIl@ks Kj% 2 +hills hIlz Kj% 1 +hillside 'hIlsaId K6% 2 +hillsides 'hIlsaIdz Kj% 2 +hilly 'hIlI OD% 2 +hilt hIlt K6% 1 +hilts hIlts Kj$ 1 +him hIm Qx* 1 +himself hIm'self Qx* 2 +hind haInd K6$,OA$ 1 +hinder 'hInd@R H0% 26A,6C,15A +hindered 'hInd@d Hc%,Hd% 26A,6C,15A +hindering 'hInd@rIN Hb% 36A,6C,15A +hinders 'hInd@z Ha% 26A,6C,15A +hindmost 'haIndm@Ust OA% 2 +hindrance 'hIndr@ns K6% 2 +hindrances 'hIndr@nsIz Kj% 3 +hinds haIndz Kj$ 1 +hindsight 'haIndsaIt L@% 2 +hinge hIndZ J2%,K6% 13A,6A +hinged hIndZd Jc%,Jd% 13A,6A +hinges 'hIndZIz Ja%,Kj% 23A,6A +hinging 'hIndZIN Jb% 23A,6A +hint hInt J0%,K6% 13A,6A,9 +hinted 'hIntId Jc%,Jd% 23A,6A,9 +hinterland 'hInt@l&nd K6% 3 +hinterlands 'hInt@l&ndz Kj$ 3 +hinting 'hIntIN Jb% 23A,6A,9 +hints hInts Ja%,Kj% 13A,6A,9 +hip hIp K6%,OA%,W-% 1 +hip-bath 'hIp-bAT K6% 2 +hip-baths 'hIp-bADz Kj% 2 +hip-flask 'hIp-flAsk K6% 2 +hip-flasks 'hIp-flAsks Kj% 2 +hip-pocket hIp-'p0kIt K6% 3 +hip-pockets hIp-'p0kIts Kj% 3 +hippie 'hIpI K6% 2 +hippies 'hIpIz Kj% 2 +hippo 'hIp@U K6% 2 +hippodrome 'hIp@dr@Um K6$ 3 +hippodromes 'hIp@dr@Umz Kj$ 3 +hippopotami ,hIp@'p0t@maI Kj% 5 +hippopotamus ,hIp@'p0t@m@s K7% 5 +hippopotamuses ,hIp@'p0t@m@sIz Kj% 6 +hippos 'hIp@Uz Kj% 2 +hippy 'hIpI K8% 2 +hips hIps Kj% 1 +hire 'haI@R H2%,L@% 16A,15B +hired 'haI@d Hc%,Hd% 16A,15B +hireling 'haI@lIN K6% 2 +hirelings 'haI@lINz Kj% 2 +hires 'haI@z Ha% 16A,15B +hiring 'haI@rIN Hb% 26A,15B +hirsute 'h3sjut OA$ 2 +his hIz OA*,Qx* 1 +hiss hIs J1%,K7% 12A,3A,6A,15A +hissed hIst Jc%,Jd% 12A,3A,6A,15A +hisses 'hIsIz Ja%,Kj% 22A,3A,6A,15A +hissing 'hIsIN Jb% 22A,3A,6A,15A +histogram 'hIst@gr&m K6% 3 +histograms 'hIst@gr&mz Kj% 3 +historian hI'stOrI@n K6% 4 +historians hI'stOrI@nz Kj% 4 +historic hI'st0rIk OA% 3 +historical hI'st0rIkl OA% 4 +historically hI'st0rIklI Pu% 4 +histories 'hIstrIz Mj% 2 +history 'hIstrI M8% 2 +histrionic ,hIstrI'0nIk OA% 4 +histrionics ,hIstrI'0nIks Lk% 4 +hit hIt J5%,Jc%,Jd%,K6% 12C,3A,6A,12C,15A,15B +hit-and-run ,hIt-n-'rVn Oq% 3 +hitch hItS J1%,K7% 12A,2C,6A,15A,15B +hitched hItSt Jc%,Jd% 12A,2C,6A,15A,15B +hitches 'hItSIz Ja%,Kj% 22A,2C,6A,15A,15B +hitchhike 'hItShaIk I2% 22A +hitchhiked 'hItShaIkt Ic%,Id% 22A +hitchhiker 'hItShaIk@R K6% 3 +hitchhikers 'hItShaIk@z Kj% 3 +hitchhikes 'hItShaIks Ia% 22A +hitchhiking 'hItShaIkIN Ib% 32A +hitching 'hItSIN Jb% 22A,2C,6A,15A,15B +hither 'hID@R Pu% 2 +hitherto ,hID@'tu Pu% 3 +hits hIts Ja%,Kj% 12C,3A,6A,12C,15A,15B +hitting 'hItIN Jb% 22C,3A,6A,12C,15A,15B +hive haIv J2$,K6% 12C,6A +hived haIvd Jc$,Jd$ 12C,6A +hives haIvz Ja$,Kj% 12C,6A +hiving 'haIvIN Jb$ 22C,6A +ho h@U W-$ 1 +hoar hOR OA$ 1 +hoard hOd J0%,K6% 16A,15B +hoarded 'hOdId Jc%,Jd% 26A,15B +hoarder 'hOd@R K6% 2 +hoarders 'hOd@z Kj% 2 +hoarding 'hOdIN Jb%,K6% 26A,15B +hoardings 'hOdINz Kj% 2 +hoards hOdz Ja%,Kj% 16A,15B +hoarfrost 'hOfr0st L@% 2 +hoarier 'hOrI@R Or$ 3 +hoariest 'hOrIIst Os$ 3 +hoariness 'hOrIn@s L@$ 3 +hoarse hOs OB% 1 +hoarsely 'hOslI Pu% 2 +hoarseness 'hOsn@s L@% 2 +hoarser 'hOs@R Or% 2 +hoarsest 'hOsIst Os% 2 +hoary 'hOrI OD% 2 +hoax h@Uks H1%,K7% 16A,14 +hoaxed h@Ukst Hc%,Hd% 16A,14 +hoaxer 'h@Uks@R K6% 2 +hoaxers 'h@Uks@z Kj% 2 +hoaxes 'h@UksIz Ha%,Kj% 26A,14 +hoaxing 'h@UksIN Hb% 26A,14 +hob h0b K6% 1 +hobbies 'h0bIz Kj% 2 +hobble 'h0bl J2%,K6% 22A,2C,6A +hobble-skirt 'h0bl-sk3t K6$ 3 +hobble-skirts 'h0bl-sk3ts Kj$ 3 +hobbled 'h0bld Jc%,Jd% 22A,2C,6A +hobbledehoy 'h0bldIhoI K6$ 4 +hobbledehoys 'h0bldIhoIz Kj$ 4 +hobbles 'h0blz Ja%,Kj% 22A,2C,6A +hobbling 'h0blIN Jb% 22A,2C,6A +hobby 'h0bI K8% 2 +hobbyhorse 'h0bIhOs K6% 3 +hobbyhorses 'h0bIhOsIz Kj% 4 +hobgoblin ,h0b'g0blIn K6% 3 +hobgoblins ,h0b'g0blInz Kj% 3 +hobnail 'h0bneIl K6% 2 +hobnailed 'h0bneIld OA% 2 +hobnails 'h0bneIlz Kj$ 2 +hobnob 'h0bn0b I4% 22A,2C,3A +hobnobbed 'h0bn0bd Ic%,Id% 22A,2C,3A +hobnobbing 'h0bn0bIN Ib% 32A,2C,3A +hobnobs 'h0bn0bz Ia% 22A,2C,3A +hobo 'h@Ub@U K6% 2 +hoboes 'h@Ub@Uz Kj$ 2 +hobos 'h@Ub@Uz Kj% 2 +hobs h0bz Kj% 1 +hock h0k H0$,M6$ 16A +hocked h0kt Hc$,Hd$ 16A +hockey 'h0kI L@% 2 +hocking 'h0kIN Hb$ 26A +hocks h0ks Ha$,Mj$ 16A +hocus-pocus ,h@Uk@s-'p@Uk@s L@% 4 +hod h0d K6% 1 +hodgepodge 'h0dZp0dZ L@% 2 +hods h0dz Kj% 1 +hoe h@U J5%,K6% 12A,6A,15B +hoed h@Ud Jc%,Jd% 12A,6A,15B +hoeing 'h@UIN Jb% 22A,6A,15B +hoes h@Uz Ja%,Kj% 12A,6A,15B +hog h0g H4%,K6% 16A +hogged h0gd Hc%,Hd% 16A +hogging 'h0gIN Hb% 26A +hoggish 'h0gIS OA$ 2 +hogs h0gz Ha%,Kj% 16A +hogshead 'h0gzhed K6% 2 +hogsheads 'h0gzhedz Kj% 2 +hogwash 'h0gw0S L@% 2 +hoi polloi ,hoI p@'loI Kj$ 3 +hoist hoIst H0%,K6% 16A,15B +hoisted 'hoIstId Hc%,Hd% 26A,15B +hoisting 'hoIstIN Hb% 26A,15B +hoists hoIsts Ha%,Kj% 16A,15B +hoity-toity ,hoItI-'toItI OA%,W-$ 4 +hold h@Uld J5%,M6% 12A,2C,2D,3A,6A,9,14,15A,15B,22,25 +hold-up 'h@Uld-Vp K6% 2 +hold-ups 'h@Uld-Vps Kj$ 2 +holdall 'h@UldOl K6% 2 +holdalls 'h@UldOlz Kj% 2 +holder 'h@Uld@R K6% 2 +holders 'h@Uld@z Kj% 2 +holding 'h@UldIN Jb%,K6% 22A,2C,2D,3A,6A,9,14,15A,15B,22,25 +holdings 'h@UldINz Kj% 2 +holds h@Uldz Ja%,Mj% 12A,2C,2D,3A,6A,9,14,15A,15B,22,25 +holdup 'h@UldVp K6$ 2 +holdups 'h@UldVps Kj$ 2 +hole h@Ul J2%,K6% 12C,6A,15B +hole-and-corner ,h@Ul-n-'kOn@R OA% 4 +holed h@Uld Jc%,Jd% 12C,6A,15B +holes h@Ulz Ja%,Kj% 12C,6A,15B +holiday 'h0l@deI I0%,K6% 3 +holiday-maker 'h0l@dI-,meIk@R K6% 5 +holiday-makers 'h0l@dI-,meIk@z Kj% 5 +holidayed 'h0l@deId Ic% 3 +holidaying 'h0l@deIIN Ib% 4 +holidays 'h0l@deIz Kj% 3 +holier 'h@UlI@R Or% 3 +holies 'h@UlIz Kj% 2 +holiest 'h@UlIIst Os% 3 +holiness 'h@UlIn@s L@% 3 +holing 'h@UlIN Jb% 22C,6A,15B +holler 'h0l@R J0% 2 +hollered 'h0l@d Jc%,Jd% 2 +hollering 'h0l@rIN Jb% 3 +hollers 'h0l@z Ja% 2 +holloa 'h0l@U K6$,W-$ 2 +holloas 'h0l@Uz Kj$ 2 +hollow 'h0l@U H0%,K6%,OA% 26A,15A,15B +hollowed 'h0l@Ud Hc%,Hd% 26A,15A,15B +hollowing 'h0l@UIN Hb% 36A,15A,15B +hollows 'h0l@Uz Ha%,Kj% 26A,15A,15B +holly 'h0lI L@% 2 +hollyhock 'h0lIh0k K6% 3 +hollyhocks 'h0lIh0ks Kj% 3 +holm-oak 'h@Um-@Uk K6$ 2 +holm-oaks 'h@Um-@Uks Kj$ 2 +holocaust 'h0l@kOst K6% 3 +holocausts 'h0l@kOsts Kj$ 3 +holograph 'h0l@grAf K6% 3 +holographs 'h0l@grAfs Kj% 3 +holster 'h@Ulst@R K6% 2 +holsters 'h@Ulst@z Kj% 2 +holy 'h@UlI K8%,OD% 2 +holystone 'h@UlIst@Un H2$,L@$ 3 +holystoned 'h@UlIst@Und Hc$,Hd$ 3 +holystones 'h@UlIst@Unz Ha$ 3 +holystoning 'h@UlIst@UnIN Hb$ 4 +homage 'h0mIdZ L@% 2 +home h@Um K6*,Pu* 1 +home-baked h@Um-'beIkt OA% 2 +home-brewed h@Um-'brud OA% 2 +home-cured h@Um-'kju@d OA% 2 +home-farm h@Um-'fAm K6% 2 +home-farms h@Um-'fAmz Kj% 2 +home-grown 'h@Um-gr@Un OA% 2 +home-made 'h@Um-meId OA% 2 +homecoming 'h@UmkVmIN K6% 3 +homecomings 'h@UmkVmINz Kj% 3 +homeland 'h@Uml&nd K6% 2 +homelands 'h@Uml&ndz Kj% 2 +homeless 'h@Uml@s OA% 2 +homelier 'h@UmlI@R Or% 3 +homeliest 'h@UmlIIst Os% 3 +homelike 'h@UmlaIk OA% 2 +homeliness 'h@UmlIn@s L@% 3 +homely 'h@UmlI OD% 2 +homeopath 'h@UmI@p&T K6% 4 +homeopathic ,h@UmI@'p&TIk OA% 5 +homeopaths 'h@Umi@Up&Ts Kj% 4 +homes h@Umz Kj% 1 +homesick 'h@UmsIk OA% 2 +homesickness 'h@UmsIkn@s L@% 3 +homespun 'h@UmspVn L@$,OA% 2 +homestead 'h@Umsted K6% 2 +homesteads 'h@Umstedz Kj% 2 +homeward 'h@Umw@d OA%,Pu% 2 +homewards 'h@Umw@dz Pu% 2 +homework 'h@Umw3k L@% 2 +homey 'h@UmI OA$ 2 +homicidal ,h0mI'saIdl OA% 4 +homicide 'h0mIsaId M6% 3 +homicides 'h0mIsaIdz Mj% 3 +homiletic ,h0mI'letIk OA$ 4 +homiletics ,h0mI'letIks Lk$ 4 +homilies 'h0mIlIz Kj% 3 +homily 'h0mIlI K8% 3 +homing 'h@UmIN OA% 2 +hominy 'h0mInI L@$ 3 +homo 'h@Um@U K6$ 2 +homo sapiens ,h@Um@U 's&pIenz Ki% 5 +homoeopath 'h@Umi@Up&T K6% 4 +homoeopaths 'h@Umi@Up&Ts Kj% 4 +homoeopathy ,h@UmI'0p@TI L@% 5 +homogeneity ,h@Um@dZI'nI@tI L@% 6 +homogeneous ,h0m@'dZinI@s OA% 5 +homogenize h@'m0dZInaIz H2% 46A +homogenized h@'m0dZInaIzd Hc%,Hd% 46A +homogenizes h@'m0dZInaIzIz Ha$ 56A +homogenizing h@'m0dZInaIzIN Hb$ 56A +homograph 'h0m@grAf K6$ 3 +homographs 'h0m@grAfs Kj$ 3 +homonym 'h0m@nIm K6% 3 +homonyms 'h0m@nImz Kj% 3 +homophone 'h0m@f@Un K6% 3 +homophones 'h0m@f@Unz Kj% 3 +homos 'h@Um@Uz Kj$ 2 +homosexual ,h0m@'sekSU@l K6%,OA% 5 +homosexuality ,h@Um@sekSU'&lItI L@% 7 +homosexuals ,h0m@'sekSU@lz Kj% 5 +hone h@Un H2%,K6$ 16A +honed h@Und Hc%,Hd% 16A +hones h@Unz Ha%,Kj$ 16A +honest '0nIst OA% 2 +honestly '0nIstlI Pu% 3 +honesty '0nIstI L@% 3 +honey 'hVnI M6% 2 +honeybee 'hVnIbi K6% 3 +honeybees 'hVnIbiz Kj% 3 +honeycomb 'hVnIk@Um H0$,M6% 36A +honeycombed 'hVnIk@Umd Hc$,Hd% 36A +honeycombing 'hVnIk@UmIN Hb$ 46A +honeycombs 'hVnIk@Umz Ha$,Mj% 36A +honeydew 'hVnIdju L@% 3 +honeyed 'hVnId OA% 2 +honeymoon 'hVnImun I0%,K6% 3 +honeymooned 'hVnImund Ic%,Id% 3 +honeymooning 'hVnImunIN Ib% 4 +honeymoons 'hVnImunz Ia$,Kj% 3 +honeys 'hVnIz Mj% 2 +honeysuckle 'hVnIsVkl L@% 4 +honing 'h@UnIN Hb% 26A +honk h0Nk I0%,K6% 1 +honked h0Nkt Ic%,Id% 1 +honking 'h0NkIN Ib% 2 +honks h0Nks Ia%,Kj% 1 +honorarium ,0n@'re@rI@m K6% 5 +honorariums ,0n@'re@rI@mz Kj$ 5 +honorary '0n@r@rI OA% 4 +honorific ,0n@'rIfIk K6$,OA% 4 +honorifics ,0n@'rIfIks Kj$ 4 +honour '0n@R H0%,M6% 26A +honourable '0n@r@bl OA% 4 +honourably '0n@r@blI Pu% 4 +honoured '0n@d Hc%,Hd% 26A +honouring '0n@rIN Hb% 36A +honours '0n@z Ha%,Mj% 26A +hooch hutS L@% 1 +hood hUd H0%,K6% 1 +hooded 'hUdId Hc%,Hd% 2 +hooding 'hUdIN Hb% 2 +hoodlum 'hudl@m K6% 2 +hoodlums 'hudl@mz Kj% 2 +hoodoo 'hudu H0$,K6% 2 +hoodooed 'hudud Hc$,Hd$ 2 +hoodooing 'huduIN Hb$ 3 +hoodoos 'huduz Ha$,Kj$ 2 +hoods hUdz Ha%,Kj% 1 +hoodwink 'hUdwINk H0% 26A,14 +hoodwinked 'hUdwINkt Hc%,Hd% 26A,14 +hoodwinking 'hUdwINkIN Hb% 36A,14 +hoodwinks 'hUdwINks Ha% 26A,14 +hooey 'huI L@$ 2 +hoof huf K6% 1 +hoofs hufs Kj% 1 +hook hUk J0%,K6% 12C,6A,15A,15B +hook-nosed 'hUk-n@Uzd OA% 2 +hook-up 'hUk-Vp K6$ 2 +hook-ups 'hUk-Vps Kj$ 2 +hookah 'hUk@ K6$ 2 +hookahs 'hUk@z Kj$ 2 +hooked hUkt Jc%,Jd%,OA% 12C,6A,15A,15B +hooker 'hUk@R K6% 2 +hookers 'hUk@z Kj% 2 +hooking 'hUkIN Jb% 22C,6A,15A,15B +hooks hUks Ja%,Kj% 12C,6A,15A,15B +hookworm 'hUkw3m M6% 2 +hookworms 'hUkw3mz Mj% 2 +hooky 'hUkI Ki% 2 +hooligan 'hulIg@n K6% 3 +hooliganism 'hulIg@nIz@m L@% 5 +hooligans 'hulIg@nz Kj% 3 +hoop hup H0$,K6% 1 +hoop-la 'hup-lA L@% 2 +hooped hupt Hc$,Hd$ 1 +hooping 'hupIN Hb$ 2 +hoops hups Ha$,Kj% 1 +hooray hu'reI W-% 2 +hoot hut J0%,K6% 12A,2C,6A,15A,15B +hooted 'hutId Jc%,Jd% 22A,2C,6A,15A,15B +hooter 'hut@R K6% 2 +hooters 'hut@z Kj% 2 +hooting 'hutIN Jb% 22A,2C,6A,15A,15B +hoots huts Ja%,Kj% 12A,2C,6A,15A,15B +hooves huvz Kj% 1 +hop h0p J4%,K6% 12A,2C,6A +hop-field 'h0p-fild K6% 2 +hop-fields 'h0p-fildz Kj% 2 +hop-garden 'h0p-gAdn K6% 3 +hop-gardens 'h0p-gAdnz Kj% 3 +hop-picker 'h0p-pIk@R K6% 3 +hop-pickers 'h0p-pIk@z Kj% 3 +hop-pole 'h0p-p@Ul K6% 2 +hop-poles 'h0p-p@Ulz Kj% 2 +hope h@Up J2%,M6% 12A,3A,7A,9 +hoped h@Upt Jc%,Jd% 12A,3A,7A,9 +hopeful 'h@Upf@l OA% 2 +hopefully 'h@Upf@lI Pu% 3 +hopefulness 'h@Upfln@s L@% 3 +hopeless 'h@UplIs OA% 2 +hopelessly 'h@UplIslI Pu% 3 +hopelessness 'h@UplIsn@s L@% 3 +hopes h@Ups Ja%,Mj% 12A,3A,7A,9 +hoping 'h@UpIN Jb% 22A,3A,7A,9 +hopped h0pt Jc%,Jd% 12A,2C,6A +hopped-up h0pt-'Vp OA$ 2 +hopper 'h0p@R K6% 2 +hoppers 'h0p@z Kj% 2 +hopping 'h0pIN Jb% 22A,2C,6A +hops h0ps Ja%,Kj% 12A,2C,6A +hopscotch 'h0psk0tS L@% 2 +horde hOd K6% 1 +hordes hOdz Kj% 1 +horizon h@'raIzn K6% 3 +horizons h@'raIznz Kj% 3 +horizontal ,h0rI'z0ntl OA% 4 +horizontally ,h0rI'z0nt@lI Pu% 5 +hormone 'hOm@Un K6% 2 +hormones 'hOm@Unz Kj% 2 +horn hOn I0%,M6% 1 +horn-rimmed 'hOn-rImd OA% 2 +hornbeam 'hOnbim K6% 2 +hornbeams 'hOnbimz Kj% 2 +hornbill 'hOnbIl K6% 2 +hornbills 'hOnbIlz Kj% 2 +horned hOnd Ic%,Id%,OA% 1 +hornet 'hOnIt K6% 2 +hornets 'hOnIts Kj% 2 +hornier 'hOnI@R Or$ 3 +horniest 'hOnIIst Os$ 3 +horning 'hOnIN Ib$ 2 +hornless 'hOnl@s OA% 2 +hornlike 'hOnlaIk OA$ 2 +hornpipe 'hOnpaIp K6% 2 +hornpipes 'hOnpaIps Kj% 2 +horns hOnz Ia$,Mj% 1 +horny 'hOnI OD% 2 +horology h0'r0l@dZI L@$ 4 +horoscope 'h0r@sk@Up K6% 3 +horoscopes 'h0r@sk@Ups Kj% 3 +horrible 'h0r@bl OA% 3 +horribly 'h0r@blI Pu% 3 +horrid 'h0rId OA% 2 +horridly 'h0rIdlI Pu% 3 +horridness 'h0rIdn@s L@% 3 +horrific h@'rIfIk OA% 3 +horrified 'h0rIfaId Hc%,Hd% 36A +horrifies 'h0rIfaIz Ha% 36A +horrify 'h0rIfaI H3% 36A +horrifying 'h0rIfaIIN Hb% 46A +horrifyingly 'h0rIfaIINlI Pu% 5 +horror 'h0r@R M6% 2 +horror-stricken 'h0r@-strIk@n OA% 4 +horror-struck 'h0r@-strVk OA% 3 +horrors 'h0r@z Mj% 2 +hors d'oeuvres ,O 'd3v Kj% 2 +hors de combat ,O d@ 'k0mbA Op% 4 +horse hOs K6% 1 +horse-chestnut hOs-'tSesnVt K6% 3 +horse-chestnuts hOs-'tSesnVts Kj% 3 +horse-laugh 'hOs-lAf K6$ 2 +horse-laughs 'hOs-lAfs Kj$ 2 +horse-pond 'hOs-p0nd K6$ 2 +horse-ponds 'hOs-p0ndz Kj$ 2 +horse-sense 'hOs-sens L@% 2 +horseback 'hOsb&k L@% 2 +horsebox 'hOsb0ks K7% 2 +horseboxes 'hOsb0ksIz Kj% 3 +horseflesh 'hOsfleS L@% 2 +horseflies 'hOsflaIz Kj% 2 +horsefly 'hOsflaI K8% 2 +horsehair 'hOshe@R L@% 2 +horseman 'hOsm@n Ki% 2 +horsemanship 'hOsm@nSIp L@% 3 +horsemeat 'hOsmit L@% 2 +horsemen 'hOsm@n Kj% 2 +horseplay 'hOspleI L@% 2 +horsepower 'hOspaU@R M9% 3 +horserace 'hOsreIs K6% 2 +horseraces 'hOsreIsIz Kj% 3 +horseracing 'hOsreIsIN L@% 3 +horseradish 'hOsr&dIS L@% 3 +horses 'hOsIz Kj% 2 +horseshoe 'hOs+Su K6% 2 +horseshoes 'hOs+Suz Kj% 2 +horsewhip 'hOswIp H4%,K6% 2 +horsewhipped 'hOswIpt Hc%,Hd% 2 +horsewhipping 'hOswIpIN Hb$ 3 +horsewhips 'hOswIps Ha$,Kj$ 2 +horsewoman 'hOswUm@n Ki% 3 +horsewomen 'hOswImIn Kj% 3 +horsy 'hOsI OA% 2 +hortative 'hOt@tIv OA$ 3 +horticultural ,hOtI'kVltS@r@l OA% 5 +horticulture 'hOtIkVltS@R L@% 4 +horticulturist ,hOtI'kVltS@rIst K6$ 5 +horticulturists ,hOtI'kVltS@rIsts Kj$ 5 +hosanna h@U'z&n@ K6$,W-$ 3 +hosannas h@U'z&n@z Kj$ 3 +hose h@Uz H2%,M6% 16A,15B +hosed h@Uzd Hc%,Hd% 16A,15B +hosepipe 'h@UzpaIp K6% 2 +hosepipes 'h@UzpaIps Kj% 2 +hoses 'h@UzIz Ha%,Mj% 26A,15B +hosier 'h@UzI@R K6$ 3 +hosiers 'h@UzI@z Kj$ 3 +hosiery 'h@UzI@rI L@% 4 +hosing 'h@UzIN Hb% 26A,15B +hospice 'h0spIs K6% 2 +hospices 'h0spIsIz Kj% 3 +hospitable h0'spIt@bl OA% 4 +hospitably h0'spIt@blI Pu% 4 +hospital 'h0spItl K6% 3 +hospitality ,h0spI't&lItI L@% 5 +hospitalization ,h0spIt@laI'zeISn M6% 6 +hospitalizations ,h0spIt@laI'zeISnz Mj% 6 +hospitalize 'h0spIt@laIz H2$ 4 +hospitalized 'h0spIt@laIzd Hc$,Hd% 4 +hospitalizes 'h0spIt@laIzIz Ha$ 5 +hospitalizing 'h0spIt@laIzIN Hb$ 5 +hospitals 'h0spItlz Kj% 3 +host h@Ust H0%,K6% 16A +hostage 'h0stIdZ K6% 2 +hostages 'h0stIdZIz Kj% 3 +hosted 'h@UstId Hc%,Hd% 26A +hostel 'h0stl K6% 2 +hosteller 'h0st@l@R K6% 3 +hostellers 'h0st@l@z Kj% 3 +hostelries 'h0stlrIz Kj% 3 +hostelry 'h0stlrI K8% 3 +hostels 'h0stlz Kj% 2 +hostess 'h@UstIs K7% 2 +hostesses 'h@UstIsIz Kj% 3 +hostile 'h0staIl OA% 2 +hostilely 'h0staIlI Pu$ 3 +hostilities h0'stIlItIz Mj% 4 +hostility h0'stIlItI M8% 4 +hosting 'h@UstIN Hb% 26A +hosts h@Usts Ha%,Kj% 16A +hot h0t J4$,OE% 12C,15B +hot-blooded h0t-'blVdId OA% 3 +hot-headed h0t-'hedId OA% 3 +hot-tempered h0t-'temp@d OA% 3 +hot-water-bottle h0t-'wOt@-b0tl K6% 5 +hot-water-bottles h0t-'wOt@-b0tlz Kj% 5 +hotbed 'h0tbed K6% 2 +hotbeds 'h0tbedz Kj% 2 +hotchpotch 'h0tSp0tS K7% 2 +hotchpotches 'h0tSp0tSIz Kj$ 3 +hotel h@U'tel K6% 2 +hotelier h@U'telI@R K6% 4 +hoteliers h@U'telI@z Kj% 4 +hotels h@U'telz Kj% 2 +hotfoot 'h0tfUt I0%,Pu% 2 +hotfooted 'h0tfUtId Ic%,Id% 3 +hotfooting 'h0tfUtIN Ib$ 3 +hotfoots 'h0tfUts Ia$ 2 +hothead 'h0thed K6% 2 +hotheads 'h0thedz Kj% 2 +hothouse 'h0thaUs K6% 2 +hothouses 'h0thaUzIz Kj% 3 +hotly 'h0tlI Pu% 2 +hotplate 'h0tpleIt K6% 2 +hotplates 'h0tpleIts Kj% 2 +hots h0ts Ja$ 12C,15B +hotted 'h0tId Jc$,Jd$ 22C,15B +hotter 'h0t@R Or% 2 +hottest 'h0tIst Os% 2 +hotting 'h0tIN Jb% 22C,15B +hound haUnd H0%,K6% 16A +hounded 'haUndId Hc%,Hd% 26A +hounding 'haUndIN Hb% 26A +hounds haUndz Ha%,Kj% 16A +hour 'aU@R K6% 2 +hourglass 'aU@glAs K7% 3 +hourglasses 'aU@glAsIz Kj% 4 +houri 'hU@rI K6$ 2 +houris 'hU@rIz Kj$ 2 +hourly 'aU@lI OA%,Pu% 3 +hours 'aU@z Kj% 2 +house haUs K6* 1 +house haUz H2% 16A +house-parties 'haUs-pAtIz Kj% 3 +house-party 'haUs-pAtI K8% 3 +house-warming 'haUs-wOmIN K6% 3 +house-warmings 'haUs-wOmINz Kj% 3 +houseboat 'haUsb@Ut K6% 2 +houseboats 'haUsb@Uts Kj% 2 +housebound 'haUsbaUnd OA% 2 +housebreaker 'haUsbreIk@R K6$ 3 +housebreakers 'haUsbreIk@z Kj$ 3 +housecoat 'haUsk@Ut K6% 2 +housecoats 'haUsk@Uts Kj% 2 +housecraft 'haUskrAft L@% 2 +housed haUzd Hc%,Hd% 16A +housedog 'haUsd0g K6% 2 +housedogs 'haUsd0gz Kj% 2 +housefather 'haUsfAD@R K6% 3 +housefathers 'haUsfAD@z Kj% 3 +houseflies 'haUsflaIz Kj% 2 +housefly 'haUsflaI K8% 2 +houseful 'haUsfUl K6% 2 +housefuls 'haUsfUlz Kj% 2 +household 'haUsh@Uld K6% 2 +householder 'haUsh@Uld@R K6% 3 +householders 'haUsh@Uld@z Kj% 3 +households 'haUsh@Uldz Kj% 2 +housekeeper 'haUskip@R K6% 3 +housekeepers 'haUskip@z Kj% 3 +houselights 'haUslaIts Kj% 2 +housemaid 'haUsmeId K6% 2 +housemaids 'haUsmeIdz Kj% 2 +houseman 'haUsm@n Ki% 2 +housemaster 'haUsmAst@R K6% 3 +housemasters 'haUsmAst@z Kj% 3 +housemen 'haUsm@n Kj% 2 +housemother 'haUsmVD@R K6% 3 +housemothers 'haUsmVD@z Kj% 3 +houseproud 'haUspraUd OA% 2 +houseroom 'haUsrum L@% 2 +houses 'haUzIz Ha%,Kj% 26A +housetop 'haUst0p K6% 2 +housetops 'haUst0ps Kj% 2 +housetrained 'haUstreInd OA% 2 +housewife 'haUswaIf Ki% 2 +housewifely 'haUswaIflI OA$ 3 +housewifery 'haUswIfrI L@% 3 +housewives 'haUswaIvz Kj% 2 +housework 'haUsw3k L@% 2 +housewrecker 'haUsrek@R K6$ 3 +housewreckers 'haUsrek@z Kj$ 3 +housing 'haUzIN Hb%,L@% 26A +hove h@Uv Jc$,Jd$ 12A,2C,3A,6A,15A,15B +hovel 'h0vl K6% 2 +hovels 'h0vlz Kj% 2 +hover 'h0v@R I0% 22A,2C +hovercraft 'h0v@krAft K9% 3 +hovered 'h0v@d Ic%,Id% 22A,2C +hovering 'h0v@rIN Ib% 32A,2C +hovers 'h0v@z Ia% 22A,2C +how haU Pu* 1 +how's haUz Gh% 1 +how-d'ye-do ,haU-djU-'du K6$ 3 +how-d'ye-dos ,haU-djU-'duz Kj$ 3 +howbeit haU'biIt V-$ 3 +howdah 'haUd@ K6$ 2 +howdahs 'haUd@z Kj$ 2 +however haU'ev@R Pu* 3 +howitzer 'haUIts@R K6% 3 +howitzers 'haUIts@z Kj% 3 +howl haUl J0%,K6% 12A,2C,6A,15A,15B +howled haUld Jc%,Jd% 12A,2C,6A,15A,15B +howler 'haUl@R K6% 2 +howlers 'haUl@z Kj% 2 +howling 'haUlIN Jb%,OA% 22A,2C,6A,15A,15B +howls haUlz Ja%,Kj% 12A,2C,6A,15A,15B +hoyden 'hoIdn K6$ 2 +hoydenish 'hoIdnIS OA$ 3 +hoydens 'hoIdnz Kj$ 2 +hub hVb K6% 1 +hubbies 'hVbIz Kj% 2 +hubble-bubble 'hVbl-bVbl K6$ 4 +hubble-bubbles 'hVbl-bVblz Kj$ 4 +hubbub 'hVbVb L@% 2 +hubby 'hVbI K8% 2 +hubris 'hjubrIs L@$ 2 +hubs hVbz Kj% 1 +huckaback 'hVk@b&k L@$ 3 +huckleberries 'hVklb@rIz Kj$ 4 +huckleberry 'hVklb@rI K8$ 4 +huckster 'hVkst@R K6$ 2 +hucksters 'hVkst@z Kj$ 2 +huddle 'hVdl J2%,K6% 22C,15A,15B +huddled 'hVdld Jc%,Jd% 22C,15A,15B +huddles 'hVdlz Ja%,Kj% 22C,15A,15B +huddling 'hVdlIN Jb% 22C,15A,15B +hue hju K6% 1 +hued hjud Ot% 1 +hues hjuz Kj% 1 +huff hVf I0%,K6% 1 +huffed hVft Ic%,Id% 1 +huffier 'hVfI@R Or$ 3 +huffiest 'hVfIIst Os$ 3 +huffily 'hVfIlI Pu% 3 +huffing 'hVfIN Ib% 2 +huffish 'hVfIS OA$ 2 +huffs hVfs Ia%,Kj% 1 +huffy 'hVfI OD% 2 +hug hVg H4%,K6% 16A +huge hjudZ OA% 1 +hugely 'hjudZlI Pu% 2 +hugged hVgd Hc%,Hd% 16A +hugger-mugger 'hVg@-mVg@R Ki%,OA%,Pu% 4 +hugging 'hVgIN Hb% 26A +hugs hVgz Ha%,Kj% 16A +hula 'hul@ K6$ 2 +hulas 'hul@z Kj$ 2 +hulk hVlk K6% 1 +hulking 'hVlkIN OA% 2 +hulks hVlks Kj% 1 +hull hVl H0$,K6% 1 +hullabaloo ,hVl@b@'lu K6% 4 +hullabaloos ,hVl@b@'luz Kj% 4 +hulled hVld Hc$,Hd$ 1 +hulling 'hVlIN Hb$ 2 +hullo h@'l@U W-% 2 +hulls hVlz Ha$,Kj% 1 +hum hVm J4%,K6% 12A,2C,6A +human 'hjum@n K6$,OA% 2 +humane hju'meIn OA% 2 +humanely hju'meInlI Pu% 3 +humanism 'hjum@nIz@m L@% 4 +humanist 'hjum@nIst K6% 3 +humanists 'hjum@nIsts Kj% 3 +humanitarian hju,m&nI'te@rI@n K6%,OA% 6 +humanitarianism hju,m&nI'te@rI@nIz@m L@% 8 +humanitarians hju,m&nI'te@rI@nz Kj% 6 +humanities hju'm&nItIz Mj% 4 +humanity hju'm&nItI M8% 4 +humanize 'hjum@naIz J2% 32A,6A +humanized 'hjum@naIzd Jc%,Jd% 32A,6A +humanizes 'hjum@naIzIz Ja% 42A,6A +humanizing 'hjum@naIzIN Jb% 42A,6A +humankind ,hjum@n'kaInd L@% 3 +humanly 'hjum@nlI Pu% 3 +humans 'hjum@nz Kj% 2 +humble 'hVmbl H2%,OB% 26A +humbled 'hVmbld Hc%,Hd% 26A +humbler 'hVmbl@R Or% 2 +humbles 'hVmblz Ha% 26A +humblest 'hVmblIst Os% 2 +humbling 'hVmblIN Hb% 26A +humbly 'hVmblI Pu% 2 +humbug 'hVmbVg H4$,M6%,W-% 26A,14 +humbugged 'hVmbVgd Hc$,Hd$ 26A,14 +humbugging 'hVmbVgIN Hb$ 36A,14 +humbugs 'hVmbVgz Ha$,Mj% 26A,14 +humdinger ,hVm'dIN@R K6% 3 +humdingers ,hVm'dIN@z Kj$ 3 +humdrum 'hVmdrVm OA% 2 +humerus 'hjum@r@s K7% 3 +humeruses 'hjum@r@sIz Kj$ 4 +humid 'hjumId OA% 2 +humidified hju'mIdIfaId Hc$,Hd$ 4 +humidifies hju'mIdIfaIz Ha$ 4 +humidify hju'mIdIfaI H3$ 4 +humidifying hju'mIdIfaIIN Hb$ 5 +humidity hju'mIdItI L@% 4 +humiliate hju'mIlIeIt H2% 46A +humiliated hju'mIlIeItId Hc%,Hd% 56A +humiliates hju'mIlIeIts Ha% 46A +humiliating hju'mIlIeItIN Hb% 56A +humiliation hju,mIlI'eISn M6% 5 +humiliations hju,mIlI'eISnz Mj% 5 +humility hju'mIlItI L@% 4 +hummed hVmd Jc%,Jd% 12A,2C,6A +humming 'hVmIN Jb% 22A,2C,6A +humming-top 'hVmIN-t0p K6$ 3 +humming-tops 'hVmIN-t0ps Kj$ 3 +hummingbird 'hVmINb3d K6% 3 +hummingbirds 'hVmINb3dz Kj% 3 +hummock 'hVm@k K6% 2 +hummocks 'hVm@ks Kj% 2 +humorist 'hjum@rIst K6% 3 +humorists 'hjum@rIsts Kj% 3 +humorous 'hjum@r@s OA% 3 +humorously 'hjum@r@slI Pu% 4 +humour 'hjum@R H0%,M6% 26A +humoured 'hjum@d Hc%,Hd% 26A +humouring 'hjum@rIN Hb% 36A +humourist 'hjum@rIst K6% 3 +humourists 'hjum@rIsts Kj% 3 +humourless 'hjum@lIs OA% 3 +humours 'hjum@z Ha%,Mj% 26A +hump hVmp H0%,K6% 16A,15B +humpback 'hVmp+b&k K6% 2 +humpbacked 'hVmp+b&kt OA% 2 +humpbacks 'hVmp+b&ks Kj% 2 +humped hVmpt Hc%,Hd% 16A,15B +humph hVmpf W-$ 1 +humping 'hVmpIN Hb% 26A,15B +humps hVmps Ha%,Kj% 16A,15B +hums hVmz Ja%,Kj% 12A,2C,6A +humus 'hjum@s L@% 2 +hunch hVntS H1%,K7% 16A,15B +hunchback 'hVntSb&k K6%,OA% 2 +hunchbacked 'hVntSb&kt OA% 2 +hunchbacks 'hVntSb&ks Kj% 2 +hunched hVntSt Hc%,Hd% 16A,15B +hunches 'hVntSIz Ha%,Kj% 26A,15B +hunching 'hVntSIN Hb% 26A,15B +hundred 'hVndr@d K6%,OA% 2 +hundredfold 'hVndr@df@Uld Pu% 3 +hundreds 'hVndr@dz Kj% 2 +hundredth 'hVndr@dT K6%,OA% 2 +hundredths 'hVndr@dTs Kj% 2 +hundredweight 'hVndr@dweIt K6% 3 +hundredweights 'hVndr@dweIts Kj% 3 +hung hVN Jc%,Jd% 12A,2B,2C,3A,6A,15A,15B +hunger 'hVNg@R I0%,L@% 22A,3A,4C +hunger-march 'hVNg@-mAtS K7% 3 +hunger-marcher 'hVNg@-,mAtS@R K6% 4 +hunger-marchers 'hVNg@-,mAtS@z Kj% 4 +hunger-marches 'hVNg@-mAtSIz Kj% 4 +hungered 'hVNg@d Ic%,Id% 22A,3A,4C +hungering 'hVNg@rIN Ib% 32A,3A,4C +hungers 'hVNg@z Ia% 22A,3A,4C +hungrier 'hVNgrI@R Or% 3 +hungriest 'hVNgrIIst Os% 3 +hungrily 'hVNgr@lI Pu% 3 +hungry 'hVNgrI OD% 2 +hunk hVNk K6% 1 +hunkers 'hVNk@z Kj$ 2 +hunks hVNks Kj% 1 +hunt hVnt J0%,K6% 12A,2C,3A,6A,15A,15B +hunted 'hVntId Jc%,Jd% 22A,2C,3A,6A,15A,15B +hunter 'hVnt@R K6% 2 +hunters 'hVnt@z Kj% 2 +hunting 'hVntIN Jb%,L@% 22A,2C,3A,6A,15A,15B +hunting-crop 'hVntIN-kr0p K6% 3 +hunting-crops 'hVntIN-kr0ps Kj% 3 +huntress 'hVntrIs K7% 2 +huntresses 'hVntrIsIz Kj$ 3 +hunts hVnts Ja%,Kj% 12A,2C,3A,6A,15A,15B +huntsman 'hVntsm@n Ki% 2 +huntsmen 'hVntsm@n Kj% 2 +hurdle 'h3dl J2%,K6% 22A,15B +hurdled 'h3dld Jc%,Jd% 22A,15B +hurdler 'h3dl@R K6% 2 +hurdlers 'h3dl@z Kj% 2 +hurdles 'h3dlz Ja%,Kj% 22A,15B +hurdling 'h3dlIN Jb% 22A,15B +hurdy-gurdies 'h3dI-g3dIz Kj$ 4 +hurdy-gurdy 'h3dI-g3dI K8% 4 +hurl h3l H0%,K6$ 16A,15A,15B +hurled h3ld Hc%,Hd% 16A,15A,15B +hurling 'h3lIN Hb%,L@% 26A,15A,15B +hurls h3lz Ha%,Kj$ 16A,15A,15B +hurly-burly 'h3lI-b3lI L@% 4 +hurrah hU'rA I0%,W-% 2 +hurrahed hU'rAd Ic%,Id% 2 +hurrahing hU'rAIN Ib$ 3 +hurrahs hU'rAz Ia$ 2 +hurray hU'reI W-% 2 +hurricane 'hVrIk@n K6% 3 +hurricanes 'hVrIk@nz Kj% 3 +hurried 'hVrId Jc%,Jd%,OA% 22A,2C,6A,15A,15B +hurriedly 'hVrIdlI Pu% 3 +hurries 'hVrIz Ja%,Mj% 22A,2C,6A,15A,15B +hurry 'hVrI J3%,M8% 22A,2C,6A,15A,15B +hurrying 'hVrIIN Jb% 32A,2C,6A,15A,15B +hurt h3t J5%,Jc%,Jd%,L@% 12A,6A,6B +hurtful 'h3tf@l OA% 2 +hurting 'h3tIN Jb% 22A,6A,6B +hurtle 'h3tl I2% 22C +hurtled 'h3tld Ic%,Id% 22C +hurtles 'h3tlz Ia% 22C +hurtling 'h3tlIN Ib% 22C +hurts h3ts Ja% 12A,6A,6B +husband 'hVzb@nd H0%,K6% 21,6A +husbanded 'hVzb@ndId Hc%,Hd% 31,6A +husbanding 'hVzb@ndIN Hb% 31,6A +husbandman 'hVzb@ndm@n Ki% 3 +husbandmen 'hVzb@ndm@n Kj% 3 +husbandry 'hVzb@ndrI L@% 3 +husbands 'hVzb@ndz Ha%,Kj% 21,6A +hush hVS J1%,K7% 12A,15A,15B +hush-hush 'hVS-hVS OA% 2 +hush-money 'hVS-mVnI L@% 3 +hushed hVSt Jc%,Jd% 12A,15A,15B +hushes 'hVSIz Ja%,Kj% 22A,15A,15B +hushing 'hVSIN Jb% 22A,15A,15B +husk hVsk H0$,K6% 1 +husked hVskt Hc$,Hd$ 1 +huskier 'hVskI@R Or% 3 +huskies 'hVskIz Kj% 2 +huskiest 'hVskIIst Os% 3 +huskily 'hVskIlI Pu% 3 +huskiness 'hVskIn@s L@% 3 +husking 'hVskIN Hb$ 2 +husks hVsks Ha$,Kj% 1 +husky 'hVskI K8%,OD% 2 +hussar hU'zAR K6$ 2 +hussars hU'zAz Kj$ 2 +hussies 'hVsIz Kj% 2 +hussy 'hVsI K8% 2 +hustings 'hVstINz Kj% 2 +hustle 'hVsl J2%,Ki% 22A,2C,6A,15A,15B +hustled 'hVsld Jc%,Jd% 22A,2C,6A,15A,15B +hustler 'hVsl@R K6% 2 +hustlers 'hVsl@z Kj% 2 +hustles 'hVslz Ja% 22A,2C,6A,15A,15B +hustling 'hVslIN Jb% 22A,2C,6A,15A,15B +hut hVt K6% 1 +hutch hVtS K7% 1 +hutches 'hVtSIz Kj% 2 +hutment 'hVtm@nt K6$ 2 +hutments 'hVtm@nts Kj$ 2 +huts hVts Kj% 1 +hutted 'hVtId OA$ 2 +hyacinth 'haI@sInT K6% 3 +hyacinths 'haI@sInTs Kj% 3 +hyaena haI'in@ K6$ 3 +hyaenas haI'in@z Kj$ 3 +hybrid 'haIbrId K6%,OA% 2 +hybridize 'haIbrIdaIz J2$ 32A,6A +hybridized 'haIbrIdaIzd Jc$,Jd$ 32A,6A +hybridizes 'haIbrIdaIzIz Ja$ 42A,6A +hybridizing 'haIbrIdaIzIN Jb$ 42A,6A +hybrids 'haIbrIdz Kj% 2 +hydra 'haIdr@ K6$ 2 +hydrangea haI'dreIndZ@ K6% 3 +hydrangeas haI'dreIndZ@z Kj% 3 +hydrant 'haIdr@nt K6% 2 +hydrants 'haIdr@nts Kj% 2 +hydras 'haIdr@z Kj% 2 +hydrate 'haIdreIt J2$,K6$ 2 +hydrated 'haIdreItId Jc$,Jd$ 3 +hydrates 'haIdreIts Ja$,Kj$ 2 +hydrating 'haIdreItIN Jb$ 3 +hydraulic haI'drOlIk OA% 3 +hydraulicly haI'drOlIklI Pu% 4 +hydraulics haI'drOlIks Lk% 3 +hydrocarbon ,haIdr@'kAb@n K6% 4 +hydrocarbons ,haIdr@'kAb@nz Kj% 4 +hydrochloric ,haIdr@'kl0rIk OA% 4 +hydroelectric ,haIdr@UI'lektrIk OA% 5 +hydrofoil 'haIdr@foIl K6% 3 +hydrofoils 'haIdr@foIlz Kj% 3 +hydrogen 'haIdr@dZ@n L@% 3 +hydropathic ,haIdr@'p&TIk OA$ 4 +hydropathy haI'dr0p@TI L@$ 4 +hydrophobia ,haIdr@'f@UbI@ L@% 5 +hydroplane 'haIdr@pleIn K6% 3 +hydroplanes 'haIdr@pleInz Kj% 3 +hydroponics ,haIdr@'p0nIks Lk$ 4 +hyena haI'in@ K6% 3 +hyenas haI'in@z Kj% 3 +hygiene 'haIdZin L@% 2 +hygienic haI'dZinIk OA% 3 +hygienically haI'dZinIklI Pu% 4 +hying 'haIIN Ib$ 2 +hymen 'haIm@n K6$ 2 +hymens 'haIm@nz Kj$ 2 +hymn hIm H0%,K6% 1 +hymnal 'hImn@l K6% 2 +hymnals 'hImn@lz Kj% 2 +hymned hImd Hc%,Hd% 1 +hymning 'hImIN Hb% 2 +hymns hImz Ha%,Kj% 1 +hyperbola haI'p3b@l@ K6$ 4 +hyperbolas haI'p3b@l@z Kj$ 4 +hyperbole haI'p3b@lI M6% 4 +hyperboles haI'p3b@lIz Mj% 4 +hyperbolic ,haIp@'b0lIk OA$ 4 +hypercritical ,haIp@'krItIkl OA% 5 +hypermarket 'haIp@mAkIt K6% 4 +hypermarkets 'haIp@mAkIts Kj% 4 +hypersensitive ,haIp@'sensItIv OA% 5 +hyphen 'haIfn H0%,K6% 2 +hyphenate 'haIf@neIt H2% 3 +hyphenated 'haIf@neItId Hc%,Hd% 4 +hyphenates 'haIf@neIts Ha% 3 +hyphenating 'haIf@neItIN Hb% 4 +hyphened 'haIfnd Hc$,Hd% 2 +hyphening 'haIfnIN Hb$ 3 +hyphens 'haIfnz Ha$,Kj% 2 +hypnoses 'hIpn@Usiz Kj% 3 +hypnosis hIp'n@UsIs Mi% 3 +hypnotic hIp'n0tIk OA% 3 +hypnotism 'hIpn@tIz@m L@% 4 +hypnotist 'hIpn@tIst K6% 3 +hypnotists 'hIpn@tIsts Kj% 3 +hypnotize 'hIpn@taIz H2% 36A +hypnotized 'hIpn@taIzd Hc%,Hd% 36A +hypnotizes 'hIpn@taIzIz Ha% 46A +hypnotizing 'hIpn@taIzIN Hb% 46A +hypo 'haIp@U L@$ 2 +hypochondria ,haIp@'k0ndrI@ M6% 5 +hypochondriac ,haIp@'k0ndrI&k K6%,OA% 5 +hypochondriacal ,haIp@k@n'draI@kl OA% 6 +hypochondriacs ,haIp@'k0ndrI&ks Kj% 5 +hypochondrias ,haIp@'k0ndrI@z Mj$ 5 +hypocrisies hI'p0kr@sIz Mj$ 4 +hypocrisy hI'p0kr@sI M8% 4 +hypocrite 'hIp@krIt K6% 3 +hypocrites 'hIp@krIts Kj% 3 +hypocritical ,hIp@'krItIkl OA% 5 +hypocritically ,hIp@'krItIklI Pu% 5 +hypodermic ,haIp@'d3mIk K6$,OA% 4 +hypodermics ,haIp@'d3mIks Kj$ 4 +hypotenuse ,haI'p0t@njuz K6% 4 +hypotenuses ,haI'p0t@njuzIz Kj$ 5 +hypothecate haI'p0TIkeIt H2$ 4 +hypothecated haI'p0TIkeItId Hc$,Hd$ 5 +hypothecates haI'p0TIkeIts Ha$ 4 +hypothecating haI'p0TIkeItIN Hb$ 5 +hypotheses haI'p0TIsiz Kj% 4 +hypothesis haI'p0T@sIs Ki% 4 +hypothetical ,haIp@'TetIkl OA% 5 +hyssop 'hIs@p L@$ 2 +hysteria hI'stI@rI@ L@% 4 +hysterical hI'sterIkl OA% 4 +hysterically hI'sterIklI Pu% 4 +hysterics hI'sterIks Lk% 3 +i aI Ki$ 1 +i's aIz Kj$ 1 +iamb 'aI&m K6$ 2 +iambi aI'&mbaI Kj$ 3 +iambic aI'&mbIk OA$ 3 +iambics aI'&mbIks Lk$ 3 +iambs 'aI&mz Kj$ 2 +iambus aI'&mb@s K7$ 3 +iambuses aI'&mb@sIz Kj$ 4 +ibex 'aIbeks K7$ 2 +ibexes 'aIbeksIz Kj$ 3 +ibid I'bId Y~% 2 +ibidem 'IbIdem Pu$ 3 +ibis 'aIbIs K7$ 2 +ibises 'aIbIsIz Kj$ 3 +ice aIs J2%,M6% 12C,6A,15B +ice-axe 'aIs-&ks K6% 2 +ice-axes 'aIs-&ksIz Kj% 3 +ice-cream aIs-'krim M6% 2 +ice-creams aIs-'krimz Mj% 2 +ice-lollies aIs-'l0lIz Kj% 3 +ice-lolly aIs-'l0lI K8% 3 +ice-show 'aIs-S@U K6% 2 +ice-shows 'aIs-S@Uz Kj% 2 +ice-skate 'aIs-skeIt I2%,K6% 2 +ice-skated 'aIs-skeItId Ic%,Id% 3 +ice-skates 'aIs-skeIts Ia%,Kj% 2 +ice-skating 'aIs-skeItIN Ib%,L@% 3 +ice-tray 'aIs-treI K6% 2 +ice-trays 'aIs-treIz Kj% 2 +iceberg 'aIsb3g K6% 2 +icebergs 'aIsb3gz Kj% 2 +iceboat 'aIsb@Ut K6$ 2 +iceboats 'aIsb@Uts Kj$ 2 +icebound 'aIsbaUnd OA% 2 +icebox 'aIsb0ks K7% 2 +iceboxes 'aIsb0ksIz Kj% 3 +icebreaker 'aIsbreIk@R K6% 3 +icebreakers 'aIsbreIk@z Kj% 3 +icecap 'aIsk&p K6% 2 +icecaps 'aIsk&ps Kj% 2 +icecube 'aIskjub K6% 2 +icecubes 'aIskjubz Kj% 2 +iced aIst Jc%,Jd% 12C,6A,15B +icefall 'aIsfOl K6$ 2 +icefalls 'aIsfOlz Kj$ 2 +icefield 'aIsfild K6% 2 +icefields 'aIsfildz Kj% 2 +icefloe 'aIsfl@U K6% 2 +icefloes 'aIsfl@Uz Kj% 2 +icefree 'aIsfri OA$ 2 +icehouse 'aIshaUs K6% 2 +icehouses 'aIshaUzIz Kj% 3 +iceman 'aIsm&n Ki$ 2 +icemen 'aIsmen Kj$ 2 +icepack 'aIsp&k K6% 2 +icepacks 'aIsp&ks Kj% 2 +icepick 'aIspIk K6% 2 +icepicks 'aIspIks Kj% 2 +icerink 'aIsrINk K6% 2 +icerinks 'aIsrINks Kj% 2 +ices 'aIsIz Ja%,Mj% 22C,6A,15B +ichneumon Ik'njum@n K6$ 3 +ichneumon-flies Ik'njum@n-flaIz Kj$ 4 +ichneumon-fly Ik'njum@n-flaI K8$ 4 +ichneumons Ik'njum@nz Kj$ 3 +icicle 'aIsIkl K6% 3 +icicles 'aIsIklz Kj% 3 +icier 'aIsI@R Or% 3 +iciest 'aIsIIst Os% 3 +icily 'aIsIlI Pu% 3 +icing 'aIsIN Jb%,L@% 22C,6A,15B +icon 'aIk0n K6% 2 +iconoclast aI'k0n@kl&st K6% 4 +iconoclasts aI'k0n@kl&sts Kj% 4 +icons 'aIk0nz Kj% 2 +icy 'aIsI OD% 2 +id Id Ki$ 1 +id est ,Id 'est Z-$ 2 +idea aI'dI@ K6* 3 +ideal aI'dI@l K6%,OA% 3 +idealism aI'dI@lIz@m L@% 5 +idealist aI'dI@lIst K6% 4 +idealistic aI,dI@'lIstIk OA% 5 +idealists aI'dI@lIsts Kj% 4 +idealization aI,dI@laI'zeISn K6% 6 +idealizations aI,dI@laI'zeISnz Kj% 6 +idealize aI'dI@laIz H2% 46A +idealized aI'dI@laIzd Hc%,Hd% 46A +idealizes aI'dI@laIzIz Ha% 56A +idealizing aI'dI@laIzIN Hb% 56A +ideally aI'dI@lI Pu% 4 +ideals aI'dI@lz Kj% 3 +ideas aI'dI@z Kj% 3 +idem 'Idem Y~$ 2 +identical aI'dentIkl OA% 4 +identically aI'dentIklI Pu% 4 +identifiable aI,dentI'faI@bl OA% 6 +identifiably aI,dentI'faI@blI Pu% 6 +identification aI,dentIfI'keISn L@% 6 +identified aI'dentIfaId Hc%,Hd% 43A,6A,14 +identifies aI'dentIfaIz Ha% 43A,6A,14 +identify aI'dentIfaI H3% 43A,6A,14 +identifying aI'dentIfaIIN Hb% 53A,6A,14 +identikit aI'dentIkIt K6% 4 +identikits aI'dentIkIts Kj$ 4 +identities aI'dentItIz Mj% 4 +identity aI'dentItI M8% 4 +ideogram 'IdI@gr&m K6$ 4 +ideograms 'IdI@gr&mz Kj$ 4 +ideograph 'IdI@grAf K6$ 4 +ideographic ,IdI@'gr&fIk OA$ 5 +ideographs 'IdI@grAfs Kj$ 4 +ideological ,aIdI@'l0dZIkl OA$ 6 +ideologically ,aIdI@'l0dZIklI Pu% 6 +ideologies ,aIdI'0l@dZIz Mj% 5 +ideology ,aIdI'0l@dZI M8% 5 +ides aIdz Kj$ 1 +idiocies 'IdI@sIz Mj% 4 +idiocy 'IdI@sI M8% 4 +idiolect 'IdI@lekt K6$ 4 +idiolects 'IdI@lekts Kj$ 4 +idiom 'IdI@m M6% 3 +idiomatic ,IdI@'m&tIk OA% 5 +idiomatically ,IdI@'m&tIklI Pu% 6 +idioms 'IdI@mz Mj% 3 +idiosyncrasies ,IdI@'sINkr@sIz Kj% 6 +idiosyncrasy ,IdI@'sINkr@sI K8% 6 +idiosyncratic ,IdI@sIN'kr&tIk OA% 6 +idiot 'IdI@t K6% 3 +idiotic ,IdI'0tIk OA% 4 +idiotically ,IdI'0tIklI Pu% 5 +idiots 'IdI@ts Kj% 3 +idle 'aIdl J2%,OB% 22A,2C,15B +idled 'aIdld Jc%,Jd% 22A,2C,15B +idleness 'aIdln@s L@% 3 +idler 'aIdl@R K6%,Or% 2 +idlers 'aIdl@z Kj% 2 +idles 'aIdlz Ja% 22A,2C,15B +idlest 'aIdlIst Os% 2 +idling 'aIdlIN Jb% 22A,2C,15B +idly 'aIdlI Pu% 2 +idol 'aIdl K6% 2 +idolater aI'd0l@t@R K6% 4 +idolaters aI'd0l@t@z Kj% 4 +idolatress aI'd0l@trIs K7$ 4 +idolatresses aI'd0l@trIsIz Kj$ 5 +idolatries aI'd0l@trIz Mj$ 4 +idolatrous aI'd0l@tr@s OA% 4 +idolatrously aI'd0l@tr@slI Pu% 5 +idolatry aI'd0l@trI M8% 4 +idolization ,aId@laI'zeISn K6% 5 +idolizations ,aId@laI'zeISnz Kj$ 5 +idolize 'aId@laIz H2% 36A +idolized 'aId@laIzd Hc%,Hd% 36A +idolizes 'aId@laIzIz Ha% 46A +idolizing 'aId@laIzIN Hb% 46A +idols 'aIdlz Kj% 2 +idyll 'IdIl K6% 2 +idyllic I'dIlIk OA% 3 +idylls 'IdIlz Kj% 2 +ie ,aI'i Y~% 2 +if If V-* 1 +igloo 'Iglu K6% 2 +igloos 'Igluz Kj% 2 +igneous 'IgnI@s OA$ 3 +ignes fatui ,Igniz 'f&tjUaI Kj$ 5 +ignis fatuus ,IgnIs 'f&tjU@s Ki$ 5 +ignite Ig'naIt J2% 22A,6A +ignited Ig'naItId Jc%,Jd% 32A,6A +ignites Ig'naIts Ja% 22A,6A +igniting Ig'naItIN Jb% 32A,6A +ignition Ig'nISn L@% 3 +ignoble Ig'n@Ubl OA% 3 +ignobly Ig'n@UblI Pu% 3 +ignominies 'Ign@mInIz Mj$ 4 +ignominious ,Ign@'mInI@s OA% 5 +ignominiously ,Ign@'mInI@slI Pu% 6 +ignominy 'Ign@mInI M8% 4 +ignoramus ,Ign@'reIm@s K7% 4 +ignoramuses ,Ign@'reIm@sIz Kj% 5 +ignorance 'Ign@r@ns L@% 3 +ignorant 'Ign@r@nt OA% 3 +ignorantly 'Ign@r@ntlI Pu% 4 +ignore Ig'nOR H2% 26A +ignored Ig'nOd Hc%,Hd% 26A +ignores Ig'nOz Ha% 26A +ignoring Ig'nOrIN Hb% 36A +iguana I'gwAn@ K6$ 3 +iguanas I'gwAn@z Kj$ 3 +ikon 'aIk0n K6$ 2 +ikons 'aIk0nz Kj$ 2 +ilex 'aIleks K7$ 2 +ilexes 'aIleksIz Kj$ 3 +ilk Ilk L@% 1 +ill Il M6$,OA%,Pu% 1 +ill-advised ,Il-@d'vaIzd OA% 3 +ill-affected ,Il-@'fektId OA$ 4 +ill-bred Il-'bred OA% 2 +ill-breeding Il-'bridIN L@% 3 +ill-disposed ,Il-dIs'p@Uzd OA% 3 +ill-fated Il-'feItId OA% 3 +ill-favoured Il-'feIv@d OA% 3 +ill-gotten Il-'g0t@n OA% 3 +ill-judged Il-'dZVdZd OA% 2 +ill-mannered Il-'m&n@d OA% 3 +ill-natured Il-'neItS@d OA% 3 +ill-omened Il-'@Umnd OA% 3 +ill-starred Il-'stAd OA% 2 +ill-timed Il-'taImd OA% 2 +ill-treat Il-'trit H0% 2 +ill-treated Il-'tritId Hc%,Hd% 3 +ill-treating Il-'tritIN Hb% 3 +ill-treatment Il-'tritm@nt L@% 3 +ill-treats Il-'trits Ha% 2 +ill-usage Il-'juzIdZ L@% 3 +ill-use Il-'juz H2$ 2 +ill-used Il-'juzd Hc$,Hd% 2 +ill-uses Il-'juzIz Ha$ 3 +ill-using Il-'juzIN Hb$ 3 +illegal I'ligl OA% 3 +illegalities ,IlI'g&lItIz Mj% 5 +illegality ,IlI'g&lItI M8% 5 +illegally I'lig@lI Pu% 4 +illegibility I,ledZ@'bIlItI L@% 6 +illegible I'ledZ@bl OA% 4 +illegibly I'ledZ@blI Pu% 4 +illegitimacy ,IlI'dZItIm@sI L@% 6 +illegitimate ,IlI'dZItIm@t K9%,OA% 5 +illegitimately ,IlI'dZItIm@tlI Pu% 6 +illiberal I'lIb@r@l OA% 4 +illiberality I,lIb@'r&lItI L@$ 6 +illiberally I'lIb@r@lI Pu% 5 +illicit I'lIsIt OA% 3 +illicitly I'lIsItlI Pu% 4 +illimitable I'lImIt@bl OA% 5 +illiteracies I'lIt@r@sIz Mj$ 5 +illiteracy I'lIt@r@sI M8% 5 +illiterate I'lIt@r@t K6%,OA% 4 +illiterates I'lIt@r@ts Kj% 4 +illness 'Iln@s M7% 2 +illnesses 'Iln@sIz Mj% 3 +illogical I'l0dZIkl OA% 4 +illogicalities I,l0dZI'k&lItIz Mj% 6 +illogicality I,l0dZI'k&lItI M8% 6 +illogically I'l0dZIklI Pu% 4 +illogicalness I'l0dZIkln@s L@$ 5 +ills Ilz Mj% 1 +illume I'lum H2$ 2 +illumed I'lumd Hc$,Hd$ 2 +illumes I'lumz Ha$ 2 +illuminate I'lumIneIt H2% 46A +illuminated I'lumIneItId Hc%,Hd% 56A +illuminates I'lumIneIts Ha% 46A +illuminating I'lumIneItIN Hb% 56A +illumination I,lumI'neISn M6% 5 +illuminations I,lumI'neISnz Mj% 5 +illumine I'lumIn H2% 36A +illumined I'lumInd Hc%,Hd% 36A +illumines I'lumInz Ha% 36A +illuming I'lumIN Hb$ 3 +illumining I'lumInIN Hb$ 46A +illusion I'luZn M6% 3 +illusionist I'luZ@nIst K6% 4 +illusionists I'luZ@nIsts Kj% 4 +illusions I'luZnz Mj% 3 +illusive I'lusIv OA$ 3 +illusory I'lus@rI OA% 4 +illustrate 'Il@streIt H2% 36A +illustrated 'Il@streItId Hc%,Hd% 46A +illustrates 'Il@streIts Ha% 36A +illustrating 'Il@streItIN Hb% 46A +illustration ,Il@'streISn M6% 4 +illustrations ,Il@'streISnz Mj% 4 +illustrative 'Il@str@tIv OA% 4 +illustrator 'Il@streIt@R K6% 4 +illustrators 'Il@streIt@z Kj% 4 +illustrious I'lVstrI@s OA% 4 +illustriously I'lVstrI@slI Pu% 5 +image 'ImIdZ H2$,K6% 26A +imaged 'ImIdZd Hc$,Hd$ 26A +imagery 'ImIdZ@rI L@% 4 +images 'ImIdZIz Ha$,Kj% 36A +imaginable I'm&dZIn@bl OA% 5 +imaginary I'm&dZIn@rI OA% 5 +imagination I,m&dZI'neISn M6% 5 +imaginations I,m&dZI'neISnz Mj% 5 +imaginative I'm&dZIn@tIv OA% 5 +imaginatively I'm&dZIn@tIvlI Pu% 6 +imagine I'm&dZIn H2% 36A,6C,9,10,16B,19A,19C,25 +imagined I'm&dZInd Hc%,Hd% 36A,6C,9,10,16B,19A,19C,25 +imagines I'm&dZInz Ha% 36A,6C,9,10,16B,19A,19C,25 +imaging 'ImIdZIN Hb$ 36A +imagining I'm&dZInIN Hb% 46A,6C,9,10,16B,19A,19C,25 +imam I'mAm K6$ 2 +imams I'mAmz Kj$ 2 +imbalance ,Im'b&l@ns K6% 3 +imbalances ,Im'b&l@nsIz Kj$ 4 +imbecile 'Imb@sil K6%,OA% 3 +imbeciles 'Imb@silz Kj% 3 +imbecilities ,Imb@'sIlItIz Mj% 5 +imbecility ,Imb@'sIlItI M8% 5 +imbed Im'bed H4$ 2 +imbedded Im'bedId Hc$,Hd$ 3 +imbedding Im'bedIN Hb$ 3 +imbeds Im'bedz Ha$ 2 +imbibe Im'baIb H2% 2 +imbibed Im'baIbd Hc%,Hd% 2 +imbibes Im'baIbz Ha% 2 +imbibing Im'baIbIN Hb% 3 +imbroglio Im'br@UlI@U K6$ 4 +imbroglios Im'br@UlI@Uz Kj$ 4 +imbue Im'bju H2$ 214 +imbued Im'bjud Hc$,Hd% 214 +imbues Im'bjuz Ha$ 214 +imbuing Im'bjuIN Hb$ 314 +imitate 'ImIteIt H2% 36A +imitated 'ImIteItId Hc%,Hd% 46A +imitates 'ImIteIts Ha% 36A +imitating 'ImIteItIN Hb% 46A +imitation ,ImI'teISn M6% 4 +imitations ,ImI'teISnz Mj% 4 +imitative 'ImIt@tIv OA% 4 +imitator 'ImIteIt@R K6% 4 +imitators 'ImIteIt@z Kj% 4 +immaculate I'm&kjUl@t OA% 4 +immaculately I'm&kjUl@tlI Pu% 5 +immanence 'Im@n@ns K6$ 3 +immanences 'Im@n@nsIz Kj$ 4 +immanent 'Im@n@nt OA$ 3 +immaterial ,Im@'tI@rI@l OA% 5 +immature ,Im@'tjU@R OA% 3 +immaturity ,Im@'tjU@rItI L@% 5 +immeasurable I'meZ@r@bl OA% 5 +immeasurably I'meZ@r@blI Pu% 5 +immediacy I'midI@sI L@% 5 +immediate I'midI@t OA% 4 +immediately I'midI@tlI Pu%,V-% 5 +immemorial ,Im@'mOrI@l OA% 5 +immense I'mens OA% 2 +immensely I'menslI Pu% 3 +immensities I'mensItIz Mj% 4 +immensity I'mensItI M8% 4 +immerse I'm3s H2% 26A,14 +immersed I'm3st Hc%,Hd% 26A,14 +immerses I'm3sIz Ha% 36A,14 +immersing I'm3sIN Hb% 36A,14 +immersion I'm3Sn K6% 3 +immersions I'm3Snz Kj% 3 +immigrant 'ImIgr@nt K6% 3 +immigrants 'ImIgr@nts Kj% 3 +immigrate 'ImIgreIt I2% 32A,3A +immigrated 'ImIgreItId Ic%,Id% 42A,3A +immigrates 'ImIgreIts Ia% 32A,3A +immigrating 'ImIgreItIN Ib% 42A,3A +immigration ,ImI'greISn M6% 4 +immigrations ,ImI'greISnz Mj$ 4 +imminence 'ImIn@ns L@% 3 +imminent 'ImIn@nt OA% 3 +imminently 'ImIn@ntlI Pu% 4 +immobile I'm@UbaIl OA% 3 +immobility ,Im@'bIlItI L@% 5 +immobilization I,m@UbIlaI'zeISn L@% 6 +immobilize I'm@UbIlaIz H2% 46A +immobilized I'm@UbIlaIzd Hc%,Hd% 46A +immobilizes I'm@UbIlaIzIz Ha% 56A +immobilizing I'm@UbIlaIzIN Hb% 56A +immoderate I'm0d@r@t OA% 4 +immoderately I'm0d@r@tlI Pu% 5 +immodest I'm0dIst OA% 3 +immodesties I'm0dIstIz Mj$ 4 +immodestly I'm0dIstlI Pu% 4 +immodesty I'm0dIstI M8% 4 +immolate 'Im@leIt H2$ 36A,14 +immolated 'Im@leItId Hc$,Hd$ 46A,14 +immolates 'Im@leIts Ha$ 36A,14 +immolating 'Im@leItIN Hb$ 46A,14 +immolation ,Im@'leISn M6$ 4 +immolations ,Im@'leISnz Mj$ 4 +immoral I'm0r@l OA% 3 +immoralities ,Im@'r&lItIz Mj% 5 +immorality ,Im@'r&lItI M8% 5 +immorally I'm0r@lI Pu% 4 +immortal I'mOtl K6%,OA% 3 +immortality ,ImO't&lItI L@% 5 +immortalize I'mOt@laIz H2% 46A +immortalized I'mOt@laIzd Hc%,Hd% 46A +immortalizes I'mOt@laIzIz Ha% 56A +immortalizing I'mOt@laIzIN Hb% 56A +immortals I'mOtlz Kj% 3 +immovable I'muv@bl OA% 4 +immovably I'muv@blI Pu% 4 +immune I'mjun OA% 2 +immunity I'mjunItI L@% 4 +immunization ,ImjUnaI'zeISn L@% 5 +immunize 'ImjUnaIz H2% 36A,14 +immunized 'ImjUnaIzd Hc%,Hd% 36A,14 +immunizes 'ImjUnaIzIz Ha% 46A,14 +immunizing 'ImjUnaIzIN Hb% 46A,14 +immunology ,ImjU'n0l@dZI L@% 5 +immure I'mjU@R H2$ 26A +immured I'mjU@d Hc$,Hd$ 26A +immures I'mjU@z Ha$ 26A +immuring I'mjU@rIN Hb$ 36A +immutability I,mjut@'bIlItI L@% 6 +immutable I'mjut@bl OA% 4 +immutably I'mjut@blI Pu% 4 +imp Imp K6% 1 +impact 'Imp&kt M6% 2 +impact Im'p&kt H0$ 2 +impacted Im'p&ktId Hc%,Hd% 3 +impacting Im'p&ktIN Hb$ 3 +impacts 'Imp&kts Mj% 2 +impacts Im'p&kts Ha$ 2 +impair Im'pe@R H0% 26A +impaired Im'pe@d Hc%,Hd% 26A +impairing Im'pe@rIN Hb% 36A +impairment Im'pe@m@nt K6% 3 +impairments Im'pe@m@nts Kj$ 3 +impairs Im'pe@z Ha% 26A +impala Im'pAl@ K6$ 3 +impalas Im'pAl@z Kj$ 3 +impale Im'peIl H2% 26A,15A +impaled Im'peIld Hc%,Hd% 26A,15A +impalement Im'peIlm@nt K6$ 3 +impalements Im'peIlm@nts Kj$ 3 +impales Im'peIlz Ha% 26A,15A +impaling Im'peIlIN Hb% 36A,15A +impalpable Im'p&lp@bl OA$ 4 +impanel Im'p&nl H4$ 36A +impanelled Im'p&nld Hc$,Hd$ 36A +impanelling Im'p&n@lIN Hb$ 46A +impanels Im'p&nlz Ha$ 36A +impart Im'pAt H0% 26A,14 +imparted Im'pAtId Hc%,Hd% 36A,14 +impartial Im'pASl OA% 3 +impartiality ,Im,pASI'&lItI L@% 6 +impartially Im'pAS@lI Pu% 4 +imparting Im'pAtIN Hb% 36A,14 +imparts Im'pAts Ha% 26A,14 +impassable Im'pAs@bl OA% 4 +impasse '&mpAs K6% 2 +impasses '&mpAsIz Kj$ 3 +impassioned Im'p&Snd OA% 3 +impassive Im'p&sIv OA% 3 +impassively Im'p&sIvlI Pu% 4 +impassiveness Im'p&sIvn@s L@% 4 +impassivity ,Imp&'sIvItI L@$ 5 +impatience Im'peISns L@% 3 +impatient Im'peISnt OA% 3 +impatiently Im'peISntlI Pu% 4 +impeach Im'pitS H1% 26A,14 +impeached Im'pitSt Hc%,Hd% 26A,14 +impeaches Im'pitSIz Ha% 36A,14 +impeaching Im'pitSIN Hb% 36A,14 +impeachment Im'pitSm@nt M6% 3 +impeachments Im'pitSm@nts Mj% 3 +impeccable Im'pek@bl OA% 4 +impeccably Im'pek@blI Pu% 4 +impecunious ,ImpI'kjunI@s OA% 5 +impede Im'pid H2% 26A +impeded Im'pidId Hc%,Hd% 36A +impedes Im'pidz Ha% 26A +impediment Im'pedIm@nt K6% 4 +impedimenta Im,pedI'ment@ Kj% 5 +impediments Im'pedIm@nts Kj% 4 +impeding Im'pidIN Hb% 36A +impel Im'pel H4% 214,17 +impelled Im'peld Hc%,Hd% 214,17 +impeller Im'pel@R K6$ 3 +impellers Im'pel@z Kj$ 3 +impelling Im'pelIN Hb% 314,17 +impels Im'pelz Ha% 214,17 +impend Im'pend I0$ 2 +impended Im'pendId Ic$,Id$ 3 +impending Im'pendIN Ib% 3 +impends Im'pendz Ia$ 2 +impenetrable Im'penItr@bl OA% 5 +impenitence Im'penIt@ns L@$ 4 +impenitent Im'penIt@nt OA$ 4 +impenitently Im'penIt@ntlI Pu$ 5 +imperative Im'per@tIv OA% 4 +imperatively Im'per@tIvlI Pu% 5 +imperceptible ,Imp@'sept@bl OA% 5 +imperceptibly ,Imp@'sept@blI Pu% 5 +imperfect Im'p3fIkt Ki%,OA% 3 +imperfection ,Imp@'fekSn M6% 4 +imperfections ,Imp@'fekSnz Mj% 4 +imperfectly Im'p3fIktlI Pu% 4 +imperial Im'pI@rI@l K6$,OA% 4 +imperialism Im'pI@rI@lIz@m L@% 6 +imperialist Im'pI@rI@lIst K6% 5 +imperialistic Im,pI@rI@'lIstIk OA% 6 +imperialists Im'pI@rI@lIsts Kj% 5 +imperially Im'pI@rI@lI Pu% 5 +imperials Im'pI@rI@lz Kj$ 4 +imperil Im'per@l H4% 36A +imperilled Im'per@ld Hc%,Hd% 36A +imperilling Im'per@lIN Hb% 46A +imperils Im'per@lz Ha% 36A +imperious Im'pI@rI@s OA% 4 +imperiously Im'pI@rI@slI Pu% 5 +imperiousness Im'pI@rI@sn@s L@% 5 +imperishable Im'perIS@bl OA% 5 +impermanence Im'p3m@n@ns L@% 4 +impermanent Im'p3m@n@nt OA% 4 +impermeable Im'p3mI@bl OA% 4 +impersonal ,Im'p3s@nl OA% 4 +impersonally ,Im'p3s@n@lI Pu% 5 +impersonate Im'p3s@neIt H2% 46A +impersonated Im'p3s@neItId Hc%,Hd% 56A +impersonates Im'p3s@neIts Ha% 46A +impersonating Im'p3s@neItIN Hb% 56A +impersonation Im,p3s@'neISn M6% 5 +impersonations Im,p3s@'neISnz Mj% 5 +impersonator Im'p3s@neIt@R K6% 5 +impersonators Im'p3s@neIt@z Kj% 5 +impertinence Im'p3tIn@ns M6% 4 +impertinences Im'p3tIn@nsIz Mj% 5 +impertinent Im'p3tIn@nt OA% 4 +impertinently Im'p3tIn@ntlI Pu% 5 +imperturbability ,Imp@,t3b@'bIlItI L@% 7 +imperturbable ,Imp@'t3b@bl OA% 5 +impervious Im'p3vI@s OA% 4 +impetigo ,ImpI'taIg@U L@$ 4 +impetuosities Im,petSU'0sItIz Mj$ 6 +impetuosity Im,petSU'0sItI M8% 6 +impetuous Im'petSU@s OA% 4 +impetuously Im'petSU@slI Pu% 5 +impetus 'ImpIt@s Mi% 3 +impieties Im'paI@tIz Mj$ 4 +impiety Im'paI@tI M8% 4 +impinge Im'pIndZ I2% 23A +impinged Im'pIndZd Ic%,Id% 23A +impingement Im'pIndZm@nt K6$ 3 +impingements Im'pIndZm@nts Kj$ 3 +impinges Im'pIndZIz Ia% 33A +impinging Im'pIndZIN Ib% 33A +impious 'ImpI@s OA% 3 +impiously 'ImpI@slI Pu% 4 +impish 'ImpIS OA% 2 +impishly 'ImpISlI Pu% 3 +impishness 'ImpISn@s L@% 3 +implacable Im'pl&k@bl OA% 4 +implant Im'plAnt H0% 26A,14 +implanted Im'plAntId Hc%,Hd% 36A,14 +implanting Im'plAntIN Hb% 36A,14 +implants Im'plAnts Ha% 26A,14 +implausibility Im,plOzI'bIlItI L@% 6 +implausible Im'plOzIbl OA% 4 +implausibly Im'plOzIblI Pu% 4 +implement 'ImplIm@nt K6% 3 +implement 'ImplIment H0% 36A +implementation ,ImplImen'teISn K6% 5 +implementations ,ImplImen'teISnz Kj% 5 +implemented 'ImplImentId Hc%,Hd% 46A +implementing 'ImplImentIN Hb% 46A +implements 'ImplIm@nts Kj% 3 +implements 'ImplIments Ha% 36A +implicate 'ImplIkeIt H2% 36A,14 +implicated 'ImplIkeItId Hc%,Hd% 46A,14 +implicates 'ImplIkeIts Ha% 36A,14 +implicating 'ImplIkeItIN Hb% 46A,14 +implication ,ImplI'keISn M6% 4 +implications ,ImplI'keISnz Mj% 4 +implicit Im'plIsIt OA% 3 +implicitly Im'plIsItlI Pu% 4 +implied Im'plaId Hc%,Hd% 26A,9 +implies Im'plaIz Ha% 26A,9 +implore Im'plOR H2% 26A,14,17 +implored Im'plOd Hc%,Hd% 26A,14,17 +implores Im'plOz Ha% 26A,14,17 +imploring Im'plOrIN Hb% 36A,14,17 +imploringly Im'plOrINlI Pu% 4 +implosion Im'pl@UZn M6$ 3 +implosions Im'pl@UZnz Mj$ 3 +imply Im'plaI H3% 26A,9 +implying Im'plaIIN Hb% 36A,9 +impolite ,Imp@'laIt OA% 3 +impolitely ,Imp@'laItlI Pu% 4 +impoliteness ,Imp@'laItn@s L@% 4 +impolitic Im'p0l@tIk OA% 4 +imponderable Im'p0nd@r@bl K6%,OA% 5 +imponderables Im'p0nd@r@blz Kj% 5 +import 'ImpOt M6% 2 +import Im'pOt H0% 26A,9,14 +importance Im'pOtns L@% 3 +important Im'pOtnt OA* 3 +importantly Im'pOtntlI Pu% 4 +importation ,ImpO'teISn M6% 4 +importations ,ImpO'teISnz Mj$ 4 +imported Im'pOtId Hc%,Hd% 36A,9,14 +importer Im'pOt@R K6% 3 +importers Im'pOt@z Kj% 3 +importing Im'pOtIN Hb% 36A,9,14 +imports 'ImpOts Mj% 2 +imports Im'pOts Ha% 26A,9,14 +importunate Im'pOtSUn@t OA% 4 +importunately Im'pOtSUn@tlI Pu% 5 +importune ,Imp@'tjun H2% 36A,9,14,17 +importuned ,Imp@'tjund Hc%,Hd% 36A,9,14,17 +importunes ,Imp@'tjunz Ha% 36A,9,14,17 +importuning ,Imp@'tjunIN Hb% 46A,9,14,17 +importunity ,Imp@'tjunItI L@% 5 +impose Im'p@Uz J2% 23A,14 +imposed Im'p@Uzd Jc%,Jd% 23A,14 +imposes Im'p@UzIz Ja% 33A,14 +imposing Im'p@UzIN Jb%,OA% 33A,14 +imposingly Im'p@UzINlI Pu% 4 +imposition ,Imp@'zISn M6% 4 +impositions ,Imp@'zISnz Mj% 4 +impossibilities Im,p0s@'bIlItIz Mj% 6 +impossibility Im,p0s@'bIlItI M8% 6 +impossible Im'p0s@bl OA% 4 +impossibly Im'p0s@blI Pu% 4 +impostor Im'p0st@R K6% 3 +impostors Im'p0st@z Kj% 3 +imposture Im'p0stS@R M6$ 3 +impostures Im'p0stS@z Mj$ 3 +impotence 'Imp@t@ns L@% 3 +impotent 'Imp@t@nt OA% 3 +impotently 'Imp@t@ntlI Pu% 4 +impound Im'paUnd H0% 26A +impounded Im'paUndId Hc%,Hd% 36A +impounding Im'paUndIN Hb% 36A +impounds Im'paUndz Ha% 26A +impoverish Im'p0v@rIS H1% 46A +impoverished Im'p0v@rISt Hc%,Hd% 46A +impoverishes Im'p0v@rISIz Ha% 56A +impoverishing Im'p0v@rISIN Hb% 56A +impoverishment Im'p0v@rISm@nt K6% 5 +impoverishments Im'p0v@rISm@nts Kj$ 5 +impracticability Im,pr&ktIk@'bIlItI L@% 7 +impracticable Im'pr&ktIk@bl OA% 5 +impracticableness Im'pr&ktIk@bln@s L@$ 6 +impracticably Im'pr&ktIk@blI Pu% 5 +impractical Im'pr&ktIkl OA% 4 +imprecate 'ImprIkeIt H2$ 314 +imprecated 'ImprIkeItId Hc$,Hd$ 414 +imprecates 'ImprIkeIts Ha$ 314 +imprecating 'ImprIkeItIN Hb$ 414 +imprecation ,ImprI'keISn K6$ 4 +imprecations ,ImprI'keISnz Kj$ 4 +imprecise ,ImprI'saIs OA% 3 +imprecisely ,ImprI'saIslI Pu% 4 +imprecision ,ImprI'sIZn L@% 4 +impregnability Im,pregn@'bIlItI L@% 6 +impregnable Im'pregn@bl OA% 4 +impregnably Im'pregn@blI Pu% 4 +impregnate 'ImpregneIt H2% 36A,14 +impregnated 'ImpregneItId Hc%,Hd% 46A,14 +impregnates 'ImpregneIts Ha% 36A,14 +impregnating 'ImpregneItIN Hb% 46A,14 +impresario ,ImprI'sArI@U K6% 5 +impresarios ,ImprI'sArI@Uz Kj% 5 +impress 'Impres K7$ 2 +impress Im'pres H1% 26A,14 +impressed Im'prest Hc%,Hd% 26A,14 +impresses 'ImpresIz Kj$ 3 +impresses Im'presIz Ha% 36A,14 +impressing Im'presIN Hb% 36A,14 +impression Im'preSn K6% 3 +impressionable Im'preS@n@bl OA% 5 +impressionism Im'preS@nIz@m L@% 5 +impressionist Im'preS@nIst K6% 4 +impressionistic Im,preS@'nIstIk OA% 5 +impressionists Im'preS@nIsts Kj% 4 +impressions Im'preSnz Kj% 3 +impressive Im'presIv OA% 3 +impressively Im'presIvlI Pu% 4 +impressiveness Im'presIvn@s L@% 4 +imprimatur ,ImprI'meIt@R K6$ 4 +imprimaturs ,ImprI'meIt@z Kj$ 4 +imprint 'ImprInt K6% 2 +imprint Im'prInt H0% 214 +imprinted Im'prIntId Hc%,Hd% 314 +imprinting Im'prIntIN Hb% 314 +imprints 'ImprInts Kj% 2 +imprints Im'prInts Ha% 214 +imprison Im'prIzn H0% 36A +imprisoned Im'prIznd Hc%,Hd% 36A +imprisoning Im'prIznIN Hb% 46A +imprisonment Im'prIznm@nt L@% 4 +imprisons Im'prIznz Ha% 36A +improbabilities Im,pr0b@'bIlItIz Mj% 6 +improbability Im,pr0b@'bIlItI M8% 6 +improbable Im'pr0b@bl OA% 4 +improbably Im'pr0b@blI Pu% 4 +impromptu Im'pr0mptju K6%,OA%,Pu% 3 +impromptus Im'pr0mptjuz Kj$ 3 +improper Im'pr0p@R OA% 3 +improperly Im'pr0p@lI Pu% 4 +improprieties ,Impr@'praI@tIz Mj% 5 +impropriety ,Impr@'praI@tI M8% 5 +improve Im'pruv J2% 22A,3A,6A +improved Im'pruvd Jc%,Jd% 22A,3A,6A +improvement Im'pruvm@nt M6% 3 +improvements Im'pruvm@nts Mj% 3 +improver Im'pruv@R K6% 3 +improvers Im'pruv@z Kj% 3 +improves Im'pruvz Ja% 22A,3A,6A +improvidence Im'pr0vId@ns L@% 4 +improvident Im'pr0vId@nt OA% 4 +improvidently Im'pr0vId@ntlI Pu% 5 +improving Im'pruvIN Jb% 32A,3A,6A +improvisation ,Impr@vaI'zeISn M6% 5 +improvisations ,Impr@vaI'zeISnz Mj% 5 +improvise 'Impr@vaIz J2% 32A,6A +improvised 'Impr@vaIzd Jc%,Jd% 32A,6A +improvises 'Impr@vaIzIz Ja% 42A,6A +improvising 'Impr@vaIzIN Jb% 42A,6A +imprudence Im'prudns M6% 3 +imprudences Im'prudnsIz Mj$ 4 +imprudent Im'prudnt OA% 3 +imprudently Im'prudntlI Pu% 4 +imps Imps Kj% 1 +impudence 'ImpjUd@ns L@% 3 +impudent 'ImpjUd@nt OA% 3 +impudently 'ImpjUd@ntlI Pu% 4 +impugn Im'pjun H0$ 26A +impugned Im'pjund Hc$,Hd$ 26A +impugning Im'pjunIN Hb$ 36A +impugns Im'pjunz Ha$ 26A +impulse 'ImpVls M6% 2 +impulse-bought ,Imp@ls-'bOt Jc$,Jd$ 3 +impulse-buy ,Imp@ls-'baI J5$ 3 +impulse-buying ,Imp@ls-'baIIN Jb$ 4 +impulse-buys ,Imp@ls-'baIz Ja$ 3 +impulses 'ImpVlsIz Mj% 3 +impulsion Im'pVlSn M6$ 3 +impulsions Im'pVlSnz Mj$ 3 +impulsive Im'pVlsIv OA% 3 +impulsively Im'pVlsIvlI Pu% 4 +impulsiveness Im'pVlsIvn@s L@% 4 +impunity Im'pjunItI L@% 4 +impure Im'pjU@R OA% 2 +impurities Im'pjurItIz Mj% 4 +impurity Im'pjurItI M8% 4 +imputation ,ImpjU'teISn M6% 4 +imputations ,ImpjU'teISnz Mj$ 4 +impute Im'pjut H2% 214 +imputed Im'pjutId Hc%,Hd% 314 +imputes Im'pjuts Ha% 214 +imputing Im'pjutIN Hb% 314 +in In K6%,P+*,T-* 1 +in loco parentis In ,l@Uk@U p@'rentIs Pu% 6 +in memoriam ,In m@'mOrI@m Z-% 5 +in situ ,In 'sItju Pu% 3 +in toto In 't@Ut@U Pu$ 3 +in-chief In-'tSif Ot% 2 +in-fighting 'In-faItIN L@% 3 +in-laws 'In-lOz Kj% 2 +in-patient 'In-peISnt K6% 3 +in-patients 'In-peISnts Kj% 3 +in-service 'In-s3vIs Oq% 3 +in-tray 'In-treI K6% 2 +in-trays 'In-treIz Kj% 2 +inability ,In@'bIlItI L@% 5 +inaccessibility ,In&k,ses@'bIlItI L@% 7 +inaccessible ,In&k'ses@bl OA% 5 +inaccuracies In'&kj@r@sIz Mj% 5 +inaccuracy In'&kj@r@sI M8% 5 +inaccurate In'&kjUr@t OA% 4 +inaccurately In'&kjUr@tlI Pu% 5 +inaction In'&kSn L@% 3 +inactivate ,In'&ktIveIt H2% 4 +inactivated ,In'&ktIveItId Hc%,Hd% 5 +inactivates ,In'&ktIveIts Ha$ 4 +inactivating ,In'&ktIveItIN Hb$ 5 +inactive In'&ktIv OA% 3 +inactivity ,In&k'tIvItI L@% 5 +inadequacies In'&dIkw@sIz Mj% 5 +inadequacy In'&dIkw@sI M8% 5 +inadequate In'&dIkw@t OA% 4 +inadequately In'&dIkw@tlI Pu% 5 +inadmissible ,In@d'mIs@bl OA% 5 +inadvertence ,In@d'v3t@ns M6$ 4 +inadvertences ,In@d'v3t@nsIz Mj$ 5 +inadvertent ,In@d'v3t@nt OA% 4 +inadvertently ,In@d'v3t@ntlI Pu% 5 +inadvisability ,In@d,vaIz@b'IlItI L@% 7 +inadvisable ,In@d'vaIz@bl OA% 5 +inadvisably ,In@d'vaIz@blI Pu% 5 +inalienable ,In'eIlI@n@bl OA% 6 +inane I'neIn OA% 2 +inanely I'neInlI Pu% 3 +inanimate In'&nIm@t OA% 4 +inanities I'n&nItIz Mj% 4 +inanition ,In@'nISn L@$ 4 +inanity I'n&nItI M8% 4 +inapplicable In'&plIk@bl OA% 5 +inappreciable ,In@'priS@bl OA$ 5 +inappropriate ,In@'pr@UprI@t OA% 5 +inappropriately ,In@'pr@UprI@tlI Pu% 6 +inappropriateness ,In@'pr@UprI@tnIs L@% 6 +inapt In'&pt OA$ 2 +inaptitude In'&ptItjud L@$ 4 +inarticulate ,InA'tIkjUl@t OA% 5 +inasmuch as ,In@z'mVtS @z Pu% 4 +inattention ,In@'tenSn L@% 4 +inattentive ,In@'tentIv OA% 4 +inaudibility In,Od@'bIlItI L@% 6 +inaudible In'Od@bl OA% 4 +inaugural I'nOgjUr@l K6$,OA% 4 +inaugurals I'nOgjUr@lz Kj$ 4 +inaugurate I'nOgjUreIt H2% 46A +inaugurated I'nOgjUreItId Hc%,Hd% 56A +inaugurates I'nOgjUreIts Ha% 46A +inaugurating I'nOgjUreItIN Hb% 56A +inauguration I,nOgjU'reISn M6% 5 +inaugurations I,nOgjU'reISnz Mj% 5 +inauspicious ,InO'spIS@s OA% 4 +inauspiciously ,InO'spIS@slI Pu% 5 +inboard 'InbOd OA$ 2 +inborn ,In'bOn OA% 2 +inbound 'InbaUnd OA$ 2 +inbred ,In'bred OA% 2 +inbreeding ,In'bridIN L@% 3 +inbuilt ,In'bIlt OA% 2 +incalculable In'k&lkjUl@bl OA% 5 +incandescence ,Ink&n'desns L@% 4 +incandescent ,Ink&n'desnt OA% 4 +incantation ,Ink&n'teISn M6% 4 +incantations ,Ink&n'teISnz Mj% 4 +incapability In,keIp@'bIlItI L@% 6 +incapable In'keIp@bl OA% 4 +incapacitate ,Ink@'p&sIteIt H2% 56A,14 +incapacitated ,Ink@'p&sIteItId Hc%,Hd% 66A,14 +incapacitates ,Ink@'p&sIteIts Ha% 56A,14 +incapacitating ,Ink@'p&sIteItIN Hb% 66A,14 +incapacity ,Ink@'p&sItI L@% 5 +incarcerate In'kAs@reIt H2% 46A +incarcerated In'kAs@reItId Hc%,Hd% 56A +incarcerates In'kAs@reIts Ha% 46A +incarcerating In'kAs@reItIN Hb% 56A +incarceration In,kAs@'reISn K6% 5 +incarcerations In,kAs@'reISnz Kj% 5 +incarnate In'kAn@t OA% 3 +incarnate In'kAneIt H2$ 36A +incarnated In'kAneItId Hc$,Hd$ 46A +incarnates In'kAneIts Ha$ 36A +incarnating In'kAneItIN Hb$ 46A +incarnation ,InkA'neISn K6% 4 +incarnations ,InkA'neISnz Kj% 4 +incautious In'kOS@s OA% 3 +incautiously In'kOS@slI Pu% 4 +incendiaries In'sendI@rIz Kj% 5 +incendiarism In'sendI@rIz@m L@$ 6 +incendiary In'sendI@rI K8% 5 +incense 'Insens L@% 2 +incense In'sens H2% 26A +incensed In'senst Hc%,Hd% 26A +incenses In'sensIz Ha% 36A +incensing In'sensIN Hb% 36A +incentive In'sentIv M6% 3 +incentives In'sentIvz Mj% 3 +inception In'sepSn K6% 3 +inceptions In'sepSnz Kj$ 3 +incertitude In's3tItjud L@$ 4 +incessant In'sesnt OA% 3 +incessantly In'sesntlI Pu% 4 +incest 'Insest L@% 2 +incestuous In'sestjU@s OA% 4 +inch IntS J1%,K7% 12C,15A,15B +inched IntSt Jc%,Jd% 12C,15A,15B +inches 'IntSIz Ja%,Kj% 22C,15A,15B +inching 'IntSIN Jb% 22C,15A,15B +inchoate In'k@UIt OA$ 3 +inchoative In'k@U@tIv OA$ 4 +incidence 'InsId@ns K6% 3 +incidences 'InsId@nsIz Kj$ 4 +incident 'InsId@nt K6%,OA% 3 +incidental ,InsI'dentl OA% 4 +incidentally ,InsI'dent@lI Pu% 5 +incidents 'InsId@nts Kj% 3 +incinerate In'sIn@reIt H2% 46A +incinerated In'sIn@reItId Hc%,Hd% 56A +incinerates In'sIn@reIts Ha% 46A +incinerating In'sIn@reItIN Hb% 56A +incineration In,sIn@'reISn L@% 5 +incinerator In'sIn@reIt@R K6% 5 +incinerators In'sIn@reIt@z Kj% 5 +incipient In'sIpI@nt OA% 4 +incise In'saIz H2$ 26A +incised In'saIzd Hc$,Hd% 26A +incises In'saIzIz Ha$ 36A +incising In'saIzIN Hb$ 36A +incision In'sIZn M6% 3 +incisions In'sIZnz Mj% 3 +incisive In'saIsIv OA% 3 +incisively In'saIsIvlI Pu% 4 +incisor In'saIz@R K6% 3 +incisors In'saIz@z Kj% 3 +incite In'saIt H2% 26A,14,17 +incited In'saItId Hc%,Hd% 36A,14,17 +incitement In'saItm@nt M6% 3 +incitements In'saItm@nts Mj% 3 +incites In'saIts Ha% 26A,14,17 +inciting In'saItIN Hb% 36A,14,17 +incivilities ,InsI'vIlItIz Mj$ 5 +incivility ,InsI'vIlItI M8$ 5 +incl In'kludIN Y~% 3 +inclemency In'klem@nsI L@% 4 +inclement In'klem@nt OA% 3 +inclination ,InklI'neISn M6% 4 +inclinations ,InklI'neISnz Mj% 4 +incline 'InklaIn K6% 2 +incline In'klaIn J2% 22A,3A,4C,6A,15A,17 +inclined In'klaInd Jc%,Jd% 22A,3A,4C,6A,15A,17 +inclines 'InklaInz Kj% 2 +inclines In'klaInz Ja% 22A,3A,4C,6A,15A,17 +inclining In'klaInIN Jb% 32A,3A,4C,6A,15A,17 +inclose In'kl@Uz H2$ 26A,14 +inclosed In'kl@Uzd Hc$,Hd$ 26A,14 +incloses In'kl@UzIz Ha$ 36A,14 +inclosing In'kl@UzIN Hb$ 36A,14 +inclosure In'kl@UZ@R M6$ 3 +inclosures In'kl@UZ@z Mj$ 3 +include In'klud H2% 26A,6C +included In'kludId Hc%,Hd% 36A,6C +includes In'kludz Ha% 26A,6C +including In'kludIN Hb% 36A,6C +inclusion In'kluZn L@% 3 +inclusive In'klusIv OA% 3 +inclusively In'klusIvlI Pu% 4 +incognito ,Ink0g'nit@U OA%,Pu% 4 +incoherence ,Ink@U'hI@r@ns L@% 4 +incoherent ,Ink@U'hI@r@nt OA% 4 +incoherently ,Ink@U'hI@r@ntlI Pu% 5 +incombustible ,Ink@m'bVst@bl OA$ 5 +income 'INkVm K6% 2 +income-tax 'INk@m-t&ks M7% 3 +income-taxes 'INk@m-t&ksIz Mj% 4 +incomes 'INkVmz Kj% 2 +incoming ,In'kVmIN OA% 3 +incommensurable ,Ink@'menS@r@bl OA% 6 +incommensurate ,Ink@'menS@r@t OA$ 5 +incommode ,Ink@'m@Ud H2$ 36A +incommoded ,Ink@'m@UdId Hc$,Hd% 46A +incommodes ,Ink@'m@Udz Ha$ 36A +incommoding ,Ink@'m@UdIN Hb$ 46A +incommunicado ,Ink@,mjunI'kAd@U OA% 6 +incomparable In'k0mpr@bl OA% 4 +incomparably In'k0mpr@blI Pu% 4 +incompatibilities ,Ink@m,p&t@'bIlItIz Mj$ 7 +incompatibility ,Ink@m,p&t@'bIlItI M8% 7 +incompatible ,Ink@m'p&t@bl OA% 5 +incompetence In'k0mpIt@ns L@% 4 +incompetency In'k0mpIt@nsI L@$ 5 +incompetent In'k0mpIt@nt OA% 4 +incompetently In'k0mpIt@ntlI Pu% 5 +incomplete ,Ink@m'plit OA% 3 +incompletely ,Ink@m'plitlI Pu% 4 +incomprehensibility In,k0mprI,hens@'bIlItI L@% 8 +incomprehensible ,In,k0mprI'hens@bl OA% 6 +incomprehension In,k0mprI'henSn L@% 5 +incompressible Ink@m'pres@bl OA$ 5 +inconceivable ,Ink@n'siv@bl OA% 5 +inconclusive ,Ink@n'klusIv OA% 4 +inconclusively ,Ink@n'klusIvlI Pu% 5 +incongruities ,Ink0N'gruItIz Mj% 5 +incongruity ,Ink0N'gruItI M8% 5 +incongruous In'k0NgrU@s OA% 4 +incongruously In'k0NgrU@slI Pu% 5 +inconsequent In'k0nsIkw@nt OA$ 4 +inconsequential In,k0nsI'kwenSl OA% 5 +inconsequentially In,k0nsI'kwenS@lI Pu% 6 +inconsequently In'k0nsIkw@ntlI Pu% 5 +inconsiderable ,Ink@n'sIdr@bl OA% 5 +inconsiderate ,Ink@n'sId@r@t OA% 5 +inconsiderately ,Ink@n'sId@r@tlI Pu% 6 +inconsistencies ,Ink@n'sIst@nsIz Mj% 5 +inconsistency ,Ink@n'sIst@nsI M8% 5 +inconsistent ,Ink@n'sIst@nt OA% 4 +inconsistently ,Ink@n'sIst@ntlI Pu% 5 +inconsolable ,Ink@n's@Ul@bl OA% 5 +inconspicuous ,Ink@n'spIkjU@s OA% 5 +inconspicuously ,Ink@n'spIkjU@slI Pu% 6 +inconstancies In'k0nst@nsIz Mj$ 4 +inconstancy In'k0nst@nsI M8% 4 +inconstant In'k0nst@nt OA% 3 +incontestable ,Ink@n'test@bl OA% 5 +incontinence In'k0ntIn@ns L@% 4 +incontinent In'k0ntIn@nt OA% 4 +incontrovertible In,k0ntr@'v3t@bl OA% 6 +inconvenience ,Ink@n'vinI@ns H2%,M6% 56A +inconvenienced ,Ink@n'vinI@nst Hc%,Hd% 56A +inconveniences ,Ink@n'vinI@nsIz Ha%,Mj% 66A +inconveniencing ,Ink@n'vinI@nsIN Hb% 66A +inconvenient ,Ink@n'vinI@nt OA% 5 +inconveniently ,Ink@n'vinI@ntlI Pu% 6 +inconvertibility ,Ink@n,v3t@'bIlItI L@$ 7 +inconvertible ,Ink@n'v3t@bl OA$ 5 +incorporate In'kOp@r@t OA$ 4 +incorporate In'kOp@reIt J2% 42A,3A,6A,14,23 +incorporated In'kOp@reItId Jc%,Jd% 52A,3A,6A,14,23 +incorporates In'kOp@reIts Ja% 42A,3A,6A,14,23 +incorporating In'kOp@reItIN Jb% 52A,3A,6A,14,23 +incorporation In,kOp@'reISn L@% 5 +incorporeal ,InkO'pOrI@l OA$ 5 +incorrect ,Ink@'rekt OA% 3 +incorrectly ,Ink@'rektlI Pu% 4 +incorrectness ,Ink@'rektn@s L@% 4 +incorrigible In'k0rIdZ@bl OA% 5 +incorruptibility ,Ink@,rVpt@'bIlItI L@% 7 +incorruptible ,Ink@'rVpt@bl OA% 5 +increase 'INkris M6% 2 +increase In'kris J2% 22A,6A +increased In'krist Jc%,Jd% 22A,6A +increases 'INkrisIz Mj% 3 +increases In'krisIz Ja% 32A,6A +increasing In'krisIN Jb% 32A,6A +increasingly In'krisINlI Pu% 4 +incredibility In,kred@'bIlItI L@% 6 +incredible In'kred@bl OA% 4 +incredibly In'kred@blI Pu% 4 +incredulity ,InkrI'djulItI L@% 5 +incredulous In'kredjUl@s OA% 4 +incredulously In'kredjUl@slI Pu% 5 +increment 'Inkr@m@nt M6% 3 +incremental ,Inkr@'mentl OA% 4 +increments 'Inkr@m@nts Mj% 3 +incriminate In'krImIneIt H2% 46A +incriminated In'krImIneItId Hc%,Hd% 56A +incriminates In'krImIneIts Ha% 46A +incriminating In'krImIneItIN Hb% 56A +incrustation ,InkrV'steISn M6$ 4 +incrustations ,InkrV'steISnz Mj$ 4 +incubate 'InkjUbeIt J2% 32A,6A +incubated 'InkjUbeItId Jc%,Jd% 42A,6A +incubates 'InkjUbeIts Ja% 32A,6A +incubating 'InkjUbeItIN Jb% 42A,6A +incubation ,InkjU'beISn K6% 4 +incubations ,InkjU'beISnz Kj% 4 +incubator 'InkjUbeIt@R K6% 4 +incubators 'InkjUbeIt@z Kj% 4 +incubi 'INkjUbaI Kj$ 3 +incubus 'INkjUb@s K7$ 3 +incubuses 'INkjUb@sIz Kj$ 4 +inculcate 'InkVlkeIt H2% 36A,14 +inculcated 'InkVlkeItId Hc%,Hd% 46A,14 +inculcates 'InkVlkeIts Ha% 36A,14 +inculcating 'InkVlkeItIN Hb% 46A,14 +inculpate 'InkVlpeIt H2% 36A +inculpated 'InkVlpeItId Hc$,Hd$ 46A +inculpates 'InkVlpeIts Ha$ 36A +inculpating 'InkVlpeItIN Hb$ 46A +incumbencies In'kVmb@nsIz Kj$ 4 +incumbency In'kVmb@nsI K8$ 4 +incumbent In'kVmb@nt K6%,OA% 3 +incumbents In'kVmb@nts Kj% 3 +incur In'k3R H4% 26A +incurable In'kjU@r@bl K6%,OA% 4 +incurables In'kjU@r@blz Kj% 4 +incurably In'kjU@r@blI Pu% 4 +incurious In'kjU@rI@s OA% 4 +incurred In'k3d Hc%,Hd% 26A +incurring In'k3rIN Hb% 36A +incurs In'k3z Ha% 26A +incursion In'k3Sn K6% 3 +incursions In'k3Snz Kj% 3 +incurved ,In'k3vd OA$ 2 +indebted In'detId OA% 3 +indebtedness In'detIdn@s L@% 4 +indecencies In'dis@nsIz Mj% 4 +indecency In'dis@nsI M8% 4 +indecent In'disnt OA% 3 +indecently In'disntlI Pu% 4 +indecipherable ,IndI'saIfr@bl OA% 5 +indecision ,IndI'sIZn L@% 4 +indecisive ,IndI'saIsIv OA% 4 +indecisively ,IndI'saIsIvlI Pu% 5 +indecorous In'dek@r@s OA% 4 +indecorously In'dek@r@slI Pu% 5 +indecorum ,IndI'kOr@m L@$ 4 +indeed In'did Pu% 2 +indefatigable ,IndI'f&tIg@bl OA% 6 +indefeasible ,IndI'fiz@bl OA$ 5 +indefensible ,IndI'fens@bl OA% 5 +indefinable ,IndI'faIn@bl OA% 5 +indefinite In'defIn@t OA% 4 +indefinitely In'defIn@tlI Pu% 5 +indelible In'del@bl OA% 4 +indelibly In'del@blI Pu% 4 +indelicacies In'delIk@sIz Mj% 5 +indelicacy In'delIk@sI M8% 5 +indelicate In'delIk@t OA% 4 +indemnification In,demnIfI'keISn M6% 6 +indemnifications In,demnIfI'keISnz Mj$ 6 +indemnified In'demnIfaId Hc%,Hd% 46A,14 +indemnifies In'demnIfaIz Ha% 46A,14 +indemnify In'demnIfaI H3% 46A,14 +indemnifying In'demnIfaIIN Hb% 56A,14 +indemnities In'demnItIz Mj% 4 +indemnity In'demnItI M8% 4 +indent 'Indent K6% 2 +indent In'dent J0% 23A,6A +indentation ,Inden'teISn M6% 4 +indentations ,Inden'teISnz Mj% 4 +indented In'dentId Jc%,Jd% 33A,6A +indenting In'dentIN Jb% 33A,6A +indents 'Indents Kj$ 2 +indents In'dents Ja% 23A,6A +indenture In'dentS@R H2%,K6% 36A +indentured In'dentS@d Hc$,Hd$ 36A +indentures In'dentS@z Ha$,Kj$ 36A +indenturing In'dentS@rIN Hb$ 46A +independence ,IndI'pend@ns L@% 4 +independent ,IndI'pend@nt K6%,OA% 4 +independently ,IndI'pend@ntlI Pu% 5 +independents ,IndI'pend@nts Kj% 4 +indescribable ,IndI'skraIb@bl OA% 5 +indescribably ,IndI'skraIb@blI Pu% 5 +indestructibility ,IndI,strVkt@'bIlItI L@% 7 +indestructible ,IndI'strVkt@bl OA% 5 +indeterminable ,IndI't3mIn@bl OA% 6 +indeterminably ,IndI't3mIn@blI Pu% 6 +indeterminacy ,IndI't3mIn@sI L@% 6 +indeterminate ,IndI't3mIn@t OA% 5 +index 'Indeks H1%,K7% 26A +indexed 'Indekst Hc%,Hd% 26A +indexer 'Indeks@R K6% 3 +indexers 'Indeks@z Kj% 3 +indexes 'IndeksIz Ha%,Kj% 36A +indexing 'IndeksIN Hb% 36A +indicate 'IndIkeIt H2% 36A,9,14 +indicated 'IndIkeItId Hc%,Hd% 46A,9,14 +indicates 'IndIkeIts Ha% 36A,9,14 +indicating 'IndIkeItIN Hb% 46A,9,14 +indication ,IndI'keISn M6% 4 +indications ,IndI'keISnz Mj% 4 +indicative In'dIk@tIv OA% 4 +indicator 'IndIkeIt@R K6% 4 +indicators 'IndIkeIt@z Kj% 4 +indices 'IndIsiz Kj% 3 +indict In'daIt H0% 26A,14,16B +indictable In'daIt@bl OA% 4 +indicted In'daItId Hc%,Hd% 36A,14,16B +indicting In'daItIN Hb% 36A,14,16B +indictment In'daItm@nt M6% 3 +indictments In'daItm@nts Mj% 3 +indicts In'daIts Ha% 26A,14,16B +indifference In'dIfr@ns L@% 3 +indifferent In'dIfr@nt OA% 3 +indifferently In'dIfr@ntlI Pu% 4 +indigence 'IndIdZ@ns L@$ 3 +indigenous In'dIdZIn@s OA% 4 +indigent 'IndIdZ@nt OA$ 3 +indigestible ,IndI'dZ@st@bl OA% 5 +indigestion ,IndI'dZestS@n L@% 4 +indignant In'dIgn@nt OA% 3 +indignantly In'dIgn@ntlI Pu% 4 +indignation ,IndIg'neISn L@% 4 +indignities In'dIgnItIz Mj% 4 +indignity In'dIgnItI M8% 4 +indigo 'IndIg@U L@% 3 +indirect ,IndI'rekt OA% 3 +indirectly ,IndI'rektlI Pu% 4 +indirectness ,IndI'rektn@s L@% 4 +indiscernible ,IndI's3n@bl OA% 5 +indiscipline In'dIsIplIn L@% 4 +indiscreet ,IndI'skrit OA% 3 +indiscreetly ,IndI'skritlI Pu% 4 +indiscrete ,IndI'skrit OA$ 3 +indiscretion ,IndI'skreSn M6% 4 +indiscretions ,IndI'skreSnz Mj% 4 +indiscriminate ,IndI'skrImIn@t OA% 5 +indiscriminately ,IndI'skrImIn@tlI Pu% 6 +indispensability ,IndI,spens@'bIlItI L@$ 7 +indispensable ,IndI'spens@bl OA% 5 +indisposed ,IndI'sp@Uzd OA% 3 +indisposition ,IndIsp@'zISn M6% 5 +indispositions ,IndIsp@'zISnz Mj$ 5 +indisputable ,IndI'spjut@bl OA% 5 +indissoluble ,IndI's0ljUbl OA% 5 +indistinct ,IndI'stINkt OA% 3 +indistinctly ,IndI'stINktlI Pu% 4 +indistinctness ,IndI'stINktn@s L@$ 4 +indistinguishable ,IndI'stINgwIS@bl OA% 6 +indite In'daIt H2$ 26A +indited In'daItId Hc$,Hd$ 36A +indites In'daIts Ha$ 26A +inditing In'daItIN Hb$ 36A +individual ,IndI'vIdZU@l K6%,OA% 5 +individualism ,IndI'vIdZU@lIz@m L@% 7 +individualist ,IndI'vIdZU@lIst K6% 6 +individualistic ,IndI,vIdZU@'lIstIk OA% 7 +individualists ,IndI'vIdZU@lIsts Kj% 6 +individualities ,IndI,vIdZU'&lItIz Mj$ 7 +individuality ,IndI,vIdZU'&lItI M8% 7 +individualize ,IndI'vIdZU@laIz H2$ 66A +individualized ,IndI'vIdZU@laIzd Hc$,Hd$ 66A +individualizes ,IndI'vIdZU@laIzIz Ha$ 76A +individualizing ,IndI'vIdZU@laIzIN Hb$ 76A +individually ,IndI'vIdZU@lI Pu% 6 +individuals ,IndI'vIdZU@lz Kj% 5 +indivisible ,IndI'vIz@bl OA% 5 +indoctrinate In'd0ktrIneIt H2% 46A,14 +indoctrinated In'd0ktrIneItId Hc%,Hd% 56A,14 +indoctrinates In'd0ktrIneIts Ha% 46A,14 +indoctrinating In'd0ktrIneItIN Hb% 56A,14 +indoctrination In,d0ktrI'neISn L@% 5 +indolence 'Ind@l@ns L@% 3 +indolent 'Ind@l@nt OA% 3 +indolently 'Ind@l@ntlI Pu% 4 +indomitable In'd0mIt@bl OA% 5 +indoor 'IndOR OA% 2 +indoors ,In'dOz Pu% 2 +indorse In'dOs H2$ 26A +indorsed In'dOst Hc$,Hd$ 26A +indorses In'dOsIz Ha$ 36A +indorsing In'dOsIN Hb$ 36A +indrawn ,In'drOn OA% 2 +indubitable In'djubIt@bl OA% 5 +indubitably In'djubIt@blI Pu% 5 +induce In'djus H2% 26A,14,17 +induced In'djust Hc%,Hd% 26A,14,17 +inducement In'djusm@nt M6% 3 +inducements In'djusm@nts Mj% 3 +induces In'djusIz Ha% 36A,14,17 +inducing In'djusIN Hb% 36A,14,17 +induct In'dVkt H0$ 26A,14,16B +inducted In'dVktId Hc$,Hd$ 36A,14,16B +inducting In'dVktIN Hb$ 36A,14,16B +induction In'dVkSn K6% 3 +inductions In'dVkSnz Kj% 3 +inductive In'dVktIv OA% 3 +inducts In'dVkts Ha$ 26A,14,16B +indue In'dju H2$ 214 +indued In'djud Hc$,Hd$ 214 +indues In'djuz Ha$ 214 +induing In'djuIN Hb$ 314 +indulge In'dVldZ J2% 23A,6A +indulged In'dVldZd Jc%,Jd% 23A,6A +indulgence In'dVldZ@ns M6% 3 +indulgences In'dVldZ@nsIz Mj% 4 +indulgent In'dVldZ@nt OA% 3 +indulgently In'dVldZ@ntlI Pu% 4 +indulges In'dVldZIz Ja% 33A,6A +indulging In'dVldZIN Jb% 33A,6A +industrial In'dVstrI@l OA% 4 +industrialism In'dVstrI@lIz@m L@% 6 +industrialist In'dVstrI@lIst K6% 5 +industrialists In'dVstrI@lIsts Kj% 5 +industrialization In,dVstrI@laI'zeISn L@% 7 +industrialized In'dVstrI@laIzd OA% 5 +industries 'Ind@strIz Mj% 3 +industrious In'dVstrI@s OA% 4 +industriously In'dVstrI@slI Pu% 5 +industry 'Ind@strI M8% 3 +indwelling ,In'dwelIN OA$ 3 +inebriate I'nibrI@t K6$,OA% 4 +inebriate I'nibrIeIt H2$ 46A +inebriated I'nibrIeItId Hc$,Hd% 56A +inebriates I'nibrI@ts Kj$ 4 +inebriates I'nibrIeIts Ha$ 46A +inebriating I'nibrIeItIN Hb$ 56A +inebriation I,nibrI'eISn K6% 5 +inebriations I,nibrI'eISnz Kj$ 5 +inebriety ,InI'braI@tI L@$ 5 +inedible In'ed@bl OA% 4 +ineffable In'ef@bl OA% 4 +ineffably In'ef@blI Pu% 4 +ineffective ,InI'fektIv OA% 4 +ineffectively ,InI'fektIvlI Pu% 5 +ineffectiveness ,InI'fektIvn@s L@% 5 +ineffectual ,InI'fektSU@l OA% 5 +ineffectuality ,InI,fektSU'&lItI L@% 7 +ineffectually ,InI'fektSU@lI Pu% 6 +inefficiencies ,InI'fIS@nsIz Kj% 5 +inefficiency ,InI'fIS@nsI M8% 5 +inefficient ,InI'fISnt OA% 4 +inefficiently ,InI'fISntlI Pu% 5 +inelastic ,InI'l&stIk OA% 4 +inelegance ,In'elIg@ns K6% 4 +inelegances ,In'elIg@nsIz Kj$ 5 +inelegant ,In'elIg@nt OA% 4 +inelegantly ,In'elIg@ntlI Pu% 5 +ineligibility In,elIdZ@'bIlItI L@% 7 +ineligible In'elIdZ@bl OA% 5 +ineluctable ,InI'lVkt@bl OA% 5 +inept I'nept OA% 2 +ineptitude I'neptItjud M6% 4 +ineptitudes I'neptItjudz Mj$ 4 +ineptly I'neptlI Pu% 3 +inequalities ,InI'kw0lItIz Mj% 5 +inequality ,InI'kw0lItI M8% 5 +inequitable In'ekwIt@bl OA% 5 +inequities In'ekwItIz Mj$ 4 +inequity In'ekwItI M8$ 4 +ineradicable ,InI'r&dIk@bl OA% 6 +inert I'n3t OA% 2 +inertia I'n3S@ L@% 3 +inescapable ,InI'skeIp@bl OA% 5 +inescapably ,InI'skeIp@blI Pu% 5 +inessential ,InI'senSl K6$,OA% 4 +inessentials ,InI'senSlz Kj$ 4 +inestimable In'estIm@bl OA% 5 +inevitability In,evIt@'bIlItI L@% 7 +inevitable In'evIt@bl OA% 5 +inevitably In'evIt@blI Pu% 5 +inexact ,InIg'z&kt OA% 3 +inexactitude ,InIg'z&ktItjud M6% 5 +inexactitudes ,InIg'z&ktItjudz Mj$ 5 +inexcusable ,InIk'skjuz@bl OA% 5 +inexhaustible ,InIg'zOst@bl OA% 5 +inexorable ,In'eks@r@bl OA% 5 +inexorably ,In'eks@r@blI Pu% 5 +inexpediency ,InIk'spidI@nsI L@$ 6 +inexpedient ,InIk'spidI@nt OA$ 5 +inexpensive ,InIk'spensIv OA% 4 +inexpensively ,InIk'spensIvlI Pu% 5 +inexperience ,InIk'spI@rI@ns L@% 5 +inexperienced ,InIk'spI@rI@nst OA% 5 +inexpert In'eksp3t OA% 3 +inexpertly In'eksp3tlI Pu% 4 +inexpiable In'ekspI@bl OA$ 5 +inexplicable ,InIk'splIk@bl OA% 5 +inexpressible ,InIk'spres@bl OA% 5 +inextinguishable ,InIk'stINgwIS@bl OA% 6 +inextricable ,InIk'strIk@bl OA% 5 +inextricably ,InIk'strIk@blI Pu% 5 +infallibility In,f&l@'bIlItI L@% 6 +infallible In'f&l@bl OA% 4 +infamies 'Inf@mIz Mj% 3 +infamous 'Inf@m@s OA% 3 +infamy 'Inf@mI M8% 3 +infancies 'Inf@nsIz Mj$ 3 +infancy 'Inf@nsI M8% 3 +infant 'Inf@nt K6% 2 +infanticide In'f&ntIsaId L@% 4 +infantile 'Inf@ntaIl OA% 3 +infantilism In'f&ntIlIz@m L@% 5 +infantries 'Inf@ntrIz Mj% 3 +infantry 'Inf@ntrI M8% 3 +infantryman 'Inf@ntrIm@n Ki% 4 +infantrymen 'Inf@ntrIm@n Kj% 4 +infants 'Inf@nts Kj% 2 +infatuate In'f&tSUeIt H2$ 4 +infatuated In'f&tSUeItId Hc$,Hd% 5 +infatuates In'f&tSUeIts Ha$ 4 +infatuating In'f&tSUeItIN Hb$ 5 +infatuation In,f&tSU'eISn M6% 5 +infatuations In,f&tSU'eISnz Mj% 5 +infect In'fekt H0% 26A,14 +infected In'fektId Hc%,Hd% 36A,14 +infecting In'fektIN Hb% 36A,14 +infection In'fekSn M6% 3 +infections In'fekSnz Mj% 3 +infectious In'fekS@s OA% 3 +infects In'fekts Ha% 26A,14 +infer In'f3R H4% 26A,9,14 +inference 'Inf@r@ns M6% 3 +inferences 'Inf@r@nsIz Mj% 4 +inferential ,Inf@'renSl OA$ 4 +inferior In'fI@rI@R K6%,OA% 4 +inferiority In,fI@rI'0rItI L@% 6 +inferiors In'fI@rI@z Kj% 4 +infernal In'f3nl OA% 3 +infernally In'f3n@lI Pu% 4 +inferno In'f3n@U K6% 3 +infernos In'f3n@Uz Kj% 3 +inferred In'f3d Hc%,Hd% 26A,9,14 +inferring In'f3rIN Hb% 36A,9,14 +infers In'f3z Ha% 26A,9,14 +infertile In'f3taIl OA% 3 +infertility ,Inf@'tIlItI L@% 5 +infest In'fest H0% 26A +infestation ,Infe'steISn M6% 4 +infestations ,Infe'steISnz Mj% 4 +infested In'festId Hc%,Hd% 36A +infesting In'festIN Hb% 36A +infests In'fests Ha% 26A +infidel 'InfId@l K6% 3 +infidelities ,InfI'delItIz Mj% 5 +infidelity ,InfI'delItI M8% 5 +infidels 'InfId@lz Kj% 3 +infield 'Infild L@% 2 +infiltrate 'InfIltreIt J2% 32A,3A,6A,14 +infiltrated 'InfIltreItId Jc%,Jd% 42A,3A,6A,14 +infiltrates 'InfIltreIts Ja% 32A,3A,6A,14 +infiltrating 'InfIltreItIN Jb% 42A,3A,6A,14 +infiltration ,InfIl'treISn L@% 4 +infinite 'InfIn@t OA% 3 +infinitely 'InfIn@tlI Pu% 4 +infinitesimal ,InfInI'tesIml OA% 6 +infinitive In'fIn@tIv K6%,OA% 4 +infinitives In'fIn@tIvz Kj% 4 +infinitude In'fInItjud M6% 4 +infinitudes In'fInItjudz Mj$ 4 +infinity In'fInItI L@% 4 +infirm In'f3m OA% 2 +infirmaries In'f3m@rIz Kj% 4 +infirmary In'f3m@rI K8% 4 +infirmities In'f3mItIz Mj% 4 +infirmity In'f3mItI M8% 4 +inflame In'fleIm J2$ 22A,6A +inflamed In'fleImd Jc$,Jd% 22A,6A +inflames In'fleImz Ja$ 22A,6A +inflaming In'fleImIN Jb$ 32A,6A +inflammable In'fl&m@bl OA% 4 +inflammation ,Infl@'meISn M6% 4 +inflammations ,Infl@'meISnz Mj% 4 +inflammatory In'fl&m@trI OA% 4 +inflatable In'fleIt@bl OA% 4 +inflate In'fleIt H2% 26A,14 +inflated In'fleItId Hc%,Hd% 36A,14 +inflates In'fleIts Ha% 26A,14 +inflating In'fleItIN Hb% 36A,14 +inflation In'fleISn L@% 3 +inflationary In'fleISnrI OA% 4 +inflect In'flekt H0% 26A +inflected In'flektId Hc%,Hd% 36A +inflecting In'flektIN Hb% 36A +inflection In'flekSn M6% 3 +inflectional In'flekSn@l OA% 4 +inflections In'flekSnz Mj% 3 +inflects In'flekts Ha% 26A +inflexibility In,fleks@'bIlItI L@% 6 +inflexible In'fleks@bl OA% 4 +inflexibly In'fleks@blI Pu% 4 +inflexion In'flekSn M6$ 3 +inflexions In'flekSnz Mj$ 3 +inflict In'flIkt H0% 26A,14 +inflicted In'flIktId Hc%,Hd% 36A,14 +inflicting In'flIktIN Hb% 36A,14 +infliction In'flIkSn M6$ 3 +inflictions In'flIkSnz Mj$ 3 +inflicts In'flIkts Ha% 26A,14 +inflorescence ,InflO'resns L@$ 4 +inflow 'Infl@U M6$ 2 +inflows 'Infl@Uz Mj$ 2 +influence 'InflU@ns H2%,M6% 36A +influenced 'InflU@nst Hc%,Hd% 36A +influences 'InflU@nsIz Ha%,Mj% 46A +influencing 'InflU@nsIN Hb% 46A +influential ,InflU'enSl OA% 4 +influentially ,InflU'enS@lI Pu% 5 +influenza ,InflU'enz@ L@% 4 +influx 'InflVks M7% 2 +influxes 'InflVksIz Mj$ 3 +info 'Inf@U L@% 2 +inform In'fOm J0% 23A,6A,11,14,21 +informal In'fOml OA% 3 +informalities ,InfO'm&lItIz Mj% 5 +informality ,InfO'm&lItI M8% 5 +informally In'fOm@lI Pu% 4 +informant In'fOm@nt K6% 3 +informants In'fOm@nts Kj% 3 +information ,Inf@'meISn L@% 4 +informative In'fOm@tIv OA% 4 +informatively In'fOm@tIvlI Pu% 5 +informed In'fOmd Jc%,Jd% 23A,6A,11,14,21 +informer In'fOm@R K6% 3 +informers In'fOm@z Kj% 3 +informing In'fOmIN Jb% 33A,6A,11,14,21 +informs In'fOmz Ja% 23A,6A,11,14,21 +infra 'Infr@ Pu%,U-% 2 +infra dig ,Infr@ 'dIg Op$ 3 +infra-red ,Infr@-'red OA% 3 +infraction In'fr&kSn M6$ 3 +infractions In'fr&kSnz Mj$ 3 +infrastructure 'Infr@strVktS@R K6% 4 +infrastructures 'Infr@strVktS@z Kj$ 4 +infrequency In'frikw@nsI L@% 4 +infrequent In'frikw@nt OA% 3 +infrequently In'frikw@ntlI Pu% 4 +infringe In'frIndZ J2% 23A,6A +infringed In'frIndZd Jc%,Jd% 23A,6A +infringement In'frIndZm@nt M6% 3 +infringements In'frIndZm@nts Mj% 3 +infringes In'frIndZIz Ja% 33A,6A +infringing In'frIndZIN Jb% 33A,6A +infuriate In'fjU@rIeIt H2% 46A +infuriated In'fjU@rIeItId Hc%,Hd% 56A +infuriates In'fjU@rIeIts Ha% 46A +infuriating In'fjU@rIeItIN Hb% 56A +infuse In'fjuz J2$ 22A,6A,14 +infused In'fjuzd Jc$,Jd$ 22A,6A,14 +infuses In'fjuzIz Ja$ 32A,6A,14 +infusing In'fjuzIN Jb$ 32A,6A,14 +infusion In'fjuZn M6% 3 +infusions In'fjuZnz Mj% 3 +ing_enue '&nZeInju K6% 3 +ing_enues '&nZeInjuz Kj% 3 +ingathering 'Ing&D@rIN K6$ 4 +ingatherings 'Ing&D@rINz Kj$ 4 +ingenious In'dZinI@s OA% 4 +ingeniously In'dZinI@slI Pu% 5 +ingenuity ,IndZI'njuItI L@% 5 +ingenuous In'dZenjU@s OA% 4 +ingenuously In'dZenjU@slI Pu% 5 +ingenuousness In'dZenjU@sn@s L@% 5 +ingest In'dZest H0% 26A +ingested In'dZestId Hc%,Hd% 36A +ingesting In'dZestIN Hb% 36A +ingests In'dZests Ha% 26A +ingle-nook 'INgl-nUk K6$ 3 +ingle-nooks 'INgl-nUks Kj$ 3 +inglorious In'glOrI@s OA% 4 +ingloriously In'glOrI@slI Pu% 5 +ingoing 'Ing@UIN OA% 3 +ingot 'INg@t K6$ 2 +ingots 'INg@ts Kj$ 2 +ingraft In'grAft H0$ 26A,14 +ingrafted In'grAftId Hc$,Hd$ 36A,14 +ingrafting In'grAftIN Hb$ 36A,14 +ingrafts In'grAfts Ha$ 26A,14 +ingrained ,In'greInd OA% 2 +ingratiate In'greISIeIt H2% 414 +ingratiated In'greISIeItId Hc%,Hd% 514 +ingratiates In'greISIeIts Ha% 414 +ingratiating In'greISIeItIN Hb% 514 +ingratiatingly In'greISIeItINlI Pu% 6 +ingratitude In'gr&tItjud L@% 4 +ingredient In'gridI@nt K6% 4 +ingredients In'gridI@nts Kj% 4 +ingress 'Ingres L@$ 2 +ingrowing 'Ingr@UIN OA% 3 +inhabit In'h&bIt H0% 36A +inhabitable In'h&bIt@bl OA% 5 +inhabitant In'h&bIt@nt K6% 4 +inhabitants In'h&bIt@nts Kj% 4 +inhabited In'h&bItId Hc%,Hd% 46A +inhabiting In'h&bItIN Hb% 46A +inhabits In'h&bIts Ha% 36A +inhalation ,Inh@'leISn K6% 4 +inhalations ,Inh@'leISnz Kj% 4 +inhale In'heIl J2% 22A,6A +inhaled In'heIld Jc%,Jd% 22A,6A +inhaler In'heIl@R K6% 3 +inhalers In'heIl@z Kj% 3 +inhales In'heIlz Ja% 22A,6A +inhaling In'heIlIN Jb% 32A,6A +inharmonious ,InhA'm@UnI@s OA$ 5 +inherent In'hI@r@nt OA% 3 +inherently In'hI@r@ntlI Pu% 4 +inherit In'herIt J0% 32A,6A +inheritance In'herIt@ns M6% 4 +inheritances In'herIt@nsIz Mj% 5 +inherited In'herItId Jc%,Jd% 42A,6A +inheriting In'herItIN Jb% 42A,6A +inheritor In'herIt@R K6% 4 +inheritors In'herIt@z Kj% 4 +inherits In'herIts Ja% 32A,6A +inhibit In'hIbIt H0% 36A,14 +inhibited In'hIbItId Hc%,Hd% 46A,14 +inhibiting In'hIbItIN Hb% 46A,14 +inhibition ,InI'bISn M6% 4 +inhibitions ,InI'bISnz Mj% 4 +inhibitor In'hIbIt@R K6% 4 +inhibitors In'hIbIt@z Kj% 4 +inhibitory In'hIbItrI OA$ 4 +inhibits In'hIbIts Ha% 36A,14 +inhospitable ,Inh0'spIt@bl OA% 5 +inhuman In'hjum@n OA% 3 +inhumane ,Inhju'meIn OA% 3 +inhumanely ,Inhju'meInlI Pu% 4 +inhumanities ,Inhju'm&nItIz Mj$ 5 +inhumanity ,Inhju'm&nItI M8% 5 +inimical I'nImIkl OA% 4 +inimitable I'nImIt@bl OA% 5 +inimitably I'nImIt@blI Pu% 5 +iniquities I'nIkwItIz Mj% 4 +iniquitous I'nIkwIt@s OA% 4 +iniquitously I'nIkwIt@slI Pu% 5 +iniquity I'nIkwItI M8% 4 +initial I'nISl H4%,K6%,OA% 36A +initialled I'nISld Hc%,Hd% 36A +initialling I'nIS@lIN Hb% 46A +initially I'nIS@lI Pu% 4 +initials I'nISlz Ha%,Kj% 36A +initiate I'nISI@t K6%,OA% 4 +initiate I'nISIeIt H2% 46A,14 +initiated I'nISIeItId Hc%,Hd% 56A,14 +initiates I'nISI@ts Kj% 4 +initiates I'nISIeIts Ha% 46A,14 +initiating I'nISIeItIN Hb% 56A,14 +initiation I,nISI'eISn L@% 5 +initiative I'nIS@tIv M6% 4 +initiatives I'nIS@tIvz Mj% 4 +inject In'dZekt H0% 26A,14 +injected In'dZektId Hc%,Hd% 36A,14 +injecting In'dZektIN Hb% 36A,14 +injection In'dZekSn M6% 3 +injections In'dZekSnz Mj% 3 +injects In'dZekts Ha% 26A,14 +injudicious ,IndZu'dIS@s OA% 4 +injudiciously ,IndZu'dIS@slI Pu% 5 +injunction In'dZVNkSn K6% 3 +injunctions In'dZVNkSnz Kj% 3 +injure 'IndZ@R H2% 26A +injured 'IndZ@d Hc%,Hd%,OA% 26A +injures 'IndZ@z Ha% 26A +injuries 'IndZ@rIz Mj% 3 +injuring 'IndZ@rIN Hb% 36A +injurious In'dZU@rI@s OA% 4 +injury 'IndZ@rI M8% 3 +injustice In'dZVstIs M6% 3 +injustices In'dZVstIsIz Mj% 4 +ink INk H0%,M6% 16A,15B +ink-bottle 'INk-b0tl K6% 3 +ink-bottles 'INk-b0tlz Kj% 3 +ink-pad 'INk-p&d K6% 2 +ink-pads 'INk-p&dz Kj% 2 +ink-pot 'INk-p0t K6% 2 +ink-pots 'INk-p0ts Kj% 2 +inked INkt Hc%,Hd% 16A,15B +inkier 'INkI@R Or$ 3 +inkiest 'INkIIst Os$ 3 +inking 'INkIN Hb% 26A,15B +inkling 'INklIN K6% 2 +inklings 'INklINz Kj$ 2 +inks INks Ha%,Mj% 16A,15B +inkstand 'Inkst&nd K6% 2 +inkstands 'Inkst&ndz Kj% 2 +inkwell 'INkwel K6% 2 +inkwells 'INkwelz Kj% 2 +inky 'INkI OD% 2 +inlaid ,In'leId Hc$,Hd% 26A,14 +inland 'Inl@nd OA% 2 +inland In'l&nd Pu% 2 +inlay 'InleI M6% 2 +inlay ,In'leI H5$ 26A,14 +inlaying ,In'leIIN Hb$ 36A,14 +inlays 'InleIz Mj$ 2 +inlays ,In'leIz Ha$ 26A,14 +inlet 'Inlet K6% 2 +inlets 'Inlets Kj% 2 +inmate 'InmeIt K6% 2 +inmates 'InmeIts Kj% 2 +inmost 'Inm@Ust OA% 2 +inn In K6% 1 +innards 'In@dZ Kj% 2 +innate I'neIt OA% 2 +innately I'neItlI Pu% 3 +inner 'In@R OA% 2 +innermost 'In@m@Ust OA% 3 +inning 'InIN K6$ 2 +innings 'InINz K9% 2 +innkeeper 'Inkip@R K6% 3 +innkeepers 'Inkip@z Kj% 3 +innocence 'In@sns L@% 3 +innocent 'In@snt K6%,OA% 3 +innocently 'In@sntlI Pu% 4 +innocents 'In@snts Kj% 3 +innocuous I'n0kjU@s OA% 4 +innovate 'In@veIt I2$ 32A +innovated 'In@veItId Ic$,Id$ 42A +innovates 'In@veIts Ia$ 32A +innovating 'In@veItIN Ib$ 42A +innovation ,In@'veISn M6% 4 +innovations ,In@'veISnz Mj% 4 +innovator 'In@veIt@R K6% 4 +innovators 'In@veIt@z Kj% 4 +inns Inz Kj% 1 +innuendo ,Inju'end@U K7% 4 +innuendoes ,Inju'end@Uz Kj% 4 +innumerable I'njum@r@bl OA% 5 +inoculate I'n0kjUleIt H2% 46A,14 +inoculated I'n0kjUleItId Hc%,Hd% 56A,14 +inoculates I'n0kjUleIts Ha% 46A,14 +inoculating I'n0kjUleItIN Hb% 56A,14 +inoculation I,n0kjU'leISn M6% 5 +inoculations I,n0kjU'leISnz Mj% 5 +inoffensive ,In@'fensIv OA% 4 +inoffensively ,In@'fensIvlI Pu% 5 +inoperable ,In'0p@r@bl OA% 5 +inoperative ,In'0p@r@tIv OA% 5 +inopportune ,In'0p@tjun OA% 4 +inopportunely ,In'0p@tjunlI Pu% 5 +inordinate I'nOdIn@t OA% 4 +inordinately I'nOdIn@tlI Pu% 5 +inorganic ,InO'g&nIk OA% 4 +inorganically ,InO'g&nIklI Pu% 5 +inpouring 'InpOrIN K6$,OA$ 3 +inpourings 'InpOrINz Kj$ 3 +input 'InpUt M6% 2 +inputs 'InpUts Mj$ 2 +inquest 'Inkwest K6% 2 +inquests 'Inkwests Kj% 2 +inquietude In'kwaI@tjud L@$ 4 +inquire In'kwaI@R J2% 22A,3A,6A,8,10,14 +inquired In'kwaI@d Jc%,Jd% 22A,3A,6A,8,10,14 +inquirer In'kwaI@r@R K6% 3 +inquirers In'kwaI@r@z Kj% 3 +inquires In'kwaI@z Ja% 22A,3A,6A,8,10,14 +inquiries In'kwaI@rIz Mj% 3 +inquiring In'kwaI@rIN Jb%,OA% 32A,3A,6A,8,10,14 +inquiringly In'kwaI@rINlI Pu% 4 +inquiry In'kwaI@rI M8% 3 +inquisition ,InkwI'zISn M6% 4 +inquisitions ,InkwI'zISnz Mj% 4 +inquisitive In'kwIz@tIv OA% 4 +inquisitively In'kwIz@tIvlI Pu% 5 +inquisitiveness In'kwIz@tIvn@s L@% 5 +inquisitor In'kwIzIt@R K6% 4 +inquisitorial In,kwIzI'tOrI@l OA% 6 +inquisitors In'kwIzIt@z Kj% 4 +inroad 'Inr@Ud K6% 2 +inroads 'Inr@Udz Kj% 2 +inrush 'InrVS K7$ 2 +inrushes 'InrVSIz Kj$ 3 +ins 'IntSIz Y)% 2 +ins Inz Kj$ 1 +insane In'seIn OA% 2 +insanely In'seInlI Pu% 3 +insanitary In's&nItrI OA% 4 +insanity In's&nItI L@% 4 +insatiable In'seIS@bl OA% 4 +insatiably In'seIS@blI Pu% 4 +insatiate In'seISI@t OA$ 4 +inscribe In'skraIb H2% 26A,15A +inscribed In'skraIbd Hc%,Hd% 26A,15A +inscribes In'skraIbz Ha% 26A,15A +inscribing In'skraIbIN Hb% 36A,15A +inscription In'skrIpSn K6% 3 +inscriptions In'skrIpSnz Kj% 3 +inscrutable In'skrut@bl OA% 4 +insect 'Insekt K6% 2 +insect-powder 'Insekt-paUd@R K6% 4 +insect-powders 'Insekt-paUd@z Kj% 4 +insecticide In'sektIsaId K6% 4 +insecticides In'sektIsaIdz Kj% 4 +insectivorous ,Insek'tIv@r@s OA% 5 +insects 'Insekts Kj% 2 +insecure ,InsI'kjU@R OA% 3 +insecurely ,InsI'kjU@lI Pu% 4 +insecurity ,InsI'kjU@rItI L@% 5 +inseminate In'semIneIt H2$ 46A +inseminated In'semIneItId Hc$,Hd$ 56A +inseminates In'semIneIts Ha$ 46A +inseminating In'semIneItIN Hb$ 56A +insemination In,semI'neISn L@% 5 +insensate In'senseIt OA$ 3 +insensibility In,sens@'bIlItI L@% 6 +insensible In'sens@bl OA% 4 +insensibly In'sens@blI Pu% 4 +insensitive In'sens@tIv OA% 4 +insensitively In'sens@tIvlI Pu% 5 +insensitivity In,sens@'tIvItI L@% 6 +insentient In'senSnt OA$ 3 +inseparable In'sepr@bl OA% 4 +insert 'Ins3t K6% 2 +insert In's3t H0% 26A,15A +inserted In's3tId Hc%,Hd% 36A,15A +inserting In's3tIN Hb% 36A,15A +insertion In's3Sn M6% 3 +insertions In's3Snz Mj% 3 +inserts 'Ins3ts Kj% 2 +inserts In's3ts Ha% 26A,15A +inset 'Inset K6% 2 +inset ,In'set H5$,Hc$,Hd$ 2 +insets 'Insets Kj$ 2 +insets ,In'sets Ha$ 2 +insetting ,In'setIN Hb$ 3 +inshore ,In'SOR OA%,Pu% 2 +inside In'saId K6%,OA%,Pu%,T-% 2 +insider In'saId@R K6% 3 +insiders In'saId@z Kj% 3 +insides In'saIdz Kj% 2 +insidious In'sIdI@s OA% 4 +insidiously In'sIdI@slI Pu% 5 +insidiousness In'sIdI@sn@s L@% 5 +insight 'InsaIt M6% 2 +insights 'InsaIts Mj% 2 +insignia In'sIgnI@ Kj% 4 +insignificance ,InsIg'nIfIk@ns L@% 5 +insignificant ,InsIg'nIfIk@nt OA% 5 +insignificantly ,InsIg'nIfIk@ntlI Pu% 6 +insincere ,InsIn'sI@R OA% 3 +insincerely ,InsIn'sI@lI Pu% 4 +insincerity ,InsIn'serItI L@$ 5 +insinuate In'sInjUeIt H2$ 46A,9,14 +insinuated In'sInjUeItId Hc$,Hd$ 56A,9,14 +insinuates In'sInjUeIts Ha$ 46A,9,14 +insinuating In'sInjUeItIN Hb% 56A,9,14 +insinuatingly In'sInjUeItINlI Pu% 6 +insinuation In,sInjU'eISn M6% 5 +insinuations In,sInjU'eISnz Mj% 5 +insipid In'sIpId OA% 3 +insipidity ,InsI'pIdItI L@$ 5 +insipidly In'sIpIdlI Pu% 4 +insipidness In'sIpIdn@s L@$ 4 +insist In'sIst J0% 23A,3B +insisted In'sIstId Jc%,Jd% 33A,3B +insistence In'sIst@ns L@% 3 +insistent In'sIst@nt OA% 3 +insisting In'sIstIN Jb% 33A,3B +insists In'sIsts Ja% 23A,3B +insofar ,Ins@'fAR Pu% 3 +insole 'Ins@Ul K6% 2 +insolence 'Ins@l@ns L@% 3 +insolent 'Ins@l@nt OA% 3 +insolently 'Ins@l@ntlI Pu% 4 +insoles 'Ins@Ulz Kj% 2 +insoluble In's0ljUbl OA% 4 +insolvency In's0lv@nsI L@% 4 +insolvent In's0lv@nt K6$,OA% 3 +insolvents In's0lv@nts Kj$ 3 +insomnia In's0mnI@ L@% 4 +insomniac In's0mnI&k K6% 4 +insomniacs In's0mnI&ks Kj% 4 +insomuch ,Ins@U'mVtS Pu% 3 +insouciance In'susI@ns L@$ 4 +insouciant In'susI@nt OA$ 4 +inspan In'sp&n H4$ 2 +inspanned In'sp&nd Hc$,Hd$ 2 +inspanning In'sp&nIN Hb$ 3 +inspans In'sp&nz Ha$ 2 +inspect In'spekt H0% 26A +inspected In'spektId Hc%,Hd% 36A +inspecting In'spektIN Hb% 36A +inspection In'spekSn M6% 3 +inspections In'spekSnz Mj% 3 +inspector In'spekt@R K6% 3 +inspectorate In'spekt@r@t K6% 4 +inspectorates In'spekt@r@ts Kj% 4 +inspectors In'spekt@z Kj% 3 +inspects In'spekts Ha% 26A +inspiration ,Insp@'reISn M6% 4 +inspirational ,Insp@'reIS@nl OA% 5 +inspirationally ,Insp@'reISn@lI Pu% 5 +inspirations ,Insp@'reISnz Mj% 4 +inspire In'spaI@R H2% 26A,14,17 +inspired In'spaI@d Hc%,Hd%,OA% 26A,14,17 +inspires In'spaI@z Ha% 26A,14,17 +inspiring In'spaI@rIN Hb% 36A,14,17 +instabilities ,Inst@'bIlItIz Mj$ 5 +instability ,Inst@'bIlItI M8% 5 +install In'stOl H0% 26A,14 +installation ,Inst@'leISn M6% 4 +installations ,Inst@'leISnz Mj% 4 +installed In'stOld Hc%,Hd% 26A,14 +installing In'stOlIN Hb% 36A,14 +installs In'stOlz Ha% 26A,14 +instalment In'stOlm@nt K6% 3 +instalments In'stOlm@nts Kj% 3 +instance 'Inst@ns H2$,K6% 26A +instanced 'Inst@nst Hc$,Hd$ 26A +instances 'Inst@nsIz Ha$,Kj% 36A +instancing 'Inst@nsIN Hb$ 36A +instant 'Inst@nt K6%,OA% 2 +instantaneous ,Inst@n'teInI@s OA% 5 +instantaneously ,Inst@n'teInI@slI Pu% 6 +instantly 'Inst@ntlI Pu%,V-% 3 +instants 'Inst@nts Kj% 2 +instead In'sted Pu% 2 +instep 'Instep K6% 2 +insteps 'Insteps Kj% 2 +instigate 'InstIgeIt H2% 36A,17 +instigated 'InstIgeItId Hc%,Hd% 46A,17 +instigates 'InstIgeIts Ha% 36A,17 +instigating 'InstIgeItIN Hb% 46A,17 +instigation ,InstI'geISn K6% 4 +instigations ,InstI'geISnz Kj$ 4 +instigator 'InstIgeIt@R K6% 4 +instigators 'InstIgeIt@z Kj% 4 +instil In'stIl H4% 26A,14 +instillation ,InstI'leISn K6$ 4 +instillations ,InstI'leISnz Kj$ 4 +instilled In'stIld Hc%,Hd% 26A,14 +instilling In'stIlIN Hb% 36A,14 +instils In'stIlz Ha% 26A,14 +instinct 'InstINkt M6% 2 +instinct ,In'stINkt Op% 2 +instinctive In'stINktIv OA% 3 +instinctively In'stINktIvlI Pu% 4 +instincts 'InstINkts Mj% 2 +institute 'InstItjut H2%,K6% 36A,14 +instituted 'InstItjutId Hc%,Hd% 46A,14 +institutes 'InstItjuts Ha%,Kj% 36A,14 +instituting 'InstItjutIN Hb% 46A,14 +institution ,InstI'tjuSn M6% 4 +institutional ,InstI'tjuSn@l OA% 5 +institutionalize ,InstI'tjuS@n@laIz H2% 66A +institutionalized ,InstI'tjuS@n@laIzd Hc%,Hd% 66A +institutionalizes ,InstI'tjuS@n@laIzIz Ha% 76A +institutionalizing ,InstI'tjuS@n@laIzIN Hb% 76A +institutionally ,InstI'tjuSn@lI Pu% 5 +institutions ,InstI'tjuSnz Mj% 4 +instruct In'strVkt H0% 26A,11,15A,17,20,21 +instructed In'strVktId Hc%,Hd% 36A,11,15A,17,20,21 +instructing In'strVktIN Hb% 36A,11,15A,17,20,21 +instruction In'strVkSn M6% 3 +instructional In'strVkSn@l OA% 4 +instructions In'strVkSnz Mj% 3 +instructive In'strVktIv OA% 3 +instructively In'strVktIvlI Pu% 4 +instructor In'strVkt@R K6% 3 +instructors In'strVkt@z Kj% 3 +instructress In'strVktrIs K7% 3 +instructresses In'strVktrIsIz Kj$ 4 +instructs In'strVkts Ha% 26A,11,15A,17,20,21 +instrument 'InstrUm@nt K6% 3 +instrumental ,InstrU'mentl OA% 4 +instrumentalist ,InstrU'ment@lIst K6% 5 +instrumentalists ,InstrU'ment@lIsts Kj% 5 +instrumentality ,InstrUmen't&lItI L@$ 6 +instrumentation ,InstrUmen'teISn L@% 5 +instruments 'InstrUm@nts Kj% 3 +insubordinate ,Ins@'bOdIn@t OA% 5 +insubordination ,Ins@,bOdI'neISn M6% 6 +insubordinations ,Ins@,bOdI'neISnz Mj$ 6 +insubstantial ,Ins@b'st&nSl OA% 4 +insubstantially ,Ins@b'st&nS@lI Pu% 5 +insufferable In'sVfr@bl OA% 4 +insufficiency ,Ins@'fISnsI L@% 5 +insufficient ,Ins@'fISnt OA% 4 +insufficiently ,Ins@'fISntlI Pu% 5 +insular 'InsjUl@R OA% 3 +insularism 'InsjUl@rIz@m L@$ 5 +insularity ,InsjU'l&rItI L@% 5 +insulate 'InsjUleIt H2% 36A,14 +insulated 'InsjUleItId Hc%,Hd% 46A,14 +insulates 'InsjUleIts Ha% 36A,14 +insulating 'InsjUleItIN Hb% 46A,14 +insulation ,InsjU'leISn L@% 4 +insulator 'InsjUleIt@R K6% 4 +insulators 'InsjUleIt@z Kj% 4 +insulin 'InsjUlIn L@% 3 +insult 'InsVlt M6% 2 +insult In'sVlt H0% 26A +insulted In'sVltId Hc%,Hd% 36A +insulting In'sVltIN Hb%,OA% 36A +insultingly In'sVltINlI Pu% 4 +insults 'InsVlts Mj% 2 +insults In'sVlts Ha% 26A +insuperable In'sjupr@bl OA% 4 +insuperably In'sjupr@blI Pu% 5 +insupportable ,Ins@'pOt@bl OA% 5 +insurance In'SU@r@ns M6% 3 +insurances In'SU@r@nsIz Mj$ 4 +insure In'SU@R H2% 26A,14 +insured In'SU@d Hc%,Hd% 26A,14 +insures In'SU@z Ha% 26A,14 +insurgent In's3dZ@nt K6%,OA% 3 +insurgents In's3dZ@nts Kj% 3 +insuring In'SU@rIN Hb% 36A,14 +insurmountable ,Ins@'maUnt@bl OA% 5 +insurrection ,Ins@'rekSn M6% 4 +insurrections ,Ins@'rekSnz Mj% 4 +intact In't&kt OA% 2 +intaglio In'tAlI@U M6$ 4 +intaglios In'tAlI@Uz Mj$ 4 +intake 'InteIk M6% 2 +intakes 'InteIks Mj% 2 +intangibility In,t&ndZ@'bIlItI L@$ 6 +intangible In't&ndZ@bl OA% 4 +intangibles In't&ndZ@blz K6% 4 +integer 'IntIdZ@R K6$ 3 +integers 'IntIdZ@z Kj$ 3 +integral 'IntIgr@l OA% 3 +integrally 'IntIgr@lI Pu% 4 +integrate 'IntIgreIt H2% 32A,6A +integrated 'IntIgreItId Hc%,Hd% 42A,6A +integrates 'IntIgreIts Ha% 32A,6A +integrating 'IntIgreItIN Hb% 42A,6A +integration ,IntI'greISn L@% 4 +integrity In'tegrItI L@% 4 +integument In'tegjUm@nt K6$ 4 +integuments In'tegjUm@nts Kj$ 4 +intellect 'Int@lekt M6% 3 +intellects 'Int@lekts Mj% 3 +intellectual ,Int@'lektSU@l K6%,OA% 5 +intellectually ,Int@'lektSU@lI Pu% 6 +intellectuals ,Int@'lektSU@lz Kj% 5 +intelligence In'telIdZ@ns L@% 4 +intelligent In'telIdZ@nt OA% 4 +intelligently In'telIdZ@ntlI Pu% 5 +intelligentsia In,telI'dZentsI@ K6% 6 +intelligentsias In,telI'dZentsI@z Kj$ 6 +intelligibility In,telIdZ@'bIlItI L@$ 7 +intelligible In'telIdZ@bl OA% 5 +intelligibly In'telIdZ@blI Pu% 5 +intemperance In'temp@r@ns L@% 4 +intemperate In'temp@r@t OA% 4 +intemperately In'temp@r@tlI Pu% 5 +intend In'tend H0% 26A,6D,7A,9,14,17 +intended In'tendId Hc%,Hd% 36A,6D,7A,9,14,17 +intending In'tendIN Hb% 36A,6D,7A,9,14,17 +intends In'tendz Ha% 26A,6D,7A,9,14,17 +intense In'tens OA% 2 +intensely In'tenslI Pu% 3 +intensification In,tensIfI'keISn M6% 6 +intensifications In,tensIfI'keISnz Mj$ 6 +intensified In'tensIfaId Jc%,Jd% 42A,6A +intensifies In'tensIfaIz Ja% 42A,6A +intensify In'tensIfaI J3% 42A,6A +intensifying In'tensIfaIIN Jb% 52A,6A +intensities In'tensItIz Mj% 4 +intensity In'tensItI M8% 4 +intensive In'tensIv OA% 3 +intensively In'tensIvlI Pu% 4 +intent In'tent M6%,OA% 2 +intention In'tenSn M6% 3 +intentional In'tenSn@l OA% 4 +intentionally In'tenSn@lI Pu% 4 +intentions In'tenSnz Mj% 3 +intently In'tentlI Pu% 3 +intentness In'tentn@s L@$ 3 +intents In'tents Mj% 2 +inter In't3R H4% 2 +inter alia ,Int@r 'eIlI@ Pu% 5 +interact ,Int@'r&kt I0% 3 +interacted ,Int@'r&ktId Ic%,Id% 4 +interacting ,Int@'r&ktIN Ib% 4 +interaction ,Int@'r&kSn K6% 4 +interactions ,Int@'r&kSnz Kj% 4 +interactive ,Int@'r&ktIv OA$ 4 +interacts ,Int@'r&kts Ia% 3 +interbred ,Int@'bred Jc%,Jd% 32A,6A +interbreed ,Int@'brid J5% 32A,6A +interbreeding ,Int@'bridIN Jb% 42A,6A +interbreeds ,Int@'bridz Ja% 32A,6A +intercalary In't3k@l@rI OA$ 5 +intercede ,Int@'sid I2% 33A +interceded ,Int@'sidId Ic%,Id% 43A +intercedes ,Int@'sidz Ia% 33A +interceding ,Int@'sidIN Ib% 43A +intercept ,Int@'sept H0% 36A +intercepted ,Int@'septId Hc%,Hd% 46A +intercepting ,Int@'septIN Hb% 46A +interception ,Int@'sepSn M6% 4 +interceptions ,Int@'sepSnz Mj% 4 +interceptor ,Int@'sept@R K6% 4 +interceptors ,Int@'sept@z Kj% 4 +intercepts ,Int@'septs Ha% 36A +intercession ,Int@'seSn M6% 4 +intercessions ,Int@'seSnz Mj$ 4 +interchange 'Int@tSeIndZ M6% 3 +interchange ,Int@'tSeIndZ H2% 32A,6A +interchangeable ,Int@'tSeIndZ@bl OA% 5 +interchangeably ,Int@'tSeIndZ@blI Pu% 5 +interchanged ,Int@'tSeIndZd Hc%,Hd% 32A,6A +interchanges 'Int@tSeIndZIz Mj% 4 +interchanges ,Int@'tSeIndZIz Ha% 42A,6A +interchanging ,Int@'tSeIndZIN Hb% 42A,6A +intercollegiate ,Int@k@'lidZI@t OA% 6 +intercom 'Int@k0m K6% 3 +intercommunicate ,Int@k@'mjunIkeIt I2$ 6 +intercommunicated ,Int@k@'mjunIkeItId Ic$,Id$ 7 +intercommunicates ,Int@k@'mjunIkeIts Ia$ 6 +intercommunicating ,Int@k@'mjunIkeItIN Ib$ 7 +intercommunication ,Int@k@,mjunI'keISn L@$ 7 +intercommunion ,Int@k@'mjunI@n K6$ 5 +intercommunions ,Int@k@'mjunI@nz Kj$ 5 +intercoms 'Int@k0mz Kj% 3 +interconnect ,Int@k@'nekt J0% 46A +interconnected ,Int@k@'nektId Jc%,Jd% 56A +interconnectedness ,Int@k@'nektIdnIs L@% 6 +interconnecting ,Int@k@'nektIN Jb% 56A +interconnection ,Int@k@'nekSn M6% 5 +interconnections ,Int@k@'nekSnz Mj% 5 +interconnects ,Int@k@'nekts Ja% 46A +intercontinental ,Int@,k0ntI'nentl OA% 6 +intercourse 'Int@kOs L@% 3 +interdenominational ,Int@dI,n0mI'neIS@nl OA% 8 +interdepartmental ,Int@,dipAt'mentl OA% 6 +interdepartmentally ,Int@,dipAt'ment@lI Pu% 7 +interdependence ,Int@dI'pend@ns K6% 5 +interdependences ,Int@dI'pend@nsIz Kj% 6 +interdependent ,Int@dI'pend@nt OA% 5 +interdict 'Int@dIkt K6$ 3 +interdict ,Int@'dIkt H0$ 36A +interdicted ,Int@'dIktId Hc$,Hd$ 46A +interdicting ,Int@'dIktIN Hb$ 46A +interdiction ,Int@'dIkSn M6$ 4 +interdictions ,Int@'dIkSnz Mj$ 4 +interdicts 'Int@dIkts Kj$ 3 +interdicts ,Int@'dIkts Ha$ 36A +interdisciplinary ,Int@,dIsI'plIn@rI OA% 7 +interest 'Intr@st H0*,M6* 26A,14 +interested 'Intr@stId Hc%,Hd%,OA% 36A,14 +interesting 'Intr@stIN Hb%,OA% 36A,14 +interestingly 'Intr@stINlI Pu% 4 +interests 'Intr@sts Ha%,Mj% 26A,14 +interface 'Int@feIs K6% 3 +interfaces 'Int@feIsIz Kj% 4 +interfere ,Int@'fI@R I2% 32A,3A +interfered ,Int@'fI@d Ic%,Id% 32A,3A +interference ,Int@'fI@r@ns L@% 4 +interferes ,Int@'fI@z Ia% 32A,3A +interfering ,Int@'fI@rIN Ib% 42A,3A +interim 'Int@rIm L@% 3 +interior In'tI@rI@R K6%,OA% 4 +interiors In'tI@rI@z Kj% 4 +interject ,Int@'dZekt H0% 36A +interjected ,Int@'dZektId Hc%,Hd% 46A +interjecting ,Int@'dZektIN Hb% 46A +interjection ,Int@'dZekSn K6% 4 +interjections ,Int@'dZekSnz Kj% 4 +interjects ,Int@'dZekts Ha% 36A +interlace ,Int@'leIs J2$ 32A,6A,14 +interlaced ,Int@'leIst Jc$,Jd% 32A,6A,14 +interlaces ,Int@'leIsIz Ja$ 42A,6A,14 +interlacing ,Int@'leIsIN Jb$ 42A,6A,14 +interlard ,Int@'lAd H0$ 314 +interlarded ,Int@'lAdId Hc$,Hd% 414 +interlarding ,Int@'lAdIN Hb$ 414 +interlards ,Int@'lAdz Ha$ 314 +interleave ,Int@'liv H2$ 36A,14 +interleaved ,Int@'livd Hc$,Hd% 36A,14 +interleaves ,Int@'livz Ha$ 36A,14 +interleaving ,Int@'livIN Hb$ 46A,14 +interlink ,Int@'lINk J0$ 32A,6A +interlinked ,Int@'lINkt Jc$,Jd% 32A,6A +interlinking ,Int@'lINkIN Jb$ 42A,6A +interlinks ,Int@'lINks Ja$ 32A,6A +interlock ,Int@'l0k J0% 32A,6A +interlocked ,Int@'l0kt Jc%,Jd% 32A,6A +interlocking ,Int@'l0kIN Jb% 42A,6A +interlocks ,Int@'l0ks Ja$ 32A,6A +interlocutor ,Int@'l0kjUt@R K6% 5 +interlocutors ,Int@'l0kjUt@z Kj% 5 +interloper 'Int@l@Up@R K6% 4 +interlopers 'Int@l@Up@z Kj% 4 +interlude 'Int@lud K6% 3 +interludes 'Int@ludz Kj% 3 +intermarriage ,Int@'m&rIdZ M6% 4 +intermarriages ,Int@'m&rIdZIz Mj% 5 +intermarried ,Int@'m&rId Ic%,Id% 42A,3A +intermarries ,Int@'m&rIz Ia$ 42A,3A +intermarry ,Int@'m&rI I3% 42A,3A +intermarrying ,Int@'m&rIIN Ib% 52A,3A +intermediaries ,Int@'midI@rIz Kj% 5 +intermediary ,Int@'midI@rI K8% 5 +intermediate ,Int@'midI@t K6%,OA% 5 +intermediately ,Int@'midI@tlI Pu$ 6 +intermediates ,Int@'midI@ts Kj$ 5 +interment In't3m@nt M6$ 3 +interments In't3m@nts Mj$ 3 +intermezzi ,Int@'metsI Kj$ 4 +intermezzo ,Int@'mets@U K6% 4 +intermezzos ,Int@'mets@Uz Kj$ 4 +interminable In't3mIn@bl OA% 5 +interminably In't3mIn@blI Pu% 5 +intermingle ,Int@'mINgl J2% 46A,14 +intermingled ,Int@'mINgld Jc%,Jd% 46A,14 +intermingles ,Int@'mINglz Ja% 46A,14 +intermingling ,Int@'mINglIN Jb% 46A,14 +intermission ,Int@'mISn K6% 4 +intermissions ,Int@'mISnz Kj% 4 +intermittent ,Int@'mItnt OA% 4 +intermittently ,Int@'mItntlI Pu% 5 +intermix ,Int@'mIks J1$ 3 +intermixed ,Int@'mIkst Jc$,Jd% 3 +intermixes ,Int@'mIksIz Ja$ 4 +intermixing ,Int@'mIksIN Jb$ 4 +intermixture ,Int@'mIkstS@R K6$ 4 +intermixtures ,Int@'mIkstS@z Kj$ 4 +intern 'Int3n K6% 2 +intern In't3n H0% 26A +internal In't3nl OA% 3 +internalize In't3n@laIz H2% 46A +internalized In't3n@laIzd Hc%,Hd% 46A +internalizes In't3n@laIzIz Ha% 56A +internalizing In't3n@laIzIN Hb% 56A +internally In't3n@lI Pu% 4 +international ,Int@'n&S@nl K6%,OA% 5 +internationale ,Int@n&S@'nAl K6% 5 +internationales ,Int@n&S@'nAlz Kj$ 5 +internationalism ,Int@'n&Sn@lIz@m L@% 6 +internationalist ,Int@'n&Sn@lIst K6% 5 +internationalists ,Int@'n&Sn@lIsts Kj% 5 +internationalization ,Int@,n&S@n@laI'zeISn M6% 8 +internationalizations ,Int@,n&S@n@laI'zeISnz Mj$ 8 +internationalize ,Int@'n&S@n@laIz H2% 66A +internationalized ,Int@'n&S@n@laIzd Hc%,Hd% 66A +internationalizes ,Int@'n&S@n@laIzIz Ha% 76A +internationalizing ,Int@'n&S@n@laIzIN Hb% 76A +internationally ,Int@'n&Sn@lI Pu% 5 +internationals ,Int@'n&S@nlz Kj% 5 +interne 'Int3n K6$ 2 +internecine ,Int@'nisaIn OA% 4 +interned In't3nd Hc%,Hd% 26A +internee ,Int3'ni K6% 3 +internees ,Int3'niz Kj% 3 +internes 'Int3nz Kj$ 2 +interning In't3nIN Hb$ 36A +internment In't3nm@nt L@% 3 +interns 'Int3nz Kj% 2 +interns In't3nz Ha% 26A +interpellate In't3p@leIt H2$ 46A +interpellated In't3p@leItId Hc$,Hd% 56A +interpellates In't3p@leIts Ha$ 46A +interpellating In't3p@leItIN Hb$ 56A +interpellation In,t3p@'leISn M6$ 5 +interpellations In,t3p@'leISnz Mj$ 5 +interphone 'Int@f@Un K6$ 3 +interphones 'Int@f@Unz Kj$ 3 +interplanetary ,Int@'pl&nItrI OA% 5 +interplay 'Int@pleI L@% 3 +interpolate In't3p@leIt H2% 46A +interpolated In't3p@leItId Hc%,Hd% 56A +interpolates In't3p@leIts Ha% 46A +interpolating In't3p@leItIN Hb% 56A +interpolation In,t3p@'leISn M6% 5 +interpolations In,t3p@'leISnz Mj% 5 +interpose ,Int@'p@Uz J2% 32A,3A,6A,14 +interposed ,Int@'p@Uzd Jc%,Jd% 32A,3A,6A,14 +interposes ,Int@'p@UzIz Ja% 42A,3A,6A,14 +interposing ,Int@'p@UzIN Jb% 42A,3A,6A,14 +interposition ,Int@p@'zISn M6$ 5 +interpositions ,Int@p@'zISnz Mj$ 5 +interpret In't3prIt J0% 32A,6A,16B +interpretation In,t3prI'teISn M6% 5 +interpretations In,t3prI'teISnz Mj% 5 +interpretative In't3prIt@tIv OA% 5 +interpreted In't3prItId Jc%,Jd% 42A,6A,16B +interpreter In't3prIt@R K6% 4 +interpreters In't3prIt@z Kj% 4 +interpreting In't3prItIN Jb% 42A,6A,16B +interprets In't3prIts Ja% 32A,6A,16B +interracial ,Int@'reISl OA% 4 +interred In't3d Hc%,Hd% 2 +interregna ,Int@'regn@ Kj$ 4 +interregnum ,Int@'regn@m K6% 4 +interregnums ,Int@'regn@mz Kj$ 4 +interrelate ,Int@rI'leIt J2% 42A,6A +interrelated ,Int@rI'leItId Jc%,Jd% 52A,6A +interrelates ,Int@rI'leIts Ja% 42A,6A +interrelating ,Int@rI'leItIN Jb% 52A,6A +interrelation ,Int@rI'leISn M6% 5 +interrelations ,Int@rI'leISnz Mj% 5 +interrelationship ,Int@rI'leIS@nSIp M6% 6 +interrelationships ,Int@rI'leIS@nSIps Mj% 6 +interring In't3rIN Hb% 3 +interrogate In'ter@geIt H2% 46A +interrogated In'ter@geItId Hc%,Hd% 56A +interrogates In'ter@geIts Ha% 46A +interrogating In'ter@geItIN Hb% 56A +interrogation In,ter@'geISn M6% 5 +interrogations In,ter@'geISnz Mj% 5 +interrogative ,Int@'r0g@tIv K6%,OA% 5 +interrogatively ,Int@'r0g@tIvlI Pu% 6 +interrogatives ,Int@'r0g@tIvz Kj% 5 +interrogator In'ter@geIt@R K6% 5 +interrogators In'ter@geIt@z Kj% 5 +interrogatory ,Int@'r0g@trI OA% 5 +interrupt ,Int@'rVpt J0% 32A,6A +interrupted ,Int@'rVptId Jc%,Jd% 42A,6A +interrupter ,Int@'rVpt@R K6% 4 +interrupters ,Int@'rVpt@z Kj% 4 +interrupting ,Int@'rVptIN Jb% 42A,6A +interruption ,Int@'rVpSn M6% 4 +interruptions ,Int@'rVpSnz Mj% 4 +interrupts ,Int@'rVpts Ja% 32A,6A +inters In't3z Ha$ 2 +intersect ,Int@'sekt J0% 32A,6A +intersected ,Int@'sektId Jc%,Jd% 42A,6A +intersecting ,Int@'sektIN Jb% 42A,6A +intersection ,Int@'sekSn M6% 4 +intersections ,Int@'sekSnz Mj% 4 +intersects ,Int@'sekts Ja% 32A,6A +intersperse ,Int@'sp3s H2% 314 +interspersed ,Int@'sp3st Hc%,Hd% 314 +intersperses ,Int@'sp3sIz Ha% 414 +interspersing ,Int@'sp3sIN Hb% 414 +interstate ,Int@'steIt OA% 3 +interstellar ,Int@'stel@R OA% 4 +interstice In't3stIs K6$ 3 +interstices In't3stIsIz Kj% 4 +intertribal ,Int@'traIbl OA% 4 +intertwine ,Int@'twaIn J2% 32A,6A +intertwined ,Int@'twaInd Jc%,Jd% 32A,6A +intertwines ,Int@'twaInz Ja% 32A,6A +intertwining ,Int@'twaInIN Jb% 42A,6A +interval 'Int@vl K6% 3 +intervals 'Int@vlz Kj% 3 +intervene ,Int@'vin I2% 32A,3A +intervened ,Int@'vind Ic%,Id% 32A,3A +intervenes ,Int@'vinz Ia% 32A,3A +intervening ,Int@'vinIN Ib% 42A,3A +intervention ,Int@'venSn M6% 4 +interventions ,Int@'venSnz Mj% 4 +interview 'Int@vju H0%,K6% 36A +interviewed 'Int@vjud Hc%,Hd% 36A +interviewer 'Int@vju@R K6% 4 +interviewers 'Int@vju@z Kj% 4 +interviewing 'Int@vjuIN Hb% 46A +interviews 'Int@vjuz Ha%,Kj% 36A +interweave ,Int@'wiv H5% 36A,14 +interweaves ,Int@'wivz Ha% 36A,14 +interweaving ,Int@'wivIN Hb% 46A,14 +interwove ,Int@'w@Uv Hc% 36A,14 +interwoven ,Int@'w@Uvn Hd% 46A,14 +intestate In'testeIt OA$ 3 +intestinal In'testInl OA% 4 +intestine In'testIn K6% 3 +intestines In'testInz Kj% 3 +intimacies 'IntIm@sIz Mj% 4 +intimacy 'IntIm@sI M8% 4 +intimate 'IntIm@t K6%,OA% 3 +intimate 'IntImeIt H2% 36A,9,14 +intimated 'IntImeItId Hc%,Hd% 46A,9,14 +intimately 'IntIm@tlI Pu% 4 +intimates 'IntIm@ts Kj% 3 +intimates 'IntImeIts Ha$ 36A,9,14 +intimating 'IntImeItIN Hb% 46A,9,14 +intimation ,IntI'meISn M6% 4 +intimations ,IntI'meISnz Mj% 4 +intimidate In'tImIdeIt H2% 46A,14 +intimidated In'tImIdeItId Hc%,Hd% 56A,14 +intimidates In'tImIdeIts Ha% 46A,14 +intimidating In'tImIdeItIN Hb% 56A,14 +intimidation In,tImI'deISn L@% 5 +into 'Int@ T-* 2 +intolerable In't0l@r@bl OA% 5 +intolerably In't0l@r@blI Pu% 5 +intolerance In't0l@r@ns L@% 4 +intolerant In't0l@r@nt OA% 4 +intolerantly In't0l@r@ntlI Pu% 5 +intonation ,Int@'neISn L@% 4 +intone In't@Un J2% 22A,6A +intoned In't@Und Jc%,Jd% 22A,6A +intones In't@Unz Ja% 22A,6A +intoning In't@UnIN Jb% 32A,6A +intoxicant In't0ksIk@nt K6%,OA% 4 +intoxicants In't0ksIk@nts Kj% 4 +intoxicate In't0ksIkeIt H2% 46A +intoxicated In't0ksIkeItId Hc%,Hd% 56A +intoxicates In't0ksIkeIts Ha% 46A +intoxicating In't0ksIkeItIN Hb% 56A +intoxication In,t0ksI'keISn L@% 5 +intra-uterine ,Intr@-'jut@raIn OA$ 5 +intractability In,tr&kt@'bIlItI L@% 6 +intractable ,In'tr&kt@bl OA% 4 +intramural ,Intr@'mjU@r@l OA$ 4 +intransigence In'tr&nsIdZ@ns L@% 4 +intransigent In'tr&nsIdZ@nt OA% 4 +intransitive In'tr&ns@tIv OA% 4 +intransitively In'tr&ns@tIvlI Pu% 5 +intravenous ,Intr@'vin@s OA% 4 +intravenously ,Intr@'vin@slI Pu% 5 +intrench In'trentS H1$ 26A +intrenched In'trentSt Hc$,Hd$ 26A +intrenches In'trentSIz Ha$ 36A +intrenching In'trentSIN Hb$ 36A +intrepid In'trepId OA% 3 +intrepidities ,IntrI'pIdItIz Mj$ 5 +intrepidity ,IntrI'pIdItI M8$ 5 +intrepidly In'trepIdlI Pu% 4 +intricacies 'IntrIk@sIz Mj% 4 +intricacy 'IntrIk@sI M8% 4 +intricate 'IntrIk@t OA% 3 +intricately 'IntrIk@tlI Pu% 4 +intrigue In'trig J2%,M6% 22A,3A,6A +intrigued In'trigd Jc%,Jd% 22A,3A,6A +intrigues In'trigz Ja%,Mj% 22A,3A,6A +intriguing In'trigIN Jb% 32A,3A,6A +intrinsic In'trInsIk OA% 3 +intrinsically In'trInsIklI Pu% 4 +intro 'Intr@U Ki% 2 +introduce ,Intr@'djus H2% 36A,14,15A +introduced ,Intr@'djust Hc%,Hd% 36A,14,15A +introduces ,Intr@'djusIz Ha% 46A,14,15A +introducing ,Intr@'djusIN Hb% 46A,14,15A +introduction ,Intr@'dVkSn M6% 4 +introductions ,Intr@'dVkSnz Mj% 4 +introductory ,Intr@'dVkt@rI OA% 5 +introspect ,Intr@'spekt I0$ 32A +introspected ,Intr@'spektId Ic$,Id$ 42A +introspecting ,Intr@'spektIN Ib$ 42A +introspection ,Intr@'spekSn L@% 4 +introspective ,Intr@'spektIv OA% 4 +introspects ,Intr@'spekts Ia$ 32A +introversion ,Intr@'v3Sn L@% 4 +introvert 'Intr@v3t K6% 3 +introvert ,Intr@'v3t H0$ 36A +introverted ,Intr@'v3tId Hc$,Hd% 46A +introverting ,Intr@'v3tIN Hb$ 46A +introverts 'Intr@v3ts Kj% 3 +introverts ,Intr@'v3ts Ha$ 36A +intrude In'trud J2% 22A,3A,14 +intruded In'trudId Jc%,Jd% 32A,3A,14 +intruder In'trud@R K6% 3 +intruders In'trud@z Kj% 3 +intrudes In'trudz Ja% 22A,3A,14 +intruding In'trudIN Jb% 32A,3A,14 +intrusion In'truZn M6% 3 +intrusions In'truZnz Mj% 3 +intrusive In'trusIv OA% 3 +intrust In'trVst H0$ 214 +intrusted In'trVstId Hc$,Hd$ 314 +intrusting In'trVstIN Hb$ 314 +intrusts In'trVsts Ha$ 214 +intuit In'tjuIt J0$ 32A,6A +intuited In'tjuItId Jc$,Jd$ 42A,6A +intuiting In'tjuItIN Jb$ 42A,6A +intuition ,Intju'ISn M6% 4 +intuitions ,Intju'ISnz Mj% 4 +intuitive In'tjuItIv OA% 4 +intuitively In'tjuItIvlI Pu% 5 +intuits In'tjuIts Ja$ 22A,6A +intumescence ,Intju'mesns L@$ 4 +inundate 'InVndeIt H2$ 36A,14 +inundated 'InVndeItId Hc$,Hd% 46A,14 +inundates 'InVndeIts Ha$ 36A,14 +inundating 'InVndeItIN Hb$ 46A,14 +inundation ,InVn'deISn M6% 4 +inundations ,InVn'deISnz Mj% 4 +inure I'njU@R H2$ 214 +inured I'njU@d Hc$,Hd% 214 +inures I'njU@z Ha$ 214 +inuring I'njU@rIN Hb$ 314 +invade In'veId H2% 26A +invaded In'veIdId Hc%,Hd% 36A +invader In'veId@R K6% 3 +invaders In'veId@z Kj% 3 +invades In'veIdz Ha% 26A +invading In'veIdIN Hb% 36A +invalid 'Inv@lId H0%,K6%,OA% 315A +invalid In'v&lId OA% 3 +invalidate In'v&lIdeIt H2% 46A +invalidated In'v&lIdeItId Hc%,Hd% 56A +invalidates In'v&lIdeIts Ha% 46A +invalidating In'v&lIdeItIN Hb% 56A +invalidation In,v&lI'deISn M6% 5 +invalidations In,v&lI'deISnz Mj$ 5 +invalided 'Inv@lIdId Hc%,Hd% 415A +invaliding 'Inv@lIdIN Hb$ 415A +invalidism 'Inv@lIdIz@m L@$ 5 +invalidity ,Inv@'lIdItI L@% 5 +invalids 'Inv@lIdz Ha$,Kj% 315A +invaluable In'v&ljU@bl OA% 5 +invariable In've@rI@bl OA% 5 +invariably In've@rI@blI Pu% 5 +invasion In'veIZn M6% 3 +invasions In'veIZnz Mj% 3 +invasive In'veIsIv OA$ 3 +invective In'vektIv L@% 3 +inveigh In'veI I0$ 23A +inveighed In'veId Ic$,Id$ 23A +inveighing In'veIIN Ib$ 33A +inveighs In'veIz Ia$ 23A +inveigle In'veIgl H2% 314 +inveigled In'veIgld Hc%,Hd% 314 +inveigles In'veIglz Ha% 314 +inveigling In'veIglIN Hb% 314 +invent In'vent H0% 26A +invented In'ventId Hc%,Hd% 36A +inventing In'ventIN Hb% 36A +invention In'venSn M6% 3 +inventions In'venSnz Mj% 3 +inventive In'ventIv OA% 3 +inventively In'ventIvlI Pu% 4 +inventor In'vent@R K6% 3 +inventories 'Inv@ntrIz Kj% 3 +inventors In'vent@z Kj% 3 +inventory 'Inv@ntrI K8% 3 +invents In'vents Ha% 26A +inverse 'Inv3s L@$ 2 +inverse In'v3s OA% 2 +inversely In'v3slI Pu% 3 +inversion In'v3Sn M6% 3 +inversions In'v3Snz Mj% 3 +invert In'v3t H0% 26A +invertebrate In'v3tIbreIt K6%,OA% 4 +invertebrates In'v3tIbreIts Kj% 4 +inverted In'v3tId Hc%,Hd% 36A +inverting In'v3tIN Hb% 36A +inverts In'v3ts Ha% 26A +invest In'vest J0% 23A,6A,14 +invested In'vestId Jc%,Jd% 33A,6A,14 +investigate In'vestIgeIt H2% 46A +investigated In'vestIgeItId Hc%,Hd% 56A +investigates In'vestIgeIts Ha% 46A +investigating In'vestIgeItIN Hb% 56A +investigation In,vestI'geISn M6% 5 +investigations In,vestI'geISnz Mj% 5 +investigator In'vestIgeIt@R K6% 5 +investigators In'vestIgeIt@z Kj% 5 +investing In'vestIN Jb% 33A,6A,14 +investiture In'vestItS@R K6$ 4 +investitures In'vestItS@z Kj$ 4 +investment In'vestm@nt M6% 3 +investments In'vestm@nts Mj% 3 +investor In'vest@R K6% 3 +investors In'vest@z Kj% 3 +invests In'vests Ja% 23A,6A,14 +inveterate In'vet@r@t OA% 4 +invidious In'vIdI@s OA% 4 +invidiously In'vIdI@slI Pu% 5 +invigilate In'vIdZIleIt I2% 42A,6A +invigilated In'vIdZIleItId Ic%,Id% 52A,6A +invigilates In'vIdZIleIts Ia% 42A,6A +invigilating In'vIdZIleItIN Ib% 52A,6A +invigilation In,vIdZI'leISn M6% 5 +invigilations In,vIdZI'leISnz Mj% 5 +invigilator In'vIdZIleIt@R K6% 5 +invigilators In'vIdZIleIt@z Kj% 5 +invigorate In'vIg@reIt H2% 46A +invigorated In'vIg@reItId Hc%,Hd% 56A +invigorates In'vIg@reIts Ha% 46A +invigorating In'vIg@reItIN Hb% 56A +invincibility In,vIns@'bIlItI L@% 6 +invincible In'vIns@bl OA% 4 +invincibly In'vIns@blI Pu% 4 +inviolable In'vaI@l@bl OA% 5 +inviolate ,In'vaI@l@t OA% 4 +invisibility In,vIz@'bIlItI L@% 6 +invisible In'vIz@bl OA% 4 +invisibly In'vIz@blI Pu% 4 +invitation ,InvI'teISn M6% 4 +invitations ,InvI'teISnz Mj% 4 +invite 'InvaIt K6% 2 +invite In'vaIt H2% 26A,15A,15B,17 +invited In'vaItId Hc%,Hd% 36A,15A,15B,17 +invites 'InvaIts Kj% 2 +invites In'vaIts Ha% 26A,15A,15B,17 +inviting In'vaItIN Hb%,OA% 36A,15A,15B,17 +invitingly In'vaItINlI Pu% 4 +invocation ,Inv@'keISn M6% 4 +invocations ,Inv@'keISnz Mj% 4 +invoice 'InvoIs H2%,K6% 2 +invoiced 'InvoIst Hc%,Hd% 2 +invoices 'InvoIsIz Ha%,Kj% 3 +invoicing 'InvoIsIN Hb% 3 +invoke In'v@Uk H2% 26A,14 +invoked In'v@Ukt Hc%,Hd% 26A,14 +invokes In'v@Uks Ha% 26A,14 +invoking In'v@UkIN Hb% 36A,14 +involuntarily In'v0l@ntr@lI Pu% 5 +involuntary In'v0l@ntrI OA% 4 +involute 'Inv@lut OA$ 3 +involution ,Inv@'luSn K6$ 4 +involutions ,Inv@'luSnz Kj$ 4 +involve In'v0lv H2% 26A,6B,14,19C +involved In'v0lvd Hc%,Hd%,OA% 26A,6B,14,19C +involvement In'v0lvm@nt K6% 3 +involvements In'v0lvm@nts Kj% 3 +involves In'v0lvz Ha% 26A,6B,14,19C +involving In'v0lvIN Hb% 36A,6B,14,19C +invulnerable In'vVln@r@bl OA% 5 +inward 'Inw@d OA%,Pu% 2 +inwardly 'Inw@dlI Pu% 3 +inwardness 'Inw@dn@s L@% 3 +inwards 'Inw@dz Pu% 2 +inwrought ,In'rOt OA$ 2 +iodine 'aI@din L@% 3 +ion 'aI@n K6$ 2 +ionization ,aI@naI'zeISn L@$ 5 +ionize 'aI@naIz J2$ 32A,6A +ionized 'aI@naIzd Jc$,Jd$ 32A,6A +ionizes 'aI@naIzIz Ja$ 42A,6A +ionizing 'aI@naIzIN Jb$ 42A,6A +ionosphere aI'0n@sfI@R K6$ 4 +ionospheres aI'0n@sfI@z Kj$ 4 +ions 'aI@nz Kj$ 2 +iota aI'@Ut@ K6$ 3 +iotas aI'@Ut@z Kj$ 3 +ipse dixit ,IpsI 'dIksIt K6$ 4 +ipse dixits ,IpsI 'dIksIts Kj$ 4 +ipso facto ,Ips@U 'f&kt@U Pu% 4 +irascibility I,r&s@'bIlItI L@% 6 +irascible I'r&s@bl OA% 4 +irate aI'reIt OA% 2 +irately aI'reItlI Pu% 3 +ire 'aI@R L@$ 1 +ireful 'aI@f@l OA$ 2 +iridescence ,IrI'desns L@% 4 +iridescent ,IrI'desnt OA% 4 +iridium I'rIdI@m L@$ 4 +iris 'aI@rIs K7% 2 +irises 'aI@rIsIz Kj% 3 +irk 3k H0$ 1 +irked 3kt Hc$,Hd% 1 +irking '3kIN Hb$ 2 +irks 3ks Ha% 1 +irksome '3ks@m OA% 2 +iron 'aI@n J0%,M6% 22A,2C,6A,15A,15B +iron-foundries 'aI@n-faUndrIz Kj% 4 +iron-foundry 'aI@n-faUndrI K8% 4 +iron-grey ,aI@n-'greI L@%,OA% 3 +ironclad 'aI@nkl&d OA$ 3 +ironed 'aI@nd Jc%,Jd% 22A,2C,6A,15A,15B +ironic aI'r0nIk OA% 3 +ironical aI'r0nIkl OA% 4 +ironically aI'r0nIklI Pu% 4 +ironies 'aI@r@nIz Mj% 3 +ironing 'aI@nIN Jb% 32A,2C,6A,15A,15B +ironing-board 'aI@nIN-bOd K6% 4 +ironing-boards 'aI@nIN-bOdz Kj% 4 +ironmonger 'aI@nmVNg@R K6% 4 +ironmongeries 'aI@nmVNg@rIz Mj$ 5 +ironmongers 'aI@nmVNg@z Kj% 4 +ironmongery 'aI@nmVNg@rI M8% 5 +ironmould 'aI@nm@Uld K6$ 3 +ironmoulds 'aI@nm@Uldz Kj$ 3 +irons 'aI@nz Ja%,Mj% 22A,2C,6A,15A,15B +ironside 'aI@nsaId K6$ 3 +ironsides 'aI@nsaIdz Kj$ 3 +ironware 'aI@nwe@R L@$ 3 +ironwork 'aI@nw3k K6% 3 +ironworks 'aI@nw3ks K9$ 3 +irony 'aI@r@nI M8% 3 +irradiate I'reIdIeIt H2% 46A +irradiated I'reIdIeItId Hc%,Hd% 56A +irradiates I'reIdIeIts Ha% 46A +irradiating I'reIdIeItIN Hb% 56A +irrational I'r&S@nl OA% 4 +irrationally I'r&S@n@lI Pu% 5 +irreconcilable I,rek@n'saIl@bl OA% 6 +irrecoverable ,IrI'kVv@r@bl OA% 6 +irredeemable ,IrI'dim@bl OA% 5 +irredentist ,IrI'dentIst K6$ 4 +irredentists ,IrI'dentIsts Kj$ 4 +irreducible ,IrI'djus@bl OA% 5 +irrefutable ,IrI'fjut@bl OA% 5 +irregular I'regjUl@R K6$,OA% 4 +irregularities I,regjU'l&rItIz Mj% 6 +irregularity I,regjU'l&rItI M8% 6 +irregularly I'regjUl@lI Pu% 5 +irregulars I'regjUl@z Kj$ 4 +irrelevance I'rel@v@ns M6% 4 +irrelevances I'rel@v@nsIz Mj$ 5 +irrelevancies I'rel@v@nsIz Mj$ 5 +irrelevancy I'rel@v@nsI M8$ 5 +irrelevant I'rel@v@nt OA% 4 +irrelevantly I'rel@v@ntlI Pu% 5 +irreligious ,IrI'lIdZ@s OA% 4 +irremediable ,IrI'midI@bl OA% 6 +irremovable ,IrI'muv@bl OA% 5 +irreparable I'rep@r@bl OA% 5 +irreplaceable ,IrI'pleIs@bl OA% 5 +irrepressible ,IrI'pres@bl OA% 5 +irreproachable ,IrI'pr@UtS@bl OA% 5 +irresistible ,IrI'zIst@bl OA% 5 +irresolute I'rez@lut OA% 4 +irresolution I,rez@'luSn L@$ 5 +irrespective ,IrI'spektIv OA% 4 +irresponsibility ,IrI,sp0ns@'bIlItI L@% 7 +irresponsible ,IrI'sp0ns@bl OA% 5 +irretrievable ,IrI'triv@bl OA% 5 +irretrievably ,IrI'triv@blI Pu% 5 +irreverence I'rev@r@ns L@% 4 +irreverent I'rev@r@nt OA% 4 +irreverently I'rev@r@ntlI Pu% 5 +irreversibility ,IrI,v3s@'bIlItI L@% 7 +irreversible ,IrI'v3s@bl OA% 5 +irreversibly ,IrI'v3s@blI Pu% 5 +irrevocable I'rev@k@bl OA% 5 +irridentism ,IrI'dentIz@m L@$ 5 +irrigate 'IrIgeIt H2% 36A +irrigated 'IrIgeItId Hc%,Hd% 46A +irrigates 'IrIgeIts Ha% 36A +irrigating 'IrIgeItIN Hb% 46A +irrigation ,IrI'geISn L@% 4 +irritability ,IrIt@'bIlItI L@% 6 +irritable 'IrIt@bl OA% 4 +irritably 'IrIt@blI Pu% 4 +irritant 'IrIt@nt K6%,OA% 3 +irritants 'IrIt@nts Kj% 3 +irritate 'IrIteIt H2% 36A +irritated 'IrIteItId Hc%,Hd% 46A +irritates 'IrIteIts Ha% 36A +irritating 'IrIteItIN Hb% 46A +irritation ,IrI'teISn M6% 4 +irritations ,IrI'teISnz Mj% 4 +irruption I'rVpSn K6$ 3 +irruptions I'rVpSnz Kj$ 3 +is Iz Ga*,Ia% 11 +isinglass 'aIzINglAs L@$ 3 +island 'aIl@nd K6% 2 +islander 'aIl@nd@R K6% 3 +islanders 'aIl@nd@z Kj% 3 +islands 'aIl@ndz Kj% 2 +isle aIl K6% 1 +isles aIlz Kj% 1 +islet 'aIlIt K6$ 2 +islets 'aIlIts Kj$ 2 +ism 'Iz@m K6$ 2 +isms 'Iz@mz Kj$ 2 +isn't 'Iznt Gg% 2 +isobar 'aIs@bAR K6% 3 +isobars 'aIs@bAz Kj% 3 +isolate 'aIs@leIt H2% 36A,14 +isolated 'aIs@leItId Hc%,Hd% 46A,14 +isolates 'aIs@leIts Ha% 36A,14 +isolating 'aIs@leItIN Hb% 46A,14 +isolation ,aIs@'leISn L@% 4 +isolationism ,aIs@'leIS@nIz@m L@% 6 +isolationist ,aIs@'leIS@nIst K6% 5 +isolationists ,aIs@'leIS@nIsts Kj% 5 +isosceles aI's0s@liz OA% 4 +isotherm 'aIs@T3m K6$ 3 +isotherms 'aIs@T3mz Kj$ 3 +isotope 'aIs@t@Up K6% 3 +isotopes 'aIs@t@Ups Kj% 3 +issue 'ISu J2%,M6% 22A,3A,6A,14 +issued 'ISud Jc%,Jd% 22A,3A,6A,14 +issues 'ISuz Ja%,Mj% 22A,3A,6A,14 +issuing 'ISuIN Jb% 32A,3A,6A,14 +isthmus 'Ism@s K7% 2 +isthmuses 'Ism@sIz Kj% 3 +it It Qx* 1 +it'll 'Itl Gf% 2 +it's Its Gf* 1 +italic I't&lIk OA% 3 +italicize I't&lIsaIz H2% 4 +italicized I't&lIsaIzd Hc%,Hd% 4 +italicizes I't&lIsaIzIz Ha% 5 +italicizing I't&lIsaIzIN Hb% 5 +italics I't&lIks Kj% 3 +itch ItS I1%,K7% 12A,3A,4A +itched ItSt Ic%,Id% 12A,3A,4A +itches 'ItSIz Ia%,Kj% 22A,3A,4A +itchier 'ItSI@R Or$ 3 +itchiest 'ItSIIst Os$ 3 +itching 'ItSIN Ib% 22A,3A,4A +itchy 'ItSI OD% 2 +item 'aIt@m K6%,Pu% 2 +itemize 'aIt@maIz H2% 36A +itemized 'aIt@maIzd Hc%,Hd% 36A +itemizes 'aIt@maIzIz Ha% 46A +itemizing 'aIt@maIzIN Hb% 46A +items 'aIt@mz Kj% 2 +iterate 'It@reIt H2$ 36A +iterated 'It@reItId Hc$,Hd$ 46A +iterates 'It@reIts Ha$ 36A +iterating 'It@reItIN Hb$ 46A +iteration ,It@'reISn M6$ 4 +iterations ,It@'reISnz Mj$ 4 +itinerant aI'tIn@r@nt OA% 4 +itineraries aI'tIn@r@rIz Kj% 5 +itinerary aI'tIn@r@rI K8% 5 +its Its OA* 1 +itself It'self Qx% 2 +ivied 'aIvId OA$ 2 +ivies 'aIvIz Mj$ 2 +ivory 'aIv@rI L@% 3 +ivy 'aIvI M8% 2 +j dZeI Ki$ 1 +j's dZeIz Kj$ 1 +jab dZ&b J4%,K6% 13A,14,15B +jabbed dZ&bd Jc%,Jd% 13A,14,15B +jabber 'dZ&b@R J0%,L@% 22A,2C,6A,15B +jabbered 'dZ&b@d Jc%,Jd% 22A,2C,6A,15B +jabberer 'dZ&b@r@R K6% 3 +jabberers 'dZ&b@r@z Kj% 3 +jabbering 'dZ&b@rIN Jb% 32A,2C,6A,15B +jabbers 'dZ&b@z Ja% 22A,2C,6A,15B +jabbing 'dZ&bIN Jb% 23A,14,15B +jabot 'Z&b@U K6$ 2 +jabots 'Z&b@Uz Kj$ 2 +jabs dZ&bz Ja%,Kj% 13A,14,15B +jack dZ&k H0%,K6% 115B +jack-in-the-box 'dZ&k-In-D@-b0ks K7% 4 +jack-in-the-boxes 'dZ&k-In-D@-b0ksIz Kj% 5 +jack-knife 'dZ&k-naIf I2%,Ki% 22A +jack-knifed 'dZ&k-naIft Ic%,Id% 22A +jack-knifes 'dZ&k-naIfs Ia% 22A +jack-knifing 'dZ&k-naIfIN Ib% 32A +jack-knives 'dZ&k-naIvz Kj% 2 +jack-o'-lantern dZ&k-@-'l&nt@n K6$ 4 +jack-o'-lanterns dZ&k-@-'l&nt@nz Kj$ 4 +jack-plane 'dZ&k-pleIn K6$ 2 +jack-planes 'dZ&k-pleInz Kj$ 2 +jackal 'dZ&kOl K6% 2 +jackals 'dZ&kOlz Kj% 2 +jackanapes 'dZ&k@neIps Ki$ 3 +jackass 'dZ&k&s K7% 2 +jackasses 'dZ&k&sIz Kj% 3 +jackboot 'dZ&kbut K6% 2 +jackboots 'dZ&kbuts Kj% 2 +jackdaw 'dZ&kdO K6% 2 +jackdaws 'dZ&kdOz Kj% 2 +jacked dZ&kt Hc%,Hd% 115B +jacket 'dZ&kIt K6% 2 +jackets 'dZ&kIts Kj% 2 +jacking 'dZ&kIN Hb% 215B +jackpot 'dZ&kp0t K6% 2 +jackpots 'dZ&kp0ts Kj% 2 +jacks dZ&ks Ha%,Kj% 115B +jade dZeId M6% 1 +jaded 'dZeIdId OA% 2 +jades dZeIdz Mj$ 1 +jag dZ&g H4$,K6$ 16A +jagged 'dZ&gId OA% 2 +jagged dZ&gd Hc$,Hd$ 16A +jaggier 'dZ&gI@R Or$ 3 +jaggiest 'dZ&gIIst Os$ 3 +jagging 'dZ&gIN Hb$ 26A +jaggy 'dZ&gI OD$ 2 +jags dZ&gz Ha$,Kj$ 16A +jaguar 'dZ&gjU@R K6% 3 +jaguars 'dZ&gjU@z Kj% 3 +jail dZeIl H0%,M6% 16A +jailed dZeIld Hc%,Hd% 16A +jailer 'dZeIl@R K6% 2 +jailers 'dZeIl@z Kj% 2 +jailing 'dZeIlIN Hb% 26A +jailor 'dZeIl@R K6% 2 +jailors 'dZeIl@z Kj% 2 +jails dZeIlz Ha%,Mj% 16A +jakes dZeIks Ki$ 1 +jalopies dZ@'l0pIz Kj% 3 +jalopy dZ@'l0pI K8% 3 +jam dZ&m J4%,M6% 12A,2C,6A,14,15A,15B +jamb dZ&m K6$ 1 +jamboree ,dZ&mb@'ri K6% 3 +jamborees ,dZ&mb@'riz Kj% 3 +jambs dZ&mz Kj$ 1 +jamjar 'dZ&mdZAR K6% 2 +jamjars 'dZ&mdZAz Kj% 2 +jammed dZ&md Jc%,Jd% 12A,2C,6A,14,15A,15B +jamming 'dZ&mIN Jb% 22A,2C,6A,14,15A,15B +jampack ,dZ&m'p&k H0$ 26A +jampacked ,dZ&m'p&kt Hc$,Hd% 26A +jampacking ,dZ&m'p&kIN Hb$ 36A +jampacks ,dZ&m'p&ks Ha$ 26A +jampot 'dZ&mp0t K6% 2 +jampots 'dZ&mp0ts Kj% 2 +jams dZ&mz Ja%,Mj% 12A,2C,6A,14,15A,15B +jangle 'dZ&Ngl J2%,L@% 22A,6A +jangled 'dZ&Ngld Jc%,Jd% 22A,6A +jangles 'dZ&Nglz Ja% 22A,6A +jangling 'dZ&NglIN Jb% 22A,6A +janitor 'dZ&nIt@R K6% 3 +janitors 'dZ&nIt@z Kj% 3 +japan dZ@'p&n H4$ 2 +japanned dZ@'p&nd Hc$,Hd$ 2 +japanning dZ@'p&nIN Hb$ 3 +japans dZ@'p&nz Ha$ 2 +jape dZeIp K6% 1 +japes dZeIps Kj% 1 +japonica dZ@'p0nIk@ L@$ 4 +jar dZAR J4%,K6% 12A,3A,6A +jarful 'dZAfUl K6% 2 +jarfuls 'dZAfUlz Kj% 2 +jargon 'dZAg@n L@% 2 +jarred dZAd Jc%,Jd% 12A,3A,6A +jarring 'dZArIN Jb%,OA% 22A,3A,6A +jarringly 'dZArINlI Pu% 3 +jars dZAz Ja%,Kj% 12A,3A,6A +jasmine 'dZ&smIn L@% 2 +jasper 'dZ&sp@R L@% 2 +jaundice 'dZOndIs H2$,L@% 2 +jaundiced 'dZOndIst Hc$,Hd% 2 +jaundices 'dZOndIsIz Ha$ 3 +jaundicing 'dZOndIsIN Hb$ 3 +jaunt dZOnt I0%,K6% 12A,2C +jaunted 'dZOntId Ic%,Id% 22A,2C +jauntier 'dZOntI@R Or$ 3 +jauntiest 'dZOntIIst Os$ 3 +jauntily 'dZOntIlI Pu% 3 +jauntiness 'dZOntIn@s L@% 3 +jaunting 'dZOntIN Ib% 22A,2C +jaunting-car 'dZOntIN-kAR K6$ 3 +jaunting-cars 'dZOntIN-kAz Kj$ 3 +jaunts dZOnts Ia%,Kj% 12A,2C +jaunty 'dZOntI OD% 2 +javelin 'dZ&vlIn K6% 2 +javelins 'dZ&vlInz Kj% 2 +jaw dZO I0%,K6% 12A,2C,3A +jawbone 'dZOb@Un K6% 2 +jawbones 'dZOb@Unz Kj% 2 +jawbreaker 'dZObreIk@R K6% 3 +jawbreakers 'dZObreIk@z Kj% 3 +jawed dZOd Ic$,Id$ 12A,2C,3A +jawing 'dZOIN Ib$ 22A,2C,3A +jaws dZOz Ia$,Kj% 12A,2C,3A +jay dZeI K6% 1 +jays dZeIz Kj% 1 +jaywalk 'dZeIwOk I0% 2 +jaywalked 'dZeIwOkt Ic%,Id% 2 +jaywalker 'dZeIwOk@R K6% 3 +jaywalkers 'dZeIwOk@z Kj% 3 +jaywalking 'dZeIwOkIN Ib% 3 +jaywalks 'dZeIwOks Ia% 2 +jazz dZ&z H1$,L@% 16A,15B +jazzed dZ&zd Hc$,Hd% 16A,15B +jazzes 'dZ&zIz Ha$ 26A,15B +jazzier 'dZ&zI@R Or$ 3 +jazziest 'dZ&zIIst Os$ 3 +jazzing 'dZ&zIN Hb$ 26A,15B +jazzy 'dZ&zI OD% 2 +jealous 'dZel@s OA% 2 +jealousies 'dZel@sIz Mj% 3 +jealously 'dZel@slI Pu% 3 +jealousy 'dZel@sI M8% 3 +jean dZin L@$ 1 +jeans dZinz Kj% 1 +jeep dZip K6% 1 +jeeps dZips Kj% 1 +jeer dZI@R J0%,K6% 12A,3A,6A +jeered dZI@d Jc%,Jd% 12A,3A,6A +jeering 'dZI@rIN Jb% 22A,3A,6A +jeeringly 'dZI@rINlI Pu% 3 +jeers dZI@z Ja%,Kj% 12A,3A,6A +jejune dZI'dZun OA$ 2 +jejunely dZI'dZunlI Pu$ 3 +jejuneness dZI'dZun+n@s L@$ 3 +jell dZel J0$ 12A,6A +jellaba 'dZel@b@ K6$ 3 +jellabas 'dZel@b@z Kj$ 3 +jelled dZeld Jc$,Jd$ 12A,6A +jellied 'dZelId Jc%,Jd%,OA% 22A,6A +jellies 'dZelIz Ja%,Mj% 22A,6A +jelling 'dZelIN Jb$ 22A,6A +jells dZelz Ja$ 12A,6A +jelly 'dZelI J3%,M8% 22A,6A +jellyfish 'dZelIfIS K9% 3 +jellyfishes 'dZelIfISIz Kj% 4 +jellying 'dZelIIN Jb% 32A,6A +jemmies 'dZemIz Kj% 2 +jemmy 'dZemI K8% 2 +jennies 'dZenIz Kj$ 2 +jenny 'dZenI K8$ 2 +jeopardize 'dZep@daIz H2% 36A +jeopardized 'dZep@daIzd Hc%,Hd% 36A +jeopardizes 'dZep@daIzIz Ha% 46A +jeopardizing 'dZep@daIzIN Hb% 46A +jeopardy 'dZep@dI L@% 3 +jerboa dZ3'b@U@ K6$ 3 +jerboas dZ3'b@U@z Kj$ 3 +jeremiad ,dZerI'maI&d K6$ 4 +jeremiads ,dZerI'maI&dz Kj$ 4 +jerk dZ3k J0%,K6% 12C,6A,15A,15B +jerked dZ3kt Jc%,Jd% 12C,6A,15A,15B +jerkier 'dZ3kI@R Or$ 3 +jerkiest 'dZ3kIIst Os$ 3 +jerkily 'dZ3kIlI Pu% 3 +jerkin 'dZ3kIn K6% 2 +jerkiness 'dZ3kIn@s L@% 3 +jerking 'dZ3kIN Jb% 22C,6A,15A,15B +jerkins 'dZ3kInz Kj% 2 +jerks dZ3ks Ja%,Kj% 12C,6A,15A,15B +jerky 'dZ3kI OD% 2 +jerries 'dZerIz Kj$ 2 +jerry 'dZerI K8$ 2 +jerry-builder 'dZerI-bIld@R K6% 4 +jerry-builders 'dZerI-bIld@z Kj% 4 +jerry-building 'dZerI-bIldIN L@% 4 +jerry-built 'dZerI-bIlt OA% 3 +jersey 'dZ3zI M6% 2 +jerseys 'dZ3zIz Mj% 2 +jest dZest I0%,K6% 12A,3A +jested 'dZestId Ic%,Id% 22A,3A +jester 'dZest@R K6% 2 +jesters 'dZest@z Kj% 2 +jesting 'dZestIN Ib%,OA% 22A,3A +jestingly 'dZestINlI Pu% 3 +jests dZests Ia%,Kj% 12A,3A +jet dZet J4%,M6% 1 +jet-black 'dZet-,bl&k OA% 2 +jet-propelled dZet-pr@'peld OA% 3 +jets dZets Ja%,Mj% 1 +jetsam 'dZets@m L@$ 2 +jetted 'dZetId Jc%,Jd% 2 +jetties 'dZetIz Kj% 2 +jetting 'dZetIN Jb% 2 +jettison 'dZetIsn H0% 36A +jettisoned 'dZetIsnd Hc%,Hd% 36A +jettisoning 'dZetIsnIN Hb$ 46A +jettisons 'dZetIsnz Ha$ 36A +jetty 'dZetI K8% 2 +jewel 'dZu@l H4$,K6% 2 +jewelled 'dZu@ld Hc$,Hd% 2 +jeweller 'dZu@l@R K6% 3 +jewellers 'dZu@l@z Kj% 3 +jewellery 'dZu@lrI L@% 3 +jewelling 'dZu@lIN Hb$ 3 +jewelry 'dZu@lrI L@% 3 +jewels 'dZu@lz Ha$,Kj% 2 +jib dZIb I4%,K6% 12A,3A +jib-boom 'dZIb-bum K6$ 2 +jib-booms 'dZIb-bumz Kj$ 2 +jibbed dZIbd Ic%,Id% 12A,3A +jibbing 'dZIbIN Ib% 22A,3A +jibe dZaIb I2%,K6% 12A,3A +jibed dZaIbd Ic%,Id% 12A,3A +jibes dZaIbz Ia%,Kj% 12A,3A +jibing 'dZaIbIN Ib% 22A,3A +jibs dZIbz Ia%,Kj% 12A,3A +jiffies 'dZIfIz Kj$ 2 +jiffy 'dZIfI K8% 2 +jig dZIg J4%,K6% 12A,2C,15B +jigged dZIgd Jc%,Jd% 12A,2C,15B +jigger 'dZIg@R K6$ 2 +jiggered 'dZIg@d Op% 2 +jiggers 'dZIg@z Kj$ 2 +jiggery-pokery ,dZIg@rI-'p@Uk@rI L@% 6 +jigging 'dZIgIN Jb% 22A,2C,15B +jiggle 'dZIgl J2$,K6$ 2 +jiggled 'dZIgld Jc$,Jd$ 2 +jiggles 'dZIglz Ja$,Kj$ 2 +jiggling 'dZIglIN Jb$ 2 +jigs dZIgz Ja%,Kj% 12A,2C,15B +jigsaw 'dZIgsO K6% 2 +jigsaws 'dZIgsOz Kj% 2 +jihad dZI'hAd K6$ 2 +jihads dZI'hAdz Kj$ 2 +jilt dZIlt H0%,K6% 16A +jilted 'dZIltId Hc%,Hd% 26A +jilting 'dZIltIN Hb% 26A +jilts dZIlts Ha%,Kj% 16A +jim-jams 'dZIm-dZ&mz Kj$ 2 +jiminy 'dZIm@nI W-$ 3 +jimmies 'dZImIz Kj$ 2 +jimmy 'dZImI K8$ 2 +jingle 'dZINgl J2%,K6% 22A,2C,6A,15B +jingled 'dZINgld Jc%,Jd% 22A,2C,6A,15B +jingles 'dZINglz Ja%,Kj% 22A,2C,6A,15B +jingling 'dZINglIN Jb% 22A,2C,6A,15B +jingo 'dZINg@U K7$ 2 +jingoes 'dZINg@Uz Kj$ 2 +jingoism 'dZINg@UIz@m L@% 4 +jingoist 'dZINg@UIst K6% 3 +jingoistic ,dZINg@U'IstIk OA% 4 +jingoists 'dZINg@UIsts Kj% 3 +jinks dZINks L@% 1 +jinn dZIn K6$ 1 +jinns dZInz Kj$ 1 +jinx dZINks K7% 1 +jinxes 'dZINksIz Kj$ 2 +jitney 'dZItnI K6$ 2 +jitneys 'dZItnIz Kj$ 2 +jitterbug 'dZIt@bVg K6% 3 +jitterbugs 'dZIt@bVgz Kj$ 3 +jitters 'dZIt@z Kj% 2 +jittery 'dZIt@rI OA% 3 +jive dZaIv I2%,K6% 1 +jived dZaIvd Ic%,Id% 1 +jives dZaIvz Ia%,Kj% 1 +jiving 'dZaIvIN Ib% 2 +job dZ0b J4$,K6* 12A,6A,14 +jobbed dZ0bd Jc$,Jd$ 12A,6A,14 +jobber 'dZ0b@R K6% 2 +jobbers 'dZ0b@z Kj% 2 +jobbery 'dZ0b@rI L@$ 3 +jobbing 'dZ0bIN Jb% 22A,6A,14 +jobs dZ0bz Ja$,Kj% 12A,6A,14 +jockey 'dZ0kI J0%,K6% 23A,15A +jockeyed 'dZ0kId Jc%,Jd% 23A,15A +jockeying 'dZ0kIIN Jb% 33A,15A +jockeys 'dZ0kIz Ja%,Kj% 23A,15A +jocose dZ@U'k@Us OA% 2 +jocosely dZ@U'k@UslI Pu% 3 +jocoseness dZ@U'k@Usn@s L@$ 3 +jocosity dZ@U'k0sItI L@$ 4 +jocular 'dZ0kjUl@R OA% 3 +jocularities ,dZ0kjU'l&rItIz Mj$ 5 +jocularity ,dZ0kjU'l&rItI M8% 5 +jocularly 'dZ0kjUl@lI Pu% 4 +jocund 'dZ0k@nd OA% 2 +jocundities dZ@U'kVndItIz Mj$ 4 +jocundity dZ@U'kVndItI M8$ 4 +jodhpurs 'dZ0dp@z Kj% 2 +jog dZ0g J4%,K6% 12A,2C,6A,15B +jog-trot 'dZ0g-tr0t K6% 2 +jog-trots 'dZ0g-tr0ts Kj% 2 +jogged dZ0gd Jc%,Jd% 12A,2C,6A,15B +jogger 'dZ0g@R K6% 2 +joggers 'dZ0g@z Kj% 2 +jogging 'dZ0gIN Jb%,L@% 22A,2C,6A,15B +joggle 'dZ0gl J2$,K6$ 22A,6A +joggled 'dZ0gld Jc$,Jd$ 22A,6A +joggles 'dZ0glz Ja$,Kj$ 22A,6A +joggling 'dZ0glIN Jb$ 22A,6A +jogs dZ0gz Ja%,Kj% 12A,2C,6A,15B +john dZ0n Ki$ 1 +joie de vivre ,ZwA d@ 'vivr@ L@% 4 +join dZoIn J0%,K6% 12A,2C,3A,6A,14,15A,15B +joined dZoInd Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +joiner 'dZoIn@R K6% 2 +joiners 'dZoIn@z Kj% 2 +joinery 'dZoIn@rI L@% 3 +joining 'dZoInIN Jb% 22A,2C,3A,6A,14,15A,15B +joins dZoInz Ja%,Kj% 12A,2C,3A,6A,14,15A,15B +joint dZoInt H0$,K6%,OA% 16A +jointed 'dZoIntId Hc$,Hd% 26A +jointing 'dZoIntIN Hb$ 26A +jointly 'dZoIntlI Pu% 2 +joints dZoInts Ha$,Kj% 16A +jointure 'dZoIntS@R K6$ 2 +jointures 'dZoIntS@z Kj$ 2 +joist dZoIst K6% 1 +joists dZoIsts Kj% 1 +joke dZ@Uk I2%,K6% 12A,2C +joked dZ@Ukt Ic%,Id% 12A,2C +joker 'dZ@Uk@R K6% 2 +jokers 'dZ@Uk@z Kj% 2 +jokes dZ@Uks Ia%,Kj% 12A,2C +joking 'dZ@UkIN Ib% 22A,2C +jokingly 'dZ@UkINlI Pu% 3 +jollied 'dZ0lId Hc%,Hd% 26A,15A,15B +jollier 'dZ0lI@R Or% 3 +jollies 'dZ0lIz Ha% 26A,15A,15B +jolliest 'dZ0lIIst Os% 3 +jollification ,dZ0lIfI'keISn M6% 5 +jollifications ,dZ0lIfI'keISnz Mj% 5 +jollities 'dZ0lItIz Mj% 3 +jollity 'dZ0lItI M8% 3 +jolly 'dZ0lI H3%,OD%,Pu% 26A,15A,15B +jollyboat 'dZ0lIb@Ut K6$ 3 +jollyboats 'dZ0lIb@Uts Kj$ 3 +jollying 'dZ0lIIN Hb% 36A,15A,15B +jolt dZ@Ult J0%,K6% 12A,2C,6A,15A,15B +jolted 'dZ@UltId Jc%,Jd% 22A,2C,6A,15A,15B +joltier 'dZ@UltI@R Or$ 3 +joltiest 'dZ@UltIIst Os$ 3 +jolting 'dZ@UltIN Jb% 22A,2C,6A,15A,15B +jolts dZ@Ults Ja%,Kj% 12A,2C,6A,15A,15B +jolty 'dZ@UltI OD% 2 +jonquil 'dZ0NkwIl K6$ 2 +jonquils 'dZ0NkwIlz Kj$ 2 +joss dZ0s K7$ 1 +joss-house 'dZ0s-haUs K6$ 2 +joss-houses 'dZ0s-haUzIz Kj$ 3 +joss-stick 'dZ0s-stIk K6% 2 +joss-sticks 'dZ0s-stIks Kj% 2 +josses 'dZ0sIz Kj$ 2 +jostle 'dZ0sl J2% 22C,6A +jostled 'dZ0sld Jc%,Jd% 22C,6A +jostles 'dZ0slz Ja% 22C,6A +jostling 'dZ0slIN Jb% 22C,6A +jot dZ0t H4%,K6% 115B +jots dZ0ts Ha%,Kj% 115B +jotted 'dZ0tId Hc%,Hd% 215B +jotter 'dZ0t@R K6% 2 +jotters 'dZ0t@z Kj% 2 +jotting 'dZ0tIN Hb% 215B +jottings 'dZ0tINs Kj% 2 +joule dZul K6$ 1 +joules dZulz Kj$ 1 +journal 'dZ3nl K6% 2 +journalese ,dZ3n@'liz L@% 3 +journalism 'dZ3n@lIz@m L@% 4 +journalist 'dZ3n@lIst K6% 3 +journalistic ,dZ3n@'lIstIk OA% 4 +journalistically ,dZ3n@'lIstIklI Pu% 5 +journalists 'dZ3n@lIsts Kj% 3 +journals 'dZ3nlz Kj% 2 +journey 'dZ3nI I0%,K6% 22A,2C +journeyed 'dZ3nId Ic%,Id% 22A,2C +journeying 'dZ3nIIN Ib% 32A,2C +journeyman 'dZ3nIm@n Ki% 3 +journeymen 'dZ3nIm@n Kj% 3 +journeys 'dZ3nIz Ia%,Kj% 22A,2C +joust dZaUst I0%,K6% 1 +jousted 'dZaUstId Ic%,Id% 2 +jousting 'dZaUstIN Ib% 2 +jousts dZaUsts Ia%,Kj% 1 +jovial 'dZ@UvI@l OA% 3 +jovialities ,dZ@UvI'&lItIz Mj$ 5 +joviality ,dZ@UvI'&lItI M8% 5 +jovially 'dZ@UvI@lI Pu% 4 +jowl dZaUl K6% 1 +jowlier 'dZaUlI@R Or$ 3 +jowliest 'dZaUlIIst Os$ 3 +jowls dZaUlz Kj% 1 +jowly 'dZaUlI OD$ 2 +joy dZoI I0$,M6% 1 +joy-bells 'dZoI-belz Kj$ 2 +joy-ride 'dZoI-raId K6% 2 +joy-rides 'dZoI-raIdz Kj% 2 +joy-stick 'dZoI-stIk K6% 2 +joy-sticks 'dZoI-stIks Kj% 2 +joyed dZoId Ic$,Id$ 1 +joyful 'dZoIf@l OA% 2 +joyfully 'dZoIf@lI Pu% 3 +joyfulness 'dZoIf@ln@s L@% 3 +joying 'dZoIIN Ib$ 2 +joyless 'dZoIl@s OA% 2 +joylessly 'dZoIl@slI Pu% 3 +joylessness 'dZoIl@sn@s L@% 3 +joyous 'dZoI@s OA% 2 +joyously 'dZoI@slI Pu% 3 +joyousness 'dZoI@sn@s L@% 3 +joys dZoIz Ia$,Mj% 1 +ju-jitsu ,dZu-'dZItsu L@% 3 +jubilant 'dZubIl@nt OA% 3 +jubilantly 'dZubIl@ntlI Pu% 4 +jubilation ,dZubI'leISn M6% 4 +jubilations ,dZubI'leISnz Mj$ 4 +jubilee 'dZubIli K6% 3 +jubilees 'dZubIliz Kj% 3 +judder 'dZVd@R I0% 2 +juddered 'dZVd@d Ic%,Id% 2 +juddering 'dZVd@rIN Ib% 3 +judders 'dZVd@z Ia% 2 +judge dZVdZ J2%,K6% 12A,3A,6A,9,10,22,25 +judged dZVdZd Jc%,Jd% 12A,3A,6A,9,10,22,25 +judgement 'dZVdZm@nt M6% 2 +judgements 'dZVdZm@nts Mj% 2 +judges 'dZVdZIz Ja%,Kj% 22A,3A,6A,9,10,22,25 +judging 'dZVdZIN Jb% 22A,3A,6A,9,10,22,25 +judicature 'dZudIk@tS@R M6$ 4 +judicatures 'dZudIk@tS@z Mj$ 4 +judicial dZu'dISl OA% 3 +judiciaries dZu'dIS@rIz Kj$ 4 +judiciary dZu'dIS@rI K8% 4 +judicious dZu'dIS@s OA% 3 +judiciously dZu'dIS@slI Pu% 4 +judiciousness dZu'dIS@sn@s L@% 4 +judo 'dZud@U L@% 2 +jug dZVg H4$,K6% 16A +jugful 'dZVgfUl K6% 2 +jugfuls 'dZVgfUlz Kj% 2 +jugged dZVgd Hc$,Hd% 16A +juggernaut 'dZVg@nOt K6% 3 +juggernauts 'dZVg@nOts Kj% 3 +jugging 'dZVgIN Hb$ 26A +juggle 'dZVgl J2% 22A,3A,6A,16A +juggled 'dZVgld Jc%,Jd% 22A,3A,6A,16A +juggler 'dZVgl@R K6% 2 +jugglers 'dZVgl@z Kj% 2 +juggles 'dZVglz Ja% 22A,3A,6A,16A +juggling 'dZVglIN Jb% 22A,3A,6A,16A +jugs dZVgz Ha$,Kj% 16A +jugular 'dZVgjUl@R OA% 3 +juice dZus M6% 1 +juices 'dZusIz Mj% 2 +juicier 'dZusI@R Or% 3 +juiciest 'dZusIIst Os% 3 +juiciness 'dZusIn@s L@% 3 +juicy 'dZusI OD% 2 +juju 'dZudZu K6$ 2 +jujube 'dZudZub K6$ 2 +jujubes 'dZudZubz Kj$ 2 +jujus 'dZudZuz Kj$ 2 +jukebox 'dZukb0ks K7% 2 +jukeboxes 'dZukb0ksIz Kj% 3 +julep 'dZulIp K6$ 2 +juleps 'dZulIps Kj$ 2 +jumble 'dZVmbl J2%,M6% 22C,15B +jumble-sale 'dZVmbl-seIl K6% 3 +jumble-sales 'dZVmbl-seIlz Kj% 3 +jumbled 'dZVmbld Jc%,Jd% 22C,15B +jumbles 'dZVmblz Ja%,Mj% 22C,15B +jumbling 'dZVmblIN Jb% 22C,15B +jumbo 'dZVmb@U OA% 2 +jump dZVmp J0%,K6% 12A,2C,6A +jumped dZVmpt Jc%,Jd% 12A,2C,6A +jumped-up 'dZVmpt-Vp OA% 2 +jumper 'dZVmp@R K6% 2 +jumpers 'dZVmp@z Kj% 2 +jumpier 'dZVmpI@R Or$ 3 +jumpiest 'dZVmpIIst Os$ 3 +jumpiness 'dZVmpIn@s L@% 3 +jumping 'dZVmpIN Jb% 22A,2C,6A +jumps dZVmps Ja%,Kj% 12A,2C,6A +jumpy 'dZVmpI OD% 2 +junction 'dZVNkSn M6% 2 +junctions 'dZVNkSnz Mj% 2 +juncture 'dZVNktS@R K6% 2 +junctures 'dZVNktS@z Kj$ 2 +jungle 'dZVNgl K6% 2 +jungles 'dZVNglz Kj% 2 +junglier 'dZVNglI@R Or$ 3 +jungliest 'dZVNglIIst Os$ 3 +jungly 'dZVNglI OD% 2 +junior 'dZunI@R K6%,OA% 3 +juniors 'dZunI@z Kj% 3 +juniper 'dZunIp@R K6% 3 +junipers 'dZunIp@z Kj% 3 +junk dZVNk M6% 1 +junk-shop 'dZVNk-S0p K6% 2 +junk-shops 'dZVNk-S0ps Kj% 2 +junket 'dZVNkIt I0%,M6% 2 +junketed 'dZVNkItId Ic%,Id% 3 +junketing 'dZVNkItIN Ib%,L@% 3 +junkets 'dZVNkIts Ia%,Mj% 2 +junkie 'dZVNkI K6% 2 +junkies 'dZVNkIz Kj% 2 +junks dZVNks Mj% 1 +junky 'dZVNkI K8% 2 +junta 'dZVnt@ K6% 2 +juntas 'dZVnt@z Kj% 2 +juridical dZU@'rIdIkl OA$ 4 +juries 'dZU@rIz Kj% 2 +jurisdiction ,dZU@rIs'dIkSn L@% 4 +jurisprudence ,dZU@rIs'prudns L@% 4 +jurist 'dZU@rIst K6% 2 +jurists 'dZU@rIsts Kj% 2 +juror 'dZU@r@R K6% 2 +jurors 'dZU@r@z Kj% 2 +jury 'dZU@rI K8% 2 +jury-box 'dZU@rI-b0ks K7% 3 +jury-boxes 'dZU@rI-b0ksIz Kj% 4 +jury-mast 'dZU@rI-mAst K6$ 3 +jury-masts 'dZU@rI-mAsts Kj$ 3 +juryman 'dZU@rIm@n Ki% 3 +jurymen 'dZU@rIm@n Kj% 3 +just dZVst OA%,Pu* 1 +justice 'dZVstIs M6% 2 +justices 'dZVstIsIz Mj% 3 +justiciaries dZV'stIS@rIz Kj$ 4 +justiciary dZV'stIS@rI K8$ 4 +justifiable ,dZVstI'faI@bl OA% 5 +justifiably ,dZVstI'faI@blI Pu% 5 +justification ,dZVstIfI'keISn M6% 5 +justifications ,dZVstIfI'keISnz Mj% 5 +justified 'dZVstIfaId Hc%,Hd% 36A,19C +justifies 'dZVstIfaIz Ha% 36A,19C +justify 'dZVstIfaI H3% 36A,19C +justifying 'dZVstIfaIIN Hb% 46A,19C +justly 'dZVstlI Pu% 2 +justness 'dZVstn@s L@% 2 +jut dZVt I4% 12C +jute dZut L@% 1 +juts dZVts Ia% 12C +jutted 'dZVtId Ic%,Id% 22C +jutting 'dZVtIN Ib% 22C +juvenile 'dZuv@naIl K6%,OA% 3 +juveniles 'dZuv@naIlz Kj% 3 +juxtapose ,dZVkst@'p@Uz H2% 36A +juxtaposed ,dZVkst@'p@Uzd Hc%,Hd% 36A +juxtaposes ,dZVkst@'p@UzIz Ha% 46A +juxtaposing ,dZVkst@'p@UzIN Hb% 46A +juxtaposition ,dZVkst@p@'zISn L@% 5 +k keI Ki$ 1 +k"ummel 'kUm@l L@$ 2 +k's keIz Kj$ 1 +kaffir 'k&f@R K6$ 2 +kaffirs 'k&f@z Kj$ 2 +kail keIl L@$ 1 +kakemono ,k&kI'm@Un@U K6$ 4 +kakemonos ,k&kI'm@Un@Uz Kj$ 4 +kale keIl L@$ 1 +kaleidoscope k@'laId@sk@Up K6% 4 +kaleidoscopes k@'laId@sk@Ups Kj% 4 +kaleidoscopic k@,laId@'sk0pIk OA% 5 +kalends 'k&lendz Kj$ 2 +kampong 'k&mp0N K6$ 2 +kampongs 'k&mp0Nz Kj$ 2 +kangaroo ,k&Ng@'ru K6% 3 +kangaroos ,k&Ng@'ruz Kj% 3 +kaolin 'keI@lIn L@$ 3 +kapok 'keIp0k L@$ 2 +kaput k@'pUt OA$ 2 +karat 'k&r@t K6$ 2 +karate k@'rAtI L@% 3 +karats 'k&r@ts Kj$ 2 +karma 'kAm@ K6$ 2 +karmas 'kAm@z Kj$ 2 +kava 'kAv@ L@$ 2 +kayak 'kaI&k K6$ 2 +kayaks 'kaI&ks Kj$ 2 +kebab k@'b&b K6% 2 +kebabs k@'b&bz Kj% 2 +kedgeree 'kedZ@ri L@% 3 +keel kil J0%,K6% 12C,6A,15B +keeled kild Jc%,Jd% 12C,6A,15B +keeling 'kilIN Jb% 22C,6A,15B +keels kilz Ja%,Kj% 12C,6A,15B +keen kin J0$,K6$,OC% 1 +keened kind Jc$,Jd$ 1 +keener 'kin@R Or% 2 +keenest 'kinIst Os% 2 +keening 'kinIN Jb$ 2 +keenly 'kinlI Pu% 2 +keenness 'kin+n@s L@% 2 +keens kinz Ja$,Kj$ 1 +keep kip J5*,M6% 12A,2C,2E,3A,6A,14,15A,15B,19B,22 +keeper 'kip@R K6% 2 +keepers 'kip@z Kj% 2 +keeping 'kipIN Jb%,L@% 22A,2C,2E,3A,6A,14,15A,15B,19B,22 +keeps kips Ja%,Mj% 12A,2C,2E,3A,6A,14,15A,15B,19B,22 +keepsake 'kipseIk K6% 2 +keepsakes 'kipseIks Kj% 2 +keg keg K6% 1 +kegs kegz Kj% 1 +kelp kelp L@$ 1 +ken ken H4$,L@$ 16A,9 +kenned kend Hc$,Hd$ 16A,9 +kennel 'kenl J4$,K6% 2 +kennelled 'kenld Jc$,Jd$ 2 +kennelling 'ken@lIN Jb$ 3 +kennels 'kenlz Ja$,Kj% 2 +kenning 'kenIN Hb$ 26A,9 +kens kenz Ha$ 16A,9 +kepi 'keIpI K6$ 2 +kepis 'keIpIz Kj$ 2 +kept kept Jc*,Jd* 12A,2C,2E,3A,6A,14,15A,15B,19B,22 +kerb k3b K6% 1 +kerbs k3bz Kj% 1 +kerbstone 'k3bst@Un K6% 2 +kerbstones 'k3bst@Unz Kj% 2 +kerchief 'k3tSIf K6$ 2 +kerchiefs 'k3tSIfs Kj$ 2 +kernel 'k3nl K6% 2 +kernels 'k3nlz Kj% 2 +kerosene 'ker@sin L@% 3 +kestrel 'kestr@l K6% 2 +kestrels 'kestr@lz Kj% 2 +ketch ketS K7$ 1 +ketches 'ketSIz Kj$ 2 +ketchup 'ketS@p L@% 2 +kettle 'ketl K6% 2 +kettledrum 'ketldrVm K6% 3 +kettledrums 'ketldrVmz Kj% 3 +kettles 'ketlz Kj% 2 +key ki H0%,K6% 16A +keyboard 'kibOd K6% 2 +keyboards 'kibOdz Kj% 2 +keyed kid Hc%,Hd% 16A +keyhole 'kih@Ul K6% 2 +keyholes 'kih@Ulz Kj% 2 +keying 'kiIN Hb% 26A +keyless 'kil@s OA$ 2 +keynote 'kin@Ut K6% 2 +keynotes 'kin@Uts Kj% 2 +keyring 'kirIN K6% 2 +keyrings 'kirINz Kj% 2 +keys kiz Ha%,Kj% 16A +keystone 'kist@Un K6% 2 +keystones 'kist@Unz Kj$ 2 +keyword 'kiw3d K6% 2 +keywords 'kiw3dz Kj% 2 +kg 'kIl@gr&mz Y]% 3 +khaki 'kAkI L@%,OA% 2 +khan kAn K6$ 1 +khans kAnz Kj$ 1 +kibbutz kI'bUts Ki% 2 +kibbutzim kIbU'tsim Kj$ 3 +kibbutznik kI'bUtsnIk K6$ 3 +kibbutzniks kI'bUtsnIks Kj$ 3 +kick kIk J0%,M6% 12A,2C,3A,6A,15A,15B +kick-start 'kIk-stAt K6% 2 +kick-starter 'kIk-stAt@R K6% 3 +kick-starters 'kIk-stAt@z Kj% 3 +kick-starts 'kIk-stAts Kj$ 2 +kickback 'kIkb&k K6% 2 +kickbacks 'kIkb&ks Kj$ 2 +kicked kIkt Jc%,Jd% 12A,2C,3A,6A,15A,15B +kicking 'kIkIN Jb% 22A,2C,3A,6A,15A,15B +kickoff 'kIk0f K6% 2 +kickoffs 'kIk0fs Kj% 2 +kicks kIks Ja%,Mj% 12A,2C,3A,6A,15A,15B +kid kId J4%,M6% 1 +kidded 'kIdId Jc%,Jd% 2 +kiddies 'kIdIz Kj% 2 +kidding 'kIdIN Jb% 2 +kiddy 'kIdI K8% 2 +kidnap 'kIdn&p H4% 2 +kidnapped 'kIdn&pt Hc%,Hd% 2 +kidnapper 'kIdn&p@R K6% 3 +kidnappers 'kIdn&p@z Kj% 3 +kidnapping 'kIdn&pIN Hb% 3 +kidnaps 'kIdn&ps Ha% 2 +kidney 'kIdnI K6% 2 +kidney-bean ,kIdnI-'bin K6% 3 +kidney-beans ,kIdnI-'binz Kj% 3 +kidneys 'kIdnIz Kj% 2 +kids kIdz Ja%,Mj% 1 +kill kIl J0%,Ki% 12A,6A,15B +killed kIld Jc%,Jd% 12A,6A,15B +killer 'kIl@R K6% 2 +killers 'kIl@z Kj% 2 +killing 'kIlIN Jb%,M6%,OA% 22A,6A,15B +killingly 'kIlINlI Pu$ 3 +killings 'kIlINz Mj% 2 +killjoy 'kIldZoI K6% 2 +killjoys 'kIldZoIz Kj$ 2 +kills kIlz Ja% 12A,6A,15B +kiln kIln K6% 1 +kilns kIlnz Kj% 1 +kilo 'kil@U K6% 2 +kilo- 'kIl@- U-% 2 +kilocycle 'kIl@saIkl K6$ 4 +kilocycles 'kIl@saIklz Kj$ 4 +kilogram 'kIl@gr&m K6% 3 +kilograms 'kIl@gr&mz Kj% 3 +kilolitre 'kIl@lit@R K6$ 4 +kilolitres 'kIl@lit@z Kj$ 4 +kilometre kI'l0mIt@R K6% 4 +kilometres kI'l0mIt@z Kj% 4 +kilos 'kil@Uz Kj% 2 +kilowatt 'kIl@w0t K6% 3 +kilowatts 'kIl@w0ts Kj% 3 +kilt kIlt K6% 1 +kilts kIlts Kj% 1 +kimono kI'm@Un@U K6% 3 +kimonos kI'm@Un@Uz Kj% 3 +kin kIn Kj% 1 +kind kaInd M6*,OC% 1 +kind-hearted kaInd-'hAtId OA% 3 +kinda 'kaInd@ Pu$ 2 +kinder 'kaInd@R Or% 2 +kindergarten 'kInd@gAtn K6% 4 +kindergartens 'kInd@gAtnz Kj% 4 +kindest 'kaIndIst Os% 2 +kindle 'kIndl J2% 22A,6A +kindled 'kIndld Jc%,Jd% 22A,6A +kindles 'kIndlz Ja% 22A,6A +kindlier 'kaIndlI@R Or% 3 +kindliest 'kaIndlIIst Os% 3 +kindling 'kIndlIN Jb%,L@% 22A,6A +kindly 'kaIndlI OD%,Pu% 2 +kindness 'kaIndn@s M7% 2 +kindnesses 'kaIndn@sIz Mj% 3 +kindred 'kIndrId L@%,OA% 2 +kinds kaIndz Mj% 1 +kine kaIn Kj$ 1 +kinetic kI'netIk OA$ 3 +kinetics kI'netIks Lk$ 3 +king kIN K6% 1 +king-size 'kIN-saIz OA% 2 +king-sized 'kIN-saIzd OA% 2 +kingcup 'kINkVp K6% 2 +kingcups 'kINkVps Kj% 2 +kingdom 'kINd@m K6% 2 +kingdoms 'kINd@mz Kj% 2 +kingfisher 'kINfIS@R K6% 3 +kingfishers 'kINfIS@z Kj% 3 +kinglike 'kINlaIk OA% 2 +kingly 'kINlI OA% 2 +kingpin 'kINpIn K6% 2 +kingpins 'kINpInz Kj$ 2 +kings kINz Kj% 1 +kingship 'kINSIp L@% 2 +kink kINk J0%,K6% 1 +kinked kINkt Jc%,Jd% 1 +kinkier 'kINkI@R Or% 3 +kinkiest 'kINkIIst Os% 3 +kinking 'kINkIN Jb$ 2 +kinks kINks Ja%,Kj% 1 +kinky 'kINkI OD% 2 +kinsfolk 'kInzf@Uk Kj% 2 +kinship 'kinSIp L@% 2 +kinsman 'kInzm@n Ki% 2 +kinsmen 'kInzm@n Kj% 2 +kinswoman 'kInzwUm@n Ki% 3 +kinswomen 'kInzwImIn Kj% 3 +kiosk 'ki0sk K6% 2 +kiosks 'ki0sks Kj% 2 +kip kIp I4%,K6% 12A,2C +kipped kIpt Ic%,Id% 12A,2C +kipper 'kIp@R K6% 2 +kippers 'kIp@z Kj% 2 +kipping 'kIpIN Ib% 22A,2C +kips kIps Ia%,Kj% 12A,2C +kirk k3k K6$ 1 +kirks k3ks Kj$ 1 +kirsch kI@S L@$ 1 +kirtle 'k3tl K6$ 2 +kirtles 'k3tlz Kj$ 2 +kismet 'kIzmet L@$ 2 +kiss kIs J1%,K7% 12A,6A,15A,15B +kissed kIst Jc%,Jd% 12A,6A,15A,15B +kisser 'kIs@R K6% 2 +kissers 'kIs@z Kj% 2 +kisses 'kIsIz Ja%,Kj% 22A,6A,15A,15B +kissing 'kIsIN Jb% 22A,6A,15A,15B +kit kIt H4%,M6% 115B +kitbag 'kItb&g K6% 2 +kitbags 'kItb&gz Kj% 2 +kitchen 'kItSIn K6% 2 +kitchenette ,kItSI'net K6% 3 +kitchenettes ,kItSI'nets Kj% 3 +kitchens 'kItSInz Kj% 2 +kite kaIt K6% 1 +kite-balloon 'kaIt-b@lun K6$ 3 +kite-balloons 'kaIt-b@lunz Kj$ 3 +kites kaIts Kj% 1 +kith kIT Kj% 1 +kits kIts Ha$,Mj% 115B +kitsch kItS OA% 1 +kitted 'kItId Hc%,Hd% 215B +kitten 'kItn K6% 2 +kittenish 'kItnIS OA% 3 +kittens 'kItnz Kj% 2 +kitties 'kItIz Kj% 2 +kitting 'kItIN Hb$ 215B +kitty 'kItI K8% 2 +kiwi 'kiwi K6% 2 +kiwis 'kiwiz Kj% 2 +klaxon 'kl&ksn K6% 2 +klaxons 'kl&ksnz Kj% 2 +kleenex 'klineks M7% 2 +kleenexes 'klineksIz Mj$ 3 +kleptomania ,klept@'meInI@ L@% 5 +kleptomaniac ,klept@'meInI&k K6% 5 +kleptomaniacs ,klept@'meInI&ks Kj% 5 +km 'kIl@mit@z Y]% 4 +knack n&k K6% 1 +knacker 'n&k@R K6% 2 +knackers 'n&k@z Kj% 2 +knacks n&ks Kj$ 1 +knap n&p H4$ 1 +knapped n&pt Hc$,Hd% 1 +knapping 'n&pIN Hb$ 2 +knaps n&ps Ha$ 1 +knapsack 'n&ps&k K6% 2 +knapsacks 'n&ps&ks Kj% 2 +knave neIv K6% 1 +knaveries 'neIv@rIz Mj% 3 +knavery 'neIv@rI M8% 3 +knaves neIvz Kj% 1 +knavish 'neIvIS OA% 2 +knavishly 'neIvISlI Pu% 3 +knead nid H0$ 16A +kneaded 'nidId Hc$,Hd$ 26A +kneading 'nidIN Hb$ 26A +kneads nidz Ha$ 16A +knee ni K6% 1 +knee-breeches 'ni-brItSIz Kj% 3 +knee-deep ni-'dip OA%,Pu% 2 +knee-high ni-'haI OA%,Pu% 2 +kneecap 'nik&p K6% 2 +kneecaps 'nik&ps Kj% 2 +kneel nil I0% 12A,2C +kneeled nild Ic%,Id% 12A,2C +kneeling 'nilIN Ib% 22A,2C +kneels nilz Ia% 12A,2C +knees niz Kj% 1 +knell nel Ki$ 1 +knelt nelt Ic%,Id% 12A,2C +knew nju Jc* 12A,3A,6A,8,9,10,17,18B,25 +knick-knack 'nIk-n&k K6% 2 +knick-knacks 'nIk-n&ks Kj% 2 +knickerbockers 'nIk@b0k@z Kj% 4 +knickers 'nIk@z Kj% 2 +knife naIf H2%,Ki% 16A +knife-edge 'naIf-edZ K6% 2 +knife-edges 'naIf-edZIz Kj$ 3 +knifed naIft Hc%,Hd% 16A +knifes naIfs Ha% 16A +knifing 'naIfIN Hb% 26A +knight naIt H0%,K6% 16A +knight-errant naIt-'er@nt Ki% 3 +knighted 'naItId Hc%,Hd% 26A +knighthood 'naIthUd M6% 2 +knighthoods 'naIthUdz Mj% 2 +knighting 'naItIN Hb% 26A +knightly 'naItlI OA$ 2 +knights naIts Ha%,Kj% 16A +knights-errant naIts-'er@nt Kj% 3 +knit nIt J4%,Jc%,Jd% 12A,2C,6A,15A,15B +knits nIts Ja% 12A,2C,6A,15A,15B +knitted 'nItId Jc%,Jd% 22A,2C,6A,15A,15B +knitter 'nIt@R K6% 2 +knitters 'nIt@z Kj% 2 +knitting 'nItIN Jb%,L@% 22A,2C,6A,15A,15B +knitting-machine 'nItIN-m@Sin K6% 4 +knitting-machines 'nItIN-m@Sinz Kj% 4 +knitting-needle 'nItIN-nidl K6% 4 +knitting-needles 'nItIN-nidlz Kj% 4 +knitwear 'nItwe@R L@% 2 +knives naIvz Kj% 1 +knob n0b K6% 1 +knobble 'n0bl K6$ 2 +knobbles 'n0blz Kj$ 2 +knobblier 'n0blI@R Or$ 3 +knobbliest 'n0blIIst Os$ 3 +knobbly 'n0blI OD% 2 +knobkerrie 'n0bkerI K6$ 3 +knobkerries 'n0bkerIz Kj$ 3 +knobs n0bz Kj% 1 +knock n0k J0%,K6% 12A,2C,6A,14,15A,15B +knock-kneed n0k-'nid OA% 2 +knock-on n0k-'0n K6% 2 +knock-ons n0k-'0nz Kj$ 2 +knockabout 'n0k@baUt OA% 3 +knockdown 'n0kdaUn OA% 2 +knocked n0kt Jc%,Jd% 12A,2C,6A,14,15A,15B +knocker 'n0k@R K6% 2 +knockers 'n0k@z Kj% 2 +knocking 'n0kIN Jb% 22A,2C,6A,14,15A,15B +knockout 'n0kaUt K6%,OA% 2 +knockouts 'n0kaUts Kj% 2 +knocks n0ks Ja%,Kj% 12A,2C,6A,14,15A,15B +knoll n@Ul K6$ 1 +knolls n@Ulz Kj$ 1 +knot n0t J4%,K6% 12A,6A,15B +knothole 'n0th@Ul K6% 2 +knotholes 'n0th@Ulz Kj% 2 +knots n0ts Ja%,Kj% 12A,6A,15B +knotted 'n0tId Jc%,Jd% 22A,6A,15B +knottier 'n0tI@R Or% 3 +knottiest 'n0tIIst Os% 3 +knotting 'n0tIN Jb% 22A,6A,15B +knotty 'n0tI OD% 2 +knout naUt K6$ 1 +knouts naUts Kj$ 1 +know n@U J5*,Ki% 12A,3A,6A,8,9,10,17,18B,25 +know-all 'n@U-Ol K6% 2 +know-alls 'n@U-Olz Kj% 2 +know-how 'n@U-haU L@% 2 +knowing 'n@UIN Jb%,OA% 22A,3A,6A,8,9,10,17,18B,25 +knowingly 'n@UINlI Pu% 3 +knowledge 'n0lIdZ L@% 2 +knowledgeable 'n0lIdZ@bl OA% 4 +known n@Un Jd* 12A,3A,6A,8,9,10,17,18B,25 +knows n@Uz Ja% 12A,3A,6A,8,9,10,17,18B,25 +knuckle 'nVkl I2%,K6% 2 +knuckled 'nVkld Ic%,Id% 2 +knuckles 'nVklz Ia%,Kj% 2 +knuckling 'nVklIN Ib% 2 +koala k@U'Al@ K6% 3 +koalas k@U'Al@z Kj% 3 +kobo 'k@Ub@U K6$ 2 +kobos 'k@Ub@Uz Kj$ 2 +kohl k@Ul L@$ 1 +kohlrabi ,k@Ul'rAbI M6% 3 +kohlrabis ,k@Ul'rAbIz Mj$ 3 +kola 'k@Ul@ K6$ 2 +kola-nut 'k@Ul@-nVt K6$ 3 +kola-nuts 'k@Ul@-nVts Kj$ 3 +kolas 'k@Ul@z Kj$ 2 +kookaburra 'kUk@bVr@ K6$ 4 +kookaburras 'kUk@bVr@z Kj$ 4 +kopeck 'k@Upek K6$ 2 +kopecks 'k@Upeks Kj$ 2 +kopje 'k0pI K6$ 2 +kopjes 'k0pIz Kj$ 2 +koppie 'k0pI K6$ 2 +koppies 'k0pIz Kj$ 2 +kosher 'k@US@R L@$,OA$ 2 +kotow ,kaU'taU I0$,K6$ 2 +kotowed ,kaU'taUd Ic$,Id$ 2 +kotowing ,kaU'taUIN Ib$ 3 +kotows ,kaU'taUz Ia$,Kj$ 2 +koumiss 'kumIs L@$ 2 +kowtow ,kaU'taU I0$,K6$ 2 +kowtowed ,kaU'taUd Ic$,Id$ 2 +kowtowing ,kaU'taUIN Ib$ 3 +kowtows ,kaU'taUz Ia$,Kj$ 2 +kraal krAl K6$ 1 +kraals krAlz Kj$ 1 +krona 'kr@Un@ Ki$ 2 +krone 'kr@Un@ Ki$ 2 +kroner 'kr@Un@R Kj$ 2 +kronor 'kr@Un@R Kj$ 2 +kudos 'kjud0s L@$ 2 +kumis 'kumIs L@$ 2 +kung fu ,kUN 'fu L@% 2 +kvass kv&s L@$ 1 +kw 'kIl@w0ts Y]% 3 +kwacha 'kw&tS@ K9$ 2 +kwela 'kweIl@ L@$ 2 +l el Ki$ 1 +l's elz Kj$ 1 +la lA Ki$ 1 +la-di-da ,lA-dI-'dA OA$ 3 +laager 'lAg@R K6$ 2 +laagers 'lAg@z Kj$ 2 +lab l&b K6% 1 +label 'leIbl H4%,K6% 26A +labelled 'leIbld Hc%,Hd% 26A +labelling 'leIb@lIN Hb% 36A +labels 'leIblz Ha%,Kj% 26A +labial 'leIbI@l OA% 3 +laboratories l@'b0r@trIz Kj% 4 +laboratory l@'b0r@trI K8% 4 +laborious l@'bOrI@s OA% 4 +laboriously l@'bOrI@slI Pu% 5 +labour 'leIb@R J0%,M6% 22A,2C,3A,4A,6A +labour-saving 'leIb@-seIvIN OA% 4 +laboured 'leIb@d Jc%,Jd%,OA% 22A,2C,3A,4A,6A +labourer 'leIb@r@R K6% 3 +labourers 'leIb@r@z Kj% 3 +labouring 'leIb@rIN Jb% 32A,2C,3A,4A,6A +labours 'leIb@z Ja%,Mj% 22A,2C,3A,4A,6A +labs l&bz Kj% 1 +laburnum l@'b3n@m K6% 3 +laburnums l@'b3n@mz Kj% 3 +labyrinth 'l&b@rInT K6% 3 +labyrinthine ,l&b@'rInTaIn OA% 4 +labyrinths 'l&b@rInTs Kj% 3 +lace leIs J2%,M6% 12A,2C,3A,6A,14,15A,15B +laced leIst Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +lacerate 'l&s@reIt H2% 36A +lacerated 'l&s@reItId Hc%,Hd% 46A +lacerates 'l&s@reIts Ha% 36A +lacerating 'l&s@reItIN Hb% 46A +laceration ,l&s@'reISn M6% 4 +lacerations ,l&s@'reISnz Mj% 4 +laces 'leIsIz Ja%,Mj% 22A,2C,3A,6A,14,15A,15B +lachrymal 'l&krIml OA$ 3 +lachrymose 'l&krIm@Us OA$ 3 +lacier 'leIsI@R Or$ 3 +laciest 'leIsIIst Os$ 3 +lacing 'leIsIN Jb% 22A,2C,3A,6A,14,15A,15B +lack l&k J0%,L@% 13A,6B +lack-lustre 'l&k-lVst@R OA% 3 +lackadaisical ,l&k@'deIzIkl OA% 5 +lackadaisically ,l&k@'deIzIklI Pu% 5 +lacked l&kt Jc%,Jd% 13A,6B +lackey 'l&kI K6% 2 +lackeys 'l&kIz Kj% 2 +lacking 'l&kIN Jb% 23A,6B +lacks l&ks Ja% 13A,6B +laconic l@'k0nIk OA% 3 +laconically l@'k0nIklI Pu% 4 +laconicism l@'k0nIsIz@m M6$ 5 +laconicisms l@'k0nIsIz@mz Mj$ 5 +laconism 'l&k@nIz@m M6$ 4 +laconisms 'l&k@nIz@mz Mj$ 4 +lacquer 'l&k@R H0$,M6% 26A +lacquered 'l&k@d Hc$,Hd% 26A +lacquering 'l&k@rIN Hb$ 36A +lacquers 'l&k@z Ha$,Mj$ 26A +lacrosse l@'kr0s L@% 2 +lactic 'l&ktIk OA% 2 +lacuna l@'kjun@ K6$ 3 +lacunae l@'kjuni Kj$ 3 +lacunas l@'kjun@z Kj$ 3 +lacy 'leIsI OD% 2 +lad l&d K6% 1 +ladder 'l&d@R I0%,K6% 2 +ladder-proof 'l&d@-pruf OA% 3 +laddered 'l&d@d Ic%,Id% 2 +laddering 'l&d@rIN Ib% 3 +ladders 'l&d@z Ia%,Kj% 2 +laddie 'l&dI K6% 2 +laddies 'l&dIz Kj% 2 +lade leId H5$ 16A +laden 'leIdn Hd%,OA% 26A +ladies 'leIdIz Kj% 2 +ladies-in-waiting ,leIdIz-In-'weItIN Kj% 5 +lading 'leIdIN L@$ 2 +ladle 'leIdl H2%,K6% 26A,15B +ladled 'leIdld Hc%,Hd% 26A,15B +ladles 'leIdlz Ha%,Kj% 26A,15B +ladling 'leIdlIN Hb% 26A,15B +lads l&dz Kj% 1 +lady 'leIdI K8% 2 +lady's-maid 'leIdIz-meId K6% 3 +lady's-maids 'leIdIz-meIdz Kj% 3 +lady-in-waiting ,leIdI-In-'weItIN Ki% 5 +lady-killer 'leIdI-kIl@R K6$ 4 +lady-killers 'leIdI-kIl@z Kj$ 4 +ladybird 'leIdIb3d K6% 3 +ladybirds 'leIdIb3dz Kj% 3 +ladylike 'leIdIlaIk OA% 3 +ladyship 'leIdISIp K6% 3 +ladyships 'leIdISIps Kj% 3 +lag l&g J4%,K6% 12A,2C,6A,14 +lager 'lAg@R M6% 2 +lagers 'lAg@z Mj% 2 +laggard 'l&g@d K6% 2 +laggards 'l&g@dz Kj% 2 +lagged l&gd Jc%,Jd% 12A,2C,6A,14 +lagging 'l&gIN Jb%,L@% 22A,2C,6A,14 +lagoon l@'gun K6% 2 +lagoons l@'gunz Kj% 2 +lags l&gz Ja%,Kj% 12A,2C,6A,14 +laic 'leIIk OA$ 2 +laicize 'leIIsaIz H2$ 36A +laicized 'leIIsaIzd Hc$,Hd$ 36A +laicizes 'leIIsaIzIz Ha$ 46A +laicizing 'leIIsaIzIN Hb$ 46A +laid leId Jc%,Jd% 12A,2B,2C,6A,12C,14,15A,15B,22 +lain leIn Id$ 12A,2C,2D,3A +lair le@R K6% 1 +laird le@d K6% 1 +lairds le@dz Kj% 1 +lairs le@z Kj% 1 +laissez-faire ,leIseI-'fe@R L@% 3 +laities 'leI@tIz Kj$ 3 +laity 'leI@tI K8% 3 +lake leIk K6% 1 +lakes leIks Kj% 1 +lakh lAk K6$ 1 +lakhs lAks Kj$ 1 +lam l&m J4$ 13A,6A +lam_e 'lAmeI L@% 2 +lama 'lAm@ K6$ 2 +lamas 'lAm@z Kj$ 2 +lamaseries 'lAm@s@rIz Kj$ 4 +lamasery 'lAm@s@rI K8$ 4 +lamb l&m I0%,M6% 1 +lambaste l&m'beIst H2$ 2 +lambasted l&m'beIstId Hc$,Hd% 3 +lambastes l&m'beIsts Ha$ 2 +lambasting l&m'beIstIN Hb$ 3 +lambed l&md Ic%,Id% 1 +lambency 'l&mb@nsI L@$ 3 +lambent 'l&mb@nt OA$ 2 +lambing 'l&mIN Ib% 2 +lambkin 'l&mkIn K6% 2 +lambkins 'l&mkInz Kj% 2 +lambs l&mz Ia%,Mj% 1 +lambskin 'l&mskIn M6% 2 +lambskins 'l&mskInz Mj$ 2 +lame leIm H2%,OB% 1 +lamed leImd Hc%,Hd% 1 +lamely 'leImlI Pu% 2 +lameness 'leImn@s L@% 2 +lament l@'ment J0%,K6% 22A,3A,6A +lamentable 'l&m@nt@bl OA% 4 +lamentably 'l&m@nt@blI Pu% 4 +lamentation ,l&men'teISn M6% 4 +lamentations ,l&men'teISnz Mj% 4 +lamented l@'mentId Jc%,Jd% 32A,3A,6A +lamenting l@'mentIN Jb% 32A,3A,6A +laments l@'ments Ja%,Kj% 22A,3A,6A +lamer 'leIm@R Or% 2 +lames leImz Ha% 1 +lamest 'leImIst Os% 2 +laminate 'l&mIneIt J2% 32A,6A +laminated 'l&mIneItId Jc%,Jd% 42A,6A +laminates 'l&mIneIts Ja% 32A,6A +laminating 'l&mIneItIN Jb% 42A,6A +laming 'leImIN Hb% 2 +lammed l&md Jc$,Jd$ 13A,6A +lamming 'l&mIN Jb$ 23A,6A +lamp l&mp K6% 1 +lamp-black 'l&mp-bl&k L@% 2 +lamplight 'l&mplaIt L@% 2 +lamplighter 'l&mplaIt@R K6% 3 +lamplighters 'l&mplaIt@z Kj% 3 +lamplit 'l&mplIt OA% 2 +lampoon l&m'pun H0%,K6% 26A +lampooned l&m'pund Hc%,Hd% 26A +lampooning l&m'punIN Hb% 36A +lampoons l&m'punz Ha%,Kj% 26A +lamppost 'l&mp@Ust K6% 2 +lampposts 'l&mp@Usts Kj% 2 +lamprey 'l&mprI K6% 2 +lampreys 'l&mprIz Kj% 2 +lamps l&mps Kj% 1 +lampshade 'l&mpSeId K6% 2 +lampshades 'l&mpSeIdz Kj% 2 +lams l&mz Ja$ 13A,6A +lance lAns H2%,K6% 16A +lance-corporal lAns-'kOp@r@l K6% 4 +lance-corporals lAns-'kOp@r@lz Kj% 4 +lanced lAnst Hc%,Hd% 16A +lancer 'lAns@R K6% 2 +lancers 'lAns@z Kj% 2 +lances 'lAnsIz Ha%,Kj% 26A +lancet 'lAnsIt K6% 2 +lancets 'lAnsIts Kj% 2 +lancing 'lAnsIN Hb% 26A +land l&nd J0%,M6* 12A,2C,6A,12C +land-agent 'l&nd-eIdZ@nt K6% 3 +land-agents 'l&nd-eIdZ@nts Kj% 3 +landau 'l&ndO K6$ 2 +landaus 'l&ndOz Kj$ 2 +landed 'l&ndId Jc%,Jd%,OA% 22A,2C,6A,12C +landfall 'l&ndfOl K6% 2 +landfalls 'l&ndfOlz Kj% 2 +landgrave 'l&ndgreIv K6$ 2 +landgraves 'l&ndgreIvz Kj$ 2 +landholder 'l&ndh@Uld@R K6% 3 +landholders 'l&ndh@Uld@z Kj% 3 +landing 'l&ndIN Jb%,K6% 22A,2C,6A,12C +landing-craft 'l&ndIN-krAft K9% 3 +landing-field 'l&ndIN-fild K6% 3 +landing-fields 'l&ndIN-fildz Kj% 3 +landing-gear 'l&ndIN-gI@R L@% 3 +landing-net 'l&ndIN-net K6% 3 +landing-nets 'l&ndIN-nets Kj% 3 +landing-parties 'l&ndIN-pAtIz Kj% 4 +landing-party 'l&ndIN-pAtI K8% 4 +landing-place 'l&ndIN-pleIs K6% 3 +landing-places 'l&ndIN-pleIsIz Kj% 4 +landing-stage 'l&ndIN-steIdZ K6% 3 +landing-stages 'l&ndIN-steIdZIz Kj% 4 +landing-strip 'l&ndIN-strIp K6% 3 +landing-strips 'l&ndIN-strIps Kj% 3 +landings 'l&ndINz Kj% 2 +landladies 'l&ndleIdIz Kj% 3 +landlady 'l&ndleIdI K8% 3 +landless 'l&ndl@s OA% 2 +landlocked 'l&ndl0kt OA% 2 +landlord 'l&ndlOd K6% 2 +landlords 'l&ndlOdz Kj% 2 +landlubber 'l&ndlVb@R K6% 3 +landlubbers 'l&ndlVb@z Kj% 3 +landmark 'l&ndmAk K6% 2 +landmarks 'l&ndmAks Kj% 2 +landmine 'l&ndmaIn K6% 2 +landmines 'l&ndmaInz Kj% 2 +landowner 'l&nd@Un@R K6% 3 +landowners 'l&nd@Un@z Kj% 3 +lands l&ndz Ja%,Mj% 12A,2C,6A,12C +landscape 'l&ndskeIp H2%,M6% 26A +landscaped 'l&ndskeIpt Hc%,Hd% 26A +landscapes 'l&ndskeIps Ha%,Mj% 26A +landscaping 'l&ndskeIpIN Hb% 36A +landslide 'l&ndslaId K6% 2 +landslides 'l&ndslaIdz Kj% 2 +landslip 'l&ndslIp K6% 2 +landslips 'l&ndslIps Kj% 2 +landsman 'l&ndzm@n Ki% 2 +landsmen 'l&ndzm@n Kj% 2 +landward 'l&ndw@d Pu% 2 +lane leIn K6% 1 +lanes leInz Kj% 1 +langsyne ,l&N'saIn L@$,Pu$ 2 +language 'l&NgwIdZ M6% 2 +languages 'l&NgwIdZIz Mj% 3 +languid 'l&NgwId OA% 2 +languidly 'l&NgwIdlI Pu% 3 +languish 'l&NgwIS I1% 22A,2C +languished 'l&NgwISt Ic%,Id% 22A,2C +languishes 'l&NgwISIz Ia% 32A,2C +languishing 'l&NgwISIN Ib% 32A,2C +languor 'l&Ng@R L@$ 2 +languorous 'l&ng@r@s OA$ 3 +languorously 'l&Ng@r@slI Pu$ 4 +langur lVN'gU@R K6$ 2 +langurs lVN'gU@z Kj$ 2 +lank l&Nk OA% 1 +lankier 'l&NkI@R Or% 3 +lankiest 'l&NkIIst Os% 3 +lanky 'l&NkI OD% 2 +lanolin 'l&n@lIn L@% 3 +lantern 'l&nt@n K6% 2 +lantern-jawed 'l&nt@n-dZOd OA% 3 +lanterns 'l&nt@nz Kj% 2 +lanyard 'l&nj@d K6$ 2 +lanyards 'l&nj@dz Kj$ 2 +lap l&p J4%,M6% 12A,2C,6A,15B +lap-dog 'l&p-d0g K6% 2 +lap-dogs 'l&p-d0gz Kj% 2 +lapel l@'pel K6% 2 +lapels l@'pelz Kj% 2 +lapidaries 'l&pId@rIz Kj$ 4 +lapidary 'l&pId@rI K8$,OA$ 4 +lapis lazuli ,l&pIs 'l&zjUlI M6$ 5 +lapis lazulis ,l&pIs 'l&zjUlIz Mj$ 5 +lapped l&pt Jc%,Jd% 12A,2C,6A,15B +lapping 'l&pIN Jb% 22A,2C,6A,15B +laps l&ps Ja%,Mj% 12A,2C,6A,15B +lapse l&ps I2%,K6% 12A,3A +lapsed l&pst Ic%,Id% 12A,3A +lapses 'l&psIz Ia%,Kj% 22A,3A +lapsing 'l&psIN Ib% 22A,3A +lapwing 'l&pwIN K6% 2 +lapwings 'l&pwINz Kj% 2 +larboard 'lAb@d L@$,OA$ 2 +larcenies 'lAs@nIz Mj$ 3 +larceny 'lAs@nI M8% 3 +larch lAtS M7% 1 +larches 'lAtSIz Mj% 2 +lard lAd H0%,L@% 16A +larded 'lAdId Hc%,Hd% 26A +larder 'lAd@R K6% 2 +larders 'lAd@z Kj% 2 +larding 'lAdIN Hb% 26A +lards lAdz Ha% 16A +large lAdZ L@%,OB*,Pu* 1 +large-scale 'lAdZ-skeIl OA% 2 +largely 'lAdZlI Pu% 2 +largeness 'lAdZn@s L@% 2 +larger 'lAdZ@R Or% 2 +largesse lA'dZes L@% 2 +largest 'lAdZIst Os% 2 +largish 'lAdZIS OA$ 2 +largo 'lAg@U K6$ 2 +largos 'lAg@Uz Kj$ 2 +lariat 'l&rI@t K6$ 3 +lariats 'l&rI@ts Kj$ 3 +lark lAk I0%,K6% 12A,2C +larked lAkt Ic%,Id% 12A,2C +larking 'lAkIN Ib% 22A,2C +larks lAks Ia%,Kj% 12A,2C +larkspur 'lAksp3R K6% 2 +larkspurs 'lAksp3z Kj% 2 +larn lAn J0$ 1 +larned lAnd Jc$,Jd$ 1 +larning 'lAnIN Jb$ 2 +larns lAnz Ja$ 1 +larva 'lAv@ Ki% 2 +larvae 'lAvi Kj% 2 +larval 'lAvl OA% 2 +laryngitis ,l&rIn'dZaItIs L@% 4 +larynx 'l&rINks K7% 2 +larynxes 'l&rINksIz Kj% 3 +lascar 'l&sk@R K6$ 2 +lascars 'l&sk@z Kj$ 2 +lascivious l@'sIvI@s OA% 4 +lasciviously l@'sIvI@slI Pu% 5 +lasciviousness l@'sIvI@sn@s L@% 5 +laser 'leIz@R K6% 2 +lasers 'leIz@z Kj% 2 +lash l&S J1%,K7% 12C,6A,14,15A,15B +lash-up 'l&S-Vp K6$ 2 +lash-ups 'l&S-Vps Kj$ 2 +lashed l&St Jc%,Jd% 12C,6A,14,15A,15B +lashes 'l&SIz Ja%,Kj% 22C,6A,14,15A,15B +lashing 'l&SIN Jb%,K6% 22C,6A,14,15A,15B +lashings 'l&SINz Kj% 2 +lass l&s K7% 1 +lasses 'l&sIz Kj% 2 +lassie 'l&sI K6% 2 +lassies 'l&sIz Kj% 2 +lassitude 'l&sItjud L@% 3 +lasso l&'su H0%,K6% 2 +lassoed l&'sud Hc%,Hd% 2 +lassoes l&'suz Kj% 2 +lassoing l&'suIN Hb% 3 +lassos l&'suz Ha%,Kj% 2 +last lAst I0%,K6%,OA*,Pu* 12A,2B,2C +lasted 'lAstId Ic%,Id% 22A,2B,2C +lasting 'lAstIN Ib%,OA% 22A,2B,2C +lastly 'lAstlI Pu% 2 +lasts lAsts Ia%,Kj% 12A,2B,2C +lat l&t Y>% 1 +latch l&tS J1%,K7% 12A,2C,3A,6A +latched l&tSt Jc%,Jd% 12A,2C,3A,6A +latches 'l&tSIz Ja%,Kj% 22A,2C,3A,6A +latching 'l&tSIN Jb% 22A,2C,3A,6A +latchkey 'l&tSki K6% 2 +latchkeys 'l&tSkiz Kj% 2 +late leIt OB%,Pu% 1 +lateen l@'tin OA$ 2 +lately 'leItlI Pu% 2 +latent 'leItnt OA% 2 +later 'leIt@R Or* 2 +lateral 'l&t@r@l OA% 3 +laterally 'l&tr@lI Pu% 3 +laterite 'l&t@raIt L@$ 3 +latest 'leItIst Os% 2 +latex 'leIteks L@% 2 +lath lAT K6$ 1 +lathe leID K6% 1 +lather 'lAD@R J0%,L@% 22A,6A +lathered 'lAD@d Jc%,Jd% 22A,6A +lathering 'lAD@rIN Jb% 32A,6A +lathers 'lAD@z Ja% 22A,6A +lathes leIDz Kj% 1 +lathi 'lAtI K6$ 2 +lathis 'lAtIz Kj$ 2 +laths lADz Kj% 1 +latish 'leItIS OA% 2 +latitude 'l&tItjud M6% 3 +latitudes 'l&tItjudz M6% 3 +latitudinal ,l&tI'tjudInl OA% 5 +latitudinarian ,l&tItjudI'ne@rI@n K6$,OA$ 7 +latitudinarians ,l&tItjudI'ne@rI@nz Kj$ 7 +latrine l@'trin K6% 2 +latrines l@'trinz Kj% 2 +latter 'l&t@R OA% 2 +latter-day 'l&t@-deI OA% 3 +latterly 'l&t@lI Pu% 3 +lattice 'l&tIs K6% 2 +latticed 'l&tIst OA% 2 +lattices 'l&tIsIz Kj% 3 +laud lOd H0$ 16A +laudable 'lOd@bl OA% 3 +laudably 'lOd@blI Pu% 3 +laudanum 'lOd@n@m L@% 3 +laudatory 'lOd@t@rI OA% 4 +lauded 'lOdId Hc$,Hd% 26A +lauding 'lOdIN Hb$ 26A +lauds lOdz Ha$ 16A +laugh lAf J0%,K6% 12A,2B,2C,3A,6B,15A,15B,22 +laughable 'lAf@bl OA% 3 +laughably 'lAf@blI Pu% 3 +laughed lAft Jc%,Jd% 12A,2B,2C,3A,6B,15A,15B,22 +laughing 'lAfIN Jb%,OA% 22A,2B,2C,3A,6B,15A,15B,22 +laughing-gas 'lAfIN-g&s L@% 3 +laughing-stock 'lAfIN-st0k K6% 3 +laughing-stocks 'lAfIN-st0ks Kj% 3 +laughingly 'lAfINlI Pu% 3 +laughs lAfs Ja%,Kj% 12A,2B,2C,3A,6B,15A,15B,22 +laughter 'lAft@R L@% 2 +launch lOntS J1%,K7% 12C,3A,6A,15A +launched lOntSt Jc%,Jd% 12C,3A,6A,15A +launcher 'lOntS@R K6% 2 +launchers 'lOntS@z Kj% 2 +launches 'lOntSIz Ja%,Kj% 22C,3A,6A,15A +launching 'lOntSIN Jb% 22C,3A,6A,15A +launching-pad 'lOntSIN-p&d K6% 3 +launching-pads 'lOntSIN-p&dz Kj% 3 +launching-site 'lOntSIN-saIt K6% 3 +launching-sites 'lOntSIN-saIts Kj% 3 +launder 'lOnd@R J0$ 22A,6A +laundered 'lOnd@d Jc$,Jd% 22A,6A +launderette lOn'dret K6% 2 +launderettes lOn'drets Kj% 2 +laundering 'lOnd@rIN Jb$ 32A,6A +launders 'lOnd@z Ja$ 22A,6A +laundress 'lOndrIs K7$ 2 +laundresses 'lOndrIsIz Kj$ 3 +laundries 'lOndrIz Kj% 2 +laundry 'lOndrI K8% 2 +laundryman 'lOndrIm&n Ki% 3 +laundrymen 'lOndrImen Kj% 3 +laundrywoman 'lOndrIwUm@n Ki% 4 +laundrywomen 'lOndrIwImIn Kj% 4 +laureate 'l0rI@t K6%,OA% 2 +laureates 'l0rI@ts Kj% 2 +laurel 'l0r@l K6% 2 +laurelled 'l0r@ld OA$ 2 +laurels 'l0r@lz Kj% 2 +lav l&v K6% 1 +lava 'lAv@ L@% 2 +lavatories 'l&v@trIz Kj% 3 +lavatory 'l&v@trI K8% 3 +lave leIv H2$ 1 +laved leIvd Hc$,Hd$ 1 +lavender 'l&v@nd@R L@% 3 +laves leIvz Ha$ 1 +laving 'leIvIN Hb$ 2 +lavish 'l&vIS H1%,OA% 214 +lavished 'l&vISt Hc%,Hd% 214 +lavishes 'l&vISIz Ha% 314 +lavishing 'l&vISIN Hb% 314 +lavishly 'l&vISlI Pu% 3 +lavs l&vz Kj% 1 +law lO M6% 1 +law-abiding 'lO-@baIdIN OA% 4 +law-officer 'lO-0fIs@R K6% 4 +law-officers 'lO-0fIs@z Kj% 4 +lawbreaker 'lObreIk@R K6% 3 +lawbreakers 'lObreIk@z Kj% 3 +lawful 'lOf@l OA% 2 +lawfully 'lOf@lI Pu% 3 +lawgiver 'lOgIv@R K6% 3 +lawgivers 'lOgIv@z Kj% 3 +lawless 'lOl@s OA% 2 +lawlessly 'lOl@slI Pu% 3 +lawlessness 'lOl@sn@s L@% 3 +lawmaker 'lOmeIk@R K6% 3 +lawmakers 'lOmeIk@z Kj% 3 +lawmaking 'lOmeIkIN L@% 3 +lawn lOn M6% 1 +lawn-mower 'lOn-m@U@R K6% 3 +lawn-mowers 'lOn-m@U@z Kj% 3 +lawns lOnz Mj% 1 +laws lOz Mj% 1 +lawyer 'lOj@R K6% 2 +lawyers 'lOj@z Kj% 2 +lax l&ks OA% 1 +laxative 'l&ks@tIv M6%,OA% 3 +laxatives 'l&ks@tIvz Mj% 3 +laxities 'l&ksItIz Mj$ 3 +laxity 'l&ksItI M8% 3 +laxly 'l&kslI Pu$ 2 +lay leI Ic%,J5%,K6%,OA% 12A,2B,2C,2D,3A,6A,12C,14,15A,15B,22 +lay figure ,leI 'fIg@R K6$ 3 +lay figures ,leI 'fIg@z Kj$ 3 +lay-off 'leI-0f K6% 2 +lay-offs 'leI-0fs Kj$ 2 +lay-out 'leI-aUt K6% 2 +lay-outs 'leI-aUts Kj$ 2 +layabout 'leI@baUt K6% 3 +layabouts 'leI@baUts Kj% 3 +layby 'leIbaI K6% 2 +laybys 'leIbaIz Kj% 2 +layer 'leI@R H0%,K6% 26A +layer-cake 'leI@-keIk K6% 3 +layer-cakes 'leI@-keIks Kj% 3 +layered 'leI@d Hc%,Hd% 26A +layering 'leI@rIN Hb% 36A +layers 'leI@z Ha%,Kj% 26A +layette leI'et K6$ 2 +layettes leI'ets Kj$ 2 +laying 'leIIN Jb% 22A,2B,2C,6A,12C,14,15A,15B,22 +layman 'leIm@n Ki% 2 +laymen 'leIm@n Kj% 2 +layover 'leI@Uv@R K6$ 3 +layovers 'leI@Uv@z Kj$ 3 +lays leIz Ja%,Kj% 12A,2B,2C,6A,12C,14,15A,15B,22 +lazar 'l&z@R K6$ 2 +lazaret ,l&z@'ret K6$ 3 +lazarets ,l&z@'rets Kj$ 3 +lazarette ,l&z@'ret K6$ 3 +lazarettes ,l&z@'rets Kj$ 3 +lazaretto ,l&z@'ret@U K6$ 4 +lazarettos ,l&z@'ret@Uz Kj$ 4 +lazars 'l&z@z Kj$ 2 +laze leIz J2% 12A,2C,15B +lazed leIzd Jc%,Jd% 12A,2C,15B +lazes 'leIzIz Ja% 22A,2C,15B +lazier 'leIzI@R Or% 3 +laziest 'leIzIIst Os% 3 +lazily 'leIzIlI Pu% 3 +laziness 'leIzIn@s L@% 3 +lazing 'leIzIN Jb% 22A,2C,15B +lazy 'leIzI OD% 2 +lazybones 'leIzIb@Unz Ki% 3 +lb paUnd Y]% 1 +lbs paUndz Y)% 1 +lbw ,el,bi'dVblju Y~% 5 +lea li K6$ 1 +leach litS H1$ 16A,15B +leached litSt Hc$,Hd% 16A,15B +leaches 'litSIz Ha$ 26A,15B +leaching 'litSIN Hb$ 26A,15B +lead led M6% 1 +lead lid J5%,M6% 12A,2C,3A,6A,12C,14,15A,15B,17 +lead-in 'lid-In K6% 2 +lead-ins 'lid-Inz Kj% 2 +lead-ore 'led-OR L@% 2 +leaded 'ledId OA% 2 +leaden 'ledn OA% 2 +leader 'lid@R K6% 2 +leaderless 'lid@l@s OA% 3 +leaders 'lid@z Kj% 2 +leadership 'lid@SIp L@% 3 +leading 'ledIN L@% 2 +leading 'lidIN Jb%,L@%,OA% 22A,2C,3A,6A,12C,14,15A,15B,17 +leading-rein 'lidIN-reIn K6% 3 +leading-reins 'lidIN-reInz Kj% 3 +leading-strings 'lidIN-strINz Kj$ 3 +leads ledz Mj$ 1 +leads lidz Ja%,Mj% 12A,2C,3A,6A,12C,14,15A,15B,17 +leaf lif I0%,Ki% 1 +leaf-bud 'lif-bVd K6$ 2 +leaf-buds 'lif-bVdz Kj$ 2 +leaf-mould 'lif-m@Uld L@% 2 +leafed lift Ic%,Id% 1 +leafier 'lifI@R Or% 3 +leafiest 'lifIIst Os% 3 +leafing 'lifIN Ib% 2 +leafless 'lifl@s OA% 2 +leaflet 'liflIt K6% 2 +leaflets 'liflIts Kj% 2 +leafs lifs Ia$ 1 +leafy 'lifI OD% 2 +league lig J2$,K6% 12C,6A,15A,15B +leagued ligd Jc$,Jd$ 12C,6A,15A,15B +leagues ligz Ja$,Kj% 12C,6A,15A,15B +leaguing 'ligIN Jb$ 22C,6A,15A,15B +leak lik J0%,K6% 12A,2C,6A,14 +leakage 'likIdZ M6% 2 +leakages 'likIdZIz Mj% 3 +leaked likt Jc%,Jd% 12A,2C,6A,14 +leakier 'likI@R Or% 3 +leakiest 'likIIst Os% 3 +leaking 'likIN Jb% 22A,2C,6A,14 +leaks liks Ja%,Kj% 12A,2C,6A,14 +leaky 'likI OD% 2 +leal lil OA$ 1 +lean lin J0%,L@%,OC% 12A,2C,3A,15A +lean-to 'lin-tu K6% 2 +lean-tos 'lin-tuz Kj$ 2 +leaned lind Jc%,Jd% 12A,2C,3A,15A +leaner 'lin@R Or% 2 +leanest 'linIst Os% 2 +leaning 'linIN Jb%,K6% 22A,2C,3A,15A +leanings 'linINz Kj% 2 +leanness 'lin+n@s L@% 2 +leans linz Ja% 12A,2C,3A,15A +leant lent Jc%,Jd% 12A,2C,3A,15A +leap lip J0%,K6% 12A,2C,3A,6A,15A +leap-year 'lip-j3R K6% 2 +leap-years 'lip-j3z Kj% 2 +leaped lipt Jc%,Jd% 12A,2C,3A,6A,15A +leapfrog 'lipfr0g H4%,L@% 2 +leapfrogged 'lipfr0gd Hc%,Hd% 2 +leapfrogging 'lipfr0gIN Hb% 3 +leapfrogs 'lipfr0gz Ha% 2 +leaping 'lipIN Jb% 22A,2C,3A,6A,15A +leaps lips Ja%,Kj% 12A,2C,3A,6A,15A +leapt lept Jc%,Jd% 12A,2C,3A,6A,15A +learn l3n J0% 12A,3A,6A,7A,8,9,10,15A,15B +learned 'l3nId OA% 2 +learned l3nd Jc%,Jd% 12A,3A,6A,7A,8,9,10,15A,15B +learnedly 'l3nIdlI Pu% 3 +learner 'l3n@R K6% 2 +learners 'l3n@z Kj% 2 +learning 'l3nIN Jb%,L@% 22A,3A,6A,7A,8,9,10,15A,15B +learns l3nz Ja% 12A,3A,6A,7A,8,9,10,15A,15B +learnt l3nt Jc%,Jd% 12A,3A,6A,7A,8,9,10,15A,15B +leas liz Kj$ 1 +lease lis H2%,K6% 16A +lease-lend 'lis-lend L@$ 2 +leased list Hc%,Hd% 16A +leasehold 'lish@Uld K6%,OA% 2 +leaseholder 'lish@Uld@R K6% 3 +leaseholders 'lish@Uld@z Kj% 3 +leaseholds 'lish@Uldz Kj% 2 +leases 'lisIz Ha%,Kj% 26A +leash liS K7% 1 +leashes 'liSIz Kj$ 2 +leasing 'lisIN Hb% 26A +least list Ki%,OA*,Pu* 1 +leastways 'listweIz Pu% 2 +leastwise 'listwaIz Pu% 2 +leather 'leD@R M6% 2 +leather-jacket 'leD@-dZ&kIt K6% 4 +leather-jackets 'leD@-dZ&kIts Kj% 4 +leatherette ,leD@'ret L@$ 3 +leatherneck 'leD@nek K6$ 3 +leathernecks 'leD@neks Kj$ 3 +leathers 'leD@z Mj% 2 +leatherwork 'leD@w3k L@% 3 +leathery 'leD@rI OA% 3 +leave liv J5*,M6% 12A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +leave-taking 'liv-teIkIN K6% 3 +leave-takings 'liv-teIkINz Kj% 3 +leaven 'levn H0$,L@$ 26A +leavened 'levnd Hc$,Hd% 26A +leavening 'levnIN Hb$ 36A +leavens 'levnz Ha$ 26A +leaves livz Ja%,Mj% 12A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +leaving 'livIN Jb% 22A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +leavings 'livINz Kj% 2 +lecher 'letS@R K6% 2 +lecheries 'letS@rIz Mj$ 3 +lecherous 'letS@r@s OA% 3 +lechers 'letS@z Kj% 2 +lechery 'letS@rI M8% 3 +lectern 'lekt@n K6% 2 +lecterns 'lekt@nz Kj% 2 +lecture 'lektS@R J2%,K6% 22A,3A,6A,14 +lectured 'lektS@d Jc%,Jd% 22A,3A,6A,14 +lecturer 'lektS@r@R K6% 3 +lecturers 'lektS@r@z Kj% 3 +lectures 'lektS@z Ja%,Kj% 22A,3A,6A,14 +lectureship 'lektS@SIp K6% 3 +lectureships 'lektS@SIps Kj% 3 +lecturing 'lektS@rIN Jb% 32A,3A,6A,14 +led led Jc%,Jd% 12A,2C,3A,6A,12C,14,15A,15B,17 +ledge ledZ K6% 1 +ledger 'ledZ@R K6% 2 +ledgers 'ledZ@z Kj% 2 +ledges 'ledZIz Kj% 2 +lee li L@$ 1 +leech litS K7% 1 +leeches 'litSIz Kj% 2 +leek lik K6% 1 +leeks liks Kj% 1 +leer lI@R I0%,K6% 12A,3A +leered lI@d Ic%,Id% 12A,3A +leering 'lI@rIN Ib% 22A,3A +leers lI@z Ia%,Kj% 12A,3A +lees liz Kj$ 1 +leeward 'liw@d OA%,Pu% 2 +leeway 'liweI L@% 2 +left left Jc*,Jd*,L@%,OA*,Pu* 12A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +left-hand 'left-h&nd OA% 2 +left-handed left-'h&ndId OA% 3 +left-wing left-'wIN K6% 2 +left-winger left-'wIN@R K6% 3 +left-wingers left-'wIN@z Kj% 3 +left-wings left-'wINz Kj$ 2 +leftist 'leftIst K6% 2 +leftists 'leftIsts Kj% 2 +leg leg M6% 1 +leg-pull 'leg-pUl K6% 2 +leg-pulling 'leg-pUlIN L@% 3 +leg-pulls 'leg-pUlz Kj% 2 +legacies 'leg@sIz Kj% 3 +legacy 'leg@sI K8% 3 +legal 'ligl OA% 2 +legalism 'lig@lIz@m L@$ 4 +legalistic ,lig@'lIstIk OA% 4 +legality li'g&lItI L@% 4 +legalization ,lig@laI'zeISn L@% 5 +legalize 'lig@laIz H2% 36A +legalized 'lig@laIzd Hc%,Hd% 36A +legalizes 'lig@laIzIz Ha% 46A +legalizing 'lig@laIzIN Hb% 46A +legally 'lig@lI Pu% 3 +legate 'legIt K6$ 2 +legatee ,leg@'ti K6$ 3 +legatees ,leg@'tiz Kj$ 3 +legates 'legIts Kj$ 2 +legation lI'geISn K6$ 3 +legations lI'geISnz Kj$ 3 +legato lI'gAt@U OA$,Pu$ 3 +legend 'ledZ@nd M6% 2 +legendary 'ledZ@ndrI OA% 3 +legends 'ledZ@ndz Mj% 2 +leger line 'ledZ@ laIn K6$ 3 +leger lines 'ledZ@ laInz Kj$ 3 +legerdemain ,ledZ@d@'meIn L@$ 4 +legged 'legId Ot% 2 +legging 'legIN K6$ 2 +leggings 'legINz Kj% 2 +leggy 'legI OA% 2 +leghorn le'gOn K6$ 2 +leghorns le'gOnz Kj$ 2 +legibility ,ledZ@'bIlItI L@% 5 +legible 'ledZ@bl OA% 3 +legibly 'ledZ@blI Pu% 3 +legion 'lidZ@n K6% 2 +legionaries 'lIdZ@n@rIz Kj% 4 +legionary 'lIdZ@n@rI K8% 4 +legions 'lidZ@nz Kj% 2 +legislate 'ledZIsleIt I2% 32A,3A +legislated 'ledZIsleItId Ic%,Id% 42A,3A +legislates 'ledZIsleIts Ia% 32A,3A +legislating 'ledZIsleItIN Ib% 42A,3A +legislation ,ledZIs'leISn L@% 4 +legislative 'ledZIsl@tIv OA% 4 +legislator 'ledZIsleIt@R K6% 4 +legislators 'ledZIsleIt@z Kj% 4 +legislature 'ledZIsleItS@R K6% 4 +legislatures 'ledZIsleItS@z Kj% 4 +legitimacy lI'dZItIm@sI L@% 5 +legitimate lI'dZItIm@t OA% 4 +legitimately lI'dZItIm@tlI Pu% 5 +legitimatize lI'dZItIm@taIz H2% 5 +legitimatized lI'dZItIm@taIzd Hc%,Hd% 5 +legitimatizes lI'dZItIm@taIzIz Ha% 6 +legitimatizing lI'dZItIm@taIzIN Hb% 6 +legless 'legl@s OA% 2 +legs legz Mj% 1 +leguminous lI'gjumIn@s OA% 4 +lei 'leIi K6$ 1 +leis 'leIiz Kj$ 1 +leisure 'leZ@R L@% 2 +leisured 'leZ@d OA% 2 +leisurely 'leZ@lI OA%,Pu% 3 +lemming 'lemIN K6% 2 +lemmings 'lemINz Kj% 2 +lemon 'lem@n K6% 2 +lemonade ,lem@'neId L@% 3 +lemons 'lem@nz Kj% 2 +lemur 'lim@R K6$ 2 +lemurs 'lim@z Kj$ 2 +lend lend H5% 16A,12A,13A,14 +lender 'lend@R K6% 2 +lenders 'lend@z Kj% 2 +lending 'lendIN Hb% 26A,12A,13A,14 +lending-libraries 'lendIN-laIbr@rIz Kj% 5 +lending-library 'lendIN-laIbr@rI K8% 5 +lends lendz Ha% 16A,12A,13A,14 +length leNT M6% 1 +lengthen 'leNT@n J0% 22A,6A +lengthened 'leNT@nd Jc%,Jd% 22A,6A +lengthening 'leNT@nIN Jb% 32A,6A +lengthens 'leNT@nz Ja% 22A,6A +lengthier 'leNTI@R Or% 3 +lengthiest 'leNTIIst Os% 3 +lengthily 'leNTIlI Pu% 3 +lengths leNTs Mj% 1 +lengthways 'leNTweIz OA%,Pu% 2 +lengthwise 'leNTwaIz Pu% 2 +lengthy 'leNTI OD% 2 +lenience 'linI@ns L@% 3 +leniency 'linI@nsI L@% 4 +lenient 'linI@nt OA% 3 +leniently 'linI@ntlI Pu% 4 +lenity 'lenItI L@$ 3 +lens lenz K7% 1 +lenses 'lenzIz Kj% 2 +lent lent Hc%,Hd% 16A,12A,13A,14 +lentil 'lentl K6% 2 +lentils 'lentlz Kj% 2 +lento 'lent@U OA$,Pu$ 2 +leonine 'lI@naIn OA% 3 +leopard 'lep@d K6% 2 +leopardess ,lep@'des K7% 3 +leopardesses ,lep@'desIz Kj% 4 +leopards 'lep@dz Kj% 2 +leper 'lep@R K6% 2 +lepers 'lep@z Kj% 2 +leprechaun 'lepr@kOn K6% 3 +leprechauns 'lepr@kOnz Kj% 3 +leprosy 'lepr@sI L@% 3 +leprous 'lepr@s OA% 2 +lesbian 'lezbI@n K6% 3 +lesbianism 'lezbI@nIz@m L@% 5 +lesbians 'lezbI@nz Kj% 3 +lese majesty ,leIz 'm&dZIstI L@$ 4 +lesion 'liZn K6% 2 +lesions 'liZnz Kj% 2 +less les L@%,OA*,Pu*,T-* 1 +lessee le'si K6% 2 +lessees le'siz Kj% 2 +lessen 'lesn J0% 22A,6A +lessened 'lesnd Jc%,Jd% 22A,6A +lessening 'lesnIN Jb% 32A,6A +lessens 'lesnz Ja% 22A,6A +lesser 'les@R OA% 2 +lesson 'lesn K6% 2 +lessons 'lesnz Kj% 2 +lessor 'lesOR K6$ 2 +lessors 'lesOz Kj$ 2 +lest lest V-% 1 +let let J5*,Jc*,Jd*,K6% 12C,6A,14,15A,15B,18B,22,24A +let's lets Gf% 1 +let-down 'let-daUn K6% 2 +let-downs 'let-daUnz Kj$ 2 +let-up 'let-Vp K6% 2 +let-ups 'let-Vps Kj$ 2 +lethal 'liTl OA% 2 +lethargic lI'TAdZIk OA% 3 +lethargically lI'TAdZIklI Pu% 4 +lethargy 'leT@dZI L@% 3 +lets lets Ja%,Kj$ 12C,6A,14,15A,15B,18B,22,24A +letter 'let@R K6% 2 +letter-box 'let@-b0ks K7% 3 +letter-boxes 'let@-b0ksIz Kj% 4 +letter-card 'let@-kAd K6$ 3 +letter-cards 'let@-kAdz Kj$ 3 +letter-case 'let@-keIs K6$ 3 +letter-cases 'let@-keIsIz Kj$ 4 +lettered 'let@d OA% 2 +letterhead 'let@hed K6% 3 +letterheads 'let@hedz Kj% 3 +lettering 'let@rIN L@% 3 +letterpress 'let@pres L@% 3 +letters 'let@z Kj% 2 +letting 'letIN Jb%,K6% 22C,6A,14,15A,15B,18B,22,24A +lettings 'letINz Kj% 2 +lettuce 'letIs M6% 2 +lettuces 'letIsIz Mj% 3 +leucocyte 'luk@saIt K6$ 3 +leucocytes 'luk@saIts Kj$ 3 +leukaemia lu'kimI@ L@% 4 +levant lI'v&nt I0$ 2 +levanted lI'v&ntId Ic$,Id$ 3 +levanting lI'v&ntIN Ib$ 3 +levants lI'v&nts Ia$ 2 +levee 'levI K6$ 2 +levees 'levIz Kj$ 2 +level 'levl J4%,M6%,OA% 22C,3A,6A,14,15A,15B +level-headed ,levl-'hedId OA% 4 +levelled 'levld Jc%,Jd% 22C,3A,6A,14,15A,15B +leveller 'levl@R K6% 3 +levellers 'levl@z Kj% 3 +levelling 'lev@lIN Jb% 32C,3A,6A,14,15A,15B +levels 'levlz Ja%,Mj% 22C,3A,6A,14,15A,15B +lever 'liv@R H0%,K6% 26A,15B +leverage 'liv@rIdZ L@% 3 +levered 'liv@d Hc%,Hd% 26A,15B +leveret 'lev@rIt K6$ 3 +leverets 'lev@rIts Kj$ 3 +levering 'liv@rIN Hb% 36A,15B +levers 'liv@z Ha%,Kj% 26A,15B +leviathan lI'vaI@T@n K6$ 4 +leviathans lI'vaI@T@nz Kj$ 4 +levied 'levId Jc%,Jd% 23A,6A,14 +levies 'levIz Ja%,Kj% 23A,6A,14 +levis 'livaIz Kj% 2 +levitate 'levIteIt J2% 32A,6A +levitated 'levIteItId Jc%,Jd% 42A,6A +levitates 'levIteIts Ja% 32A,6A +levitating 'levIteItIN Jb% 42A,6A +levitation ,levI'teISn M6% 4 +levitations ,levI'teISnz Mj% 4 +levities 'levItIz Mj$ 3 +levity 'levItI M8% 3 +levy 'levI J3%,K8% 23A,6A,14 +levying 'levIIN Jb% 33A,6A,14 +lewd ljud OC% 1 +lewder 'ljud@R Or% 2 +lewdest 'ljudIst Os% 2 +lewdly 'ljudlI Pu% 2 +lewdness 'ljudn@s L@% 2 +lexical 'leksIkl OA% 3 +lexically 'leksIklI Pu% 3 +lexicographer ,leksI'k0gr@f@R K6% 5 +lexicographers ,leksI'k0gr@f@z Kj% 5 +lexicography ,leksI'k0gr@fI L@% 5 +lexicon 'leksIk@n K6% 3 +lexicons 'leksIk@nz Kj% 3 +lexis 'leksIs L@$ 2 +ley leI K6$ 1 +leys leIz Kj$ 1 +liabilities ,laI@'bIlItIz Mj% 5 +liability ,laI@'bIlItI M8% 5 +liable 'laI@bl OA% 3 +liaise lI'eIz I2% 22A,3A +liaised lI'eIzd Ic%,Id% 22A,3A +liaises lI'eIzIz Ia% 32A,3A +liaising lI'eIzIN Ib% 32A,3A +liaison lI'eIzn M6% 3 +liaisons lI'eIznz Mj% 3 +liana lI'An@ K6$ 3 +lianas lI'An@z Kj$ 3 +liar 'laI@R K6% 2 +liars 'laI@z Kj% 2 +lib lIb Ki% 1 +libation laI'beISn K6% 3 +libations laI'beISnz Kj% 3 +libel 'laIbl H4%,M6% 26A +libelled 'laIbld Hc%,Hd% 26A +libelling 'laIb@lIN Hb% 36A +libellous 'laIb@l@s OA% 3 +libels 'laIblz Ha%,Mj% 26A +liberal 'lIb@r@l K6%,OA% 3 +liberalism 'lIb@r@lIz@m L@% 5 +liberalities ,lIb@'r&lItIz Mj$ 5 +liberality ,lIb@'r&lItI M8% 5 +liberalization ,lIbr@laI'zeISn K6% 5 +liberalizations ,lIbr@laI'zeISnz Kj$ 5 +liberalize 'lIbr@laIz H2% 3 +liberalized 'lIbr@laIzd Hc%,Hd% 3 +liberalizes 'lIbr@laIzIz Ha% 4 +liberalizing 'lIbr@laIzIN Hb% 4 +liberally 'lIbr@lI Pu% 3 +liberals 'lIb@r@lz Kj% 3 +liberate 'lIb@reIt H2% 36A,14 +liberated 'lIb@reItId Hc%,Hd% 46A,14 +liberates 'lIb@reIts Ha% 36A,14 +liberating 'lIb@reItIN Hb% 46A,14 +liberation ,lIb@'reISn M6% 4 +liberations ,lIb@'reISnz Mj% 4 +liberator 'lIb@reIt@R K6% 4 +liberators 'lIb@reIt@z Kj% 4 +liberties 'lIbItIz Mj% 3 +libertine 'lIb@tin K6% 3 +libertines 'lIb@tinz Kj% 3 +liberty 'lIbItI M8% 3 +libidinous lI'bIdIn@s OA% 4 +libido lI'bid@U M6% 3 +libidos lI'bid@Uz Mj$ 3 +librarian laI'bre@rI@n K6% 4 +librarians laI'bre@rI@nz Kj% 4 +librarianship laI'bre@ri@nSIp L@% 5 +libraries 'laIbr@rIz Kj% 3 +library 'laIbr@rI K8% 3 +libretti lI'breti Kj% 3 +librettist lI'bretIst K6% 3 +librettists lI'bretIsts Kj% 3 +libretto lI'bret@U K6% 3 +librettos lI'bret@Uz Kj% 3 +lice laIs Kj% 1 +licence 'laIsns H2%,M6% 26A,17 +licenced 'laIsnst Hc%,Hd% 26A,17 +licences 'laIsnsIz Ha%,Mj% 36A,17 +licencing 'laIsnsIN Hb% 36A,17 +license 'laIsns H2% 26A,17 +licensed 'laIsnst Hc%,Hd% 26A,17 +licensee ,laIs@n'si K6% 3 +licensees ,laIs@n'siz Kj% 3 +licenses 'laIsnsIz Ha% 36A,17 +licensing 'laIsnsIN Hb% 36A,17 +licentiate laI'senSI@t K6$ 4 +licentiates laI'senSI@ts Kj$ 4 +licentious laI'senS@s OA% 3 +licentiously laI'senS@slI Pu% 4 +licentiousness laI'senS@sn@s L@% 4 +lichee 'laItSi K6% 2 +lichees 'laItSiz Kj% 2 +lichen 'laIk@n L@% 2 +lichgate 'lItSgeIt K6$ 2 +lichgates 'lItSgeIts Kj$ 2 +lichi 'laItSi K6$ 2 +lichis 'laItSiz Kj$ 2 +licit 'lIsIt OA$ 2 +lick lIk J0%,K6% 12A,6A,15A,15B,22 +licked lIkt Jc%,Jd% 12A,6A,15A,15B,22 +licking 'lIkIN Jb%,Ki% 22A,6A,15A,15B,22 +licks lIks Ja%,Kj% 12A,6A,15A,15B,22 +lid lId K6% 1 +lidless 'lIdl@s OA% 2 +lido 'lid@U K6% 2 +lidos 'lid@Uz Kj% 2 +lids lIdz Kj% 1 +lie laI I5%,K6% 12A,2C,2D,3A +lie-abed 'laI-@bed K6$ 3 +lie-abeds 'laI-@bedz Kj$ 3 +lie-detector 'laI-dItekt@R K6% 4 +lie-detectors 'laI-dItekt@z Kj% 4 +lie-in laI-'In K6% 2 +lie-ins laI-'Inz Kj$ 2 +lied laId Ic%,Id% 12A +lied lit Ki$ 1 +lieder 'lid@R Kj% 2 +lieder-singer 'lid@-sIN@R K6% 4 +lieder-singers 'lid@-sIN@z Kj% 4 +lief lif Pu$ 1 +liege lidZ K6$,OA$ 1 +liegeman 'lidZm&n Ki$ 2 +liegemen 'lidZmen Kj$ 2 +lieges 'lidZIz Kj$ 2 +lien lI@n K6$ 2 +liens lI@nz Kj$ 2 +lies laIz Ia%,Kj% 12A,2C,2D,3A +lieu lu L@% 1 +lieutenancies lef'ten@nsIz Kj$ 4 +lieutenancy lef'ten@nsI K8$ 4 +lieutenant lef'ten@nt K6% 3 +lieutenants lef'ten@nts Kj% 3 +life laIf Mi* 1 +life-buoy 'laIf-boI K6% 2 +life-buoys 'laIf-boIz Kj% 2 +life-giving 'laIf-gIvIN OA% 3 +life-jacket 'laIf-dZ&kIt K6% 3 +life-jackets 'laIf-dZ&kIts Kj% 3 +life-office 'laIf-0fIs K6$ 3 +life-offices 'laIf-0fIsIz Kj$ 4 +life-preserver 'laIf-prIz3v@R K6% 4 +life-preservers 'laIf-prIz3v@z Kj% 4 +life-raft 'laIf-rAft K6% 2 +life-rafts 'laIf-rAfts Kj% 2 +life-saver 'laIf-seIv@R K6% 3 +life-savers 'laIf-seIv@z Kj% 3 +life-size 'laIf-saIz OA% 2 +life-sized 'laIf-saIzd OA% 2 +life-span 'laIf-sp&n K6% 2 +life-spans 'laIf-sp&nz Kj% 2 +life-work laIf-'w3k K6$ 2 +life-works laIf-'w3ks Kj$ 2 +lifebelt 'laIfbelt K6% 2 +lifebelts 'laIfbelts Kj% 2 +lifeblood 'laIfblVd L@% 2 +lifeboat 'laIfb@Ut K6% 2 +lifeboats 'laIfb@Uts Kj% 2 +lifebuoy 'laIfboI K6% 2 +lifebuoys 'laIfboIz Kj% 2 +lifeguard 'laIfgAd K6% 2 +lifeguards 'laIfgAdz Kj% 2 +lifeless 'laIfl@s OA% 2 +lifelessly 'laIfl@slI Pu% 3 +lifelike 'laIflaIk OA% 2 +lifeline 'laIflaIn K6% 2 +lifelines 'laIflaInz Kj% 2 +lifelong 'laIfl0N OA% 2 +lifer 'laIf@R K6$ 2 +lifers 'laIf@z Kj$ 2 +lifetime 'laIftaIm K6% 2 +lifetimes 'laIftaImz Kj% 2 +lift lIft J0%,K6% 12A,2C,6A,15A,15B +lift-off 'lIft-0f K6% 2 +lift-offs 'lIft-0fs Kj% 2 +lifted 'lIftId Jc%,Jd% 22A,2C,6A,15A,15B +lifting 'lIftIN Jb% 22A,2C,6A,15A,15B +liftman 'lIftm&n Ki% 2 +liftmen 'lIftmen Kj% 2 +lifts lIfts Ja%,Kj% 12A,2C,6A,15A,15B +ligament 'lIg@m@nt K6% 3 +ligaments 'lIg@m@nts Kj% 3 +ligature 'lIg@tS@R K6$ 3 +ligatures 'lIg@tS@z Kj$ 3 +light laIt J0%,M6*,OC*,Pu% 12C,3A,6A,15A,15B +light-armed laIt-'Amd OA$ 2 +light-coloured laIt-'kVl@d OA% 3 +light-fingered laIt-'fINg@d OA% 3 +light-handed laIt-'h&ndId OA$ 3 +light-handedly laIt-'h&ndIdlI Pu$ 4 +light-headed laIt-'hedId OA% 3 +light-headedly laIt-'hedIdlI Pu% 4 +light-headedness laIt-'hedIdn@s L@% 4 +light-hearted laIt-'hAtId OA% 3 +light-heartedly laIt-'hAtIdlI Pu% 4 +light-heartedness laIt-'hAtIdn@s L@% 4 +light-heavyweight laIt-'hevIweIt K6% 4 +light-heavyweights laIt-'hevIweIts Kj% 4 +light-minded laIt-'maIndId OA$ 3 +light-mindedness laIt-'maIndIdn@s L@$ 4 +light-o'-love laIt-@-'lVv K6$ 3 +light-o'-loves laIt-@-'lVvz Kj$ 3 +lighted 'laItId Jc%,Jd% 22C,3A,6A,15A,15B +lighten 'laItn J0% 22A,6A +lightened 'laItnd Jc%,Jd% 22A,6A +lightening 'laItnIN Jb% 32A,6A +lightens 'laItnz Ja% 22A,6A +lighter 'laIt@R H0$,K6%,Or% 2 +lighterage 'laIt@rIdZ L@$ 3 +lightered 'laIt@d Hc$,Hd$ 2 +lightering 'laIt@rIN Hb$ 3 +lighters 'laIt@z Ha$,Kj% 2 +lightest 'laItIst Os% 2 +lighthouse 'laIthaUs K6% 2 +lighthouses 'laIthaUzIz Kj% 3 +lighting 'laItIN Jb% 22C,3A,6A,15A,15B +lighting-up ,laItIN-'Vp Oq% 3 +lightly 'laItlI Pu% 2 +lightness 'laItnes L@% 2 +lightning 'laItnIN L@% 2 +lightning-conductor 'laItnIN-k@n,dVkt@R K6% 5 +lightning-conductors 'laItnIN-k@n,dVkt@z Kj% 5 +lightning-rod 'laItnIN-r0d K6% 3 +lightning-rods 'laItnIN-r0dz Kj% 3 +lights laIts Ja%,Mj% 12C,3A,6A,15A,15B +lightship 'laItSIp K6% 2 +lightships 'laItSIps Kj% 2 +lightsome 'laIts@m OA$ 2 +lightsomely 'laIts@mlI Pu$ 3 +lightsomeness 'laIts@mn@s L@$ 3 +lightweight 'laItweIt K6%,OA% 2 +lightweights 'laItweIts Kj% 2 +ligneous 'lIgnI@s OA$ 3 +lignite 'lIgnaIt L@$ 2 +likable 'laIk@bl OA$ 3 +like laIk H2*,K6%,OA%,Pu%,T-*,V-*16A,6D,7A,17,19B,19C,22 +like-minded laIk-'maIndId OA% 3 +likeable 'laIk@bl OA% 3 +liked laIkt Hc%,Hd% 16A,6D,7A,17,19B,19C,22 +likelier 'laIklI@R Or% 3 +likeliest 'laIklIIst Os% 3 +likelihood 'laIklIhUd L@% 3 +likely 'laIklI OD%,Pu% 2 +liken 'laIk@n H0% 214 +likened 'laIk@nd Hc%,Hd% 214 +likeness 'laIkn@s M7% 2 +likenesses 'laIkn@sIz Mj% 3 +likening 'laIk@nIN Hb$ 314 +likens 'laIk@nz Ha$ 214 +likes laIks Ha%,Kj% 16A,6D,7A,17,19B,19C,22 +likewise 'laIkwaIz Pu%,V-% 2 +liking 'laIkIN Hb%,K6% 26A,6D,7A,17,19B,19C,22 +likings 'laIkINz Kj% 2 +lilac 'laIl@k K6% 2 +lilacs 'laIl@ks Kj% 2 +lilies 'lIlIz Kj% 2 +lilt lIlt J0%,K6% 1 +lilted 'lIltId Jc%,Jd% 2 +lilting 'lIltIN Jb% 2 +lilts lIlts Ja%,Kj% 1 +lily 'lIlI K8% 2 +lily-livered 'lIlI-lIv@d OA% 4 +lily-white 'lIlI-waIt OA% 3 +limb lIm K6% 1 +limbed lImd Ot% 1 +limber 'lImb@R J0%,OA$ 22C,15B +limbered 'lImb@d Jc%,Jd% 22C,15B +limbering 'lImb@rIN Jb% 32C,15B +limbers 'lImb@z Ja% 22C,15B +limbless 'lIml@s OA% 2 +limbo 'lImb@U M6% 2 +limbos 'lImb@Uz Mj$ 2 +limbs lImz Kj% 1 +lime laIm H2$,M6% 16A +lime-tree 'laIm-tri K6% 2 +lime-trees 'laIm-triz Kj% 2 +limed laImd Hc$,Hd% 16A +limejuice 'laImdZus L@% 2 +limekiln 'laImkIln K6$ 2 +limekilns 'laImkIlnz Kj$ 2 +limelight 'laImlaIt L@% 2 +limerick 'lIm@rIk K6% 3 +limericks 'lIm@rIks Kj% 3 +limes laImz Ha%,Mj% 16A +limestone 'laImst@Un L@% 2 +limey 'laImI K6$ 2 +limeys 'laImIz Kj$ 2 +liming 'laImIN Hb$ 26A +limit 'lImIt H0%,K6% 26A,14 +limitation ,lImI'teISn M6% 4 +limitations ,lImI'teISnz Mj% 4 +limited 'lImItId Hc%,Hd% 36A,14 +limiting 'lImItIN Hb% 36A,14 +limitless 'lImItl@s OA% 3 +limits 'lImIts Ha%,Kj% 26A,14 +limn lIm H0$ 1 +limned lImd Hc$,Hd$ 1 +limning 'lImIN Hb$ 2 +limns lImz Ha$ 1 +limousine 'lIm@zin K6% 3 +limousines 'lIm@zinz Kj% 3 +limp lImp I0%,K6%,OA% 12A,2C +limped lImpt Ic%,Id% 12A,2C +limpet 'lImpIt K6% 2 +limpets 'lImpIts Kj% 2 +limpid 'lImpId OA% 2 +limpidity lIm'pIdItI L@% 4 +limpidly 'lImpIdlI Pu% 3 +limping 'lImpIN Ib% 22A,2C +limply 'lImplI Pu% 2 +limpness 'lImpn@s L@% 2 +limps lImps Ia%,Kj% 12A,2C +linchpin 'lIntSpIn K6% 2 +linchpins 'lIntSpInz Kj% 2 +linden 'lInd@n K6$ 2 +linden-tree 'lInd@n-tri K6$ 3 +linden-trees 'lInd@n-triz Kj$ 3 +lindens 'lInd@nz Kj$ 2 +line laIn J2%,M6* 12C,6A,14,15B +line-shooter 'laIn-Sut@R K6$ 3 +line-shooters 'laIn-Sut@z Kj$ 3 +line-shooting 'laIn-SutIN L@$ 3 +line-up 'laIn-Vp K6% 2 +line-ups 'laIn-Vps Kj% 2 +lineage 'lInIIdZ L@% 3 +lineal 'lInI@l OA$ 3 +lineally 'lInI@lI Pu$ 4 +lineament 'lInI@m@nt K6$ 4 +lineaments 'lInI@m@nts Kj% 4 +linear 'lInI@R OA% 3 +linearly 'lInI@lI Pu% 4 +lined laInd Jc%,Jd% 12C,6A,14,15B +lineman 'laInm@n Ki% 2 +linemen 'laInm@n Kj% 2 +linen 'lInIn L@% 2 +linen-draper 'lInIn-dreIp@R K6$ 4 +linen-drapers 'lInIn-dreIp@z Kj$ 4 +liner 'laIn@R K6% 2 +liner-train 'laIn@-treIn K6$ 3 +liner-trains 'laIn@-treInz Kj$ 3 +liners 'laIn@z Kj% 2 +lines laInz Ja%,Mj% 12C,6A,14,15B +linesman 'laInzm@n Ki% 2 +linesmen 'laInzm@n Kj% 2 +ling lIN M6$ 1 +lingam 'lINg@m K6$ 2 +lingams 'lINg@mz Kj$ 2 +linger 'lINg@R I0% 22A,2C +lingered 'lINg@d Ic%,Id% 22A,2C +lingerer 'lINg@r@R K6% 3 +lingerers 'lINg@r@z Kj% 3 +lingerie 'l&nZ@ri L@% 3 +lingering 'lINg@rIN Ib%,OA% 32A,2C +lingeringly 'lINg@rINlI Pu% 4 +lingers 'lINg@z Ia% 22A,2C +lingo 'lINg@U K7% 2 +lingoes 'lINg@Uz Kj$ 2 +lings lINz Mj$ 1 +lingua franca ,lINgw@ 'fr&Nk@ Ki% 4 +lingual 'lINgw@l OA% 2 +linguist 'lINgwIst K6% 2 +linguistic lIN'gwIstIk OA% 3 +linguistically lIN'gwIstIklI Pu% 4 +linguistics lIN'gwIstIks Lk% 3 +linguists 'lINgwIsts Kj% 2 +liniment 'lInIm@nt M6% 3 +liniments 'lInIm@nts Mj$ 3 +lining 'laInIN Jb%,M6% 22C,6A,14,15B +linings 'laInINz Mj% 2 +link lINk J0%,K6% 12A,2C,6A,15A,15B +link-up 'lINk-Vp K6% 2 +link-ups 'lINk-Vps Kj% 2 +linkage 'lINkIdZ M6% 2 +linkages 'lINkIdZIz Mj% 2 +linkboy 'lInkboI K6$ 2 +linkboys 'lInkboIz Kj$ 2 +linked lINkt Jc%,Jd% 12A,2C,6A,15A,15B +linking 'lINkIN Jb% 22A,2C,6A,15A,15B +linkman 'lINkm&n Ki$ 2 +linkmen 'lINkmen Kj$ 2 +links lINks Ja%,K9% 12A,2C,6A,15A,15B +linnet 'lInIt K6% 2 +linnets 'lInIts Kj% 2 +lino 'laIn@U L@% 2 +linocut 'laIn@UkVt K6% 3 +linocuts 'laIn@UkVts Kj% 3 +linoleum lI'n@UlI@m L@% 4 +linotype 'laIn@UtaIp K6% 3 +linotypes 'laIn@UtaIps Kj% 3 +linseed 'lInsid L@% 2 +linsey-woolsey ,lInzI-'wUlzI L@$ 4 +lint lInt L@% 1 +lintel 'lIntl K6% 2 +lintels 'lIntlz Kj% 2 +lion 'laI@n K6% 2 +lion-hearted 'laI@n-hAtId OA% 4 +lion-hunter 'laI@n-hVnt@R K6% 4 +lion-hunters 'laI@n-hVnt@z Kj% 4 +lioness 'laI@nes K7% 3 +lionesses 'laI@nesIz Kj% 4 +lionize 'laI@naIz H2$ 36A +lionized 'laI@naIzd Hc$,Hd$ 36A +lionizes 'laI@naIzIz Ha$ 46A +lionizing 'laI@naIzIN Hb$ 46A +lions 'laI@nz Kj% 2 +lip lIp M6% 1 +lip-read 'lIp-red Hc$,Hd$ 2 +lip-read 'lIp-rid H5% 2 +lip-reading 'lIp-ridIN Hb%,L@% 3 +lip-reads 'lIp-ridz Ha% 2 +lipped lIpt Ot% 1 +lips lIps Mj% 1 +lipstick 'lIpstIk M6% 2 +lipsticks 'lIpstIks Mj% 2 +liquefaction ,lIkwI'f&kSn L@$ 4 +liquefied 'lIkwIfaId Jc%,Jd% 32A,6A +liquefies 'lIkwIfaIz Ja% 32A,6A +liquefy 'lIkwIfaI J3% 32A,6A +liquefying 'lIkwIfaIIN Jb% 42A,6A +liquescent lI'kwesnt OA$ 3 +liqueur lI'kjU@R K6% 2 +liqueurs lI'kjU@z Kj% 2 +liquid 'lIkwId M6%,OA% 2 +liquidate 'lIkwIdeIt J2% 32A,6A +liquidated 'lIkwIdeItId Jc%,Jd% 42A,6A +liquidates 'lIkwIdeIts Ja% 32A,6A +liquidating 'lIkwIdeItIN Jb% 42A,6A +liquidation ,lIkwI'deISn L@% 4 +liquidator 'lIkwIdeIt@R K6% 4 +liquidators 'lIkwIdeIt@z Kj% 4 +liquidity lI'kwIdItI L@% 4 +liquidize 'lIkwIdaIz H2% 36A +liquidized 'lIkwIdaIzd Hc%,Hd% 36A +liquidizer 'lIkwIdaIz@R K6% 4 +liquidizers 'lIkwIdaIz@z Kj% 4 +liquidizes 'lIkwIdaIzIz Ha% 46A +liquidizing 'lIkwIdaIzIN Hb% 46A +liquids 'lIkwIdz Mj% 2 +liquor 'lIk@R M6% 2 +liquorice 'lIk@rIs L@% 3 +liquors 'lIk@z Mj$ 2 +lira 'lI@r@ K6$ 2 +liras 'lI@r@z Kj$ 2 +lire 'lI@r@ Kj$ 2 +lisle laIl L@$ 1 +lisp lIsp J0%,K6% 12A,6A,15B +lisped lIspt Jc%,Jd% 12A,6A,15B +lisping 'lIspIN Jb% 22A,6A,15B +lispingly 'lIspINlI Pu% 3 +lisps lIsps Ja%,Kj% 12A,6A,15B +lissom 'lIs@m OA% 2 +lissome 'lIs@m OA$ 2 +lissomness 'lIs@mn@s L@$ 3 +list lIst J0%,K6% 12A,2C,6A +list-price 'lIst-praIs K6% 2 +list-prices 'lIst-praIsIz Kj$ 3 +listed 'lIstId Jc%,Jd% 22A,2C,6A +listen 'lIsn I0% 22A,2C,3A +listened 'lIsnd Ic%,Id% 22A,2C,3A +listener 'lIsn@R K6% 2 +listeners 'lIsn@z Kj% 2 +listening 'lIsnIN Ib% 22A,2C,3A +listens 'lIsnz Ia% 22A,2C,3A +listing 'lIstIN Jb%,K6% 22A,2C,6A +listings 'lIstINz Kj% 2 +listless 'lIstlIs OA% 2 +listlessly 'lIstlIslI Pu% 3 +listlessness 'lIstlIsn@s L@% 3 +lists lIsts Ja%,Kj% 12A,2C,6A +lists lists Kj$ 1 +lit lIt Jc%,Jd% 12C,6A,15A,15B +litanies 'lIt@nIz Kj% 3 +litany 'lIt@nI K8% 3 +litchee 'laItSi K6$ 2 +litchees 'laItSiz Kj$ 2 +litchi 'laItSi K6$ 2 +litchis 'laItSiz Kj$ 2 +literacy 'lIt@r@sI L@% 4 +literal 'lIt@r@l K6$,OA% 3 +literally 'lIt@r@lI Pu% 4 +literals 'lIt@r@lz Kj$ 3 +literary 'lIt@r@rI OA% 4 +literate 'lIt@r@t K6$,OA% 3 +literates 'lIt@r@ts Kj$ 3 +literati ,lIt@'rAtI Kj% 4 +literature 'lItr@tS@R L@% 3 +lithe laID OA% 1 +lithograph 'lIT@grAf J0$,K6% 3 +lithographed 'lIT@grAft Jc$,Jd% 3 +lithographic ,lIT@'gr&fIk OA% 4 +lithographing 'lIT@grAfIN Jb$ 4 +lithographs 'lIT@grAfs Ja$,Kj% 3 +lithography lI'T0gr@fI L@% 4 +litigant 'lItIg@nt K6% 3 +litigants 'lItIg@nts Kj% 3 +litigate 'lItIgeIt J2% 32A,6A +litigated 'lItIgeItId Jc%,Jd% 42A,6A +litigates 'lItIgeIts Ja% 32A,6A +litigating 'lItIgeItIN Jb% 42A,6A +litigation ,lItI'geISn L@% 4 +litigious lI'tIdZ@s OA$ 3 +litmus 'lItm@s L@% 2 +litmus-paper 'lItm@s-peIp@R M6% 4 +litmus-papers 'lItm@s-peIp@z Mj% 4 +litotes 'laIt@Utiz K9$ 3 +litre 'lit@R K6% 2 +litres 'lit@z Kj% 2 +litter 'lIt@R J0%,M6% 22A,6A,14,15A,15B +litter-basket 'lIt@-bAskIt K6% 4 +litter-baskets 'lIt@-bAskIts Kj% 4 +litter-lout 'lIt@-laUt K6% 3 +litter-louts 'lIt@-laUts Kj% 3 +litterbin 'lIt@bIn K6% 3 +litterbins 'lIt@bInz Kj% 3 +littered 'lIt@d Jc%,Jd% 22A,6A,14,15A,15B +littering 'lIt@rIN Jb% 32A,6A,14,15A,15B +litters 'lIt@z Ja%,Mj$ 22A,6A,14,15A,15B +little 'lItl L@%,OB*,Pu* 2 +littleness 'lItln@s L@% 3 +littler 'lItl@R Or% 2 +littlest 'lItlIst Os% 2 +littoral 'lIt@r@l K6$,OA$ 3 +littorals 'lIt@r@lz Kj$ 3 +liturgical lI't3dZIkl OA% 4 +liturgies 'lIt@dZIz Mj% 3 +liturgy 'lIt@dZI M8% 3 +livable 'lIv@bl OA% 3 +live lIv J2% 12A,2B,2C,2D,3A,4A,6B,15B +live laIv OA%,Pu% 1 +live-birth 'laIv-b3T K6% 2 +live-births 'laIv-b3Ts Kj% 2 +liveable 'lIv@bl OA% 3 +lived lIvd Jc%,Jd% 12A,2B,2C,2D,3A,4A,6B,15B +livelier 'laIvlI@R Or% 3 +liveliest 'laIvlIIst Os% 3 +livelihood 'laIvlIhUd K6% 3 +livelihoods 'laIvlIhUdz Kj% 3 +liveliness 'laIvlIn@s L@% 3 +livelong 'lIvl0N OA$ 2 +lively 'laIvlI OD% 2 +liven 'laIvn J0% 22C,15B +livened 'laIvnd Jc%,Jd% 22C,15B +livening 'laIvnIN Jb% 22C,15B +livens 'laIvnz Ja% 22C,15B +liver 'lIv@R M6% 2 +liveried 'lIv@rId OA% 3 +liveries 'lIv@rIz Kj$ 3 +liverish 'lIv@rIS OA% 3 +livers 'lIv@z Mj% 2 +liverwurst 'lIv@w3st L@$ 3 +livery 'lIv@rI K8%,OA% 3 +liveryman 'lIv@rIm&n Ki$ 4 +liverymen 'lIv@rImen Kj$ 4 +lives lIvz Ja% 12A,2B,2C,2D,3A,4A,6B,15B +lives laIvz Kj% 1 +livestock 'laIvst0k L@% 2 +livid 'lIvId OA% 2 +lividly 'lIvIdlI Pu$ 3 +living 'lIvIN Jb*,M6%,OA* 22A,2B,2C,2D,3A,4A,6B,15B +living-room 'lIvIN-rum K6% 3 +living-rooms 'lIvIN-rumz Kj% 3 +living-space 'lIvIN-speIs K6% 3 +living-spaces 'lIvIN-speIsIz Kj% 4 +livings 'lIvINz Mj% 2 +lizard 'lIz@d K6% 2 +lizards 'lIz@dz Kj% 2 +ll laInz Y)% 1 +llama 'lAm@ K6% 2 +llamas 'lAm@z Kj% 2 +lo l@U W-$ 1 +load l@Ud J0%,K6% 12A,2C,6A,14,15A,15B +load-line 'l@Ud-laIn K6$ 2 +load-lines 'l@Ud-laInz Kj$ 2 +load-shedding 'l@Ud-SedIN L@$ 3 +loaded 'l@UdId Jc%,Jd%,OA% 22A,2C,6A,14,15A,15B +loader 'l@Ud@R K6% 2 +loaders 'l@Ud@z Kj% 2 +loading 'l@UdIN Jb%,K6% 22A,2C,6A,14,15A,15B +loadings 'l@UdINz Kj% 2 +loads l@Udz Ja%,Kj% 12A,2C,6A,14,15A,15B +loadstar 'l@UdstAR K6$ 2 +loadstars 'l@UdstAz Kj$ 2 +loadstone 'l@Udst@Un L@$ 2 +loaf l@Uf J0%,Mi% 12A,2C,15A,15B +loaf-sugar 'l@Uf-SUg@R L@$ 3 +loafed l@Uft Jc%,Jd% 12A,2C,15A,15B +loafer 'l@Uf@R K6% 2 +loafers 'l@Uf@z Kj% 2 +loafing 'l@UfIN Jb% 22A,2C,15A,15B +loafs l@Ufs Ja% 12A,2C,15A,15B +loam l@Um L@% 1 +loamier 'l@UmI@R Or% 3 +loamiest 'l@UmIIst Os% 3 +loamy 'l@UmI OD% 2 +loan l@Un H0%,M6% 16A,14 +loan-collection 'l@Un-k@,lekSn K6$ 4 +loan-collections 'l@Un-k@,lekSnz Kj$ 4 +loan-office 'l@Un-0fIs K6$ 3 +loan-offices 'l@Un-0fIsIz Kj$ 4 +loaned l@Und Hc%,Hd% 16A,14 +loaning 'l@UnIN Hb% 26A,14 +loans l@Unz Ha%,Mj% 16A,14 +loanword 'l@Unw3d K6% 2 +loanwords 'l@Unw3dz Kj% 2 +loath l@UT OA% 1 +loathe l@UD H2% 16A,6C +loathed l@UDd Hc%,Hd% 16A,6C +loathes l@UDz Ha% 16A,6C +loathing 'l@UDIN Hb%,L@% 26A,6C +loathlier 'l@UTlI@R Or$ 3 +loathliest 'l@UTlIIst Os$ 3 +loathly 'l@UTlI OD$ 2 +loathsome 'l@UDs@m OA% 2 +loaves l@Uvz Kj% 1 +lob l0b J4%,K6% 12C,6A,15A +lobbed l0bd Jc%,Jd% 12C,6A,15A +lobbied 'l0bId Jc%,Jd% 22A,2C,6A,15A +lobbies 'l0bIz Ja%,Kj% 22A,2C,6A,15A +lobbing 'l0bIN Jb% 22C,6A,15A +lobby 'l0bI J3%,K8% 22A,2C,6A,15A +lobbying 'l0bIIN Jb% 32A,2C,6A,15A +lobbyist 'l0bIIst K6% 3 +lobbyists 'l0bIIsts Kj% 3 +lobe l@Ub K6% 1 +lobed l@Ubd OA% 1 +lobes l@Ubz Kj% 1 +lobs l0bz Ja%,Kj% 12C,6A,15A +lobster 'l0bst@R M6% 2 +lobster-pot 'l0bst@-p0t K6% 3 +lobster-pots 'l0bst@-p0ts Kj% 3 +lobsters 'l0bst@z Mj% 2 +loc cit ,l0k 'sIt Y~$ 2 +local 'l@Ukl K6%,OA% 2 +locale l@U'kAl K6% 2 +locales l@U'kAlz Kj$ 2 +localism 'l@Uk@lIz@m M6$ 4 +localisms 'l@Uk@lIz@mz Mj$ 4 +localities l@U'k&lItIz Mj% 4 +locality l@U'k&lItI M8% 4 +localization ,l@Uk@laI'zeISn M6% 5 +localizations ,l@Uk@laI'zeISnz Mj$ 5 +localize 'l@Uk@laIz H2% 36A +localized 'l@Uk@laIzd Hc%,Hd% 36A +localizes 'l@Uk@laIzIz Ha% 46A +localizing 'l@Uk@laIzIN Hb% 46A +locally 'l@Uk@lI Pu% 3 +locals 'l@Uklz Kj% 2 +locate l@U'keIt H2% 26A,15A +located l@U'keItId Hc%,Hd% 36A,15A +locates l@U'keIts Ha% 26A,15A +locating l@U'keItIN Hb% 36A,15A +location l@U'keISn M6% 3 +locations l@U'keISnz Mj% 3 +loch l0k K6% 1 +lochs l0ks Kj% 1 +loci 'l@UsaI Kj$ 2 +lock l0k J0%,M6% 12A,2C,6A,15A,15B +lock-gate 'l0k-geIt K6% 2 +lock-gates 'l0k-geIts Kj% 2 +lock-keeper 'l0k-kip@R K6% 3 +lock-keepers 'l0k-kip@z Kj% 3 +locked l0kt Jc%,Jd% 12A,2C,6A,15A,15B +locker 'l0k@R K6% 2 +lockers 'l0k@z Kj% 2 +locket 'l0kIt K6% 2 +lockets 'l0kIts Kj% 2 +locking 'l0kIN Jb% 22A,2C,6A,15A,15B +lockjaw 'l0kdZO L@% 2 +locknut 'l0knVt K6$ 2 +locknuts 'l0knVts Kj$ 2 +lockout 'l0kaUt K6% 2 +lockouts 'l0kaUts Kj$ 2 +locks l0ks Ja%,Mj% 12A,2C,6A,15A,15B +locksmith 'l0ksmIT K6% 2 +locksmiths 'l0ksmITs Kj% 2 +lockstitch 'l0kstItS K7$ 2 +lockstitches 'l0kstItSIz Kj$ 3 +lockup 'l0kVp K6%,OA% 2 +lockups 'l0kVps Kj$ 2 +loco 'l@Uk@U OA$ 2 +locomotion 'l@Uk@m@USn L@% 4 +locomotive ,l@Uk@'m@UtIv K6%,OA% 4 +locomotives ,l@Uk@'m@UtIvz Kj% 4 +locum 'l@Uk@m K6% 2 +locum tenens ,l@Uk@m 'tinenz Ki$ 4 +locums 'l@Uk@mz Kj$ 2 +locus 'l@Uk@s Ki$ 2 +locus classicus ,l@Uk@s 'kl&sIk@s Ki$ 5 +locust 'l@Uk@st K6% 2 +locust-tree 'l@Uk@st-tri K6$ 3 +locust-trees 'l@Uk@st-triz Kj$ 3 +locusts 'l@Uk@sts Kj% 2 +locution l@'kjuSn M6% 3 +locutions l@'kjuSnz Mj% 3 +lode l@Ud K6$ 1 +lodes l@Udz Kj$ 1 +lodestar 'l@UdstAR K6% 2 +lodestars 'l@UdstAz Kj% 2 +lodestone 'l@Udst@Un L@% 2 +lodge l0dZ J2%,K6% 13A,6A,14,15A +lodged l0dZd Jc%,Jd% 13A,6A,14,15A +lodgement 'l0dZm@nt M6$ 2 +lodgements 'l0dZm@nts Mj$ 2 +lodger 'l0dZ@R K6% 2 +lodgers 'l0dZ@z Kj% 2 +lodges 'l0dZIz Ja%,Kj% 23A,6A,14,15A +lodging 'l0dZIN Jb%,K6% 23A,6A,14,15A +lodging-house 'l0dZIN-haUs K6% 3 +lodging-houses 'l0dZIN-haUzIz Kj% 4 +lodgings 'l0dZINz Kj% 2 +lodgment 'l0dZm@nt M6$ 2 +lodgments 'l0dZm@nts Mj$ 2 +loess 'l@Ues L@$ 2 +loft l0ft H0$,K6% 16A +lofted 'l0ftId Hc$,Hd% 26A +loftier 'l0ftI@R Or% 3 +loftiest 'l0ftIIst Os% 3 +loftily 'l0ftIlI Pu% 3 +loftiness 'l0ftIn@s L@% 3 +lofting 'l0ftIN Hb$ 26A +lofts l0fts Ha$,Kj% 16A +lofty 'l0ftI OD% 2 +log l0g H4%,K6% 16A +log-cabin l0g-'k&bIn K6% 3 +log-cabins l0g-'k&bInz Kj% 3 +log-jam 'l0g-dZ&m K6% 2 +log-jams 'l0g-dZ&mz Kj$ 2 +log-rolling 'l0g-r@UlIN L@% 3 +loganberries 'l@Ug@nberIz Kj% 4 +loganberry 'l@Ug@nberI K8% 4 +logarithm 'l0g@rID@m K6% 4 +logarithmic ,l0g@'rIDmIk OA% 4 +logarithmically ,l0g@'rIDmIklI Pu% 5 +logarithms 'l0g@rID@mz Kj% 4 +logbook 'l0gbUk K6% 2 +logbooks 'l0gbUks Kj% 2 +logged l0gd Hc%,Hd% 16A +loggerheads 'l0g@hedz L@% 3 +loggia 'l0dZI@ K6$ 3 +loggias 'l0dZI@z Kj$ 3 +logging 'l0gIN Hb%,L@% 26A +logic 'l0dZIk M6% 2 +logical 'l0dZIkl OA% 3 +logicality ,l0dZI'k&lItI L@$ 5 +logically 'l0dZIklI Pu% 3 +logician l@'dZISn K6% 3 +logicians l@'dZISnz Kj% 3 +logics 'l0dZIks Mj% 2 +logistics l@'dZIstIks Lk% 3 +logs l0gz Ha%,Kj% 16A +loin loIn K6% 1 +loincloth 'loInkl0T K6% 2 +loincloths 'loInkl0Ts Kj% 2 +loins loInz Kj% 1 +loiter 'loIt@R J0% 22A,2C,15B +loitered 'loIt@d Jc%,Jd% 22A,2C,15B +loiterer 'loIt@r@R K6% 3 +loiterers 'loIt@r@z Kj% 3 +loitering 'loIt@rIN Jb% 32A,2C,15B +loiters 'loIt@z Ja% 22A,2C,15B +loll l0l J0% 12A,2C,15B +lolled l0ld Jc%,Jd% 12A,2C,15B +lollies 'l0lIz Kj% 2 +lolling 'l0lIN Jb% 22A,2C,15B +lollipop 'l0lIp0p K6% 3 +lollipops 'l0lIp0ps Kj% 3 +lolls l0lz Ja% 12A,2C,15B +lolly 'l0lI K8% 2 +lone l@Un OA% 1 +lonelier 'l@UnlI@R Or% 3 +loneliest 'l@UnlIIst Os% 3 +loneliness 'l@UnlIn@s L@% 3 +lonely 'l@UnlI OD% 2 +lonesome 'l@Uns@m OA% 2 +long l0N I0%,M6%,OC*,Pu*,Y>$ 13A,4C +long-distance 'l0N-dIst@ns Oq% 3 +long-drawn-out ,l0N-drOn-'@Ut OA% 3 +long-haired l0N-'he@d OA% 2 +long-headed l0N-'hedId OA$ 3 +long-lived l0N-'lIvd OA% 2 +long-play 'l0N-pleI OA$ 2 +long-playing 'l0N-pleIIN OA% 3 +long-range 'l0N-reIndZ Oq% 2 +long-sighted l0N-'saItId OA% 3 +long-standing 'l0N-st&ndIN OA% 3 +long-suffering l0N-'sVf@rIN OA% 4 +long-term 'l0N-t3m Oq% 2 +long-time 'l0N-taIm Oq% 2 +long-winded l0N-'wIndId OA% 3 +long-windedness l0N-'wIndIdn@s L@% 4 +longboat 'l0Nb@Ut K6% 2 +longboats 'l0Nb@Uts Kj% 2 +longbow 'l0NbaU K6% 2 +longbows 'l0NbaUz Kj% 2 +longed l0Nd Ic%,Id% 13A,4C +longer 'l0Ng@R Or%,Pu% 2 +longest 'l0NgIst Os%,Pu% 2 +longevity l0n'dZevItI L@% 4 +longhand 'l0Nh&nd L@% 2 +longing 'l0NIN Ib%,M6%,OA% 23A,4C +longingly 'l0NINlI Pu% 3 +longings 'l0NINz Mj$ 2 +longish 'l0NIS OA% 2 +longitude 'l0ndZItjud K6% 3 +longitudes 'l0ndZItjudz Kj$ 3 +longitudinal ,l0ndZI'tjudInl OA% 5 +longitudinally ,l0ndZI'tjudIn@lI Pu% 6 +longs l0Nz Ia%,Mj$ 13A,4C +longshoreman 'l0NSOm@n Ki% 3 +longshoremen 'l0NSOm@n Kj% 3 +longways 'l0NweIz Pu% 2 +longwise 'l0NwaIz Pu% 2 +loo lu K6% 1 +loofa 'luf@ K6$ 2 +loofah 'luf@ K6% 2 +loofahs 'luf@z Kj% 2 +loofas 'luf@z Kj$ 2 +look lUk J0*,K6* 12A,2C,2D,3A,4A,4D,6A,8,15B +look-over 'lUk-@Uv@R Ki$ 3 +looked lUkt Jc*,Jd* 12A,2C,2D,3A,4A,4D,6A,8,15B +looker 'lUk@R K6% 2 +looker-on ,lUk@r-'0n Ki% 3 +lookers 'lUk@z Kj% 2 +lookers-on ,lUk@z-'0n Kj% 3 +looking 'lUkIN Jb% 22A,2C,2D,3A,4A,4D,6A,8,15B +looking-glass 'lUkIN-glAs K7% 3 +looking-glasses 'lUkIN-glAsIz Kj% 4 +lookout 'lUkaUt K6% 2 +lookouts 'lUkaUts Kj% 2 +looks lUks Ja%,Kj% 12A,2C,2D,3A,4A,4D,6A,8,15B +loom lum I0%,K6% 12C,2D +loomed lumd Ic%,Id% 12C,2D +looming 'lumIN Ib% 22C,2D +looms lumz Ia%,Kj% 12C,2D +loon lun K6$ 1 +loonier 'lunI@R Or% 3 +loonies 'lunIz Kj% 2 +looniest 'lunIIst Os% 3 +loons lunz Kj$ 1 +loony 'lunI K8%,OD% 2 +loonybin 'lunIbIn K6$ 3 +loonybins 'lunIbInz Kj$ 3 +loop lup J0%,K6% 12A,6A,15B +loop-line 'lup-laIn K6$ 2 +loop-lines 'lup-laInz Kj$ 2 +looped lupt Jc%,Jd% 12A,6A,15B +loophole 'luph@Ul K6% 2 +loopholes 'luph@Ulz Kj% 2 +looping 'lupIN Jb% 22A,6A,15B +loops lups Ja% 12A,6A,15B +loopy 'lupI OA% 2 +loos luz Kj% 1 +loose lus H2%,OB% 16A +loose-leaf 'lus-lif Oq% 2 +loosed lust Hc%,Hd% 16A +loosely 'luslI Pu% 2 +loosen 'lusn J0% 22A,6A,15B +loosened 'lusnd Jc%,Jd% 22A,6A,15B +loosening 'lusnIN Jb% 32A,6A,15B +loosens 'lusnz Ja% 22A,6A,15B +looser 'lus@R Or% 2 +looses 'lusIz Ha% 26A +loosest 'lusIst Os% 2 +loosing 'lusIN Hb% 26A +loot lut J0%,L@% 12A,6A +looted 'lutId Jc%,Jd% 22A,6A +looter 'lut@R K6% 2 +looters 'lut@z Kj% 2 +looting 'lutIN Jb% 22A,6A +loots luts Ja% 12A,6A +lop l0p J4% 16A,15B +lop-eared 'l0p-I@d OA$ 2 +lop-ears 'l0p-I@z Kj$ 2 +lope l@Up I2%,Ki% 12A,2C +loped l@Upt Ic%,Id% 12A,2C +lopes l@Ups Ia% 12A,2C +loping 'l@UpIN Ib% 22A,2C +lopped l0pt Jc%,Jd% 16A,15B +lopping 'l0pIN Jb% 26A,15B +lops l0ps Ja% 16A,15B +lopsided l0p'saIdId OA% 3 +loquacious l@'kweIS@s OA% 3 +loquaciously l@'kweIS@slI Pu% 4 +loquaciousness l@'kweIS@sn@s L@% 4 +loquacity l@'kw&sItI L@$ 4 +loquat 'l@Ukw0t K6$ 2 +loquats 'l@Ukw0ts Kj$ 2 +lor lOR W-$ 1 +lord lOd H0%,K6% 1 +lorded 'lOdId Hc%,Hd% 2 +lording 'lOdIN Hb% 2 +lordless 'lOdl@s OA% 2 +lordlier 'lOdlI@R Or$ 3 +lordliest 'lOdlIIst Os$ 3 +lordliness 'lOdlIn@s L@% 3 +lordly 'lOdlI OD% 2 +lords lOdz Ha%,Kj% 1 +lordship 'lOdSIp M6% 2 +lordships 'lOdSIps Mj% 2 +lore lOR L@% 1 +lorgnette lO'njet K6$ 2 +lorgnettes lO'njets Kj$ 2 +lorn lOn OA$ 1 +lorries 'l0rIz Kj% 2 +lorry 'l0rI K8% 2 +lose luz J5% 12A,2B,3A,6A,12C,15A +loser 'luz@R K6% 2 +losers 'luz@z Kj% 2 +loses 'luzIz Ja% 22A,2B,3A,6A,12C,15A +losing 'luzIN Jb% 22A,2B,3A,6A,12C,15A +loss l0s M7% 1 +loss-leader 'l0s-lid@R K6% 3 +loss-leaders 'l0s-lid@z Kj% 3 +losses 'l0sIz Mj% 2 +lost l0st Jc%,Jd% 12A,2B,3A,6A,12C,15A +lot l0t M6% 1 +loth l@UT OA$ 1 +lotion 'l@USn M6% 2 +lotions 'l@USnz Mj% 2 +lots l0ts Mj% 1 +lotteries 'l0t@rIz Kj% 3 +lottery 'l0t@rI K8% 3 +lotto 'l0t@U L@$ 2 +lotus 'l@Ut@s K7% 2 +lotus-eater 'l@Ut@s-it@R K6$ 4 +lotus-eaters 'l@Ut@s-it@z Kj$ 4 +lotuses 'l@Ut@sIz Kj$ 3 +loud laUd OC%,Pu% 1 +loud-hailer laUd-'heIl@R K6% 3 +loud-hailers laUd-'heIl@z Kj% 3 +louder 'laUd@R Or% 2 +loudest 'laUdIst Os% 2 +loudly 'laUdlI Pu% 2 +loudness 'laUdn@s L@% 2 +loudspeaker laUd'spik@R K6% 3 +loudspeakers laUd'spik@z Kj% 3 +lough l0k K6$ 1 +loughs l0ks Kj$ 1 +lounge laUndZ I2%,K6% 12A,2C +lounge-chair 'laUndZ-tSe@R K6% 2 +lounge-chairs 'laUndZ-tSe@z Kj% 2 +lounge-lizard 'laUndZ-lIz@d K6% 3 +lounge-lizards 'laUndZ-lIz@dz Kj% 3 +lounge-suit 'laUndZ-sut K6% 2 +lounge-suits 'laUndZ-suts Kj% 2 +lounged laUndZd Ic%,Id% 12A,2C +lounger 'laUndZ@R K6% 2 +loungers 'laUndZ@z Kj% 2 +lounges 'laUndZIz Ia%,Kj% 22A,2C +lounging 'laUndZIN Ib% 22A,2C +lour 'laU@R I0$ 22A,3A +loured 'laU@d Ic%,Id% 22A,3A +louring 'laU@rIN Ib% 32A,3A +louringly 'laU@rINlI Pu% 4 +lours 'laU@z Ia$ 22A,3A +louse laUs Ki% 1 +lousier 'laUzI@R Or% 3 +lousiest 'laUzIIst Os% 3 +lousy 'laUzI OD% 2 +lout laUt K6% 1 +loutish 'laUtIS OA% 2 +louts laUts Kj% 1 +louvered 'luv@d OA$ 2 +louvre 'luv@R K6$ 2 +louvres 'luv@z Kj$ 2 +lovable 'lVv@bl OA% 3 +love lVv H2*,M6* 16A,6D,7A,17 +love-affair 'lVv-@fe@R K6% 3 +love-affairs 'lVv-@fe@z Kj% 3 +love-child 'lVv-tSaIld Ki% 2 +love-children 'lVv-tSIldr@n Kj$ 3 +love-feast 'lVv-fist K6$ 2 +love-feasts 'lVv-fists Kj$ 2 +love-knot 'lVv-n0t K6% 2 +love-knots 'lVv-n0ts Kj$ 2 +love-letter 'lVv-let@R K6% 3 +love-letters 'lVv-let@z Kj% 3 +love-match 'lVv-m&tS K7% 2 +love-matches 'lVv-m&tSIz Kj$ 3 +love-philtre 'lVv-fIlt@R K6$ 3 +love-philtres 'lVv-fIlt@z Kj$ 3 +love-potion 'lVv-p@USn K6% 3 +love-potions 'lVv-p@USnz Kj% 3 +love-seat 'lVv-sit K6$ 2 +love-seats 'lVv-sits Kj$ 2 +love-song 'lVv-s0N K6% 2 +love-songs 'lVv-s0Nz Kj% 2 +love-stories 'lVv-stOrIz Kj% 3 +love-story 'lVv-stOrI K8% 3 +love-token 'lVv-t@Uk@n K6% 3 +love-tokens 'lVv-t@Uk@nz Kj% 3 +lovebird 'lVvb3d K6% 2 +lovebirds 'lVvb3dz Kj% 2 +loved lVvd Hc%,Hd% 16A,6D,7A,17 +loveless 'lVvl@s OA% 2 +lovelier 'lVvlI@R Or% 3 +loveliest 'lVvlIIst Os% 3 +loveliness 'lVvlIn@s L@% 3 +lovelorn 'lVvlOn OA% 2 +lovely 'lVvlI OD% 2 +lovemaking 'lVvmeIkIN L@% 3 +lover 'lVv@R K6% 2 +loverlike 'lVv@laIk OA$ 3 +lovers 'lVv@z Kj% 2 +loves lVvz Ha%,Mj% 16A,6D,7A,17 +lovesick 'lVvsIk OA% 2 +loving 'lVvIN Hb%,OA% 26A,6D,7A,17 +loving-cup 'lVvIN-kVp K6% 3 +loving-cups 'lVvIN-kVps Kj% 3 +loving-kindness ,lVvIN-'kaIndn@s L@% 4 +lovingly 'lVvINlI Pu% 3 +low l@U I0%,K6%,OC%,Pu% 1 +low-down l@U-'daUn OA% 2 +low-keyed l@U-'kid OA% 2 +low-pitched l@U-'pItSt OA% 2 +low-relief ,l@U-rI'lif M6% 3 +low-reliefs ,l@U-rI'lifs Mj% 3 +low-spirited l@U-'spIrItId OA% 4 +lowborn l@U'bOn OA% 2 +lowbred l@U'bred OA% 2 +lowbrow 'l@UbraU K6$,OA% 2 +lowbrows 'l@UbraUz Kj$ 2 +lowed l@Ud Ic$,Id$ 1 +lower 'l@U@R J0%,Or%,Pu% 22A,6A,15A +lower 'laU@R I0$ 22A,3A +lowered 'l@U@d Jc%,Jd% 22A,6A,15A +lowered 'laU@d Ic$,Id$ 22A,3A +lowering 'l@U@rIN Jb% 32A,6A,15A +lowering 'laU@rIN Ib$ 32A,3A +lowermost 'l@U@m@Ust OA% 3 +lowers 'l@U@z Ja% 22A,6A,15A +lowers 'laU@z Ia$ 22A,3A +lowest 'l@UIst Os%,Pu% 2 +lowing 'l@UIN Ib$ 2 +lowlander 'l@Ul@nd@R K6% 3 +lowlanders 'l@Ul@nd@z Kj% 3 +lowlands 'l@Ul@ndz Kj% 2 +lowlier 'l@UlI@R Or% 3 +lowliest 'l@UlIIst Os% 3 +lowliness 'l@UlIn@s L@% 3 +lowly 'l@UlI OD% 2 +lowness 'l@Unes L@% 2 +lows l@Uz Ia$,Kj$ 1 +loyal 'loI@l OE% 2 +loyalist 'loI@lIst K6% 3 +loyalists 'loI@lIsts Kj% 3 +loyaller 'loI@l@R Or$ 3 +loyallest 'loI@lIst Os$ 3 +loyally 'loI@lI Pu% 3 +loyalties 'loI@ltIz Mj% 3 +loyalty 'loI@ltI M8% 3 +lozenge 'l0zIndZ K6% 2 +lozenges 'l0zIndZIz Kj% 3 +lubber 'lVb@R K6$ 2 +lubberly 'lVb@lI OA$ 3 +lubbers 'lVb@z Kj$ 2 +lubricant 'lubrIk@nt M6% 3 +lubricants 'lubrIk@nts Mj% 3 +lubricate 'lubrIkeIt H2% 36A +lubricated 'lubrIkeItId Hc%,Hd% 46A +lubricates 'lubrIkeIts Ha% 36A +lubricating 'lubrIkeItIN Hb% 46A +lubrication ,lubrI'keISn M6% 4 +lubrications ,lubrI'keISnz Mj% 4 +lucent 'lusnt OA$ 2 +lucerne lu's3n L@$ 2 +lucid 'lusId OA% 2 +lucidity lu'sIdItI L@% 4 +lucidly 'lusIdlI Pu% 3 +luck lVk L@% 1 +luckier 'lVkI@R Or% 3 +luckiest 'lVkIIst Os% 3 +luckily 'lVkIlI Pu% 3 +luckless 'lVkl@s OA% 2 +lucky 'lVkI OD% 2 +lucrative 'lukr@tIv OA% 3 +lucre 'luk@R L@% 2 +ludicrous 'ludIkr@s OA% 3 +ludicrously 'ludIkr@slI Pu% 4 +ludo 'lud@U L@% 2 +luff lVf J0$ 1 +luffed lVft Jc$,Jd$ 1 +luffing 'lVfIN Jb$ 2 +luffs lVfs Ja$ 1 +lug lVg H4%,K6% 16A,15A,15B +luge luZ K6$ 1 +luges 'luZIz Kj$ 2 +luggage 'lVgIdZ L@% 2 +luggage-carrier 'lVgIdZ-k&rI@R K6% 5 +luggage-carriers 'lVgIdZ-k&rI@z Kj% 5 +luggage-rack 'lVgIdZ-r&k K6% 3 +luggage-racks 'lVgIdZ-r&ks Kj% 3 +luggage-van 'lVgIdZ-v&n K6% 3 +luggage-vans 'lVgIdZ-v&nz Kj% 3 +lugged lVgd Hc%,Hd% 16A,15A,15B +lugger 'lVg@R K6$ 2 +luggers 'lVg@z Kj$ 2 +lugging 'lVgIN Hb% 26A,15A,15B +lugs lVgz Ha%,Kj% 16A,15A,15B +lugsail 'lVgseIl K6$ 2 +lugsails 'lVgseIlz Kj$ 2 +lugubrious l@'gubrI@s OA% 4 +lugubriously l@'gubrI@slI Pu% 5 +lugubriousness l@'gubrI@sn@s L@% 5 +lukewarm ,luk'wOm OA% 2 +lukewarmly ,luk'wOmlI Pu$ 3 +lukewarmness ,luk'wOmn@s L@$ 3 +lull lVl J0%,K6% 12A,6A,15A +lullabies 'lVl@baIz Kj% 3 +lullaby 'lVl@baI K8% 3 +lulled lVld Jc%,Jd% 12A,6A,15A +lulling 'lVlIN Jb% 22A,6A,15A +lulls lVlz Ja%,Kj% 12A,6A,15A +lumbago lVm'beIg@U L@% 3 +lumbar 'lVmb@R OA$ 2 +lumber 'lVmb@R J0%,L@% 22C,6A,14,15A,15B +lumber-mill 'lVmb@-mIl K6% 3 +lumber-mills 'lVmb@-mIlz Kj% 3 +lumbered 'lVmb@d Jc%,Jd% 22C,6A,14,15A,15B +lumbering 'lVmb@rIN Jb% 32C,6A,14,15A,15B +lumberjack 'lVmb@dZ&k K6% 3 +lumberjacks 'lVmb@dZ&ks Kj% 3 +lumberman 'lVmb@m&n Ki$ 3 +lumbermen 'lVmb@men Kj$ 3 +lumberroom 'lVmb@rum K6% 3 +lumberrooms 'lVmb@rumz Kj% 3 +lumbers 'lVmb@z Ja$ 22C,6A,14,15A,15B +lumberyard 'lVmb@jAd K6% 3 +lumberyards 'lVmb@jAdz Kj% 3 +luminaries 'lumIn@rIz Kj% 4 +luminary 'lumIn@rI K8% 4 +luminosity ,lumI'n0sItI L@% 5 +luminous 'lumIn@s OA% 3 +lumme 'lVmI W-$ 2 +lummy 'lVmI W-$ 2 +lump lVmp H0%,K6% 12A,6A,15B +lumped lVmpt Hc%,Hd% 12A,6A,15B +lumpier 'lVmpI@R Or% 3 +lumpiest 'lVmpIIst Os% 3 +lumping 'lVmpIN Hb% 22A,6A,15B +lumpish 'lVmpIS OA$ 2 +lumps lVmps Ha%,Kj% 12A,6A,15B +lumpy 'lVmpI OD% 2 +lunacies 'lun@sIz Mj$ 3 +lunacy 'lun@sI M8% 3 +lunar 'lun@R OA% 2 +lunatic 'lun@tIk K6% 3 +lunatics 'lun@tIks Kj% 3 +lunch lVntS J1%,K7% 1 +lunched lVntSt Jc%,Jd% 1 +luncheon 'lVntS@n K6% 2 +luncheons 'lVntS@nz Kj% 2 +lunches 'lVntSIz Ja%,Kj% 2 +lunching 'lVntSIN Jb% 2 +lunchtime 'lVntStaIm M6% 2 +lunchtimes 'lVntStaImz Mj% 2 +lung lVN K6% 1 +lung-power 'lVN-paU@R L@$ 3 +lunge lVndZ I2%,K6% 12A,2C +lunged lVndZd Ic%,Id% 12A,2C +lunges 'lVndZIz Ia%,Kj% 22A,2C +lunging 'lVndZIN Ib% 22A,2C +lungs lVNz Kj% 1 +lupin 'lupIn K6% 2 +lupins 'lupInz Kj% 2 +lurch l3tS I1%,K7% 12C +lurched l3tSt Ic%,Id% 12C +lurcher 'l3tS@R K6$ 2 +lurchers 'l3tS@z Kj$ 2 +lurches 'l3tSIz Ia%,Kj% 22C +lurching 'l3tSIN Ib% 22C +lure lU@R H2%,K6% 16A,15B +lured lU@d Hc%,Hd% 16A,15B +lures lU@z Ha%,Kj% 16A,15B +lurid 'lU@rId OA% 2 +luridly 'lU@rIdlI Pu% 3 +luridness 'lU@rIdn@s L@$ 3 +luring 'lU@rIN Hb% 26A,15B +lurk l3k I0% 12C +lurked l3kt Ic%,Id% 12C +lurking 'l3kIN Ib% 22C +lurking-place 'l3kIN-pleIs K6$ 3 +lurking-places 'l3kIN-pleIsIz Kj$ 4 +lurks l3ks Ia% 12C +luscious 'lVS@s OA% 2 +lusciously 'lVS@slI Pu% 3 +lusciousness 'lVS@sn@s L@% 3 +lush lVS K7$,OC% 1 +lusher 'lVS@R Or% 2 +lushes 'lVSIz Kj$ 2 +lushest 'lVSIst Os% 2 +lust lVst I0%,M6% 13A +lusted 'lVstId Ic%,Id% 23A +lustful 'lVstf@l OA% 2 +lustfully 'lVstf@lI Pu% 3 +lustier 'lVstI@R Or% 3 +lustiest 'lVstIIst Os% 3 +lustily 'lVstIlI Pu% 3 +lusting 'lVstIN Ib% 23A +lustre 'lVst@R L@% 2 +lustrous 'lVstr@s OA% 2 +lusts lVsts Ia%,Mj% 13A +lusty 'lVstI OD% 2 +lutanist 'lut@nIst K6% 3 +lutanists 'lut@nIsts Kj% 3 +lute lut K6% 1 +lutenist 'lut@nIst K6% 3 +lutenists 'lut@nIsts Kj% 3 +lutes luts Kj% 1 +luxe lVks OA$ 1 +luxuriance lVg'ZU@rI@ns L@% 4 +luxuriant lVg'ZU@rI@nt OA% 4 +luxuriantly lVg'ZU@rI@ntlI Pu% 5 +luxuriate lVg'ZU@rIeIt I2% 43A +luxuriated lVg'ZU@rIeItId Ic%,Id% 53A +luxuriates lVg'ZU@rIeIts Ia% 43A +luxuriating lVg'ZU@rIeItIN Ib% 53A +luxuries 'lVkS@rIz Mj% 3 +luxurious lVg'ZU@rI@s OA% 4 +luxuriously lVg'ZU@rI@slI Pu% 5 +luxury 'lVkS@rI M8% 3 +lyc_ee 'liseI K6$ 2 +lyc_ees 'liseIz Kj$ 2 +lyceum laI'si@m K6$ 3 +lyceums laI'si@mz Kj$ 3 +lychee 'laItSi K6% 2 +lychees 'laItSiz Kj% 2 +lychgate 'lItSgeIt K6% 2 +lychgates 'lItSgeIts Kj% 2 +lye laI K6$ 1 +lyes laIz Kj$ 1 +lying 'laIIN Ib% 22A,2C,2D,3A +lying-in ,laIIN-'In OA% 3 +lymph lImf L@% 1 +lymphatic lIm'f&tIk OA% 3 +lynch lIntS H1%,L@% 16A +lynched lIntSt Hc%,Hd% 16A +lynches 'lIntSIz Ha% 26A +lynching 'lIntSIN Hb% 26A +lynchpin 'lIntSpIn K6% 2 +lynchpins 'lIntSpInz Kj% 2 +lynx lINks K7% 1 +lynx-eyed 'lINks-aId OA% 2 +lynxes 'lINksIz Kj% 2 +lyre 'laI@R K6% 1 +lyre-bird 'laI@-b3d K6% 2 +lyre-birds 'laI@-b3dz Kj% 2 +lyres 'laI@z Kj% 1 +lyric 'lIrIk K6%,OA% 2 +lyrical 'lIrIkl OA% 3 +lyrically 'lIrIklI Pu% 3 +lyricism 'lIrIsIzm L@% 4 +lyricist 'lIrIsIst K6% 3 +lyricists 'lIrIsIsts Kj% 3 +lyrics 'lIrIks Kj% 2 +lysol 'laIs0l L@$ 2 +m em Ki$ 1 +m's emz Kj$ 1 +m^el_ee 'meleI K6% 2 +m^el_ees 'meleIz Kj% 2 +m_elange 'meIlAnZ K6$ 2 +m_elanges 'meIlAnZIz Kj$ 3 +m_enage meI'nAZ K6% 2 +m_enages meI'nAZIz Kj% 3 +m_esalliance ,meI'z&lIAns K6$ 4 +m_esalliances ,meI'z&lIAnsIz Kj$ 5 +m_etier 'metIeI K6% 3 +m_etiers 'metIeIz Kj% 3 +ma mA Ki% 1 +ma'am m&m Ki% 1 +mac m&k K6% 1 +macabre m@'kAbr@ OA% 3 +macadam m@'k&d@m L@% 3 +macadamize m@'k&d@maIz H2$ 4 +macadamized m@'k&d@maIzd Hc$,Hd$ 4 +macadamizes m@'k&d@maIzIz Ha$ 5 +macadamizing m@'k&d@maIzIN Hb$ 5 +macaroni ,m&k@'r@UnI L@% 4 +macaroon ,m&k@'run K6% 3 +macaroons ,m&k@'runz Kj% 3 +macaw m@'kO K6% 2 +macaws m@'kOz Kj% 2 +mace meIs M6% 1 +mace-bearer 'meIs-be@r@R K6% 3 +mace-bearers 'meIs-be@r@z Kj% 3 +macerate 'm&s@reIt J2$ 32A,6A +macerated 'm&s@reItId Jc$,Jd% 42A,6A +macerates 'm&s@reIts Ja$ 32A,6A +macerating 'm&s@reItIN Jb$ 42A,6A +maces 'meIsIz Mj% 2 +machete m@'tSetI K6% 3 +machetes m@'tSetIz Kj% 3 +machiavellian ,m&kI@'velI@n OA% 6 +machination ,m&kI'neISn M6% 4 +machinations ,m&kI'neISnz Mj% 4 +machine m@'Sin H2%,K6% 26A +machine-gun m@'Sin-gVn K6% 3 +machine-guns m@'Sin-gVnz Kj% 3 +machine-made m@'Sin-meId OA% 3 +machined m@'Sind Hc%,Hd% 26A +machinery m@'Sin@rI L@% 4 +machines m@'Sinz Ha%,Kj% 26A +machining m@'SinIN Hb% 36A +machinist m@'SinIst K6% 3 +machinists m@'SinIsts Kj% 3 +machismo m@'tSIzm@U L@% 3 +mackerel 'm&kr@l M9% 2 +mackintosh 'm&kInt0S K7% 3 +mackintoshes 'm&kInt0SIz Kj% 4 +macrobiotic ,m&kr@UbaI'0tIk OA% 5 +macrocosm 'm&kr@Uk0z@m K6$ 4 +macrocosms 'm&kr@Uk0z@mz Kj$ 4 +macs m&ks Kj% 1 +mad m&d OE% 1 +madam 'm&d@m K6% 2 +madams 'm&d@mz Kj$ 2 +madcap 'm&dk&p K6$ 2 +madcaps 'm&dk&ps Kj$ 2 +madden 'm&dn H0% 26A +maddened 'm&dnd Hc%,Hd% 26A +maddening 'm&dnIN Hb% 36A +maddens 'm&dnz Ha% 26A +madder 'm&d@R L@$,Or% 2 +maddest 'm&dIst Os% 2 +made meId Jc*,Jd* 12A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +madhouse 'm&dhaUs K6% 2 +madhouses 'm&dhaUzIz Kj$ 3 +madly 'm&dlI Pu% 2 +madman 'm&dm@n Ki% 2 +madmen 'm&dm@n Kj% 2 +madness 'm&dn@s L@% 2 +madrigal 'm&drIgl K6% 3 +madrigals 'm&drIglz Kj% 3 +madwoman 'm&dwUm@n Ki% 3 +madwomen 'm&dwImIn Kj% 3 +maelstrom 'meIlstr@m K6% 2 +maelstroms 'meIlstr@mz Kj$ 2 +maenad 'min&d K6$ 2 +maenads 'min&dz Kj$ 2 +maestri 'maIstrI Kj$ 2 +maestro 'maIstr@U K6% 2 +maestros 'maIstr@Uz Kj% 2 +maffick 'm&fIk I0$ 2 +mafficked 'm&fIkt Ic$,Id$ 2 +mafficking 'm&fIkIN Ib$ 3 +mafficks 'm&fIks Ia$ 2 +mag m&g K6% 1 +magazine ,m&g@'zin K6% 3 +magazines ,m&g@'zinz Kj% 3 +magenta m@'dZent@ L@%,OA% 3 +maggot 'm&g@t K6% 2 +maggots 'm&g@ts Kj% 2 +maggoty 'm&g@tI OA% 3 +magic 'm&dZIk L@%,OA% 2 +magical 'm&dZIkl OA% 3 +magically 'm&dZIklI Pu% 3 +magician m@'dZISn K6% 3 +magicians m@'dZISnz Kj% 3 +magisterial ,m&dZI'stI@rI@l OA% 5 +magisterially ,m&dZI'stI@rI@lI Pu% 6 +magistracies 'm&dZIstr@sIz Kj$ 4 +magistracy 'm&dZIstr@sI K8$ 4 +magistrate 'm&dZIstreIt K6% 3 +magistrates 'm&dZIstreIts Kj% 3 +magnanimities ,m&gn@'nImItIz Mj$ 5 +magnanimity ,m&gn@'nImItI M8% 5 +magnanimous m&g'n&nIm@s OA% 4 +magnanimously m&g'n&nIm@slI Pu% 5 +magnate 'm&gneIt K6% 2 +magnates 'm&gneIts Kj% 2 +magnesia m&g'niS@ L@$ 3 +magnesium m&g'nizI@m L@% 4 +magnet 'm&gnIt K6% 2 +magnetic m&g'netIk OA% 3 +magnetically m&g'netIklI Pu% 4 +magnetism 'm&gnItIz@m L@% 4 +magnetization ,m&gnItaI'zeISn L@% 5 +magnetize 'm&gnItaIz H2% 36A +magnetized 'm&gnItaIzd Hc%,Hd% 36A +magnetizes 'm&gnItaIzIz Ha% 46A +magnetizing 'm&gnItaIzIN Hb% 46A +magneto m&g'nit@U K6$ 3 +magnetos m&g'nit@Uz Kj$ 3 +magnets 'm&gnIts Kj% 2 +magnification ,m&gnIfI'keISn M6% 5 +magnifications ,m&gnIfI'keISnz Mj% 5 +magnificence m&g'nIfIsns L@% 4 +magnificent m&g'nIfIsnt OA% 4 +magnificently m&g'nIfIsntlI Pu% 5 +magnified 'm&gnIfaId Hc%,Hd% 36A +magnifier 'm&gnIfaI@R K6% 4 +magnifiers 'm&gnIfaI@z Kj% 4 +magnifies 'm&gnIfaIz Ha% 36A +magnify 'm&gnIfaI H3% 36A +magnifying 'm&gnIfaIIN Hb% 46A +magniloquence m&g'nIl@kw@ns L@$ 4 +magniloquent m&g'nIl@kw@nt OA$ 4 +magniloquently m&g'nIl@kw@ntlI Pu$ 5 +magnitude 'm&gnItjud L@% 3 +magnolia m&g'n@UlI@ K6% 4 +magnolias m&g'n@UlI@z Kj% 4 +magnum 'm&gn@m K6% 2 +magnum opus ,m&gn@m '@Up@s Ki$ 4 +magnums 'm&gn@mz Kj$ 2 +magpie 'm&gpaI K6% 2 +magpies 'm&gpaIz Kj% 2 +mags m&gz Kj% 1 +mahjong ,mA'dZ0N L@% 2 +mahoganies m@'h0g@nIz Mj$ 4 +mahogany m@'h0g@nI M8% 4 +mahout m@'haUt K6$ 2 +mahouts m@'haUts Kj$ 2 +maid meId K6% 1 +maiden 'meIdn K6%,OA% 2 +maidenhair 'meIdnhe@R K6% 3 +maidenhairs 'meIdnhe@z Kj$ 3 +maidenhead 'meIdnhed L@% 3 +maidenhood 'meIdnhUd K6% 3 +maidenhoods 'meIdnhUdz Kj$ 3 +maidenlike 'meIdnlaIk OA$ 3 +maidenly 'meIdnlI OA% 3 +maidens 'meIdnz Kj% 2 +maids meIdz Kj% 1 +maidservant 'meIds3vnt K6% 3 +maidservants 'meIds3vnts Kj% 3 +mail meIl H0%,M6% 16A +mail-train 'meIl-treIn K6% 2 +mail-trains 'meIl-treInz Kj% 2 +mailbag 'meIlb&g K6% 2 +mailbags 'meIlb&gz Kj% 2 +mailboat 'meIlb@Ut K6% 2 +mailboats 'meIlb@Uts Kj% 2 +mailbox 'meIlb0ks K7% 2 +mailboxes 'meIlb0ksIz Kj% 3 +mailed meIld Hc%,Hd%,OA% 16A +mailing 'meIlIN Hb% 26A +mailing-card 'meIlIN-kAd K6% 3 +mailing-cards 'meIlIN-kAdz Kj% 3 +mailing-list 'meIlIN-lIst K6% 3 +mailing-lists 'meIlIN-lIsts Kj% 3 +mailman 'meIlm&n Ki% 2 +mailmen 'meIlmen Kj% 2 +mails meIlz Ha%,Mj% 16A +maim meIm H0% 16A +maimed meImd Hc%,Hd% 16A +maiming 'meImIN Hb% 26A +maims meImz Ha% 16A +main meIn K6%,OA% 1 +mainland 'meInl&nd K6% 2 +mainlands 'meInl&ndz Kj$ 2 +mainly 'meInlI Pu% 2 +mainmast 'meInmAst K6% 2 +mainmasts 'meInmAsts Kj$ 2 +mains meInz Kj% 1 +mainspring 'meInsprIN K6% 2 +mainsprings 'meInsprINz Kj$ 2 +mainstay 'meInsteI K6% 2 +mainstays 'meInsteIz Kj$ 2 +mainstream 'meInstrim Ki% 2 +maintain meIn'teIn H0% 26A,9,25 +maintainable meIn'teIn@bl OA% 4 +maintained meIn'teInd Hc%,Hd% 26A,9,25 +maintaining meIn'teInIN Hb% 36A,9,25 +maintains meIn'teInz Ha% 26A,9,25 +maintenance 'meInt@n@ns L@% 3 +maisonnette ,meIz@'net K6% 3 +maisonnettes ,meIz@'nets Kj% 3 +maize meIz L@% 1 +majestic m@'dZestIk OA% 3 +majestically m@'dZestIklI Pu% 4 +majesties 'm&dZ@stIz Mj% 3 +majesty 'm&dZ@stI M8% 3 +majolica m@'dZ0lIk@ L@$ 4 +major 'meIdZ@R I0%,K6%,OA% 23A +major-domo ,meIdZ@-'d@Um@U K6$ 4 +major-domos ,meIdZ@-'d@Um@Uz Kj$ 4 +major-general ,meIdZ@-'dZenr@l K6% 4 +major-generals ,meIdZ@-'dZenr@lz Kj% 4 +majored 'meIdZ@d Ic%,Id% 23A +majoring 'meIdZ@rIN Ib% 33A +majorities m@'dZ0rItIz Kj% 4 +majority m@'dZ0rItI K8% 4 +majors 'meIdZ@z Ia%,Kj% 23A +make meIk J5*,M6% 12A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +make-believe 'meIk-bIliv M6% 3 +make-believes 'meIk-bIlivz Mj$ 3 +make-up 'meIk-Vp M6% 2 +make-ups 'meIk-Vps Mj$ 2 +maker 'meIk@R K6% 2 +makers 'meIk@z Kj% 2 +makes meIks Ja%,Mj% 12A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +makeshift 'meIkSIft K6% 2 +makeshifts 'meIkSIfts Kj$ 2 +makeweight 'meIkweIt K6% 2 +makeweights 'meIkweIts Kj$ 2 +making 'meIkIN Jb*,K6% 22A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +makings 'meIkINz Kj% 2 +malacca m@'l&k@ L@$ 3 +malachite 'm&l@kaIt L@$ 3 +maladies 'm&l@dIz Kj% 3 +maladjusted ,m&l@'dZVstId OA% 4 +maladjustment ,m&l@'dZVsm@nt L@% 4 +maladroit 'm&l@droIt OA% 3 +maladroitly 'm&l@droItlI Pu$ 4 +maladroitness 'm&l@droItn@s L@$ 4 +malady 'm&l@dI K8% 3 +malaise m&'leIz M6% 2 +malaises m&'leIzIz Mj$ 3 +malapropism 'm&l@pr0pIz@m K6% 5 +malapropisms 'm&l@pr0pIz@mz Kj% 5 +malapropos ,m&l,&pr@'p@U OA$,Pu$ 4 +malaria m@'le@rI@ L@% 4 +malarial m@'le@rI@l OA% 4 +malcontent 'm&lk@ntent K6%,OA$ 3 +malcontents 'm&lk@ntents Kj% 3 +male meIl K6%,OA% 1 +malediction ,m&lI'dIkSn K6$ 4 +maledictions ,m&lI'dIkSnz Kj$ 4 +malefactor 'm&lIf&kt@R K6% 4 +malefactors 'm&lIf&kt@z Kj% 4 +maleficent m@'lefIsnt OA$ 4 +males meIlz Kj% 1 +malevolence m@'lev@lns L@% 4 +malevolent m@'lev@lnt OA% 4 +malevolently m@'lev@lntlI Pu% 5 +malfeasance ,m&l'fizns M6$ 3 +malfeasances ,m&l'fiznsIz Mj$ 4 +malformation ,m&lfO'meISn M6% 4 +malformations ,m&lfO'meISnz Mj% 4 +malformed ,m&l'fOmd OA% 2 +malfunction ,m&l'fVNkSn I0%,M6% 32A +malfunctioned ,m&l'fVNkSnd Ic%,Id% 32A +malfunctioning ,m&l'fVNkSnIN Ib% 42A +malfunctions ,m&l'fVNkSnz Ia%,Mj% 32A +malice 'm&lIs L@% 2 +malicious m@'lIS@s OA% 3 +maliciously m@'lIS@slI Pu% 4 +malign m@'laIn H0%,OA% 26A +malignancy m@'lIgn@nsI L@% 4 +malignant m@'lIgn@nt OA% 3 +malignantly m@'lIgn@ntlI Pu% 4 +maligned m@'laInd Hc%,Hd% 26A +maligning m@'laInIN Hb% 36A +malignities m@'lIgnItIz Mj$ 4 +malignity m@'lIgnItI M8$ 4 +maligns m@'laInz Ha% 26A +malinger m@'lINg@R I0% 32A +malingered m@'lINg@d Ic%,Id% 32A +malingerer m@'lINg@r@R K6% 4 +malingerers m@'lINg@r@z Kj% 4 +malingering m@'lINg@rIN Ib% 42A +malingers m@'lINg@z Ia% 32A +mallard 'm&lAd K6% 2 +mallards 'm&lAdz Kj% 2 +malleability ,m&lI@'bIlItI L@% 6 +malleable 'm&lI@bl OA% 4 +mallet 'm&lIt K6% 2 +mallets 'm&lIts Kj% 2 +mallow 'm&l@U K6$ 2 +mallows 'm&l@Uz Kj$ 2 +malmsey 'mAmzI L@$ 2 +malnutrition ,m&lnju'trISn L@% 4 +malodorous ,m&l'@Ud@r@s OA% 4 +malpractice ,m&l'pr&ktIs M6% 3 +malpractices ,m&l'pr&ktIsIz Mj% 4 +malt mOlt J0%,L@% 12A,6A +malted 'mOltId Jc%,Jd% 22A,6A +malting 'mOltIN Jb% 22A,6A +maltreat ,m&l'trit H0% 26A +maltreated ,m&l'tritId Hc%,Hd% 36A +maltreating ,m&l'tritIN Hb% 36A +maltreatment ,m&l'tritm@nt L@% 3 +maltreats ,m&l'trits Ha% 26A +malts mOlts Ja$ 12A,6A +maltster 'mOltst@R K6$ 2 +maltsters 'mOltst@z Kj$ 2 +malversation ,m&lv@'seISn L@$ 4 +mama m@'mA K6% 2 +mamas m@'mAz Kj$ 2 +mamba 'm&mb@ K6% 2 +mambas 'm&mb@z Kj% 2 +mamma m@'mA K6$ 2 +mammal 'm&ml K6% 2 +mammals 'm&mlz Kj% 2 +mammas m@'mAz Kj$ 2 +mammies 'm&mIz Kj% 2 +mammon 'm&m@n L@% 2 +mammoth 'm&m@T K6% 2 +mammoths 'm&m@Ts Kj% 2 +mammy 'm&mI K8% 2 +man m&n H4%,Ki* 16A +man-at-arms ,m&n-@t-'Amz Ki% 3 +man-eater 'm&n-it@R K6% 3 +man-eaters 'm&n-it@z Kj% 3 +man-hour 'm&n-aU@R K6% 3 +man-hours 'm&n-aU@z Kj% 3 +man-of-war ,m&n-@v-'wOR Ki% 3 +man-sized 'm&n-saIzd OA% 2 +manacle 'm&n@kl H2%,K6% 36A +manacled 'm&n@kld Hc%,Hd% 36A +manacles 'm&n@klz Ha$,Kj% 36A +manacling 'm&n@klIN Hb$ 36A +manage 'm&nIdZ J2% 22A,2C,3A,4A,6A +manageability ,m&nIdZ@'bIlItI L@% 6 +manageable 'm&nIdZ@bl OA% 4 +manageably 'm&nIdZ@blI Pu% 4 +managed 'm&nIdZd Jc%,Jd% 22A,2C,3A,4A,6A +management 'm&nIdZm@nt M6% 3 +managements 'm&nIdZm@nts Mj% 3 +manager 'm&nIdZ@R K6% 3 +manageress ,m&nIdZ@'res K7% 4 +manageresses ,m&nIdZ@'resIz Kj% 5 +managerial ,m&nI'dZI@rI@l OA% 5 +managers 'm&nIdZ@z Kj% 3 +manages 'm&nIdZIz Ja% 32A,2C,3A,4A,6A +managing 'm&nIdZIN Jb% 32A,2C,3A,4A,6A +manatee ,m&n@'ti K6$ 3 +manatees ,m&n@'tiz Kj$ 3 +mandarin 'm&nd@rIn K6% 3 +mandarins 'm&nd@rInz Kj% 3 +mandataries 'm&nd@t@rIz Kj$ 4 +mandatary 'm&nd@t@rI K8$ 4 +mandate 'm&ndeIt H2%,K6% 26A +mandated 'm&ndeItId Hc%,Hd% 36A +mandates 'm&ndeIts Ha$,Kj% 26A +mandating 'm&ndeItIN Hb$ 36A +mandatories 'm&nd@trIz Kj$ 3 +mandatory 'm&nd@trI K8$,OA% 3 +mandible 'm&ndIbl K6% 3 +mandibles 'm&ndIblz Kj% 3 +mandolin 'm&nd@lIn K6% 3 +mandolins 'm&nd@lInz Kj% 3 +mandragora m&n'dr&g@r@ L@$ 4 +mandrake 'm&ndreIk K6$ 2 +mandrakes 'm&ndreIks Kj$ 2 +mandrill 'm&ndrIl K6$ 2 +mandrills 'm&ndrIlz Kj$ 2 +mane meIn K6% 1 +manes 'mAneIz Kj% 2 +manes meInz Kj% 1 +manful 'm&nf@l OA% 2 +manfully 'm&nf@lI Pu% 3 +manganese 'm&Ng@niz L@% 3 +mange meIndZ L@$ 1 +mangel-wurzel 'm&Ngl-w3zl K6% 4 +mangel-wurzels 'm&Ngl-w3zlz Kj% 4 +manger 'meIndZ@R K6% 2 +mangers 'meIndZ@z Kj% 2 +mangier 'meIndZI@R Or% 3 +mangiest 'meIndZIIst Os% 3 +mangily 'meIndZIlI Pu$ 3 +mangle 'm&Ngl H2%,K6% 26A +mangled 'm&Ngld Hc%,Hd% 26A +mangles 'm&Nglz Ha%,Kj% 26A +mangling 'm&NglIN Hb% 26A +mango 'm&Ng@U K6% 2 +mangoes 'm&Ng@Uz Kj% 2 +mangos 'm&Ng@Uz Kj% 2 +mangosteen ,m&Ng@'stin K6$ 3 +mangosteens ,m&Ng@'stinz Kj$ 3 +mangrove 'm&Ngr@Uv K6% 2 +mangroves 'm&Ngr@Uvz Kj% 2 +mangy 'meIndZI OD% 2 +manhandle m&n'h&ndl H2% 3 +manhandled m&n'h&ndld Hc%,Hd% 3 +manhandles m&n'h&ndlz Ha$ 3 +manhandling m&n'h&ndlIN Hb% 3 +manhattan m&n'h&tn K6$ 3 +manhattans m&n'h&tnz Kj$ 3 +manhole 'm&nh@Ul K6% 2 +manholes 'm&nh@Ulz Kj% 2 +manhood 'm&nhUd L@% 2 +mania 'meInI@ M6% 3 +maniac 'meInI&k K6% 3 +maniacal m@'naI@kl OA% 4 +maniacally m@'naI@klI Pu% 4 +maniacs 'meInI&ks Kj% 3 +manias 'meInI@z Mj% 3 +manic-depressive ,m&nIk-dI'presIv K6%,OA% 5 +manic-depressives ,m&nIk-dI'presIvz Kj% 5 +manicure 'm&nIkjU@R H2%,M6% 36A +manicured 'm&nIkjU@d Hc%,Hd% 36A +manicures 'm&nIkjU@z Ha%,Mj% 36A +manicuring 'm&nIkjU@rIN Hb% 46A +manicurist 'm&nIkjurIst K6% 4 +manicurists 'm&nIkjurIsts Kj% 4 +manifest 'm&nIfest H0%,K6$,OA% 36A +manifestation ,m&nIfe'steISn M6% 5 +manifestations ,m&nIfe'steISnz Mj% 5 +manifested 'm&nIfestId Hc%,Hd% 46A +manifesting 'm&nIfestIN Hb% 46A +manifestly 'm&nIfestlI Pu% 4 +manifesto ,m&nI'fest@U K6% 4 +manifestoes ,m&nI'fest@Uz Kj% 4 +manifestos ,m&nI'fest@Uz Kj% 4 +manifests 'm&nIfests Ha%,Kj$ 36A +manifold 'm&nIf@Uld H0$,K6$,OA% 36A +manifolded 'm&nIf@UldId Hc$,Hd$ 46A +manifolding 'm&nIf@UldIN Hb$ 46A +manifolds 'm&nIf@Uldz Ha$,Kj$ 36A +manikin 'm&nIkIn K6$ 3 +manikins 'm&nIkInz Kj$ 3 +manipulate m@'nIpjUleIt H2% 46A +manipulated m@'nIpjUleItId Hc%,Hd% 56A +manipulates m@'nIpjUleIts Ha% 46A +manipulating m@'nIpjUleItIN Hb% 56A +manipulation m@,nIpjU'leISn M6% 5 +manipulations m@,nIpjU'leISnz Mj% 5 +manipulative m@'nIpjUl@tIv OA% 5 +mankind 'm&nkaInd L@% 2 +mankind ,m&n'kaInd L@% 2 +manlier 'm&nlI@R Or% 3 +manliest 'm&nlIIst Os% 3 +manlike 'm&nlaIk OA$ 2 +manliness 'm&nlIn@s L@% 3 +manly 'm&nlI OD% 2 +manna 'm&n@ L@% 2 +manned m&nd Hc%,Hd% 16A +mannequin 'm&nIkIn K6% 3 +mannequins 'm&nIkInz Kj% 3 +manner 'm&n@R K6% 2 +mannered 'm&n@d OA% 2 +mannerism 'm&n@rIz@m K6% 4 +mannerisms 'm&n@rIz@mz Kj% 4 +mannerly 'm&n@lI OA% 3 +manners 'm&n@z Kj% 2 +manning 'm&nIN Hb% 26A +mannish 'm&nIS OA% 2 +manoeuvrability m@,nuvr@'bIlItI L@% 6 +manoeuvrable m@'nuvr@bl OA% 4 +manoeuvre m@'nuv@R J2%,K6% 32A,2C,6A,15A +manoeuvred m@'nuv@d Jc%,Jd% 32A,2C,6A,15A +manoeuvrer m@'nuv@r@R K6$ 3 +manoeuvrers m@'nuv@r@z Kj$ 3 +manoeuvres m@'nuv@z Ja%,Kj% 32A,2C,6A,15A +manoeuvring m@'nuv@rIN Jb% 32A,2C,6A,15A +manor 'm&n@R K6% 2 +manor-house 'm&n@-haUs K6% 3 +manor-houses 'm&n@-haUzIz Kj% 4 +manorial m@'nOrI@l OA% 4 +manors 'm&n@z Kj$ 2 +manpower 'm&npaU@R L@% 3 +mans m&nz Ha% 16A +mansard 'm&nsAd K6$ 2 +mansards 'm&nsAdz Kj$ 2 +manse m&ns K6% 1 +manservant 'm&ns3v@nt K6% 3 +manservants 'm&ns3v@nts Kj% 3 +manses 'm&nsIz Kj$ 2 +mansion 'm&nSn K6% 2 +mansions 'm&nSnz Kj% 2 +manslaughter 'm&nslOt@R L@% 3 +mantel 'm&ntl K6% 2 +mantelpiece 'm&ntlpis K6% 3 +mantelpieces 'm&ntlpisIz Kj% 4 +mantels 'm&ntlz Kj% 2 +mantilla m&n'tIl@ K6$ 3 +mantillas m&n'tIl@z Kj$ 3 +mantis 'm&ntIs K7% 2 +mantises 'm&ntIsIz Kj% 3 +mantle 'm&ntl J2%,K6% 22C,6A +mantled 'm&ntld Jc%,Jd% 22C,6A +mantles 'm&ntlz Ja%,Kj% 22C,6A +mantling 'm&ntlIN Jb% 22C,6A +mantrap 'm&ntr&p K6% 2 +mantraps 'm&ntr&ps Kj% 2 +manual 'm&njU@l K6%,OA% 3 +manually 'm&njU@lI Pu% 4 +manuals 'm&njU@lz Kj% 3 +manufacture ,m&njU'f&ktS@R H2%,L@% 46A +manufactured ,m&njU'f&ktS@d Hc%,Hd% 46A +manufacturer ,m&njU'f&ktS@r@R K6% 5 +manufacturers ,m&njU'f&ktS@r@z Kj% 5 +manufactures ,m&njU'f&ktS@z Ha% 46A +manufacturing ,m&njU'f&ktS@rIN Hb% 56A +manumission ,m&njU'mISn M6$ 4 +manumissions ,m&njU'mISnz Mj$ 4 +manumit ,m&njU'mIt H4$ 3 +manumits ,m&njU'mIts Ha$ 3 +manumitted ,m&njU'mItId Hc$,Hd$ 4 +manumitting ,m&njU'mItIN Hb$ 4 +manure m@'njU@R H2$,L@% 26A +manured m@'njU@d Hc$,Hd% 26A +manures m@'njU@z Ha$ 26A +manuring m@'njU@rIN Hb$ 36A +manuscript 'm&njUskrIpt K6% 3 +manuscripts 'm&njUskrIpts Kj% 3 +many 'menI Kj%,OA* 2 +many-sided ,menI-'saIdId OA% 4 +map m&p H4%,K6% 16A,15B +map-reader 'm&p-rid@R K6% 3 +map-readers 'm&p-rid@z Kj% 3 +maple 'meIpl M6% 2 +maple-leaf 'meIpl-lif Ki% 3 +maple-leaves 'meIpl-livz Kj% 3 +maples 'meIplz Mj% 2 +mapped m&pt Hc%,Hd% 16A,15B +mapping 'm&pIN Hb% 26A,15B +maps m&ps Ha%,Kj% 16A,15B +maquis 'm&ki Ki$ 2 +mar mAR H4% 16A +marabou 'm&r@bu K6$ 3 +marabous 'm&r@buz Kj$ 3 +maraschino ,m&r@'skin@U K6% 4 +maraschinos ,m&r@'skin@Uz Kj$ 4 +marathon 'm&r@T@n K6% 3 +marathons 'm&r@T@nz Kj% 3 +maraud m@'rOd I0$ 22A +marauded m@'rOdId Ic$,Id$ 32A +marauder m@'rOd@R K6% 3 +marauders m@'rOd@z Kj% 3 +marauding m@'rOdIN Ib% 32A +marauds m@'rOdz Ia$ 22A +marble 'mAbl M6% 2 +marbled 'mAbld OA% 2 +marbles 'mAblz Mj% 2 +marbling 'mAblIN L@% 2 +march mAtS J1%,M7% 12A,2B,2C,3A,15A,15B +marched mAtSt Jc%,Jd% 12A,2B,2C,3A,15A,15B +marcher 'mAtS@R K6% 2 +marchers 'mAtS@z Kj% 2 +marches 'mAtSIz Ja%,Mj% 22A,2B,2C,3A,15A,15B +marching 'mAtSIN Jb% 22A,2B,2C,3A,15A,15B +marchioness ,mAS@'nes K7% 3 +marchionesses ,mAS@'nesIz Kj$ 4 +mare me@R K6% 1 +mares me@z Kj% 1 +margarine ,mAdZ@'rin L@% 3 +marge mAdZ L@% 1 +margin 'mAdZIn K6% 2 +marginal 'mAdZInl OA% 3 +marginally 'mAdZIn@lI Pu% 4 +margins 'mAdZInz Kj% 2 +marguerite ,mAg@'rit K6$ 3 +marguerites ,mAg@'rits Kj$ 3 +marigold 'm&rIg@Uld K6% 3 +marigolds 'm&rIg@Uldz Kj% 3 +marihuana ,m&rI'wAn@ L@% 4 +marijuana ,m&rI'wAn@ L@% 4 +marimba m@'rImb@ K6$ 3 +marimbas m@'rImb@z Kj$ 3 +marina m@'rin@ K6% 3 +marinade ,m&rI'neId H2%,L@% 3 +marinaded ,m&rI'neIdId Hc%,Hd% 4 +marinades ,m&rI'neIdz Ha% 3 +marinading ,m&rI'neIdIN Hb% 4 +marinas m@'rin@z Kj% 3 +marinate 'm&rIneIt H2% 3 +marinated 'm&rIneItId Hc%,Hd% 4 +marinates 'm&rIneIts Ha% 3 +marinating 'm&rIneItIN Hb% 4 +marine m@'rin K6%,OA% 2 +mariner 'm&rIn@R K6% 3 +mariners 'm&rIn@z Kj% 3 +marines m@'rinz Kj% 2 +marionette ,m&rI@'net K6% 4 +marionettes ,m&rI@'nets Kj% 4 +marital 'm&rItl OA% 3 +maritime 'm&rItaIm OA% 3 +marjoram 'mAdZ@r@m L@% 3 +mark mAk H0%,M6% 12A,6A,8,10,15A,15B,22 +mark-up 'mAk-Vp K6% 2 +mark-ups 'mAk-Vps Kj$ 2 +marked mAkt Hc%,Hd%,OA% 12A,6A,8,10,15A,15B,22 +markedly 'mAkIdlI Pu% 3 +marker 'mAk@R K6% 2 +markers 'mAk@z Kj% 2 +market 'mAkIt J0%,K6% 22A,6A +market-cross ,mAkIt-'kr0s K7% 3 +market-crosses ,mAkIt-'kr0sIz Kj% 4 +market-day 'mAkIt-deI K6% 3 +market-days 'mAkIt-deIz Kj% 3 +market-garden ,mAkIt-'gAdn K6% 4 +market-gardening ,mAkIt-'gAdnIN L@% 4 +market-gardens ,mAkIt-'gAdnz Kj% 4 +market-square ,mAkIt-'skwe@R K6% 3 +market-squares ,mAkIt-'skwe@z Kj% 3 +market-town 'mAkIt-taUn K6% 3 +market-towns 'mAkIt-taUnz Kj% 3 +marketable 'mAkIt@bl OA% 4 +marketed 'mAkItId Jc%,Jd% 32A,6A +marketing 'mAkItIN Jb%,M6% 32A,6A +marketings 'mAkItINz Kj$ 3 +marketplace 'mAkItpleIs K6% 3 +marketplaces 'mAkItpleIsIz Kj% 4 +markets 'mAkIts Ja%,Kj% 22A,6A +marking 'mAkIN Hb%,K6% 22A,6A,8,10,15A,15B,22 +marking-ink 'mAkIN-INk M6% 3 +marking-inks 'mAkIN-INks M6% 3 +markings 'mAkINz Kj% 2 +marks mAks Ha%,Mj% 12A,6A,8,10,15A,15B,22 +marksman 'mAksm@n Ki% 2 +marksmanship 'mAksm@nSIp L@% 3 +marksmen 'mAksm@n Kj% 2 +marl mAl L@$ 1 +marlinespike 'mAlInspaIk K6$ 3 +marlinespikes 'mAlInspaIks Kj$ 3 +marmalade 'mAm@leId L@% 3 +marmoreal mA'mOrI@l OA$ 4 +marmoset 'mAm@zet K6$ 3 +marmosets 'mAm@zets Kj$ 3 +marmot 'mAm@t K6$ 2 +marmots 'mAm@ts Kj$ 2 +marocain 'm&r@keIn L@$ 3 +maroon m@'run H0%,K6%,OA% 26A +marooned m@'rund Hc%,Hd% 26A +marooning m@'runIN Hb$ 36A +maroons m@'runz Ha$,Kj$ 26A +marque mAk K6$ 1 +marquee mA'ki K6% 2 +marquees mA'kiz Kj% 2 +marques mAks Kj$ 1 +marquess 'mAkwIs K7% 2 +marquesses 'mAkwIsIz Kj% 3 +marquetry 'mAkItrI L@% 3 +marquis 'mAkwIs K7% 2 +marquises 'mAkwIsIz Kj% 3 +marred mAd Hc%,Hd% 16A +marriage 'm&rIdZ M6% 2 +marriageability ,m&rIdZ@'bIlItI L@$ 6 +marriageable 'm&rIdZ@bl OA% 4 +marriages 'm&rIdZIz Mj% 3 +married 'm&rId Jc%,Jd%,OA% 22A,2D,4A,6A,15B +marries 'm&rIz Ja% 22A,2D,4A,6A,15B +marring 'mArIN Hb% 26A +marrow 'm&r@U M6% 2 +marrowbone 'm&r@Ub@Un K6% 3 +marrowbones 'm&r@Ub@Unz Kj$ 3 +marrows 'm&r@Uz Mj% 2 +marry 'm&rI J3% 22A,2D,4A,6A,15B +marrying 'm&rIIN Jb% 32A,2D,4A,6A,15B +mars mAz Ha% 16A +marsh mAS M7% 1 +marshal 'mASl H4%,K6% 26A,15A,15B +marshalled 'mASld Hc%,Hd% 26A,15A,15B +marshalling 'mAS@lIN Hb% 36A,15A,15B +marshalling-yard 'mAS@lIN-jAd K6% 4 +marshalling-yards 'mAS@lIN-jAdz Kj% 4 +marshals 'mASlz Ha%,Kj% 26A,15A,15B +marshes 'mASIz Mj% 2 +marshier 'mASI@R Or% 3 +marshiest 'mASIIst Os% 3 +marshmallow mAS'm&l@U M6% 3 +marshmallows mAS'm&l@Uz Mj% 3 +marshy 'mASI OD% 2 +marsupial mA'supI@l K6%,OA% 4 +marsupials mA'supI@lz Kj% 4 +mart mAt K6$ 1 +marten 'mAtIn M6$ 2 +martens 'mAtInz Mj$ 2 +martial 'mASl OA% 2 +martially 'mAS@lI Pu% 3 +martin 'mAtIn K6$ 2 +martinet ,mAtI'net K6% 3 +martinets ,mAtI'nets Kj% 3 +martini mA'tinI K6% 3 +martinis mA'tinIz Kj% 3 +martins 'mAtInz Kj$ 2 +marts mAts Kj$ 1 +martyr 'mAt@R H0%,K6% 26A +martyrdom 'mAt@d@m K6% 3 +martyrdoms 'mAt@d@mz Kj$ 3 +martyred 'mAt@d Hc%,Hd% 26A +martyring 'mAt@rIN Hb$ 36A +martyrs 'mAt@z Ha$,Kj% 26A +marvel 'mAvl I4%,K6% 23A,3B +marvelled 'mAvld Ic%,Id% 23A,3B +marvelling 'mAv@lIN Ib% 33A,3B +marvellous 'mAv@l@s OA% 3 +marvellously 'mAv@l@slI Pu% 4 +marvelous 'mAv@l@s OA$ 3 +marvelously 'mAv@l@slI Pu$ 4 +marvels 'mAvlz Ia%,Kj% 23A,3B +marzipan 'mAzIp&n M6% 3 +marzipans 'mAzIp&nz Mj$ 3 +masc m&sk Y~% 1 +mascara m&'skAr@ L@% 3 +mascot 'm&sk@t K6% 2 +mascots 'm&sk@ts Kj% 2 +masculine 'm&skjUlIn OA% 3 +masculinity ,m&skjU'lInItI L@% 5 +maser 'meIz@R K6$ 2 +masers 'meIz@z Kj$ 2 +mash m&S H1%,M7% 16A +mashed m&St Hc%,Hd% 16A +masher 'm&S@R K6% 2 +mashers 'm&S@z Kj$ 2 +mashes 'm&SIz Ha%,Mj% 26A +mashing 'm&SIN Hb% 26A +mask mAsk H0%,K6% 16A +masked mAskt Hc%,Hd% 16A +masking 'mAskIN Hb% 26A +masks mAsks Ha%,Kj% 16A +masochism 'm&s@kIz@m L@% 4 +masochist 'm&s@kIst K6% 3 +masochistic ,m&s@'kIstIk OA% 4 +masochistically ,m&s@'kIstIklI Pu% 5 +masochists 'm&s@kIsts Kj% 3 +mason 'meIsn K6% 2 +masonic m@'s0nIk OA% 3 +masonry 'meIsnrI L@% 3 +masons 'meIsnz Kj% 2 +masque mAsk K6% 1 +masquerade ,mAsk@'reId I2%,K6% 32A,2C +masqueraded ,mAsk@'reIdId Ic%,Id% 42A,2C +masquerades ,mAsk@'reIdz Ia%,Kj% 32A,2C +masquerading ,mAsk@'reIdIN Ib% 42A,2C +masques mAsks Kj% 1 +mass m&s J1%,M7% 12A,6A +mass-produce ,m&s-pr@'djus H2% 3 +mass-produced ,m&s-pr@'djust Hc%,Hd% 3 +mass-produces ,m&s-pr@'djusIz Ha% 4 +mass-producing ,m&s-pr@'djusIN Hb% 4 +massacre 'm&s@k@R H2%,K6% 36A +massacred 'm&s@k@d Hc%,Hd% 36A +massacres 'm&s@k@z Ha%,Kj% 36A +massacring 'm&s@k@rIN Hb% 36A +massage 'm&sAZ H2%,M6% 26A +massaged 'm&sAZd Hc%,Hd% 26A +massages 'm&sAZIz Ha%,Mj% 36A +massaging 'm&sAZIN Hb% 36A +massed m&st Jc%,Jd% 12A,6A +masses 'm&sIz Ja%,Mj% 22A,6A +masseur m&'s3R K6% 2 +masseurs m&'s3z Kj% 2 +masseuse m&'s3z K6% 2 +masseuses m&'s3z Kj$ 2 +massier 'm&sI@R Or$ 3 +massiest 'm&sIIst Os$ 3 +massif m&'sif K6$ 2 +massifs m&'sifs Kj$ 2 +massing 'm&sIN Jb% 22A,6A +massive 'm&sIv OA% 2 +massively 'm&sIvlI Pu% 3 +massiveness 'm&sIvn@s L@% 3 +massy 'm&sI OD$ 2 +mast mAst M6% 1 +master 'mAst@R H0%,K6% 26A +master-at-arms ,mAst@r-@t-'Amz Ki$ 4 +master-key ,mAst@-'ki K6% 3 +master-keys ,mAst@-'kiz Kj% 3 +mastered 'mAst@d Hc%,Hd% 26A +masterful 'mAst@f@l OA% 3 +masterfully 'mAst@f@lI Pu% 4 +mastering 'mAst@rIN Hb% 36A +masterless 'mAst@l@s OA% 3 +masterly 'mAst@lI OA% 3 +mastermind 'mAst@maInd H0%,K6% 3 +masterminded 'mAst@maIndId Hc%,Hd% 4 +masterminding 'mAst@maIndIN Hb% 4 +masterminds 'mAst@maIndz Ha%,Kj% 3 +masterpiece 'mAst@pis K6% 3 +masterpieces 'mAst@pisIz Kj% 4 +masters 'mAst@z Ha%,Kj% 26A +masters-at-arms ,m&st@z-@t-'Amz Kj$ 4 +mastership 'mAst@SIp M6% 3 +masterships 'mAst@SIps Mj$ 3 +masterstroke 'mAst@str@Uk K6% 3 +masterstrokes 'mAst@str@Uks Kj$ 3 +mastery 'mAst@rI L@% 3 +masthead 'mAsthed K6% 2 +mastheads 'mAsthedz Kj$ 2 +masticate 'm&stIkeIt H2$ 36A +masticated 'm&stIkeItId Hc$,Hd$ 46A +masticates 'm&stIkeIts Ha$ 36A +masticating 'm&stIkeItIN Hb$ 46A +mastication ,m&stI'keISn L@$ 4 +mastiff 'm&stIf K6% 2 +mastiffs 'm&stIfs Kj% 2 +mastodon 'm&st@d0n K6$ 3 +mastodons 'm&st@d0nz Kj$ 3 +mastoid 'm&stoId K6% 2 +mastoiditis ,m&stoI'daItIs L@% 4 +mastoids 'm&stoIdz Kj% 2 +masts mAsts Mj% 1 +masturbate 'm&st@beIt J2% 32A,6A +masturbated 'm&st@beItId Jc%,Jd% 42A,6A +masturbates 'm&st@beIts Ja% 32A,6A +masturbating 'm&st@beItIN Jb% 42A,6A +masturbation ,m&st@'beISn L@% 4 +mat m&t J4%,K6%,OA% 12A,2C,6A,15A +mat_e 'mAteI L@$ 2 +matador 'm&t@dOR K6% 3 +matadors 'm&t@dOz Kj% 3 +match m&tS J1%,K7% 12A,6A,12B,13B,14 +match-point m&tS-'poInt K6% 2 +match-points m&tS-'poInts Kj% 2 +matchbox 'm&tSb0ks K7% 2 +matchboxes 'm&tSb0ksIz Kj% 3 +matched m&tSt Jc%,Jd% 12A,6A,12B,13B,14 +matches 'm&tSIz Ja%,Kj% 22A,6A,12B,13B,14 +matchet 'm&tSIt K6$ 2 +matchets 'm&tSIts Kj$ 2 +matching 'm&tSIN Jb% 22A,6A,12B,13B,14 +matchless 'm&tSl@s OA% 2 +matchlock 'm&tSl0k K6$ 2 +matchlocks 'm&tSl0ks Kj$ 2 +matchmaker 'm&tSmeIk@R K6% 3 +matchmakers 'm&tSmeIk@z Kj% 3 +matchwood 'm&tSwUd L@% 2 +mate meIt J2%,K6% 12A,3A,6A,14 +mated 'meItId Jc%,Jd% 22A,3A,6A,14 +material m@'tI@rI@l M6%,OA% 4 +materialism m@'tI@rI@lIz@m L@% 6 +materialist m@'tI@rI@lIst K6% 5 +materialistic m@,tI@rI@'lIstIk OA% 6 +materialistically m@,tI@rI@'lIstIklI Pu% 7 +materialists m@'tI@rI@lIsts Kj% 5 +materialization m@,tI@rI@laI'zeISn K6% 7 +materializations m@,tI@rI@laI'zeISnz Kj$ 7 +materialize m@'tI@rI@laIz I2% 52A,6A +materialized m@'tI@rI@laIzd Ic%,Id% 52A,6A +materializes m@'tI@rI@laIzIz Ia% 62A,6A +materializing m@'tI@rI@laIzIN Ib% 62A,6A +materially m@'tI@rI@lI Pu% 5 +materials m@'tI@rI@lz Mj% 4 +maternal m@'t3nl OA% 3 +maternally m@'t3n@lI Pu% 4 +maternity m@'t3nItI L@% 4 +mates meIts Ja%,Kj% 12A,3A,6A,14 +matey 'meItI OA% 2 +mathematical ,m&T@'m&tIkl OA% 5 +mathematically ,m&T@'m&tIklI Pu% 5 +mathematician ,m&T@m@'tISn K6% 5 +mathematicians ,m&T@m@'tISnz Kj% 5 +mathematics ,m&T@'m&tIks Lk% 4 +maths m&Ts Lk% 1 +matin_ee 'm&tIneI K6% 3 +matin_ees 'm&tIneIz Kj% 3 +mating 'meItIN Jb% 22A,3A,6A,14 +matins 'm&tInz Kj% 2 +matriarch 'meItrIAk K6% 3 +matriarchal ,meItrI'Akl OA% 4 +matriarchies 'meItrIAkIz Kj% 4 +matriarchs 'meItrIAks Kj% 3 +matriarchy 'meItrIAkI K8% 4 +matric m@'trIk K6$ 2 +matrices 'meItrIsiz Kj% 3 +matricide 'm&trIsaId M6% 3 +matricides 'm&trIsaIdz Mj% 3 +matrics m@'trIks Kj$ 2 +matriculate m@'trIkjUleIt J2% 42A,2C,6A +matriculated m@'trIkjUleItId Jc%,Jd% 52A,2C,6A +matriculates m@'trIkjUleIts Ja% 42A,2C,6A +matriculating m@'trIkjUleItIN Jb% 52A,2C,6A +matriculation m@,trIkjU'leISn M6% 5 +matriculations m@,trIkjU'leISnz Mj$ 5 +matrimonial ,m&trI'm@UnI@l OA% 5 +matrimony 'm&trIm@nI L@% 4 +matrix 'meItrIks K7% 2 +matrixes 'meItrIksIz Kj% 3 +matron 'meItr@n K6% 2 +matronly 'meItr@nlI OA% 3 +matrons 'meItr@nz Kj% 2 +mats m&ts Ja%,Kj% 12A,2C,6A,15A +matt m&t OA% 1 +matted 'm&tId Jc%,Jd%,OA% 22A,2C,6A,15A +matter 'm&t@R I0*,M6* 22A,2C +matter-of-course ,m&t@r-@v-'kOs OA% 4 +matter-of-fact ,m&t@r-@v-'f&kt OA% 4 +mattered 'm&t@d Ic%,Id% 22A,2C +mattering 'm&t@rIN Ib$ 32A,2C +matters 'm&t@z Ia%,Mj% 22A,2C +matting 'm&tIN Jb$,L@% 22A,2C,6A,15A +mattins 'm&tInz Kj% 2 +mattock 'm&t@k K6$ 2 +mattocks 'm&t@ks Kj$ 2 +mattress 'm&trIs K7% 2 +mattresses 'm&trIsIz Kj% 3 +maturate 'm&tjUreIt I2$ 32A +maturated 'm&tjUreItId Ic$,Id$ 42A +maturates 'm&tjUreIts Ia$ 32A +maturating 'm&tjUreItIN Ib$ 42A +maturation ,m&tjU'reISn L@% 4 +mature m@'tjU@R J2%,OA% 22A,6A +matured m@'tjU@d Jc%,Jd% 22A,6A +maturely m@'tjU@lI Pu% 3 +matures m@'tjU@z Ja% 22A,6A +maturing m@'tjU@rIN Jb% 32A,6A +maturity m@'tjU@rItI L@% 4 +matutinal m@'tjutInl OA$ 4 +maudlin 'mOdlIn OA% 2 +maul mOl H0% 16A,15B +mauled mOld Hc%,Hd% 16A,15B +mauling 'mOlIN Hb% 26A,15B +mauls mOlz Ha% 16A,15B +maulstick 'mOlstIk K6$ 2 +maulsticks 'mOlstIks Kj$ 2 +maunder 'mOnd@R I0$ 22A,2C +maundered 'mOnd@d Ic$,Id$ 22A,2C +maundering 'mOnd@rIN Ib$ 32A,2C +maunders 'mOnd@z Ia$ 22A,2C +mausoleum ,mOs@'li@m K6% 4 +mausoleums ,mOs@'li@mz Kj% 4 +mauve m@Uv M6%,OA% 1 +mauves m@Uvz Mj$ 1 +maverick 'm&v@rIk K6% 3 +mavericks 'm&v@rIks Kj% 3 +mavis 'meIvIs K7$ 2 +mavises 'meIvIsIz Kj$ 3 +maw mO K6% 1 +mawkish 'mOkIS OA% 2 +mawkishly 'mOkISlI Pu% 3 +mawkishness 'mOkISn@s L@% 3 +maws mOz Kj$ 1 +max m&ks Y>% 1 +maxi- 'm&ksI- U-% 2 +maxim 'm&ksIm K6% 2 +maxima 'm&ksIm@ Kj$ 3 +maximal 'm&ksIml OA$ 3 +maximally 'm&ksIm@lI Pu$ 4 +maximization ,m&ksImaI'zeISn M6% 5 +maximizations ,m&ksImaI'zeISnz Mj$ 5 +maximize 'm&ksImaIz H2% 36A +maximized 'm&ksImaIzd Hc%,Hd% 36A +maximizes 'm&ksImaIzIz Ha% 46A +maximizing 'm&ksImaIzIN Hb% 46A +maxims 'm&ksImz Kj% 2 +maximum 'm&ksIm@m K6%,OA% 3 +maximums 'm&ksIm@mz Kj$ 3 +may meI G5*,Ga* 15 +may-beetle 'meI-bitl K6$ 3 +may-beetles 'meI-bitlz Kj$ 3 +may-bug 'meI-bVg K6$ 2 +may-bugs 'meI-bVgz Kj$ 2 +maybe 'meIbi Pu% 2 +mayday 'meIdeI K6% 2 +maydays 'meIdeIz Kj% 2 +mayflies 'meIflaIz Kj% 2 +mayfly 'meIflaI K8% 2 +mayhem 'meIhem L@% 2 +mayn't 'meI@nt Gg% 2 +mayonnaise ,meI@'neIz L@% 3 +mayor me@R K6% 1 +mayoral 'me@r@l OA% 3 +mayoralties 'me@r@ltIz Kj$ 4 +mayoralty 'me@r@ltI K8% 4 +mayoress me@'res K7% 2 +mayoresses me@'resIz Kj% 3 +mayors me@z Kj% 1 +maypole 'meIp@Ul K6% 2 +maypoles 'meIp@Ulz Kj% 2 +maze meIz K6% 1 +mazed meIzd OA$ 1 +mazes 'meIzIz Kj% 2 +mazurka m@'z3k@ K6% 3 +mazurkas m@'z3k@z Kj% 3 +me mi Qx* 1 +mead mid M6$ 1 +meadow 'med@U M6% 2 +meadows 'med@Uz Mj% 2 +meads midz Mj$ 1 +meagre 'mig@R OA% 2 +meagrely 'mig@lI Pu% 3 +meagreness 'mig@n@s L@% 3 +meal mil M6% 1 +mealie 'milI K6$ 2 +mealier 'milI@R Or$ 3 +mealies 'milIz Kj$ 2 +mealiest 'milIIst Os$ 3 +meals milz Mj% 1 +mealtime 'miltaIm K6% 2 +mealtimes 'miltaImz Kj% 2 +mealy 'milI OD$ 2 +mealy-bug 'milI-bVg K6% 3 +mealy-bugs 'milI-bVgz Kj% 3 +mealy-mouthed 'milI-maUDd OA% 3 +mean min H5*,K6%,OC* 16A,6A,6C,7A,9,12A,13A,14,16B,17 +meander mI'&nd@R I0% 32A,2C +meandered mI'&nd@d Ic%,Id% 32A,2C +meandering mI'&nd@rIN Ib% 42A,2C +meanderingly mI'&ndrINlI Pu% 4 +meanderings mI'&ndrINz Kj% 3 +meanders mI'&nd@z Ia% 32A,2C +meaner 'min@R Or% 2 +meanest 'minIst Os% 2 +meanie 'minI K6% 2 +meanies 'minIz Kj% 2 +meaning 'minIN Hb%,M6%,OA% 26A,6A,6C,7A,9,12A,13A,14,16B,17 +meaningful 'minINf@l OA% 3 +meaningfully 'minINf@lI Pu% 4 +meaningless 'minINl@s OA% 3 +meaningly 'minINlI Pu% 3 +meanings 'minINz Mj% 2 +meanly 'minlI Pu% 2 +meanness 'min+n@s L@% 2 +means minz Ha*,Kj* 16A,6C,7A,9,12A,13A,14,16B,17 +meant ment Hc%,Hd% 16A,6A,6C,7A,9,12A,13A,14,16B,17 +meantime 'mintaIm L@%,Pu% 2 +meanwhile 'minwaIl Pu% 2 +meany 'minI K8% 2 +measles 'mizlz Lk% 2 +measly 'mizlI OA% 2 +measurable 'meZ@r@bl OA% 4 +measurably 'meZ@r@blI Pu% 4 +measure 'meZ@R J2%,M6% 22A,2B,6A,15A,15B +measured 'meZ@d Jc%,Jd%,OA% 22A,2B,6A,15A,15B +measureless 'meZ@l@s OA% 3 +measurement 'meZ@m@nt M6% 3 +measurements 'meZ@m@nts Mj% 3 +measures 'meZ@z Ja%,Mj% 22A,2B,6A,15A,15B +measuring 'meZ@rIN Jb% 32A,2B,6A,15A,15B +meat mit M6% 1 +meat-safe 'mit-seIf K6% 2 +meat-safes 'mit-seIfs Kj$ 2 +meatball 'mitbOl K6% 2 +meatballs 'mitbOlz Kj% 2 +meatier 'mitI@R Or% 3 +meatiest 'mitIIst Os% 3 +meatless 'mitl@s OA$ 2 +meats mits Mj% 1 +meaty 'mitI OD% 2 +mechanic mI'k&nIk K6% 3 +mechanical mI'k&nIkl OA% 4 +mechanically mI'k&nIklI Pu% 4 +mechanics mI'k&nIks Kj%,Lk% 3 +mechanism 'mek@nIz@m M6% 4 +mechanisms 'mek@nIz@mz Mj% 4 +mechanistic ,mek@'nIstIk OA% 4 +mechanistically ,mek@'nIstIklI Pu% 5 +mechanization ,mek@naI'zeISn M6% 5 +mechanizations ,mek@naI'zeISnz Mj$ 5 +mechanize 'mek@naIz H2% 36A +mechanized 'mek@naIzd Hc%,Hd% 36A +mechanizes 'mek@naIzIz Ha% 46A +mechanizing 'mek@naIzIN Hb% 46A +medal 'medl K6% 2 +medalist 'med@lIst K6% 3 +medalists 'med@lIsts Kj% 3 +medallion mI'd&lI@n K6% 4 +medallions mI'd&lI@nz Kj% 4 +medallist 'med@lIst K6$ 3 +medallists 'med@lIsts Kj$ 3 +medals 'medlz Kj% 2 +meddle 'medl I2% 22A,3A +meddled 'medld Ic%,Id% 22A,3A +meddler 'medl@R K6% 2 +meddlers 'medl@z Kj% 2 +meddles 'medlz Ia% 22A,3A +meddlesome 'medls@m OA% 3 +meddling 'medlIN Ib% 22A,3A +media 'midI@ Kj% 3 +mediaeval ,medI'ivl OA% 4 +medial 'midI@l OA% 3 +medially 'midI@lI Pu$ 4 +median 'midI@n K6$,OA$ 3 +medians 'midI@nz Kj$ 3 +mediate 'midIeIt J2% 32A,3A,6A +mediated 'midIeItId Jc%,Jd% 42A,3A,6A +mediates 'midIeIts Ja% 32A,3A,6A +mediating 'midIeItIN Jb% 42A,3A,6A +mediation ,midI'eISn L@% 4 +mediator 'midIeIt@R K6% 4 +mediators 'midIeIt@z Kj% 4 +medic 'medIk K6% 2 +medical 'medIkl K6%,OA% 3 +medically 'medIklI Pu% 3 +medicals 'medIklz Kj% 3 +medicament mI'dIk@m@nt K6% 4 +medicaments mI'dIk@m@nts Kj% 4 +medicate 'medIkeIt H2% 36A +medicated 'medIkeItId Hc%,Hd% 46A +medicates 'medIkeIts Ha% 36A +medicating 'medIkeItIN Hb% 46A +medication ,medI'keISn M6% 4 +medications ,medI'keISnz Mj% 4 +medicinal mI'dIsn@l OA% 4 +medicine 'medsn M6% 2 +medicine-ball 'medsn-bOl K6% 3 +medicine-balls 'medsn-bOlz Kj% 3 +medicine-chest 'medsn-tSest K6% 3 +medicine-chests 'medsn-tSests Kj% 3 +medicine-man 'medsn-m&n Ki% 3 +medicine-men 'medsn-men Kj% 3 +medicines 'medsnz Mj% 3 +medico 'medIk@U K6$ 3 +medicos 'medIk@Uz Kj$ 3 +medics 'medIks Kj% 2 +medieval ,medI'ivl OA% 4 +mediocre ,midI'@Uk@R OA% 4 +mediocrities ,midI'0krItIz Mj% 5 +mediocrity ,midI'0krItI M8% 5 +meditate 'medIteIt J2% 32A,3A,6A +meditated 'medIteItId Jc%,Jd% 42A,3A,6A +meditates 'medIteIts Ja% 32A,3A,6A +meditating 'medIteItIN Jb% 42A,3A,6A +meditation ,medI'teISn M6% 4 +meditations ,medI'teISnz Mj% 4 +meditative 'medIt@tIv OA% 4 +meditatively 'medIt@tIvlI Pu% 5 +medium 'midI@m K6%,OA% 3 +mediums 'midI@mz Kj% 3 +medlar 'medl@R K6$ 2 +medlars 'medl@z Kj$ 2 +medley 'medlI K6% 2 +medleys 'medlIz Kj% 2 +meed mid K6$ 1 +meeds midz Kj$ 1 +meek mik OC% 1 +meeker 'mik@R Or% 2 +meekest 'mikIst Os% 2 +meekly 'miklI Pu% 2 +meekness 'mikn@s L@% 2 +meerschaum 'mI@S@m M6$ 2 +meerschaums 'mI@S@mz Mj$ 2 +meet mit J5%,K6$,OA$ 12A,2C,6A +meeting 'mitIN Jb%,K6% 22A,2C,6A +meeting-house 'mitIN-haUs K6% 3 +meeting-houses 'mitIN-haUzIz Kj% 4 +meeting-place 'mitIN-pleIs K6% 3 +meeting-places 'mitIN-pleIsIz Kj% 4 +meetings 'mitINz Kj% 2 +meets mits Ja%,Kj% 12A,2C,6A +megacycle 'meg@saIkl K6$ 4 +megacycles 'meg@saIklz Kj$ 4 +megadeath 'meg@deT K6$ 3 +megadeaths 'meg@deTs Kj$ 3 +megalith 'meg@lIT K6$ 3 +megalithic ,meg@'lITIk OA$ 4 +megaliths 'meg@lITs Kj$ 3 +megalomania ,meg@l@'meInI@ L@% 6 +megalomaniac ,meg@l@'meInI&k K6% 6 +megalomaniacs ,meg@l@'meInI&ks Kj% 6 +megaphone 'meg@f@Un K6% 3 +megaphones 'meg@f@Unz Kj% 3 +megaton 'meg@tVn K6% 3 +megatons 'meg@tVnz Kj% 3 +megrim 'migrIm K6$ 2 +megrims 'migrImz Kj$ 2 +meiosis maI'@UsIs L@$ 3 +melancholia ,mel@n'k@UlI@ L@% 5 +melancholic ,mel@N'k0lIk OA% 4 +melancholy 'mel@Nk0lI L@%,OA% 4 +meliorate 'milI@reIt J2$ 42A,6A +meliorated 'milI@reItId Jc$,Jd$ 52A,6A +meliorates 'milI@reIts Ja$ 42A,6A +meliorating 'milI@reItIN Jb$ 52A,6A +melioration ,milI@'reISn M6$ 5 +meliorations ,milI@'reISnz Mj$ 5 +meliorism 'milI@rIz@m L@$ 5 +mellifluous me'lIflU@s OA% 4 +mellow 'mel@U J0%,OC% 22A,6A +mellowed 'mel@Ud Jc%,Jd% 22A,6A +mellower 'mel@U@R Or% 3 +mellowest 'mel@UIst Os% 3 +mellowing 'mel@UIN Jb% 32A,6A +mellowly 'mel@UlI Pu% 3 +mellowness 'mel@Un@s L@% 3 +mellows 'mel@Uz Ja% 22A,6A +melodic mI'l0dIk OA% 3 +melodies 'mel@dIz Mj% 3 +melodious mI'l@UdI@s OA% 4 +melodiously mI'l@UdI@slI Pu% 5 +melodiousness mI'l@UdI@sn@s L@% 5 +melodrama 'mel@drAm@ M6% 4 +melodramas 'mel@drAm@z Mj% 4 +melodramatic ,mel@dr@'m&tIk OA% 5 +melodramatically ,mel@dr@'m&tIklI Pu% 6 +melody 'mel@dI M8% 3 +melon 'mel@n K6% 2 +melons 'mel@nz Kj% 2 +melt melt J0% 12A,2C,6A,15B +melted 'meltId Jc%,Jd% 22A,2C,6A,15B +melting 'meltIN Jb%,OA% 22A,2C,6A,15B +melting-point 'meltIN-poInt K6% 3 +melting-points 'meltIN-poInts Kj% 3 +melting-pot 'meltIN-p0t K6% 3 +melting-pots 'meltIN-p0ts Kj$ 3 +melts melts Ja% 12A,2C,6A,15B +member 'memb@R K6% 2 +members 'memb@z Kj% 2 +membership 'memb@SIp L@% 3 +membrane 'membreIn M6% 2 +membranes 'membreInz Mj% 2 +membranous 'membr@n@s OA$ 3 +memento mI'ment@U K6% 3 +mementoes mI'ment@Uz Kj% 3 +mementos mI'ment@Uz Kj% 3 +memo 'mem@U K6% 2 +memoir 'memwAR K6% 2 +memoirs 'memwAz Kj% 2 +memorable 'mem@r@bl OA% 4 +memorably 'mem@r@blI Pu% 4 +memoranda ,mem@'r&nd@ Kj% 4 +memorandum ,mem@'r&nd@m K6% 4 +memorandums ,mem@'r&nd@mz Kj% 4 +memorial mI'mOrI@l K6% 4 +memorialize mI'mOrI@laIz H2$ 56A +memorialized mI'mOrI@laIzd Hc$,Hd$ 56A +memorializes mI'mOrI@laIzIz Ha$ 66A +memorializing mI'mOrI@laIzIN Hb$ 66A +memorials mI'mOrI@lz Kj% 4 +memories 'mem@rIz Mj% 3 +memorize 'mem@raIz H2% 36A +memorized 'mem@raIzd Hc%,Hd% 36A +memorizes 'mem@raIzIz Ha% 46A +memorizing 'mem@raIzIN Hb% 46A +memory 'mem@rI M8% 3 +memos 'mem@Uz Kj% 2 +memsahib 'memsAb K6$ 2 +memsahibs 'memsAbz Kj$ 2 +men men Kj* 1 +men-at-arms ,men-@t-'Amz Kj% 3 +men-of-war ,men-@v-'wOR Kj% 3 +menace 'men@s H2%,M6% 26A +menaced 'men@st Hc%,Hd% 26A +menaces 'men@sIz Ha%,Mj% 36A +menacing 'men@sIN Hb% 36A +menacingly 'men@sINlI Pu% 4 +menagerie mI'n&dZ@rI K6% 4 +menageries mI'n&dZ@rIz Kj% 4 +mend mend J0%,K6% 12A,6A +mendacious men'deIS@s OA% 3 +mendaciously men'deIS@slI Pu% 4 +mendacities men'd&sItIz Mj$ 4 +mendacity men'd&sItI M8% 4 +mended 'mendId Jc%,Jd% 22A,6A +mender 'mend@R K6% 2 +menders 'mend@z Kj% 2 +mendicant 'mendIk@nt K6$,OA$ 3 +mendicants 'mendIk@nts Kj$ 3 +mending 'mendIN Jb%,L@% 22A,6A +mends mendz Ja%,Kj% 12A,6A +menfolk 'menf@Uk Kj% 2 +menial 'minI@l K6$,OA% 3 +menially 'minI@lI Pu% 4 +menials 'minI@lz Kj$ 3 +meningitis ,menIn'dZaItIs L@% 4 +menopause 'men@pOz K6% 3 +menopauses 'men@pOzIz Kj$ 4 +menses 'mensiz Kj$ 2 +menstrual 'menstrU@l OA% 3 +menstruate 'menstrUeIt I2% 32A +menstruated 'menstrUeItId Ic%,Id% 42A +menstruates 'menstrUeIts Ia% 32A +menstruating 'menstrUeItIN Ib% 42A +menstruation ,menstrU'eISn L@% 4 +mensurable 'mensjUr@bl OA$ 4 +mensuration ,mensjU'reISn M6$ 4 +mensurations ,mensjU'reISnz Mj$ 4 +mental 'mentl OA% 2 +mentalities men't&lItIz Mj$ 4 +mentality men't&lItI M8% 4 +mentally 'ment@lI Pu% 3 +menthol 'menT0l L@% 2 +mentholated 'menT@leItId OA% 4 +mention 'menSn H0%,M6% 26A,6C,9,13A +mentioned 'menSnd Hc%,Hd%,Ot% 26A,6C,9,13A +mentioning 'menSnIN Hb% 36A,6C,9,13A +mentions 'menSnz Ha%,Mj% 26A,6C,9,13A +mentor 'mentOR K6% 2 +mentors 'mentOz Kj% 2 +menu 'menju K6% 2 +menus 'menjuz Kj% 2 +mercantile 'm3k@ntaIl OA% 3 +mercenaries 'm3sIn@rIz Kj% 4 +mercenary 'm3sIn@rI K8%,OA% 4 +mercer 'm3s@R K6$ 2 +mercerize 'm3s@raIz H2$ 36A +mercerized 'm3s@raIzd Hc$,Hd$ 36A +mercerizes 'm3s@raIzIz Ha$ 46A +mercerizing 'm3s@raIzIN Hb$ 46A +mercers 'm3s@z Kj$ 2 +merchandise 'm3tS@ndaIz L@% 3 +merchant 'm3tS@nt K6% 2 +merchantman 'm3tS@ntm@n Ki% 3 +merchantmen 'm3tS@ntm@n Kj% 3 +merchants 'm3tS@nts Kj% 2 +mercies 'm3sIz Mj% 2 +merciful 'm3sIf@l OA% 3 +mercifully 'm3sIf@lI Pu% 4 +merciless 'm3sIlIs OA% 3 +mercilessly 'm3sIlIslI Pu% 4 +mercurial m3'kjU@rI@l OA% 4 +mercury 'm3kjUrI L@% 3 +mercy 'm3sI M8% 2 +mere mI@R K6$,OA% 1 +merely 'mI@lI Pu% 2 +meres mI@z Kj$ 1 +meretricious ,merI'trIS@s OA% 4 +meretriciously ,merI'trIS@slI Pu$ 5 +meretriciousness ,merI'trIS@sn@s L@$ 5 +merge m3dZ J2% 12A,3A,6A,14 +merged m3dZd Jc%,Jd% 12A,3A,6A,14 +merger 'm3dZ@R M6% 2 +mergers 'm3dZ@z Mj% 2 +merges 'm3dZIz Ja% 22A,3A,6A,14 +merging 'm3dZIN Jb% 22A,3A,6A,14 +meridian m@'rIdI@n K6% 4 +meridians m@'rIdI@nz Kj% 4 +meridional m@'rIdI@nl OA$ 5 +meringue m@'r&N M6% 2 +meringues m@'r&Nz Mj% 2 +merino m@'rin@U L@$ 3 +merino-sheep m@,rin@U-'Sip K9$ 4 +merit 'merIt H0%,M6% 26A +merited 'merItId Hc%,Hd% 36A +meriting 'merItIN Hb% 36A +meritocracies ,merI't0kr@sIz Kj% 5 +meritocracy ,merI't0kr@sI K8% 5 +meritocratic ,merIt@'kr&tIk OA% 5 +meritorious ,merI'tOrI@s OA% 5 +meritoriously ,merI'tOrI@slI Pu% 6 +merits 'merIts Ha%,Mj% 26A +mermaid 'm3meId K6% 2 +mermaids 'm3meIdz Kj% 2 +merman 'm3m@n Ki$ 2 +mermen 'm3m@n Kj$ 2 +merrier 'merI@R Or% 3 +merriest 'merIIst Os% 3 +merrily 'mer@lI Pu% 3 +merriment 'merIm@nt L@% 3 +merry 'merI OD% 2 +merry-go-round 'merI-g@-raUnd K6% 4 +merry-go-rounds 'merI-g@-raUndz Kj% 4 +merrymaker 'merImeIk@R K6% 4 +merrymakers 'merImeIk@z Kj% 4 +merrymaking 'merImeIkIN L@% 4 +mescal 'meskl M6$ 2 +mescaline 'mesk@lIn L@$ 3 +mescals 'mesklz Mj$ 2 +meseems mI'simz Pu$ 2 +mesh meS J1%,K7% 12A,3A,6A +meshed meSt Jc%,Jd% 12A,3A,6A +meshes 'meSIz Ja%,Kj% 22A,3A,6A +meshing 'meSIN Jb% 22A,3A,6A +mesmeric mez'merIk OA$ 3 +mesmerism 'mezm@rIz@m L@$ 4 +mesmerist 'mezm@rIst K6$ 3 +mesmerists 'mezm@rIsts Kj$ 3 +mesmerize 'mezm@raIz H2% 36A +mesmerized 'mezm@raIzd Hc%,Hd% 36A +mesmerizes 'mezm@raIzIz Ha% 46A +mesmerizing 'mezm@raIzIN Hb% 46A +meson 'mis@n K6$ 2 +mesons 'mis@nz Kj$ 2 +mess mes J1%,M7% 12C,6A,15B +mess-jacket 'mes-dZ&kIt K6$ 3 +mess-jackets 'mes-dZ&kIts Kj$ 3 +mess-up 'mes-Vp K6% 2 +mess-ups 'mes-Vps Kj$ 2 +message 'mesIdZ K6% 2 +messages 'mesIdZIz Kj% 3 +messed mest Jc%,Jd% 12C,6A,15B +messenger 'mesIndZ@R K6% 3 +messengers 'mesIndZ@z Kj% 3 +messes 'mesIz Ja%,Mj% 22C,6A,15B +messianic ,mesI'&nIk OA% 4 +messier 'mesI@R Or% 3 +messiest 'mesIIst Os% 3 +messily 'mesIlI Pu% 3 +messiness 'mesInIs L@% 3 +messing 'mesIN Jb% 22C,6A,15B +messmate 'mesmeIt K6% 2 +messmates 'mesmeIts Kj% 2 +messuage 'meswIdZ K6$ 2 +messuages 'meswIdZIz Kj$ 3 +messy 'mesI OD% 2 +met met Jc%,Jd% 12A,2C,6A +metabolic ,met@'b0lIk OA% 4 +metabolism mI't&b@lIz@m L@% 5 +metacarpal ,met@'kApl K6$,OA$ 4 +metacarpals ,met@'kAplz Kj$ 4 +metal 'metl H4%,M6% 26A +metalled 'metld Hc%,Hd% 26A +metallic mI't&lIk OA% 3 +metalling 'met@lIN Hb$ 36A +metallurgical ,met@'l3dZIkl OA% 5 +metallurgist mI't&l@dZIst K6% 4 +metallurgists mI't&l@dZIsts Kj% 4 +metallurgy mI't&l@dZI L@% 4 +metals 'metlz Ha$,Mj% 26A +metalwork 'metlw3k K6% 3 +metalworker 'metlw3k@R K6% 4 +metalworkers 'metlw3k@z Kj% 4 +metalworks 'metlw3ks Kj% 3 +metamorphose ,met@'mOf@Uz J2$ 43A,6A,14 +metamorphosed ,met@'mOf@Uzd Jc$,Jd$ 43A,6A,14 +metamorphoses ,met@'mOf@UzIz Ja$ 53A,6A,14 +metamorphoses ,met@'mOf@siz Kj% 5 +metamorphosing ,met@'mOf@UzIN Jb$ 53A,6A,14 +metamorphosis ,met@'mOf@sIs Ki% 5 +metaphor 'met@f@R M6% 3 +metaphorical ,met@'f0rIkl OA% 5 +metaphorically ,met@'f0rIklI Pu% 5 +metaphors 'met@f@z Mj% 3 +metaphysical ,met@'fIzIkl OA% 5 +metaphysically ,met@'fIzIklI Pu% 5 +metaphysics ,met@'fIzIks Lk% 4 +metatarsal ,met@'tAsl K6$,OA$ 4 +metatarsals ,met@'tAslz Kj$ 4 +mete mit H2% 115B +meted 'mitId Hc%,Hd% 215B +meteor 'mitI@R K6% 3 +meteoric ,mitI'0rIk OA% 4 +meteorite 'mitI@raIt K6% 4 +meteorites 'mitI@raIts Kj% 4 +meteorological ,mitj@r@'l0dZIkl OA% 6 +meteorologist ,mitI@'r0l@dZIst K6% 6 +meteorologists ,mitI@'r0l@dZIsts Kj% 6 +meteorology ,mitI@'r0l@dZI L@% 6 +meteors 'mitI@z Kj% 3 +meter 'mit@R K6% 2 +meters 'mit@z Kj% 2 +metes mits Ha$ 115B +methane 'miTeIn L@% 2 +methinks mI'TINks Pu$ 2 +method 'meT@d M6% 2 +methodical mI'T0dIkl OA% 4 +methodically mI'T0dIklI Pu% 4 +methodological ,meT@d@'l0dZIkl OA% 6 +methodologically ,meT@d@'l0dZIklI Pu% 6 +methodologies ,meT@'d0l@dZIz Mj% 5 +methodology ,meT@'d0l@dZI M8% 5 +methods 'meT@dz Mj% 2 +methought mI'TOt Pu$ 2 +meths meTs Kj% 1 +methyl 'meTIl M6$ 2 +methylated 'meTIleItId OA% 4 +methyls 'meTIlz Mj$ 2 +meticulous mI'tIkjUl@s OA% 4 +meticulously mI'tIkjUl@slI Pu% 5 +meticulousness mI'tIkjUl@snIs L@% 5 +meting 'mitIN Hb$ 215B +metre 'mit@R M6% 2 +metres 'mit@z Mj% 2 +metric 'metrIk OA% 2 +metrical 'metrIkl OA% 3 +metrically 'metrIklI Pu% 3 +metrication ,metrI'keISn M6% 4 +metrications ,metrI'keISnz Mj$ 4 +metricize 'metrIsaIz H2$ 3 +metricized 'metrIsaIzd Hc$,Hd$ 3 +metricizes 'metrIsaIzIz Ha$ 4 +metricizing 'metrIsaIzIN Hb$ 4 +metronome 'metr@n@Um K6% 3 +metronomes 'metr@n@Umz Kj% 3 +metropolis m@'tr0p@lIs K7% 4 +metropolises m@'tr0p@lIsIz Kj$ 5 +metropolitan ,metr@'p0lIt@n K6%,OA% 5 +metropolitans ,metr@'p0lIt@nz Kj$ 5 +mettle 'metl L@% 2 +mettlesome 'metls@m OA$ 3 +mew mju I0%,K6% 12A +mewed mjud Ic%,Id% 12A +mewing 'mjuIN Ib% 22A +mews mjuz Ia%,K9% 12A +mezzanine 'mez@nin K6%,OA% 3 +mezzanines 'mez@ninz Kj$ 3 +mezzo 'mets@U Pu$ 2 +mezzo-soprano ,mets@U-s@'prAn@U K6% 5 +mezzo-sopranos ,mets@U-s@'prAn@Uz Kj% 5 +mezzotint 'mets@UtInt M6$ 3 +mezzotints 'mets@UtInts Mj$ 3 +mg 'mIlIgr&mz Y]% 3 +mi mi Ki$ 1 +miaou mi'aU I0$,K6$ 2 +miaoued mi'aUd Ic$,Id$ 2 +miaouing mi'aUIN Ib$ 3 +miaous mi'aUz Ia$,Kj$ 2 +miaow mi'aU I0%,K6% 22A +miaowed mi'aUd Ic%,Id% 22A +miaowing mi'aUIN Ib% 32A +miaows mi'aUz Ia%,Kj% 22A +miasma mI'&zm@ K6$ 3 +miasmas mI'&zm@z Kj$ 3 +mica 'maIk@ L@$ 2 +mice maIs Kj% 1 +mickey 'mIkI Ki% 2 +mickle 'mIkl Ki$ 2 +micro-organism ,maIkr@U-'Og@nIz@m K6% 6 +micro-organisms ,maIkr@U-'Og@nIz@mz Kj% 6 +microbe 'maIkr@Ub K6% 2 +microbes 'maIkr@Ubz Kj% 2 +microbiology ,maIkr@UbaI'0l@dZI L@% 6 +microcosm 'maIkr@Uk0z@m K6% 4 +microcosms 'maIkr@Uk0z@mz Kj% 4 +microdot 'maIkr@Ud0t K6$ 3 +microdots 'maIkr@Ud0ts Kj$ 3 +microelectronics ,maIkr@U,ilek'tr0nIks Lk% 6 +microfiche 'maIkr@UfiS M6% 3 +microfiches 'maIkr@UfiSIz Mj$ 4 +microfilm 'maIkr@UfIlm H0$,M6% 36A +microfilmed 'maIkr@UfIlmd Hc$,Hd$ 36A +microfilming 'maIkr@UfIlmIN Hb$ 46A +microfilms 'maIkr@UfIlmz Ha$,Mj$ 36A +micrometer maI'kr0mIt@R K6$ 4 +micrometers maI'kr0mIt@z Kj$ 4 +micron 'maIkr0n K6$ 2 +microns 'maIkr0nz Kj$ 2 +microphone 'maIkr@f@Un K6% 3 +microphones 'maIkr@f@Unz Kj% 3 +microscope 'maIkr@sk@Up K6% 3 +microscopes 'maIkr@sk@Ups Kj% 3 +microscopic ,maIkr@'sk0pIk OA% 4 +microscopical ,maIkr@'sk0pIkl OA$ 5 +microscopically ,maIkr@'sk0pIklI Pu% 5 +microscopy maI'kr0sk@pI L@% 4 +microwave 'maIkr@UweIv K6% 3 +microwaves 'maIkr@UweIvz Kj% 3 +mid mId OA%,T-% 1 +mid-off mId-'0f Ki% 2 +mid-on mId-'0n Ki% 2 +midday ,mId'deI L@% 2 +midden 'mIdn K6$ 2 +middens 'mIdnz Kj$ 2 +middies 'mIdIz Kj$ 2 +middle 'mIdl K6% 2 +middle-aged ,mIdl-'eIdZd OA% 3 +middle-class ,mIdl-'klAs OA% 3 +middle-distance ,mIdl-'dIst@ns OA% 4 +middle-of-the-road ,mIdl-@v-D@-'r@Ud OA% 5 +middleman 'mIdlm&n Ki% 3 +middlemen 'mIdlmen Kj% 3 +middles 'mIdlz Kj% 2 +middleweight 'mIdlweIt K6%,OA% 3 +middleweights 'mIdlweIts Kj% 3 +middling 'mIdlIN K6$,OA%,Pu% 2 +middlings 'mIdlINz Kj$ 2 +middy 'mIdI K8$ 2 +midfield 'mIdfild Ki% 2 +midge mIdZ K6% 1 +midges 'mIdZIz Kj% 2 +midget 'mIdZIt K6% 2 +midgets 'mIdZIts Kj% 2 +midinette ,mIdI'net K6$ 3 +midinettes ,mIdI'nets Kj$ 3 +midland 'mIdl@nd K6% 2 +midlands 'mIdl@ndz Kj% 2 +midmost 'mIdm@Ust OA$,Pu$ 2 +midnight 'mIdnaIt L@% 2 +midriff 'mIdrIf K6% 2 +midriffs 'mIdrIfs Kj$ 2 +midshipman 'mIdSIpm@n Ki% 3 +midshipmen 'mIdSIpm@n Kj% 3 +midships 'mIdSIps Pu$ 2 +midst mIdst Ki%,T-% 1 +midstream ,mId'strim L@% 2 +midsummer ,mId'sVm@R L@% 3 +midway ,mId'weI OA%,Pu% 2 +midweek mId'wik Oq%,Pu% 2 +midwife 'mIdwaIf Ki% 2 +midwifery 'mIdwIfrI L@% 3 +midwives 'mIdwaIvz Kj% 2 +mien min K6$ 1 +miens minz Kj$ 1 +might maIt Gc*,L@% 15 +might-have-been 'maIt-@v-bin K6$ 3 +might-have-beens 'maIt-@v-binz Kj$ 3 +mightier 'maItI@R Or% 3 +mightiest 'maItIIst Os% 3 +mightily 'maItIlI Pu% 3 +mightn't 'maItnt Gg% 2 +mighty 'maItI OD%,Pu% 2 +mignonette ,mInj@'net L@$ 3 +migraine 'migreIn K6% 2 +migraines 'migreInz Kj$ 2 +migrant 'maIgr@nt K6% 2 +migrants 'maIgr@nts Kj% 2 +migrate maI'greIt I2% 22A,3A +migrated maI'greItId Ic%,Id% 32A,3A +migrates maI'greIts Ia% 22A,3A +migrating maI'greItIN Ib% 32A,3A +migration maI'greISn M6% 3 +migrations maI'greISnz Mj% 3 +migratory 'maIgr@trI OA% 3 +mikado mI'kAd@U K6$ 3 +mikados mI'kAd@Uz Kj$ 3 +mike maIk K6% 1 +mikes maIks Kj% 1 +miladies mI'leIdIz Kj$ 3 +milady mI'leIdI K8$ 3 +milage 'maIlIdZ K6% 2 +milages 'maIlIdZIz Kj% 3 +milch mIltS OA$ 1 +mild maIld OC% 1 +milder 'maIld@R Or% 2 +mildest 'maIldIst Os% 2 +mildew 'mIldju J0$,L@% 22A,6A +mildewed 'mIldjud Jc$,Jd$ 22A,6A +mildewing 'mIldjuIN Jb$ 32A,6A +mildews 'mIldjuz Ja$ 22A,6A +mildly 'maIldlI Pu% 2 +mildness 'maIldn@s L@% 2 +mile maIl K6% 1 +mileage 'maIlIdZ K6% 2 +mileages 'maIlIdZIz Kj% 3 +mileometer maI'l0mIt@R K6% 4 +mileometers maI'l0mIt@z Kj% 4 +miler 'maIl@R K6% 2 +milers 'maIl@z Kj% 2 +miles maIlz Kj% 1 +milestone 'maIlst@Un K6% 2 +milestones 'maIlst@Unz Kj% 2 +milieu 'milj3 K6% 2 +milieus 'milj3z Kj$ 2 +militancy 'mIlIt@nsI L@% 4 +militant 'mIlIt@nt K6%,OA% 3 +militants 'mIlIt@nts Kj% 3 +militarily 'mIlItrIlI Pu% 4 +militarism 'mIlIt@rIz@m L@% 5 +militarist 'mIlIt@rIst K6% 4 +militaristic ,mIlIt@'rIstIk OA% 5 +militarists 'mIlIt@rIsts Kj$ 4 +military 'mIlItrI L@%,OA% 3 +militate 'mIlIteIt I2% 33A +militated 'mIlIteItId Ic%,Id% 43A +militates 'mIlIteIts Ia% 33A +militating 'mIlIteItIN Ib% 43A +militia mI'lIS@ K6% 3 +militiaman mI'lIS@m@n Ki% 4 +militiamen mI'lIS@m@n Kj% 4 +militias mI'lIS@z Kj% 3 +milk mIlk J0%,L@% 12A,6A +milk-churn 'mIlk-tS3n K6% 2 +milk-churns 'mIlk-tS3nz Kj% 2 +milk-powder 'mIlk-paUd@R M6% 3 +milk-powders 'mIlk-paUd@z Mj% 3 +milk-shake 'mIlk-SeIk K6% 2 +milk-shakes 'mIlk-SeIks Kj% 2 +milk-teeth 'mIlk-tiT Kj% 2 +milk-tooth 'mIlk-tuT Ki$ 2 +milk-white 'mIlk-waIt OA% 2 +milkbar 'mIlkbAR K6% 2 +milkbars 'mIlkbAz Kj% 2 +milked mIlkt Jc%,Jd% 12A,6A +milkier 'mIlkI@R Or% 3 +milkiest 'mIlkIIst Os% 3 +milking 'mIlkIN Jb% 22A,6A +milking-machine 'mIlkIN-m@Sin K6% 4 +milking-machines 'mIlkIN-m@Sinz Kj% 4 +milkmaid 'mIlkmeId K6% 2 +milkmaids 'mIlkmeIdz Kj% 2 +milkman 'mIlkm@n Ki% 2 +milkmen 'mIlkm@n Kj% 2 +milks mIlks Ja% 12A,6A +milkshake 'mIlkSeIk K6% 2 +milkshakes 'mIlkSeIks Kj% 2 +milksop 'mIlks0p K6% 2 +milksops 'mIlks0ps Kj% 2 +milkweed 'mIlkwid M6$ 2 +milkweeds 'mIlkwidz Mj$ 2 +milky 'mIlkI OD% 2 +mill mIl J0%,K6% 12C,6A +mill-dam 'mIl-d&m K6$ 2 +mill-dams 'mIl-d&mz Kj$ 2 +mill-girl 'mIl-g3l K6% 2 +mill-girls 'mIl-g3lz Kj% 2 +mill-hand 'mIl-h&nd K6% 2 +mill-hands 'mIl-h&ndz Kj% 2 +millboard 'mIlbOd L@$ 2 +milled mIld Jc%,Jd% 12C,6A +millenarian ,mIlI'ne@rI@n K6$ 5 +millenarians ,mIlI'ne@rI@nz Kj$ 5 +millennia mI'lenI@ Kj% 4 +millennial mI'lenI@l OA% 4 +millennium mI'lenI@m Ki% 4 +millepede 'mIlIpid K6% 3 +millepedes 'mIlIpidz Kj% 3 +miller 'mIl@R K6% 2 +millers 'mIl@z Kj% 2 +millet 'mIlIt L@% 2 +milli- 'mIlI- U-% 2 +milliard 'mIlIAd K6$ 3 +milliards 'mIlIAdz Kj$ 3 +millibar 'mIlIbAR K6% 3 +millibars 'mIlIbAz Kj% 3 +milligram 'mIlIgr&m K6% 3 +milligrams 'mIlIgr&mz Kj% 3 +millimetre 'mIlImit@R K6% 4 +millimetres 'mIlImit@z Kj% 4 +milliner 'mIlIn@R K6% 3 +milliners 'mIlIn@z Kj% 3 +millinery 'mIlIn@rI L@% 4 +milling 'mIlIN Jb% 22C,6A +million 'mIlI@n K6%,OA% 3 +millionaire ,mIlI@'ne@R K6% 4 +millionaires ,mIlI@'ne@z Kj% 4 +millionairess ,mIlI@'ne@rIs K6% 5 +millionairesses ,mIlI@'ne@rIsIz Kj$ 6 +millionfold 'mIlI@nf@Uld Pu% 4 +millions 'mIlI@nz Kj% 3 +millionth 'mIlI@nT K6%,OA% 3 +millionths 'mIlI@nTs Kj% 3 +millipede 'mIlIpid K6% 3 +millipedes 'mIlIpidz Kj% 3 +millpond 'mIlp0nd K6% 2 +millponds 'mIlp0ndz Kj$ 2 +millrace 'mIlreIs K6% 2 +millraces 'mIlreIsIz Kj$ 3 +mills mIlz Ja%,Kj% 12C,6A +millstone 'mIlst@Un K6% 2 +millstones 'mIlst@Unz Kj% 2 +millwheel 'mIlwil K6% 2 +millwheels 'mIlwilz Kj% 2 +millwright 'mIlraIt K6$ 2 +millwrights 'mIlraIts Kj$ 2 +milometer maI'l0mIt@R K6% 4 +milometers maI'l0mIt@z Kj% 4 +milord mI'lOd K6$ 2 +milords mI'lOdz Kj$ 2 +milt mIlt L@$ 1 +mime maIm J2%,M6% 12A,6A +mimed maImd Jc%,Jd% 12A,6A +mimeograph 'mImI@grAf H0%,K6% 46A +mimeographed 'mImI@grAft Hc%,Hd% 46A +mimeographing 'mImI@grAfIN Hb$ 56A +mimeographs 'mImI@grAfs Ha$,Kj% 46A +mimes maImz Ja%,Mj% 12A,6A +mimetic mI'metIk OA$ 3 +mimic 'mImIk H5%,K6%,Oq% 26A +mimicked 'mImIkt Hc%,Hd% 26A +mimicking 'mImIkIN Hb% 36A +mimicry 'mImIkrI L@% 3 +mimics 'mImIks Ha%,Kj% 26A +miming 'maImIN Jb% 22A,6A +mimosa mI'm@Uz@ M6% 3 +mimosas mI'm@Uz@z Mj$ 3 +min min Y>% 1 +minaret ,mIn@'ret K6% 3 +minarets ,mIn@'rets Kj% 3 +minatory 'mIn@t@rI OA$ 4 +mince mIns J2%,L@% 12A,6A +mince-pie mIns-'paI K6% 2 +mince-pies mIns-'paIz Kj% 2 +minced mInst Jc%,Jd% 12A,6A +mincemeat 'mInsmit L@% 2 +mincer 'mIns@R K6% 2 +mincers 'mIns@z Kj% 2 +minces 'mInsIz Ja% 22A,6A +mincing 'mInsIN Jb%,OA% 22A,6A +mincingly 'mInsINlI Pu% 3 +mind maInd J0*,M6* 12A,6A,6C,9,19C +mind-bending 'maInd-bendIN OA% 3 +mind-blowing 'maInd-bl@UIN OA% 3 +mind-boggling 'maInd-b0glIN OA% 3 +mind-reader 'maInd-rid@R K6% 3 +mind-readers 'maInd-rid@z Kj% 3 +minded 'maIndId Jc%,Jd%,Op%,Ot% 22A,6A,6C,9,19C +minder 'maInd@R K6% 2 +minders 'maInd@z Kj% 2 +mindful 'maIndf@l OA% 2 +mindfully 'maIndf@lI Pu% 3 +mindfulness 'maIndfln@s L@% 3 +minding 'maIndIN Jb% 22A,6A,6C,9,19C +mindless 'maIndlIs OA% 2 +mindlessly 'maIndlIslI Pu% 3 +mindlessness 'maIndlIsn@s L@% 3 +minds maIndz Ja%,Mj% 12A,6A,6C,9,19C +mine maIn J2%,K6%,OA%,Qx% 12A,3A,6A +mine-detector 'maIn-dItekt@R K6% 4 +mine-detectors 'maIn-dItekt@z Kj% 4 +mine-disposal 'maIn-dIsp@Uzl M6% 4 +mine-disposals 'maIn-dIsp@Uzlz Mj$ 4 +mined maInd Jc%,Jd% 12A,3A,6A +minefield 'maInfild K6% 2 +minefields 'maInfildz Kj% 2 +minelayer 'maInleI@R K6% 3 +minelayers 'maInleI@z Kj% 3 +minelaying 'maInleIIN L@% 3 +miner 'maIn@R K6% 2 +mineral 'mIn@r@l K6%,OA% 3 +mineralogist ,mIn@'r&l@dZIst K6% 5 +mineralogists ,mIn@'r&l@dZIsts Kj% 5 +mineralogy ,mIn@'r&l@dZI L@% 5 +minerals 'mIn@r@lz Kj% 3 +miners 'maIn@z Kj% 2 +mines maInz Ja%,Kj% 12A,3A,6A +minestrone ,mInI'str@UnI L@% 4 +minesweeper 'maInswip@R K6% 3 +minesweepers 'maInswip@z Kj% 3 +minesweeping 'maInswipIN L@% 3 +mineworker 'maInw3k@R K6% 3 +mineworkers 'maInw3k@z Kj% 3 +mingier 'mIndZI@R Or$ 3 +mingiest 'mIndZIIst Os$ 3 +mingle 'mINgl J2% 22A,2C,6A,14 +mingled 'mINgld Jc%,Jd% 22A,2C,6A,14 +mingles 'mINglz Ja% 22A,2C,6A,14 +mingling 'mINglIN Jb% 22A,2C,6A,14 +mingy 'mIndZI OD% 2 +mini- 'mInI- U-% 2 +miniature 'mInItS@R M6% 3 +miniatures 'mInItS@z Mj% 3 +miniaturist 'mInItS@rIst K6% 4 +miniaturists 'mInItS@rIsts Kj% 4 +miniaturization ,mInItS@raI'zeISn L@% 6 +miniaturize 'mInItS@raIz H2% 46A +miniaturized 'mInItS@raIzd Hc%,Hd% 46A +miniaturizes 'mInItS@raIzIz Ha% 56A +miniaturizing 'mInItS@raIzIN Hb% 56A +minim 'mInIm K6% 2 +minima 'mInIm@ Kj$ 3 +minimal 'mInIml OA% 3 +minimally 'mInIm@lI Pu% 4 +minimize 'mInImaIz H2% 36A +minimized 'mInImaIzd Hc%,Hd% 36A +minimizes 'mInImaIzIz Ha% 46A +minimizing 'mInImaIzIN Hb% 46A +minims 'mInImz Kj% 2 +minimum 'mInIm@m K6%,OA% 3 +minimums 'mInIm@mz Kj$ 3 +mining 'maInIN Jb%,L@% 22A,3A,6A +minion 'mInI@n K6$ 2 +minions 'mInI@nz Kj% 2 +minister 'mInIst@R I0%,K6% 33A +ministered 'mInIst@d Ic%,Id% 33A +ministerial ,mInI'stI@rI@l OA% 5 +ministerially ,mInI'stI@rI@lI Pu% 6 +ministering 'mInIst@rIN Ib% 43A +ministers 'mInIst@z Ia%,Kj% 33A +ministrant 'mInIstr@nt K6$,Oq$ 3 +ministrants 'mInIstr@nts Kj$ 3 +ministration ,mInI'streISn M6$ 4 +ministrations ,mInI'streISnz Mj% 4 +ministries 'mInIstrIz Kj% 3 +ministry 'mInIstrI K8% 3 +miniver 'mInIv@R L@$ 3 +mink mINk M6% 1 +minks mINks Mj% 1 +minnow 'mIn@U K6% 2 +minnows 'mIn@Uz Kj% 2 +minor 'maIn@R K6%,OA% 2 +minorities maI'n0rItIz Mj% 4 +minority maI'n0rItI M8% 4 +minors 'maIn@z Kj% 2 +minster 'mInst@R K6% 2 +minsters 'mInst@z Kj$ 2 +minstrel 'mInstr@l K6% 2 +minstrels 'mInstr@lz Kj% 2 +minstrelsy 'mInstr@lsI L@$ 3 +mint mInt H0%,M6% 16A +minted 'mIntId Hc%,Hd% 26A +minting 'mIntIN Hb% 26A +mints mInts Ha%,Mj% 16A +minuet ,mInjU'et K6% 3 +minuets ,mInjU'ets Kj% 3 +minus 'maIn@s K7%,OA%,T-% 2 +minuscule 'mIn@skjul OA% 3 +minuses 'maIn@sIz Kj$ 3 +minute 'mInIt H2%,K6% 26A +minute maI'njut OB% 2 +minute-book 'mInIt-bUk K6% 3 +minute-books 'mInIt-bUks Kj% 3 +minute-gun 'mInIt-gVn K6$ 3 +minute-guns 'mInIt-gVnz Kj$ 3 +minute-hand 'mInIt-h&nd K6% 3 +minute-hands 'mInIt-h&ndz Kj$ 3 +minuted 'mInItId Hc%,Hd% 36A +minutely maI'njutlI Pu% 3 +minuteman 'mInItm&n Ki$ 3 +minutemen 'mInItmen Kj$ 3 +minuteness maI'njutn@s L@% 3 +minuter maI'njut@R Or$ 3 +minutes 'mInIts Ha$,Kj% 26A +minutest maI'njutIst Os% 3 +minutiae maI'njuSIi Kj% 4 +minuting 'mInItIN Hb% 36A +minx mINks K7% 1 +minxes 'mINksIz Kj% 2 +miracle 'mIr@kl K6% 3 +miracles 'mIr@klz Kj% 3 +miraculous mI'r&kjUl@s OA% 4 +miraculously mI'r&kjUl@slI Pu% 5 +mirage 'mIrAZ K6% 2 +mirages 'mIrAZIz Kj% 3 +mire 'maI@R J2$,L@% 12A,6A +mired 'maI@d Jc$,Jd$ 12A,6A +mires 'maI@z Ja$ 12A,6A +mirier 'maI@rI@R Or$ 3 +miriest 'maI@rIIst Os$ 3 +miring 'maI@rIN Jb$ 22A,6A +mirror 'mIr@R H0%,K6% 26A +mirrored 'mIr@d Hc%,Hd% 26A +mirroring 'mIr@rIN Hb% 36A +mirrors 'mIr@z Ha%,Kj% 26A +mirth m3T L@% 1 +mirthful 'm3Tf@l OA% 2 +mirthfully 'm3Tf@lI Pu% 3 +mirthless 'm3Tl@s OA% 2 +miry 'maI@rI OD$ 2 +misadventure ,mIs@d'ventS@R M6% 4 +misadventures ,mIs@d'ventS@z Mj$ 4 +misadvise ,mIs@d'vaIz H2$ 36A +misadvised ,mIs@d'vaIzd Hc$,Hd$ 36A +misadvises ,mIs@d'vaIzIz Ha$ 46A +misadvising ,mIs@d'vaIzIN Hb$ 46A +misalliance ,mIs@'laI@ns K6$ 4 +misalliances ,mIs@'laI@nsIz Kj$ 5 +misanthrope 'mIsnTr@Up K6% 3 +misanthropes 'mIsnTr@Ups Kj$ 3 +misanthropic ,mIsn'Tr0pIk OA% 4 +misanthropy mIs'&nTr@pI L@% 4 +misapplication ,mIs,&plI'keISn K6% 5 +misapplications ,mIs,&plI'keISnz Kj$ 5 +misapplied ,mIs@'plaId Hc%,Hd% 36A +misapplies ,mIs@'plaIz Ha% 36A +misapply ,mIs@'plaI H3% 36A +misapplying ,mIs@'plaIIN Hb% 46A +misapprehend ,mIs&prI'hend H0% 46A +misapprehended ,mIs&prI'hendId Hc%,Hd% 56A +misapprehending ,mIs&prI'hendIN Hb% 56A +misapprehends ,mIs&prI'hendz Ha% 46A +misapprehension ,mIs&prI'henSn M6% 5 +misapprehensions ,mIs&prI'henSnz Mj% 5 +misappropriate ,mIs@'pr@UprIeIt H2% 56A +misappropriated ,mIs@'pr@UprIeItId Hc%,Hd% 66A +misappropriates ,mIs@'pr@UprIeIts Ha% 56A +misappropriating ,mIs@'pr@UprIeItIN Hb% 66A +misappropriation ,mIs@,pr@UprI'eISn M6% 6 +misappropriations ,mIs@,pr@UprI'eISnz Mj% 6 +misbegotten ,mIsbI'g0tn OA% 4 +misbehave ,mIsbI'heIv J2% 32A,6B +misbehaved ,mIsbI'heIvd Jc%,Jd% 32A,6B +misbehaves ,mIsbI'heIvz Ja% 32A,6B +misbehaving ,mIsbI'heIvIN Jb% 42A,6B +misbehaviour ,mIsbI'heIvI@R L@% 4 +misc mIsk Y~% 1 +miscalculate ,mIs'k&lkjUleIt J2% 4 +miscalculated ,mIs'k&lkjUleItId Jc%,Jd% 5 +miscalculates ,mIs'k&lkjUleIts Ja% 4 +miscalculating ,mIs'k&lkjUleItIN Jb% 5 +miscalculation ,mIs,k&lkjU'leISn M6% 5 +miscalculations ,mIs,k&lkjU'leISnz Mj% 5 +miscall ,mIs'kOl H0$ 2 +miscalled ,mIs'kOld Hc$,Hd$ 2 +miscalling ,mIs'kOlIN Hb$ 3 +miscalls ,mIs'kOlz Ha$ 2 +miscarriage ,mIs'k&rIdZ M6% 3 +miscarriages ,mIs'k&rIdZIz Mj% 4 +miscarried ,mIs'k&rId Hc%,Hd% 32A +miscarries ,mIs'k&rIz Ha% 32A +miscarry ,mIs'k&rI H3% 32A +miscarrying ,mIs'k&rIIN Hb% 42A +miscast ,mIs'kAst H5$,Hc%,Hd% 26A +miscasting ,mIs'kAstIN Hb% 36A +miscasts ,mIs'kAsts Ha$ 26A +miscegenation ,mIsIdZI'neISn L@$ 5 +miscellanea ,mIs@'leInI@ Kj% 5 +miscellaneous ,mIs@'leInI@s OA% 5 +miscellanies mI'sel@nIz Kj$ 4 +miscellany mI'sel@nI K8% 4 +mischance ,mIs'tSAns M6% 2 +mischances ,mIs'tSAnsIz Mj$ 3 +mischief 'mIstSIf M6% 2 +mischief-maker 'mIstSif-meIk@R K6% 4 +mischief-makers 'mIstSif-meIk@z Kj% 4 +mischief-making 'mIstSif-meIkIN L@% 4 +mischiefs 'mIstSIfs Mj$ 2 +mischievous 'mIstSIv@s OA% 3 +mischievously 'mIstSIv@slI Pu% 4 +mischievousness 'mIstSIv@sn@s L@% 4 +misconceive ,mIsk@n'siv J2$ 33A,6A +misconceived ,mIsk@n'sivd Jc$,Jd% 33A,6A +misconceives ,mIsk@n'sivz Ja$ 33A,6A +misconceiving ,mIsk@n'sivIN Jb$ 43A,6A +misconception ,mIsk@n'sepSn M6% 4 +misconceptions ,mIsk@n'sepSnz Mj% 4 +misconduct ,mIs'k0ndVkt L@% 3 +misconduct ,mIsk@n'dVkt H0$ 36A,6B,14 +misconducted ,mIsk@n'dVktId Hc$,Hd$ 46A,6B,14 +misconducting ,mIsk@n'dVktIN Hb$ 46A,6B,14 +misconducts ,mIsk@n'dVkts Ha$ 36A,6B,14 +misconstruction ,mIsk@n'strVkSn M6% 4 +misconstructions ,mIsk@n'strVkSnz Mj$ 4 +misconstrue ,mIsk@n'stru H2% 36A +misconstrued ,mIsk@n'strud Hc%,Hd% 36A +misconstrues ,mIsk@n'struz Ha% 36A +misconstruing ,mIsk@n'struIN Hb% 46A +miscount ,mIs'kaUnt J0%,K6% 22A,6A +miscounted ,mIs'kaUntId Jc%,Jd% 32A,6A +miscounting ,mIs'kaUntIN Jb% 32A,6A +miscounts ,mIs'kaUnts Ja%,Kj% 22A,6A +miscreant 'mIskrI@nt K6% 3 +miscreants 'mIskrI@nts Kj% 3 +misdate ,mIs'deIt H2% 26A +misdated ,mIs'deItId Hc$,Hd$ 36A +misdates ,mIs'deIts Ha$ 26A +misdating ,mIs'deItIN Hb$ 36A +misdeal ,mIs'dil J5$,K6$ 22A,6A +misdealing ,mIs'dilIN Jb$ 32A,6A +misdeals ,mIs'dilz Ja$,Kj$ 22A,6A +misdealt ,mIs'delt Jc$,Jd$ 22A,6A +misdeed ,mIs'did K6% 2 +misdeeds ,mIs'didz Kj% 2 +misdemeanour ,mIsdI'min@R K6% 4 +misdemeanours ,mIsdI'min@z Kj% 4 +misdirect ,mIsdI'rekt H0% 36A +misdirected ,mIsdI'rektId Hc%,Hd% 46A +misdirecting ,mIsdI'rektIN Hb% 46A +misdirection ,mIsdI'rekSn K6$ 4 +misdirections ,mIsdI'rekSnz Kj$ 4 +misdirects ,mIsdI'rekts Ha% 36A +misdoing ,mIs'duIN K6% 3 +misdoings ,mIs'duINz Kj% 3 +mise en sc`ene ,miz 0n 'seIn L@$ 3 +miser 'maIz@R K6% 2 +miserable 'mIzr@bl OA% 3 +miserably 'mIzr@blI Pu% 3 +miseries 'mIz@rIz Mj% 3 +miserliness 'maIz@lIn@s L@% 4 +miserly 'maIz@lI OA% 3 +misers 'maIz@z Kj% 2 +misery 'mIz@rI M8% 3 +misfire ,mIs'faI@R I2%,K6% 22A +misfired ,mIs'faI@d Ic%,Id% 22A +misfires ,mIs'faI@z Ia%,Kj% 22A +misfiring ,mIs'faI@rIN Ib% 32A +misfit 'mIsfIt K6% 2 +misfits 'mIsfIts Kj% 2 +misfortune ,mIs'fOtSun M6% 3 +misfortunes ,mIs'fOtSunz Mj% 3 +misgave ,mIs'geIv Hc$ 2 +misgive ,mIs'gIv H5$ 2 +misgiven ,mIs'gIvn Hd$ 3 +misgives ,mIs'gIvz Ha$ 2 +misgiving ,mIs'gIvIN Hb$,M6$ 3 +misgivings ,mIs'gIvINz Mj% 3 +misgovern ,mIs'gVvn H0% 36A +misgoverned ,mIs'gVvnd Hc%,Hd% 36A +misgoverning ,mIs'gVvnIN Hb% 46A +misgovernment ,mIs'gVvnm@nt L@% 4 +misgoverns ,mIs'gVvnz Ha% 36A +misguide ,mIs'gaId H2$ 26A,14 +misguided ,mIs'gaIdId Hc$,Hd%,OA% 36A,14 +misguides ,mIs'gaIdz Ha$ 26A,14 +misguiding ,mIs'gaIdIN Hb$ 36A,14 +mishandle ,mIs'h&ndl H2% 3 +mishandled ,mIs'h&ndld Hc%,Hd% 3 +mishandles ,mIs'h&ndlz Ha% 3 +mishandling ,mIs'h&ndlIN Hb% 3 +mishap 'mIsh&p M6% 2 +mishaps 'mIsh&ps Mj% 2 +mishmash 'mISm&S L@% 2 +misinform ,mIsIn'fOm H0% 36A +misinformation ,mIsInf@'meISn L@% 5 +misinformed ,mIsIn'fOmd Hc%,Hd% 36A +misinforming ,mIsIn'fOmIN Hb% 46A +misinforms ,mIsIn'fOmz Ha% 36A +misinterpret ,mIsIn't3prIt H0% 46A +misinterpretation ,mIsIn,t3prI'teISn M6% 6 +misinterpretations ,mIsIn,t3prI'teISnz Mj% 6 +misinterpreted ,mIsIn't3prItId Hc%,Hd% 56A +misinterpreting ,mIsIn't3prItIN Hb% 56A +misinterprets ,mIsIn't3prIts Ha% 46A +misjudge ,mIs'dZVdZ J2% 22A,6A +misjudged ,mIs'dZVdZd Jc%,Jd% 22A,6A +misjudges ,mIs'dZVdZIz Ja% 32A,6A +misjudging ,mIs'dZVdZIN Jb% 32A,6A +mislaid ,mIs'leId Hc%,Hd% 26A +mislay ,mIs'leI H5% 26A +mislaying ,mIs'leIIN Hb% 36A +mislays ,mIs'leIz Ha% 26A +mislead ,mIs'lid H5% 26A +misleading ,mIs'lidIN Hb% 36A +misleads ,mIs'lidz Ha% 26A +misled ,mIs'led Hc%,Hd% 26A +mismanage ,mIs'm&nIdZ H2% 36A +mismanaged ,mIs'm&nIdZd Hc%,Hd% 36A +mismanagement ,mIs'm&nIdZm@nt L@% 4 +mismanages ,mIs'm&nIdZIz Ha% 46A +mismanaging ,mIs'm&nIdZIN Hb% 46A +misname ,mIs'neIm H2% 26A +misnamed ,mIs'neImd Hc%,Hd% 26A +misnames ,mIs'neImz Ha% 26A +misnaming ,mIs'neImIN Hb% 36A +misnomer ,mIs'n@Um@R K6% 3 +misnomers ,mIs'n@Um@z Kj% 3 +misogynist mI's0dZInIst K6% 4 +misogynists mI's0dZInIsts Kj% 4 +misplace ,mIs'pleIs H2% 26A +misplaced ,mIs'pleIst Hc%,Hd% 26A +misplaces ,mIs'pleIsIz Ha% 36A +misplacing ,mIs'pleIsIN Hb% 36A +misprint 'mIsprInt K6% 2 +misprint ,mIs'prInt H0$ 26A +misprinted ,mIs'prIntId Hc$,Hd% 36A +misprinting ,mIs'prIntIN Hb$ 36A +misprints 'mIsprInts Kj% 2 +misprints ,mIs'prInts Ha$ 26A +mispronounce ,mIspr@'naUns H2% 36A +mispronounced ,mIspr@'naUnst Hc%,Hd% 36A +mispronounces ,mIspr@'naUnsIz Ha% 46A +mispronouncing ,mIspr@'naUnsIN Hb% 46A +mispronunciation ,mIspr@,nVnsI'eISn K6% 6 +mispronunciations ,mIspr@,nVnsI'eISnz Kj% 6 +misquotation ,mIskw@U'teISn M6% 4 +misquotations ,mIskw@U'teISnz Mj% 4 +misquote ,mIs'kw@Ut H2% 26A +misquoted ,mIs'kw@UtId Hc%,Hd% 36A +misquotes ,mIs'kw@Uts Ha% 26A +misquoting ,mIs'kw@UtIN Hb% 36A +misread ,mIs'red Hc%,Hd% 26A +misread ,mIs'rid H5% 26A +misreading ,mIs'ridIN Hb% 36A +misreads ,mIs'ridz Ha% 26A +misrepresent ,mIs,reprI'zent H0% 4 +misrepresentation ,mIs,reprIzen'teISn M6% 6 +misrepresentations ,mIs,reprIzen'teISnz Mj% 6 +misrepresented ,mIs,reprI'zentId Hc%,Hd% 5 +misrepresenting ,mIs,reprI'zentIN Hb% 5 +misrepresents ,mIs,reprI'zents Ha% 4 +misrule ,mIs'rul L@% 2 +miss mIs J1%,K7% 12A,2C,6A,6B,6C,15B +missal 'mIsl K6$ 2 +missals 'mIslz Kj$ 2 +missed mIst Jc%,Jd% 12A,2C,6A,6B,6C,15B +misses 'mIsIz Ja%,Kj% 22A,2C,6A,6B,6C,15B +misshapen ,mIs'SeIp@n OA% 3 +missies 'mIsIz Kj$ 2 +missile 'mIsaIl K6% 2 +missiles 'mIsaIlz Kj% 2 +missing 'mIsIN Jb%,OA% 22A,2C,6A,6B,6C,15B +mission 'mISn K6% 2 +missionaries 'mIS@nrIz Kj% 3 +missionary 'mIS@nrI K8% 3 +missions 'mISnz Kj% 2 +missis 'mIsIz Ki$ 2 +missive 'mIsIv K6% 2 +missives 'mIsIvz Kj% 2 +misspell ,mIs'spel H0% 26A +misspelled ,mIs'speld Hc%,Hd% 26A +misspelling ,mIs'spelIN Hb%,K6% 36A +misspellings ,mIs'spelINz Kj% 3 +misspells ,mIs'spelz Ha% 26A +misspelt ,mIs'spelt Hc%,Hd% 26A +misspend ,mIs'spend H5% 26A +misspending ,mIs'spendIN Hb% 36A +misspends ,mIs'spendz Ha% 26A +misspent ,mIs'spent Hc%,Hd% 26A +misstate ,mIs'steIt H2$ 26A +misstated ,mIs'steItId Hc$,Hd$ 36A +misstatement ,mIs'steItm@nt K6% 3 +misstatements ,mIs'steItm@nts Kj% 3 +misstates ,mIs'steIts Ha$ 26A +misstating ,mIs'steItIN Hb$ 36A +missus 'mIsIz Ki$ 2 +missy 'mIsI K8$ 2 +mist mIst J0%,M6% 12C,6A +mistake mI'steIk J5%,K6% 26A,10,14 +mistaken mI'steIkn Jd%,OA% 36A,10,14 +mistakenly mI'steIknlI Pu% 4 +mistakes mI'steIks Ja%,Kj% 26A,10,14 +mistaking mI'steIkIN Jb% 36A,10,14 +misted 'mIstId Jc%,Jd% 22C,6A +mister 'mIst@R Ki% 2 +mistier 'mIstI@R Or% 3 +mistiest 'mIstIIst Os% 3 +mistily 'mIstIlI Pu% 3 +mistime ,mIs'taIm H2% 2 +mistimed ,mIs'taImd Hc%,Hd% 2 +mistimes ,mIs'taImz Ha% 2 +mistiming ,mIs'taImIN Hb% 3 +mistiness 'mIstIn@s L@% 3 +misting 'mIstIN Jb% 22C,6A +mistletoe 'mIslt@U L@% 3 +mistook mI'stUk Jc% 26A,10,14 +mistral 'mIstr@l K6$ 2 +mistrals 'mIstr@lz Kj$ 2 +mistranslate ,mIstr&nz'leIt H2% 36A +mistranslated ,mIstr&nz'leItId Hc%,Hd% 46A +mistranslates ,mIstr&nz'leIts Ha% 36A +mistranslating ,mIstr&nz'leItIN Hb% 46A +mistranslation ,mIstr&ns'leISn M6% 4 +mistranslations ,mIstr&ns'leISnz Mj% 4 +mistress 'mIstrIs K7% 2 +mistresses 'mIstrIsIz Kj% 3 +mistrial ,mIs'traI@l K6$ 3 +mistrials ,mIs'traI@lz Kj$ 3 +mistrust ,mIs'trVst H0%,L@% 26A +mistrusted ,mIs'trVstId Hc%,Hd% 36A +mistrustful ,mIs'trVstf@l OA% 3 +mistrustfully mIs'trVstf@lI Pu% 4 +mistrusting ,mIs'trVstIN Hb% 36A +mistrusts ,mIs'trVsts Ha% 26A +mists mIsts Ja%,Mj% 12C,6A +misty 'mIstI OD% 2 +misunderstand ,mIs,Vnd@'st&nd H5% 46A +misunderstanding ,mIs,Vnd@'st&ndIN Hb%,M6% 56A +misunderstandings ,mIs,Vnd@'st&ndINz Mj% 5 +misunderstands ,mIs,Vnd@'st&ndz Ha% 46A +misunderstood ,mIs,Vnd@'stUd Hc%,Hd% 46A +misuse ,mIs'jus M6% 2 +misuse ,mIs'juz H2% 26A +misused ,mIs'juzd Hc%,Hd% 26A +misuses ,mIs'jusIz Mj$ 3 +misuses ,mIs'juzIz Ha% 36A +misusing ,mIs'juzIN Hb% 36A +mite maIt K6$ 1 +mites maIts Kj$ 1 +mitigate 'mItIgeIt H2% 36A +mitigated 'mItIgeItId Hc%,Hd% 46A +mitigates 'mItIgeIts Ha% 36A +mitigating 'mItIgeItIN Hb% 46A +mitigation ,mItI'geISn L@% 4 +mitre 'maIt@R K6% 2 +mitre-joint 'maIt@-dZoInt K6$ 3 +mitre-joints 'maIt@-dZoInts Kj$ 3 +mitres 'maIt@z Kj% 2 +mitt mIt K6% 1 +mitten 'mItn K6% 2 +mittens 'mItnz Kj% 2 +mitts mIts Kj% 1 +mix mIks J1%,K7% 12A,2C,3A,6A,12B,13B,14,15B +mix-up 'mIks-Vp K6% 2 +mix-ups 'mIks-Vps Kj% 2 +mixed mIkst Jc%,Jd%,OA% 12A,2C,3A,6A,12B,13B,14,15B +mixed-up mIkst-'Vp OA% 2 +mixer 'mIks@R K6% 2 +mixers 'mIks@z Kj% 2 +mixes 'mIksIz Ja%,Kj% 22A,2C,3A,6A,12B,13B,14,15B +mixing 'mIksIN Jb% 22A,2C,3A,6A,12B,13B,14,15B +mixture 'mIkstS@R M6% 2 +mixtures 'mIkstS@z Mj% 2 +mizen 'mIzn K6$ 2 +mizens 'mIznz Kj$ 2 +mizzen 'mIzn K6$ 2 +mizzen-mast 'mIzn-mAst K6$ 3 +mizzen-masts 'mIzn-mAsts Kj$ 3 +mizzens 'mIznz Kj$ 2 +mizzle 'mIzl I2$ 22A +mizzled 'mIzld Ic$,Id$ 22A +mizzles 'mIzlz Ia$ 22A +mizzling 'mIzlIN Ib$ 22A +ml 'mIlIlit@z Y]% 4 +mm 'mIlImit@z Y]% 4 +mnemonic nI'm0nIk OA% 3 +mnemonics nI'm0nIks Lk% 3 +mo m@U Ki$ 1 +moan m@Un J0%,K6% 12A,2C,15B +moaned m@Und Jc%,Jd% 12A,2C,15B +moaning 'm@UnIN Jb% 22A,2C,15B +moans m@Unz Ja%,Kj% 12A,2C,15B +moat m@Ut K6% 1 +moated 'm@UtId OA% 2 +moats m@Uts Kj% 1 +mob m0b H4%,K6% 16A +mobbed m0bd Hc%,Hd% 16A +mobbing 'm0bIN Hb% 26A +mobcap 'm0bk&p K6$ 2 +mobcaps 'm0bk&ps Kj$ 2 +mobile 'm@UbaIl K6%,OA% 2 +mobiles 'm@UbaIlz Kj% 2 +mobility m@U'bIlItI L@% 4 +mobilization ,m@UbIlaI'zeISn M6% 5 +mobilizations ,m@UbIlaI'zeISnz Mj% 5 +mobilize 'm@UbIlaIz J2% 32A,6A +mobilized 'm@UbIlaIzd Jc%,Jd% 32A,6A +mobilizes 'm@UbIlaIzIz Ja% 42A,6A +mobilizing 'm@UbIlaIzIN Jb% 42A,6A +mobs m0bz Ha%,Kj% 16A +mobster 'm0bst@R K6% 2 +mobsters 'm0bst@z Kj% 2 +moccasin 'm0k@sIn M6% 3 +moccasins 'm0k@sInz Mj% 3 +mocha 'm0k@ L@$ 2 +mock m0k J0%,K6%,Oq% 13A,6A +mock-up 'm0k-Vp K6% 2 +mock-ups 'm0k-Vps Kj% 2 +mocked m0kt Jc%,Jd% 13A,6A +mocker 'm0k@R K6% 2 +mockeries 'm0k@rIz Mj% 3 +mockers 'm0k@z Kj% 2 +mockery 'm0k@rI M8% 3 +mocking 'm0kIN Jb% 23A,6A +mockingly 'm0kINlI Pu% 3 +mocks m0ks Ja%,Kj% 13A,6A +mod m0d K6$,OA$ 1 +mod cons ,m0d 'k0nz Y)% 2 +modal 'm@Udl OA% 2 +modalities m@U'd&lItIz Mj% 4 +modality m@U'd&lItI M8% 4 +mode m@Ud K6% 1 +model 'm0dl J4%,K6% 22A,6A,14,15A +modeler 'm0dl@R K6% 3 +modelers 'm0dl@z Kj% 3 +modelled 'm0dld Jc%,Jd% 22A,6A,14,15A +modeller 'm0dl@R K6% 3 +modellers 'm0dl@z Kj% 3 +modelling 'm0d@lIN Jb%,L@% 32A,6A,14,15A +models 'm0dlz Ja%,Kj% 22A,6A,14,15A +moderate 'm0d@r@t K6%,OA% 3 +moderate 'm0d@reIt J2% 32A,6A +moderated 'm0d@reItId Jc%,Jd% 42A,6A +moderately 'm0d@r@tlI Pu% 4 +moderates 'm0d@r@ts Kj% 3 +moderates 'm0d@reIts Ja% 32A,6A +moderating 'm0d@reItIN Jb% 42A,6A +moderation ,m0d@'reISn L@% 4 +moderator 'm0d@reIt@R K6% 4 +moderators 'm0d@reIt@z Kj% 4 +modern 'm0dn K6%,OA% 2 +modernism 'm0d@nIz@m L@% 4 +modernist 'm0d@nIst K6% 3 +modernistic ,m0d@'nIstIk OA% 4 +modernists 'm0d@nIsts Kj% 3 +modernity m@'d3nItI L@% 4 +modernization ,m0d@naI'zeISn L@% 5 +modernize 'm0d@naIz H2% 36A +modernized 'm0d@naIzd Hc%,Hd% 36A +modernizes 'm0d@naIzIz Ha% 46A +modernizing 'm0d@naIzIN Hb% 46A +moderns 'm0dnz Kj$ 2 +modes m@Udz Kj% 1 +modest 'm0dIst OA% 2 +modestly 'm0dIstlI Pu% 3 +modesty 'm0dIstI L@% 3 +modicum 'm0dIk@m Ki% 3 +modification ,m0dIfI'keISn M6% 5 +modifications ,m0dIfI'keISnz Mj% 5 +modified 'm0dIfaId Hc%,Hd% 36A +modifier 'm0dIfaI@R K6% 4 +modifiers 'm0dIfaI@z Kj% 4 +modifies 'm0dIfaIz Ha% 36A +modify 'm0dIfaI H3% 36A +modifying 'm0dIfaIIN Hb% 46A +modish 'm@UdIS OA% 2 +modishly 'm@UdISlI Pu% 3 +modiste m@U'dist K6$ 2 +modistes m@U'dists Kj$ 2 +mods m0dz Kj% 1 +modular 'm0djUl@R OA% 3 +modulate 'm0djUleIt J2% 32C,6A +modulated 'm0djUleItId Jc%,Jd% 42C,6A +modulates 'm0djUleIts Ja% 32C,6A +modulating 'm0djUleItIN Jb% 42C,6A +modulation ,m0djU'leISn M6% 4 +modulations ,m0djU'leISnz Mj% 4 +module 'm0djul K6% 2 +modules 'm0djulz Kj% 2 +modus operandi ,m@Ud@s ,0p@'r&ndi Ki% 6 +modus vivendi ,m@Ud@s vI'vendi Ki% 5 +mogul 'm@Ugl K6$ 2 +moguls 'm@Uglz Kj$ 2 +mohair 'm@Uhe@R L@% 2 +moieties 'moI@tIz Kj$ 3 +moiety 'moI@tI K8$ 3 +moil moIl I0$ 1 +moiled moIld Ic$,Id$ 1 +moiling 'moIlIN Ib$ 2 +moils moIlz Ia$ 1 +moist moIst OA% 1 +moisten 'moIsn J0% 22A,6A +moistened 'moIsnd Jc%,Jd% 22A,6A +moistening 'moIsnIN Jb% 32A,6A +moistens 'moIsnz Ja% 22A,6A +moistly 'moIstlI Pu% 2 +moisture 'moIstS@R L@% 2 +moke m@Uk K6$ 1 +mokes m@Uks Kj$ 1 +molar 'm@Ul@R K6%,OA% 2 +molars 'm@Ul@z Kj% 2 +molasses m@'l&sIz L@% 3 +moldier 'm@UldI@R Or% 3 +moldiest 'm@UldIIst Os% 3 +moldy 'm@UldI OD% 2 +mole m@Ul K6% 1 +molecular m@'lekjUl@R OA% 4 +molecule 'm0lIkjul K6% 3 +molecules 'm0lIkjulz Kj% 3 +molehill 'm@UlhIl K6% 2 +molehills 'm@UlhIlz Kj% 2 +moles m@Ulz Kj% 1 +moleskin 'm@UlskIn K6% 2 +moleskins 'm@UlskInz Kj% 2 +molest m@'lest H0% 26A +molestation ,m@Ul@'steISn L@% 4 +molested m@'lestId Hc%,Hd% 36A +molesting m@'lestIN Hb% 36A +molests m@'lests Ha% 26A +moll m0l K6% 1 +mollification ,m0lIfI'keISn L@$ 5 +mollified 'm0lIfaId Hc%,Hd% 36A +mollifies 'm0lIfaIz Ha% 36A +mollify 'm0lIfaI H3% 36A +mollifying 'm0lIfaIIN Hb% 46A +molls m0lz Kj$ 1 +mollusc 'm0l@sk K6% 2 +molluscs 'm0l@sks Kj% 2 +mollycoddle 'm0lIk0dl H2%,K6% 46A +mollycoddled 'm0lIk0dld Hc%,Hd% 46A +mollycoddles 'm0lIk0dlz Ha%,Kj% 46A +mollycoddling 'm0lIk0dlIN Hb% 46A +molten 'm@Ult@n Jd% 22A,2C,6A,15B +molto 'm0lt@U Pu$ 2 +molybdenum m@'lIbd@n@m L@$ 4 +moment 'm@Um@nt M6* 2 +momentarily 'm@Um@ntr@lI Pu% 4 +momentary 'm@Um@ntrI OA% 3 +momentous m@'ment@s OA% 3 +momentously m@'ment@slI Pu% 4 +momentousness m@'ment@sn@s L@$ 4 +moments 'm@Um@nts Mj% 2 +momentum m@'ment@m L@% 3 +monarch 'm0n@k K6% 2 +monarchic m@'nAkIk OA$ 3 +monarchies 'm0n@kIz Mj% 3 +monarchism 'm0n@kIz@m L@% 4 +monarchist 'm0n@kIst K6% 3 +monarchists 'm0n@kIsts Kj% 3 +monarchs 'm0n@ks Kj% 2 +monarchy 'm0n@kI M8% 3 +monasteries 'm0n@strIz Kj% 3 +monastery 'm0n@strI K8% 3 +monastic m@'n&stIk OA% 3 +monasticism m@'n&stIsIz@m L@% 5 +monaural ,m0n'Or@l OA$ 3 +monetary 'mVnItrI OA% 3 +monetize 'mVn@taIz H2$ 36A +monetized 'mVn@taIzd Hc$,Hd$ 36A +monetizes 'mVn@taIzIz Ha$ 46A +monetizing 'mVn@taIzIN Hb$ 46A +money 'mVnI L@* 2 +money-grubber 'mVnI-grVb@R K6% 4 +money-grubbers 'mVnI-grVb@z Kj% 4 +money-order 'mVnI-Od@R K6% 4 +money-orders 'mVnI-Od@z Kj% 4 +money-spinner 'mVnI-spIn@R K6% 4 +money-spinners 'mVnI-spIn@z Kj% 4 +moneybox 'mVnIb0ks K7% 3 +moneyboxes 'mVnIb0ksIz Kj% 4 +moneychanger 'mVnItSeIndZ@R K6% 4 +moneychangers 'mVnItSeIndZ@z Kj% 4 +moneyed 'mVnId OA% 2 +moneylender 'mVnIlend@R K6% 4 +moneylenders 'mVnIlend@z Kj% 4 +moneyless 'mVnIl@s OA% 3 +monger 'mVNg@R K6$ 2 +mongers 'mVNg@z Kj$ 2 +mongol 'm0Ngl K6%,Oq% 2 +mongolism 'm0Ng@lIz@m L@% 4 +mongols 'm0Nglz Kj% 2 +mongoose 'm0Ngus K6% 2 +mongooses 'm0NgusIz Kj% 3 +mongrel 'mVNgr@l K6%,Oq% 2 +mongrels 'mVNgr@lz Kj% 2 +monies 'mVnIz Kj% 2 +monitor 'm0nIt@R J0%,K6% 3 +monitored 'm0nIt@d Jc%,Jd% 3 +monitoring 'm0nIt@rIN Jb% 4 +monitors 'm0nIt@z Ja%,Kj% 3 +monk mVNk K6% 1 +monkey 'mVNkI I0%,K6% 22C +monkey-jacket 'mVNkI-dZ&kIt K6$ 4 +monkey-jackets 'mVNkI-dZ&kIts Kj$ 4 +monkey-nut 'mVNkI-nVt K6% 3 +monkey-nuts 'mVNkI-nVts Kj% 3 +monkey-puzzle 'mVNkI-pVzl K6% 4 +monkey-puzzles 'mVNkI-pVzlz Kj% 4 +monkey-wrench 'mVNkI-rentS K7% 3 +monkey-wrenches 'mVNkI-rentSIz Kj% 4 +monkeyed 'mVNkId Ic%,Id% 22C +monkeying 'mVNkIIN Ib% 32C +monkeys 'mVNkIz Ia%,Kj% 22C +monkish 'mVNkIS OA% 2 +monks mVNks Kj% 1 +mono 'm0n@U OA% 2 +monochrome 'm0n@kr@Um K6%,OA% 3 +monochromes 'm0n@kr@Umz Kj$ 3 +monocle 'm0n@kl K6% 3 +monocled 'm0n@kld OA% 3 +monocles 'm0n@klz Kj% 3 +monogamist m@'n0g@mIst K6$ 4 +monogamists m@'n0g@mIsts Kj$ 4 +monogamous m@'n0g@m@s OA% 4 +monogamy m@'n0g@mI L@% 4 +monogram 'm0n@gr&m K6% 3 +monograms 'm0n@gr&mz Kj% 3 +monograph 'm0n@grAf K6% 3 +monographs 'm0n@grAfs Kj% 3 +monolith 'm0n@lIT K6% 3 +monolithic ,m0n@'lITIk OA% 4 +monoliths 'm0n@lITs Kj% 3 +monologue 'm0n@l0g K6% 3 +monologues 'm0n@l0gz Kj% 3 +monomania ,m0n@U'meInI@ M6% 5 +monomaniac ,m0n@U'meInI&k K6% 5 +monomaniacs ,m0n@U'meInI&ks Kj% 5 +monomanias ,m0n@U'meInI@z Mj$ 5 +monoplane 'm0n@pleIn K6% 3 +monoplanes 'm0n@pleInz Kj% 3 +monopolies m@'n0p@lIz Kj% 4 +monopolist m@'n0p@lIst K6$ 4 +monopolistic m@,n0p@'lIstIk OA% 5 +monopolists m@'n0p@lIsts Kj$ 4 +monopolization m@,n0p@laI'zeISn M6% 6 +monopolizations m@,n0p@laI'zeISnz Mj$ 6 +monopolize m@'n0p@laIz H2% 46A +monopolized m@'n0p@laIzd Hc%,Hd% 46A +monopolizes m@'n0p@laIzIz Ha% 56A +monopolizing m@'n0p@laIzIN Hb% 56A +monopoly m@'n0p@lI K8% 4 +monorail 'm0n@UreIl K6% 3 +monorails 'm0n@UreIlz Kj% 3 +monosyllabic ,m0n@sI'l&bIk OA% 5 +monosyllable 'm0n@sIl@bl K6% 5 +monosyllables 'm0n@sIl@blz Kj% 5 +monotheism 'm0n@UTiIz@m L@$ 5 +monotheist 'm0n@UTiIst K6$ 4 +monotheistic ,m0n@UTi'Istik OA$ 5 +monotheists 'm0n@UTiIsts Kj$ 4 +monotone 'm0n@t@Un K6% 3 +monotones 'm0n@t@Unz Kj% 3 +monotonous m@'n0t@n@s OA% 4 +monotonously m@'n0t@n@slI Pu% 5 +monotony m@'n0t@nI L@% 4 +monotype 'm0n@taIp K6$ 3 +monotypes 'm0n@taIps Kj$ 3 +monoxide m0'n0ksaId M6% 3 +monoxides m0'n0ksaIdz Mj% 3 +monsoon m0n'sun K6% 2 +monsoons m0n'sunz Kj% 2 +monster 'm0nst@R K6% 2 +monsters 'm0nst@z Kj% 2 +monstrance 'm0nstr@ns K6$ 2 +monstrances 'm0nstr@nsIz Kj$ 3 +monstrosities m0n'str0sItIz Mj% 4 +monstrosity m0n'str0sItI M8% 4 +monstrous 'm0nstr@s OA% 2 +monstrously 'm0nstr@slI Pu% 3 +montage 'm0ntAZ L@% 2 +month mVnT K6% 1 +monthlies 'mVnTlIz Kj% 2 +monthly 'mVnTlI K8%,OA%,Pu% 2 +months mVnTs Kj% 1 +monument 'm0njUm@nt K6% 3 +monumental ,m0njU'mentl OA% 4 +monuments 'm0njUm@nts Kj% 3 +moo mu I0%,K6% 1 +moo-cow 'mu-kaU K6% 2 +moo-cows 'mu-kaUz Kj% 2 +mooch mutS I1% 12C +mooched mutSt Ic%,Id% 12C +mooches 'mutSIz Ia% 22C +mooching 'mutSIN Ib% 22C +mood mud K6% 1 +moodier 'mudI@R Or% 3 +moodiest 'mudIIst Os% 3 +moodily 'mudIlI Pu% 3 +moodiness 'mudIn@s L@% 3 +moods mudz Kj% 1 +moody 'mudI OD% 2 +mooed mud Ic%,Id% 1 +mooing 'muIN Ib% 2 +moon mun J0%,K6% 12C,15B +moonbeam 'munbim K6% 2 +moonbeams 'munbimz Kj% 2 +mooned mund Jc%,Jd% 12C,15B +moonflower 'munflaU@R K6$ 3 +moonflowers 'munflaU@z Kj$ 3 +moonier 'munI@R Or$ 3 +mooniest 'munIIst Os$ 3 +mooning 'munIN Jb% 22C,15B +moonless 'munl@s OA% 2 +moonlight 'munlaIt L@% 2 +moonlit 'munlIt OA% 2 +moons munz Ja$,Kj% 12C,15B +moonshine 'munSaIn L@% 2 +moonstone 'munst@Un K6% 2 +moonstones 'munst@Unz Kj% 2 +moonstruck 'munstrVk OA% 2 +moony 'munI OD% 2 +moor mU@R H0%,M6% 16A,15A +moorcock 'mU@k0k K6$ 2 +moorcocks 'mU@k0ks Kj$ 2 +moored mU@d Hc%,Hd% 16A,15A +moorfowl 'mU@faUl K6% 2 +moorfowls 'mU@faUlz Kj$ 2 +moorgame 'mU@geIm K9$ 2 +moorhen 'mU@hen K6% 2 +moorhens 'mU@henz Kj% 2 +mooring 'mU@rIN Hb% 26A,15A +mooring-mast 'mU@rIN-mAst K6$ 3 +mooring-masts 'mU@rIN-mAsts Kj$ 3 +moorings 'mU@rINz Kj% 2 +moorland 'mU@l&nd M6% 2 +moorlands 'mU@l&ndz Mj% 2 +moors mU@z Ha%,Mj% 16A,15A +moos muz Ia$,Kj$ 1 +moose mus K9% 1 +mooses 'musIz Kj$ 2 +moot mut H0$,OA$ 16A +mooted 'mutId Hc$,Hd% 26A +mooting 'mutIN Hb% 26A +moots muts Ha$ 16A +mop m0p J4%,K6% 16A,15B +mope m@Up I2%,K6% 12A,2C +moped 'm@Uped K6% 2 +moped m@Upt Ic%,Id% 12A,2C +mopeds 'm@Upedz Kj% 2 +mopes m@Ups Ia%,Kj% 12A,2C +moping 'm@UpIN Ib% 22A,2C +mopped m0pt Jc%,Jd% 16A,15B +mopping 'm0pIN Jb% 26A,15B +mops m0ps Ja%,Kj% 16A,15B +moquette m@'ket L@$ 2 +moraine m0'reIn K6$ 2 +moraines m0'reInz Kj$ 2 +moral 'm0r@l K6%,OA% 2 +morale m@'rAl L@% 2 +moralist 'm0r@lIst K6% 3 +moralistic ,m0r@'lIstIk OA% 4 +moralists 'm0r@lIsts Kj% 3 +moralities m@'r&lItIz Mj% 4 +morality m@'r&lItI M8% 4 +moralize 'm0r@laIz J2% 32A,3A,6A +moralized 'm0r@laIzd Jc%,Jd% 32A,3A,6A +moralizes 'm0r@laIzIz Ja% 42A,3A,6A +moralizing 'm0r@laIzIN Jb% 42A,3A,6A +morally 'm0r@lI Pu% 3 +morals 'm0r@lz Kj% 2 +morass m@'r&s K7% 2 +morasses m@'r&sIz Kj$ 3 +moratoria ,m0r@'tOrI@ Kj% 5 +moratorium ,m0r@'tOrI@m K6% 5 +moratoriums ,m0r@'tOrI@mz Kj% 5 +morbid 'mObId OA% 2 +morbidities mO'bIdItIz Mj$ 4 +morbidity mO'bIdItI M8% 4 +morbidly 'mObIdlI Pu% 3 +morbidness 'mObIdn@s L@$ 3 +mordant 'mOdnt OA% 2 +more mOR L@*,Or*,Pu* 1 +morello m@'rel@U K6% 3 +morellos m@'rel@Uz Kj$ 3 +moreover mO'r@Uv@R Pu% 3 +mores 'mOreIz Kj% 2 +morganatic ,mOg@'n&tIk OA$ 4 +morgue mOg K6% 1 +morgues mOgz Kj% 1 +moribund 'm0rIbVnd OA% 3 +morn mOn K6% 1 +morning 'mOnIN M6* 2 +morning-glories ,mOnIN-'glOrIz Kj$ 4 +morning-glory ,mOnIN-'glOrI K8$ 4 +morning-room 'mOnIN-rum K6% 3 +morning-rooms 'mOnIN-rumz Kj% 3 +mornings 'mOnINz Mj% 2 +morns mOnz Kj$ 1 +morocco m@'r0k@U L@% 3 +moron 'mOr0n K6% 2 +moronic m@'r0nIk OA% 3 +morons 'mOr0nz Kj% 2 +morose m@'r@Us OA% 2 +morosely m@'r@UslI Pu% 3 +moroseness m@'r@Usn@s L@% 3 +morpheme 'mOfim K6$ 2 +morphemes 'mOfimz Kj$ 2 +morphemic mO'fimIk OA$ 3 +morphia 'mOfI@ L@$ 3 +morphine 'mOfin L@% 2 +morphological ,mOf@'l0dZIkl OA$ 5 +morphologically ,mOf@'l0dZIklI Pu$ 5 +morphology mO'f0l@dZI L@$ 4 +morris dance 'm0rIs dAns K6$ 3 +morris dances 'm0rIs dAnsIz Kj$ 4 +morrow 'm0r@U K6% 2 +morrows 'm0r@Uz Kj$ 2 +morsel 'mOsl K6% 2 +morsels 'mOslz Kj% 2 +mortal 'mOtl K6%,OA% 2 +mortality mO't&lItI L@% 4 +mortally 'mOt@lI Pu% 3 +mortals 'mOtlz Kj% 2 +mortar 'mOt@R H0%,M6% 26A +mortarboard 'mOt@bOd K6% 3 +mortarboards 'mOt@bOdz Kj% 3 +mortared 'mOt@d Hc$,Hd$ 26A +mortaring 'mOt@rIN Hb$ 36A +mortars 'mOt@z Ha$,Mj$ 26A +mortgage 'mOgIdZ H2%,K6% 26A,14 +mortgaged 'mOgIdZd Hc%,Hd% 26A,14 +mortgagee ,mOgI'dZi K6% 3 +mortgagees ,mOgI'dZiz Kj% 3 +mortgages 'mOgIdZIz Ha%,Kj% 36A,14 +mortgaging 'mOgIdZIN Hb% 36A,14 +mortgagor ,mOgI'dZOR K6% 3 +mortgagors ,mOgI'dZOz Kj% 3 +mortice 'mOtIs H2%,K6% 215A,15B +morticed 'mOtIst Hc%,Hd% 215A,15B +mortices 'mOtIsIz Ha$,Kj$ 315A,15B +mortician mO'tISn K6% 3 +morticians mO'tISnz Kj% 3 +morticing 'mOtIsIN Hb$ 315A,15B +mortification ,mOtIfI'keISn L@% 5 +mortified 'mOtIfaId Jc%,Jd% 32A,6A +mortifies 'mOtIfaIz Ja% 32A,6A +mortify 'mOtIfaI J3% 32A,6A +mortifying 'mOtIfaIIN Jb% 42A,6A +mortise 'mOtIs H2$,K6$ 215A,15B +mortised 'mOtIst Hc$,Hd% 215A,15B +mortises 'mOtIsIz Ha$,Kj$ 315A,15B +mortising 'mOtIsIN Hb$ 315A,15B +mortuaries 'mOtS@rIz Kj% 3 +mortuary 'mOtS@rI K8% 3 +mosaic m@U'zeIIk K6%,OA% 3 +mosaics m@U'zeIIks Kj% 3 +moselle m@U'zel M6% 2 +moselles m@U'zelz Mj$ 2 +mosey 'm@UzI I0% 22A,2C +moseyed 'm@UzId Ic%,Id% 22A,2C +moseying 'm@UzIIN Ib% 32A,2C +moseys 'm@UzIz Ia% 22A,2C +mosque m0sk K6% 1 +mosques m0sks Kj% 1 +mosquito m@'skit@U K7% 3 +mosquito-craft m@'skit@U-krAft K9$ 4 +mosquito-net m@'skit@U-net K6% 4 +mosquito-nets m@'skit@U-nets Kj% 4 +mosquitoes m@'skit@Uz Kj% 3 +moss m0s M7% 1 +moss-grown 'm0s-gr@Un OA$ 2 +mosses 'm0sIz Mj% 2 +mossier 'm0sI@R Or% 3 +mossiest 'm0sIIst Os% 3 +mossy 'm0sI OD% 2 +most m@Ust K9*,Os*,Pu* 1 +mostly 'm@UstlI Pu% 2 +mote m@Ut K6$ 1 +motel m@U'tel K6% 2 +motels m@U'telz Kj% 2 +motes m@Uts Kj$ 1 +moth m0T K6% 1 +moth-eaten 'm0T-itn OA% 3 +mothball 'm0TbOl K6% 2 +mothballs 'm0TbOlz Kj% 2 +mother 'mVD@R H0%,K6* 26A +mother-in-law 'mVD@r-In-lO Ki% 4 +mother-of-pearl ,mVD@r-@v-'p3l L@% 4 +mothered 'mVD@d Hc%,Hd% 26A +motherhood 'mVD@hUd L@% 3 +mothering 'mVD@rIN Hb% 36A +motherland 'mVD@l&nd K6% 3 +motherlands 'mVD@l&ndz Kj$ 3 +motherless 'mVD@l@s OA% 3 +motherlike 'mVD@laIk OA% 3 +motherliness 'mVD@lIn@s L@% 4 +motherly 'mVD@lI OA% 3 +mothers 'mVD@z Ha%,Kj% 26A +mothers-in-law 'mVD@z-In-lO Kj$ 4 +mothproof 'm0Tpruf H0%,OA% 2 +mothproofed 'm0Tpruft Hc%,Hd% 2 +mothproofing 'm0TprufIN Hb$ 3 +mothproofs 'm0Tprufs Ha$ 2 +moths m0Ts Kj% 1 +motif m@U'tif K6% 2 +motifs m@U'tifs Kj% 2 +motion 'm@USn J0%,M6% 23A,15A,15B,17 +motioned 'm@USnd Jc%,Jd% 23A,15A,15B,17 +motioning 'm@USnIN Jb$ 33A,15A,15B,17 +motionless 'm@USnl@s OA% 3 +motionlessly 'm@USnl@slI Pu% 4 +motions 'm@USnz Ja%,Mj% 23A,15A,15B,17 +motivate 'm@UtIveIt H2% 36A +motivated 'm@UtIveItId Hc%,Hd% 46A +motivates 'm@UtIveIts Ha% 36A +motivating 'm@UtIveItIN Hb% 46A +motivation ,m@UtI'veISn M6% 4 +motivations ,m@UtI'veISnz Mj% 4 +motive 'm@UtIv K6%,OA% 2 +motiveless 'm@UtIvl@s OA% 3 +motives 'm@UtIvz Kj% 2 +motley 'm0tlI L@$,OA% 2 +motor 'm@Ut@R I0%,K6% 22A,2C +motor-assisted ,m@Ut@r-@'sIstId OA% 5 +motorbike 'm@Ut@baIk K6% 3 +motorbikes 'm@Ut@baIks Kj% 3 +motorboat 'm@Ut@b@Ut K6% 3 +motorboats 'm@Ut@b@Uts Kj% 3 +motorcade 'm@Ut@keId K6% 3 +motorcades 'm@Ut@keIdz Kj% 3 +motorcar 'm@Ut@kAR K6% 3 +motorcars 'm@Ut@kAz Kj% 3 +motorcoach 'm@Ut@k@UtS K7% 3 +motorcoaches 'm@Ut@k@UtSIz Kj% 4 +motorcycle 'm@Ut@saIkl K6% 4 +motorcycles 'm@Ut@saIklz Kj% 4 +motored 'm@Ut@d Ic%,Id% 22A,2C +motoring 'm@Ut@rIN Ib% 32A,2C +motorist 'm@Ut@rIst K6% 3 +motorists 'm@Ut@rIsts Kj% 3 +motorize 'm@Ut@raIz H2$ 36A +motorized 'm@Ut@raIzd Hc$,Hd% 36A +motorizes 'm@Ut@raIzIz Ha$ 46A +motorizing 'm@Ut@raIzIN Hb$ 46A +motorman 'm@Ut@m@n Ki% 3 +motormen 'm@Ut@m@n Kj% 3 +motors 'm@Ut@z Ia%,Kj% 22A,2C +motorway 'm@Ut@weI K6% 3 +motorways 'm@Ut@weIz Kj% 3 +mottle 'm0tl H2$ 26A +mottled 'm0tld Hc$,Hd% 26A +mottles 'm0tlz Ha$ 26A +mottling 'm0tlIN Hb$ 26A +motto 'm0t@U K6% 2 +mottoes 'm0t@Uz Kj% 2 +mottos 'm0t@Uz Kj% 2 +moujik 'muZIk K6$ 2 +moujiks 'muZIks Kj$ 2 +mould m@Uld J0%,M6% 12A,6A,14 +moulded 'm@UldId Jc%,Jd% 22A,6A,14 +moulder 'm@Uld@R I0% 22A,2C +mouldered 'm@Uld@d Ic%,Id% 22A,2C +mouldering 'm@Uld@rIN Ib% 32A,2C +moulders 'm@Uld@z Ia$ 22A,2C +mouldier 'm@UldI@R Or% 3 +mouldiest 'm@UldIIst Os% 3 +moulding 'm@UldIN Jb%,M6% 22A,6A,14 +mouldings 'm@UldINz Mj% 2 +moulds m@Uldz Ja%,Mj% 12A,6A,14 +mouldy 'm@UldI OD% 2 +moult m@Ult J0%,K6$ 12A,6A +moulted 'm@UltId Jc%,Jd% 22A,6A +moulting 'm@UltIN Jb% 22A,6A +moults m@Ults Ja%,Kj$ 12A,6A +mound maUnd K6% 1 +mounds maUndz Kj% 1 +mount maUnt J0%,K6% 12A,2C,6A +mountain 'maUntIn K6% 2 +mountaineer ,maUntI'nI@R K6% 3 +mountaineering ,maUntI'nI@rIN L@% 4 +mountaineers ,maUntI'nI@z Kj% 3 +mountainous 'maUntIn@s OA% 3 +mountains 'maUntInz Kj% 2 +mountebank 'maUntIb&Nk K6$ 3 +mountebanks 'maUntIb&Nks Kj$ 3 +mounted 'maUntId Jc%,Jd% 22A,2C,6A +mounting 'maUntIN Jb% 22A,2C,6A +mounts maUnts Ja%,Kj% 12A,2C,6A +mourn mOn J0% 13A,6A +mourned mOnd Jc%,Jd% 13A,6A +mourner 'mOn@R K6% 2 +mourners 'mOn@z Kj% 2 +mournful 'mOnf@l OA% 2 +mournfully 'mOnf@lI Pu% 3 +mourning 'mOnIN Jb%,L@% 23A,6A +mourning-band 'mOnIN-b&nd K6$ 3 +mourning-bands 'mOnIN-b&ndz Kj$ 3 +mourning-ring 'mOnIN-rIN K6$ 3 +mourning-rings 'mOnIN-rINz Kj$ 3 +mourns mOnz Ja% 13A,6A +mouse maUs I2$,Ki% 12A +moused maUst Ic$,Id$ 12A +mouser 'maUz@R K6% 2 +mousers 'maUz@z Kj% 2 +mouses 'maUsIz Ia$ 22A +mousetrap 'maUstr&p K6% 2 +mousetraps 'maUstr&ps Kj% 2 +mousier 'maUsI@R Or% 3 +mousiest 'maUsIIst Os% 3 +mousing 'maUsIN Ib% 22A +mousse mus M6% 1 +mousses 'musIz Mj% 2 +moustache m@'stAS K6% 2 +moustaches m@'stASIz Kj% 3 +mousy 'maUsI OD% 2 +mouth maUD J0% 12A,6A +mouth maUT K6% 1 +mouth-organ 'maUT-Og@n K6% 3 +mouth-organs 'maUT-Og@nz Kj% 3 +mouth-watering 'maUT-wOt@rIN OA% 4 +mouthed maUDd Jc%,Jd% 12A,6A +mouthful 'maUTfVl K6% 2 +mouthfuls 'maUTfVlz Kj% 2 +mouthing 'maUDIN Jb% 22A,6A +mouthpiece 'maUTpis K6% 2 +mouthpieces 'maUTpisIz Kj% 3 +mouths maUDz Ja%,Kj% 12A,6A +movable 'muv@bl OA% 3 +movables 'muv@blz Kj% 3 +move muv J2%,K6% 12A,2C,3A,6A,9,15A,15B,17 +moved muvd Jc%,Jd% 12A,2C,3A,6A,9,15A,15B,17 +movement 'muvm@nt M6% 2 +movements 'muvm@nts Mj% 2 +mover 'muv@R K6% 2 +movers 'muv@z Kj% 2 +moves muvz Ja%,Kj% 12A,2C,3A,6A,9,15A,15B,17 +movie 'muvI K6% 2 +movies 'muvIz Kj% 2 +moving 'muvIN Jb% 22A,2C,3A,6A,9,15A,15B,17 +mow m@U H0%,K6% 12A,6A,15B +mow maU I0$ 1 +mowed m@Ud Hc%,Hd% 12A,6A,15B +mowed maUd Ic$,Id$ 1 +mower 'm@U@R K6% 2 +mowers 'm@U@z Kj% 2 +mowing 'm@UIN Hb% 22A,6A,15B +mowing 'maUIN Ib$ 2 +mown m@Un Hd% 12A,6A,15B +mows m@Uz Ha%,Kj% 12A,6A,15B +mows maUz Ia$ 1 +mpg ,em,pi'dZi Y]% 3 +mph ,em,pi'eItS Y]% 3 +much mVtS Ki*,OA*,Pu* 1 +muchness 'mVtSn@s L@% 2 +mucilage 'mjusIlIdZ L@$ 3 +muck mVk J0%,L@% 12C,6A,15B +muck-heap 'mVk-hip K6% 2 +muck-heaps 'mVk-hips Kj% 2 +mucked mVkt Jc%,Jd% 12C,6A,15B +muckier 'mVkI@R Or% 3 +muckiest 'mVkIIst Os% 3 +mucking 'mVkIN Jb% 22C,6A,15B +muckle 'mVkl Ki$ 2 +muckraker 'mVkreIk@R K6% 3 +muckrakers 'mVkreIk@z Kj$ 3 +muckraking 'mVkreIkIN L@% 3 +mucks mVks Ja% 12C,6A,15B +mucky 'mVkI OD% 2 +mucous 'mjuk@s OA% 2 +mucus 'mjuk@s L@% 2 +mud mVd H4%,L@% 16A +mud-bath 'mVd-bAT K6% 2 +mud-baths 'mVd-bADz Kj% 2 +mudded 'mVdId Hc$,Hd$ 26A +muddied 'mVdId Hc%,Hd% 26A +muddier 'mVdI@R Or% 3 +muddies 'mVdIz Ha% 26A +muddiest 'mVdIIst Os% 3 +mudding 'mVdIN Hb$ 26A +muddle 'mVdl J2%,K6% 22C,6A,15B +muddle-headed ,mVdl-'hedId OA% 4 +muddled 'mVdld Jc%,Jd% 22C,6A,15B +muddles 'mVdlz Ja%,Kj% 22C,6A,15B +muddling 'mVdlIN Jb% 22C,6A,15B +muddy 'mVdI H3%,OD% 26A +muddying 'mVdIIN Hb% 36A +mudguard 'mVdgAd K6% 2 +mudguards 'mVdgAdz Kj% 2 +muds mVdz Ha$ 16A +mudslinger 'mVdslIN@R K6% 3 +mudslingers 'mVdslIN@z Kj% 3 +muesli 'mjuzlI L@% 2 +muezzin mu'ezIn K6$ 3 +muezzins mu'ezInz Kj$ 3 +muff mVf H0%,K6% 16A +muffed mVft Hc%,Hd% 16A +muffin 'mVfIn K6% 2 +muffin-man 'mVfIn-m&n Ki% 3 +muffin-men 'mVfIn-men Kj% 3 +muffing 'mVfIN Hb% 26A +muffins 'mVfInz Kj% 2 +muffle 'mVfl H2% 26A,15B +muffled 'mVfld Hc%,Hd% 26A,15B +muffler 'mVfl@R K6% 2 +mufflers 'mVfl@z Kj% 2 +muffles 'mVflz Ha% 26A,15B +muffling 'mVflIN Hb% 26A,15B +muffs mVfs Ha%,Kj% 16A +mufti 'mVftI L@% 2 +mug mVg H4%,K6% 16A,15B +mugged mVgd Hc%,Hd% 16A,15B +mugger 'mVg@R K6% 2 +muggers 'mVg@z Kj% 2 +muggier 'mVgI@R Or$ 3 +muggiest 'mVgIIst Os$ 3 +mugginess 'mVgIn@s L@$ 3 +mugging 'mVgIN Hb%,M6% 26A,15B +muggings 'mVgINz Mj% 2 +muggins 'mVgInz K7% 2 +mugginses 'mVgInzIz Kj$ 3 +muggy 'mVgI OD% 2 +mugs mVgz Ha%,Kj% 16A,15B +mugwump 'mVgwVmp K6$ 2 +mugwumps 'mVgwVmps Kj$ 2 +mulatto mju'l&t@U K6$ 3 +mulattoes mju'l&t@Uz Kj$ 3 +mulattos mju'l&t@Uz Kj$ 3 +mulberries 'mVlbrIz Kj% 2 +mulberry 'mVlbrI K8% 2 +mulch mVltS H1$,K7$ 1 +mulched mVltSt Hc$,Hd$ 1 +mulches 'mVltSIz Ha$,Kj$ 2 +mulching 'mVltSIN Hb$ 2 +mulct mVlkt H0$ 112C,14 +mulcted 'mVlktId Hc$,Hd$ 212C,14 +mulcting 'mVlktIN Hb$ 212C,14 +mulcts mVlkts Ha$ 112C,14 +mule mjul K6% 1 +mules mjulz Kj% 1 +muleteer ,mjul@'tI@R K6% 3 +muleteers ,mjul@'tI@z Kj% 3 +mulish 'mjulIS OA% 2 +mulishly 'mjulISlI Pu% 3 +mulishness 'mjulISn@s L@% 3 +mull mVl H0%,K6% 16A,15A +mullah 'mVl@ K6$ 2 +mullahs 'mVl@z Kj$ 2 +mulled mVld Hc%,Hd% 16A,15A +mullein 'mVlIn K6$ 2 +mulleins 'mVlInz Kj$ 2 +mullet 'mVlIt K6% 2 +mullets 'mVlIts Kj$ 2 +mulligatawny ,mVlIg@'tOnI L@% 5 +mulling 'mVlIN Hb% 26A,15A +mullion 'mVlI@n K6% 3 +mullioned 'mVlI@nd OA% 3 +mullions 'mVlI@nz Kj% 3 +mulls mVlz Ha%,Kj% 16A,15A +multi- 'mVltI- U-% 2 +multi-lingual ,mVltI-'lINgw@l OA% 4 +multifarious ,mVltI'fe@rI@s OA% 5 +multifariously ,mVltI'fe@rI@slI Pu% 6 +multiform 'mVltIfOm OA% 3 +multilateral ,mVltI'l&t@r@l OA% 5 +multiple 'mVltIpl K6%,OA% 3 +multiples 'mVltIplz Kj% 3 +multiplex 'mVltIpleks OA$ 3 +multiplication ,mVltIplI'keISn M6% 5 +multiplications ,mVltIplI'keISnz Mj% 5 +multiplicity ,mVltI'plIsItI L@% 5 +multiplied 'mVltIplaId Jc%,Jd% 32A,6A,14 +multiplies 'mVltIplaIz Ja% 32A,6A,14 +multiply 'mVltIplaI J3% 32A,6A,14 +multiplying 'mVltIplaIIN Jb% 42A,6A,14 +multitude 'mVltItjud M6% 3 +multitudes 'mVltItjudz Mj% 3 +multitudinous ,multI'tjudIn@s OA% 5 +multum in parvo ,mUlt@m In 'pAv@U L@$ 5 +mum mVm K6%,OA%,W-% 1 +mumble 'mVmbl J2% 22A,2C,6A +mumbled 'mVmbld Jc%,Jd% 22A,2C,6A +mumbles 'mVmblz Ja% 22A,2C,6A +mumbling 'mVmblIN Jb% 22A,2C,6A +mumbo-jumbo ,mVmb@U-'dZVmb@U L@% 4 +mummer 'mVm@R K6$ 2 +mummeries 'mVm@rIz Mj$ 3 +mummers 'mVm@z Kj$ 2 +mummery 'mVm@rI M8$ 3 +mummies 'mVmIz Kj% 2 +mummification ,mVmIfI'keISn M6% 5 +mummifications ,mVmIfI'keISnz Mj$ 5 +mummified 'mVmIfaId Hc$,Hd% 36A +mummifies 'mVmIfaIz Ha$ 36A +mummify 'mVmIfaI H3$ 36A +mummifying 'mVmIfaIIN Hb$ 46A +mummy 'mVmI K8% 2 +mumps mVmps Lk% 1 +mums mVmz Kj% 1 +munch mVntS J1% 12A,2C,6A +munched mVntSt Jc%,Jd% 12A,2C,6A +munches 'mVntSIz Ja% 22A,2C,6A +munching 'mVntSIN Jb% 22A,2C,6A +mundane mVn'deIn OA% 2 +mundanely mVn'deInlI Pu% 3 +municipal mju'nIsIpl OA% 4 +municipalities mju,nIsI'p&lItIz Kj% 6 +municipality mju,nIsI'p&lItI K8% 6 +municipally mju'nIsIplI Pu% 4 +munificence mju'nIfIsns L@% 4 +munificent mju'nIfIsnt OA% 4 +munificently mju'nIfIsntlI Pu% 5 +muniments 'mjunIm@nts Kj$ 3 +munition mju'nISn H0$,K6% 36A +munitioned mju'nISnd Hc%,Hd% 36A +munitioning mju'nISnIN Hb$ 46A +munitions mju'nISnz Ha$,Kj% 36A +mural 'mjU@r@l K6%,OA% 2 +murals 'mjU@r@lz Kj% 2 +murder 'm3d@R H0%,M6% 26A +murdered 'm3d@d Hc%,Hd% 26A +murderer 'm3d@r@R K6% 3 +murderers 'm3d@r@z Kj% 3 +murderess 'm3d@rIs K7% 3 +murderesses 'm3d@rIsIz Kj% 4 +murdering 'm3d@rIN Hb% 36A +murderous 'm3d@r@s OA% 3 +murderously 'm3d@r@slI Pu% 4 +murders 'm3d@z Ha%,Mj% 26A +murk m3k L@% 1 +murkier 'm3kI@R Or% 3 +murkiest 'm3kIIst Os% 3 +murkily 'm3kIlI Pu% 3 +murky 'm3kI OD% 2 +murmur 'm3m@R J0%,K6% 22A,2C,3A,6A +murmured 'm3m@d Jc%,Jd% 22A,2C,3A,6A +murmuring 'm3m@rIN Jb% 32A,2C,3A,6A +murmurs 'm3m@z Ja%,Kj% 22A,2C,3A,6A +murphies 'm3fIz Kj$ 2 +murphy 'm3fI K8$ 2 +murrain 'mVrIn L@$ 2 +muscatel ,mVsk@'tel L@$ 3 +muscle 'mVsl I2%,M6% 22C +muscle-bound 'mVsl-baUnd OA% 3 +muscled 'mVsld Ic%,Id% 22C +muscleman 'mVslm&n Ki% 3 +musclemen 'mVslmen Kj% 3 +muscles 'mVslz Ia%,Mj% 22C +muscling 'mVslIN Ib% 22C +muscular 'mVskjUl@R OA% 3 +muse mjuz I2%,K6% 12A,3A +mused mjuzd Ic%,Id% 12A,3A +muses 'mjuzIz Ia%,Kj% 22A,3A +museum mju'zI@m K6% 3 +museums mju'zI@mz Kj% 3 +mush mVS L@% 1 +mushier 'mVSI@R Or% 3 +mushiest 'mVSIIst Os% 3 +mushroom 'mVSrUm I0%,K6% 22C +mushroomed 'mVSrUmd Ic%,Id% 22C +mushrooming 'mVSrUmIN Ib% 32C +mushrooms 'mVSrUmz Ia%,Kj% 22C +mushy 'mVSI OD% 2 +music 'mjuzIk L@% 2 +music-box 'mjuzIk-b0ks K7% 3 +music-boxes 'mjuzIk-b0ksIz Kj% 4 +music-hall 'mjuzIk-hOl K6% 3 +music-halls 'mjuzIk-hOlz Kj% 3 +music-stand 'mjuzIk-st&nd K6% 3 +music-stands 'mjuzIk-st&ndz Kj% 3 +music-stool 'mjuzIk-stul K6% 3 +music-stools 'mjuzIk-stulz Kj% 3 +musical 'mjuzIkl K6%,OA% 3 +musical-box 'mjuzIkl-b0ks K7% 4 +musical-boxes 'mjuzIkl-b0ksIz Kj% 5 +musically 'mjuzIklI Pu% 3 +musicals 'mjuzIklz Kj% 3 +musician mju'zISn K6% 3 +musicians mju'zISnz Kj% 3 +musicianship mju'zISnSIp L@% 4 +musing 'mjuzIN Ib% 22A,3A +musingly 'mjuzINlI Pu% 3 +musk mVsk L@$ 1 +musk-deer 'mVsk-dI@R K9$ 2 +musk-rose 'mVsk-r@Uz K6$ 2 +musk-roses 'mVsk-r@UzIz Kj$ 3 +musket 'mVskIt K6% 2 +musketeer ,mVskI'tI@R K6% 3 +musketeers ,mVskI'tI@z Kj% 3 +musketry 'mVskItrI L@$ 3 +muskets 'mVskIts Kj% 2 +muskier 'mVskI@R Or$ 3 +muskiest 'mVskIIst Os$ 3 +muskrat 'mVskr&t K6$ 2 +muskrats 'mVskr&ts Kj$ 2 +musky 'mVskI OD% 2 +muslin 'mVzlIn L@% 2 +musquash 'mVskw0S L@$ 2 +muss mVs H1$,M7$ 16A,15B +mussed mVst Hc%,Hd% 16A,15B +mussel 'mVsl K6% 2 +mussels 'mVslz Kj% 2 +musses 'mVsIz Ha$,Mj$ 26A,15B +mussing 'mVsIN Hb$ 26A,15B +must mVst G5*,M6% 15 +mustachio m@'stASI@U K6$ 4 +mustachios m@'stASI@Uz Kj$ 4 +mustang 'mVst&N K6$ 2 +mustangs 'mVst&Nz Kj$ 2 +mustard 'mVst@d L@% 2 +muster 'mVst@R J0%,K6% 22A,6A,15B +mustered 'mVst@d Jc%,Jd% 22A,6A,15B +mustering 'mVst@rIN Jb% 32A,6A,15B +musters 'mVst@z Ja$,Kj$ 22A,6A,15B +mustier 'mVstI@R Or% 3 +mustiest 'mVstIIst Os% 3 +mustiness 'mVstIn@s L@% 3 +mustn't 'mVsnt Gg% 2 +musts mVsts Mj$ 1 +musty 'mVstI OD% 2 +mutability ,mjut@'bIlItI L@% 5 +mutable 'mjut@bl OA% 3 +mutation mju'teISn M6% 3 +mutations mju'teISnz Mj% 3 +mutatis mutandis mu,tAtIs mu't&ndIs Pu$ 6 +mute mjut H2$,K6%,OA% 16A +muted 'mjutId Hc$,Hd% 26A +mutely 'mjutlI Pu% 2 +mutes mjuts Ha$,Kj% 16A +mutilate 'mjutIleIt H2% 36A +mutilated 'mjutIleItId Hc%,Hd% 46A +mutilates 'mjutIleIts Ha% 36A +mutilating 'mjutIleItIN Hb% 46A +mutilation ,mjutI'leISn M6% 4 +mutilations ,mjutI'leISnz Mj% 4 +mutineer ,mjutI'nI@R K6% 3 +mutineers ,mjutI'nI@z Kj% 3 +muting 'mjutIN Hb$ 26A +mutinied 'mjutInId Ic%,Id% 32A,3A +mutinies 'mjutInIz Ia%,Mj% 32A,3A +mutinous 'mjutIn@s OA% 3 +mutiny 'mjutInI I3%,M8% 32A,3A +mutinying 'mjutInIIN Ib% 42A,3A +mutt mVt K6$ 1 +mutter 'mVt@R J0%,K6% 22A,2C,6A,14 +muttered 'mVt@d Jc%,Jd% 22A,2C,6A,14 +mutterer 'mVt@r@R K6% 3 +mutterers 'mVt@r@z Kj% 3 +muttering 'mVt@rIN Jb% 32A,2C,6A,14 +mutters 'mVt@z Ja%,Kj% 22A,2C,6A,14 +mutton 'mVtn L@% 2 +mutton-head 'mVtn-hed K6$ 3 +mutton-heads 'mVtn-hedz Kj$ 3 +mutts mVts Kj$ 1 +mutual 'mjutSU@l OA% 3 +mutually 'mjutSU@lI Pu% 4 +muzzier 'mVzI@R Or% 3 +muzziest 'mVzIIst Os% 3 +muzzle 'mVzl H2%,K6% 26A +muzzle-velocities ,mVzl-vI'l0sItIz Kj$ 6 +muzzle-velocity ,mVzl-vI'l0sItI K8$ 6 +muzzled 'mVzld Hc%,Hd% 26A +muzzles 'mVzlz Ha%,Kj% 26A +muzzling 'mVzlIN Hb% 26A +muzzy 'mVzI OD% 2 +my maI OA* 1 +mycology maI'k0l@dZI L@$ 4 +myelitis maI@'laItIs L@$ 4 +myna 'maIn@ K6$ 2 +mynah 'maIn@ K6$ 2 +mynahs 'maIn@z Kj$ 2 +mynas 'maIn@z Kj$ 2 +myopia maI'@UpI@ L@% 4 +myopic maI'0pIk OA% 3 +myriad 'mIrI@d K6%,Oq% 3 +myriads 'mIrI@dz Kj% 3 +myrmidon 'm3mId@n K6$ 3 +myrmidons 'm3mId@nz Kj$ 3 +myrrh m3R L@% 1 +myrtle 'm3tl K6% 2 +myrtles 'm3tlz Kj$ 2 +myself maI'self Qx% 2 +mysteries 'mIst@rIz Mj% 3 +mysterious mI'stI@rI@s OA% 4 +mysteriously mI'stI@rI@slI Pu% 5 +mystery 'mIst@rI M8% 3 +mystic 'mIstIk K6%,OA% 2 +mystical 'mIstIkl OA% 3 +mysticism 'mIstIsIz@m L@% 4 +mystics 'mIstIks Kj% 2 +mystification ,mIstIfI'keISn M6% 5 +mystifications ,mIstIfI'keISnz Mj% 5 +mystified 'mIstIfaId Hc%,Hd% 36A +mystifies 'mIstIfaIz Ha% 36A +mystify 'mIstIfaI H3% 36A +mystifying 'mIstIfaIIN Hb% 46A +mystique mI'stik K6% 2 +mystiques mI'stiks Kj$ 2 +myth mIT M6% 1 +mythical 'mITIkl OA% 3 +mythological ,mIT@'l0dZIkl OA% 5 +mythologies mI'T0l@dZIz Mj% 4 +mythologist mI'T0l@dZIst K6% 4 +mythologists mI'T0l@dZIsts Kj% 4 +mythology mI'T0l@dZI M8% 4 +myths mITs Mj% 1 +myxomatosis ,mIks@m@'t@UsIs L@% 5 +n en Ki$ 1 +n's enz Kj$ 1 +n_ee neI OA% 1 +n_eglig_e 'neglIZeI M6% 3 +n_eglig_es 'neglIZeIz Mj% 3 +na"ive naI'iv OA% 2 +nab n&b H4% 1 +nabbed n&bd Hc%,Hd% 1 +nabbing 'n&bIN Hb$ 2 +nabob 'neIb0b K6$ 2 +nabobs 'neIb0bz Kj$ 2 +nabs n&bz Ha% 1 +nacelle n&'sel K6$ 2 +nacelles n&'selz Kj$ 2 +nacre 'neIk@R L@$ 2 +nadir 'neIdI@R K6% 2 +nadirs 'neIdI@z Kj$ 2 +nag n&g J4%,K6% 12A,2C,3A,6A +nagged n&gd Jc%,Jd% 12A,2C,3A,6A +nagger 'n&g@R K6% 2 +naggers 'n&g@z Kj% 2 +nagging 'n&gIN Jb% 22A,2C,3A,6A +nags n&gz Ja%,Kj% 12A,2C,3A,6A +naiad 'naI&d K6$ 2 +naiades 'naI&diz Kj$ 3 +naiads 'naI&dz Kj$ 2 +nail neIl H0%,K6% 115A,15B +nail-polish 'neIl-p0lIS M7% 3 +nail-polishes 'neIl-p0lISIz Mj$ 4 +nail-scissors 'neIl-sIz@z Kj% 3 +nail-varnish 'neIl-vAnIS M7% 3 +nail-varnishes 'neIl-vAnISIz Mj$ 4 +nailbrush 'neIlbrVS K7% 2 +nailbrushes 'neIlbrVSIz Kj% 3 +nailed neIld Hc%,Hd% 115A,15B +nailfile 'neIlfaIl K6% 2 +nailfiles 'neIlfaIlz Kj% 2 +nailing 'neIlIN Hb% 215A,15B +nails neIlz Ha%,Kj% 115A,15B +nainsook 'neInsUk L@$ 2 +naira 'naIr@ K6$ 2 +nairas 'naIr@z Kj$ 2 +naive naI'iv OA% 2 +naively naI'ivlI Pu% 3 +naivet_e naI'iv@tI M6$ 4 +naivet_es naI'iv@tIz Mj$ 4 +naiveties naI'iv@tIz Mj% 4 +naivety naI'iv@tI M8% 4 +naked 'neIkId OA% 2 +nakedly 'neIkIdlI Pu% 3 +nakedness 'neIkIdn@s L@% 3 +namby-pambies ,n&mbI-'p&mbIz Kj% 4 +namby-pamby ,n&mbI-'p&mbI K8%,OA% 4 +name neIm H2%,K6* 16A,14,23 +name-day 'neIm-deI K6$ 2 +name-days 'neIm-deIz Kj$ 2 +name-drop 'neIm-dr0p I4$ 22A +name-dropped 'neIm-dr0pt Ic$,Id$ 22A +name-dropping 'neIm-dr0pIN Ib%,L@% 32A +name-drops 'neIm-dr0ps Ia$ 22A +name-part 'neIm-pAt K6$ 2 +name-parts 'neIm-pAts Kj$ 2 +named neImd Hc%,Hd% 16A,14,23 +nameless 'neImlIs OA% 2 +namely 'neImlI Pu% 2 +nameplate 'neImpleIt K6% 2 +nameplates 'neImpleIts Kj% 2 +names neImz Ha%,Kj% 16A,14,23 +namesake 'neImseIk K6% 2 +namesakes 'neImseIks Kj% 2 +naming 'neImIN Hb% 26A,14,23 +nankeen n&n'kin L@$ 2 +nannies 'n&nIz Kj% 2 +nanny 'n&nI K8% 2 +nanny-goat 'n&nI-g@Ut K6% 3 +nanny-goats 'n&nI-g@Uts Kj% 3 +nap n&p I4%,M6% 1 +napalm 'neIpAm L@% 2 +nape neIp K6% 1 +napery 'neIp@rI L@$ 3 +napes neIps Kj$ 1 +naphtha 'n&fT@ L@% 2 +naphthalene 'n&fT@lin L@% 3 +napkin 'n&pkIn K6% 2 +napkin-ring 'n&pkIn-rIN K6% 3 +napkin-rings 'n&pkIn-rINz Kj% 3 +napkins 'n&pkInz Kj% 2 +napped n&pt Ic$,Id$ 1 +nappies 'n&pIz Kj% 2 +napping 'n&pIN Ib% 2 +nappy 'n&pI K8% 2 +naps n&ps Ia$,Mj% 1 +narcissi nA'sIsaI Kj% 3 +narcissism 'nAsIsIz@m L@% 4 +narcissus nA'sIs@s K7% 3 +narcissuses nA'sIs@sIz Kj$ 4 +narcotic nA'k0tIk K6%,OA% 3 +narcotics nA'k0tIks Kj% 3 +nark nAk H0$,K6% 1 +narked nAkt Hc$,Hd% 1 +narking 'nAkIN Hb$ 2 +narks nAks Ha$,Kj% 1 +narrate n@'reIt H2% 26A +narrated n@'reItId Hc%,Hd% 36A +narrates n@'reIts Ha% 26A +narrating n@'reItIN Hb% 36A +narration n@'reISn M6% 3 +narrations n@'reISnz Mj% 3 +narrative 'n&r@tIv M6% 3 +narratives 'n&r@tIvz Mj% 3 +narrator n@'reIt@R K6% 3 +narrators n@'reIt@z Kj% 3 +narrow 'n&r@U J0%,K6%,OC% 22A,6A +narrow-minded ,n&r@U-'maIndId OA% 4 +narrow-mindedly ,n&r@U-'maIndIdlI Pu% 5 +narrow-mindedness ,n&r@U-'maIndIdn@s L@% 5 +narrowed 'n&r@Ud Jc%,Jd% 22A,6A +narrower 'n&r@U@R Or% 3 +narrowest 'n&r@UIst Os% 3 +narrowing 'n&r@UIN Jb% 32A,6A +narrowly 'n&r@UlI Pu% 3 +narrowness 'n&r@Un@s L@% 3 +narrows 'n&r@Uz Ja%,Kj% 22A,6A +narwhal 'nAw@l K6$ 2 +narwhals 'nAw@lz Kj$ 2 +nasal 'neIzl K6%,OA% 2 +nasalize 'neIz@laIz H2$ 36A +nasalized 'neIz@laIzd Hc%,Hd% 36A +nasalizes 'neIz@laIzIz Ha$ 46A +nasalizing 'neIz@laIzIN Hb$ 46A +nasals 'neIzlz Kj% 2 +nascent 'n&snt OA$ 2 +nastier 'nAstI@R Or% 3 +nastiest 'nAstIIst Os% 3 +nastily 'nAstIlI Pu% 3 +nastiness 'n&stIn@s L@% 3 +nasturtium n@'st3S@m K6% 3 +nasturtiums n@'st3S@mz Kj% 3 +nasty 'nAstI OD% 2 +natal 'neItl OA$ 2 +nation 'neISn K6% 2 +national 'n&Sn@l K6%,OA% 2 +nationalism 'n&Sn@lIz@m L@% 4 +nationalist 'n&Sn@lIst K6%,OA% 3 +nationalistic ,n&Sn@'lIstIk OA% 4 +nationalists 'n&Sn@lIsts Kj% 3 +nationalities ,n&S@'n&lItIz Mj% 5 +nationality ,n&S@'n&lItI M8% 5 +nationalization ,n&Sn@laI'zeISn M6% 5 +nationalizations ,n&Sn@laI'zeISnz Mj$ 5 +nationalize 'n&Sn@laIz H2% 36A +nationalized 'n&Sn@laIzd Hc%,Hd% 36A +nationalizes 'n&Sn@laIzIz Ha% 46A +nationalizing 'n&Sn@laIzIN Hb% 46A +nationally 'n&Sn@lI Pu% 3 +nationals 'n&Sn@lz Kj% 2 +nations 'neISnz Kj% 2 +nationwide 'neISnwaId OA%,Pu% 3 +native 'neItIv K6%,OA% 2 +natives 'neItIvz Kj% 2 +nativities n@'tIvItIz Kj% 4 +nativity n@'tIvItI K8% 4 +natter 'n&t@R I0% 22A,2C +nattered 'n&t@d Ic%,Id% 22A,2C +nattering 'n&t@rIN Ib% 32A,2C +natters 'n&t@z Ia% 22A,2C +nattier 'n&tI@R Or% 3 +nattiest 'n&tIIst Os% 3 +nattily 'n&tIlI Pu% 3 +natty 'n&tI OD% 2 +natural 'n&tSr@l K6%,OA% 2 +naturalism 'n&tSr@lIz@m L@% 4 +naturalist 'n&tSr@lIst K6% 3 +naturalistic ,n&tSr@'lIstIk OA% 4 +naturalists 'n&tSr@lIsts Kj% 3 +naturalization ,n&tSr@laI'zeISn L@% 5 +naturalize 'n&tSr@laIz J2$ 32A,6A +naturalized 'n&tSr@laIzd Jc%,Jd% 32A,6A +naturalizes 'n&tSr@laIzIz Ja$ 42A,6A +naturalizing 'n&tSr@laIzIN Jb$ 42A,6A +naturally 'n&tSr@lI Pu% 3 +naturalness 'n&tSr@lnIs L@% 3 +naturals 'n&tSr@lz Kj% 3 +nature 'neItS@R M6% 2 +natures 'neItS@z Mj% 2 +naturism 'neItS@rIz@m L@% 4 +naturist 'neItS@rIst K6% 3 +naturists 'neItS@rIsts Kj% 3 +naught nOt M6% 1 +naughtier 'nOtI@R Or% 3 +naughtiest 'nOtIIst Os% 3 +naughtily 'nOtIlI Pu% 3 +naughtiness 'nOtIn@s L@% 3 +naughts nOts Mj% 1 +naughty 'nOtI OD% 2 +nausea 'nOsI@ L@% 3 +nauseate 'nOsIeIt H2$ 36A +nauseated 'nOsIeItId Hc$,Hd% 46A +nauseates 'nOsIeIts Ha$ 36A +nauseating 'nOsIeItIN Hb% 46A +nauseous 'nOsI@s OA% 3 +nautch nOtS K7$ 1 +nautch-girl 'nOtS-g3l K6$ 2 +nautch-girls 'nOtS-g3lz Kj$ 2 +nautches 'nOtSIz Kj$ 2 +nautical 'nOtIkl OA% 3 +nautilus 'nOtIl@s K7$ 3 +nautiluses 'nOtIl@sIz Kj$ 4 +naval 'neIvl OA% 2 +nave neIv K6% 1 +navel 'neIvl K6% 2 +navels 'neIvlz Kj% 2 +naves neIvz Kj% 1 +navies 'neIvIz Kj% 2 +navigability ,n&vIg@'bIlItI L@% 6 +navigable 'n&vIg@bl OA% 4 +navigate 'n&vIgeIt J2% 32A,6A +navigated 'n&vIgeItId Jc%,Jd% 42A,6A +navigates 'n&vIgeIts Ja% 32A,6A +navigating 'n&vIgeItIN Jb% 42A,6A +navigation ,n&vI'geISn L@% 4 +navigator 'n&vIgeIt@R K6% 4 +navigators 'n&vIgeIt@z Kj% 4 +navvies 'n&vIz Kj% 2 +navvy 'n&vI K8% 2 +navy 'neIvI K8% 2 +nay neI Pu% 1 +ne plus ultra ,ni ,plVs 'Vltr@ Ki$ 4 +ne'er ne@R Pu$ 1 +ne'er-do-well 'ne@-du-wel K6% 3 +ne'er-do-wells 'ne@-du-welz Kj% 3 +neap nip K6$ 1 +neap-tide 'nip-taId K6% 2 +neap-tides 'nip-taIdz Kj% 2 +neaps nips Kj$ 1 +near nI@R J0%,OC*,Pu*,T-* 12A,6A +near-sighted nI@-'saItId OA% 3 +nearby 'nI@baI OA% 2 +neared nI@d Jc%,Jd% 12A,6A +nearer 'nI@r@R Or%,Pu% 2 +nearest 'nI@rIst Os%,Pu% 2 +nearing 'nI@rIN Jb% 22A,6A +nearly 'nI@lI Pu% 2 +nearness 'nI@n@s L@% 2 +nears nI@z Ja% 12A,6A +nearside 'nI@saId K6% 2 +nearsides 'nI@saIdz Kj$ 2 +neat nit OC% 1 +neater 'nit@R Or% 2 +neatest 'nitIst Os% 2 +neatly 'nitlI Pu% 2 +neatness 'nitn@s L@% 2 +nebula 'nebjUl@ K6% 3 +nebulae 'nebjUli Kj% 3 +nebular 'nebjUl@R OA$ 3 +nebulas 'nebjUl@z Kj% 3 +nebulous 'nebjUl@s OA% 3 +necessaries 'nes@s@rIz Kj% 4 +necessarily ,nes@'ser@lI Pu% 5 +necessary 'nes@s@rI K8%,OA% 4 +necessitate nI'sesIteIt H2% 46A,6C +necessitated nI'sesIteItId Hc%,Hd% 56A,6C +necessitates nI'sesIteIts Ha% 46A,6C +necessitating nI'sesIteItIN Hb% 56A,6C +necessities nI'sesItIz Mj% 4 +necessitous nI'sesIt@s OA$ 4 +necessity nI'sesItI M8% 4 +neck nek I0%,K6% 1 +neckband 'nekb&nd K6% 2 +neckbands 'nekb&ndz Kj% 2 +neckcloth 'nek+kl0T K6$ 2 +neckcloths 'nek+kl0Ts Kj$ 2 +necked nekt Ic%,Id% 1 +neckerchief 'nek@tSIf K6$ 3 +neckerchiefs 'nek@tSIfs Kj$ 3 +necking 'nekIN Ib% 2 +necklace 'nekl@s K6% 2 +necklaces 'nekl@sIz Kj% 3 +necklet 'neklIt K6$ 2 +necklets 'neklIts Kj$ 2 +neckline 'neklaIn K6% 2 +necklines 'neklaInz Kj% 2 +necks neks Ia%,Kj% 1 +necktie 'nektaI K6% 2 +neckties 'nektaIz Kj% 2 +neckwear 'nekwe@R L@% 2 +necromancer 'nekr@m&ns@R K6$ 4 +necromancers 'nekr@m&ns@z Kj$ 4 +necromancy 'nekr@m&nsI L@$ 4 +necropolis nI'kr0p@lIs K7$ 4 +necropolises nI'kr0p@lIsIz Kj$ 5 +nectar 'nekt@R L@% 2 +nectarine 'nekt@rIn K6% 3 +nectarines 'nekt@rInz Kj% 3 +need nid G0*,H0*,M6* 15,6A,6E,7A +needed 'nidId Gc%,Gd%,Hc%,Hd% 25,6A,6E,7A +needful 'nidf@l OA% 2 +needfully 'nidf@lI Pu$ 3 +needier 'nidI@R Or% 3 +neediest 'nidIIst Os% 3 +needing 'nidIN Gb%,Hb% 25,6A,6E,7A +needle 'nidl H2%,K6% 26A,15A +needlecraft 'nidlkrAft L@% 3 +needled 'nidld Hc%,Hd% 26A,15A +needles 'nidlz Ha%,Kj% 26A,15A +needless 'nidl@s OA% 2 +needlessly 'nidl@slI Pu% 3 +needlewoman 'nidlwUm@n Ki% 4 +needlewomen 'nidlwImIn Kj% 4 +needlework 'nidlw3k L@% 3 +needling 'nidlIN Hb% 26A,15A +needn't 'nidnt Gg% 2 +needs nidz Ga%,Ha%,Mj%,Pu$ 15,6A,6E,7A +needy 'nidI OD% 2 +nefarious nI'fe@rI@s OA% 4 +nefariously nI'fe@rI@slI Pu% 5 +nefariousness nI'fe@rI@sn@s L@$ 5 +negate nI'geIt H2% 26A +negated nI'geItId Hc%,Hd% 36A +negates nI'geIts Ha% 26A +negating nI'geItIN Hb% 36A +negation nI'geISn L@% 3 +negative 'neg@tIv H2$,K6%,OA% 36A +negatived 'neg@tIvd Hc$,Hd$ 36A +negatively 'neg@tIvlI Pu% 4 +negatives 'neg@tIvz Ha%,Kj% 36A +negativing 'neg@tIvIN Hb$ 46A +neglect nI'glekt H0%,L@% 26A,6C,7A +neglected nI'glektId Hc%,Hd% 36A,6C,7A +neglectful nI'glektf@l OA% 3 +neglectfully nI'glektf@lI Pu% 4 +neglectfulness nI'glektf@ln@s L@% 4 +neglecting nI'glektIN Hb% 36A,6C,7A +neglects nI'glekts Ha% 26A,6C,7A +negligee 'neglIZeI M6% 3 +negligees 'neglIZeIz Mj% 3 +negligence 'neglIdZ@ns L@% 3 +negligent 'neglIdZ@nt OA% 3 +negligently 'neglIdZ@ntlI Pu% 4 +negligible 'neglIdZ@bl OA% 4 +negotiable nI'g@USI@bl OA% 4 +negotiate nI'g@USIeIt J2% 42A,3A,6A,14 +negotiated nI'g@USIeItId Jc%,Jd% 52A,3A,6A,14 +negotiates nI'g@USIeIts Ja% 42A,3A,6A,14 +negotiating nI'g@USIeItIN Jb% 52A,3A,6A,14 +negotiation nI,g@USI'eISn M6% 5 +negotiations nI,g@USI'eISnz Mj% 5 +negotiator nI'g@USIeIt@R K6% 5 +negotiators nI'g@USIeIt@z Kj% 5 +negus 'nig@s L@$ 2 +neigh neI I0%,K6% 1 +neighbour 'neIb@R J0$,K6% 23A,6A +neighboured 'neIb@d Jc$,Jd$ 23A,6A +neighbourhood 'neIb@hUd K6% 3 +neighbourhoods 'neIb@hUdz Kj% 3 +neighbouring 'neIb@rIN Jb% 33A,6A +neighbourliness 'neIb@lIn@s L@% 4 +neighbourly 'neIb@lI OA% 3 +neighbours 'neIb@z Ja$,Kj% 23A,6A +neighed neId Ic%,Id% 1 +neighing 'neIIN Ib% 2 +neighs neIz Ia%,Kj% 1 +neither 'naID@R OA%,Pu%,Qx%,V-% 2 +nem con ,nem 'k0n Pu$ 2 +nemeses 'nem@siz Kj$ 3 +nemesis 'nem@sIs Ki% 3 +neo- 'ni@U- U-% 2 +neocolonialism ,ni@Uk@'l@UnI@lIz@m L@% 8 +neolithic ,ni@'lITIk OA% 4 +neologism ni'0l@dZIz@m M6% 5 +neologisms ni'0l@dZIz@mz Mj% 5 +neon 'ni0n L@% 2 +neophyte 'ni@faIt K6$ 3 +neophytes 'ni@faIts Kj$ 3 +neoplasm 'ni@Upl&z@m K6$ 4 +neoplasms 'ni@Upl&z@mz Kj$ 4 +nephew 'nevju K6% 2 +nephews 'nevjuz Kj% 2 +nephritis nI'fraItIs L@$ 3 +nepotism 'nep@tIz@m L@% 4 +nereid 'nI@rIId K6$ 3 +nereids 'nI@rIIdz Kj$ 3 +nerve n3v H2%,M6% 16A,14,16A +nerve-cell 'n3v-sel K6% 2 +nerve-cells 'n3v-selz Kj% 2 +nerve-centre 'n3v-sent@R K6% 3 +nerve-centres 'n3v-sent@z Kj% 3 +nerve-racking 'n3v-r&kIN OA% 3 +nerved n3vd Hc%,Hd% 16A,14,16A +nerveless 'n3vl@s OA% 2 +nervelessly 'n3vl@slI Pu% 3 +nerves n3vz Ha$,Mj% 16A,14,16A +nerving 'n3vIN Hb$ 26A,14,16A +nervous 'n3v@s OA% 2 +nervously 'n3v@slI Pu% 3 +nervousness 'n3v@sn@s L@% 3 +nervy 'n3vI OA% 2 +nescience 'nesI@ns L@$ 3 +nescient 'nesI@nt OA$ 3 +ness nes K7$ 1 +nesses 'nesIz Kj$ 2 +nest nest I0%,K6% 12A,2C +nest-egg 'nest-eg K6% 2 +nest-eggs 'nest-egz Kj% 2 +nested 'nestId Ic%,Id% 22A,2C +nesting 'nestIN Ib% 22A,2C +nestle 'nesl J2% 22C,15A +nestled 'nesld Jc%,Jd% 22C,15A +nestles 'neslz Ja% 22C,15A +nestling 'neslIN Jb% 22C,15A +nestling 'nestlIN K6% 2 +nestlings 'nestlINz Kj% 2 +nests nests Ia%,Kj% 12A,2C +net net H4%,M6%,OA% 16A +netball 'netbOl L@% 2 +nether 'neD@R OA% 2 +nethermost 'neD@m@Ust OA% 3 +nets nets Ha%,Mj% 16A +nett net H0$,OA$ 16A +netted 'netId Hc%,Hd% 26A +netting 'netIN Hb%,L@% 26A +nettle 'netl H2%,K6% 26A +nettled 'netld Hc%,Hd% 26A +nettlerash 'netlr&S L@$ 3 +nettles 'netlz Ha%,Kj% 26A +nettling 'netlIN Hb% 26A +netts nets Ha$ 16A +network 'netw3k K6% 2 +networks 'netw3ks Kj% 2 +neural 'njU@r@l OA% 2 +neuralgia njU@'r&ldZ@ L@% 3 +neuralgic nju'r&ldZIk OA$ 3 +neurasthenia ,njU@r@s'TinI@ L@% 5 +neurasthenic ,njur@s'TenIk K6$,OA$ 4 +neurasthenics ,njur@s'TenIks Kj$ 4 +neuritis njU@'raItIs L@$ 3 +neurologist njU@'r0l@dZIst K6% 4 +neurologists njU@'r0l@dZIsts Kj% 4 +neurology njU@'r0l@dZI L@% 4 +neuroses njU@'r@Usiz Kj% 3 +neurosis njU@'r@UsIs Ki% 3 +neurotic njU@'r0tIk K6%,OA% 3 +neurotically njU@'r0tIklI Pu% 4 +neurotics njU@'r0tIks Kj% 3 +neuter 'njut@R H0$,K6%,OA% 2 +neutered 'njut@d Hc$,Hd% 2 +neutering 'njut@rIN Hb$ 3 +neuters 'njut@z Ha$,Kj$ 2 +neutral 'njutr@l K6%,OA% 2 +neutrality nju'tr&lItI L@% 4 +neutralization ,njutr@laI'zeISn M6% 5 +neutralizations ,njutr@laI'zeISnz Mj% 5 +neutralize 'njutr@laIz H2% 36A +neutralized 'njutr@laIzd Hc%,Hd% 36A +neutralizes 'njutr@laIzIz Ha% 46A +neutralizing 'njutr@laIzIN Hb% 46A +neutrals 'njutr@lz Kj% 2 +neutron 'njutr0n K6% 2 +neutrons 'njutr0nz Kj% 2 +never 'nev@R Pu* 2 +nevermore ,nev@'mOR Pu% 3 +nevertheless ,nev@D@'les Pu%,V-% 4 +new nju OC*,Pu* 1 +newcomer 'njukVm@R K6% 3 +newcomers 'njukVm@z Kj% 3 +newel 'nju@l K6$ 2 +newels 'nju@lz Kj$ 2 +newer 'nju@R Or% 2 +newest 'njuIst Os% 2 +newfangled ,nju'f&Ngld OA% 3 +newly 'njulI Pu% 2 +newlywed 'njulIwed K6% 3 +newlyweds 'njulIwedz Kj% 3 +newness 'njun@s L@% 2 +news njuz L@% 1 +newsagent 'njuzeIdZ@nt K6% 3 +newsagents 'njuzeIdZ@nts Kj% 3 +newsboy 'njuzboI K6% 2 +newsboys 'njuzboIz Kj% 2 +newscast 'njuzkAst K6% 2 +newscaster 'njuzkAst@R K6% 3 +newscasters 'njuzkAst@z Kj% 3 +newscasts 'njuzkAsts Kj% 2 +newsdealer 'njuzdil@R K6% 3 +newsdealers 'njuzdil@z Kj% 3 +newsflash 'njuzfl&S K7% 2 +newsflashes 'njuzfl&SIz Kj% 3 +newsier 'njuzI@R Or$ 3 +newsiest 'njuzIIst Os$ 3 +newsless 'njuzl@s OA$ 2 +newsletter 'njuzlet@R K6% 3 +newsletters 'njuzlet@z Kj% 3 +newsmonger 'njuzmVNg@R K6$ 3 +newsmongers 'njuzmVNg@z Kj$ 3 +newspaper 'njuspeIp@R K6% 3 +newspaperman 'njuspeIp@m&n Ki% 4 +newspapermen 'njuspeIp@men Kj% 4 +newspapers 'njuspeIp@z Kj% 3 +newsprint 'njuzprInt L@% 2 +newsreel 'njuzril K6% 2 +newsreels 'njuzrilz Kj% 2 +newsroom 'njuzrum K6% 2 +newsrooms 'njuzrumz Kj% 2 +newssheet 'njuz+Sit K6% 2 +newssheets 'njuz+Sits Kj% 2 +newsstand 'njuz+st&nd K6% 2 +newsstands 'njuz+st&ndz Kj% 2 +newsvendor 'njuzvend@R K6% 3 +newsvendors 'njuzvend@z Kj% 3 +newsworthy 'njuzw3DI OA% 3 +newsy 'njuzI OD% 2 +newt njut K6% 1 +newts njuts Kj% 1 +next nekst K9%,OA*,Pu*,T-* 1 +nexus 'neks@s K7% 2 +nexuses 'neks@sIz Kj$ 3 +nib nIb K6% 1 +nibble 'nIbl J2%,K6% 22A,3A,6A +nibbled 'nIbld Jc%,Jd% 22A,3A,6A +nibbles 'nIblz Ja%,Kj% 22A,3A,6A +nibbling 'nIblIN Jb% 22A,3A,6A +nibs nIbz Kj% 1 +nice naIs OB% 1 +nicely 'naIslI Pu% 2 +niceness 'naIsn@s L@% 2 +nicer 'naIs@R Or% 2 +nicest 'naIsIst Os% 2 +niceties 'naIs@tIz Mj% 3 +nicety 'naIs@tI M8$ 3 +niche nItS K6% 1 +niches 'nItSIz Kj% 2 +nick nIk H0%,K6% 1 +nicked nIkt Hc%,Hd% 1 +nickel 'nIkl H4%,M6% 2 +nickelled 'nIkld Hc$,Hd$ 2 +nickelling 'nIk@lIN Hb$ 3 +nickels 'nIklz Ha$,Mj$ 2 +nicking 'nIkIN Hb% 2 +nicknack 'nIkn&k K6% 2 +nicknacks 'nIkn&ks Kj% 2 +nickname 'nIkneIm H2%,K6% 26A,23 +nicknamed 'nIkneImd Hc%,Hd% 26A,23 +nicknames 'nIkneImz Ha%,Kj% 26A,23 +nicknaming 'nIkneImIN Hb% 36A,23 +nicks nIks Ha%,Kj% 1 +nicotine 'nIk@tin L@% 3 +niece nis K6% 1 +nieces 'nisIz Kj% 2 +niff nIf K6$ 1 +niffier 'nIfI@R Or$ 3 +niffiest 'nIfIIst Os$ 3 +niffs nIfs Kj$ 1 +niffy 'nIfI OD$ 2 +niftier 'nIftI@R Or% 3 +niftiest 'nIftIIst Os% 3 +nifty 'nIftI OD% 2 +niggard 'nIg@d K6$ 2 +niggardliness 'nIg@dlIn@s L@% 4 +niggardly 'nIg@dlI OA% 3 +niggards 'nIg@dz Kj$ 2 +nigger 'nIg@R K6% 2 +niggers 'nIg@z Kj% 2 +niggle 'nIgl I2% 2 +niggled 'nIgld Ic%,Id% 2 +niggles 'nIglz Ia% 2 +niggling 'nIglIN Ib%,OA% 2 +nigh naI Pu$,T-$ 1 +nigher 'naI@R Pu$,T-$ 2 +nighest 'naIIst Pu$,T-$ 2 +night naIt M6* 1 +night-bell 'naIt-bel K6$ 2 +night-bells 'naIt-belz Kj$ 2 +night-bird 'naIt-b3d K6% 2 +night-birds 'naIt-b3dz Kj% 2 +night-light 'naIt-laIt K6% 2 +night-lights 'naIt-laIts Kj% 2 +night-line 'naIt-laIn K6$ 2 +night-lines 'naIt-laInz Kj$ 2 +night-porter naIt-'pOt@R K6% 3 +night-porters naIt-'pOt@z Kj% 3 +night-soil 'naIt-soIl L@% 2 +night-stop 'naIt-st0p K6$ 2 +night-stops 'naIt-st0ps Kj$ 2 +night-time 'naIt-aIm L@% 2 +night-watch 'naIt-w0tS K7% 2 +night-watches 'naIt-w0tSIz Kj% 3 +night-watchman naIt-'w0tSm@n Ki% 3 +night-watchmen naIt-'w0tSm@n Kj% 3 +nightcap 'naItk&p K6% 2 +nightcaps 'naItk&ps Kj% 2 +nightclub 'naItklVb K6% 2 +nightclubs 'naItklVbz Kj% 2 +nightdress 'naItdres K7% 2 +nightdresses 'naItdresIz Kj% 3 +nightfall 'naItfOl L@% 2 +nightgown 'naItgaUn K6% 2 +nightgowns 'naItgaUnz Kj% 2 +nightie 'naItI K6% 2 +nighties 'naItIz Kj% 2 +nightingale 'naItINgeIl K6% 3 +nightingales 'naItINgeIlz Kj% 3 +nightjar 'naItdZAR K6% 2 +nightjars 'naItdZAz Kj% 2 +nightlong 'naItl0N OA% 2 +nightly 'naItlI OA%,Pu% 2 +nightmare 'naItme@R K6% 2 +nightmares 'naItme@z Kj% 2 +nightmarish 'naItme@rIS OA% 3 +nights naIts Mj% 1 +nightshade 'naItSeId L@% 2 +nightshirt 'naItS3t K6% 2 +nightshirts 'naItS3ts Kj% 2 +nightwork 'naItw3k L@% 2 +nihilism 'naIIlIz@m L@% 4 +nihilist 'naIIlIst K6$ 3 +nihilistic ,naII'lIstIk OA% 4 +nihilists 'naIIlIsts Kj$ 3 +nil nIl L@% 1 +nimble 'nImbl OB% 2 +nimbleness 'nImbln@s L@% 3 +nimbler 'nImbl@R Or% 2 +nimblest 'nImblIst Os% 2 +nimbly 'nImblI Pu% 2 +nimbus 'nImb@s K7$ 2 +nimbuses 'nImb@sIz Kj$ 3 +niminy-piminy ,nImInI-'pImInI OA$ 6 +nincompoop 'nINk@mpup K6% 3 +nincompoops 'nINk@mpups Kj% 3 +nine naIn K6%,OA% 1 +ninefold 'naInf@Uld OA%,Pu% 2 +ninepence 'naInp@ns K6% 2 +ninepences 'naInp@nsIz Kj% 3 +ninepenny 'naInp@nI OA% 3 +ninepins 'naInpInz Lk% 2 +nines naInz Kj% 1 +nineteen ,naIn'tin K6%,OA% 2 +nineteens ,naIn'tinz Kj% 2 +nineteenth ,naIn'tinT K6%,OA% 2 +nineteenths ,naIn'tinTs Kj% 2 +nineties 'naIntIz Kj% 2 +ninetieth 'naIntI@T K6%,OA% 3 +ninetieths 'naIntI@Ts Kj% 3 +ninety 'naIntI K8%,OA% 2 +ninnies 'nInIz Kj% 2 +ninny 'nInI K8% 2 +ninth naInT K6%,OA% 1 +ninths naInTs Kj% 1 +nip nIp J4%,K6% 12A,2C,6A,15A,15B +nipped nIpt Jc%,Jd% 12A,2C,6A,15A,15B +nipper 'nIp@R K6% 2 +nippers 'nIp@z Kj% 2 +nippier 'nIpI@R Or$ 3 +nippiest 'nIpIIst Os$ 3 +nipping 'nIpIN Jb%,OA% 22A,2C,6A,15A,15B +nipple 'nIpl K6% 2 +nipples 'nIplz Kj% 2 +nippy 'nIpI OD% 2 +nips nIps Ja%,Kj% 12A,2C,6A,15A,15B +nirvana nI@'vAn@ K6$ 3 +nirvanas nI@'vAn@z Kj$ 3 +nisi 'naIsaI OA$,V-$ 2 +nit nIt K6% 1 +nitrate 'naItreIt K6% 2 +nitrates 'naItreIts Kj% 2 +nitre 'naIt@R L@$ 2 +nitric 'naItrIk OA% 2 +nitrochalk ,naItr@U'tSOk L@$ 3 +nitrogen 'naItr@dZ@n L@% 3 +nitroglycerin ,naItr@U'glIs@rin L@% 5 +nitroglycerine ,naItr@U'glIs@rin L@% 5 +nitrous 'naItr@s OA% 2 +nits nIts Kj% 1 +nitty-gritty ,nItI-'grItI L@% 4 +nitwit 'nItwIt K6% 2 +nitwits 'nItwIts Kj% 2 +nitwitted ,nIt'wItId OA% 3 +nix nIks L@$ 1 +no 'nVmb@R Y>% 2 +no n@U K6%,OA*,Pu*,W-* 1 +no one 'n@U wVn Qx% 2 +no-ball 'n@U-bOl K6% 2 +no-balls 'n@U-bOlz Kj% 2 +no-go 'n@U-g@U Oq% 2 +no-man's-land 'n@U-m&nz-l&nd Ki% 3 +no-one 'n@U-wVn Qx% 2 +nob n0b K6$ 1 +nobble 'n0bl H2% 26A +nobbled 'n0bld Hc%,Hd% 26A +nobbles 'n0blz Ha% 26A +nobbling 'n0blIN Hb% 26A +nobility n@U'bIlItI L@% 4 +noble 'n@Ubl K6%,OB% 2 +noble-mindedness ,n@Ubl-'maIndIdn@s L@% 5 +nobleman 'n@Ublm@n Ki% 3 +noblemen 'n@Ublm@n Kj% 3 +nobler 'n@Ubl@R Or% 2 +nobles 'n@Ublz Kj% 2 +noblesse n@U'bles Ki% 2 +noblesse oblige n@U,bles @'bliZ L@% 4 +noblest 'n@UblIst Os% 2 +nobly 'n@UblI Pu% 2 +nobodies 'n@Ub@dIz Kj% 3 +nobody 'n@Ub@dI K8%,Qx% 3 +nobs n0bz Kj% 1 +noctambulist n0k't&mbjUlIst K6$ 4 +noctambulists n0k't&mbjUlIsts Kj$ 4 +nocturnal n0k't3nl OA% 3 +nocturne 'n0kt3n K6% 2 +nocturnes 'n0kt3nz Kj% 2 +nod n0d J4%,K6% 12A,2C,3A,4A,6A,12A,13A +nodded 'n0dId Jc%,Jd% 22A,2C,3A,4A,6A,12A,13A +nodding 'n0dIN Jb% 22A,2C,3A,4A,6A,12A,13A +noddle 'n0dl K6$ 2 +noddles 'n0dlz Kj$ 2 +node n@Ud K6$ 1 +nodes n@Udz Kj$ 1 +nods n0dz Ja%,Kj% 12A,2C,3A,4A,6A,12A,13A +nodular 'n0djUl@R OA$ 3 +nodulated 'n0djUleItId OA$ 4 +nodule 'n0djul K6% 2 +nodules 'n0djulz Kj% 2 +noggin 'n0gIn K6$ 2 +noggins 'n0gInz Kj$ 2 +nohow 'n@UhaU Pu$ 2 +noise noIz H2%,M6% 1 +noised noIzd Hc%,Hd% 1 +noiseless 'noIzl@s OA% 2 +noiselessly 'noIzl@slI Pu% 3 +noiselessness 'noIzl@sn@s L@% 3 +noises 'noIzIz Ha%,Mj% 2 +noisier 'noIzI@R Or% 3 +noisiest 'noIzIIst Os% 3 +noisily 'noIzIlI Pu% 3 +noisiness 'noIzIn@s L@% 3 +noising 'noIzIN Hb$ 2 +noisome 'noIs@m OA$ 2 +noisy 'noIzI OD% 2 +nom de plume ,n0m d@ 'plum Ki% 3 +nomad 'n@Um&d K6% 2 +nomadic n@U'm&dIk OA% 3 +nomads 'n@Um&dz Kj% 2 +nomenclature n@'menkl@tS@R K6% 4 +nomenclatures n@'menkl@tS@z Kj$ 4 +nominal 'n0mInl OA% 3 +nominally 'n0mIn@lI Pu% 4 +nominate 'n0mIneIt H2% 36A,14,23 +nominated 'n0mIneItId Hc%,Hd% 46A,14,23 +nominates 'n0mIneIts Ha% 36A,14,23 +nominating 'n0mIneItIN Hb% 46A,14,23 +nomination ,n0mI'neISn M6% 4 +nominations ,n0mI'neISnz Mj% 4 +nominative 'n0mIn@tIv K6$,OA$ 4 +nominatives 'n0mIn@tIvz Kj$ 4 +nominee ,n0mI'ni K6% 3 +nominees ,n0mI'niz Kj% 3 +noms de plume ,n0m d@ 'plum Kj$ 3 +non compos mentis ,n0n ,k0mp@s 'mentIs OA$ 5 +non sequitur ,n0n 'sekwIt@R K6% 4 +non sequiturs ,n0n 'sekwIt@z Kj% 4 +non- ,n0n- U-% 1 +non-U 'n0n-ju OA$ 2 +non-compliance ,n0n-k@m'plaI@ns L@% 4 +non-contentious ,n0n-k@n'tenS@s OA% 4 +non-interference ,n0n-Int@'fI@r@ns L@% 5 +non-skid 'n0n-skId OA% 2 +nonage 'n@UnIdZ L@$ 2 +nonagenarian ,n0n@dZI'ne@rI@n K6$,OA$ 6 +nonagenarians ,n0n@dZI'ne@rI@nz Kj$ 6 +nonaggression ,n0n@'greSn L@% 4 +nonalignment ,n0n@'laInm@nt L@% 4 +nonce n0ns K6$ 1 +nonce-word 'n0ns-w3d K6$ 2 +nonce-words 'n0ns-w3dz Kj$ 2 +nonces 'n0nsIz Kj$ 2 +nonchalance 'n0nS@l@ns L@% 3 +nonchalant 'n0nS@l@nt OA% 3 +nonchalantly 'n0nS@l@ntlI Pu% 4 +noncombatant n0n'k0mb@t@nt K6% 4 +noncombatants n0n'k0mb@t@nts Kj% 4 +noncommissioned ,n0nk@'mISnd OA% 4 +noncommittal ,n0nk@'mItl OA% 4 +nonconductor ,n0nk@n'dVkt@R K6$ 4 +nonconductors ,n0nk@n'dVkt@z Kj$ 4 +nonconformist ,n0nk@n'fOmIst K6% 4 +nonconformists ,n0nk@n'fOmIsts Kj% 4 +nonconformity ,n0nk@n'fOmItI L@% 5 +nondescript 'n0ndIskrIpt K6$,OA% 3 +nondescripts 'n0ndIskrIpts Kj$ 3 +none nVn Pu%,Qx% 1 +nonentities n0'nentItIz Kj% 4 +nonentity n0'nentItI K8% 4 +nonesuch 'nVnsVtS Ki$ 2 +nonevent 'n0nIvent K6% 3 +nonevents 'n0nIvents Kj$ 3 +nonfiction n0n'fIkSn L@% 3 +nonflammable n0n'fl&m@bl OA% 4 +nonintervention ,n0nInt@'venSn L@% 5 +nonmoral n0n'm0r@l OA$ 3 +nonobservance ,n0n@b'z3v@ns L@% 4 +nonpareil ,n0np@'reIl K6$,OA$ 3 +nonpareils ,n0np@'reIlz Kj$ 3 +nonpayment n0n'peIm@nt M6% 3 +nonpayments n0n'peIm@nts Mj$ 3 +nonplus n0n'plVs H5$ 26A +nonplussed n0n'plVst Hc$,Hd% 26A +nonplusses n0n'plVsIz Ha$ 36A +nonplussing n0n'plVsIN Hb$ 36A +nonresident n0n'rezId@nt OA% 4 +nonsense 'n0nsns M6% 2 +nonsenses 'n0nsnsIz Mj% 3 +nonsensical n0n'sensIkl OA% 4 +nonsmoker n0n'sm@Uk@R K6% 3 +nonsmokers n0n'sm@Uk@z Kj% 3 +nonstarter n0n'stAt@R K6% 3 +nonstarters n0n'stAt@z Kj% 3 +nonstick 'n0nstIk OA% 2 +nonstop 'n0nst0p OA%,Pu% 2 +nonsuch 'nVnsVtS Ki$ 2 +nonunion n0n'junI@n OA% 3 +nonviolence n0n'vaI@l@ns L@% 4 +noodle 'nudl K6% 2 +noodles 'nudlz Kj% 2 +nook nUk K6% 1 +nooks nUks Kj% 1 +noon nun L@% 1 +noonday 'nundeI OA% 2 +noontide 'nuntaId L@% 2 +noose nus H2$,K6% 1 +noosed nust Hc$,Hd$ 1 +nooses 'nusIz Ha$,Kj% 2 +noosing 'nusIN Hb$ 2 +nope n@Up W-$ 1 +nor nOR V-% 1 +nor'- ,nOR- U-$ 1 +nor'-east ,nOr-'ist L@%,Pu% 2 +nor'-nor'-east ,nO-nOr-'ist L@%,Pu% 3 +nor'-nor'-west ,nO-nO-'west L@%,Pu% 3 +nor'-west ,nO-'west L@%,Pu% 2 +norm nOm K6% 1 +normal 'nOml L@%,OA% 2 +normalcy 'nOmlsI L@$ 3 +normality nO'm&lItI L@% 4 +normalization ,nOm@laI'zeISn M6% 5 +normalizations ,nOm@laI'zeISnz Mj% 5 +normalize 'nOm@laIz H2% 3 +normalized 'nOm@laIzd Hc%,Hd% 3 +normalizes 'nOm@laIzIz Ha% 4 +normalizing 'nOm@laIzIN Hb% 4 +normally 'nOm@lI Pu% 3 +normative 'nOm@tIv OA$ 3 +norms nOmz Kj% 1 +north nOT L@%,Pu% 1 +north-northeast ,nOT-nOT'ist L@%,Pu% 3 +north-northwest ,nOT-nOT'west L@%,Pu% 3 +northeast nOT'ist L@%,Pu% 2 +northeaster nOT'ist@R K6% 3 +northeasterly nOT'ist@lI OA% 4 +northeastern nOT'ist@n OA% 3 +northeasters nOT'ist@z Kj% 3 +northerly 'nOD@lI OA%,Pu% 3 +northern 'nOD@n OA% 2 +northerner 'nOD@n@R K6% 3 +northerners 'nOD@n@z Kj% 3 +northernmost 'nOD@nm@Ust OA% 3 +northwards 'nOTw@dz Pu% 2 +northwest nOT'west L@%,Pu% 2 +northwester nOT'west@R K6$ 3 +northwesterly nOT'west@lI OA% 4 +northwestern nOT'west@n OA% 3 +northwesters nOT'west@z Kj$ 3 +nos 'nVmb@z Y)% 2 +nos n@Uz Kj$ 1 +nose n@Uz J2%,K6% 12C,3A,15A,15B +nose-flute 'n@Uz-flut K6$ 2 +nose-flutes 'n@Uz-fluts Kj$ 2 +nose-wheel 'n@Uz-wil K6$ 2 +nose-wheels 'n@Uz-wilz Kj$ 2 +nosebag 'n@Uzb&g K6% 2 +nosebags 'n@Uzb&gz Kj% 2 +nosebleed 'n@Uzblid K6% 2 +nosebleeds 'n@Uzblidz Kj% 2 +nosecone 'n@Uzk@Un K6% 2 +nosecones 'n@Uzk@Unz Kj% 2 +nosed n@Uzd Jc%,Jd%,Ot% 12C,3A,15A,15B +nosedive 'n@UzdaIv I2%,K6% 2 +nosedived 'n@UzdaIvd Ic%,Id% 2 +nosedives 'n@UzdaIvz Ia%,Kj% 2 +nosediving 'n@UzdaIvIN Ib% 3 +nosegay 'n@UzgeI K6% 2 +nosegays 'n@UzgeIz Kj% 2 +nosering 'n@UzrIN K6$ 2 +noserings 'n@UzrINz Kj$ 2 +noses 'n@UzIz Ja%,Kj% 22C,3A,15A,15B +nosey 'n@UzI OA% 2 +nosh n0S I1%,L@% 1 +nosh-up 'n0S-Vp K6% 2 +nosh-ups 'n0S-Vps Kj$ 2 +noshed n0St Ic%,Id% 1 +noshes 'n0SIz Ia$ 2 +noshing 'n0SIN Ib$ 2 +nosier 'n@UzI@R Or% 3 +nosiest 'n@UzIIst Os% 3 +nosing 'n@UzIN Jb% 22C,3A,15A,15B +nostalgia n0'st&ldZ@ L@% 3 +nostalgic n0'st&ldZIk OA% 3 +nostalgically n0'st&ldZIklI Pu% 4 +nostril 'n0str@l K6% 2 +nostrils 'n0str@lz Kj% 2 +nostrum 'n0str@m K6$ 2 +nostrums 'n0str@mz Kj$ 2 +nosy 'n@UzI OD% 2 +not n0t Pu* 1 +nota bene ,n@Ut@ 'beneI Z-$ 4 +notabilities ,n@Ut@'bIlItIz Mj$ 5 +notability ,n@Ut@'bIlItI M8$ 5 +notable 'n@Ut@bl K6%,OA% 3 +notables 'n@Ut@blz Kj% 3 +notably 'n@Ut@blI Pu% 3 +notaries 'n@Ut@rIz Kj% 3 +notary 'n@Ut@rI K8% 3 +notation n@U'teISn M6% 3 +notations n@U'teISnz Mj% 3 +notch n0tS H1%,K7% 16A,15B +notched n0tSt Hc%,Hd% 16A,15B +notches 'n0tSIz Ha%,Kj% 26A,15B +notching 'n0tSIN Hb% 26A,15B +note n@Ut H2%,M6% 16A,8,9,10,15B +notebook 'n@UtbUk K6% 2 +notebooks 'n@UtbUks Kj% 2 +notecase 'n@UtkeIs K6$ 2 +notecases 'n@UtkeIsIz Kj$ 3 +noted 'n@UtId Hc%,Hd%,OA% 26A,8,9,10,15B +notepaper 'n@UtpeIp@R L@% 3 +notes n@Uts Ha%,Mj% 16A,8,9,10,15B +noteworthy 'n@Utw3DI OA% 3 +nothing 'nVTIN K6*,Pu* 2 +nothingness 'nVTINn@s L@% 3 +nothings 'nVTINz Kj% 2 +notice 'n@UtIs J2%,M6% 22A,6A,8,9,10,18A,19A +notice-board 'n@UtIs-bOd K6% 3 +notice-boards 'n@UtIs-bOdz Kj% 3 +noticeable 'n@UtIs@bl OA% 4 +noticeably 'n@UtIs@blI Pu% 4 +noticed 'n@UtIst Jc%,Jd% 22A,6A,8,9,10,18A,19A +notices 'n@UtIsIz Ja%,Mj% 32A,6A,8,9,10,18A,19A +noticing 'n@UtIsIN Jb% 32A,6A,8,9,10,18A,19A +notifiable 'n@UtIfaI@bl OA% 5 +notification ,n@UtIfI'keISn M6% 5 +notifications ,n@UtIfI'keISnz Mj% 5 +notified 'n@UtIfaId Hc%,Hd% 36A,11,14 +notifies 'n@UtIfaIz Ha% 36A,11,14 +notify 'n@UtIfaI H3% 36A,11,14 +notifying 'n@UtIfaIIN Hb% 46A,11,14 +noting 'n@UtIN Hb% 26A,8,9,10,15B +notion 'n@USn K6% 2 +notional 'n@USn@l OA% 3 +notions 'n@USnz Kj% 2 +notoriety ,n@Ut@'raI@tI L@% 5 +notorious n@U'tOrI@s OA% 4 +notoriously n@U'tOrI@slI Pu% 5 +notwithstanding ,n0twIT'st&ndIN Pu%,T-%,V-% 4 +nougat 'nugA M6% 2 +nougats 'nugAz Mj$ 2 +nought nOt K6% 1 +noughts nOts Kj% 1 +noun naUn K6% 1 +nouns naUnz Kj% 1 +nourish 'nVrIS H1% 26A +nourished 'nVrISt Hc%,Hd% 26A +nourishes 'nVrISIz Ha% 36A +nourishing 'nVrISIN Hb% 36A +nourishment 'nVrISm@nt L@% 3 +nous naUs L@$ 1 +nouveau riche ,nuv@U 'riS Ki$ 3 +nouveaux riches ,nuv@U 'riS Kj$ 3 +nova 'n@Uv@ K6$ 2 +novae 'n@Uvi Kj$ 2 +novas 'n@Uv@z Kj$ 2 +novel 'n0vl K6%,OA% 2 +novelette ,n0v@l'et K6% 3 +novelettes ,n0v@l'ets Kj% 3 +novelist 'n0v@lIst K6% 3 +novelists 'n0v@lIsts Kj% 3 +novels 'n0vlz Kj% 2 +novelties 'n0vltIz Mj% 3 +novelty 'n0vltI M8% 3 +novice 'n0vIs K6% 2 +novices 'n0vIsIz Kj% 3 +noviciate n@'vISI@t K6% 4 +noviciates n@'vISI@ts Kj$ 4 +novitiate n@'vISI@t K6% 4 +novitiates n@'vISI@ts Kj$ 4 +now naU Pu*,V-* 1 +nowadays 'naU@deIz Pu% 3 +nowhere 'n@Uwe@R Pu% 2 +nowise 'n@UwaIz Pu$ 2 +noxious 'n0kS@s OA% 2 +noxiously 'n0kS@slI Pu% 3 +noxiousness 'n0kS@sn@s L@% 3 +nozzle 'n0zl K6% 2 +nozzles 'n0zlz Kj% 2 +nr nI@R Y~% 2 +nuance 'njuAns K6% 2 +nuances 'njuAnsIz Kj% 3 +nub nVb K6% 1 +nubile 'njubaIl OA% 2 +nubs nVbz Kj$ 1 +nuclear 'njuklI@R OA% 3 +nuclei 'njuklIaI Kj% 3 +nucleic nju'kleIIk OA% 3 +nucleus 'njuklI@s Ki% 3 +nude njud K6%,OA% 1 +nudes njudz Kj% 1 +nudge nVdZ H2%,K6% 16A +nudged nVdZd Hc%,Hd% 16A +nudges 'nVdZIz Ha%,Kj% 26A +nudging 'nVdZIN Hb% 26A +nudism 'njudIz@m L@% 3 +nudist 'njudIst K6% 2 +nudists 'njudIsts Kj% 2 +nudity 'njudItI L@% 3 +nugatory 'njug@t@rI OA$ 4 +nugget 'nVgIt K6% 2 +nuggets 'nVgIts Kj% 2 +nuisance 'njusns K6% 2 +nuisances 'njusnsIz Kj% 3 +null nVl OA% 1 +nullification ,nVlIfI'keISn L@% 5 +nullified 'nVlIfaId Hc%,Hd% 36A +nullifies 'nVlIfaIz Ha% 36A +nullify 'nVlIfaI H3% 36A +nullifying 'nVlIfaIIN Hb% 46A +nullity 'nVlItI L@% 3 +numb nVm H0%,OA% 16A +numbed nVmd Hc%,Hd% 16A +number 'nVmb@R H0%,K6* 22C,6A,14 +numbered 'nVmb@d Hc%,Hd% 22C,6A,14 +numbering 'nVmb@rIN Hb% 32C,6A,14 +numberless 'nVmb@lIs OA% 3 +numberplate 'nVmb@pleIt K6% 3 +numberplates 'nVmb@pleIts Kj% 3 +numbers 'nVmb@z Ha%,Kj% 22C,6A,14 +numbing 'nVmIN Hb% 26A +numbly 'nVmlI Pu% 2 +numbness 'nVmn@s L@% 2 +numbs nVmz Ha% 16A +numerable 'njum@r@bl OA$ 4 +numeracy 'njum@r@sI L@% 4 +numeral 'njum@r@l K6%,OA% 3 +numerals 'njum@r@lz Kj% 3 +numerate 'njum@r@t OA% 3 +numeration ,njum@'reISn M6$ 4 +numerations ,njum@'reISnz Mj$ 4 +numerator 'njum@reIt@R K6$ 4 +numerators 'njum@reIt@z Kj$ 4 +numeric nju'merIk OA% 3 +numerical nju'merIkl OA% 4 +numerically nju'merIklI Pu% 4 +numerous 'njum@r@s OA% 3 +numinous 'njumIn@s OA$ 3 +numismatics ,njumIz'm&tIks Lk$ 4 +numismatist nju'mIzm@tIst K6$ 4 +numismatists nju'mIzm@tIsts Kj$ 4 +numskull 'nVmskVl K6% 2 +numskulls 'nVmskVlz Kj% 2 +nun nVn K6% 1 +nuncio 'nVnsI@U K6$ 3 +nuncios 'nVnsI@Uz Kj$ 3 +nunneries 'nVn@rIz Kj% 3 +nunnery 'nVn@rI K8% 3 +nuns nVnz Kj% 1 +nuptial 'nVpSl OA% 2 +nuptials 'nVpSlz Kj% 2 +nurse n3s H2%,M6% 16A +nursed n3st Hc%,Hd% 16A +nurseling 'n3slIN K6% 2 +nurselings 'n3slINz Kj% 2 +nursemaid 'n3smeId K6% 2 +nursemaids 'n3smeIdz Kj% 2 +nurseries 'n3s@rIz Kj% 3 +nursery 'n3s@rI K8% 3 +nurseryman 'n3s@rIm@n Ki% 4 +nurserymen 'n3s@rIm@n Kj% 4 +nurses 'n3sIz Ha%,Mj% 26A +nursing 'n3sIN Hb% 26A +nursing-home 'n3sIN-h@Um K6% 3 +nursing-homes 'n3sIN-h@Umz Kj% 3 +nursling 'n3slIN K6% 2 +nurslings 'n3slINz Kj% 2 +nurture 'n3tS@R H2%,L@% 2 +nurtured 'n3tS@d Hc%,Hd% 2 +nurtures 'n3tS@z Ha% 2 +nurturing 'n3tS@rIN Hb% 3 +nut nVt I4%,K6% 1 +nut-brown 'nVt-braUn OA% 2 +nut-butter nVt-'bVt@R M6$ 3 +nut-butters nVt-'bVt@z Mj$ 3 +nutcrackers 'nVtkr&k@z Kj% 3 +nuthouse 'nVthaUs K6% 2 +nuthouses 'nVthaUzIz Kj$ 3 +nutmeg 'nVtmeg M6% 2 +nutmegs 'nVtmegz Mj$ 2 +nutria 'njutrI@ L@$ 3 +nutrient 'njutrI@nt K6%,OA% 3 +nutrients 'njutrI@nts Kj% 3 +nutriment 'njutrIm@nt K6% 3 +nutriments 'njutrIm@nts Kj% 3 +nutrition nju'trISn L@% 3 +nutritional nju'trIS@nl OA% 4 +nutritionally nju'trISn@lI Pu% 4 +nutritious nju'trIS@s OA% 3 +nutritive 'njutrItIv OA$ 3 +nuts nVts Ia$,Kj%,OA% 1 +nutshell 'nVt+Sel K6% 2 +nutshells 'nVt+Selz Kj% 2 +nutted 'nVtId Ic%,Id% 2 +nuttier 'nVtI@R Or% 3 +nuttiest 'nVtIIst Os% 3 +nutting 'nVtIN Ib$ 2 +nutty 'nVtI OD% 2 +nuzzle 'nVzl J2% 22C,6A +nuzzled 'nVzld Jc%,Jd% 22C,6A +nuzzles 'nVzlz Ja% 22C,6A +nuzzling 'nVzlIN Jb% 22C,6A +nylon 'naIl0n M6% 2 +nylons 'naIl0nz Mj% 2 +nymph nImf K6% 1 +nymphet nIm'fet K6$ 2 +nymphets nIm'fets Kj$ 2 +nympho 'nImf@U K6% 2 +nymphomania ,nImf@'meInI@ L@% 5 +nymphomaniac ,nImf@'meInI&k K6%,OA% 5 +nymphomaniacs ,nImf@'meInI&ks Kj% 5 +nymphos 'nImf@Uz Kj% 2 +nymphs nImfs Kj% 1 +o @U Ki$ 1 +o'clock @'kl0k Z-% 2 +o'er OR Pu$,T-$ 1 +o's @Uz Kj$ 1 +oaf @Uf K6% 1 +oafish '@UfIS OA% 2 +oafs @Ufs Kj% 1 +oak @Uk M6% 1 +oak-apple '@Uk-&pl K6% 3 +oak-apples '@Uk-&plz Kj% 3 +oaken '@Uk@n OA% 2 +oaks @Uks Mj% 1 +oakum '@Uk@m L@$ 2 +oar OR K6% 1 +oars Oz Kj% 1 +oarsman 'Ozm@n Ki% 2 +oarsmanship 'Ozm@nSIp L@% 3 +oarsmen 'Ozm@n Kj% 2 +oarswoman 'OzwUm@n Ki% 3 +oarswomen 'OzwImIn Kj% 3 +oases @U'eIsiz Kj% 3 +oasis @U'eIsIs Ki% 3 +oast @Ust K6$ 1 +oasthouse '@UsthaUs K6% 2 +oasthouses '@UsthaUzIz Kj% 3 +oasts @Usts Kj$ 1 +oat @Ut K6% 1 +oatcake '@UtkeIk K6% 2 +oatcakes '@UtkeIks Kj% 2 +oath @UT K6% 1 +oaths @UDz Kj% 1 +oatmeal '@Utmil L@% 2 +oats @Uts Kj% 1 +oaves @Uvz Kj$ 1 +ob 0b Y~% 1 +obbligato ,0blI'gAt@U K6$ 4 +obbligatos ,0blI'gAt@Uz Kj$ 4 +obduracy '0bdjU@r@sI L@% 4 +obdurate '0bdjU@r@t OA% 3 +obdurately '0bdjU@r@tlI Pu% 4 +obedience @'bidI@ns L@% 4 +obedient @'bidI@nt OA% 4 +obediently @'bidI@ntlI Pu% 5 +obeisance @U'beIsns M6$ 3 +obeisances @U'beIsnsIz Mj$ 4 +obelisk '0b@lIsk K6% 3 +obelisks '0b@lIsks Kj% 3 +obese @U'bis OA% 2 +obesity @U'bisItI L@% 4 +obey @'beI J0% 22A,6A +obeyed @'beId Jc%,Jd% 22A,6A +obeying @'beIIN Jb% 32A,6A +obeys @'beIz Ja% 22A,6A +obfuscate '0bf@skeIt H2$ 36A +obfuscated '0bf@skeItId Hc$,Hd$ 46A +obfuscates '0bf@skeIts Ha$ 36A +obfuscating '0bf@skeItIN Hb$ 46A +obi '@UbI K6$ 2 +obis '@UbIz Kj$ 2 +obiter dicta ,0bIt@ 'dIkt@ Kj$ 5 +obiter dictum ,0bIt@ 'dIkt@m Ki$ 5 +obituaries @'bItSU@rIz Kj% 5 +obituary @'bItSU@rI K8% 5 +object '0bdZIkt K6% 2 +object @b'dZekt J0% 22A,3A,9 +objected @b'dZektId Jc%,Jd% 32A,3A,9 +objecting @b'dZektIN Jb% 32A,3A,9 +objection @b'dZekSn M6% 3 +objectionable @b'dZekSn@bl OA% 4 +objectionably @b'dZekSn@blI Pu% 5 +objections @b'dZekSnz Mj% 3 +objective @b'dZektIv K6%,OA% 3 +objectively @b'dZektIvlI Pu% 4 +objectives @b'dZektIvz Kj% 3 +objectivity ,0bdZek'tIvItI L@% 5 +objector @b'dZekt@R K6% 3 +objectors @b'dZekt@z Kj% 3 +objects '0bdZIkts Kj% 2 +objects @b'dZekts Ja% 22A,3A,9 +objurgate '0bdZ@geIt H2$ 36A +objurgated '0bdZ@geItId Hc$,Hd$ 46A +objurgates '0bdZ@geIts Ha$ 36A +objurgating '0bdZ@geItIN Hb$ 46A +objurgation ,0bdZ@'geISn M6$ 4 +objurgations ,0bdZ@'geISnz Mj$ 4 +oblate '0bleIt OA$ 2 +oblation @'bleISn K6$ 3 +oblations @'bleISnz Kj$ 3 +obligate '0blIgeIt H2% 317 +obligated '0blIgeItId Hc%,Hd% 417 +obligates '0blIgeIts Ha% 317 +obligating '0blIgeItIN Hb$ 417 +obligation ,0blI'geISn K6% 4 +obligations ,0blI'geISnz Kj% 4 +obligatory @'blIg@trI OA% 4 +oblige @'blaIdZ H2% 26A,14,17 +obliged @'blaIdZd Hc%,Hd% 26A,14,17 +obliges @'blaIdZIz Ha% 36A,14,17 +obliging @'blaIdZIN Hb%,OA% 36A,14,17 +obligingly @'blaIdZINlI Pu% 4 +oblique @'blik OA% 2 +obliquely @'bliklI Pu% 3 +obliquities @'blIkwItIz Mj$ 4 +obliquity @'blIkwItI M8$ 4 +obliterate @'blIt@reIt H2% 46A +obliterated @'blIt@reItId Hc%,Hd% 56A +obliterates @'blIt@reIts Ha% 46A +obliterating @'blIt@reItIN Hb% 56A +obliteration @,blIt@'reISn L@% 5 +oblivion @'blIvI@n L@% 4 +oblivious @'blIvI@s OA% 4 +oblong '0bl0N K6%,OA% 2 +oblongs '0bl0Nz Kj% 2 +obloquy '0bl@kwI L@$ 3 +obnoxious @b'n0kS@s OA% 3 +obnoxiously @b'n0kS@slI Pu% 4 +obnoxiousness @b'n0kS@sn@s L@% 4 +oboe '@Ub@U K6% 2 +oboes '@Ub@Uz Kj% 2 +oboist '@Ub@UIst K6% 3 +oboists '@Ub@UIsts Kj% 3 +obscene @b'sin OA% 2 +obscenely @b'sinlI Pu% 3 +obscenities @b'senItIz Mj% 4 +obscenity @b'senItI M8% 4 +obscurantism ,0bskjU'r&ntIz@m L@$ 5 +obscurantist ,0bskjU'r&ntIst K6$ 4 +obscurantists ,0bskjU'r&ntIsts Kj$ 4 +obscure @b'skjU@R H2%,OA% 26A +obscured @b'skjU@d Hc%,Hd% 26A +obscurely @b'skjU@lI Pu% 3 +obscures @b'skjU@z Ha% 26A +obscuring @b'skjU@rIN Hb% 36A +obscurities @b'skjU@rItIz Mj% 4 +obscurity @b'skjU@rItI M8% 4 +obsequies '0bsIkwIz Kj$ 3 +obsequious @b'sikwI@s OA% 4 +obsequiously @b'sikwI@slI Pu% 5 +obsequiousness @b'sikwI@sn@s L@% 5 +observable @b'z3v@bl OA% 4 +observably @b'z3v@blI Pu% 4 +observance @b'z3v@ns M6% 3 +observances @b'z3v@nsIz Mj% 4 +observant @b'z3v@nt OA% 3 +observantly @b'z3v@ntlI Pu% 4 +observation ,0bz@'veISn M6% 4 +observations ,0bz@'veISnz Mj% 4 +observatories @b'z3v@trIz Kj% 4 +observatory @b'z3v@trI K8% 4 +observe @b'z3v J2% 22A,6A,8,9,10,18A,19A,25 +observed @b'z3vd Jc%,Jd% 22A,6A,8,9,10,18A,19A,25 +observer @b'z3v@R K6% 3 +observers @b'z3v@z Kj% 3 +observes @b'z3vz Ja% 22A,6A,8,9,10,18A,19A,25 +observing @b'z3vIN Jb%,OA% 32A,6A,8,9,10,18A,19A,25 +observingly @b'z3vINlI Pu$ 4 +obsess @b'ses H1$ 26A +obsessed @b'sest Hc$,Hd% 26A +obsesses @b'sesIz Ha$ 36A +obsessing @b'sesIN Hb$ 36A +obsession @b'seSn M6% 3 +obsessional @b'seS@nl OA% 4 +obsessionally @b'seSn@lI Pu% 4 +obsessions @b'seSnz Mj% 3 +obsessive @b'sesIv OA% 3 +obsessively @b'sesIvlI Pu% 4 +obsidian @b'sIdI@n L@$ 4 +obsolescence ,0bs@'lesns L@% 4 +obsolescent ,0bs@'lesnt OA% 4 +obsolete '0bs@lit OA% 3 +obstacle '0bst@kl K6% 3 +obstacles '0bst@klz Kj% 3 +obstetric @b'stetrIk OA% 3 +obstetrical @b'stetrIkl OA$ 4 +obstetrician ,0bstI'trISn K6% 4 +obstetricians ,0bstI'trISnz Kj% 4 +obstetrics @b'stetrIks Lk% 3 +obstinacy '0bstIn@sI L@% 4 +obstinate '0bstIn@t OA% 3 +obstinately '0bstIn@tlI Pu% 4 +obstreperous @b'strep@r@s OA% 4 +obstreperously @b'strep@r@slI Pu% 5 +obstreperousness @b'strep@r@sn@s L@% 5 +obstruct @b'strVkt H0% 26A +obstructed @b'strVktId Hc%,Hd% 36A +obstructing @b'strVktIN Hb% 36A +obstruction @b'strVkSn M6% 3 +obstructionism @b'strVkS@nIz@m L@$ 5 +obstructionist @b'strVkS@nIst K6$ 4 +obstructionists @b'strVkS@nIsts Kj$ 4 +obstructions @b'strVkSnz Mj% 3 +obstructive @b'strVktIv OA% 3 +obstructively @b'strVktIvlI Pu% 4 +obstructs @b'strVkts Ha% 26A +obtain @b'teIn J0% 22A,6A +obtainable @b'teIn@bl OA% 4 +obtained @b'teInd Jc%,Jd% 22A,6A +obtaining @b'teInIN Jb% 32A,6A +obtains @b'teInz Ja% 22A,6A +obtrude @b'trud J2% 22A,14 +obtruded @b'trudId Jc%,Jd% 32A,14 +obtrudes @b'trudz Ja% 22A,14 +obtruding @b'trudIN Jb% 32A,14 +obtrusive @b'trusIv OA% 3 +obtrusively @b'trusIvlI Pu% 4 +obtuse @b'tjus OA% 2 +obtusely @b'tjuslI Pu% 3 +obtuseness @b'tjusn@s L@% 3 +obverse '0bv3s K6% 2 +obverses '0bv3sIz Kj$ 3 +obviate '0bvIeIt H2% 36A +obviated '0bvIeItId Hc%,Hd% 46A +obviates '0bvIeIts Ha% 36A +obviating '0bvIeItIN Hb% 46A +obvious '0bvI@s OA% 3 +obviously '0bvI@slI Pu% 4 +obviousness '0bvI@sn@s L@% 4 +ocarina ,0k@'rin@ K6$ 4 +ocarinas ,0k@'rin@z Kj$ 4 +occasion @'keIZn H0%,M6% 36A,12A,13A +occasional @'keIZ@nl OA% 4 +occasionally @'keIZ@n@lI Pu% 5 +occasioned @'keIZnd Hc%,Hd% 36A,12A,13A +occasioning @'keIZnIN Hb% 46A,12A,13A +occasions @'keIZnz Ha%,Mj% 36A,12A,13A +occult 0'kVlt Ki%,OA% 2 +occupancies '0kjUp@nsIz Kj% 4 +occupancy '0kjUp@nsI K8% 4 +occupant '0kjUp@nt K6% 3 +occupants '0kjUp@nts Kj% 3 +occupation ,0kjU'peISn M6% 4 +occupational ,0kjU'peISn@l OA% 5 +occupations ,0kjU'peISnz Mj% 4 +occupied '0kjUpaId Hc%,Hd% 36A +occupier '0kjUpaI@R K6% 4 +occupiers '0kjUpaI@z Kj% 4 +occupies '0kjUpaIz Ha% 36A +occupy '0kjUpaI H3% 36A +occupying '0kjUpaIIN Hb% 46A +occur @'k3R I4% 22A,2C,3A +occurred @'k3d Ic%,Id% 22A,2C,3A +occurrence @'kVr@ns M6% 3 +occurrences @'kVr@nsIz Mj% 4 +occurring @'k3rIN Ib% 32A,2C,3A +occurs @'k3z Ia% 22A,2C,3A +ocean '@USn K6% 2 +oceanic ,@USI'&nIk OA% 4 +oceans '@USnz Kj% 2 +ochre '@Uk@R L@$ 2 +octagon '0kt@g@n K6% 3 +octagonal 0k't&g@nl OA% 4 +octagons '0kt@g@nz Kj% 3 +octane '0kteIn L@% 2 +octave '0ktIv K6% 2 +octaves '0ktIvz Kj% 2 +octavo 0k'teIv@U K6$ 3 +octavos 0k'teIv@Uz Kj$ 3 +octet 0k'tet K6% 2 +octets 0k'tets Kj% 2 +octette 0k'tet K6$ 2 +octettes 0k'tets Kj$ 2 +octogenarian ,0kt@dZI'ne@rI@n K6$,OA$ 6 +octogenarians ,0kt@dZI'ne@rI@nz Kj$ 6 +octopus '0kt@p@s K7% 3 +octopuses '0kt@p@sIz Kj% 4 +octroi '0ktrwA K6$ 2 +octrois '0ktrwAz Kj$ 2 +ocular '0kjUl@R OA% 3 +oculist '0kjUlIst K6% 3 +oculists '0kjUlIsts Kj% 3 +odalisque '@Ud@lIsk K6$ 3 +odalisques '@Ud@lIsks Kj$ 3 +odd 0d OC% 1 +odd-job 0d-'dZ0b Oq% 2 +odder '0d@R Or% 2 +oddest '0dIst Os% 2 +oddities '0dItIz Mj% 3 +oddity '0dItI M8% 3 +oddly '0dlI Pu% 2 +oddment '0dm@nt K6% 2 +oddments '0dm@nts Kj% 2 +odds 0dz Kj% 1 +odds-on 0dz-'0n OA%,Pu% 2 +ode @Ud K6% 1 +odes @Udz Kj% 1 +odious '@UdI@s OA% 3 +odiously '@UdI@slI Pu% 4 +odium '@UdI@m L@% 3 +odoriferous ,@Ud@'rIf@r@s OA$ 5 +odorous '@Ud@r@s OA% 3 +odour '@Ud@R M6% 2 +odourless '@Ud@l@s OA% 3 +odours '@Ud@z Mj% 2 +odyssey '0dIsI K6% 3 +odysseys '0dIsIz Kj% 3 +oecumenical ,ikju'menIkl OA$ 5 +oesophagus i's0f@g@s K7% 4 +oesophaguses i's0f@g@sIz Kj$ 5 +of 0v T-* 1 +off 0f OA%,P+*,T-*,U-* 1 +off-day '0f-deI K6% 2 +off-days '0f-deIz Kj$ 2 +off-licence '0f-laIsns K6% 3 +off-licences '0f-laIsnsIz Kj% 4 +off-peak '0f-pik Oq% 2 +off-putting ,0f-'pUtIN OA% 3 +off-scourings '0f-skaU@rINz Kj$ 4 +off-street '0f-strit Oq$ 2 +off-white ,0f-'waIt OA% 2 +offal '0fl L@% 2 +offbeat ,0f'bit OA% 2 +offence @'fens M6% 2 +offenceless @'fensl@s OA$ 3 +offences @'fensIz Mj% 3 +offend @'fend J0% 23A,6A +offended @'fendId Jc%,Jd% 33A,6A +offender @'fend@R K6% 3 +offenders @'fend@z Kj% 3 +offending @'fendIN Jb% 33A,6A +offends @'fendz Ja% 23A,6A +offensive @'fensIv K6%,OA% 3 +offensively @'fensIvlI Pu% 4 +offensiveness @'fensIvn@s L@% 4 +offensives @'fensIvz Kj% 3 +offer '0f@R J0%,K6% 22A,6A,7A,12A,13A,14,15B +offered '0f@d Jc%,Jd% 22A,6A,7A,12A,13A,14,15B +offering '0f@rIN Jb%,M6% 32A,6A,7A,12A,13A,14,15B +offerings '0f@rINz Mj% 3 +offers '0f@z Ja%,Kj% 22A,6A,7A,12A,13A,14,15B +offertories '0f@trIz Kj$ 3 +offertory '0f@trI K8$ 3 +offhand ,0f'h&nd OA%,Pu% 2 +offhanded ,0f'h&ndId OA%,Pu% 3 +offhandedly ,0f'h&ndIdlI OA%,Pu% 4 +office '0fIs K6* 2 +office-bearer '0fIs-be@r@R K6% 4 +office-bearers '0fIs-be@r@z Kj% 4 +office-block '0fIs-bl0k K6% 3 +office-blocks '0fIs-bl0ks Kj% 3 +office-boy '0fIs-boI K6% 3 +office-boys '0fIs-boIz Kj% 3 +office-holder '0fIs-h@Uld@R K6% 4 +office-holders '0fIs-h@Uld@z Kj% 4 +officer '0fIs@R K6% 3 +officers '0fIs@z Kj% 3 +offices '0fIsIz Kj% 3 +official @'fISl K6%,OA% 3 +officialdom @'fISld@m K6% 4 +officialdoms @'fISld@mz Kj$ 4 +officialese @,fIS@'liz L@$ 4 +officially @'fIS@lI Pu% 4 +officials @'fISlz Kj% 3 +officiate @'fISIeIt I2% 42A,2C,3A +officiated @'fISIeItId Ic%,Id% 52A,2C,3A +officiates @'fISIeIts Ia% 42A,2C,3A +officiating @'fISIeItIN Ib% 52A,2C,3A +officious @'fIS@s OA% 3 +officiously @'fIS@slI Pu% 4 +officiousness @'fIS@sn@s L@% 4 +offing '0fIN Ki% 2 +offish '0fIS OA$ 2 +offprint '0fprInt K6% 2 +offprints '0fprInts Kj% 2 +offset '0fset H5%,Hc%,Hd%,L@% 26A,14 +offsets '0fsets Ha% 26A,14 +offsetting 0f'setIN Hb% 36A,14 +offshoot '0fSut K6% 2 +offshoots '0fSuts Kj% 2 +offshore ,0f'SOR OA% 2 +offside 0f'saId Oq%,Pu% 2 +offspring '0fsprIN K9% 2 +offstage 0f'steIdZ OA%,Pu% 2 +oft 0ft Pu$ 1 +oft-times '0f-taImz Pu$ 2 +often '0fn Pu* 2 +oftener '0fn@R Pu% 2 +ogle '@Ugl J2% 23A,6A +ogled '@Ugld Jc%,Jd% 23A,6A +ogles '@Uglz Ja% 23A,6A +ogling '@UglIN Jb% 23A,6A +ogre '@Ug@R K6% 2 +ogreish '@Ug@rIS OA$ 3 +ogres '@Ug@z Kj% 2 +ogress '@Ugres K7$ 2 +ogresses '@UgresIz Kj$ 3 +oh @U W-% 1 +ohm @Um K6$ 1 +ohms @Umz Kj$ 1 +oho @U'h@U W-$ 2 +oil oIl H0%,M6% 16A +oil-bearing 'oIl-be@rIN OA% 3 +oil-burner 'oIl-b3n@R K6% 3 +oil-burners 'oIl-b3n@z Kj% 3 +oil-cake 'oIl-keIk L@$ 2 +oil-colours 'oIl-kVl@z Kj% 3 +oil-painting 'oIl-peIntIN M6% 3 +oil-paintings 'oIl-peIntINz Mj% 3 +oil-palm 'oIl-pAm K6% 2 +oil-palms 'oIl-pAmz Kj% 2 +oil-paper 'oIl-peIp@R L@$ 3 +oil-rig 'oIl-rIg K6% 2 +oil-rigs 'oIl-rIgz Kj% 2 +oil-silk 'oIl-sIlk L@$ 2 +oil-slick 'oIl-slIk K6% 2 +oil-slicks 'oIl-slIks Kj% 2 +oil-tanker 'oIl-t&Nk@R K6% 3 +oil-tankers 'oIl-t&Nk@z Kj% 3 +oil-well 'oIl-wel K6% 2 +oil-wells 'oIl-welz Kj% 2 +oilcan 'oIlk&n K6% 2 +oilcans 'oIlk&nz Kj% 2 +oilcloth 'oIlkl0T L@% 2 +oiled oIld Hc%,Hd%,OA% 16A +oiler 'oIl@R K6$ 2 +oilers 'oIl@z Kj$ 2 +oilfield 'oIlfild K6% 2 +oilfields 'oIlfildz Kj% 2 +oilfired 'oIlfaI@d OA% 2 +oilier 'oIlI@R Or% 3 +oiliest 'oIlIIst Os% 3 +oiliness 'oIlIn@s L@% 3 +oiling 'oIlIN Hb% 26A +oils oIlz Ha%,Mj% 16A +oilskin 'oIlskIn M6% 2 +oilskins 'oIlskInz Mj% 2 +oily 'oIlI OD% 2 +ointment 'oIntm@nt M6% 2 +ointments 'oIntm@nts Mj% 2 +okapi @U'kApI K6$ 3 +okapis @U'kApIz Kj$ 3 +okay ,@U'keI H0%,Ki%,OA%,Pu% 26A +okayed ,@U'keId Hc%,Hd% 26A +okaying ,@U'keIIN Hb$ 36A +okays ,@U'keIz Ha% 26A +okra '@Ukr@ L@$ 2 +old @Uld L@%,OC* 1 +old-fashioned @Ul-'f&Snd OA% 3 +old-maidish @Ul-'meIdIS OA% 3 +old-time '@Ul-taIm OA% 2 +old-timer @Ul-'taIm@R K6% 3 +old-timers @Ul-'taIm@z Kj% 3 +old-womanish @Ul-'wUm@nIS OA% 4 +old-world '@Uld-w3ld OA% 2 +olden '@Uld@n OA% 2 +older '@Uld@R Or% 2 +oldest '@UldIst Os% 2 +oldish '@UldIS OA% 2 +oldster '@Uldst@R K6% 2 +oldsters '@Uldst@z Kj% 2 +oleaginous ,@UlI'&dZIn@s OA$ 5 +oleander ,@UlI'&nd@R K6$ 4 +oleanders ,@UlI'&nd@z Kj$ 4 +olfactory 0l'f&kt@rI OA$ 4 +oligarch '0lIgAk K6$ 3 +oligarchies '0lIgAkIz Mj$ 4 +oligarchs '0lIgAks Kj$ 3 +oligarchy '0lIgAkI M8$ 4 +olive '0lIv K6%,OA% 2 +olive-tree '0lIv-tri K6% 3 +olive-trees '0lIv-triz Kj% 3 +olives '0lIvz Kj% 2 +ombudsman '0mbUdzm&n Ki% 3 +ombudsmen '0mbUdzmen Kj% 3 +omega '@UmIg@ K6% 3 +omegas '@UmIg@z Kj$ 3 +omelet '0mlIt K6$ 2 +omelets '0mlIts Kj$ 2 +omelette '0mlIt K6% 2 +omelettes '0mlIts Kj% 2 +omen '@Umen H0$,M6% 26A +omened '@Umend Hc$,Hd% 26A +omening '@UmenIN Hb$ 36A +omens '@Umenz Ha$,Mj% 26A +ominous '0mIn@s OA% 3 +ominously '0mIn@slI Pu% 4 +omission @'mISn M6% 3 +omissions @'mISnz Mj% 3 +omit @'mIt H4% 26A,6C,7A +omits @'mIts Ha% 26A,6C,7A +omitted @'mItId Hc%,Hd% 36A,6C,7A +omitting @'mItIN Hb% 36A,6C,7A +omnibus '0mnIb@s K7% 3 +omnibuses '0mnIb@sIz Kj% 4 +omnipotence 0m'nIp@t@ns L@% 4 +omnipotent 0m'nIp@t@nt OA% 4 +omniscience 0m'nIsI@ns L@% 4 +omniscient 0m'nIsI@nt OA% 4 +omnivorous 0m'nIv@r@s OA% 4 +on 0n P+*,T-* 1 +on to '0n t@ T-% 2 +on-licence '0n-laIsns K6$ 3 +on-licences '0n-laIsnsIz Kj$ 4 +once wVns Pu* 1 +oncoming '0nkVmIN Ki%,OA% 3 +one wVn K6%,OA*,Qx* 1 +one-armed 'wVn-Amd OA% 2 +one-eyed 'wVn-aId OA% 2 +one-horse 'wVn-hOs OA% 2 +one-idea'd wVn-aI'dI@d OA$ 4 +one-sided wVn-'saIdId OA% 3 +one-step 'wVn-step K6$ 2 +one-steps 'wVn-steps Kj$ 2 +one-time 'wVn-taIm OA% 2 +one-upmanship wVn-'Vpm@nSIp L@% 4 +oneness 'wVn+nIs L@% 2 +onerous '0n@r@s OA% 3 +onerously '0n@r@slI Pu% 4 +ones wVnz Kj% 1 +oneself wVn'self Qx% 2 +ongoing '0ng@UIN OA% 3 +onion 'VnI@n M6% 2 +onions 'VnI@nz Mj% 2 +onlooker '0nlUk@R K6% 3 +onlookers '0nlUk@z Kj% 3 +only '@UnlI OA*,Pu*,V-* 2 +onomatopoeia ,0n@,m&t@'pI@ L@$ 6 +onrush '0nrVS K7% 2 +onrushes '0nrVSIz Kj$ 3 +onset '0nset K6% 2 +onsets '0nsets Kj$ 2 +onshore '0nSOR OA%,Pu% 2 +onslaught '0nslOt K6% 2 +onslaughts '0nslOts Kj% 2 +onto '0nt@ T-% 2 +ontologies 0n't0l@dZIz Mj$ 4 +ontology 0n't0l@dZI M8$ 4 +onus '@Un@s Ki% 2 +onward '0nw@d OA%,Pu% 2 +onwards '0nw@dz Pu% 2 +onyx '0nIks L@$ 2 +oodles 'udlz Kj% 2 +oomph Umf L@$ 1 +ooze uz J2%,L@% 12C,6A +oozed uzd Jc%,Jd% 12C,6A +oozes 'uzIz Ja% 22C,6A +oozier 'uzI@R Or$ 3 +ooziest 'uzIIst Os$ 3 +oozing 'uzIN Jb% 22C,6A +oozy 'uzI OD$ 2 +op 0p Y~% 1 +op art '0p At L@$ 2 +op cit ,0p 'sIt Y~% 2 +opacity @U'p&sItI L@% 4 +opal '@Upl K6% 2 +opalescent ,@Up@'lesnt OA% 4 +opals '@Uplz Kj% 2 +opaque @U'peIk OA% 2 +opaquely @U'peIklI Pu% 3 +opaqueness @U'peIkn@s L@% 3 +open '@Up@n J0*,L@%,OA* 22A,2C,3A,6A,12C,14,15A,15B,16A +open-air '@Up@n-e@R Oq% 3 +open-ended ,@Up@n-'endId OA% 4 +open-eyed ,@Up@n-'aId OA% 3 +open-handed ,@Up@n-'h&ndId OA% 4 +open-hearted ,@Up@n-'hAtId OA% 4 +open-minded @Up@n-'maIndId OA% 4 +open-mouthed ,@Up@n-'maUDd OA% 3 +opencast '@Up@nkAst OA% 3 +opened '@Up@nd Jc%,Jd% 22A,2C,3A,6A,12C,14,15A,15B,16A +opener '@Up@n@R K6% 3 +openers '@Up@n@z Kj% 3 +opening '@Up@nIN Jb%,K6%,OA% 32A,2C,3A,6A,12C,14,15A,15B,16A +openings '@Up@nINz Kj% 3 +openly '@Up@nlI Pu% 3 +openness '@Up@n+n@s L@% 3 +opens '@Up@nz Ja% 22A,2C,3A,6A,12C,14,15A,15B,16A +openwork '@Up@nw3k L@$ 3 +opera '0p@r@ Kj$ 3 +opera '0pr@ M6% 2 +opera-cloak '0p@r@-kl@Uk K6% 4 +opera-cloaks '0p@r@-kl@Uks Kj% 4 +opera-glasses '0p@r@-glAsIz Kj% 5 +opera-hat '0p@r@-h&t K6$ 4 +opera-hats '0p@r@-h&ts Kj$ 4 +opera-house '0p@r@-haUs K6% 4 +opera-houses '0p@r@-haUzIz Kj% 5 +operable '0p@r@bl OA% 4 +operas '0pr@z Mj% 2 +operate '0p@reIt J2% 32A,2C,3A,4A,6A +operated '0p@reItId Jc%,Jd% 42A,2C,3A,4A,6A +operates '0p@reIts Ja% 32A,2C,3A,4A,6A +operatic ,0p@'r&tIk OA% 4 +operating '0p@reItIN Jb% 42A,2C,3A,4A,6A +operating-table '0p@reItIN-teIbl K6% 6 +operating-tables '0p@reItIN-teIblz Kj% 6 +operating-theatre '0p@reItIN-TI@t@R K6% 7 +operating-theatres '0p@reItIN-TI@t@z Kj% 7 +operation ,0p@'reISn M6% 4 +operational ,0p@'reISn@l OA% 4 +operations ,0p@'reISnz Mj% 4 +operative '0p@r@tIv K6%,OA% 4 +operatives '0p@r@tIvz Kj% 4 +operator '0p@reIt@R K6% 4 +operators '0p@reIt@z Kj% 4 +operetta ,0p@'ret@ K6% 4 +operettas ,0p@'ret@z Kj% 4 +ophthalmia 0f'T&lmI@ L@$ 4 +ophthalmic 0f'T&lmIk OA% 3 +ophthalmoscope 0f'T&lm@sk@Up K6% 4 +ophthalmoscopes 0f'T&lm@sk@Ups Kj% 4 +opiate '@UpI@t K6$ 3 +opiates '@UpI@ts Kj$ 3 +opine @'paIn H2$ 29 +opined @'paInd Hc$,Hd$ 29 +opines @'paInz Ha$ 29 +opining @'paInIN Hb$ 39 +opinion @'pInI@n M6% 3 +opinionated @'pInI@neItId OA% 5 +opinionative @'pInI@n@tIv OA$ 5 +opinions @'pInI@nz Mj% 3 +opium '@UpI@m L@% 3 +opium-den '@UpI@m-den K6% 4 +opium-dens '@UpI@m-denz Kj% 4 +opossum @'p0s@m K6$ 3 +opossums @'p0s@mz Kj$ 3 +opp 0p Y~$ 1 +opponent @'p@Un@nt K6% 3 +opponents @'p@Un@nts Kj% 3 +opportune '0p@tjun OA% 3 +opportunely '0p@tjunlI Pu% 4 +opportunism ,0p@'tjunIz@m L@% 5 +opportunist ,0p@'tjunIst K6% 4 +opportunists ,0p@'tjunIsts Kj% 4 +opportunities ,0p@'tjunItIz Mj% 5 +opportunity ,0p@'tjunItI M8% 5 +oppose @'p@Uz H2% 26A,14 +opposed @'p@Uzd Hc%,Hd% 26A,14 +opposes @'p@UzIz Ha% 36A,14 +opposing @'p@UzIN Hb% 36A,14 +opposite '0p@zIt K6%,OA% 3 +opposites '0p@zIts Kj% 3 +opposition ,0p@'zISn L@% 4 +oppress @'pres H1% 26A +oppressed @'prest Hc%,Hd% 26A +oppresses @'presIz Ha% 36A +oppressing @'presIN Hb% 36A +oppression @'preSn M6% 3 +oppressions @'preSnz Mj% 3 +oppressive @'presIv OA% 3 +oppressively @'presIvlI Pu% 4 +oppressor @'pres@R K6% 3 +oppressors @'pres@z Kj% 3 +opprobrious @'pr@UbrI@s OA$ 4 +opprobriously @'pr@UbrI@slI Pu$ 5 +opprobrium @'pr@UbrI@m L@% 4 +oppugn @'pjun H0$ 26A +oppugned @'pjund Hc$,Hd$ 26A +oppugning @'pjunIN Hb$ 36A +oppugns @'pjunz Ha$ 26A +opt 0pt I0% 13A +optative '0pt@tIv K6$,OA$ 3 +optatives '0pt@tIvz Kj$ 3 +opted '0ptId Ic%,Id% 23A +optic '0ptIk OA% 2 +optical '0ptIkl OA% 3 +optically '0ptIklI Pu% 3 +optician 0p'tISn K6% 3 +opticians 0p'tISnz Kj% 3 +optics '0ptIks Lk% 2 +optimal '0ptIml OA% 3 +optimally '0ptIm@lI Pu% 4 +optimism '0ptImIz@m L@% 4 +optimist '0ptImIst K6% 3 +optimistic ,0ptI'mIstIk OA% 4 +optimistically ,0ptI'mIstIklI Pu% 5 +optimists '0ptImIsts Kj% 3 +optimum '0ptIm@m K6% 3 +optimums '0ptIm@mz Kj$ 3 +opting '0ptIN Ib% 23A +option '0pSn M6% 2 +optional '0pSn@l OA% 3 +optionally '0pSn@lI Pu% 4 +options '0pSnz Mj% 2 +opts 0pts Ia% 13A +opulence '0pjUl@ns L@% 3 +opulent '0pjUl@nt OA% 3 +opulently '0pjul@ntlI Pu% 4 +opus '@Up@s Ki% 2 +or OR V-* 1 +oracle '0r@kl K6% 3 +oracles '0r@klz Kj% 3 +oracular @'r&kjUl@R OA% 4 +oral 'Or@l K6$,OA% 2 +orally 'Or@lI Pu% 3 +orals 'Or@lz Kj$ 2 +orang-outan O,r&N-u't&n K6$ 4 +orang-outang O,r&N-u't&N K6$ 4 +orang-outangs O,r&N-u't&Nz Kj$ 4 +orang-outans O,r&N-u't&nz Kj$ 4 +orang-utan O,r&N-u't&n K6$ 4 +orang-utans O,r&N-u't&nz Kj$ 4 +orange '0rIndZ M6%,OA% 2 +orangeade ,0rIndZ'eId L@% 3 +oranges '0rIndZIz Mj% 3 +orate O'reIt I2$ 22A +orated O'reItId Ic$,Id$ 32A +orates O'reIts Ia$ 22A +orating O'reItIN Ib$ 32A +oration O'reISn K6% 3 +orations O'reISnz Kj% 3 +orator '0r@t@R K6% 3 +oratorical ,0r@'t0rIkl OA% 5 +oratories '0r@trIz Mj% 3 +oratorio ,0r@'tOrI@U M6% 5 +oratorios ,0r@'tOrI@Uz Mj% 5 +orators '0r@t@z Kj% 3 +oratory '0r@trI M8% 3 +orb Ob K6$ 1 +orbit 'ObIt J0%,K6% 22A,2C,6A +orbital 'ObItl OA% 3 +orbited 'ObItId Jc%,Jd% 32A,2C,6A +orbiting 'ObItIN Jb% 32A,2C,6A +orbits 'ObIts Ja%,Kj% 22A,2C,6A +orbs Obz Kj$ 1 +orchard 'OtS@d K6% 2 +orchards 'OtS@dz Kj% 2 +orchestra 'OkIstr@ K6% 3 +orchestral O'kestr@l OA% 3 +orchestras 'OkIstr@z Kj% 3 +orchestrate 'OkIstreIt H2% 36A +orchestrated 'OkIstreItId Hc%,Hd% 46A +orchestrates 'OkIstreIts Ha% 36A +orchestrating 'OkIstreItIN Hb% 46A +orchestration ,OkI'streISn K6% 4 +orchestrations ,OkI'streISnz Kj% 4 +orchid 'OkId K6% 2 +orchids 'OkIdz Kj% 2 +orchis 'OkIs K7$ 2 +orchises 'OkIsIz Kj$ 3 +ordain O'deIn H0% 26A,9,23 +ordained O'deInd Hc%,Hd% 26A,9,23 +ordaining O'deInIN Hb% 36A,9,23 +ordains O'deInz Ha% 26A,9,23 +ordeal O'dil K6% 2 +ordeals O'dilz Kj% 2 +order 'Od@R H0%,M6* 26A,9,12B,13B,15A,15B,17 +order-book 'Od@-bUk K6% 3 +order-books 'Od@-bUks Kj% 3 +order-form 'Od@-fOm K6% 3 +order-forms 'Od@-fOmz Kj% 3 +order-paper 'Od@-peIp@R K6% 4 +order-papers 'Od@-peIp@z Kj% 4 +ordered 'Od@d Hc%,Hd% 26A,9,12B,13B,15A,15B,17 +ordering 'Od@rIN Hb%,K6% 36A,9,12B,13B,15A,15B,17 +orderings 'Od@rINz Kj$ 3 +orderlies 'Od@lIz Kj% 3 +orderliness 'Od@lIn@s L@% 4 +orderly 'Od@lI K8%,OA% 3 +orders 'Od@z Ha%,Mj% 26A,9,12B,13B,15A,15B,17 +ordinal 'OdInl K6$,OA% 3 +ordinals 'OdInlz Kj$ 3 +ordinance 'OdIn@ns K6$ 3 +ordinances 'OdIn@nsIz Kj$ 4 +ordinand ,OdI'n&nd K6$ 3 +ordinands ,OdI'n&ndz Kj$ 3 +ordinarily 'OdIn@r@lI Pu% 5 +ordinary 'OdInrI OA% 3 +ordination ,OdI'neISn M6% 4 +ordinations ,OdI'neISnz Mj$ 4 +ordnance 'Odn@ns L@% 2 +ordure 'OdjU@R L@$ 2 +ore OR M6% 1 +ores Oz Mj$ 1 +organ 'Og@n K6% 2 +organ-blower 'Og@n-bl@U@R K6% 4 +organ-blowers 'Og@n-bl@U@z Kj% 4 +organ-grinder 'Og@n-graInd@R K6% 4 +organ-grinders 'Og@n-graInd@z Kj% 4 +organ-loft 'Og@n-l0ft K6% 3 +organ-lofts 'Og@n-l0fts Kj% 3 +organdie O'g&ndI L@$ 3 +organic O'g&nIk OA% 3 +organically O'g&nIklI Pu% 4 +organism 'Og@nIz@m K6% 4 +organisms 'Og@nIz@mz Kj% 4 +organist 'Og@nIst K6% 3 +organists 'Og@nIsts Kj% 3 +organization ,Og@naI'zeISn M6% 5 +organizational ,Og@naI'zeISnl OA% 5 +organizationally ,Og@naI'zeISn@lI Pu% 6 +organizations ,Og@naI'zeISnz Mj% 5 +organize 'Og@naIz H2% 36A +organized 'Og@naIzd Hc%,Hd%,OA% 36A +organizer 'Og@naIz@R K6% 4 +organizers 'Og@naIz@z Kj% 4 +organizes 'Og@naIzIz Ha% 46A +organizing 'Og@naIzIN Hb% 46A +organs 'Og@nz Kj% 2 +orgasm 'Og&z@m K6% 3 +orgasms 'Og&z@mz Kj% 3 +orgiastic ,OdZI'&stIk OA% 4 +orgies 'OdZIz Kj% 2 +orgy 'OdZI K8% 2 +oriel 'OrI@l K6$ 3 +oriels 'OrI@lz Kj$ 3 +orient 'OrI@nt H0%,Ki%,OA% 3 +oriental ,OrI'entl K6%,OA% 4 +orientalist ,OrI'ent@lIst K6% 5 +orientalists ,OrI'ent@lIsts Kj% 5 +orientals ,OrI'entlz Kj% 4 +orientate 'OrI@nteIt H2% 46A +orientated 'OrI@nteItId Hc%,Hd% 56A +orientates 'OrI@nteIts Ha% 46A +orientating 'OrI@nteItIN Hb% 56A +orientation ,OrIen'teISn L@% 5 +oriented 'OrI@ntId Hc%,Hd% 4 +orienting 'OrI@ntIN Hb% 4 +orients 'OrI@nts Ha% 3 +orifice '0rIfIs K6% 3 +orifices '0rIfIsIz Kj% 4 +origin '0rIdZIn M6% 3 +original @'rIdZ@nl K6%,OA% 4 +originality @,rIdZ@'n&lItI L@% 6 +originally @'rIdZ@n@lI Pu% 5 +originals @'rIdZ@nlz Kj% 4 +originate @'rIdZIneIt J2% 42C,3A,6A +originated @'rIdZIneItId Jc%,Jd% 52C,3A,6A +originates @'rIdZIneIts Ja% 42C,3A,6A +originating @'rIdZIneItIN Jb% 52C,3A,6A +originator @'rIdZIneIt@R K6% 5 +originators @'rIdZIneIt@z Kj% 5 +origins '0rIdZInz Mj% 3 +oriole 'OrI@Ul K6$ 3 +orioles 'OrI@Ulz Kj$ 3 +orison '0rIzn K6$ 3 +orisons '0rIznz Kj$ 3 +orlop 'Ol0p K6$ 2 +orlops 'Ol0ps Kj$ 2 +ormolu 'Om@lu M6$ 3 +ormolus 'Om@luz Mj$ 3 +ornament 'On@m@nt M6% 3 +ornament 'On@ment H0% 36A,14 +ornamental ,On@'mentl OA% 4 +ornamentation ,On@men'teISn L@% 5 +ornamented 'On@mentId Hc%,Hd% 46A,14 +ornamenting 'On@mentIN Hb% 46A,14 +ornaments 'On@m@nts Mj% 3 +ornaments 'On@ments Ha% 36A,14 +ornate O'neIt OA% 2 +ornately O'neItlI Pu% 3 +ornateness O'neItn@s L@% 3 +ornery 'On@rI OA$ 3 +ornithological ,OnIT@'l0dZIkl OA% 6 +ornithologist ,OnI'T0l@dZIst K6% 5 +ornithologists ,OnI'T0l@dZIsts Kj% 5 +ornithology ,OnI'T0l@dZI L@% 5 +orotund 'Or@UtVnd OA$ 3 +orphan 'Ofn H0%,K6% 26A +orphanage 'Of@nIdZ K6% 3 +orphanages 'Of@nIdZIz Kj% 4 +orphaned 'Ofnd Hc%,Hd% 26A +orphaning 'OfnIN Hb$ 36A +orphans 'Ofnz Ha%,Kj% 26A +orrisroot '0rIsrut L@$ 3 +orthodontic ,OT@'d0ntIk OA% 4 +orthodontics ,OT@'d0ntIks Lk$ 4 +orthodontist ,OT@'d0ntIst K6% 4 +orthodontists ,OT@'d0ntIsts Kj$ 4 +orthodox 'OT@d0ks OA% 3 +orthodoxies 'OT@d0ksIz Mj% 4 +orthodoxy 'OT@d0ksI M8% 4 +orthogonal O'T0g@nl OA% 4 +orthogonally O'T0g@n@lI Pu% 5 +orthographic ,OT@'gr&fIk OA% 4 +orthographies O'T0gr@fIz Mj% 4 +orthography O'T0gr@fI M8% 4 +orthopaedic ,OT@'pidIk OA% 4 +orthopaedics ,OT@'pidIks Lk% 4 +orthopedic ,OT@'pidIk OA% 4 +orthopedics ,OT@'pidIks Lk% 4 +ortolan 'Ot@l@n K6$ 3 +ortolans 'Ot@l@nz Kj$ 3 +oryx '0rIks K7$ 2 +oryxes '0rIksIz Kj$ 3 +oscillate '0sIleIt J2% 32A,6A +oscillated '0sIleItId Jc%,Jd% 42A,6A +oscillates '0sIleIts Ja% 32A,6A +oscillating '0sIleItIN Jb% 42A,6A +oscillation ,0sI'leISn M6% 4 +oscillations ,0sI'leISnz Mj% 4 +oscillator '0sIleIt@R K6% 4 +oscillators '0sIleIt@z Kj% 4 +oscillograph @'sIl@grAf K6$ 4 +oscillographs @'sIl@grAfs Kj$ 4 +oscilloscope @'sIl@sk@Up K6% 4 +oscilloscopes @'sIl@sk@Ups Kj% 4 +osier '@UzI@R K6$ 3 +osiers '@UzI@z Kj$ 3 +osprey '0sprI K6% 2 +ospreys '0sprIz Kj% 2 +osseous '0sI@s OA$ 3 +ossification ,0sIfI'keISn L@% 5 +ossified '0sIfaId Jc%,Jd% 32A,6A +ossifies '0sIfaIz Ja$ 32A,6A +ossify '0sIfaI J3% 32A,6A +ossifying '0sIfaIIN Jb$ 42A,6A +ostensible 0'stens@bl OA% 4 +ostensibly 0'stens@blI Pu% 4 +ostentation ,0sten'teISn L@% 4 +ostentatious ,0sten'teIS@s OA% 4 +ostentatiously ,0sten'teIS@slI Pu% 5 +osteopath '0stI@p&T K6% 4 +osteopaths '0stI@p&Ts Kj% 4 +osteopathy ,0stI'0p@TI L@% 5 +ostler '0sl@R K6$ 2 +ostlers '0sl@z Kj$ 2 +ostracism '0str@sIz@m L@% 4 +ostracize '0str@saIz H2% 36A +ostracized '0str@saIzd Hc%,Hd% 36A +ostracizes '0str@saIzIz Ha% 46A +ostracizing '0str@saIzIN Hb% 46A +ostrich '0strItS K7% 2 +ostriches '0strItSIz Kj% 3 +other 'VD@R K6*,OA*,Pu% 2 +others 'VD@z Kj* 2 +otherwise 'VD@waIz Pu%,V-% 3 +otherworldly ,VD@'w3ldlI OA% 4 +otiose '@USI@Us OA$ 3 +otter '0t@R M6% 2 +otters '0t@z Mj% 2 +ottoman '0t@m@n K6$ 3 +ottomans '0t@m@nz Kj$ 3 +oubliette ,ublI'et K6$ 3 +oubliettes ,ublI'ets Kj$ 3 +ouch aUtS W-% 1 +ought Ot G5% 17B +oughtn't 'Otnt Gg% 2 +ouija 'widZ@ K6$ 2 +ouija-board 'widZ@-bOd K6% 3 +ouija-boards 'widZ@-bOdz Kj% 3 +ouijas 'widZ@z Kj$ 2 +ounce aUns K6% 1 +ounces 'aUnsIz Kj% 2 +our 'aU@R OA* 2 +ours 'aU@z Op%,Qx% 2 +ourselves aU@'selvz Qx% 3 +oust aUst H0$ 16A,14 +ousted 'aUstId Hc%,Hd% 26A,14 +ousting 'aUstIN Hb$ 26A,14 +ousts aUsts Ha$ 16A,14 +out aUt H0%,P+* 1 +out-herod ,aUt-'her@d H0$ 36A +out-heroded ,aUt-'her@dId Hc$,Hd$ 46A +out-heroding ,aUt-'her@dIN Hb$ 46A +out-herods ,aUt-'her@dz Ha$ 36A +out-of-date ,aUt-@v-'deIt OA% 3 +out-of-door ,aUt-@v-'dOR Oq$ 3 +out-of-doors ,aUt-@v-'dOz Pu$ 3 +out-of-the-way ,aUt-@v-D@-'weI OA%,Pu% 4 +out-of-work 'aUt-@v-w3k OA% 3 +out-tray 'aUt-treI K6% 2 +out-trays 'aUt-treIz Kj% 2 +outback 'aUtb&k Ki%,OA% 2 +outbalance aUt'b&l@ns H2$ 36A +outbalanced aUt'b&l@nst Hc$,Hd$ 36A +outbalances aUt'b&l@nsIz Ha$ 46A +outbalancing aUt'b&l@nsIN Hb$ 46A +outbid aUt'bId H5%,Hc%,Hd% 26A +outbidding aUt'bIdIN Hb% 36A +outbids aUt'bIdz Ha% 26A +outboard 'aUtbOd Oq% 2 +outbound 'aUtbaUnd OA$ 2 +outbrave aUt'breIv H2$ 26A +outbraved aUt'breIvd Hc$,Hd$ 26A +outbraves aUt'breIvz Ha$ 26A +outbraving aUt'breIvIN Hb$ 36A +outbreak 'aUtbreIk K6% 2 +outbreaks 'aUtbreIks Kj% 2 +outbuilding 'aUtbIldIN K6% 3 +outbuildings 'aUtbIldINz Kj% 3 +outburst 'aUtb3st K6% 2 +outbursts 'aUtb3sts Kj% 2 +outcast 'aUtkAst K6%,OA% 2 +outcaste 'aUtkAst K6$,OA$ 2 +outcastes 'aUtkAsts Kj$ 2 +outcasts 'aUtkAsts Kj% 2 +outclass aUt'klAs H1$ 26A +outclassed aUt'klAst Hc%,Hd% 26A +outclasses aUt'klAsIz Ha$ 36A +outclassing aUt'klAsIN Hb$ 36A +outcome 'aUtkVm K6% 2 +outcomes 'aUtkVmz Kj% 2 +outcries 'aUtkraIz Mj% 2 +outcrop 'aUtkr0p K6% 2 +outcrops 'aUtkr0ps Kj% 2 +outcry 'aUtkraI M8% 2 +outdated aUt'deItId OA% 3 +outdid aUt'dId Hc% 26A +outdistance aUt'dIst@ns H2% 36A +outdistanced aUt'dIst@nst Hc%,Hd% 36A +outdistances aUt'dIst@nsIz Ha% 46A +outdistancing aUt'dIst@nsIN Hb% 46A +outdo aUt'du H5% 26A +outdoes aUt'dVz Ha% 26A +outdoing aUt'duIN Hb% 36A +outdone aUt'dVn Hd% 26A +outdoor 'aUtdOR Oq% 2 +outdoors ,aUt'dOz Pu% 2 +outed 'aUtId Hc$,Hd$ 2 +outer 'aUt@R OA% 2 +outermost 'aUt@m@Ust OA% 3 +outface ,aUt'feIs H2% 26A +outfaced ,aUt'feIst Hc%,Hd% 26A +outfaces ,aUt'feIsIz Ha% 36A +outfacing ,aUt'feIsIN Hb% 36A +outfall 'aUtfOl K6% 2 +outfalls 'aUtfOlz Kj% 2 +outfield 'aUtfild K6% 2 +outfielder 'aUtfild@R K6% 3 +outfielders 'aUtfild@z Kj% 3 +outfields 'aUtfildz Kj$ 2 +outfight ,aUt'faIt H5$ 26A +outfighting ,aUt'faItIN Hb$ 36A +outfights ,aUt'faIts Ha$ 26A +outfit 'aUtfIt H4%,K6% 2 +outfits 'aUtfIts Ha%,Kj% 2 +outfitted 'aUtfItId Hc%,Hd% 3 +outfitter 'aUtfIt@R K6% 3 +outfitters 'aUtfIt@z Kj% 3 +outfitting 'aUtfItIN Hb% 3 +outflank ,aUt'fl&Nk H0% 26A +outflanked ,aUt'fl&Nkt Hc%,Hd% 26A +outflanking ,aUt'fl&NkIN Hb% 36A +outflanks ,aUt'fl&Nks Ha% 26A +outflow 'aUtfl@U K6% 2 +outflows 'aUtfl@Uz Kj% 2 +outfought ,aUt'fOt Hc$,Hd$ 26A +outfox ,aUt'f0ks H1$ 26A +outfoxed ,aUt'f0kst Hc$,Hd$ 26A +outfoxes ,aUt'f0ksIz Ha$ 36A +outfoxing ,aUt'f0ksIN Hb$ 36A +outgo 'aUtg@U I5$,K7$ 2 +outgoes 'aUtg@Uz Ia$,Kj$ 2 +outgoing 'aUtg@UIN OA% 3 +outgoings 'aUtg@UINz Kj% 3 +outgone aUt'g0n Id$ 2 +outgrew ,aUt'gru Hc% 26A +outgrow ,aUt'gr@U H5% 26A +outgrowing ,aUt'gr@UIN Hb% 36A +outgrown ,aUt'gr@Un Hd% 26A +outgrows ,aUt'gr@Uz Ha% 26A +outgrowth 'aUtgr@UT K6% 2 +outgrowths 'aUtgr@UTs Kj% 2 +outhouse 'aUthaUs K6% 2 +outhouses 'aUthaUzIz Kj% 3 +outing 'aUtIN Hb%,K6% 2 +outings 'aUtINz Kj% 2 +outlandish aUt'l&ndIS OA% 3 +outlandishly aUt'l&ndISlI Pu% 4 +outlandishness aUt'l&ndISn@s L@% 4 +outlast ,aUt'lAst H0% 26A +outlasted ,aUt'lAstId Hc%,Hd% 36A +outlasting ,aUt'lAstIN Hb% 36A +outlasts ,aUt'lAsts Ha% 26A +outlaw 'aUtlO H0%,K6% 26A +outlawed 'aUtlOd Hc%,Hd% 26A +outlawing 'aUtlOIN Hb$ 36A +outlawry 'aUtlOrI L@$ 3 +outlaws 'aUtlOz Ha%,Kj% 26A +outlay 'aUtleI M6% 2 +outlays 'aUtleIz Mj% 2 +outlet 'aUtlet K6% 2 +outlets 'aUtlets Kj% 2 +outlier 'aUtlaI@R K6% 3 +outliers 'aUtlaI@z Kj% 3 +outline 'aUtlaIn H2%,K6% 26A +outlined 'aUtlaInd Hc%,Hd% 26A +outlines 'aUtlaInz Ha%,Kj% 26A +outlining 'aUtlaInIN Hb% 36A +outlive ,aUt'lIv H2% 26A +outlived ,aUt'lIvd Hc%,Hd% 26A +outlives ,aUt'lIvz Ha% 26A +outliving ,aUt'lIvIN Hb% 36A +outlook 'aUtlUk K6% 2 +outlooks 'aUtlUks Kj% 2 +outlying 'aUtlaIIN OA% 3 +outmanoeuvre ,aUtm@'nuv@R H2% 46A +outmanoeuvred ,aUtm@'nuv@d Hc%,Hd% 46A +outmanoeuvres ,aUtm@'nuv@z Ha% 46A +outmanoeuvring ,aUtm@'nuv@rIN Hb% 56A +outmarch ,aUt'mAtS H1$ 26A +outmarched ,aUt'mAtSt Hc$,Hd$ 26A +outmarches ,aUt'mAtSIz Ha$ 36A +outmarching ,aUt'mAtSIN Hb$ 36A +outmatch ,aUt'm&tS H1$ 26A +outmatched ,aUt'm&tSt Hc$,Hd% 26A +outmatches ,aUt'm&tSIz Ha$ 36A +outmatching ,aUt'm&tSIN Hb$ 36A +outmoded ,aUt'm@UdId OA% 3 +outmost 'aUtm@Ust OA$ 2 +outnumber ,aUt'nVmb@R H0% 36A +outnumbered ,aUt'nVmb@d Hc%,Hd% 36A +outnumbering ,aUt'nVmb@rIN Hb% 46A +outnumbers ,aUt'nVmb@z Ha% 36A +outpatient 'aUtpeISnt K6% 3 +outpatients 'aUtpeISnts Kj% 3 +outplay ,aUt'pleI H0% 26A +outplayed ,aUt'pleId Hc%,Hd% 26A +outplaying ,aUt'pleIIN Hb% 36A +outplays ,aUt'pleIz Ha% 26A +outpoint ,aUt'poInt H0$ 26A +outpointed ,aUt'poIntId Hc$,Hd% 36A +outpointing ,aUt'poIntIN Hb$ 36A +outpoints ,aUt'poInts Ha$ 26A +outport 'aUtpOt K6$ 2 +outports 'aUtpOts Kj$ 2 +outpost 'aUtp@Ust K6% 2 +outposts 'aUtp@Usts Kj% 2 +outpouring 'aUtpOrIN K6% 3 +outpourings 'aUtpOrINz Kj% 3 +output 'aUtpUt Ki% 2 +outr_e 'utreI OA$ 2 +outrage 'aUtreIdZ H2$,M6% 26A +outraged 'aUtreIdZd Hc$,Hd% 26A +outrageous aUt'reIdZ@s OA% 3 +outrageously aUt'reIdZ@slI Pu% 4 +outrages 'aUtreIdZIz Ha$,Mj$ 36A +outraging 'aUtreIdZIN Hb$ 36A +outran ,aUt'r&n Hc% 26A +outrange ,aUt'reIndZ H2$ 26A +outranged ,aUt'reIndZd Hc$,Hd$ 26A +outranges ,aUt'reIndZIz Ha$ 36A +outranging ,aUt'reIndZIN Hb$ 36A +outrank ,aUt'r&Nk H0% 26A +outranked ,aUt'r&Nkt Hc%,Hd% 26A +outranking ,aUt'r&NkIN Hb% 36A +outranks ,aUt'r&Nks Ha% 26A +outridden ,aUt'rIdn Hd$ 36A +outride ,aUt'raId H5$ 26A +outrider 'aUtraId@R K6% 3 +outriders 'aUtraId@z Kj% 3 +outrides ,aUt'raIdz Ha$ 26A +outriding ,aUt'raIdIN Hb$ 36A +outrigged 'aUtrIgd OA$ 2 +outrigger 'aUtrIg@R K6% 3 +outriggers 'aUtrIg@z Kj% 3 +outright 'aUtraIt OA%,Pu% 2 +outrival ,aUt'raIvl H4$ 36A +outrivalled ,aUt'raIvld Hc$,Hd$ 36A +outrivalling ,aUt'raIv@lIN Hb$ 46A +outrivals ,aUt'raIvlz Ha$ 36A +outrode ,aUt'r@Ud Hc$ 26A +outrun ,aUt'rVn H5%,Hd% 26A +outrunning ,aUt'rVnIN Hb% 36A +outruns ,aUt'rVnz Ha% 26A +outs aUts Ha$ 1 +outsail aUt'seIl H0$ 26A +outsailed aUt'seIld Hc$,Hd$ 26A +outsailing aUt'seIlIN Hb$ 36A +outsails aUt'seIlz Ha$ 26A +outset 'aUtset K6% 2 +outsets 'aUtsets Kj$ 2 +outshine ,aUt'SaIn H5% 26A +outshines ,aUt'SaInz Ha% 26A +outshining ,aUt'SaInIN Hb% 36A +outshone ,aUt'S0n Hc%,Hd% 26A +outside 'aUtsaId OA*,Pu*,T-* 2 +outside ,aUt'saId K6% 2 +outsider ,aUt'saId@R K6% 3 +outsiders ,aUt'saId@z Kj% 3 +outsides ,aUt'saIdz Kj% 2 +outsize 'aUtsaIz OA% 2 +outskirts 'aUtsk3ts Kj% 2 +outsmart ,aUt'smAt H0% 26A +outsmarted ,aUt'smAtId Hc%,Hd% 36A +outsmarting ,aUt'smAtIN Hb$ 36A +outsmarts ,aUt'smAts Ha% 26A +outspan ,aUt'sp&n J4$ 22A,6A +outspanned ,aUt'sp&nd Jc$,Jd$ 22A,6A +outspanning ,aUt'sp&nIN Jb$ 32A,6A +outspans ,aUt'sp&nz Ja$ 22A,6A +outspoken ,aUt'sp@Uk@n OA% 3 +outspokenly ,aUt'sp@Uk@nlI Pu% 4 +outspokenness ,aUt'sp@Uk@n+n@s L@% 4 +outspread 'aUtspred OA% 2 +outstanding ,aUt'st&ndIN OA% 3 +outstandingly ,aUt'st&ndINlI Pu% 4 +outstation 'aUtsteISn K6% 3 +outstations 'aUtsteISnz Kj% 3 +outstay ,aUt'steI H0% 26A +outstayed ,aUt'steId Hc%,Hd% 26A +outstaying ,aUt'steIIN Hb% 36A +outstays ,aUt'steIz Ha% 26A +outstretched ,aUt'stretSt OA% 2 +outstrip ,aUt'strIp H4% 26A +outstripped ,aUt'strIpt Hc%,Hd% 26A +outstripping ,aUt'strIpIN Hb% 36A +outstrips ,aUt'strIps Ha% 26A +outvie ,aUt'vaI H5$ 26A +outvied ,aUt'vaId Hc$,Hd$ 26A +outvies ,aUt'vaIz Ha$ 26A +outvote ,aUt'v@Ut H2% 26A +outvoted ,aUt'v@UtId Hc%,Hd% 36A +outvotes ,aUt'v@Uts Ha% 26A +outvoting ,aUt'v@UtIN Hb% 36A +outvying ,aUt'vaIIN Hb$ 36A +outward 'aUtw@d OA%,Pu% 2 +outwardly 'aUtw@dlI Pu% 3 +outwards 'aUtw@dz Pu% 2 +outwear aUt'we@R H5% 26A +outwearing ,aUt'we@rIN Hb% 36A +outwears ,aUt'we@z Ha% 26A +outweigh ,aUt'weI H0% 26A +outweighed ,aUt'weId Hc%,Hd% 26A +outweighing ,aUt'weIIN Hb% 36A +outweighs ,aUt'weIz Ha% 26A +outwent aUt'went Ic$ 2 +outwit ,aUt'wIt H4% 26A +outwits ,aUt'wIts Ha% 26A +outwitted ,aUt'wItId Hc%,Hd% 36A +outwitting ,aUt'wItIN Hb% 36A +outwore ,aUt'wOR Hc$ 26A +outwork 'aUtw3k K6$ 2 +outworks 'aUtw3ks Kj$ 2 +outworn ,aUt'wOn Hd% 26A +ouzel 'uzl K6$ 2 +ouzels 'uzlz Kj$ 2 +ouzo 'uz@U L@$ 2 +ova '@Uv@ Kj$ 2 +oval '@Uvl K6%,OA% 2 +ovals '@Uvlz Kj% 2 +ovaries '@Uv@rIz Kj% 3 +ovary '@Uv@rI K8% 3 +ovation @U'veISn K6% 3 +ovations @U'veISnz Kj% 3 +oven 'Vvn K6% 2 +ovens 'Vvnz Kj% 2 +ovenware 'Vvnwe@R L@% 3 +over '@Uv@R K6%,Pu*,T-* 2 +over- ,@Uv@R- U-% 2 +over-abundance ,@Uv@r-@'bVnd@ns L@% 5 +over-ripe ,@Uv@-'raIp OA% 3 +overabundant ,@Uv@r@'bVnd@nt OA% 5 +overact ,@Uv@'r&kt J0% 32A,6A +overacted ,@Uv@'r&ktId Jc%,Jd% 42A,6A +overacting ,@Uv@'r&ktIN Jb% 42A,6A +overactive ,@Uv@'r&ktIv OA% 4 +overacts ,@Uv@'r&kts Ja% 32A,6A +overall '@Uv@rOl K6$ 3 +overall ,@Uv@'rOl OA% 3 +overalls '@Uv@rOlz Kj% 3 +overambitious ,@Uv@r&m'bIS@s OA% 5 +overanxiety ,@Uv@r&N'zaI@tI L@% 6 +overanxious ,@Uv@'r&NkS@s OA% 4 +overarch ,@Uv@'rAtS J1$ 32A,6A +overarched ,@Uv@'rAtSt Jc$,Jd$ 32A,6A +overarches ,@Uv@'rAtSIz Ja$ 42A,6A +overarching ,@Uv@'rAtSIN Jb$ 42A,6A +overarm '@Uv@rAm OA%,Pu% 3 +overate ,@Uv@'reIt Ic% 3 +overawe ,@Uv@'rO H2% 36A +overawed ,@Uv@'rOd Hc%,Hd% 36A +overawes ,@Uv@'rOz Ha% 36A +overawing ,@Uv@'rOIN Hb$ 46A +overbalance ,@Uv@'b&l@ns J2% 42A,6A +overbalanced ,@Uv@'b&l@nst Jc%,Jd% 42A,6A +overbalances ,@Uv@'b&l@nsIz Ja% 52A,6A +overbalancing ,@Uv@'b&l@nsIN Jb% 52A,6A +overbear ,@Uv@'be@R H5$ 36A +overbearing ,@Uv@'be@rIN Hb$,OA% 46A +overbearingly ,@Uv@'be@rINlI Pu% 5 +overbears ,@Uv@'be@z Ha$ 36A +overbid '@Uv@bId K6$ 3 +overbid ,@Uv@'bId J5%,Jc%,Jd% 32A,6A +overbidding ,@Uv@'bIdIN Jb% 42A,6A +overbids '@Uv@bIdz Kj$ 3 +overbids ,@Uv@'bIdz Ja$ 32A,6A +overblown ,@Uv@'bl@Un OA% 3 +overboard '@Uv@bOd Pu% 3 +overbold ,@Uv@'b@Uld OA$ 3 +overbore ,@Uv@'bOR Hc$ 36A +overborne ,@Uv@'bOn Hd$ 36A +overburden ,@Uv@'b3d@n H0%,L@$ 46A +overburdened ,@Uv@'b3d@nd Hc%,Hd% 46A +overburdening ,@Uv@'b3d@nIN Hb$ 56A +overburdens ,@Uv@'b3d@nz Ha$ 46A +overbusy ,@Uv@'bIzI OA% 4 +overcall ,@Uv@'kOl J0$ 3 +overcalled ,@Uv@'kOld Jc$,Jd$ 3 +overcalling ,@Uv@'kOlIN Jb$ 4 +overcalls ,@Uv@'kOlz Ja$ 3 +overcame ,@Uv@'keIm Hc% 36A +overcapitalization ,@Uv@,k&pIt@laI'zeISn L@% 8 +overcapitalize ,@Uv@'k&pIt@laIz H2$ 6 +overcapitalized ,@Uv@'k&pIt@laIzd Hc$,Hd% 6 +overcapitalizes ,@Uv@'k&pIt@laIzIz Ha$ 7 +overcapitalizing ,@Uv@'k&pIt@laIzIN Hb$ 7 +overcareful ,@Uv@'ke@f@l OA% 4 +overcast ,@Uv@'kAst Ki%,OA% 3 +overcautious ,@Uv@'kOS@s OA% 4 +overcharge '@Uv@tSAdZ K6$ 3 +overcharge ,@Uv@'tSAdZ J2% 32A,6A +overcharged ,@Uv@'tSAdZd Jc%,Jd% 32A,6A +overcharges '@Uv@tSAdZIz Kj$ 4 +overcharges ,@Uv@'tSAdZIz Ja% 42A,6A +overcharging ,@Uv@'tSAdZIN Jb% 42A,6A +overclothe ,@Uv@'kl@UD H2% 36A +overclothed ,@Uv@'kl@UDd Hc%,Hd% 36A +overclothes ,@Uv@'kl@UDz Ha% 36A +overclothing ,@Uv@'kl@UDIN Hb% 46A +overcloud ,@Uv@'klaUd J0$ 32A,6A +overclouded ,@Uv@'klaUdId Jc$,Jd% 42A,6A +overclouding ,@Uv@'klaUdIN Jb$ 42A,6A +overclouds ,@Uv@'klaUdz Ja$ 32A,6A +overcoat '@Uv@k@Ut K6% 3 +overcoats '@Uv@k@Uts Kj% 3 +overcome ,@Uv@'kVm H5%,Hd% 36A +overcomes ,@Uv@'kVmz Ha% 36A +overcoming ,@Uv@'kVmIN Hb% 46A +overconfidence ,@Uv@'k0nfId@ns L@% 5 +overconfident ,@Uv@'k0nfId@nt OA% 5 +overcook ,@Uv@'kUk H0% 3 +overcooked ,@Uv@'kUkt Hc%,Hd% 3 +overcooking ,@Uv@'kUkIN Hb% 4 +overcooks ,@Uv@'kUks Ha% 3 +overcredulity ,@Uv@krI'djulItI L@$ 6 +overcredulous ,@Uv@'kredjUl@s OA$ 5 +overcritical ,@Uv@'krItIkl OA% 5 +overcrop ,@Uv@'kr0p H4$ 36A +overcropped ,@Uv@'kr0pt Hc$,Hd% 36A +overcropping ,@Uv@'kr0pIN Hb$ 46A +overcrops ,@Uv@'kr0ps Ha$ 36A +overcrowd ,@Uv@'kraUd H0% 36A +overcrowded ,@Uv@'kraUdId Hc%,Hd% 46A +overcrowding ,@Uv@'kraUdIN Hb% 46A +overcrowds ,@Uv@'kraUdz Ha% 36A +overcurious ,@Uv@'kjU@rI@s OA% 5 +overdelicate ,@Uv@'delIk@t OA% 5 +overdid ,@Uv@'dId Hc% 36A +overdo ,@Uv@'du H5% 36A +overdoes ,@Uv@'dVz Ha% 36A +overdoing ,@Uv@'duIN Hb% 46A +overdone ,@Uv@'dVn Hd% 36A +overdraft '@Uv@drAft K6% 3 +overdrafts '@Uv@drAfts Kj% 3 +overdraw ,@Uv@'drO J5% 32A,6A +overdrawing ,@Uv@'drOIN Jb$ 42A,6A +overdrawn ,@Uv@'drOn Jd% 32A,6A +overdraws ,@Uv@'drOz Ja% 32A,6A +overdress ,@Uv@'dres J1% 32A,6A +overdressed ,@Uv@'drest Jc%,Jd% 32A,6A +overdresses ,@Uv@'dresIz Ja% 42A,6A +overdressing ,@Uv@'dresIN Jb% 42A,6A +overdrew ,@Uv@'dru Jc$ 32A,6A +overdrive '@Uv@draIv M6% 3 +overdrives '@Uv@draIvz Mj$ 3 +overdue ,@Uv@'dju OA% 3 +overeager ,@Uv@'rig@R OA% 4 +overeat ,@Uv@'rit I5% 3 +overeaten ,@Uv@'ritn Id% 4 +overeating ,@Uv@'ritIN Ib% 4 +overeats ,@Uv@'rits Ia% 3 +overemotional ,@Uv@rI'm@US@nl OA% 6 +overemphasis ,@Uv@'emf@sIs L@% 5 +overemphasize ,@Uv@'remf@saIz H2% 5 +overemphasized ,@Uv@'remf@saIzd Hc%,Hd% 5 +overemphasizes ,@Uv@'remf@saIzIz Ha% 6 +overemphasizing ,@Uv@'remf@saIzIN Hb% 6 +overenthusiastic ,@Uv@rIn,TjuzI'&stIk OA% 7 +overestimate ,@Uv@'restImeIt H2% 5 +overestimated ,@Uv@'restImeItId Hc%,Hd% 6 +overestimates ,@Uv@'restImeIts Ha% 5 +overestimating ,@Uv@'restImeItIN Hb% 6 +overexcited ,@Uv@rIk'saItId OA% 5 +overexert ,@Uv@rIg'z3t H0% 4 +overexerted ,@Uv@rIg'z3tId Hc%,Hd% 5 +overexerting ,@Uv@rIg'z3tIN Hb% 5 +overexertion ,@Uv@rIg'z3Sn M6% 5 +overexertions ,@Uv@rIg'z3Snz Mj% 5 +overexerts ,@Uv@rIg'z3ts Ha% 4 +overexpose ,@Uv@rIk'sp@Uz H2% 4 +overexposed ,@Uv@rIk'sp@Uzd Hc%,Hd% 4 +overexposes ,@Uv@rIk'sp@UzIz Ha% 5 +overexposing ,@Uv@rIk'sp@UzIN Hb% 5 +overexposure ,@Uv@rIk'sp@UZ@R M6% 5 +overexposures ,@Uv@rIk'sp@UZ@z Mj$ 5 +overfamiliar ,@Uv@f@'mIlI@R OA% 6 +overfed ,@Uv@'fed Jc%,Jd% 32A,2C,3A,6A,14,15A,15B +overfeed ,@Uv@'fid J0% 32A,2C,3A,6A,14,15A,15B +overfeeding ,@Uv@'fidIN Jb%,L@% 42A,2C,3A,6A,14,15A,15B +overfeeds ,@Uv@'fidz Ja% 32A,2C,3A,6A,14,15A,15B +overflew ,@Uv@'flu Hc% 32A,2B,2C,2D,4A,6A,15A,15B +overflies ,@Uv@'flaIz Ha% 32A,2B,2C,2D,4A,6A,15A,15B +overflow '@Uv@fl@U K6% 3 +overflow ,@Uv@'fl@U J0% 32A,3A,6A +overflowed ,@Uv@'fl@Ud Jc%,Jd% 32A,3A,6A +overflowing ,@Uv@'fl@UIN Jb% 42A,3A,6A +overflown ,@Uv@'fl@Un Hb% 32A,2B,2C,2D,4A,6A,15A,15B +overflows '@Uv@fl@Uz Kj% 3 +overflows ,@Uv@'fl@Uz Ja% 32A,3A,6A +overfly ,@Uv@'flaI H5% 32A,2B,2C,2D,4A,6A,15A,15B +overflying ,@Uv@'flaIIN Hb% 42A,2B,2C,2D,4A,6A,15A,15B +overfond ,@Uv@'f0nd OA% 3 +overfull ,@Uv@'fUl OA% 3 +overgenerous ,@Uv@'dZen@r@s OA% 5 +overgreedy ,@Uv@'gridI OA% 4 +overgrown ,@Uv@'gr@Un OA% 3 +overgrowth '@Uv@gr@UT M6% 3 +overgrowths '@Uv@gr@UTs Mj$ 3 +overhand '@Uv@h&nd OA$ 3 +overhang '@Uv@h&N K6% 3 +overhang ,@Uv@'h&N J5% 32A,6A +overhanging ,@Uv@'h&NIN Jb% 42A,6A +overhangs '@Uv@h&Nz Kj$ 3 +overhangs ,@Uv@'h&Nz Ja% 32A,6A +overhasty ,@Uv@'heIstI OA% 4 +overhaul '@Uv@hOl K6% 3 +overhaul ,@Uv@'hOl H0% 36A +overhauled ,@Uv@'hOld Hc%,Hd% 36A +overhauling ,@Uv@'hOlIN Hb% 46A +overhauls '@Uv@hOlz Kj% 3 +overhauls ,@Uv@'hOlz Ha% 36A +overhead '@Uv@hed OA% 3 +overhead ,@Uv@'hed Pu% 3 +overheads '@Uv@hedz Kj% 3 +overhear ,@Uv@'hI@R H5% 36A,18A,19A +overheard ,@Uv@'h3d Hc%,Hd% 36A,18A,19A +overhearing ,@Uv@'hI@rIN Hb% 46A,18A,19A +overhears ,@Uv@'hI@z Ha% 36A,18A,19A +overheat ,@Uv@'hit H0% 3 +overheated ,@Uv@'hitId Hc%,Hd% 4 +overheating ,@Uv@'hitIN Hb% 4 +overheats ,@Uv@'hits Ha% 3 +overhung ,@Uv@'hVN Jc%,Jd% 32A,6A +overindulge ,@Uv@rIn'dVldZ J2% 4 +overindulged ,@Uv@rIn'dVldZd Jc%,Jd% 4 +overindulgence ,@Uv@rIn'dVldZ@ns M6% 5 +overindulgences ,@Uv@rIn'dVldZ@nsIz Mj$ 6 +overindulges ,@Uv@rIn'dVldZIz Ja% 5 +overindulging ,@Uv@rIn'dVldZIN Jb% 5 +overjealous ,@Uv@'dZel@s OA$ 4 +overjoyed ,@Uv@'dZoId OA% 3 +overkill '@Uv@kIl L@% 3 +overladen ,@Uv@'leIdn OA% 4 +overlaid ,@Uv@'leId Hc%,Hd% 3 +overlain @Uv@'leIn Id$ 32A,2C,2D,3A +overland '@Uv@l&nd OA% 3 +overlap '@Uv@l&p M6% 3 +overlap ,@Uv@'l&p J4% 32A,6A +overlapped ,@Uv@'l&pt Jc%,Jd% 32A,6A +overlapping ,@Uv@'l&pIN Jb% 42A,6A +overlaps '@Uv@l&ps Mj% 3 +overlaps ,@Uv@'l&ps Ja% 32A,6A +overlarge ,@Uv@'lAdZ OA% 3 +overlay '@Uv@leI K6% 3 +overlay ,@Uv@'leI H5% 3 +overlaying ,@Uv@'leIIN Hb% 4 +overlays '@Uv@leIz Kj% 3 +overlays ,@Uv@'leIz Ha% 3 +overleaf ,@Uv@'lif Pu% 3 +overleap ,@Uv@'lip H0% 36A +overleaped ,@Uv@'lipt Hc%,Hd% 36A +overleaping ,@Uv@'lipIN Hb% 46A +overleaps ,@Uv@'lips Ha% 36A +overleapt ,@Uv@'lept Hc%,Hd% 36A +overlie ,@Uv@'laI I5$ 32A,2C,2D,3A +overlies ,@Uv@'laIz Ia$ 32A,2C,2D,3A +overload ,@Uv@'l@Ud H0% 36A +overloaded ,@Uv@'l@UdId Hc%,Hd% 46A +overloading ,@Uv@'l@UdIN Hb% 46A +overloads ,@Uv@'l@Udz Ha% 36A +overlook ,@Uv@'lUk H0% 36A +overlooked ,@Uv@'lUkt Hc%,Hd% 36A +overlooking ,@Uv@'lUkIN Hb% 46A +overlooks ,@Uv@'lUks Ha% 36A +overlord '@Uv@lOd K6% 3 +overlords '@Uv@lOdz Kj% 3 +overly '@Uv@lI Pu$ 3 +overlying ,@Uv@'laIIN Ib% 42A,2C,2D,3A +overmantel '@Uv@m&ntl K6$ 4 +overmantels '@Uv@m&ntlz Kj$ 4 +overmaster ,@Uv@'mAst@R H0$ 46A +overmastered ,@Uv@'mAst@d Hc$,Hd$ 46A +overmastering ,@Uv@'mAst@rIN Hb$ 56A +overmasters ,@Uv@'mAst@z Ha$ 46A +overmodest ,@Uv@'m0dIst OA% 4 +overmuch ,@Uv@'mVtS OA%,Pu% 3 +overnervous ,@Uv@'n3v@s OA$ 4 +overnight '@Uv@naIt OA% 3 +overnight ,@Uv@'naIt Pu% 3 +overpaid ,@Uv@'peId Hc%,Hd% 36A,14 +overpass '@Uv@pAs K7$ 3 +overpasses '@Uv@pAsIz Kj$ 4 +overpay ,@Uv@'peI H5% 36A,14 +overpaying ,@Uv@'peIIN Hb% 46A,14 +overpayment ,@Uv@'peIm@nt M6% 4 +overpayments ,@Uv@'peIm@nts Mj% 4 +overpays ,@Uv@'peIz Ha% 36A,14 +overplay ,@Uv@'pleI H0% 3 +overplayed ,@Uv@'pleId Hc%,Hd% 3 +overplaying ,@Uv@'pleIIN Hb% 4 +overplays ,@Uv@'pleIz Ha% 3 +overplus '@Uv@plVs K7$ 3 +overpluses '@Uv@plVsIz Kj$ 4 +overpopulation ,@Uv@,p0pjU'leISn L@% 6 +overpower ,@Uv@'paU@R H0% 46A +overpowered ,@Uv@'paU@d Hc%,Hd% 46A +overpowering ,@Uv@'paU@rIN Hb%,OA% 56A +overpowers ,@Uv@'paU@z Ha% 46A +overpraise ,@Uv@'preIz H2% 3 +overpraised ,@Uv@'preIzd Hc%,Hd% 3 +overpraises ,@Uv@'preIzIz Ha% 4 +overpraising ,@Uv@'preIzIN Hb% 4 +overprint '@Uv@prInt K6$ 3 +overprint ,@Uv@'prInt H0% 36A +overprinted ,@Uv@'prIntId Hc%,Hd% 46A +overprinting ,@Uv@'prIntIN Hb% 46A +overprints '@Uv@prInts Kj$ 3 +overprints ,@Uv@'prInts Ha% 36A +overproduce ,@Uv@pr@'djus J2% 4 +overproduced ,@Uv@pr@'djust Jc%,Jd% 4 +overproduces ,@Uv@pr@'djusIz Ja% 5 +overproducing ,@Uv@pr@'djusIN Jb% 5 +overproduction ,@Uv@pr@'dVkSn L@% 5 +overproud ,@Uv@'praUd OA% 3 +overran ,@Uv@'r&n Hc% 36A +overrate ,@Uv@'reIt H2% 36A +overrated ,@Uv@'reItId Hc%,Hd% 46A +overrates ,@Uv@'reIts Ha% 36A +overrating ,@Uv@'reItIN Hb% 46A +overreach ,@Uv@'ritS H1% 36A +overreached ,@Uv@'ritSt Hc%,Hd% 36A +overreaches ,@Uv@'ritSIz Ha% 46A +overreaching ,@Uv@'ritSIN Hb% 46A +overridden ,@Uv@'rIdn Hd% 46A +override ,@Uv@'raId H5% 36A +overrides ,@Uv@'raIdz Ha% 36A +overriding ,@Uv@'raIdIN Hb% 46A +overripe ,@Uv@'raIp OA% 3 +overrode ,@Uv@'r@Ud Hc% 36A +overrule ,@Uv@'rul H2% 36A +overruled ,@Uv@'ruld Hc%,Hd% 36A +overrules ,@Uv@'rulz Ha% 36A +overruling ,@Uv@'rulIN Hb% 46A +overrun ,@Uv@'rVn H5%,Hd% 36A +overrunning ,@Uv@'rVnIN Hb% 46A +overruns ,@Uv@'rVnz Ha% 36A +overs '@Uv@z Kj% 2 +oversaw ,@Uv@'sO Hc% 36A +oversea ,@Uv@'si OA%,Pu% 3 +overseas ,@Uv@'siz OA%,Pu% 3 +oversee ,@Uv@'si H5% 36A +overseeing ,@Uv@'siIN Hb% 46A +overseen ,@Uv@'sin Hd% 36A +overseer '@Uv@sI@R K6% 3 +overseers '@Uv@sI@z Kj% 3 +oversees ,@Uv@'siz Ha% 36A +oversensitive ,@Uv@'sens@tIv OA% 5 +overserious ,@Uv@'sI@rI@s OA% 5 +oversew ,@Uv@'s@U H5% 32A,2B,2C,6A,15B +oversewed ,@Uv@'s@Ud Hc% 32A,2B,2C,6A,15B +oversewing ,@Uv@'s@UIN Hb% 32A,2B,2C,6A,15B +oversewn ,@Uv@'s@Un Hd%,OA% 32A,2B,2C,6A,15B +oversews ,@Uv@'s@Uz Ha% 32A,2B,2C,6A,15B +oversexed ,@Uv@'sekst OA% 3 +overshadow ,@Uv@'S&d@U H0% 46A +overshadowed ,@Uv@'S&d@Ud Hc%,Hd% 46A +overshadowing ,@Uv@'S&d@UIN Hb% 56A +overshadows ,@Uv@'S&d@Uz Ha% 46A +overshoe '@Uv@Su K6$ 3 +overshoes '@Uv@Suz Kj% 3 +overshoot ,@Uv@'Sut H5% 36A +overshooting ,@Uv@'SutIN Hb% 46A +overshoots ,@Uv@'Suts Ha% 36A +overshot ,@Uv@'S0t Hc%,Hd%,OA% 36A +overside '@Uv@saId Pu$ 3 +oversight '@Uv@saIt M6% 3 +oversights '@Uv@saIts Mj% 3 +oversimplified ,@Uv@'sImplIfaId Hc%,Hd% 5 +oversimplifies ,@Uv@'sImplIfaIz Ha% 5 +oversimplify ,@Uv@'sImplIfaI H3% 5 +oversimplifying ,@Uv@'sImplIfaIIN Hb% 6 +oversize ,@Uv@'saIz OA% 3 +overskirt '@Uv@sk3t K6$ 3 +overskirts '@Uv@sk3ts Kj$ 3 +oversleep ,@Uv@'slip I5% 32A +oversleeping ,@Uv@'slipIN Ib% 42A +oversleeps ,@Uv@'slips Ia% 32A +overslept ,@Uv@'slept Ic%,Id% 32A +overspend ,@Uv@'spend J5% 32A,6A,14,19B +overspending ,@Uv@'spendIN Jb% 42A,6A,14,19B +overspends ,@Uv@'spendz Ja% 32A,6A,14,19B +overspent ,@Uv@'spent Jc%,Jd% 32A,6A,14,19B +overspill '@Uv@spIl K6% 3 +overspills '@Uv@spIlz Kj$ 3 +overstate ,@Uv@'steIt H2% 36A +overstated ,@Uv@'steItId Hc%,Hd% 46A +overstatement '@Uv@steItm@nt M6% 4 +overstatements '@Uv@steItm@nts Mj% 4 +overstates ,@Uv@'steIts Ha% 36A +overstating ,@Uv@'steItIN Hb% 46A +overstay ,@Uv@'steI H0% 36A +overstayed ,@Uv@'steId Hc%,Hd% 36A +overstaying ,@Uv@'steIIN Hb% 46A +overstays ,@Uv@'steIz Ha% 36A +overstep ,@Uv@'step H4% 36A +overstepped ,@Uv@'stept Hc%,Hd% 36A +overstepping ,@Uv@'stepIN Hb% 46A +oversteps ,@Uv@'steps Ha% 36A +overstock ,@Uv@'st0k H0% 36A +overstocked ,@Uv@'st0kt Hc%,Hd% 36A +overstocking ,@Uv@'st0kIN Hb% 46A +overstocks ,@Uv@'st0ks Ha% 36A +overstrain '@Uv@streIn L@% 3 +overstrain ,@Uv@'streIn H0% 3 +overstrained ,@Uv@'streInd Hc%,Hd% 3 +overstraining ,@Uv@'streInIN Hb% 4 +overstrains ,@Uv@'streInz Ha% 3 +overstrung ,@Uv@'strVN OA% 3 +overstuffed ,@Uv@'stVft OA% 3 +oversubscribed ,@Uv@s@b'skraIbd OA% 4 +oversuspicious ,@Uv@s@'spIS@s OA% 5 +overt @U'v3t OA% 2 +overtake ,@Uv@'teIk H5% 36A +overtaken ,@Uv@'teIk@n Hd% 46A +overtakes ,@Uv@'teIks Ha% 36A +overtaking ,@Uv@'teIkIN Hb% 46A +overtax ,@Uv@'t&ks H1% 36A +overtaxed ,@Uv@'t&kst Hc%,Hd% 36A +overtaxes ,@Uv@'t&ksIz Ha% 46A +overtaxing ,@Uv@'t&ksIN Hb% 46A +overthrew ,@Uv@'Tru Hc% 36A +overthrow '@Uv@Tr@U K6% 3 +overthrow ,@Uv@'Tr@U H5% 36A +overthrowing ,@Uv@'Tr@UIN Hb% 46A +overthrown ,@Uv@'Tr@Un Hd% 36A +overthrows '@Uv@Tr@Uz Kj% 3 +overthrows ,@Uv@'Tr@Uz Ha% 36A +overtime '@Uv@taIm L@%,Pu% 3 +overtly @U'v3tlI Pu% 3 +overtolerance ,@Uv@'t0l@r@ns L@$ 5 +overtone '@Uv@t@Un K6% 3 +overtones '@Uv@t@Unz Kj% 3 +overtook ,@Uv@'tUk Hc% 36A +overtop ,@Uv@'t0p H4$ 36A +overtopped ,@Uv@'t0pt Hc$,Hd% 36A +overtopping ,@Uv@'t0pIN Hb$ 46A +overtops ,@Uv@'t0ps Ha$ 36A +overtrump ,@Uv@'trVmp H0$ 36A +overtrumped ,@Uv@'trVmpt Hc$,Hd$ 36A +overtrumping ,@Uv@'trVmpIN Hb$ 46A +overtrumps ,@Uv@'trVmps Ha$ 36A +overture '@Uv@tjU@R K6% 3 +overtures '@Uv@tjU@z Kj% 3 +overturn ,@Uv@'t3n J0% 32A,6A +overturned ,@Uv@'t3nd Jc%,Jd% 32A,6A +overturning ,@Uv@'t3nIN Jb% 42A,6A +overturns ,@Uv@'t3nz Ja% 32A,6A +overvalue ,@Uv@'v&lju H2% 4 +overvalued ,@Uv@'v&ljud Hc%,Hd% 4 +overvalues ,@Uv@'v&ljuz Ha% 4 +overvaluing ,@Uv@'v&ljuIN Hb% 5 +overweening ,@Uv@'winIN OA% 4 +overweight '@Uv@weIt L@$ 3 +overweight ,@Uv@'weIt OA% 3 +overweighted ,@Uv@'weItId OA% 4 +overwhelm ,@Uv@'welm H0% 36A +overwhelmed ,@Uv@'welmd Hc%,Hd% 36A +overwhelming ,@Uv@'welmIN Hb% 46A +overwhelmingly ,@Uv@'welmINlI Pu% 5 +overwhelms ,@Uv@'welmz Ha% 36A +overwork '@Uv@w3k L@$ 3 +overwork ,@Uv@'w3k J0% 32A,6A +overworked ,@Uv@'w3kt Jc%,Jd% 32A,6A +overworking ,@Uv@'w3kIN Jb% 42A,6A +overworks ,@Uv@'w3ks Ja% 32A,6A +overwrought ,@Uv@'rOt OA% 3 +overzealous ,@Uv@'zel@s OA% 4 +oviduct '@UvIdVkt K6$ 3 +oviducts '@UvIdVkts Kj$ 3 +oviparous @U'vIp@r@s OA$ 4 +ovoid '@UvoId K6$,OA$ 2 +ovoids '@UvoIdz Kj$ 2 +ovum '@Uv@m Ki$ 2 +owe @U J2% 12A,3A,6A,12A,13A,14 +owed @Ud Jc%,Jd% 12A,3A,6A,12A,13A,14 +owes @Uz Ja% 12A,3A,6A,12A,13A,14 +owing '@UIN Jb%,OA% 22A,3A,6A,12A,13A,14 +owl aUl K6% 1 +owlet 'aUlIt K6$ 2 +owlets 'aUlIts Kj$ 2 +owlish 'aUlIS OA% 2 +owlishly 'aUlISlI Pu% 3 +owls aUlz Kj% 1 +own @Un J0%,OA*,Qx* 12C,3B,6A,9 +owned @Und Jc%,Jd% 12C,3B,6A,9 +owner '@Un@R K6% 2 +owner-driven ,@Un@-'drIvn OA$ 4 +owner-driver ,@Un@-'draIv@R K6% 4 +owner-drivers ,@Un@-'draIv@z Kj% 4 +owner-occupied ,@Un@r-'0kj@paId OA% 5 +owner-occupier ,@Un@r-'0kjUpaI@R K6% 6 +owner-occupiers ,@Un@r-'0kjUpaI@z Kj% 6 +ownerless '@Un@l@s OA% 3 +owners '@Un@z Kj% 2 +ownership '@Un@SIp L@% 3 +owning '@UnIN Jb% 22C,3B,6A,9 +owns @Unz Ja% 12C,3B,6A,9 +ox 0ks Ki% 1 +oxen '0ksn Kj% 2 +oxeye '0ksaI K6$ 2 +oxeyed '0ksaId OA$ 2 +oxeyes '0ksaIz Kj$ 2 +oxidation ,0ksId'eISn L@% 4 +oxide '0ksaId M6% 2 +oxides '0ksaIdz Mj% 2 +oxidization ,0ksIdaI'zeISn M6% 5 +oxidizations ,0ksIdaI'zeISnz Mj$ 5 +oxidize '0ksIdaIz J2% 32A,6A +oxidized '0ksIdaIzd Jc%,Jd% 32A,6A +oxidizes '0ksIdaIzIz Ja% 42A,6A +oxidizing '0ksIdaIzIN Jb% 42A,6A +oxtail '0ksteIl K6% 2 +oxtails '0ksteIlz Kj$ 2 +oxyacetylene ,0ksI@'set@lin L@%,OA% 6 +oxygen '0ksIdZ@n L@% 3 +oxygenate '0ksIdZ@neIt H2% 4 +oxygenated '0ksIdZ@neItId Hc%,Hd% 5 +oxygenates '0ksIdZ@neIts Ha% 4 +oxygenating '0ksIdZ@neItIN Hb% 5 +oxygenize '0ksIdZ@naIz H2$ 4 +oxygenized '0ksIdZ@naIzd Hc$,Hd$ 4 +oxygenizes '0ksIdZ@naIzIz Ha$ 5 +oxygenizing '0ksIdZ@naIzIN Hb$ 5 +oyes @U'jes W-$ 2 +oyez @U'jez W-$ 2 +oyster 'oIst@R K6% 2 +oyster-bank 'oIst@-b&Nk K6$ 3 +oyster-banks 'oIst@-b&Nks Kj$ 3 +oyster-bar 'oIst@-bAR K6$ 3 +oyster-bars 'oIst@-bAz Kj$ 3 +oyster-bed 'oIst@-bed K6% 3 +oyster-beds 'oIst@-bedz Kj% 3 +oyster-catcher 'oIst@-k&tS@R K6% 4 +oyster-catchers 'oIst@-k&tS@z Kj% 4 +oysters 'oIst@z Kj% 2 +oz 0z Y]% 1 +ozone '@Uz@Un L@% 2 +p pi Ki$ 1 +p's piz Kj$ 1 +p^at_e 'p&teI M6% 2 +p^at_es 'p&teIz Mj% 2 +pa pA Ki% 1 +pabulum 'p&bjUl@m L@$ 3 +pace peIs J2%,K6% 12A,2C,6A,15B +paced peIst Jc%,Jd% 12A,2C,6A,15B +pacemaker 'peIsmeIk@R K6% 3 +pacemakers 'peIsmeIk@z Kj% 3 +paces 'peIsIz Ja%,Kj% 22A,2C,6A,15B +pacesetter 'peIs+set@R K6% 3 +pacesetters 'peIs+set@z Kj% 3 +pachyderm 'p&kId3m K6$ 3 +pachyderms 'p&kId3mz Kj$ 3 +pacific p@'sIfIk OA$ 3 +pacifically p@'sIfIklI Pu$ 4 +pacification ,p&sIfI'keISn L@$ 5 +pacified 'p&sIfaId Hc%,Hd% 36A +pacifies 'p&sIfaIz Ha% 36A +pacifism 'p&sIfIz@m L@% 4 +pacifist 'p&sifIst K6% 3 +pacifists 'p&sifIsts Kj% 3 +pacify 'p&sIfaI H3% 36A +pacifying 'p&sIfaIIN Hb% 46A +pacing 'peIsIN Jb% 22A,2C,6A,15B +pack p&k J0%,K6% 12A,2C,3A,6A,14,15A,15B +pack-animal 'p&k-&nIml K6% 4 +pack-animals 'p&k-&nImlz Kj% 4 +pack-saddle 'p&k-s&dl K6% 3 +pack-saddles 'p&k-s&dlz Kj% 3 +pack-thread 'p&k-Tred L@$ 2 +package 'p&kIdZ H2%,K6% 2 +packaged 'p&kIdZd Hc%,Hd% 2 +packages 'p&kIdZIz Ha%,Kj% 3 +packaging 'p&kIdZIN Hb% 3 +packed p&kt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +packer 'p&k@R K6% 2 +packers 'p&k@z Kj% 2 +packet 'p&kIt K6% 2 +packet-boat 'p&kIt-b@Ut K6% 3 +packet-boats 'p&kIt-b@Uts Kj% 3 +packets 'p&kIts Kj% 2 +packhorse 'p&khOs K6% 2 +packhorses 'p&khOsIz Kj% 3 +packing 'p&kIN Jb%,L@% 22A,2C,3A,6A,14,15A,15B +packing-case 'p&kIN-keIs K6% 3 +packing-cases 'p&kIN-keIsIz Kj% 4 +packing-needle 'p&kIN-nidl K6$ 4 +packing-needles 'p&kIN-nidlz Kj$ 4 +packs p&ks Ja%,Kj% 12A,2C,3A,6A,14,15A,15B +pact p&kt K6% 1 +pacts p&kts Kj$ 1 +pad p&d J4%,K6% 12A,2C,6A,15B +padded 'p&dId Jc%,Jd% 22A,2C,6A,15B +paddies 'p&dIz Mj$ 2 +padding 'p&dIN Jb%,L@% 22A,2C,6A,15B +paddle 'p&dl J2%,K6% 22A,6A +paddle-box 'p&dl-b0ks K7$ 3 +paddle-boxes 'p&dl-b0ksIz Kj$ 4 +paddle-steamer 'p&dl-stim@R K6% 4 +paddle-steamers 'p&dl-stim@z Kj% 4 +paddle-wheel 'p&dl-wil K6% 3 +paddle-wheels 'p&dl-wilz Kj% 3 +paddled 'p&dld Jc%,Jd% 22A,6A +paddles 'p&dlz Ja%,Kj% 22A,6A +paddling 'p&dlIN Jb% 22A,6A +paddock 'p&d@k K6% 2 +paddocks 'p&d@ks Kj% 2 +paddy 'p&dI M8$ 2 +paddy-field 'p&dI-fild K6% 3 +paddy-fields 'p&dI-fildz Kj% 3 +padlock 'p&dl0k H0%,K6% 26A +padlocked 'p&dl0kt Hc%,Hd% 26A +padlocking 'p&dl0kIN Hb% 36A +padlocks 'p&dl0ks Ha%,Kj% 26A +padre 'pAdreI K6% 2 +padres 'pAdreIz Kj% 2 +pads p&dz Ja%,Kj% 12A,2C,6A,15B +paean 'pi@n K6$ 2 +paeans 'pi@nz Kj$ 2 +paederasty 'ped@r&stI L@$ 4 +paediatrics ,pidI'&trIks Lk% 4 +paeonies 'pi@nIz Kj$ 3 +paeony 'pi@nI K8$ 3 +pagan 'peIg@n K6%,OA% 2 +paganism 'peIg@nIz@m L@$ 4 +pagans 'peIg@nz Kj$ 2 +page peIdZ H2%,K6% 16A +pageant 'p&dZ@nt K6% 2 +pageantry 'p&dZ@ntrI L@% 3 +pageants 'p&dZ@nts Kj% 2 +paged peIdZd Hc%,Hd% 16A +pages 'peIdZIz Ha%,Kj% 26A +pagination ,p&dZI'neISn L@% 4 +paging 'peIdZIN Hb% 26A +pagoda p@'g@Ud@ K6% 3 +pagodas p@'g@Ud@z Kj% 3 +pah pA W-$ 1 +paid peId Jc%,Jd% 12A,3A,6A,12A,12B,13A,13B,14,15B +pail peIl K6% 1 +pailful 'peIlfUl K6% 2 +pailfuls 'peIlfUlz Kj% 2 +paillasse 'p&lI&s K6$ 3 +paillasses 'p&lI&sIz Kj$ 4 +pailliasse 'p&lI&s K6$ 3 +pailliasses 'p&lI&sIz Kj$ 4 +pails peIlz Kj% 1 +pain peIn H0%,M6% 16A +pained peInd Hc%,Hd%,OA% 16A +painful 'peInf@l OA% 2 +painfully 'peInf@lI Pu% 3 +paining 'peInIN Hb% 26A +painkiller 'peInkIl@R K6% 3 +painkillers 'peInkIl@z Kj% 3 +painless 'peInl@s OA% 2 +painlessly 'peInl@slI Pu% 3 +pains peInz Ha%,Mj% 16A +painstaking 'peInzteIkIN OA% 3 +painstakingly 'peInzteIkINlI Pu% 4 +paint peInt J0%,M6% 12A,2C,6A,15A,15B,22 +paintbox 'peIntb0ks K7% 2 +paintboxes 'peIntb0ksIz Kj% 3 +paintbrush 'peIntbrVS K7% 2 +paintbrushes 'peIntbrVSIz Kj% 3 +painted 'peIntId Jc%,Jd% 22A,2C,6A,15A,15B,22 +painter 'peInt@R K6% 2 +painters 'peInt@z Kj% 2 +painting 'peIntIN Jb%,M6% 22A,2C,6A,15A,15B,22 +paintings 'peIntINz Mj% 2 +paints peInts Ja%,Mj% 12A,2C,6A,15A,15B,22 +pair pe@R J0%,K6% 12A,2C,6A,15B +paired pe@d Jc%,Jd% 12A,2C,6A,15B +pairing 'pe@rIN Jb% 22A,2C,6A,15B +pairs pe@z Ja%,Kj% 12A,2C,6A,15B +paisley 'peIzlI L@% 2 +pajamas p@'dZAm@z Kj% 3 +pal p&l I4%,K6% 1 +palace 'p&lIs K6% 2 +palaces 'p&lIsIz Kj% 3 +paladin 'p&l@dIn K6$ 3 +paladins 'p&l@dInz Kj$ 3 +palaeo- ,p&lI@U- U-% 3 +palaeolithic ,p&lI@U'lITIk OA% 5 +palaeontologist ,p&lI0n't0l@dZIst K6% 6 +palaeontologists ,p&lI0n't0l@dZIsts Kj% 6 +palaeontology ,p&lI0n't0l@dZI L@% 6 +palankeen ,p&l@n'kin K6$ 3 +palankeens ,p&l@n'kinz Kj$ 3 +palanquin ,p&l@n'kin K6$ 3 +palanquins ,p&l@n'kinz Kj$ 3 +palatable 'p&l@t@bl OA% 4 +palatably 'p&l@t@blI Pu% 4 +palatal 'p&l@tl K6$,OA$ 3 +palatals 'p&l@tlz Kj$ 3 +palate 'p&l@t K6% 2 +palates 'p&l@ts Kj% 2 +palatial p@'leISl OA% 3 +palatinate p@'l&tIn@t K6$ 4 +palatinates p@'l&tIn@ts Kj$ 4 +palaver p@'lAv@R I0$,M6$ 32A +palavered p@'lAv@d Ic$,Id$ 32A +palavering p@'lAv@rIN Ib$ 42A +palavers p@'lAv@z Ia$,Mj$ 32A +pale peIl I2%,K6%,OB% 12A,2C +paled peIld Ic%,Id% 12A,2C +paleface 'peIlfeIs K6% 2 +palefaces 'peIlfeIsIz Kj% 3 +palely 'peIl+lI Pu$ 2 +paleness 'peIln@s L@% 2 +paleolithic ,p&lI@U'lITIk OA% 5 +paleontologist ,p&lI0n't0l@dZIst K6% 6 +paleontologists ,p&lI0n't0l@dZIsts Kj% 6 +paleontology ,p&lI0n't0l@dZI L@% 6 +paler 'peIl@R Or% 2 +pales peIlz Ia%,Kj% 12A,2C +palest 'peIlIst Os% 2 +palette 'p&lIt K6% 2 +palette-knife 'p&lIt-naIf Ki% 3 +palette-knives 'p&lIt-naIvz Kj% 3 +palettes 'p&lIts Kj% 2 +palfrey 'pOlfrI K6$ 2 +palfreys 'pOlfrIz Kj$ 2 +palimpsest 'p&lImpsest K6$ 3 +palimpsests 'p&lImpsests Kj$ 3 +palindrome 'p&lIndr@Um K6% 3 +palindromes 'p&lIndr@Umz Kj% 3 +paling 'peIlIN Ib$,K6$ 22A,2C +palings 'peIlINz Kj% 2 +palisade ,p&lI'seId H2$,K6$ 36A +palisaded ,p&lI'seIdId Hc$,Hd$ 46A +palisades ,p&lI'seIdz Ha$,Kj$ 36A +palisading ,p&lI'seIdIN Hb$ 46A +palish 'peIlIS OA$ 2 +pall pOl I0%,K6% 12A,3A +pallbearer 'pOlbe@r@R K6% 3 +pallbearers 'pOlbe@r@z Kj% 3 +palled p&ld Ic$,Id$ 1 +palled pOld Ic%,Id% 12A,3A +pallet 'p&lIt K6% 2 +pallets 'p&lIts Kj% 2 +palliasse 'p&lI&s K6$ 3 +palliasses 'p&lI&sIz Kj$ 4 +palliate 'p&lIeIt H2$ 36A +palliated 'p&lIeItId Hc$,Hd$ 46A +palliates 'p&lIeIts Ha$ 36A +palliating 'p&lIeItIN Hb$ 46A +palliation ,p&lI'eISn M6$ 4 +palliations ,p&lI'eISnz Mj$ 4 +palliative 'p&lI@tIv K6%,OA% 4 +palliatives 'p&lI@tIvz Kj% 4 +pallid 'p&lId OA% 2 +pallidly 'p&lIdlI Pu% 3 +pallidness 'p&lIdn@s L@$ 3 +pallier 'p&lI@R Or$ 3 +palliest 'p&lIIst Os$ 3 +palling 'p&lIN Ib% 2 +palling 'pOlIN Ib% 22A,3A +pallor 'p&l@R L@% 2 +palls pOlz Ia%,Kj% 12A,3A +pally 'p&lI OD% 2 +palm pAm H0%,K6% 16A,15B +palm-oil 'pAm-oIl L@% 2 +palmed pAmd Hc%,Hd% 16A,15B +palmer 'pAm@R K6$ 2 +palmers 'pAm@z Kj$ 2 +palmetto p&l'met@U K6$ 3 +palmettoes p&l'met@Uz Kj$ 3 +palmettos p&l'met@Uz Kj$ 3 +palmier 'pAmI@R Or$ 3 +palmiest 'pAmIIst Os$ 3 +palming 'pAmIN Hb% 26A,15B +palmist 'pAmIst K6% 2 +palmistry 'pAmIstrI L@% 3 +palmists 'pAmIsts Kj% 2 +palms pAmz Ha%,Kj% 16A,15B +palmy 'pAmI OD% 2 +palpable 'p&lp@bl OA% 3 +palpably 'p&lp@blI Pu% 3 +palpitate 'p&lpIteIt I2% 32A,2C +palpitated 'p&lpIteItId Ic%,Id% 42A,2C +palpitates 'p&lpIteIts Ia% 32A,2C +palpitating 'p&lpIteItIN Ib% 42A,2C +palpitation ,p&lpI'teISn K6% 4 +palpitations ,p&lpI'teISnz Kj% 4 +pals p&lz Ia%,Kj% 1 +palsied 'pOlzId Hc$,Hd% 2 +palsies 'pOlzIz Ha$ 2 +palsy 'pOlzI H3$,L@% 2 +palsying 'pOlzIIN Hb$ 3 +palter 'pOlt@R I0$ 23A +paltered 'pOlt@d Ic$,Id$ 23A +paltering 'pOlt@rIN Ib$ 33A +palters 'pOlt@z Ia$ 23A +paltrier 'pOltrI@R Or% 3 +paltriest 'pOltrIIst Os% 3 +paltry 'pOltrI OD% 2 +pampas 'p&mp@s Kj% 2 +pampas-grass 'p&mp@s-grAs L@% 3 +pamper 'p&mp@R H0% 26A +pampered 'p&mp@d Hc%,Hd% 26A +pampering 'p&mp@rIN Hb% 36A +pampers 'p&mp@z Ha% 26A +pamphlet 'p&mflIt K6% 2 +pamphleteer ,p&mfl@'tI@R K6% 3 +pamphleteers ,p&mfl@'tI@z Kj% 3 +pamphlets 'p&mflIts Kj% 2 +pan p&n J4%,M6% 12C,3A,6A,15B +pan- p&n- U-% 1 +pan-pipes 'p&n-paIps Kj% 2 +panacea ,p&n@'sI@ K6% 4 +panaceas ,p&n@'sI@z Kj% 4 +panache p&'n&S L@% 2 +panama 'p&n@mA K6$ 3 +panamas 'p&n@mAz Kj$ 3 +panatella ,p&n@'tel@ K6$ 4 +panatellas ,p&n@'tel@z Kj$ 4 +pancake 'p&nkeIk K6% 2 +pancakes 'p&nkeIks Kj% 2 +panchromatic ,p&nkr@'m&tIk OA$ 4 +pancreas 'p&NkrI@s K7% 3 +pancreases 'p&NkrI@sIz Kj$ 4 +pancreatic ,p&NkrI'&tIk OA% 4 +panda 'p&nd@ K6% 2 +pandas 'p&nd@z Kj% 2 +pandemic p&n'demIk K6$,OA$ 3 +pandemics p&n'demIks Kj$ 3 +pandemonium ,p&ndI'm@UnI@m M6% 5 +pandemoniums ,p&ndI'm@UnI@mz Mj$ 5 +pander 'p&nd@R I0%,K6% 23A +pandered 'p&nd@d Ic%,Id% 23A +pandering 'p&nd@rIN Ib% 33A +panders 'p&nd@z Ia%,Kj% 23A +pane peIn K6% 1 +panegyric ,p&nI'dZIrIk K6% 4 +panegyrics ,p&nI'dZIrIks Kj% 4 +panel 'p&nl H4%,K6% 2 +panelled 'p&nld Hc%,Hd% 2 +panelling 'p&n@lIN Hb%,L@% 3 +panels 'p&nlz Ha%,Kj% 2 +panes peInz Kj% 1 +pang p&N K6% 1 +panga 'p&Ng@ K6$ 2 +pangas 'p&Ng@z Kj$ 2 +pangs p&Nz Kj% 1 +panhandle 'p&nh&ndl I2$,K6$ 3 +panhandled 'p&nh&ndld Ic$,Id$ 3 +panhandles 'p&nh&ndlz Ia$,Kj$ 3 +panhandling 'p&nh&ndlIN Ib$ 3 +panic 'p&nIk I5%,M6% 2 +panic-stricken 'p&nIk-strIk@n OA% 4 +panicked 'p&nIkt Ic%,Id% 2 +panicking 'p&nIkIN Ib% 3 +panicky 'p&nIkI OA% 3 +panics 'p&nIks Ia%,Mj% 2 +panjandrum p&n'dZ&ndr@m K6$ 3 +panjandrums p&n'dZ&ndr@mz Kj$ 3 +panned p&nd Jc%,Jd% 12C,3A,6A,15B +pannier 'p&nI@R K6% 3 +panniers 'p&nI@z Kj% 3 +pannikin 'p&nIkIn K6$ 3 +pannikins 'p&nIkInz Kj$ 3 +panning 'p&nIN Jb% 22C,3A,6A,15B +panoplied 'p&n@plId OA% 3 +panoplies 'p&n@plIz Kj% 3 +panoply 'p&n@plI K8% 3 +panoptic p&n'0ptIk OA$ 3 +panorama ,p&n@'rAm@ K6% 4 +panoramas ,p&n@'rAm@z Kj% 4 +panoramic ,p&n@'r&mIk OA% 4 +pans p&nz Ja%,Mj% 12C,3A,6A,15B +pansies 'p&nzIz Kj% 2 +pansy 'p&nzI K8% 2 +pant p&nt J0%,K6% 12A,2C,3A,6A,15B +pantaloon ,p&nt@'lun K6$ 3 +pantaloons ,p&nt@'lunz Kj$ 3 +pantechnicon p&n'teknIk@n K6% 4 +pantechnicons p&n'teknIk@nz Kj$ 4 +panted 'p&ntId Jc%,Jd% 22A,2C,3A,6A,15B +pantheism 'p&nTIIz@m L@% 4 +pantheist 'p&nTIIst K6% 3 +pantheistic ,p&nTI'IstIk OA% 4 +pantheists 'p&nTIIsts Kj$ 3 +pantheon 'p&nTI@n K6% 3 +pantheons 'p&nTI@nz Kj$ 3 +panther 'p&nT@R K6% 2 +panthers 'p&nT@z Kj% 2 +panties 'p&ntIz Kj% 2 +pantile 'p&ntaIl K6$ 2 +pantiles 'p&ntaIlz Kj$ 2 +panting 'p&ntIN Jb% 22A,2C,3A,6A,15B +pantingly 'p&ntINlI Pu$ 3 +panto 'p&nt@U K6% 2 +pantograph 'p&nt@grAf K6$ 3 +pantographs 'p&nt@grAfs Kj$ 3 +pantomime 'p&nt@maIm M6% 3 +pantomimes 'p&nt@maImz Mj% 3 +pantos 'p&nt@Uz Kj% 2 +pantries 'p&ntrIz Kj% 2 +pantry 'p&ntrI K8% 2 +pantryman 'p&ntrIm&n Ki$ 3 +pantrymen 'p&ntrImen Kj$ 3 +pants p&nts Ja%,Kj% 12A,2C,3A,6A,15B +panty-hose 'p&ntI-h@Uz L@% 3 +panzer 'p&nts@R Oq$ 2 +pap p&p L@% 1 +papa p@'pA K6% 2 +papacies 'peIp@sIz Kj$ 3 +papacy 'peIp@sI K8% 3 +papal 'peIpl OA% 2 +papas p@'pAz Kj$ 2 +papaw 'pOpO K6$ 2 +papaws pO'pOz Kj$ 2 +papaya p@'paI@ K6$ 3 +papayas p@'paI@z Kj$ 3 +paper 'peIp@R H0%,M6% 26A,15B +paper-chase 'peIp@-tSeIs K6% 3 +paper-chases 'peIp@-tSeIsIz Kj$ 4 +paperback 'peIp@b&k K6% 3 +paperbacked 'peIp@b&kt OA% 3 +paperbacks 'peIp@b&ks Kj% 3 +paperclip 'peIp@klIp K6% 3 +paperclips 'peIp@klIps Kj% 3 +papered 'peIp@d Hc%,Hd% 26A,15B +paperhanger 'peIp@h&N@R K6$ 4 +paperhangers 'peIp@h&N@z Kj$ 4 +papering 'peIp@rIN Hb% 36A,15B +paperknife 'peIp@naIf Ki% 3 +paperknives 'peIp@naIvz Kj% 3 +paperless 'peIp@lIs OA% 3 +papermill 'peIp@mIl K6% 3 +papermills 'peIp@mIlz Kj% 3 +papers 'peIp@z Ha%,Mj% 26A,15B +paperweight 'peIp@weIt K6% 3 +paperweights 'peIp@weIts Kj% 3 +paperwork 'peIp@w3k L@% 3 +papier-m^ach_e ,p&pIeI-'m&SeI L@% 4 +papist 'peIpIst K6%,OA% 2 +papists 'peIpIsts Kj% 2 +papoose p@'pus K6$ 2 +papooses p@'pusIz Kj$ 3 +paprika 'p&prIk@ L@% 3 +papyri p@'paIraI Kj$ 3 +papyrus p@'paIr@s M7$ 3 +papyruses p@'paIr@sIz Mj$ 4 +par pAR M6% 1 +par excellence ,pAr 'eks@lAns Pu% 4 +para 'p&r@ Y>% 2 +parable 'p&r@bl K6% 3 +parables 'p&r@blz Kj% 3 +parabola p@'r&b@l@ K6% 4 +parabolas p@'r&b@l@z Kj% 4 +parabolic ,p&r@'b0lIk OA% 4 +parabolical ,p&r@'b0lIkl OA$ 5 +parachute 'p&r@Sut J2%,K6% 32A,2C,6A,15A,15B +parachuted 'p&r@SutId Jc%,Jd% 42A,2C,6A,15A,15B +parachutes 'p&r@Suts Ja%,Kj% 32A,2C,6A,15A,15B +parachuting 'p&r@SutIN Jb% 42A,2C,6A,15A,15B +parachutist 'p&r@SutIst K6% 4 +parachutists 'p&r@SutIsts Kj% 4 +parade p@'reId J2%,M6% 22A,6A +parade-ground p@'reId-graUnd K6% 3 +parade-grounds p@'reId-graUndz Kj% 3 +paraded p@'reIdId Jc%,Jd% 32A,6A +parades p@'reIdz Ja%,Mj% 22A,6A +paradigm 'p&r@daIm K6% 3 +paradigms 'p&r@daImz Kj% 3 +parading p@'reIdIN Jb% 32A,6A +paradise 'p&r@daIs M6% 3 +paradises 'p&r@daIsIz Mj$ 4 +paradisiac ,p&r@'dIzI&k OA$ 5 +paradisiacal ,p&r@dI'zaI@kl OA$ 6 +paradox 'p&r@d0ks K7% 3 +paradoxes 'p&r@d0ksIz Kj% 4 +paradoxical ,p&r@'d0ksIkl OA% 5 +paradoxically ,p&r@'d0ksIklI Pu% 5 +paraffin 'p&r@fIn L@% 3 +paragon 'p&r@g@n K6% 3 +paragons 'p&r@g@nz Kj% 3 +paragraph 'p&r@grAf H0%,K6% 3 +paragraphed 'p&r@grAft Hc%,Hd% 3 +paragraphing 'p&r@grAfIN Hb% 4 +paragraphs 'p&r@grAfs Ha%,Kj% 3 +parakeet 'p&r@kit K6% 3 +parakeets 'p&r@kits Kj% 3 +parallel 'p&r@lel H4%,M6%,OA% 36A +paralleled 'p&r@leld Hc%,Hd% 36A +paralleling 'p&r@lelIN Hb% 46A +parallelism 'p&r@lelIz@m M6% 5 +parallelisms 'p&r@lelIz@mz Mj$ 5 +parallelogram ,p&r@'lel@gr&m K6% 5 +parallelograms ,p&r@'lel@gr&mz Kj% 5 +parallels 'p&r@lelz Ha%,Mj% 36A +paralyse 'p&r@laIz H2% 36A +paralysed 'p&r@laIzd Hc%,Hd% 36A +paralyses 'p&r@laIzIz Ha% 46A +paralysing 'p&r@laIzIN Hb% 46A +paralysis p@'r&l@sIs L@% 4 +paralytic ,p&r@'lItIk K6%,OA% 4 +paralytics ,p&r@'lItIks Kj% 4 +paralyze 'p&r@laIz H2% 36A +paralyzed 'p&r@laIzd Hc%,Hd% 36A +paralyzes 'p&r@laIzIz Ha% 46A +paralyzing 'p&r@laIzIN Hb% 46A +parameter p@'r&mIt@R K6% 4 +parameters p@'r&mIt@z Kj% 4 +paramilitary ,p&r@'mIlItrI OA% 5 +paramount 'p&r@maUnt OA% 3 +paramountcy 'p&r@maUntsI L@$ 4 +paramour 'p&r@mU@R K6% 3 +paramours 'p&r@mU@z Kj% 3 +paranoia ,p&r@'noI@ L@% 4 +paranoiac ,p&r@'noI&k K6% 4 +paranoiacs ,p&r@'noI&ks Kj% 4 +paranoid 'p&r@noId K6$,OA% 3 +paranoids 'p&r@noIdz Kj$ 3 +parapet 'p&r@pIt K6% 3 +parapets 'p&r@pIts Kj% 3 +paraphernalia ,p&r@f@'neIlI@ L@% 6 +paraphrase 'p&r@freIz H2% 36A +paraphrased 'p&r@freIzd Hc%,Hd% 36A +paraphrases 'p&r@freIzIz Ha% 46A +paraphrasing 'p&r@freIzIN Hb% 46A +paraplegia ,p&r@'plidZ@ L@% 5 +paraplegic ,p&r@'plidZIk K6%,OA% 4 +paraplegics ,p&r@'plidZIks Kj% 4 +parasite 'p&r@saIt K6% 3 +parasites 'p&r@saIts Kj% 3 +parasitic ,p&r@'sItIk OA% 4 +parasitical ,p&r@'sItIkl OA% 5 +parasol 'p&r@s0l K6% 3 +parasols 'p&r@s0lz Kj% 3 +paratrooper 'p&r@trup@R K6% 4 +paratroopers 'p&r@trup@z Kj% 4 +paratroops 'p&r@trups Kj% 3 +paratyphoid ,p&r@'taIfoId L@% 4 +parboil 'pAboIl H0% 26A +parboiled 'pAboIld Hc%,Hd% 26A +parboiling 'pAboIlIN Hb$ 36A +parboils 'pAboIlz Ha$ 26A +parcel 'pAsl H4%,K6% 26A,15B +parcelled 'pAsld Hc%,Hd% 26A,15B +parcelling 'pAslIN Hb% 26A,15B +parcels 'pAslz Ha%,Kj% 26A,15B +parch pAtS H1$ 16A +parched pAtSt Hc$,Hd% 16A +parches 'pAtSIz Ha$ 26A +parching 'pAtSIN Hb$ 26A +parchment 'pAtSm@nt M6% 2 +parchments 'pAtSm@nts Mj% 2 +pardon 'pAdn H0%,M6% 26A,12B,13B +pardonable 'pAdn@bl OA% 3 +pardonably 'pAdn@blI Pu% 3 +pardoned 'pAdnd Hc%,Hd% 26A,12B,13B +pardoner 'pAd@n@R K6% 3 +pardoners 'pAd@n@z Kj% 3 +pardoning 'pAd@nIN Hb% 36A,12B,13B +pardons 'pAdnz Ha%,Mj% 26A,12B,13B +pare pe@R H2% 16A,15B +pared pe@d Hc%,Hd% 16A,15B +paregoric ,p&r@'g0rIk L@$ 4 +parent 'pe@r@nt K6% 2 +parentage 'pe@r@ntIdZ L@% 3 +parental p@'rentl OA% 3 +parentally p@'rent@lI Pu% 4 +parentheses p@'renT@siz Kj% 4 +parenthesis p@'renT@sIs Ki% 4 +parenthetic ,p&r@n'TetIk OA$ 4 +parenthetical ,p&r@n'TetIkl OA$ 5 +parenthetically ,p&r@n'TetIklI Pu% 5 +parents 'pe@r@nts Kj% 2 +pares pe@z Ha% 16A,15B +pari passu ,p&rI 'p&su Pu$ 4 +pari-mutuel ,p&rI-'mjutjUel K6$ 5 +pari-mutuels ,p&rI-'mjutjUelz Kj$ 5 +pariah p@'raI@ K6% 3 +pariah-dog p@-'raI@d0g K6$ 4 +pariah-dogs p@-'raI@d0gz Kj$ 4 +pariahs p@'raI@z Kj% 3 +paring 'pe@rIN Hb% 26A,15B +parings 'pe@rINz Kj% 2 +parish 'p&rIS K7% 2 +parishes 'p&rISIz Kj% 3 +parishioner p@'rIS@n@R K6% 4 +parishioners p@'rIS@n@z Kj% 4 +parity 'p&rItI L@% 3 +park pAk J0%,K6% 12A,6A,15A +parka 'pAk@ K6$ 2 +parkas 'pAk@z Kj$ 2 +parked pAkt Jc%,Jd% 12A,6A,15A +parking 'pAkIN Jb%,L@% 22A,6A,15A +parks pAks Ja%,Kj% 12A,6A,15A +parky 'pAkI OA% 2 +parlance 'pAl@ns K6% 2 +parlances 'pAl@nsIz Kj$ 3 +parley 'pAlI I0%,K6% 22A,3A +parleyed 'pAlId Ic%,Id% 22A,3A +parleying 'pAlIIN Ib% 32A,3A +parleys 'pAlIz Ia%,Kj% 22A,3A +parliament 'pAl@m@nt K6% 3 +parliamentarian ,pAl@m@n'te@rI@n K6% 6 +parliamentarians ,pAl@m@n'te@rI@nz Kj% 6 +parliamentary ,pAl@'mentrI OA% 4 +parliaments 'pAl@m@nts Kj% 3 +parlour 'pAl@R K6% 2 +parlour-car 'pAl@-kAR K6$ 3 +parlour-cars 'pAl@-kAz Kj$ 3 +parlours 'pAl@z Kj% 2 +parlous 'pAl@s OA$ 2 +parochial p@'r@UkI@l OA% 4 +parochialism p@'r@UkI@lIz@m L@% 6 +parochially p@'r@UkI@lI Pu% 5 +parodied 'p&r@dId Hc%,Hd% 36A +parodies 'p&r@dIz Ha%,Mj% 36A +parodist 'p&r@dIst K6$ 3 +parodists 'p&r@dIsts Kj$ 3 +parody 'p&r@dI H3%,M8% 36A +parodying 'p&r@dIIN Hb% 46A +parole p@'r@Ul H2$,L@% 26A +paroled p@'r@Uld Hc$,Hd% 26A +paroles p@'r@Ulz Ha$ 26A +paroling p@'r@UlIN Hb$ 36A +paroquet 'p&r@kit K6$ 3 +paroquets 'p&r@kits Kj$ 3 +paroxysm 'p&r@ksIz@m K6% 4 +paroxysms 'p&r@ksIz@mz Kj% 4 +parquet 'pAkeI L@% 2 +parr pAR K6$ 1 +parricide 'p&rIsaId M6$ 3 +parricides 'p&rIsaIdz Mj$ 3 +parried 'p&rId Hc%,Hd% 26A +parries 'p&rIz Ha%,Kj% 26A +parrot 'p&r@t K6% 2 +parrots 'p&r@ts Kj% 2 +parrs pAz Kj$ 1 +parry 'p&rI H3%,K8% 26A +parrying 'p&rIIN Hb% 36A +pars pAz Mj$ 1 +parse pAz H2% 16A +parsed pAzd Hc%,Hd% 16A +parses 'pAzIz Ha% 26A +parsimonious ,pAsI'm@UnI@s OA% 5 +parsimony 'pAsIm@nI L@% 4 +parsing 'pAzIN Hb% 26A +parsley 'pAslI L@% 2 +parsnip 'pAsnIp K6% 2 +parsnips 'pAsnIps Kj% 2 +parson 'pAsn K6% 2 +parsonage 'pAs@nIdZ K6% 3 +parsonages 'pAs@nIdZIz Kj$ 4 +parsons 'pAsnz Kj% 2 +part pAt J0%,K6*,Pu% 12A,2D,3A,6A +part-owner pAt-'@Un@R K6% 3 +part-owners pAt-'@Un@z Kj% 3 +part-singing 'pAt-sININ L@% 3 +part-song 'pAt-s0N K6% 2 +part-songs 'pAt-s0Nz Kj% 2 +part-time 'pAt-taIm OA%,Pu% 2 +part-timer pAt-'taIm@R K6% 3 +part-timers pAt-'taIm@z Kj% 3 +partake pA'teIk J5% 23A +partaken pA'teIk@n Jd% 33A +partakes pA'teIks Ja% 23A +partaking pA'teIkIN Jb% 33A +parted 'pAtId Jc%,Jd% 22A,2D,3A,6A +parterre pA'te@R K6$ 2 +parterres pA'te@z Kj$ 2 +parthenogenesis ,pATIn@U'dZen@sIs L@$ 6 +parti-coloured 'pAtI-kVl@d OA$ 4 +partial 'pASl OA% 2 +partialities ,pASI'&lItIz Mj% 5 +partiality ,pASI'&lItI M8% 5 +partially 'pAS@lI Pu% 3 +participant pA'tIsIp@nt K6% 4 +participants pA'tIsIp@nts Kj% 4 +participate pA'tIsIpeIt I2% 42A,3A +participated pA'tIsIpeItId Ic%,Id% 52A,3A +participates pA'tIsIpeIts Ia% 42A,3A +participating pA'tIsIpeItIN Ib% 52A,3A +participation pA,tIsI'peISn L@% 5 +participial ,pAtI'sIpI@l OA$ 5 +participle 'pAtIsIpl K6% 4 +participles 'pAtIsIplz Kj% 4 +particle 'pAtIkl K6% 3 +particles 'pAtIklz Kj% 3 +particular p@'tIkjUl@R K6%,OA% 4 +particularities p@,tIkjU'l&rItIz Mj% 6 +particularity p@,tIkjU'l&rItI M8% 6 +particularize p@'tIkjul@raIz J2% 52A,6A +particularized p@'tIkjul@raIzd Jc%,Jd% 52A,6A +particularizes p@'tIkjul@raIzIz Ja% 62A,6A +particularizing p@'tIkjul@raIzIN Jb% 62A,6A +particularly p@'tIkjUl@lI Pu% 5 +particulars p@'tIkjUl@z Kj% 4 +parties 'pAtIz Mj% 2 +parting 'pAtIN Jb%,M6% 22A,2D,3A,6A +partings 'pAtINz Mj% 2 +partisan ,pAtI'z&n K6%,OA% 3 +partisans ,pAtI'z&nz Kj% 3 +partisanship ,pAtI'z&nSIp L@% 4 +partition pA'tISn H0%,M6% 36A,15B +partitioned pA'tISnd Hc%,Hd% 36A,15B +partitioning pA'tISnIN Hb% 46A,15B +partitions pA'tISnz Ha%,Mj% 36A,15B +partitive 'pAtItIv K6$,OA$ 3 +partitives 'pAtItIvz Kj$ 3 +partly 'pAtlI Pu% 2 +partner 'pAtn@R H0%,K6% 26A,15A +partnered 'pAtn@d Hc%,Hd% 26A,15A +partnering 'pAtn@rIN Hb% 36A,15A +partners 'pAtn@z Ha%,Kj% 26A,15A +partnership 'pAtn@SIp M6% 3 +partnerships 'pAtn@SIps Mj% 3 +partook pA'tUk Jc% 23A +partridge 'pAtrIdZ M6% 2 +partridges 'pAtrIdZIz Mj% 3 +parts pAts Ja%,Kj% 12A,2D,3A,6A +parturition ,pAtjU'rISn L@% 4 +party 'pAtI M8* 2 +party-spirit ,pAtI-'spIrIt L@% 4 +party-spirited ,pAtI-'spIrItId OA$ 5 +party-wall ,pAtI-'wOl K6% 3 +party-walls ,pAtI-'wOlz Kj% 3 +parvenu 'pAv@nju K6$ 3 +parvenus 'pAv@njuz Kj$ 3 +paschal 'p&skl OA$ 2 +pasha 'pAS@ K6$ 2 +pashas 'pAS@z Kj$ 2 +pass pAs J1%,K7% 12A,2C,3A,6A,12A,13A,14,15A,15B +pass_e 'p&seI OA% 2 +pass_ee 'p&seI OA$ 2 +passable 'pAs@bl OA% 3 +passably 'pAs@blI Pu% 3 +passage 'p&sIdZ M6% 2 +passages 'p&sIdZIz Mj% 3 +passageway 'p&sIdZweI K6% 3 +passageways 'p&sIdZweIz Kj% 3 +passbook 'pAsbUk K6% 2 +passbooks 'pAsbUks Kj% 2 +passed pAst Jc%,Jd% 12A,2C,3A,6A,12A,13A,14,15A,15B +passenger 'p&sIndZ@R K6% 3 +passengers 'p&sIndZ@z Kj% 3 +passepartout ,p&spA'tu M6$ 3 +passepartouts ,p&spA'tuz Mj$ 3 +passer-by ,pAs@-'baI Ki% 3 +passers-by ,pAs@z-'baI Kj% 3 +passes 'pAsIz Ja%,Kj% 22A,2C,3A,6A,12A,13A,14,15A,15B +passim 'p&sIm Pu$ 2 +passing 'pAsIN Jb%,L@%,OA%,Pu% 22A,2C,3A,6A,12A,13A,14,15A,15B +passing-out ,pAsIN-'aUt OA% 3 +passion 'p&Sn M6% 2 +passion-flower 'p&Sn-flaU@R K6% 4 +passion-flowers 'p&Sn-flaU@z Kj% 4 +passionate 'p&S@n@t OA% 3 +passionately 'p&S@n@tlI Pu% 4 +passionless 'p&Snl@s OA% 3 +passions 'p&Snz Mj% 2 +passive 'p&sIv K6%,OA% 2 +passively 'p&sIvlI Pu% 3 +passiveness 'p&sIvn@s L@% 3 +passives 'p&sIvz Kj$ 2 +passivity p&'sIvItI L@% 4 +passkey 'pAski K6% 2 +passkeys 'pAskiz Kj% 2 +passport 'pAspOt K6% 2 +passports 'pAspOts Kj% 2 +password 'pAsw3d K6% 2 +passwords 'pAsw3dz Kj% 2 +past pAst Jd%,K6*,OA*,Pu*,T-* 12A,2C,3A,6A,12A,13A,14,15A,15B +pasta 'p&st@ L@% 2 +paste peIst H2%,M6% 16A,15A,15B +paste-up 'peIst-Vp K6$ 2 +paste-ups 'peIst-Vps Kj$ 2 +pasteboard 'peIstbOd L@% 2 +pasted 'peIstId Hc%,Hd% 26A,15A,15B +pastel 'p&stl K6% 2 +pastels 'p&stlz Kj% 2 +pastern 'p&st@n K6$ 2 +pasterns 'p&st@nz Kj$ 2 +pastes peIsts Ha%,Mj% 16A,15A,15B +pasteurization ,pAstS@raI'zeISn L@% 5 +pasteurize 'pAstS@raIz H2% 36A +pasteurized 'pAstS@raIzd Hc%,Hd% 36A +pasteurizes 'pAstS@raIzIz Ha% 46A +pasteurizing 'pAstS@raIzIN Hb% 46A +pastiche p&'stiS K6% 2 +pastiches p&'stiSIz Kj$ 3 +pastier 'peIstI@R Or% 3 +pasties 'p&stIz Kj% 2 +pastiest 'peIstIIst Os% 3 +pastille 'p&stIl K6% 2 +pastilles 'p&stIlz Kj% 2 +pastime 'pAstaIm K6% 2 +pastimes 'pAstaImz Kj% 2 +pasting 'peIstIN Hb%,K6% 26A,15A,15B +pastings 'peIstINz Kj% 2 +pastor 'pAst@R K6% 2 +pastoral 'pAst@r@l K6%,OA% 3 +pastorals 'pAst@r@lz Kj% 3 +pastorate 'pAst@r@t K6$ 3 +pastorates 'pAst@r@ts Kj$ 3 +pastors 'pAst@z Kj% 2 +pastries 'peIstrIz Mj% 2 +pastry 'peIstrI M8% 2 +pastry-cook 'peIstrI-kUk K6% 3 +pastry-cooks 'peIstrI-kUks Kj% 3 +pasts pAsts Kj% 1 +pasturage 'pAstS@rIdZ L@% 3 +pasture 'pAstS@R J2%,M6% 22A,6A +pastured 'pAstS@d Jc%,Jd% 22A,6A +pastures 'pAstS@z Ja%,Mj% 22A,6A +pasturing 'pAstS@rIN Jb% 32A,6A +pasty 'p&stI K8% 2 +pasty 'peIstI OD% 2 +pat p&t J4%,K6%,Pu% 12A,6A,15A +patch p&tS H1%,K7% 16A,15B +patch-pocket 'p&tS-p0kIt K6$ 3 +patch-pockets 'p&tS-p0kIts Kj$ 3 +patched p&tSt Hc%,Hd% 16A,15B +patches 'p&tSIz Ha%,Kj% 26A,15B +patchier 'p&tSI@R Or% 3 +patchiest 'p&tSIIst Os% 3 +patchily 'p&tSIlI Pu% 3 +patchiness 'p&tSIn@s L@% 3 +patching 'p&tSIN Hb% 26A,15B +patchouli 'p&tSUlI L@$ 3 +patchwork 'p&tSw3k L@% 2 +patchy 'p&tSI OD% 2 +pate peIt K6% 1 +pate de foie gras ,p&teI d@ ,fwA 'grA L@% 5 +patella p@'tel@ K6% 3 +patellas p@'tel@z Kj$ 3 +patent 'peItnt H0%,K6%,OA% 26A +patented 'peItntId Hc%,Hd% 36A +patentee ,peItn'ti K6$ 3 +patentees ,peItn'tiz Kj$ 3 +patenting 'peItntIN Hb% 36A +patently 'peItntlI Pu% 3 +patents 'peItnts Ha%,Kj% 26A +paterfamilias ,peIt@f@'mIlI&s Ki% 6 +paternal p@'t3nl OA% 3 +paternalism p@'t3n@lIz@m L@% 5 +paternally p@'t3n@lI Pu% 4 +paternity p@'t3nItI L@% 4 +paternoster ,p&t@'n0st@R K6$ 4 +paternosters ,p&t@'n0st@z Kj$ 4 +pates peIts Kj% 1 +path pAT K6% 1 +path-finder 'pAT-faInd@R K6% 3 +path-finders 'pAT-faInd@z Kj% 3 +pathetic p@'TetIk OA% 3 +pathetically p@'TetIklI Pu% 4 +pathless 'pATl@s OA% 2 +pathogen 'p&T@dZ@n K6% 3 +pathogens 'p&T@dZ@nz Kj% 3 +pathological ,p&T@'l0dZIkl OA% 5 +pathologically ,p&T@'l0dZIklI Pu% 5 +pathologist p@'T0l@dZIst K6% 4 +pathologists p@'T0l@dZIsts Kj% 4 +pathology p@'T0l@dZI L@% 4 +pathos 'peIT0s L@% 2 +paths pADz Kj% 1 +pathway 'pATweI K6% 2 +pathways 'pATweIz Kj% 2 +patience 'peISns L@% 2 +patient 'peISnt K6%,OA% 2 +patiently 'peISntlI Pu% 3 +patients 'peISnts Kj% 2 +patina 'p&tIn@ K6$ 3 +patinas 'p&tIn@z Kj$ 3 +patio 'p&tI@U K6% 3 +patios 'p&tI@Uz Kj% 3 +patisserie p@'tis@rI K6% 4 +patisseries p@'tis@rIz Kj% 4 +patois 'p&twA Ki$ 2 +patois 'p&twAz Kj$ 2 +patrial 'peItrI@l K6$ 3 +patrials 'peItrI@lz Kj$ 3 +patriarch 'peItrIAk K6% 3 +patriarchal ,peItrI'Akl OA% 4 +patriarchate 'peItrIAkeIt K6$ 4 +patriarchates 'peItrIAkeIts Kj$ 4 +patriarchies 'peItrIAkIz Kj$ 4 +patriarchs 'peItrIAks Kj% 3 +patriarchy 'peItrIAkI K8% 4 +patrician p@'trISn K6%,OA% 3 +patricians p@'trISnz Kj% 3 +patricide 'p&trIsaId M6% 3 +patricides 'p&trIsaIdz Mj% 3 +patrimonial ,p&trI'm@UnI@l OA$ 5 +patrimonies 'p&trIm@nIz Kj$ 4 +patrimony 'p&trIm@nI K8$ 4 +patriot 'p&trI@t K6% 3 +patriotic ,p&trI'0tIk OA% 4 +patriotically ,p&trI'0tIklI Pu% 5 +patriotism 'p&trI@tIz@m L@% 5 +patriots 'p&trI@ts Kj% 3 +patrol p@'tr@Ul J4%,M6% 22A,6A +patrolled p@'tr@Uld Jc%,Jd% 22A,6A +patrolling p@'tr@UlIN Jb% 32A,6A +patrolman p@'tr@Ulm@n Ki% 3 +patrolmen p@'tr@Ulm@n Kj% 3 +patrols p@'tr@Ulz Ja%,Mj% 22A,6A +patron 'peItr@n K6% 2 +patronage 'p&tr@nIdZ L@% 3 +patroness 'peItr@nes K7% 3 +patronesses 'peItr@nesIz Kj% 4 +patronize 'p&tr@naIz H2% 36A +patronized 'p&tr@naIzd Hc%,Hd% 36A +patronizes 'p&tr@naIzIz Ha% 46A +patronizing 'p&tr@naIzIN Hb%,OA% 46A +patronizingly 'p&tr@naIzINlI Pu% 5 +patrons 'peItr@nz Kj% 2 +patronymic ,p&tr@'nImIk K6%,OA% 4 +patronymics ,p&tr@'nImIks Kj% 4 +pats p&ts Ja%,Kj% 12A,6A,15A +patted 'p&tId Jc%,Jd% 22A,6A,15A +patten 'p&tn K6$ 2 +pattens 'p&tnz Kj$ 2 +patter 'p&t@R J0%,L@% 22A,2C,6A +pattered 'p&t@d Jc%,Jd% 22A,2C,6A +pattering 'p&t@rIN Jb% 32A,2C,6A +pattern 'p&tn H0%,K6% 214 +patterned 'p&tnd Hc%,Hd% 214 +patterning 'p&tnIN Hb% 314 +patterns 'p&tnz Ha%,Kj% 214 +patters 'p&t@z Ja% 22A,2C,6A +patties 'p&tIz Kj% 2 +patting 'p&tIN Jb% 22A,6A,15A +patty 'p&tI K8% 2 +patty-pan 'p&tI-p&n K6$ 3 +patty-pans 'p&tI-p&nz Kj$ 3 +paucity 'pOsItI L@% 3 +paunch pOntS K7% 1 +paunches 'pOntSIz Kj% 2 +paunchier 'pOntSI@R Or% 3 +paunchiest 'pOntSIIst Os% 3 +paunchiness 'pOntSIn@s L@% 3 +paunchy 'pOntSI OD% 2 +pauper 'pOp@R K6% 2 +pauperism 'pOp@rIz@m L@$ 4 +pauperization ,pOp@raI'zeISn L@$ 5 +pauperize 'pOp@raIz H2% 36A +pauperized 'pOp@raIzd Hc%,Hd% 36A +pauperizes 'pOp@raIzIz Ha% 46A +pauperizing 'pOp@raIzIN Hb% 46A +paupers 'pOp@z Kj% 2 +pause pOz I2%,K6% 12A,4A +paused pOzd Ic%,Id% 12A,4A +pauses 'pOzIz Ia%,Kj% 22A,4A +pausing 'pOzIN Ib% 22A,4A +pave peIv H2% 16A +paved peIvd Hc%,Hd% 16A +pavement 'peIvm@nt K6% 2 +pavements 'peIvm@nts Kj% 2 +paves peIvz Ha% 16A +pavilion p@'vIlI@n K6% 4 +pavilions p@'vIlI@nz Kj% 4 +paving 'peIvIN Hb% 26A +paving-stone 'peIvIN-st@Un K6% 3 +paving-stones 'peIvIN-st@Unz Kj% 3 +paw pO H0%,K6% 16A,15B +pawed pOd Hc%,Hd% 16A,15B +pawing 'pOIN Hb% 26A,15B +pawkily 'pOkIlI Pu$ 3 +pawky 'pOkI OA$ 2 +pawl pOl K6$ 1 +pawls pOlz Kj$ 1 +pawn pOn H0%,M6% 16A +pawn-ticket 'pOn-tIkIt K6% 3 +pawn-tickets 'pOn-tIkIts Kj% 3 +pawnbroker 'pOnbr@Uk@R K6% 3 +pawnbrokers 'pOnbr@Uk@z Kj% 3 +pawned pOnd Hc%,Hd% 16A +pawning 'pOnIN Hb% 26A +pawns pOnz Ha%,Mj% 16A +pawnshop 'pOnS0p K6% 2 +pawnshops 'pOnS0ps Kj% 2 +pawpaw 'pOpO K6% 2 +pawpaws pO'pOz Kj% 2 +paws pOz Ha%,Kj% 16A,15B +pax p&ks K7$ 1 +paxes 'p&ksIz Kj$ 2 +pay peI J5%,L@% 12A,3A,6A,12A,12B,13A,13B,14,15B +pay-as-you-earn ,peI-@z-ju-'3n L@% 4 +pay-claim 'peI-kleIm K6% 2 +pay-claims 'peI-kleImz Kj% 2 +pay-packet 'peI-p&kIt K6% 3 +pay-packets 'peI-p&kIts Kj% 3 +pay-station 'peI-steISn K6$ 3 +pay-stations 'peI-steISnz Kj$ 3 +payable 'peI@bl OA% 3 +payday 'peIdeI K6% 2 +paydays 'peIdeIz Kj% 2 +paydirt 'peId3t L@% 2 +payee peI'i K6% 2 +payees peI'iz Kj% 2 +payer 'peI@R K6% 2 +payers 'peI@z Kj% 2 +paying 'peIIN Jb% 22A,3A,6A,12A,12B,13A,13B,14,15B +payload 'peIl@Ud K6% 2 +payloads 'peIl@Udz Kj% 2 +paymaster 'peImAst@R K6% 3 +paymasters 'peImAst@z Kj% 3 +payment 'peIm@nt M6% 2 +payments 'peIm@nts Mj% 2 +paynim 'peInIm K6$ 2 +paynims 'peInImz Kj$ 2 +payoff 'peI0f K6% 2 +payoffs 'peI0fs Kj% 2 +payphone 'peIf@Un K6% 2 +payphones 'peIf@Unz Kj% 2 +payroll 'peIr@Ul K6% 2 +payrolls 'peIr@Ulz Kj% 2 +pays peIz Ja% 12A,3A,6A,12A,12B,13A,13B,14,15B +paysheet 'peISit K6% 2 +paysheets 'peISits Kj% 2 +payslip 'peIslIp K6% 2 +payslips 'peIslIps Kj% 2 +pea pi K6% 1 +pea-chick 'pi-tSIk K6$ 2 +pea-chicks 'pi-tSIks Kj$ 2 +pea-flour 'pi-flaU@R L@$ 3 +pea-green 'pi-grin M6%,OA% 2 +pea-greens 'pi-grinz Mj$ 2 +pea-jacket 'pi-dZ&kIt K6$ 3 +pea-jackets 'pi-dZ&kIts Kj$ 3 +pea-soup pi-'sup M6% 2 +pea-soups pi-'sups Mj$ 2 +peace pis L@% 1 +peace-offering 'pis-0f@rIN K6% 4 +peace-offerings 'pis-0f@rINz Kj% 4 +peaceable 'pis@bl OA% 3 +peaceably 'pis@blI Pu% 3 +peaceful 'pisf@l OA% 2 +peacefully 'pisf@lI Pu% 3 +peacefulness 'pisfln@s L@% 3 +peacemaker 'pismeIk@R K6% 3 +peacemakers 'pismeIk@z Kj% 3 +peacetime 'pistaIm L@% 2 +peach pitS J1$,K7% 12A,3A,6A +peached pitSt Jc$,Jd$ 12A,3A,6A +peaches 'pitSIz Ja$,Kj% 22A,3A,6A +peaching 'pitSIN Jb$ 22A,3A,6A +peacock 'pik0k K6% 2 +peacock-blue ,pik0k-'blu M6%,OA% 3 +peacock-blues ,pik0k-'bluz Mj$ 3 +peacocks 'pik0ks Kj% 2 +peafowl 'pifaUl K6$ 2 +peafowls 'pifaUlz Kj$ 2 +peahen 'pihen K6% 2 +peahens 'pihenz Kj% 2 +peak pik I0%,K6% 12A +peaked pikt Ic%,Id%,OA% 12A +peakier 'pikI@R Or$ 3 +peakiest 'pikIIst Os$ 3 +peaking 'pikIN Ib% 22A +peaks piks Ia%,Kj% 12A +peaky 'pikI OD% 2 +peal pil J0%,K6% 12A,2C,6A +pealed pild Jc%,Jd% 12A,2C,6A +pealing 'pilIN Jb% 22A,2C,6A +peals pilz Ja%,Kj% 12A,2C,6A +peanut 'pinVt K6% 2 +peanuts 'pinVts Kj% 2 +pear pe@R M6% 1 +pearl p3l I0%,K6% 1 +pearl-barley p3l-'bAlI L@% 3 +pearl-diver 'p3l-daIv@R K6% 3 +pearl-divers 'p3l-daIv@z Kj% 3 +pearl-fisheries 'p3l-fIS@rIz Kj% 4 +pearl-fishery 'p3l-fIS@rI K8% 4 +pearl-oyster 'p3l-oIst@R K6% 3 +pearl-oysters 'p3l-oIst@z Kj% 3 +pearl-sago p3l-'seIg@U L@% 3 +pearled p3ld Ic$,Id$ 1 +pearlier 'p3lI@R Or$ 3 +pearlies 'p3liz Kj$ 2 +pearliest 'p3lIIst Os$ 3 +pearling 'p3lIN Ib$ 2 +pearls p3lz Ia$,Kj% 1 +pearly 'p3lI OD% 2 +pearmain 'pe@meIn K6$ 2 +pearmains 'pe@meInz Kj$ 2 +pears pe@z Mj% 1 +peas piz Kj% 1 +peasant 'pesnt K6% 2 +peasantries 'pezntrIz Kj$ 3 +peasantry 'pezntrI K8% 3 +peasants 'peznts Kj% 2 +pease piz L@$ 1 +pease-pudding piz-'pUdIN M6% 3 +pease-puddings piz-'pUdINz Mj% 3 +peashooter 'piSut@R K6% 3 +peashooters 'piSut@z Kj% 3 +peasouper pi'sup@R K6% 3 +peasoupers pi'sup@z Kj$ 3 +peat pit L@% 1 +peatier 'pitI@R Or$ 3 +peatiest 'pitIIst Os$ 3 +peaty 'pitI OD% 2 +pebble 'pebl K6% 2 +pebbles 'peblz Kj% 2 +pebblier 'peblI@R Or$ 3 +pebbliest 'peblIIst Os$ 3 +pebbly 'peblI OD% 2 +pecan pI'k&n K6% 2 +pecans pI'k&nz Kj$ 2 +peccable 'pek@bl OA$ 3 +peccadillo ,pek@'dIl@U K6% 4 +peccadilloes ,pek@'dIl@Uz Kj% 4 +peccadillos ,pek@'dIl@Uz Kj% 4 +peccaries 'pek@rIz Kj$ 3 +peccary 'pek@rI K8$ 3 +peck pek J0%,K6% 12A,2C,3A,6A +pecked pekt Jc%,Jd% 12A,2C,3A,6A +pecker 'pek@R K6% 2 +peckers 'pek@z Kj% 2 +pecking 'pekIN Jb% 22A,2C,3A,6A +peckish 'pekIS OA% 2 +pecks peks Ja%,Kj% 12A,2C,3A,6A +pectic 'pektIk OA$ 2 +pectin 'pektIn L@% 2 +pectoral 'pekt@r@l OA% 3 +peculate 'pekjUleIt J2$ 3 +peculated 'pekjUleItId Jc$,Jd$ 4 +peculates 'pekjUleIts Ja$ 3 +peculating 'pekjUleItIN Jb$ 4 +peculation ,pekjU'leISn M6$ 4 +peculations ,pekjU'leISnz Mj$ 4 +peculiar pI'kjulI@R OA% 4 +peculiarities pI,kjulI'&rItIz Mj% 6 +peculiarity pI,kjulI'&rItI M8% 6 +peculiarly pI'kjulI@lI Pu% 5 +pecuniary pI'kjunI@rI OA% 5 +pedagogic ,ped@'g0dZIk OA% 4 +pedagogical ,ped@'g0dZIk@l OA% 5 +pedagogue 'ped@g0g K6% 3 +pedagogues 'ped@g0gz Kj% 3 +pedagogy 'ped@g0dZI L@% 4 +pedal 'pedl J4%,K6%,OA% 22A,2C,6A +pedalled 'pedld Jc%,Jd% 22A,2C,6A +pedalling 'ped@lIN Jb% 32A,2C,6A +pedals 'pedlz Ja%,Kj% 22A,2C,6A +pedant 'pednt K6% 2 +pedantic pI'd&ntIk OA% 3 +pedantically pI'd&ntIklI Pu% 4 +pedantries 'pedntrIz Mj% 3 +pedantry 'pedntrI M8% 3 +pedants 'pednts Kj% 2 +peddle 'pedl J2% 22A,6A +peddled 'pedld Jc%,Jd% 22A,6A +peddler 'pedl@R K6% 2 +peddlers 'pedl@z Kj% 2 +peddles 'pedlz Ja% 22A,6A +peddling 'pedlIN Jb%,OA% 22A,6A +pederast 'ped@r&st K6$ 3 +pederasts 'ped@r&sts Kj$ 3 +pederasty 'ped@r&stI L@$ 4 +pedestal 'pedIstl K6% 3 +pedestals 'pedIstlz Kj% 3 +pedestrian pI'destrI@n K6%,OA% 4 +pedestrians pI'destrI@nz Kj% 4 +pediatrician ,pidI@'trISn K6% 5 +pediatricians ,pidI@'trISnz Kj% 5 +pediatrics ,pidI'&trIks Lk% 4 +pedicab 'pedIk&b K6$ 3 +pedicabs 'pedIk&bz Kj$ 3 +pedicure 'pedIkjU@R K6% 3 +pedicures 'pedIkjU@z Kj$ 3 +pedigree 'pedIgri M6% 3 +pedigrees 'pedIgriz Mj% 3 +pediment 'pedIm@nt K6$ 3 +pediments 'pedIm@nts Kj$ 3 +pedlar 'pedl@R K6% 2 +pedlars 'pedl@z Kj% 2 +pedometer pI'd0mIt@R K6$ 4 +pedometers pI'd0mIt@z Kj$ 4 +pee pi I5%,M6% 12A +peed pid Ic%,Id% 12A +peeing 'piIN Ib% 22A +peek pik I0%,K6% 1 +peek-a-boo ,pik-@-'bu L@% 3 +peeked pikt Ic%,Id% 1 +peeking 'pikIN Ib% 2 +peeks piks Ia%,Kj% 1 +peel pil J0%,L@% 12A,2C,6A,15B +peeled pild Jc%,Jd% 12A,2C,6A,15B +peeler 'pil@R K6% 2 +peelers 'pil@z Kj% 2 +peeling 'pilIN Jb% 22A,2C,6A,15B +peelings 'pilINz Kj% 2 +peels pilz Ja% 12A,2C,6A,15B +peep pip I0%,K6% 12A,2C +peeped pipt Ic%,Id% 12A,2C +peeper 'pip@R K6$ 2 +peepers 'pip@z Kj$ 2 +peephole 'piph@Ul K6% 2 +peepholes 'piph@Ulz Kj% 2 +peeping 'pipIN Ib% 22A,2C +peeps pips Ia%,Kj% 12A,2C +peepshow 'pipS@U K6% 2 +peepshows 'pipS@Uz Kj% 2 +peepul 'pip@l K6$ 2 +peepuls 'pip@lz Kj$ 2 +peer pI@R I0%,K6% 12A,3A +peerage 'pI@rIdZ K6% 2 +peerages 'pI@rIdZIz Kj% 3 +peered pI@d Ic%,Id% 12A,3A +peeress 'pI@res K7% 2 +peeresses 'pI@resIz Kj$ 3 +peering 'pI@rIN Ib% 22A,3A +peerless 'pI@l@s OA% 2 +peers pI@z Ia%,Kj% 12A,3A +pees piz Ia%,Mj% 12A +peeve piv H2$ 1 +peeved pivd Hc$,Hd%,OA% 1 +peeves pivz Ha$ 1 +peeving 'pivIN Hb$ 2 +peevish 'pivIS OA% 2 +peevishly 'pivISlI Pu% 3 +peevishness 'pivISn@s L@% 3 +peewit 'piwIt K6% 2 +peewits 'piwIts Kj% 2 +peg peg J4%,K6% 12C,6A,15B +pegged pegd Jc%,Jd% 12C,6A,15B +pegging 'pegIN Jb% 22C,6A,15B +pegs pegz Ja%,Kj% 12C,6A,15B +peignoir 'peInwAR K6$ 2 +peignoirs 'peInwAz Kj$ 2 +pejorative pI'dZ0r@tIv OA% 4 +pejoratively pI'dZ0r@tIvlI Pu% 5 +peke pik K6$ 1 +pekes piks Kj$ 1 +pekinese ,pikI'niz K9% 3 +pekoe 'pik@U L@$ 2 +pelf pelf L@$ 1 +pelican 'pelIk@n K6% 3 +pelicans 'pelIk@nz Kj% 3 +pelisse pe'lis K6$ 2 +pelisses pe'lisIz Kj$ 3 +pell-mell ,pel-'mel Pu% 2 +pellet 'pelIt K6% 2 +pellets 'pelIts Kj% 2 +pellucid pe'lusId OA% 3 +pellucidly pe'lusIdlI Pu% 4 +pelmet 'pelmIt K6% 2 +pelmets 'pelmIts Kj% 2 +pelota p@'l@Ut@ L@$ 3 +pelt pelt J0%,K6% 12C,6A,14 +pelted 'peltId Jc%,Jd% 22C,6A,14 +pelting 'peltIN Jb% 22C,6A,14 +pelts pelts Ja%,Kj% 12C,6A,14 +pelves 'pelviz Kj$ 2 +pelvic 'pelvIk OA% 2 +pelvis 'pelvIs K7% 2 +pelvises 'pelvIsIz Kj% 3 +pemmican 'pemIk@n L@$ 3 +pen pen H4%,K6% 115A,15B +pen-and-ink ,pen-@n-'INk L@% 3 +pen-friend 'pen-frend K6% 2 +pen-friends 'pen-frendz Kj% 2 +pen-name 'pen-neIm K6% 2 +pen-names 'pen-neImz Kj% 2 +pen-pusher 'pen-pUS@R K6% 3 +pen-pushers 'pen-pUS@z Kj% 3 +penal 'pinl OA% 2 +penalization ,pin@laI'zeISn M6$ 5 +penalizations ,pin@laI'zeISnz Mj$ 5 +penalize 'pin@laIz H2% 36A,14 +penalized 'pin@laIzd Hc%,Hd% 36A,14 +penalizes 'pin@laIzIz Ha% 46A,14 +penalizing 'pin@laIzIN Hb% 46A,14 +penally 'pin@lI Pu% 3 +penalties 'penltIz Mj% 3 +penalty 'penltI M8% 3 +penance 'pen@ns L@% 2 +pence pens Kj% 1 +penchant 'pAnSAn K6% 2 +penchants 'pAnSAnz Kj$ 2 +pencil 'pensl H4%,K6% 26A +pencilled 'pensld Hc%,Hd% 26A +pencilling 'pens@lIN Hb% 36A +pencils 'penslz Ha%,Kj% 26A +pendant 'pend@nt K6% 2 +pendants 'pend@nts Kj% 2 +pendent 'pend@nt OA$ 2 +pending 'pendIN OA%,T-% 2 +pendulous 'pendjUl@s OA% 3 +pendulum 'pendjUl@m K6% 3 +pendulums 'pendjUl@mz Kj% 3 +penetrability ,penItr@'bIlItI L@$ 6 +penetrable 'penItr@bl OA% 4 +penetrate 'penItreIt J2% 33A,6A +penetrated 'penItreItId Jc%,Jd% 43A,6A +penetrates 'penItreIts Ja% 33A,6A +penetrating 'penItreItIN Jb%,OA% 43A,6A +penetratingly 'penItreItINlI Pu% 5 +penetration ,penI'treISn M6% 4 +penetrations ,penI'treISnz Mj$ 4 +penetrative 'penItr@tIv OA$ 4 +penguin 'peNgwIn K6% 2 +penguins 'peNgwInz Kj% 2 +penicillin ,penI'sIlIn L@% 4 +peninsula p@'nInsjUl@ K6% 4 +peninsular p@'nInsjUl@R OA% 4 +peninsulas p@'nInsjUl@z Kj% 4 +penis 'pinIs K7% 2 +penises 'pinIsIz Kj% 3 +penitence 'penIt@ns L@% 3 +penitent 'penIt@nt K6%,OA% 3 +penitential ,penI'tenSl OA% 4 +penitentially ,penI'tenS@lI Pu% 5 +penitentiaries ,penI'tenS@rIz Kj% 5 +penitentiary ,penI'tenS@rI K8%,OA% 5 +penitently 'penIt@ntlI Pu% 4 +penitents 'penIt@nts Kj% 3 +penknife 'pen+naIf Ki% 2 +penknives 'pen+naIvz Kj% 2 +penmanship 'penm@nSIp L@% 3 +penn'orth 'pen@T K6$ 2 +penn'orths 'pen@Ts Kj$ 2 +pennant 'pen@nt K6% 2 +pennants 'pen@nts Kj% 2 +penned pend Hc%,Hd% 115A,15B +pennies 'penIz Kj% 2 +penniless 'penIlIs OA% 3 +penning 'penIN Hb% 215A,15B +pennon 'pen@n K6$ 2 +pennons 'pen@nz Kj$ 2 +penny 'penI K8% 2 +pennyweight 'penIweIt K6$ 3 +pennyweights 'penIweIts Kj$ 3 +pennyworth 'penIw@T K6% 3 +pennyworths 'penIw@Ts Kj$ 3 +penology pi'n0l@dZI L@$ 4 +pens penz Ha%,Kj% 115A,15B +pension 'p0nsI0n K6$ 3 +pension 'penSn H0%,K6% 215B +pensionable 'penSn@bl OA% 3 +pensioned 'penSnd Hc%,Hd% 215B +pensioner 'penSn@R K6% 3 +pensioners 'penSn@z Kj% 3 +pensioning 'penSnIN Hb$ 315B +pensions 'p0nsI0nz Kj$ 3 +pensions 'penSnz Ha$,Kj% 215B +pensive 'pensIv OA% 2 +pensively 'pensIvlI Pu% 3 +pensiveness 'pensIvn@s L@% 3 +penstock 'penst0k K6$ 2 +penstocks 'penst0ks Kj$ 2 +pent-up ,pent-'Vp OA% 2 +pentagon 'pent@g@n K6% 3 +pentagonal pen't&g@nl OA% 4 +pentagons 'pent@g@nz Kj% 3 +pentameter pen't&mIt@R K6% 4 +pentameters pen't&mIt@z Kj% 4 +pentathlon pen't&Tl@n K6% 3 +pentathlons pen't&Tl@nz Kj$ 3 +penthouse 'penthaUs K6% 2 +penthouses 'penthaUzIz Kj% 3 +penultimate pen'VltIm@t K6$,OA% 4 +penultimates pen'VltIm@ts Kj$ 4 +penumbra pI'nVmbr@ K6% 3 +penumbras pI'nVmbr@z Kj$ 3 +penurious pI'njU@rI@s OA% 4 +penuriously pI'njU@rI@slI Pu$ 5 +penuriousness pI'njU@rI@sn@s L@$ 5 +penury 'penjU@rI L@% 3 +peon 'pi@n K6$ 2 +peonage 'pi@nIdZ L@$ 3 +peonies 'pi@nIz Kj$ 3 +peons 'pi@nz Kj$ 2 +peony 'pi@nI K8$ 3 +people 'pipl H2$,M6* 26A +peopled 'pipld Hc$,Hd% 26A +peoples 'piplz Ha$,Mj$ 26A +peopling 'piplIN Hb$ 26A +pep pep H4%,L@% 115B +pepped pept Hc%,Hd% 115B +pepper 'pep@R H0%,M6% 26A +pepper-and-salt ,pep@r-@n-'s0lt L@% 4 +pepper-mill 'pep@-mIl K6% 3 +pepper-mills 'pep@-mIlz Kj% 3 +pepper-pot 'pep@-p0t K6% 3 +pepper-pots 'pep@-p0ts Kj% 3 +peppercorn 'pep@kOn K6% 3 +peppercorns 'pep@kOnz Kj% 3 +peppered 'pep@d Hc%,Hd% 26A +peppering 'pep@rIN Hb% 36A +peppermint 'pep@mInt M6% 3 +peppermints 'pep@mInts Mj% 3 +peppers 'pep@z Ha%,Mj% 26A +peppery 'pep@rI OA% 3 +pepping 'pepIN Hb% 215B +peps peps Ha% 115B +pepsin 'pepsIn L@% 2 +peptic 'peptIk OA% 2 +per p3R T-% 1 +peradventure ,p3r@d'ventS@R Pu% 4 +perambulate p@'r&mbjUleIt J2% 42A,6A +perambulated p@'r&mbjUleItId Jc%,Jd% 52A,6A +perambulates p@'r&mbjUleIts Ja% 42A,6A +perambulating p@'r&mbjUleItIN Jb% 52A,6A +perambulation p@,r&mbjU'leISn K6% 5 +perambulations p@,r&mbjU'leISnz Kj% 5 +perambulator p@'r&mbjUleIt@R K6% 5 +perambulators p@'r&mbjUleIt@z Kj% 5 +perceivable p@'siv@bl OA% 4 +perceive p@'siv H2% 26A,8,9,10,18A,19A,25 +perceived p@'sivd Hc%,Hd% 26A,8,9,10,18A,19A,25 +perceiver p@'siv@R K6% 3 +perceivers p@'siv@z Kj% 3 +perceives p@'sivz Ha% 26A,8,9,10,18A,19A,25 +perceiving p@'sivIN Hb% 36A,8,9,10,18A,19A,25 +percent p@'sent K9% 2 +percentage p@'sentIdZ K6% 3 +percentages p@'sentIdZIz Kj% 4 +perceptibility p@,sept@'bIlItI L@$ 6 +perceptible p@'sept@bl OA% 4 +perceptibly p@'sept@blI Pu% 4 +perception p@'sepSn M6% 3 +perceptions p@'sepSnz Mj% 3 +perceptive p@'septIv OA% 3 +perceptively p@'septIvlI Pu% 4 +perceptual p@'septjU@l OA% 4 +perceptually p@'septjU@lI Pu% 5 +perch p3tS J1%,K9% 12C +perchance p@'tSAns Pu% 2 +perched p3tSt Jc%,Jd% 12C +perches 'p3tSIz Ja%,Kj% 22C +perching 'p3tSIN Jb% 22C +percipient p@'sIpI@nt OA$ 4 +percolate 'p3k@leIt J2% 32A,3A,6A +percolated 'p3k@leItId Jc%,Jd% 42A,3A,6A +percolates 'p3k@leIts Ja% 32A,3A,6A +percolating 'p3k@leItIN Jb% 42A,3A,6A +percolator 'p3k@leIt@R K6% 4 +percolators 'p3k@leIt@z Kj% 4 +percussion p@'kVSn M6% 3 +percussionist p@'kVS@nIst K6% 4 +percussionists p@'kVS@nIsts Kj% 4 +percussions p@'kVSnz Mj$ 3 +perdition p@'dISn L@$ 3 +peregrination ,perIgrI'neISn M6% 5 +peregrinations ,perIgrI'neISnz Mj% 5 +peremptorily p@'remptr@lI Pu% 4 +peremptory p@'rempt@rI OA% 4 +perennial p@'renI@l K6%,OA% 4 +perennially p@'renI@lI Pu% 5 +perennials p@'renI@lz Kj% 4 +perfect 'p3fIkt OA% 2 +perfect p@'fekt H0% 26A +perfected p@'fektId Hc%,Hd% 36A +perfectibility p@,fekt@'bIlItI L@% 6 +perfectible p@'fekt@bl OA% 4 +perfecting p@'fektIN Hb% 36A +perfection p@'fekSn L@% 3 +perfectionist p@'fekS@nIst K6% 4 +perfectionists p@'fekS@nIsts Kj% 4 +perfectly 'p3fIktlI Pu% 3 +perfects p@'fekts Ha% 26A +perfervid p3'f3vId OA$ 3 +perfidies 'p3fIdIz Mj% 3 +perfidious p@'fIdI@s OA% 4 +perfidiously p@'fIdI@slI Pu% 5 +perfidiousness p@'fIdI@sn@s L@% 5 +perfidy 'p3fIdI M8% 3 +perforate 'p3f@reIt H2% 36A +perforated 'p3f@reItId Hc%,Hd% 46A +perforates 'p3f@reIts Ha% 36A +perforating 'p3f@reItIN Hb% 46A +perforation ,p3f@'reISn M6% 4 +perforations ,p3f@'reISnz Mj% 4 +perforce p@'fOs Pu% 2 +perform p@'fOm J0% 22A,6A +performance p@'fOm@ns M6% 3 +performances p@'fOm@nsIz Mj% 4 +performed p@'fOmd Jc%,Jd% 22A,6A +performer p@'fOm@R K6% 3 +performers p@'fOm@z Kj% 3 +performing p@'fOmIN Jb% 32A,6A +performs p@'fOmz Ja% 22A,6A +perfume 'p3fjum M6% 2 +perfume p@'fjum H2% 26A +perfumed p@'fjumd Hc%,Hd% 26A +perfumer 'p3fjum@R K6% 3 +perfumers 'p3fjum@z Kj% 3 +perfumes 'p3fjumz Mj% 2 +perfumes p@'fjumz Ha% 26A +perfuming p@'fjumIN Hb% 36A +perfunctorily p@'fVNkt@rIlI Pu% 5 +perfunctory p@'fVNkt@rI OA% 4 +pergola 'p3g@l@ K6$ 3 +pergolas 'p3g@l@z Kj$ 3 +perhaps p@'h&ps Pu* 2 +peri 'pI@rI K6$ 2 +perigee 'perIdZi K6$ 3 +perigees 'perIdZiz Kj$ 3 +perihelion ,perI'hilI@n K6$ 5 +perihelions ,perI'hilI@nz Kj$ 5 +peril 'per@l H4%,M6% 2 +perilled 'per@ld Hc%,Hd% 2 +perilling 'per@lIN Hb% 3 +perilous 'per@l@s OA% 3 +perilously 'per@l@slI Pu% 4 +perils 'per@lz Ha%,Mj% 2 +perimeter p@'rImIt@R K6% 4 +perimeters p@'rImIt@z Kj% 4 +period 'pI@rI@d K6% 3 +periodic ,pI@rI'0dIk OA% 4 +periodical ,pI@rI'0dIkl K6%,OA% 5 +periodically ,pI@rI'0dIklI Pu% 5 +periodicals ,pI@rI'0dIklz Kj% 5 +periods 'pI@rI@dz Kj% 3 +peripatetic ,perIp@'tetIk OA% 5 +peripheral p@'rIf@r@l OA% 4 +peripheries p@'rIf@rIz Kj$ 4 +periphery p@'rIf@rI K8% 4 +periphrases p@'rIfr@siz Kj$ 4 +periphrasis p@'rIfr@sIs Ki$ 4 +periphrastic ,perI'fr&stIk OA$ 4 +peris 'pI@rIz Kj$ 2 +periscope 'perIsk@Up K6% 3 +periscopes 'perIsk@Ups Kj% 3 +perish 'perIS J1% 22A,2C,6A +perishable 'perIS@bl OA% 4 +perishables 'perIS@blz Kj% 4 +perished 'perISt Jc%,Jd% 22A,2C,6A +perisher 'perIS@R K6% 3 +perishers 'perIS@z Kj% 3 +perishes 'perISIz Ja% 32A,2C,6A +perishing 'perISIN Jb% 32A,2C,6A +peristyle 'perIstaIl K6$ 3 +peristyles 'perIstaIlz Kj$ 3 +peritonitis ,perIt@'naItIs L@% 5 +periwig 'perIwIg K6$ 3 +periwigs 'perIwIgz Kj$ 3 +periwinkle 'perIwINkl K6% 4 +periwinkles 'perIwINklz Kj% 4 +perjure 'p3dZ@R H2% 26A +perjured 'p3dZ@d Hc%,Hd% 26A +perjurer 'p3dZ@r@R K6% 3 +perjurers 'p3dZ@r@z Kj% 3 +perjures 'p3dZ@z Ha% 26A +perjuries 'p3dZ@rIz Mj% 3 +perjuring 'p3dZ@rIN Hb% 36A +perjury 'p3dZ@rI M8% 3 +perk p3k J0%,K6% 12C,15B +perked p3kt Jc%,Jd% 12C,15B +perkier 'p3kI@R Or% 3 +perkiest 'p3kIIst Os% 3 +perkily 'p3kIlI Pu% 3 +perkiness 'p3kIn@s L@% 3 +perking 'p3kIN Jb% 22C,15B +perks p3ks Ja%,Kj% 12C,15B +perky 'p3kI OD% 2 +perm p3m H0%,K6% 1 +permafrost 'p3m@fr0st L@$ 3 +permanence 'p3m@n@ns L@% 3 +permanencies 'p3m@n@nsIz Mj$ 4 +permanency 'p3m@n@nsI M8$ 4 +permanent 'p3m@n@nt OA% 3 +permanently 'p3m@n@ntlI Pu% 4 +permanganate p@'m&Ng@neIt M6$ 4 +permanganates p@'m&Ng@neIts Mj$ 4 +permeability ,p3mI@'bIlItI L@% 6 +permeable 'p3mI@bl OA% 4 +permeate 'p3mIeIt J2% 33A,6A +permeated 'p3mIeItId Jc%,Jd% 43A,6A +permeates 'p3mIeIts Ja% 33A,6A +permeating 'p3mIeItIN Jb% 43A,6A +permeation ,p3mI'eISn L@$ 4 +permed p3md Hc%,Hd% 1 +perming 'p3mIN Hb% 2 +permissible p@'mIs@bl OA% 4 +permissibly p@'mIs@blI Pu% 4 +permission p@'mISn L@% 3 +permissive p@'mIsIv OA% 3 +permissiveness p@'mIsIvn@s L@% 4 +permit 'p3mIt K6% 2 +permit p@'mIt J4% 23A,6A,6C,17,19C +permits 'p3mIts Kj% 2 +permits p@'mIts Ja% 23A,6A,6C,17,19C +permitted p@'mItId Jc%,Jd% 33A,6A,6C,17,19C +permitting p@'mItIN Jb% 33A,6A,6C,17,19C +perms p3mz Ha%,Kj% 1 +permutation ,p3mju'teISn M6% 4 +permutations ,p3mju'teISnz Mj% 4 +permute p@'mjut H2$ 26A +permuted p@'mjutId Hc$,Hd$ 36A +permutes p@'mjuts Ha$ 26A +permuting p@'mjutIN Hb$ 36A +pernicious p@'nIS@s OA% 3 +perniciously p@'nIS@slI Pu% 4 +perniciousness p@'nIS@sn@s L@% 4 +pernickety p@'nIk@tI OA% 4 +peroration ,per@'reISn K6$ 4 +perorations ,per@'reISnz Kj$ 4 +peroxide p@'r0ksaId M6% 3 +peroxides p@'r0ksaIdz Mj% 3 +perpendicular ,p3p@n'dIkjUl@R M6%,OA% 5 +perpendicularly ,p3p@n'dIkjUl@lI Pu% 6 +perpendiculars ,p3p@n'dIkjUl@z Mj% 5 +perpetrate 'p3pItreIt H2% 36A +perpetrated 'p3pItreItId Hc%,Hd% 46A +perpetrates 'p3pItreIts Ha% 36A +perpetrating 'p3pItreItIN Hb% 46A +perpetration ,p3pI'treISn K6% 4 +perpetrations ,p3pI'treISnz Kj$ 4 +perpetrator 'p3pItreIt@R K6% 4 +perpetrators 'p3pItreIt@z Kj% 4 +perpetual p@'petSU@l OA% 4 +perpetually p@'petSU@lI Pu% 5 +perpetuate p@'petSUeIt H2% 46A +perpetuated p@'petSUeItId Hc%,Hd% 56A +perpetuates p@'petSUeIts Ha% 46A +perpetuating p@'petSUeItIN Hb% 56A +perpetuation p@,petSU'eISn K6% 5 +perpetuations p@,petSU'eISnz Kj$ 5 +perpetuities ,p3pI'tjuItIz Mj$ 5 +perpetuity ,p3pI'tjuItI M8% 5 +perplex p@'pleks H1% 26A,14 +perplexed p@'plekst Hc%,Hd%,OA% 26A,14 +perplexedly p@'pleks@dlI Pu% 4 +perplexes p@'pleksIz Ha% 36A,14 +perplexing p@'pleksIN Hb% 36A,14 +perplexities p@'pleksItIz Mj% 4 +perplexity p@'pleksItI M8% 4 +perquisite 'p3kwIzIt K6$ 3 +perquisites 'p3kwIzIts Kj$ 3 +perry 'perI L@$ 2 +persecute 'p3sIkjut H2% 36A +persecuted 'p3sIkjutId Hc%,Hd% 46A +persecutes 'p3sIkjuts Ha% 36A +persecuting 'p3sIkjutIN Hb% 46A +persecution ,p3sI'kjuSn M6% 4 +persecutions ,p3sI'kjuSnz Mj% 4 +persecutor 'p3sIkjut@R K6% 4 +persecutors 'p3sIkjut@z Kj% 4 +perseverance ,p3sI'vI@r@ns L@% 4 +persevere ,p3sI'vI@R I2% 32A,3A +persevered ,p3sI'vI@d Ic%,Id% 32A,3A +perseveres ,p3sI'vI@z Ia% 32A,3A +persevering ,p3sI'vI@rIN Ib%,OA% 42A,3A +perseveringly ,p3sI'vI@rINlI Pu% 5 +persiflage 'p3sIflAZ L@$ 3 +persimmon p@'sIm@n K6$ 3 +persimmons p@'sIm@nz Kj$ 3 +persist p@'sIst I0% 22A,3A +persisted p@'sIstId Ic%,Id% 32A,3A +persistence p@'sIst@ns L@% 3 +persistent p@'sIst@nt OA% 3 +persistently p@'sIst@ntlI Pu% 4 +persisting p@'sIstIN Ib% 32A,3A +persists p@'sIsts Ia% 22A,3A +person 'p3sn K6% 2 +persona p3's@Un@ K6% 3 +persona grata p@,s@Un@ 'grAt@ Ki% 5 +persona non grata p@,s@Un@ ,n0n 'grAt@ Ki% 6 +personable 'p3s@n@bl OA% 4 +personage 'p3s@nIdZ K6% 3 +personages 'p3s@nIdZIz Kj% 4 +personal 'p3s@nl K6%,OA% 3 +personalities ,p3s@'n&lItIz Mj% 5 +personality ,p3s@'n&lItI M8% 5 +personalize 'p3s@n@laIz H2% 46A +personalized 'p3s@n@laIzd Hc%,Hd% 46A +personalizes 'p3s@n@laIzIz Ha% 56A +personalizing 'p3s@n@laIzIN Hb% 56A +personally 'p3s@n@lI Pu% 4 +personals 'p3s@nlz Kj$ 3 +personalty 'p3s@nltI L@$ 4 +personas p3's@Un@z Kj% 3 +personate 'p3s@neIt H2$ 36A +personated 'p3s@neItId Hc$,Hd$ 46A +personates 'p3s@neIts Ha$ 36A +personating 'p3s@neItIN Hb$ 46A +personation ,p3s@'neISn K6$ 4 +personations ,p3s@'neISnz Kj$ 4 +personification p@,s0nIfI'keISn M6% 6 +personifications p@,s0nIfI'keISnz Mj% 6 +personified p@'s0nIfaId Hc%,Hd% 46A +personifies p@'s0nIfaIz Ha% 46A +personify p@'s0nIfaI H3% 46A +personifying p@'s0nIfaIIN Hb% 56A +personnel ,p3s@'nel Kj% 3 +persons 'p3snz Kj% 2 +perspective p@'spektIv M6% 3 +perspectives p@'spektIvz Mj% 3 +perspex 'p3speks L@% 2 +perspicacious ,p3spI'keIS@s OA% 4 +perspicacity ,p3spI'k&sItI L@% 5 +perspicuity ,p3spI'kjuItI L@% 5 +perspicuous p@'spIkjU@s OA% 4 +perspicuously p@'spIkjU@slI Pu$ 5 +perspicuousness p@'spIkjU@sn@s L@% 5 +perspiration ,p3sp@'reISn L@% 4 +perspire p@'spaI@R I2% 22A +perspired p@'spaI@d Ic%,Id% 22A +perspires p@'spaI@z Ia% 22A +perspiring p@'spaI@rIN Ib% 32A +persuadable p@'sweId@bl OA% 4 +persuade p@'sweId H2% 211,14,17 +persuaded p@'sweIdId Hc%,Hd% 311,14,17 +persuades p@'sweIdz Ha% 211,14,17 +persuading p@'sweIdIN Hb% 311,14,17 +persuasion p@'sweIZn M6% 3 +persuasions p@'sweIZnz Mj% 3 +persuasive p@'sweIsIv OA% 3 +persuasively p@'sweIsIvlI Pu% 4 +persuasiveness p@'sweIsIvn@s L@% 4 +pert p3t OA% 1 +pertain p@'teIn I0% 23A +pertained p@'teInd Ic%,Id% 23A +pertaining p@'teInIN Ib% 33A +pertains p@'teInz Ia% 23A +pertinacious ,p3tI'neIS@s OA$ 4 +pertinaciously ,p3tI'neIS@slI Pu$ 5 +pertinacity ,p3tI'n&sItI L@$ 5 +pertinence 'p3tIn@ns L@$ 3 +pertinent 'p3tIn@nt OA% 3 +pertinently 'p3tIn@ntlI Pu% 4 +pertly 'p3tlI Pu% 2 +pertness 'p3tn@s L@% 2 +perturb p@'t3b H0% 26A +perturbation ,p3t@'beISn M6% 4 +perturbations ,p3t@'beISnz Mj% 4 +perturbed p@'t3bd Hc%,Hd% 26A +perturbing p@'t3bIN Hb% 36A +perturbs p@'t3bz Ha% 26A +peruke p@'ruk K6$ 2 +perukes p@'ruks Kj$ 2 +perusal p@'ruzl M6% 3 +perusals p@'ruzlz Mj$ 3 +peruse p@'ruz H2% 26A +perused p@'ruzd Hc%,Hd% 26A +peruses p@'ruzIz Ha% 36A +perusing p@'ruzIN Hb% 36A +pervade p@'veId H2% 26A +pervaded p@'veIdId Hc%,Hd% 36A +pervades p@'veIdz Ha% 26A +pervading p@'veIdIN Hb% 36A +pervasion p@'veIZn L@$ 3 +pervasive p@'veIsIv OA% 3 +pervasively p@'veIsIvlI Pu% 4 +pervasiveness p@'veIsIvn@s L@% 4 +perverse p@'v3s OA% 2 +perversely p@'v3slI Pu% 3 +perverseness p@'v3sn@s L@% 3 +perversion p@'v3Sn M6% 3 +perversions p@'v3Snz Mj% 3 +perversities p@'v3sItIz Mj% 4 +perversity p@'v3sItI M8% 4 +pervert 'p3v3t K6% 2 +pervert p@'v3t H0% 26A +perverted p@'v3tId Hc%,Hd% 36A +perverting p@'v3tIN Hb% 36A +perverts 'p3v3ts Kj% 2 +perverts p@'v3ts Ha% 26A +peseta p@'seIt@ K6% 3 +pesetas p@'seIt@z Kj% 3 +peskier 'peskI@R Or% 3 +peskiest 'peskIIst Os% 3 +pesky 'peskI OD% 2 +peso 'peIs@U K6% 2 +pesos 'peIs@Uz Kj% 2 +pessaries 'pes@rIz Kj% 3 +pessary 'pes@rI K8% 3 +pessimism 'pesImIz@m L@% 4 +pessimist 'pesImIst K6% 3 +pessimistic ,pesI'mIstIk OA% 4 +pessimistically ,pesI'mIstIklI Pu% 5 +pessimists 'pesImIsts Kj% 3 +pest pest K6% 1 +pester 'pest@R H0% 26A,14,17 +pestered 'pest@d Hc%,Hd% 26A,14,17 +pestering 'pest@rIN Hb% 36A,14,17 +pesters 'pest@z Ha% 26A,14,17 +pesticide 'pestIsaId M6% 3 +pesticides 'pestIsaIdz Mj% 3 +pestiferous pe'stIf@r@s OA$ 4 +pestilence 'pestIl@ns M6% 3 +pestilences 'pestIl@nsIz Mj$ 4 +pestilent 'pestIl@nt OA% 3 +pestilential ,pestI'lenSl OA% 4 +pestle 'pesl H2$,K6$ 2 +pestled 'pesld Hc$,Hd$ 2 +pestles 'peslz Ha$,Kj$ 2 +pestling 'peslIN Hb$ 2 +pests pests Kj% 1 +pet pet H4%,K6% 1 +petal 'petl K6% 2 +petaled 'petld OA$ 2 +petalled 'petld OA% 2 +petals 'petlz Kj% 2 +petard pI'tAd K6% 2 +petards pI'tAdz Kj$ 2 +peter 'pit@R I0% 22C +petered 'pit@d Ic%,Id% 22C +petering 'pit@rIN Ib% 32C +peters 'pit@z Ia% 22C +petit bourgeois ,petI 'bU@ZwA Ki% 4 +petite p@'tit OA% 2 +petition pI'tISn J0%,K6% 33A,6A,11,14,17 +petitioned pI'tISnd Jc%,Jd% 33A,6A,11,14,17 +petitioner pI'tISn@R K6% 4 +petitioners pI'tISn@z Kj% 4 +petitioning pI'tISnIN Jb% 43A,6A,11,14,17 +petitions pI'tISnz Ja%,Kj% 33A,6A,11,14,17 +petits bourgeois ,petI 'bU@ZwAz Kj$ 4 +petrel 'petr@l K6$ 2 +petrels 'petr@lz Kj$ 2 +petrifaction ,petrI'f&kSn M6% 4 +petrifactions ,petrI'f&kSnz Mj$ 4 +petrified 'petrIfaId Jc%,Jd% 32A,6A +petrifies 'petrIfaIz Ja% 32A,6A +petrify 'petrIfaI J3% 32A,6A +petrifying 'petrIfaIIN Jb% 42A,6A +petro- ,petr@U- U-% 2 +petro-chemical ,petr@U-'kemIkl K6% 5 +petro-chemicals ,petr@U-'kemIklz Kj% 5 +petrol 'petr@l L@% 2 +petroleum pI'tr@UlI@m L@% 4 +petrology pI'tr0l@dZI L@$ 4 +pets pets Ha%,Kj% 1 +petted 'petId Hc%,Hd% 2 +petticoat 'petIk@Ut K6% 3 +petticoats 'petIk@Uts Kj% 3 +pettier 'petI@R Or% 3 +pettiest 'petIIst Os% 3 +pettifogging 'petIf0gIN OA% 4 +pettily 'petIlI Pu% 3 +pettiness 'petIn@s M7% 3 +pettinesses 'petIn@sIz Kj% 4 +petting 'petIN Hb% 2 +pettish 'petIS OA% 2 +pettishly 'petISlI Pu% 3 +pettishness 'petISn@s L@% 3 +petty 'petI OD% 2 +petulance 'petjUl@ns L@% 3 +petulant 'petjUl@nt OA% 3 +petulantly 'petjUl@ntlI Pu% 4 +petunia pI'tjunI@ K6% 4 +petunias pI'tjunI@z Kj% 4 +pew pju K6% 1 +pew-opener 'pju-@Up@n@R K6$ 4 +pew-openers 'pju-@Up@n@z Kj$ 4 +pewit 'piwIt K6$ 2 +pewits 'piwIts Kj$ 2 +pews pjuz Kj% 1 +pewter 'pjut@R L@% 2 +peyote peI'@UtI K6$ 3 +peyotes peI'@UtIz Kj$ 3 +pfennig 'fenIg K6$ 2 +pfennigs 'fenIgz Kj$ 2 +phaeton 'feItn K6$ 2 +phaetons 'feItnz Kj$ 2 +phagocyte 'f&g@saIt K6$ 3 +phagocytes 'f&g@saIts Kj$ 3 +phalanges f@'l&ndZiz Kj$ 3 +phalanx 'f&l&Nks K7% 2 +phalanxes 'f&l&NksIz Kj% 3 +phallic 'f&lIk OA% 2 +phallus 'f&l@s K7% 2 +phalluses 'f&l@sIz Kj% 3 +phantasies 'f&nt@sIz Kj$ 3 +phantasm 'f&nt&z@m K6% 3 +phantasmagoria ,f&nt&zm@'g0rI@ K6% 6 +phantasmagorias ,f&nt&zm@'g0rI@z Kj$ 6 +phantasmal f&n't&zm@l OA% 3 +phantasms 'f&nt&z@mz Kj% 3 +phantasy 'f&nt@sI K8% 3 +phantom 'f&nt@m K6% 2 +phantoms 'f&nt@mz Kj% 2 +pharisaic ,f&rI'seIIk OA$ 4 +pharisaical ,f&rI'seIIk@l OA$ 5 +pharmaceutical ,fAm@'sjutIkl OA% 5 +pharmacies 'fAm@sIz Mj% 3 +pharmacist 'fAm@sIst K6% 3 +pharmacists 'fAm@sIsts Kj% 3 +pharmacological ,fAm@k@'l0dZIkl OA% 6 +pharmacologically ,fAm@k@'l0dZIklI Pu% 6 +pharmacologist ,fAm@'k0l@dZIst K6% 5 +pharmacologists ,fAm@'k0l@dZIsts Kj% 5 +pharmacology ,fAm@'k0l@dZI L@% 5 +pharmacopoeia ,fAm@k@'pi@ K6% 5 +pharmacopoeias ,fAm@k@'pi@z Kj$ 5 +pharmacy 'fAm@sI M8% 3 +pharos 'fe@r0s Ki$ 2 +pharyngitis ,f&rIn'dZaItIs L@% 4 +pharynx 'f&rINks K7% 2 +pharynxes 'f&rINksIz Kj$ 3 +phase feIz H2%,K6% 16A,15B +phased feIzd Hc%,Hd% 16A,15B +phases 'feIzIz Ha%,Kj% 26A,15B +phasing 'feIzIN Hb% 26A,15B +pheasant 'feznt M6% 2 +pheasants 'feznts Mj% 2 +phenobarbitone ,fin@U'bAbIt@Un L@$ 5 +phenol 'fin0l L@$ 2 +phenomena fI'n0mIn@ Kj% 4 +phenomenal fI'n0mInl OA% 4 +phenomenally fI'n0mIn@lI Pu% 5 +phenomenon fI'n0mIn@n Ki% 4 +phew fju W-$ 1 +phial 'faI@l K6% 2 +phials 'faI@lz Kj% 2 +philander fI'l&nd@R I0% 32A +philandered fI'l&nd@d Ic%,Id% 32A +philanderer fI'l&nd@r@R K6% 4 +philanderers fI'l&nd@r@z Kj% 4 +philandering fI'l&nd@rIN Ib% 42A +philanders fI'l&nd@z Ia% 32A +philanthropic ,fIl@n'Tr0pIk OA% 4 +philanthropically ,fIl@n'Tr0pIklI Pu% 5 +philanthropist fI'l&nTr@pIst K6% 4 +philanthropists fI'l&nTr@pIsts Kj% 4 +philanthropy fI'l&nTr@pI L@% 4 +philatelic ,fIl@'telIk OA% 4 +philatelist fi'l&t@lIst K6% 4 +philatelists fi'l&t@lIsts Kj% 4 +philately fI'l&t@lI L@% 4 +philharmonic ,fIl@'m0nIk OA% 4 +philhellene fIl'helin K6$,OA$ 3 +philhellenes fIl'helinz Kj$ 3 +philhellenic ,fIlhe'linIk OA$ 4 +philological ,fIl@'l0dZIkl OA% 5 +philologist fI'l0l@dZIst K6% 4 +philologists fI'l0l@dZIsts Kj% 4 +philology fI'l0l@dZI L@% 4 +philosopher fI'l0s@f@R K6% 4 +philosophers fI'l0s@f@z Kj% 4 +philosophic ,fIl@'s0fIk OA% 4 +philosophical ,fIl@'s0fIkl OA% 5 +philosophically ,fIl@'s0fIklI Pu% 5 +philosophies fI'l0s@fIz Mj% 4 +philosophize fI'l0s@faIz I2% 42A +philosophized fI'l0s@faIzd Ic%,Id% 42A +philosophizes fI'l0s@faIzIz Ia% 52A +philosophizing fI'l0s@faIzIN Ib% 52A +philosophy fI'l0s@fI M8% 4 +philtre 'fIlt@R K6$ 2 +philtres 'fIlt@z Kj$ 2 +phlebitis flI'baItIs L@% 3 +phlegm flem L@% 1 +phlegmatic fleg'm&tIk OA% 3 +phlegmatically fleg'm&tIklI Pu% 4 +phlox fl0ks L@$ 1 +phobia 'f@UbI@ K6% 3 +phobias 'f@UbI@z Kj% 3 +phoenix 'finIks K7% 2 +phoenixes 'finIksIz Kj$ 3 +phone f@Un J2%,K6% 12A,4A,6A,11,12A,13A +phone-in 'f@Un-In K6% 2 +phone-ins 'f@Un-Inz Kj% 2 +phonebooth 'f@UnbuD K6% 2 +phonebooths 'f@UnbuDz Kj% 2 +phonecall 'f@UnkOl K6% 2 +phonecalls 'f@UnkOlz Kj% 2 +phoned f@Und Jc%,Jd% 12A,4A,6A,11,12A,13A +phoneme 'f@Unim K6% 2 +phonemes 'f@Unimz Kj% 2 +phonemic f@'nimIk OA% 3 +phonemics f@'nimIks Lk% 3 +phones f@Unz Ja%,Kj% 12A,4A,6A,11,12A,13A +phonetic f@'netIk OA% 3 +phonetically f@'netIklI Pu% 4 +phonetician ,f@UnI'tISn K6% 4 +phoneticians ,f@UnI'tISnz Kj% 4 +phonetics f@'netIks Lk% 3 +phoney 'f@UnI K6%,OA% 2 +phoneys 'f@UnIz Kj$ 2 +phonic 'f0nIk OA$ 2 +phonics 'f0nIks Lk$ 2 +phonies 'f@UnIz Kj$ 2 +phoning 'f@UnIN Jb% 22A,4A,6A,11,12A,13A +phonograph 'f@Un@grAf K6% 3 +phonographs 'f@Un@grAfs Kj% 3 +phonological ,f@Un@'l0dZIkl OA% 5 +phonology f@'n0l@dZI L@% 4 +phony 'f@UnI K8$,OA$ 2 +phooey 'fuI W-$ 2 +phosgene 'f0zdZin L@$ 2 +phosphate 'f0sfeIt M6% 2 +phosphates 'f0sfeIts Mj% 2 +phosphorescence ,f0sf@'resns L@% 4 +phosphorescent ,f0sf@'resnt OA% 4 +phosphoric f0s'f0rIk OA% 3 +phosphorous 'f0sf@r@s OA$ 3 +phosphorus 'f0sf@r@s L@% 3 +photo 'f@Ut@U K6% 2 +photo- 'f@Ut@U- U-% 2 +photocopied 'f@Ut@Uk0pId Hc%,Hd% 46A +photocopier 'f@Ut@Uk0pI@R K6% 5 +photocopiers 'f@Ut@Uk0pI@z Kj% 5 +photocopies 'f@Ut@Uk0pIz Ha%,Kj% 46A +photocopy 'f@Ut@Uk0pI H3%,K8% 46A +photocopying 'f@Ut@Uk0pIIN Hb% 56A +photoelectric ,f@Ut@UI'lektrIk OA% 5 +photoflash 'f@Ut@Ufl&S K7% 3 +photoflashes 'f@Ut@Ufl&SIz Kj% 4 +photogenic ,f@Ut@'dZenIk OA% 4 +photograph 'f@Ut@grAf H0%,K6% 36A +photographed 'f@Ut@grAft Hc%,Hd% 36A +photographer f@'t0gr@f@R K6% 4 +photographers f@'t0gr@f@z Kj% 4 +photographic ,f@Ut@'gr&fIk OA% 4 +photographically ,f@Ut@'gr&fIklI Pu% 5 +photographing 'f@Ut@grAfIN Hb% 46A +photographs 'f@Ut@grAfs Ha%,Kj% 36A +photography f@'t0gr@fI L@% 4 +photogravure ,f@Ut@gr@'vjU@R M6% 4 +photogravures ,f@Ut@gr@'vjU@z Mj% 4 +photolithography ,f@Ut@UlI'T0gr@fI L@% 6 +photometer f@U't0mIt@R K6$ 4 +photometers f@U't0mIt@z Kj$ 4 +photon 'f@Ut0n K6% 2 +photons 'f@Ut0nz Kj% 2 +photos 'f@Ut@Uz Kj% 2 +photosensitize ,f@Ut@U'sensItaIz H2% 5 +photosensitized ,f@Ut@U'sensItaIzd Hc%,Hd% 5 +photosensitizes ,f@Ut@U'sensItaIzIz Ha% 6 +photosensitizing ,f@Ut@U'sensItaIzIN Hb% 6 +photostat 'f@Ut@st&t H4%,K6% 3 +photostats 'f@Ut@st&ts Ha%,Kj% 3 +photostatted 'f@Ut@st&tId Hc%,Hd% 4 +photostatting 'f@Ut@st&tIN Hb% 4 +photosynthesis ,f@Ut@U'sInT@sIs L@% 5 +phrasal 'freIzl OA% 2 +phrase freIz H2%,K6% 16A +phrase-book 'freIz-bUk K6% 2 +phrase-books 'freIz-bUks Kj% 2 +phrased freIzd Hc%,Hd% 16A +phraseology ,freIzI'0l@dZI L@% 5 +phrases 'freIzIz Ha%,Kj% 26A +phrasing 'freIzIN Hb% 26A +phrenetic fr@'netIk OA$ 3 +phrenologist frI'n0l@dZIst K6% 4 +phrenologists frI'n0l@dZIsts Kj% 4 +phrenology fr@'n0l@dZI L@% 4 +phthisis 'TaIsIs L@$ 2 +phut fVt Pu$ 1 +phylum 'faIl@m K6$ 2 +phylums 'faIl@mz Kj$ 2 +physic 'fIzIk K6% 2 +physical 'fIzIkl OA% 3 +physically 'fIzIklI Pu% 3 +physician fI'zISn K6% 3 +physicians fI'zISnz Kj% 3 +physicist 'fIzIsIst K6% 3 +physicists 'fIzIsIsts Kj% 3 +physics 'fIzIks Lk% 2 +physiognomies ,fIzI'0n@mIz Mj% 5 +physiognomy ,fIzI'0n@mI M8% 5 +physiological ,fIzI@'l0dZIkl OA% 6 +physiologist ,fIzI'0l@dZIst K6% 5 +physiologists ,fIzI'0l@dZIsts Kj% 5 +physiology ,fIzI'0l@dZI L@% 5 +physiotherapist ,fIzI@U'Ter@pIst K6% 6 +physiotherapists ,fIzI@U'Ter@pIsts Kj% 6 +physiotherapy ,fIzI@U'Ter@pI L@% 6 +physique fI'zik M6% 2 +physiques fI'ziks Mj% 2 +pi paI K6$ 1 +pianissimo pj&'nIsIm@U OA%,Pu% 5 +pianist 'pI@nIst K6% 3 +pianists 'pI@nIsts Kj% 3 +piano 'pjAn@U OA$,Pu$ 3 +piano pI'&n@U K6% 3 +pianoforte pI,&n@U'fOtI K6% 5 +pianofortes pI,&n@U'fOtIz Kj% 5 +pianola pI@'n@Ul@ K6$ 4 +pianolas pI@'n@Ul@z Kj$ 4 +pianos pI'&n@Uz Kj% 3 +piastre pI'&st@R K6$ 3 +piastres pI'&st@z Kj$ 3 +piazza pI'&ts@ K6% 3 +piazzas pI'&ts@z Kj% 3 +pibroch 'pibr0k K6$ 2 +pibrochs 'pibr0ks Kj$ 2 +pica 'paIk@ K9$ 2 +picador 'pIk@dOR K6% 3 +picadors 'pIk@dOz Kj% 3 +picaresque ,pIk@'resk OA% 3 +piccalilli ,pIk@'lIlI L@% 4 +piccaninnies ,pIk@'nInIz Kj$ 4 +piccaninny ,pIk@'nInI K8$ 4 +piccolo 'pIk@l@U K6% 3 +piccolos 'pIk@l@Uz Kj% 3 +pick pIk J0%,K6% 13A,6A,15B +pick-me-up 'pIk-mI-Vp K6$ 3 +pick-me-ups 'pIk-mI-Vps Kj$ 3 +pick-up 'pIk-Vp K6% 2 +pick-ups 'pIk-Vps Kj% 2 +pickaback 'pIk@b&k Pu% 3 +pickaxe 'pIk&ks K6% 2 +pickaxes 'pIk&ksIz Kj% 3 +picked pIkt Jc%,Jd% 13A,6A,15B +picker 'pIk@R K6$ 2 +pickerel 'pIk@r@l K9$ 3 +pickers 'pIk@z Kj$ 2 +picket 'pIkIt J0%,K6% 22A,6A +picketed 'pIkItId Jc%,Jd% 32A,6A +picketing 'pIkItIN Jb% 32A,6A +pickets 'pIkIts Ja%,Kj% 22A,6A +picking 'pIkIN Jb%,M6% 23A,6A,15B +pickings 'pIkINz Mj% 2 +pickle 'pIkl H2%,M6% 26A +pickled 'pIkld Hc%,Hd% 26A +pickles 'pIklz Ha%,Mj% 26A +pickling 'pIklIN Hb% 26A +pickpocket 'pIkp0kIt K6% 3 +pickpockets 'pIkp0kIts Kj% 3 +picks pIks Ja%,Kj% 13A,6A,15B +picnic 'pIknIk I5%,K6% 2 +picnicked 'pIknIkt Ic%,Id% 2 +picnicker 'pIknIk@R K6% 3 +picnickers 'pIknIk@z Kj% 3 +picnicking 'pIknIkIN Ib% 3 +picnics 'pIknIks Ia%,Kj% 2 +picric 'pIkrIk OA$ 2 +pictorial pIk'tOrI@l K6%,OA% 4 +pictorials pIk'tOrI@lz Kj% 4 +picture 'pIktS@R H2%,K6% 26A,14 +picture-book 'pIktS@-bUk K6% 3 +picture-books 'pIktS@-bUks Kj% 3 +picture-card 'pIktS@-kAd K6% 3 +picture-cards 'pIktS@-kAdz Kj% 3 +picture-galleries 'pIktS@-g&l@rIz Kj% 5 +picture-gallery 'pIktS@-g&l@rI K8% 5 +pictured 'pIktS@d Hc%,Hd% 26A,14 +pictures 'pIktS@z Ha%,Kj% 26A,14 +picturesque ,pIktS@'resk OA% 3 +picturesquely ,pIktS@'resklI Pu% 4 +picturesqueness ,pIktS@'reskn@s L@% 4 +picturing 'pIktS@rIN Hb% 36A,14 +piddle 'pIdl I2%,K6% 2 +piddled 'pIdld Ic%,Id% 2 +piddles 'pIdlz Ia%,Kj% 2 +piddling 'pIdlIN Ib%,OA% 2 +pidgin 'pIdZIn K6% 2 +pidgins 'pIdZInz Kj$ 2 +pie paI M6% 1 +pie-crust 'paI-krVst L@% 2 +piebald 'paIbOld OA% 2 +piece pis H2%,K6% 16A,15A,15B +piece-goods 'pis-gUdz Kj$ 2 +pieced pist Hc%,Hd% 16A,15A,15B +piecemeal 'pismil OA%,Pu% 2 +pieces 'pisIz Ha%,Kj% 26A,15A,15B +piecework 'pisw3k L@% 2 +piecing 'pisIN Hb% 26A,15A,15B +pied paId OA% 1 +pied-`a-terre ,pjeId-A-'te@R K6% 3 +pied-`a-terres ,pjeId-A-'te@z Kj$ 3 +pier pI@R K6% 1 +pier-glass 'pI@-glAs K7$ 2 +pier-glasses 'pI@-glAsIz Kj$ 3 +pierce pI@s J2% 12C,6A +pierced pI@st Jc%,Jd% 12C,6A +pierces 'pI@sIz Ja% 22C,6A +piercing 'pI@sIN Jb%,OA% 22C,6A +piercingly 'pI@sINlI Pu% 3 +pierrot 'pI@r@U K6% 2 +pierrots 'pI@r@Uz Kj% 2 +piers pI@z Kj% 1 +pies paIz Mj% 1 +piet`a ,pie'tA K6$ 3 +piet`as ,pie'tAz Kj$ 3 +pieties 'paI@tIz Mj% 3 +piety 'paI@tI M8% 3 +piffle 'pIfl I2$,L@% 2 +piffled 'pIfld Ic$,Id$ 2 +piffles 'pIflz Ia$ 2 +piffling 'pIflIN Ib$,OA% 2 +pig pIg I4$,M6% 1 +pig-headed pIg-'hedId OA% 3 +pig-headedly pIg-'hedIdlI Pu% 4 +pig-headedness pIg-'hedIdn@s L@% 4 +pig-iron 'pIg-aI@n L@% 3 +pig-sticking 'pIg-stIkIN L@% 3 +pigboat 'pIgb@Ut K6$ 2 +pigboats 'pIgb@Uts Kj$ 2 +pigeon 'pIdZ@n K6% 2 +pigeon-breasted ,pIdZIn-'brestId OA% 4 +pigeon-toed 'pIdZIn-t@Ud OA% 3 +pigeonhole 'pIdZ@nh@Ul H2%,K6% 3 +pigeonholed 'pIdZ@nh@Uld Hc%,Hd% 3 +pigeonholes 'pIdZ@nh@Ulz Ha%,Kj% 3 +pigeonholing 'pIdZ@nh@UlIN Hb% 4 +pigeons 'pIdZ@nz Kj% 2 +pigged pIgd Ic$,Id$ 1 +piggeries 'pIg@rIz Kj% 3 +piggery 'pIg@rI K8% 3 +piggier 'pIgI@R Or$ 3 +piggies 'pIgIz Kj% 2 +piggiest 'pIgIIst Os$ 3 +pigging 'pIgIN Ib$ 2 +piggish 'pIgIS OA% 2 +piggishly 'pIgISlI Pu% 3 +piggishness 'pIgISn@s L@% 3 +piggy 'pIgI K8%,OD% 2 +piggyback 'pIgIb&k K6% 3 +piggybacks 'pIgIb&ks Kj% 3 +piglet 'pIglIt K6% 2 +piglets 'pIglIts Kj% 2 +pigment 'pIgm@nt M6% 2 +pigmentation ,pIgmen'teISn K6% 4 +pigmentations ,pIgmen'teISnz Kj% 4 +pigments 'pIgm@nts Mj% 2 +pigmies 'pIgmIz Kj% 2 +pigmy 'pIgmI K8% 2 +pigs pIgz Ia%,Mj% 1 +pigskin 'pIgskIn L@% 2 +pigsties 'pIgstaIz Kj% 2 +pigsty 'pIgstaI K8% 2 +pigswill 'pIgswIl L@% 2 +pigtail 'pIgteIl K6% 2 +pigtails 'pIgteIlz Kj% 2 +pigwash 'pIgw0S L@$ 2 +pike paIk K9% 1 +pikes paIks Kj% 1 +pikestaff 'paIkstAf K6% 2 +pikestaffs 'paIkstAfs Kj% 2 +pilaf pI'l&f L@% 2 +pilaff pI'l&f L@% 2 +pilaster pI'l&st@R K6$ 3 +pilasters pI'l&st@z Kj$ 3 +pilau pI'laU L@% 2 +pilchard 'pIltS@d M6% 2 +pilchards 'pIltS@dz Mj% 2 +pile paIl J2%,M6% 12C,6A,15A,15B +pile-driver 'paIl-draIv@R K6% 3 +pile-drivers 'paIl-draIv@z Kj% 3 +pile-dwelling 'paIl-dwelIN K6$ 3 +pile-dwellings 'paIl-dwelINz Kj$ 3 +pile-up 'paIl-Vp K6% 2 +pile-ups 'paIl-Vps Kj% 2 +piled paIld Jc%,Jd% 12C,6A,15A,15B +piles paIlz Ja%,Lk%,Mj% 12C,6A,15A,15B +pilfer 'pIlf@R J0% 22A,6A +pilferage 'pIlf@rIdZ L@$ 3 +pilfered 'pIlf@d Jc%,Jd% 22A,6A +pilferer 'pIlf@r@R K6% 3 +pilferers 'pIlf@r@z Kj% 3 +pilfering 'pIlf@rIN Jb% 32A,6A +pilfers 'pIlf@z Ja% 22A,6A +pilgrim 'pIlgrIm K6% 2 +pilgrimage 'pIlgrImIdZ K6% 3 +pilgrimages 'pIlgrImIdZIz Kj% 4 +pilgrims 'pIlgrImz Kj% 2 +piling 'paIlIN Jb% 22C,6A,15A,15B +pill pIl K6% 1 +pillage 'pIlIdZ H2%,K6% 2 +pillaged 'pIlIdZd Hc%,Hd% 2 +pillager 'pIlIdZ@R K6$ 3 +pillagers 'pIlIdZ@z Kj$ 3 +pillages 'pIlIdZIz Ha%,Kj% 3 +pillaging 'pIlIdZIN Hb% 3 +pillar 'pIl@R K6% 2 +pillar-box 'pIl@-b0ks K7% 3 +pillar-boxes 'pIl@-b0ksIz Kj% 4 +pillared 'pIl@d OA% 2 +pillars 'pIl@z Kj% 2 +pillbox 'pIlb0ks K7% 2 +pillboxes 'pIlb0ksIz Kj% 3 +pillion 'pIlI@n K6% 3 +pillions 'pIlI@nz Kj% 3 +pillories 'pIl@rIz Kj$ 3 +pillory 'pIl@rI K8$ 3 +pillow 'pIl@U H0%,K6% 26A +pillow-fight 'pIl@U-faIt K6% 3 +pillow-fights 'pIl@U-faIts Kj% 3 +pillowcase 'pIl@UkeIs K6% 3 +pillowcases 'pIl@UkeIsIz Kj% 4 +pillowed 'pIl@Ud Hc%,Hd% 26A +pillowing 'pIl@UIN Hb$ 36A +pillows 'pIl@Uz Ha$,Kj% 26A +pillowslip 'pIl@UslIp K6% 3 +pillowslips 'pIl@UslIps Kj% 3 +pills pIlz Kj% 1 +pilot 'paIl@t H0%,K6% 26A,15A +pilot-boat 'paIl@t-b@Ut K6% 3 +pilot-boats 'paIl@t-b@Uts Kj% 3 +pilot-burner 'paIl@t-b3n@R K6$ 4 +pilot-burners 'paIl@t-b3n@z Kj$ 4 +pilot-cloth 'paIl@t-kl0T L@$ 3 +pilot-engine 'paIl@t-endZIn K6$ 4 +pilot-engines 'paIl@t-endZInz Kj$ 4 +pilot-fish 'paIl@t-fIS K9% 3 +pilot-fishes 'paIl@t-fISIz Kj% 4 +pilot-light 'paIl@t-laIt K6% 3 +pilot-lights 'paIl@t-laIts Kj% 3 +piloted 'paIl@tId Hc%,Hd% 36A,15A +piloting 'paIl@tIN Hb% 36A,15A +pilots 'paIl@ts Ha%,Kj% 26A,15A +pimento pI'ment@U M6% 3 +pimentos pI'ment@Uz Mj% 3 +pimp pImp I0$,K6% 12A,3A +pimped pImpt Ic$,Id$ 12A,3A +pimpernel 'pImp@nel K6$ 3 +pimpernels 'pImp@nelz Kj$ 3 +pimping 'pImpIN Ib% 22A,3A +pimple 'pImpl K6% 2 +pimpled 'pImpld OA% 2 +pimples 'pImplz Kj% 2 +pimplier 'pImplI@R Or% 3 +pimpliest 'pImplIIst Os% 3 +pimply 'pImplI OD% 2 +pimps pImps Ia$,Kj% 12A,3A +pin pIn H4%,K6% 115A,15B +pin-money 'pIn-mVnI L@% 3 +pin-table 'pIn-teIbl K6% 3 +pin-tables 'pIn-teIblz Kj% 3 +pin-up 'pIn-Vp K6% 2 +pin-ups 'pIn-Vps Kj% 2 +pinafore 'pIn@fOR K6% 3 +pinafores 'pIn@fOz Kj% 3 +pinball 'pInbOl L@% 2 +pince-nez 'p&ns-neI K9$ 2 +pincer 'pIns@R K6% 2 +pincers 'pIns@z Kj% 2 +pinch pIntS J1%,K7% 12A,6A,15A,15B +pinchbeck 'pIntSbek K6$,OA$ 2 +pinchbecks 'pIntSbeks Kj$ 2 +pinched pIntSt Jc%,Jd% 12A,6A,15A,15B +pinches 'pIntSIz Ja%,Kj% 22A,6A,15A,15B +pinching 'pIntSIN Jb% 22A,6A,15A,15B +pincushion 'pInkUSn K6% 3 +pincushions 'pInkUSnz Kj% 3 +pine paIn I2%,M6% 12A,2C,3A,4C +pineal 'paInI@l OA$ 3 +pineapple 'paIn&pl M6% 3 +pineapples 'paIn&plz Mj% 3 +pined paInd Ic%,Id% 12A,2C,3A,4C +pines paInz Ia%,Mj% 12A,2C,3A,4C +ping pIN I0%,K6% 1 +pinged pINd Ic%,Id% 1 +pinging 'pININ Ib% 2 +pingpong 'pINp0N L@% 2 +pings pINz Ia%,Kj% 1 +pinhead 'pInhed K6% 2 +pinheads 'pInhedz Kj% 2 +pining 'paInIN Ib% 22A,2C,3A,4C +pinion 'pInI@n H0$,K6% 26A,15A,15B +pinioned 'pInI@nd Hc$,Hd% 36A,15A,15B +pinioning 'pInI@nIN Hb$ 46A,15A,15B +pinions 'pInI@nz Ha$,Kj$ 26A,15A,15B +pink pINk J0$,M6%,OC% 16A,15B +pinked pINkt Jc$,Jd$ 16A,15B +pinker 'pINk@R Or% 2 +pinkest 'pINkIst Os% 2 +pinking 'pINkIN Jb$ 26A,15B +pinkish 'pINkIS OA% 2 +pinks pINks Ja$,Mj% 16A,15B +pinnace 'pInIs K6$ 2 +pinnaces 'pInIsIz Kj$ 3 +pinnacle 'pIn@kl H2%,K6% 3 +pinnacled 'pIn@kld Hc%,Hd% 3 +pinnacles 'pIn@klz Ha%,Kj% 3 +pinnacling 'pIn@klIN Hb$ 3 +pinnate 'pIneIt OA$ 2 +pinned pInd Hc%,Hd% 115A,15B +pinnies 'pInIz Kj% 2 +pinning 'pInIN Hb% 215A,15B +pinny 'pInI K8% 2 +pinpoint 'pInpoInt H0%,K6% 2 +pinpointed 'pInpoIntId Hc%,Hd% 3 +pinpointing 'pInpoIntIN Hb% 3 +pinpoints 'pInpoInts Ha%,Kj% 2 +pinprick 'pInprIk K6% 2 +pinpricks 'pInprIks Kj% 2 +pins pInz Ha%,Kj% 115A,15B +pinstripe 'pInstraIp OA% 2 +pint paInt K6% 1 +pints paInts Kj% 1 +pioneer ,paI@'nI@R J0%,K6% 32A,6A +pioneered ,paI@'nI@d Jc%,Jd% 32A,6A +pioneering ,paI@'nI@rIN Jb% 42A,6A +pioneers ,paI@'nI@z Ja%,Kj% 32A,6A +pious 'paI@s OA% 2 +piously 'paI@slI Pu% 3 +pip pIp H4%,K6% 16A +pipal 'pip@l K6$ 2 +pipals 'pip@lz Kj$ 2 +pipe paIp J2%,K6% 12A,2C,6A,15A +pipe-organ 'paIp-Og@n K6% 3 +pipe-organs 'paIp-Og@nz Kj% 3 +pipe-rack 'paIp-r&k K6% 2 +pipe-racks 'paIp-r&ks Kj% 2 +pipeclay 'paIpkleI L@% 2 +piped paIpt Jc%,Jd% 12A,2C,6A,15A +pipedream 'paIpdrim K6% 2 +pipedreams 'paIpdrimz Kj% 2 +pipeful 'paIpfUl K6% 2 +pipefuls 'paIpfUlz Kj% 2 +pipeline 'paIplaIn K6% 2 +pipelines 'paIplaInz Kj% 2 +piper 'paIp@R K6% 2 +pipers 'paIp@z Kj% 2 +pipes paIps Ja%,Kj% 12A,2C,6A,15A +pipette pI'pet K6% 2 +pipettes pI'pets Kj% 2 +pipework 'paIpw3k L@% 2 +piping 'paIpIN Jb%,L@%,OA%,Pu% 22A,2C,6A,15A +pipped pIpt Hc%,Hd% 16A +pippin 'pIpIn K6% 2 +pipping 'pIpIN Hb% 26A +pippins 'pIpInz Kj% 2 +pips pIps Ha%,Kj% 16A +pipsqueak 'pIpskwik K6% 2 +pipsqueaks 'pIpskwiks Kj% 2 +piquancy 'pik@nsI L@% 3 +piquant 'pik@nt OA% 2 +piquantly 'pik@ntlI Pu% 3 +pique pik H2%,M6% 16A +piqued pikt Hc%,Hd% 16A +piques piks Ha%,Mj% 16A +piquet pI'ket L@$ 2 +piquing 'pikIN Hb$ 26A +piracies 'paI@r@sIz Mj$ 3 +piracy 'paI@r@sI M8% 3 +piranha pI'rAnj@ K6% 3 +piranhas pI'rAnj@z Kj% 3 +pirate 'paIr@t H2%,K6% 26A +pirated 'paIr@tId Hc%,Hd% 36A +pirates 'paIr@ts Ha%,Kj% 26A +piratical ,paI@'r&tIkl OA% 4 +piratically ,paI@'r&tIklI Pu% 4 +pirating 'paIr@tIN Hb% 36A +pirouette ,pIrU'et I2%,K6% 3 +pirouetted ,pIrU'etId Ic%,Id% 4 +pirouettes ,pIrU'ets Ia%,Kj% 3 +pirouetting ,pIrU'etIN Ib% 4 +pis paIz Kj$ 1 +pis aller ,piz '&leI Ki$ 3 +piscatorial ,pIsk@'tOrI@l OA$ 5 +piss pIs J1%,K7% 1 +pissed pIst Jc%,Jd%,OA% 1 +pisses 'pIsIz Ja%,Kj% 2 +pissing 'pIsIN Jb% 2 +pistachio pI'stAtSI@U K6% 4 +pistachios pI'stAtSI@Uz Kj% 4 +pistil 'pIstl K6$ 2 +pistils 'pIstlz Kj$ 2 +pistol 'pIstl K6% 2 +pistols 'pIstlz Kj% 2 +piston 'pIst@n K6% 2 +pistons 'pIst@nz Kj% 2 +pit pIt H4%,K6% 16A,14 +pit-a-pat ,pIt-@-'p&t Pu% 3 +pit-prop 'pIt-pr0p K6% 2 +pit-props 'pIt-pr0ps Kj% 2 +pitch pItS J1%,M7% 12A,2C,6A,15A,15B,22 +pitch-black 'pItS-bl&k OA% 2 +pitch-dark 'pItS-dAk OA% 2 +pitchblende 'pItSblend L@$ 2 +pitched pItSt Jc%,Jd% 12A,2C,6A,15A,15B,22 +pitcher 'pItS@R K6% 2 +pitchers 'pItS@z Kj% 2 +pitches 'pItSIz Ja%,Kj% 22A,2C,6A,15A,15B,22 +pitchfork 'pItSfOk H0%,K6% 2 +pitchforked 'pItSfOkt Hc%,Hd% 2 +pitchforking 'pItSfOkIN Hb% 3 +pitchforks 'pItSfOks Ha%,Kj% 2 +pitching 'pItSIN Jb% 22A,2C,6A,15A,15B,22 +piteous 'pItI@s OA% 3 +piteously 'pItI@slI Pu% 4 +pitfall 'pItfOl K6% 2 +pitfalls 'pItfOlz Kj% 2 +pith pIT L@% 1 +pithead 'pIthed K6% 2 +pitheads 'pIthedz Kj$ 2 +pithier 'pITI@R Or$ 3 +pithiest 'pITIIst Os$ 3 +pithily 'pITIlI Pu% 3 +pithy 'pITI OD% 2 +pitiable 'pItI@bl OA% 4 +pitiably 'pItI@blI Pu% 4 +pitied 'pItId Hc%,Hd% 26A +pities 'pItIz Ha%,Mj% 26A +pitiful 'pItIf@l OA% 3 +pitifully 'pItIf@lI Pu% 4 +pitiless 'pItIlIs OA% 3 +pitilessly 'pItIlIslI Pu% 4 +pitman 'pItm&n Ki% 2 +pitmen 'pItmen Kj% 2 +piton 'pit0n K6$ 2 +pitons 'pit0nz Kj$ 2 +pits pIts Ha%,Kj% 16A,14 +pitsaw 'pItsO K6$ 2 +pitsaws 'pItsOz Kj$ 2 +pittance 'pItns K6% 2 +pittances 'pItnsIz Kj$ 3 +pitted 'pItId Hc%,Hd% 26A,14 +pitter-patter 'pIt@-p&t@R L@% 4 +pitting 'pItIN Hb% 26A,14 +pituitaries pI'tjuIt@rIz Kj$ 5 +pituitary pI'tjuIt@rI K8%,OA% 5 +pity 'pItI H3%,M8% 26A +pitying 'pItIIN Hb%,OA% 36A +pityingly 'pItIINlI Pu% 4 +pivot 'pIv@t J0%,K6% 23A,6A +pivotal 'pIv@t@l OA% 3 +pivoted 'pIv@tId Jc%,Jd% 33A,6A +pivoting 'pIv@tIN Jb% 33A,6A +pivots 'pIv@ts Ja%,Kj% 23A,6A +pixie 'pIksI K6% 2 +pixies 'pIksIz Kj% 2 +pixilated 'pIksIleItId OA% 4 +pixy 'pIksI K8% 2 +pizza 'pits@ K6% 2 +pizzas 'pits@z Kj% 2 +pizzicato ,pItsI'kAt@U OA%,Pu% 4 +placard 'pl&kAd H0$,K6% 26A +placarded 'pl&kAdId Hc$,Hd$ 36A +placarding 'pl&kAdIN Hb$ 36A +placards 'pl&kAdz Ha$,Kj% 26A +placate pl@'keIt H2% 26A +placated pl@'keItId Hc%,Hd% 36A +placates pl@'keIts Ha% 26A +placating pl@'keItIN Hb% 36A +placatingly pl@'keItINlI Pu% 4 +place pleIs H2%,K6* 16A,15A,15B +place-bet 'pleIs-bet K6$ 2 +place-bets 'pleIs-bets Kj$ 2 +place-name 'pleIs-neIm K6% 2 +place-names 'pleIs-neImz Kj% 2 +placebo pl@'sib@U K6% 3 +placebos pl@'sib@Uz Kj% 3 +placed pleIst Hc%,Hd% 16A,15A,15B +placeman 'pleIsm@n Ki$ 2 +placemen 'pleIsm@n Kj$ 2 +placement 'pleIsm@nt K6% 2 +placements 'pleIsm@nts Kj% 2 +placenta pl@'sent@ K6% 3 +placentas pl@'sent@z Kj% 3 +places 'pleIsIz Ha%,Kj% 26A,15A,15B +placeseeker 'pleIs+sik@R K6$ 3 +placeseekers 'pleIs+sik@z Kj$ 3 +placid 'pl&sId OA% 2 +placidity pl@'sIdItI L@% 4 +placidly 'pl&sIdlI Pu% 3 +placing 'pleIsIN Hb%,K6$ 26A,15A,15B +placings 'pleIsINz Kj% 2 +placket 'pl&kIt K6$ 2 +plackets 'pl&kIts Kj$ 2 +plage plAZ Ki$ 1 +plagiarism 'pleIdZI@rIz@m M6% 5 +plagiarisms 'pleIdZI@rIz@mz Mj$ 5 +plagiarist 'pleIdZI@rIst K6% 4 +plagiarists 'pleIdZI@rIsts Kj% 4 +plagiarize 'pleIdZ@raIz H2% 36A +plagiarized 'pleIdZ@raIzd Hc%,Hd% 36A +plagiarizes 'pleIdZ@raIzIz Ha% 46A +plagiarizing 'pleIdZ@raIzIN Hb% 46A +plague pleIg H2%,K6% 16A,14 +plague-spot 'pleIg-sp0t K6% 2 +plague-spots 'pleIg-sp0ts Kj% 2 +plagued pleIgd Hc%,Hd% 16A,14 +plagues pleIgz Ha%,Kj% 16A,14 +plaguily 'pleIgIlI Pu$ 3 +plaguing 'pleIgIN Hb% 26A,14 +plaguy 'pleIgI OA$ 2 +plaice pleIs M9% 1 +plaid pl&d M6% 1 +plaids pl&dz Mj$ 1 +plain pleIn J0$,K6%,OC%,Pu% 1 +plain-spoken 'pleIn-sp@Uk@n OA% 3 +plained pleInd Jc$,Jd$ 1 +plainer 'pleIn@R Or% 2 +plainest 'pleInIst Os% 2 +plaining 'pleInIN Jb$ 2 +plainly 'pleInlI Pu% 2 +plainness 'pleIn+n@s L@% 2 +plains pleInz Ja$,Kj% 1 +plainsman 'pleInzm@n Ki% 2 +plainsmen 'pleInzm@n Kj% 2 +plaint pleInt K6% 1 +plaintiff 'pleIntIf K6% 2 +plaintiffs 'pleIntIfs Kj% 2 +plaintive 'pleIntIv OA% 2 +plaintively 'pleIntIvlI Pu% 3 +plaintiveness 'pleIntIvn@s L@% 3 +plaints pleInts Kj$ 1 +plait pl&t H0%,K6% 16A +plaited 'pl&tId Hc%,Hd% 26A +plaiting 'pl&tIN Hb% 26A +plaits pl&ts Ha%,Kj% 16A +plan pl&n H4%,K6% 16A,7A,15B +planchette plAn'Set K6$ 2 +planchettes plAn'Sets Kj$ 2 +plane pleIn J2%,K6% 12A,2D,15B,22 +plane-tree 'pleIn-tri K6% 2 +plane-trees 'pleIn-triz Kj% 2 +planed pleInd Jc%,Jd% 12A,2D,15B,22 +planes pleInz Ja%,Kj% 12A,2D,15B,22 +planet 'pl&nIt K6% 2 +planetarium ,pl&nI'te@rI@m K6% 5 +planetariums ,pl&nI'te@rI@mz Kj% 5 +planetary 'pl&nItrI OA% 3 +planets 'pl&nIts Kj% 2 +plangent 'pl&ndZ@nt OA$ 2 +planing 'pleInIN Jb% 22A,2D,15B,22 +plank pl&Nk H0%,K6% 16A,15B +plank-bed 'pl&Nk-bed K6$ 2 +plank-beds 'pl&Nk-bedz Kj$ 2 +planked pl&Nkt Hc$,Hd$ 16A,15B +planking 'pl&NkIN Hb$,L@% 26A,15B +planks pl&Nks Ha$,Kj% 16A,15B +plankton 'pl&Nkt@n L@% 2 +planless 'pl&nl@s OA$ 2 +planned pl&nd Hc%,Hd% 16A,7A,15B +planner 'pl&n@R K6% 2 +planners 'pl&n@z Kj% 2 +planning 'pl&nIN Hb% 26A,7A,15B +plans pl&nz Ha%,Kj% 16A,7A,15B +plant plAnt H0%,M6% 16A,15A,15B +plant-lice 'plAnt-laIs Kj$ 2 +plant-louse 'plAnt-laUs Ki$ 2 +plantain 'pl&ntIn K6% 2 +plantains 'pl&ntInz Kj% 2 +plantation pl&n'teISn K6% 3 +plantations pl&n'teISnz Kj$ 3 +planted 'plAntId Hc%,Hd% 26A,15A,15B +planter 'plAnt@R K6% 2 +planters 'plAnt@z Kj% 2 +planting 'plAntIN Hb% 26A,15A,15B +plants plAnts Ha%,Mj% 16A,15A,15B +plaque plAk M6% 1 +plaques plAks Mj% 1 +plash pl&S J1$,Ki$ 16A +plashed pl&St Jc$,Jd$ 16A +plashes 'pl&SIz Ja$ 26A +plashing 'pl&SIN Jb$ 26A +plasm 'pl&z@m L@$ 2 +plasma 'pl&zm@ L@% 2 +plaster 'plAst@R H0%,M6% 26A,14 +plasterboard 'plAst@bOd L@% 3 +plastered 'plAst@d Hc%,Hd%,OA% 26A,14 +plasterer 'plAst@r@R K6% 3 +plasterers 'plAst@r@z Kj% 3 +plastering 'plAst@rIN Hb% 36A,14 +plasters 'plAst@z Ha%,Mj% 26A,14 +plastic 'pl&stIk K6%,OA% 2 +plastic-bomb ,pl&stIk-'b0m K6% 3 +plastic-bombs ,pl&stIk-'b0mz Kj% 3 +plasticine 'pl&stIsin L@% 3 +plasticity pl&'stIsItI L@% 4 +plastics 'pl&stIks Kj%,Lk% 2 +plate pleIt H2%,M6% 16A,14 +plate-glass pleIt-'glAs L@% 2 +plate-powder 'pleIt-paUd@R L@$ 3 +plate-rack 'pleIt-r&k K6% 2 +plate-racks 'pleIt-r&ks Kj% 2 +plateau 'pl&t@U K6% 2 +plateaus 'pl&t@Uz Kj% 2 +plateaux 'pl&t@Uz Kj$ 2 +plated 'pleItId Hc%,Hd% 26A,14 +plateful 'pleItfUl K6% 2 +platefuls 'pleItfUlz Kj% 2 +platelayer 'pleItleI@R K6% 3 +platelayers 'pleItleI@z Kj% 3 +plates pleIts Ha%,Mj% 16A,14 +platform 'pl&tfOm K6% 2 +platforms 'pl&tfOmz Kj% 2 +plating 'pleItIN Hb%,L@% 26A,14 +platinum 'pl&tIn@m L@% 3 +platitude 'pl&tItjud M6% 3 +platitudes 'pl&tItjudz Mj% 3 +platitudinous ,pl&tI'tjudIn@s OA% 5 +platoon pl@'tun K6% 2 +platoons pl@'tunz Kj% 2 +platter 'pl&t@R K6% 2 +platters 'pl&t@z Kj% 2 +platypus 'pl&tIp@s K7% 3 +platypuses 'pl&tIp@sIz Kj% 4 +plaudit 'plOdIt K6% 2 +plaudits 'plOdIts Kj% 2 +plausibilities ,plOz@'bIlItIz Mj$ 5 +plausibility ,plOz@'bIlItI M8% 5 +plausible 'plOz@bl OA% 3 +plausibly 'plOz@blI Pu% 3 +play pleI J0*,M6% 12A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +play-acting 'pleI-&ktIN L@% 3 +play-actor 'pleI-&kt@R K6% 3 +play-actors 'pleI-&kt@z Kj% 3 +play-box 'pleI-b0ks K7$ 2 +play-boxes 'pleI-b0ksIz Kj$ 3 +play-off 'pleI-0f K6% 2 +play-offs 'pleI-0fs Kj% 2 +play-reading 'pleI-ridIN K6% 3 +play-readings 'pleI-ridINz Kj% 3 +playback 'pleIb&k K6% 2 +playbacks 'pleIb&ks Kj$ 2 +playbill 'pleIbIl K6% 2 +playbills 'pleIbIlz Kj% 2 +playboy 'pleIboI K6% 2 +playboys 'pleIboIz Kj% 2 +played pleId Jc%,Jd% 12A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +player 'pleI@R K6% 2 +player-piano ,pleI@-pI'&n@U K6$ 5 +player-pianos ,pleI@-pI'&n@Uz Kj$ 5 +players 'pleI@z Kj% 2 +playfellow 'pleIfel@U K6% 3 +playfellows 'pleIfel@Uz Kj% 3 +playful 'pleIf@l OA% 2 +playfully 'pleIf@lI Pu% 3 +playfulness 'pleIf@ln@s L@% 3 +playgoer 'pleIg@U@R K6% 3 +playgoers 'pleIg@U@z Kj% 3 +playground 'pleIgraUnd K6% 2 +playgrounds 'pleIgraUndz Kj% 2 +playgroup 'pleIgrup K6% 2 +playgroups 'pleIgrups Kj% 2 +playhouse 'pleIhaUs K6% 2 +playhouses 'pleIhaUzIz Kj% 3 +playing 'pleIIN Jb%,K6% 22A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +playing-card 'pleIIN-kAd K6% 3 +playing-cards 'pleIIN-kAdz Kj% 3 +playing-field 'pleIIN-fild K6% 3 +playing-fields 'pleIIN-fildz Kj% 3 +playings 'pleIINz Kj$ 2 +playlet 'pleIlIt K6% 2 +playlets 'pleIlIts Kj% 2 +playmate 'pleImeIt K6% 2 +playmates 'pleImeIts Kj% 2 +playpen 'pleIpen K6% 2 +playpens 'pleIpenz Kj% 2 +playroom 'pleIrum K6% 2 +playrooms 'pleIrumz Kj% 2 +plays pleIz Ja%,Mj% 12A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +playschool 'pleIskul K6% 2 +playschools 'pleIskulz Kj% 2 +playsuit 'pleIsut K6% 2 +playsuits 'pleIsuts Kj% 2 +plaything 'pleITIN K6% 2 +playthings 'pleITINz Kj% 2 +playtime 'pleItaIm K6% 2 +playtimes 'pleItaImz Kj% 2 +playwright 'pleIraIt K6% 2 +playwrights 'pleIraIts Kj% 2 +plaza 'plAz@ K6% 2 +plazas 'plAz@z Kj% 2 +plea pli K6% 1 +pleach plitS H1$ 16A +pleached plitSt Hc$,Hd$ 16A +pleaches 'plitSIz Ha$ 26A +pleaching 'plitSIN Hb$ 26A +plead plid J0% 13A,6A +pleaded 'plidId Jc%,Jd% 23A,6A +pleading 'plidIN Jb% 23A,6A +pleadingly 'plidINlI Pu% 3 +pleadings 'plidINz Kj% 2 +pleads plidz Ja% 13A,6A +pleas pliz Kj% 1 +pleasance 'plezns K6$ 2 +pleasances 'pleznsIz Kj$ 3 +pleasant 'pleznt OC% 2 +pleasanter 'plez@nt@R Or% 3 +pleasantest 'plez@ntIst Os% 3 +pleasantly 'plezntlI Pu% 3 +pleasantness 'plezntn@s L@$ 3 +pleasantries 'plezntrIz Mj% 3 +pleasantry 'plezntrI M8% 3 +please pliz J2% 12A,6A +pleased plizd Jc%,Jd%,OA% 12A,6A +pleases 'plizIz Ja% 22A,6A +pleasing 'plizIN Jb%,OA% 22A,6A +pleasingly 'plizINlI Pu% 3 +pleasurable 'pleZ@r@bl OA% 4 +pleasurably 'pleZ@r@blI Pu% 4 +pleasure 'pleZ@R M6% 2 +pleasure-boat 'pleZ@-b@Ut K6% 3 +pleasure-boats 'pleZ@-b@Uts Kj% 3 +pleasure-craft 'pleZ@-krAft K6% 3 +pleasure-crafts 'pleZ@-krAfts Kj% 3 +pleasure-ground 'pleZ@-graUnd K6% 3 +pleasure-grounds 'pleZ@-graUndz Kj% 3 +pleasures 'pleZ@z Mj% 2 +pleat plit H0$,K6% 16A +pleated 'plitId Hc$,Hd% 26A +pleating 'plitIN Hb$ 26A +pleats plits Ha$,Kj% 16A +pleb pleb K6$ 1 +plebeian plI'bi@n K6%,OA% 3 +plebeians plI'bi@nz Kj% 3 +plebiscite 'plebIsIt K6% 3 +plebiscites 'plebIsIts Kj% 3 +plebs plebz Kj% 1 +plectrum 'plektr@m K6% 2 +plectrums 'plektr@mz Kj% 2 +pled pled Jc$,Jd$ 13A,6A +pledge pledZ H2%,M6% 16A +pledged pledZd Hc%,Hd% 16A +pledges 'pledZIz Ha%,Mj% 26A +pledging 'pledZIN Hb% 26A +plenarily 'plin@r@lI Pu$ 4 +plenary 'plin@rI OA% 3 +plenipotentiaries ,plenIp@'tenS@rIz Kj% 6 +plenipotentiary ,plenIp@'tenS@rI K8% 6 +plenitude 'plenItjud Ki% 3 +plenteous 'plentI@s OA% 3 +plenteously 'plentI@slI Pu% 4 +plentiful 'plentIf@l OA% 3 +plentifully 'plentIf@lI Pu% 4 +plenty 'plentI L@%,Pu% 2 +pleonasm 'plI@n&z@m M6$ 4 +pleonasms 'plI@n&z@mz Mj$ 4 +plethora 'pleT@r@ K6% 3 +plethoras 'pleT@r@z Kj$ 3 +pleurisy 'plU@r@sI L@% 3 +plexus 'pleks@s K9$ 2 +plexuses 'pleks@sIz Kj$ 3 +pliability ,plaI@'bIlItI L@% 5 +pliable 'plaI@bl OA% 3 +pliancy 'plaI@nsI L@% 3 +pliant 'plaI@nt OA% 2 +pliantly 'plaI@ntlI Pu% 3 +plied plaId Jc%,Jd% 12C,6A +pliers 'plaI@z Kj% 2 +plies plaIz Ja%,Kj% 12C,6A +plight plaIt H0%,K6% 16A +plighted 'plaItId Hc%,Hd% 26A +plighting 'plaItIN Hb% 26A +plights plaIts Ha%,Kj% 16A +plimsolls 'plIms@lz Kj% 2 +plinth plInT K6% 1 +plinths plInTs Kj% 1 +plod pl0d J4% 12C +plodded 'pl0dId Jc%,Jd% 22C +plodder 'pl0d@R K6% 2 +plodders 'pl0d@z Kj% 2 +plodding 'pl0dIN Jb%,OA% 22C +ploddingly 'pl0dINlI Pu% 3 +plods pl0dz Ja% 12C +plonk pl0Nk I0%,M6%,Pu% 1 +plonked pl0Nkt Ic%,Id% 1 +plonking 'pl0NkIN Ib% 2 +plonks pl0Nks Ia%,Mj% 1 +plop pl0p I4%,K6%,Pu% 1 +plopped pl0pt Ic%,Id% 1 +plopping 'pl0pIN Ib% 2 +plops pl0ps Ia%,Kj% 1 +plosive 'pl@UsIv K6$,OA$ 2 +plosives 'pl@UsIvz Kj$ 2 +plot pl0t J4%,K6% 12A,3A,4A,6A,8,10,15B +plots pl0ts Ja%,Kj% 12A,3A,4A,6A,8,10,15B +plotted 'pl0tId Jc%,Jd% 22A,3A,4A,6A,8,10,15B +plotter 'pl0t@R K6% 2 +plotters 'pl0t@z Kj% 2 +plotting 'pl0tIN Jb% 22A,3A,4A,6A,8,10,15B +plough plaU J0%,M6% 13A,6A,15B +ploughboy 'plaUboI K6% 2 +ploughboys 'plaUboIz Kj% 2 +ploughed plaUd Jc%,Jd% 13A,6A,15B +ploughing 'plaUIN Jb% 23A,6A,15B +ploughman 'plaUm@n Ki% 2 +ploughmen 'plaUm@n Kj% 2 +ploughs plaUz Ja%,Mj% 13A,6A,15B +ploughshare 'plaUSe@R K6% 2 +ploughshares 'plaUSe@z Kj% 2 +plover 'plVv@R K6% 2 +plovers 'plVv@z Kj% 2 +ploy ploI K6% 1 +ploys ploIz Kj% 1 +pluck plVk J0%,M6% 13A,6A,15B +plucked plVkt Jc%,Jd% 13A,6A,15B +pluckier 'plVkI@R Or% 3 +pluckiest 'plVkIIst Os% 3 +pluckily 'plVkIlI Pu% 3 +plucking 'plVkIN Jb% 23A,6A,15B +plucks plVks Ja%,Mj% 13A,6A,15B +plucky 'plVkI OD% 2 +plug plVg J4%,K6% 12C,6A,15B +plugged plVgd Jc%,Jd% 12C,6A,15B +plugging 'plVgIN Jb% 22C,6A,15B +plughole 'plVgh@Ul K6% 2 +plugholes 'plVgh@Ulz Kj% 2 +plugs plVgz Ja%,Kj% 12C,6A,15B +plum plVm K6% 1 +plum-pudding plVm-'pUdIN M6% 3 +plum-puddings plVm-'pUdINz Mj% 3 +plumage 'plumIdZ L@% 2 +plumb plVm H0$,K6%,Pu% 16A +plumbago plVm'beIg@U M6$ 3 +plumbagos plVm'beIg@Uz Mj$ 3 +plumbed plVmd Hc%,Hd% 16A +plumber 'plVm@R K6% 2 +plumbers 'plVm@z Kj% 2 +plumbing 'plVmIN Hb%,L@% 26A +plumbs plVmz Ha%,Kj$ 16A +plume plum H2$,K6% 16A +plumed plumd Hc$,Hd% 16A +plumes plumz Ha$,Kj% 16A +pluming 'plumIN Hb$ 26A +plummet 'plVmIt I4%,K6% 22A +plummets 'plVmIts Ia%,Kj% 22A +plummetted 'plVmItId Ic%,Id% 32A +plummetting 'plVmItIN Ib% 32A +plummier 'plVmI@R Or% 3 +plummiest 'plVmIIst Os% 3 +plummy 'plVmI OD% 2 +plump plVmp J0%,K6%,OC%,Pu% 12A,2C,3A,6A,15B +plumped plVmpt Jc%,Jd% 12A,2C,3A,6A,15B +plumper 'plVmp@R Or% 2 +plumpest 'plVmpIst Os% 2 +plumping 'plVmpIN Jb% 22A,2C,3A,6A,15B +plumps plVmps Ja%,Kj% 12A,2C,3A,6A,15B +plums plVmz Kj% 1 +plunder 'plVnd@R J0%,L@% 22A,6A,14 +plundered 'plVnd@d Jc%,Jd% 22A,6A,14 +plunderer 'plVnd@r@R K6% 3 +plunderers 'plVnd@r@z Kj% 3 +plundering 'plVnd@rIN Jb% 32A,6A,14 +plunders 'plVnd@z Ja% 22A,6A,14 +plunge plVndZ J2%,K6% 12A,2C,6A,14 +plunged plVndZd Jc%,Jd% 12A,2C,6A,14 +plunger 'plVndZ@R K6% 2 +plungers 'plVndZ@z Kj% 2 +plunges 'plVndZIz Ja%,Kj% 22A,2C,6A,14 +plunging 'plVndZIN Jb% 22A,2C,6A,14 +plunk plVNk K6$ 1 +plunks plVNks Kj$ 1 +pluperfect ,plu'p3fIkt K6%,OA% 3 +pluperfects ,plu'p3fIkts Kj$ 3 +plural 'plU@r@l K6%,OA% 2 +pluralism 'plU@r@lIz@m L@% 4 +pluralist 'plU@r@lIst K6% 3 +pluralists 'plU@r@lIsts Kj% 3 +pluralities plU@'r&lItIz Mj% 4 +plurality plU@'r&lItI M8% 4 +plurals 'plU@r@lz Kj% 2 +plus plVs K7%,OA%,T-% 1 +plus-fours plVs-'fOz Kj% 2 +pluses 'plVsIz Kj% 2 +plush plVS L@%,OC% 1 +plusher 'plVS@R Or% 2 +plushest 'plVSIst Os% 2 +plushier 'plVSI@R Or$ 3 +plushiest 'plVSIIst Os$ 3 +plushy 'plVSI OD$ 2 +plutocracies plu't0kr@sIz Mj% 4 +plutocracy plu't0kr@sI M8% 4 +plutocrat 'plut@kr&t K6% 3 +plutocratic ,plut@'kr&tIk OA% 4 +plutocrats 'plut@kr&ts Kj% 3 +plutonium plu't@UnI@m L@% 4 +ply plaI J3%,K9% 12C,6A +plying 'plaIIN Jb% 22C,6A +plywood 'plaIwUd L@% 2 +pm ,pi'em Y~% 2 +pneumatic nju'm&tIk OA% 3 +pneumatically nju'm&tIklI Pu% 4 +pneumonia nju'm@UnI@ L@% 4 +poach p@UtS J1% 12A,3A,6A +poached p@UtSt Jc%,Jd% 12A,3A,6A +poacher 'p@UtS@R K6% 2 +poachers 'p@UtS@z Kj% 2 +poaches 'p@UtSIz Ja% 22A,3A,6A +poaching 'p@UtSIN Jb% 22A,3A,6A +pock p0k K6$ 1 +pocked p0kt OA$ 1 +pocket 'p0kIt H0%,K6% 26A +pocket-book 'p0kIt-bUk K6% 3 +pocket-books 'p0kIt-bUks Kj% 3 +pocket-handkerchief ,p0kIt-'h&Nk@tSIf K6% 5 +pocket-handkerchiefs ,p0kIt-'h&Nk@tSIfs Kj% 5 +pocket-knife 'p0kIt-naIf Ki% 3 +pocket-knives 'p0kIt-naIvz Kj% 3 +pocket-money 'p0kIt-mVnI L@% 4 +pocketed 'p0kItId Hc%,Hd% 36A +pocketful 'p0kItfUl K6% 3 +pocketfuls 'p0kItfUlz Kj% 3 +pocketing 'p0kItIN Hb% 36A +pockets 'p0kIts Ha%,Kj% 26A +pockmarked 'p0kmAkt OA% 2 +pocks p0ks Kj$ 1 +pod p0d J4$,K6% 12A,2C,6A +podded 'p0dId Jc$,Jd$ 22A,2C,6A +podding 'p0dIN Jb$ 22A,2C,6A +podgier 'p0dZI@R Or% 3 +podgiest 'p0dZIIst Os% 3 +podgy 'p0dZI OD% 2 +podiatry p@'daI@trI L@$ 4 +podium 'p@UdI@m K6% 3 +podiums 'p@UdI@mz Kj% 3 +pods p0dz Ja$,Kj% 12A,2C,6A +poem 'p@UIm K6% 2 +poems 'p@UImz Kj% 2 +poesy 'p@UIzI L@$ 3 +poet 'p@UIt K6% 2 +poetess 'p@UItes K7% 3 +poetesses 'p@UItesIz Kj% 4 +poetic p@U'etIk OA% 3 +poetical p@U'etIkl OA% 4 +poetically p@U'etIklI Pu% 4 +poetry 'p@UItrI L@% 3 +poets 'p@UIts Kj% 2 +pogrom 'p0gr@m K6$ 2 +pogroms 'p0gr@mz Kj$ 2 +poignancy 'poInj@nsI L@% 3 +poignant 'poInj@nt OA% 2 +poignantly 'poInj@ntlI Pu% 3 +poinsettia poIn'setI@ K6% 4 +poinsettias poIn'setI@z Kj% 4 +point poInt J0*,M6* 12A,3A,6A,14,15B +point-blank ,poInt-'bl&Nk OA%,Pu% 2 +point-duty 'poInt-djutI L@% 3 +pointed 'poIntId Jc%,Jd%,OA% 22A,3A,6A,14,15B +pointedly 'poIntIdlI Pu% 3 +pointer 'poInt@R K6% 2 +pointers 'poInt@z Kj% 2 +pointing 'poIntIN Jb% 22A,3A,6A,14,15B +pointless 'poIntlIs OA% 2 +pointlessly 'poIntlIslI Pu% 3 +points poInts Ja%,Mj% 12A,3A,6A,14,15B +pointsman 'poIntsm@n Ki% 2 +pointsmen 'poIntsm@n Kj% 2 +poise poIz J2%,L@% 12C,6A,15A +poised poIzd Jc%,Jd% 12C,6A,15A +poises 'poIzIz Ja% 22C,6A,15A +poising 'poIzIN Jb% 22C,6A,15A +poison 'poIzn H0%,M6% 26A +poison-gas ,poIzn-'g&s M7% 3 +poison-gases ,poIzn-'g&sIz Mj$ 4 +poison-ivies ,poIzn-'aIvIz Mj$ 4 +poison-ivy ,poIzn-'aIvI M8% 4 +poisoned 'poIznd Hc%,Hd% 26A +poisoner 'poIzn@R K6% 3 +poisoners 'poIzn@z Kj% 3 +poisoning 'poIznIN Hb% 36A +poisonous 'poIz@n@s OA% 3 +poisonously 'poIz@n@slI Pu% 4 +poisons 'poIznz Ha%,Mj% 26A +poke p@Uk J2%,K6% 12C,6A,15A,15B +poke-bonnet ,p@Uk-'b0nIt K6$ 3 +poke-bonnets ,p@Uk-'b0nIts Kj$ 3 +poked p@Ukt Jc%,Jd% 12C,6A,15A,15B +poker 'p@Uk@R M6% 2 +poker-face 'p@Uk@-feIs K6% 3 +poker-faces 'p@Uk@-feIsIz Kj% 4 +pokers 'p@Uk@z Mj% 2 +pokes p@Uks Ja%,Kj% 12C,6A,15A,15B +pokier 'p@UkI@R Or% 3 +pokiest 'p@UkIIst Os% 3 +poking 'p@UkIN Jb% 22C,6A,15A,15B +poky 'p@UkI OD% 2 +polar 'p@Ul@R OA% 2 +polarities p@'l&rItIz Mj% 4 +polarity p@'l&rItI M8% 4 +polarization ,p@Ul@raI'zeISn K6% 5 +polarizations ,p@Ul@raI'zeISnz Kj% 5 +polarize 'p@Ul@raIz H2% 36A +polarized 'p@Ul@raIzd Hc%,Hd% 36A +polarizes 'p@Ul@raIzIz Ha% 46A +polarizing 'p@Ul@raIzIN Hb% 46A +pole p@Ul K6% 1 +pole-jumping 'p@Ul-dZVmpIN L@% 3 +pole-star 'p@Ul-stAR K6% 2 +pole-stars 'p@Ul-stAz Kj% 2 +pole-vault 'p@Ul-vOlt K6% 2 +pole-vaults 'p@Ul-vOlts Kj% 2 +poleax 'p@Ul&ks H1$,K7$ 26A +poleaxe 'p@Ul&ks H2%,K6% 26A +poleaxed 'p@Ul&kst Hc$,Hd% 26A +poleaxes 'p@Ul&ksIz Ha%,Kj% 36A +poleaxing 'p@Ul&ksIN Hb% 36A +polecat 'p@Ulk&t K6% 2 +polecats 'p@Ulk&ts Kj% 2 +polemic p@'lemIk K6%,OA% 3 +polemically p@'lemIklI Pu% 4 +polemics p@'lemIks Kj% 3 +poles p@Ulz Kj% 1 +police p@'lis H2%,Kj% 26A +police-office p@'lis-0fIs K6% 4 +police-officer p@'lis-0fIs@R K6% 5 +police-officers p@'lis-0fIs@z Kj% 5 +police-offices p@'lis-0fIsIz Kj% 5 +police-station p@'lis-steISn K6% 4 +police-stations p@'lis-steISnz Kj% 4 +policed p@'list Hc%,Hd% 26A +policeman p@'lism@n Ki% 3 +policemen p@'lism@n Kj% 3 +polices p@'lisIz Ha% 36A +policewoman p@'liswUm@n Ki% 4 +policewomen p@'liswImIn Kj% 4 +policies 'p0l@sIz Mj% 3 +policing p@'lisIN Hb% 36A +policy 'p0l@sI M8% 3 +polio 'p@UlI@U L@% 3 +poliomyelitis ,p@UlI@U,maI@'laItIs L@% 7 +polish 'p0lIS J1%,M7% 22A,6A,15B +polished 'p0lISt Jc%,Jd% 22A,6A,15B +polisher 'p0lIS@R K6% 3 +polishers 'p0lIS@z Kj% 3 +polishes 'p0lISIz Ja%,Mj% 32A,6A,15B +polishing 'p0lISIN Jb% 32A,6A,15B +politburo 'p0lItbjU@r@U K6% 4 +politburos 'p0lItbjU@r@Uz Kj$ 4 +polite p@'laIt OB% 2 +politely p@'laItlI Pu% 3 +politeness p@'laItn@s L@% 3 +politer p@'laIt@R Or% 3 +politest p@'laItIst Os% 3 +politic 'p0lItIk OA% 3 +political p@'lItIkl OA% 4 +politically p@'lItIklI Pu% 4 +politician ,p0lI'tISn K6% 4 +politicians ,p0lI'tISnz Kj% 4 +politicize p@'lItIsaIz J2% 42A,6A +politicized p@'lItIsaIzd Jc%,Jd% 42A,6A +politicizes p@'lItIsaIzIz Ja% 52A,6A +politicizing p@'lItIsaIzIN Jb% 52A,6A +politick 'p0lItIk I0$ 32A +politicked 'p0lItIkt Ic$,Id$ 32A +politicking 'p0lItIkIN Ib$ 42A +politicks 'p0lItIks Ia$ 32A +politics 'p0lItIks Lk$ 3 +polities 'p0lItIz Mj$ 3 +polity 'p0lItI M8$ 3 +polka 'p0lk@ K6% 2 +polkas 'p0lk@z Kj% 2 +poll p0l K6$ 1 +poll p@Ul J0%,K6% 12A,2C,6A +poll-tax 'p@Ul-t&ks K7% 2 +poll-taxes 'p@Ul-t&ksIz Kj% 3 +pollard 'p0l@d H0%,K6$ 26A +pollarded 'p0l@dId Hc%,Hd% 36A +pollarding 'p0l@dIN Hb% 36A +pollards 'p0l@dz Ha%,Kj$ 26A +polled p@Uld Jc%,Jd% 12A,2C,6A +pollen 'p0l@n L@% 2 +pollinate 'p0lIneIt H2% 36A +pollinated 'p0lIneItId Hc%,Hd% 46A +pollinates 'p0lIneIts Ha% 36A +pollinating 'p0lIneItIN Hb% 46A +pollination ,p0lI'neISn L@% 4 +polling 'p@UlIN Jb% 22A,2C,6A +polling-booth 'p@UlIN-buD K6% 3 +polling-booths 'p@UlIN-buDz Kj% 3 +polling-day 'p@UlIN-deI K6% 3 +polling-days 'p@UlIN-deIz Kj% 3 +polling-station 'p@UlIN-steISn K6% 4 +polling-stations 'p@UlIN-steISnz Kj% 4 +polls p0lz Kj$ 1 +polls p@Ulz Ja%,Kj% 12A,2C,6A +pollster 'p@Ulst@R K6% 2 +pollsters 'p@Ulst@z Kj% 2 +pollutant p@'lut@nt K6% 3 +pollutants p@'lut@nts Kj% 3 +pollute p@'lut H2% 26A +polluted p@'lutId Hc%,Hd% 36A +pollutes p@'luts Ha% 26A +polluting p@'lutIN Hb% 36A +pollution p@'luSn L@% 3 +polo 'p@Ul@U L@% 2 +polo-neck 'p@Ul@U-nek OA% 3 +polonaise ,p0l@'neIz K6$ 3 +polonaises ,p0l@'neIzIz Kj$ 4 +polony p@'l@UnI L@% 3 +poltergeist 'p0lt@gaIst K6% 3 +poltergeists 'p0lt@gaIsts Kj% 3 +poltroon p0l'trun K6$ 2 +poltroonery p0l'trun@rI L@$ 4 +poltroons p0l'trunz Kj$ 2 +poly 'p0lI K6$ 2 +polyandrous ,p0lI'&ndr@s OA$ 4 +polyandry 'p0lI&ndrI L@$ 4 +polyanthus ,p0lI'&nT@s K7% 4 +polyanthuses ,p0lI'&nT@sIz Kj$ 5 +polygamist p@'lIg@mIst K6% 4 +polygamists p@'lIg@mIsts Kj% 4 +polygamous p@'lIg@m@s OA% 4 +polygamy p@'lIg@mI L@% 4 +polyglot 'p0lIgl0t K6%,OA% 3 +polyglots 'p0lIgl0ts Kj% 3 +polygon 'p0lIg@n K6% 3 +polygonal p@'lIg@n@l OA% 4 +polygons 'p0lIg@nz Kj% 3 +polymorphic ,p0lI'mOfIk OA$ 4 +polymorphous ,p0lI'mOf@s OA$ 4 +polynomial ,p0lI'n@UmI@l K6$,OA$ 5 +polynomials ,p0lI'n@UmI@lz Kj$ 5 +polyp 'p0lIp K6$ 2 +polyphonic ,p0lI'f0nIk OA% 4 +polyphony p@'lIf@nI L@% 4 +polypi 'p0lIpaI Kj$ 3 +polyps 'p0lIps Kj$ 2 +polypus 'p0lIp@s K7$ 3 +polypuses 'p0lIp@sIz Kj$ 4 +polys 'p0lIz Kj$ 2 +polysyllabic ,p0lIsI'l&bIk OA% 5 +polysyllable 'p0lIsIl@bl K6% 5 +polysyllables 'p0lIsIl@blz Kj% 5 +polytechnic ,p0lI'teknIk K6% 4 +polytechnics ,p0lI'teknIks Kj% 4 +polytheism 'p0lITiIz@m L@% 5 +polytheistic ,p0lITi'IstIk OA% 5 +polythene 'p0lITin L@% 3 +pom p0m K6$ 1 +pomade p@'mAd H2$,L@$ 2 +pomaded p@'mAdId Hc$,Hd$ 3 +pomades p@'mAdz Ha$ 2 +pomading p@'mAdIN Hb$ 3 +pomegranate 'p0mIgr&nIt K6% 4 +pomegranates 'p0mIgr&nIts Kj% 4 +pomelo 'p0m@l@U K6$ 3 +pomelos 'p0m@l@Uz Kj$ 3 +pommel 'p0ml K6$ 2 +pommel 'pVml H4$ 2 +pommelled 'pVmld Hc$,Hd$ 2 +pommelling 'pVm@lIN Hb$ 3 +pommels 'p0mlz Kj$ 2 +pommels 'pVmlz Ha$ 2 +pommies 'p0mIz Kj$ 2 +pommy 'p0mI K8$ 2 +pomp p0mp L@% 1 +pompon 'p0mp0n K6% 2 +pompons 'p0mp0nz Kj% 2 +pomposities p0m'p0sItIz Mj$ 4 +pomposity p0m'p0sItI M8% 4 +pompous 'p0mp@s OA% 2 +pompously 'p0mp@slI Pu% 3 +poms p0mz Kj$ 1 +ponce p0ns K6% 1 +ponces 'p0nsIz Kj% 2 +poncho 'p0ntS@U K6% 2 +ponchos 'p0ntS@Uz Kj% 2 +pond p0nd K6% 1 +ponder 'p0nd@R J0% 22A,3A,6A,8,10 +ponderable 'p0nd@r@bl OA$ 4 +ponderables 'p0nd@r@blz Kj$ 4 +pondered 'p0nd@d Jc%,Jd% 22A,3A,6A,8,10 +pondering 'p0nd@rIN Jb% 32A,3A,6A,8,10 +ponderous 'p0nd@r@s OA% 3 +ponderously 'p0nd@r@slI Pu% 4 +ponders 'p0nd@z Ja% 22A,3A,6A,8,10 +ponds p0ndz Kj% 1 +pone p@Un K6$ 1 +pones p@Unz Kj$ 1 +pongee p0n'dZi L@$ 2 +poniard 'p0nj@d H0$,K6$ 26A +poniarded 'p0nj@dId Hc$,Hd$ 36A +poniarding 'p0nj@dIN Hb$ 36A +poniards 'p0nj@dz Ha$,Kj$ 26A +ponies 'p@UnIz Kj% 2 +pontiff 'p0ntIf K6% 2 +pontiffs 'p0ntIfs Kj% 2 +pontifical p0n'tIfIkl OA% 4 +pontificals p0n'tIfIklz Kj$ 4 +pontificate p0n'tIfIk@t K6$ 4 +pontificate p0n'tIfIkeIt I2% 42A +pontificated p0n'tIfIkeItId Ic%,Id% 52A +pontificates p0n'tIfIk@ts Kj$ 4 +pontificates p0n'tIfIkeIts Ia% 42A +pontificating p0n'tIfIkeItIN Ib% 52A +pontoon p0n'tun M6% 2 +pontoons p0n'tunz Mj$ 2 +pony 'p@UnI K8% 2 +pony-trekking 'p@UnI-trekIN L@% 4 +ponytail 'p@UnIteIl K6% 3 +ponytails 'p@UnIteIlz Kj% 3 +poodle 'pudl K6% 2 +poodles 'pudlz Kj% 2 +poof puf K6$ 1 +poofs pufs Kj$ 1 +pooh pu W-$ 1 +pooh-pooh ,pu-'pu H0$ 26A +pooh-poohed ,pu-'pud Hc$,Hd$ 26A +pooh-poohing ,pu-'puIN Hb$ 36A +pooh-poohs ,pu-'puz Ha$ 26A +pool pul H0%,M6% 16A +pooled puld Hc%,Hd% 16A +pooling 'pulIN Hb% 26A +poolroom 'pulrum K6% 2 +poolrooms 'pulrumz Kj% 2 +pools pulz Ha%,Mj% 16A +poop pup K6% 1 +poops pups Kj% 1 +poor pU@R OC% 1 +poor-box 'pU@-b0ks K7% 2 +poor-boxes 'pU@-b0ksIz Kj% 3 +poor-rate 'pU@-reIt K6$ 2 +poor-rates 'pU@-reIts Kj$ 2 +poor-spirited pU@-'spIrItId OA% 4 +poorer 'pU@r@R Or% 2 +poorest 'pU@rIst Os% 2 +poorhouse 'pU@haUs K6% 2 +poorhouses 'pU@haUzIz Kj% 3 +poorly 'pU@lI Op%,Pu% 2 +poorness 'pU@n@s L@% 2 +pop p0p J4%,M6%,OA%,Pu%,Y>$ 12A,2C,6A,15A,15B +popcorn 'p0pkOn K6% 2 +popcorns 'p0pkOnz Kj$ 2 +popery 'p@Up@rI L@% 3 +popeyed 'p0paId OA% 2 +popgun 'p0pgVn K6% 2 +popguns 'p0pgVnz Kj% 2 +popinjay 'p0pIndZeI K6$ 3 +popinjays 'p0pIndZeIz Kj$ 3 +popish 'p@UpIS OA% 2 +popishly 'p@UpISlI Pu% 3 +poplar 'p0pl@R M6% 2 +poplars 'p0pl@z Mj% 2 +poplin 'p0plIn L@% 2 +poppa 'p0p@ K6$ 2 +poppas 'p0p@z Kj$ 2 +popped p0pt Jc%,Jd% 12A,2C,6A,15A,15B +poppet 'p0pIt K6% 2 +poppets 'p0pIts Kj% 2 +poppies 'p0pIz Kj% 2 +popping 'p0pIN Jb% 22A,2C,6A,15A,15B +poppy 'p0pI K8% 2 +poppycock 'p0pIk0k L@% 3 +pops p0ps Ja%,Mj% 12A,2C,6A,15A,15B +populace 'p0pjUl@s K6% 3 +populaces 'p0pjUl@sIz Kj$ 4 +popular 'p0pjUl@R OA% 3 +popularity ,p0pjU'l&rItI L@% 5 +popularization ,p0pjUl@raI'zeISn M6% 6 +popularizations ,p0pjUl@raI'zeISnz Mj$ 6 +popularize 'p0pjUl@raIz H2% 46A +popularized 'p0pjUl@raIzd Hc%,Hd% 46A +popularizes 'p0pjUl@raIzIz Ha% 56A +popularizing 'p0pjUl@raIzIN Hb% 56A +popularly 'p0pjUl@lI Pu% 4 +populate 'p0pjUleIt H2% 36A +populated 'p0pjUleItId Hc%,Hd% 46A +populates 'p0pjUleIts Ha% 36A +populating 'p0pjUleItIN Hb% 46A +population ,p0pjU'leISn K6% 4 +populations ,p0pjU'leISnz Kj% 4 +populism 'p0pjUlIz@m L@$ 4 +populist 'p0pjUlIst K6$ 3 +populists 'p0pjUlIsts Kj$ 3 +populous 'p0pjUl@s OA% 3 +porcelain 'pOs@lIn L@% 3 +porch pOtS K7% 1 +porches 'pOtSIz Kj% 2 +porcine 'pOsaIn OA$ 2 +porcupine 'pOkjUpaIn K6% 3 +porcupines 'pOkjUpaInz Kj% 3 +pore pOR I2%,K6% 13A +pored pOd Ic%,Id% 13A +pores pOz Ia%,Kj% 13A +poring 'pOrIN Ib% 23A +pork pOk L@% 1 +pork-barrel 'pOk-b&r@l K6$ 3 +pork-barrels 'pOk-b&r@lz Kj$ 3 +pork-butcher 'pOk-bUtS@R K6% 3 +pork-butchers 'pOk-bUtS@z Kj% 3 +porker 'pOk@R K6% 2 +porkers 'pOk@z Kj% 2 +porn pOn L@% 1 +pornographer pO'n0gr@f@R K6% 4 +pornographers pO'n0gr@f@z Kj% 4 +pornographic ,pOn@'gr&fIk OA% 4 +pornography pO'n0gr@fI L@% 4 +porosities pO'r0sItIz Mj$ 4 +porosity pO'r0sItI M8% 4 +porous 'pOr@s OA% 2 +porousness 'pOr@sn@s L@% 3 +porphyry 'pOfIrI L@$ 3 +porpoise 'pOp@s K6% 2 +porpoises 'pOp@sIz Kj% 3 +porridge 'p0rIdZ L@% 2 +porringer 'p0rIndZ@R K6$ 3 +porringers 'p0rIndZ@z Kj$ 3 +port pOt H0%,M6% 16A +portability ,pOt@'bIlItI L@% 5 +portable 'pOt@bl OA% 3 +portage 'pOtIdZ M6$ 2 +portages 'pOtIdZIz Mj$ 3 +portal 'pOtl K6% 2 +portals 'pOtlz Kj% 2 +portcullis ,pOt'kVlIs K7% 3 +portcullises ,pOt'kVlIsIz Kj% 4 +porte-coch`ere ,pOt-k@'Se@R K6$ 3 +porte-coch`eres ,pOt-k@'Se@z Kj$ 3 +ported 'pOtId Hc$,Hd$ 26A +portend pO'tend H0$ 26A +portended pO'tendId Hc$,Hd$ 36A +portending pO'tendIN Hb$ 36A +portends pO'tendz Ha$ 26A +portent 'pOtent K6% 2 +portentous pO'tent@s OA% 3 +portentously pO'tent@slI Pu% 4 +portents 'pOtents Kj% 2 +porter 'pOt@R M6% 2 +porterage 'pOt@rIdZ L@$ 3 +porterhouse 'pOt@haUs K6$ 3 +porterhouses 'pOt@haUzIz Kj$ 4 +porters 'pOt@z Mj% 2 +portfolio pOt'f@UlI@U K6% 4 +portfolios pOt'f@UlI@Uz Kj% 4 +porthole 'pOth@Ul K6% 2 +portholes 'pOth@Ulz Kj% 2 +porti`ere ,pOtI'e@R K6$ 3 +porti`eres ,pOtI'e@z Kj$ 3 +portico 'pOtIk@U K6% 3 +porticoes 'pOtik@Uz Kj% 3 +porticos 'pOtIk@Uz Kj% 3 +porting 'pOtIN Hb$ 26A +portion 'pOSn H0%,K6% 214,15B +portioned 'pOSnd Hc%,Hd% 214,15B +portioning 'pOSnIN Hb% 314,15B +portions 'pOSnz Ha%,Kj% 214,15B +portly 'pOtlI OA% 2 +portmanteau pOt'm&nt@U K6% 3 +portmanteaus pOt'm&nt@Uz Kj% 3 +portmanteaux pOt'm&nt@Uz Kj$ 3 +portrait 'pOtrIt K6% 2 +portraitist 'pOtrItIst K6% 3 +portraitists 'pOtrItIsts Kj% 3 +portraits 'pOtrIts Kj% 2 +portraiture 'pOtreItS@R L@% 3 +portray pO'treI H0% 26A +portrayal pO'treI@l M6% 3 +portrayals pO'treI@lz Mj% 3 +portrayed pO'treId Hc%,Hd% 26A +portraying pO'treIIN Hb% 36A +portrays pO'treIz Ha% 26A +ports pOts Ha$,Mj% 16A +pose p@Uz J2%,K6% 12A,2C,3A,6A +posed p@Uzd Jc%,Jd% 12A,2C,3A,6A +poser 'p@Uz@R K6% 2 +posers 'p@Uz@z Kj% 2 +poses 'p@UzIz Ja%,Kj% 22A,2C,3A,6A +poseur p@U'z3R K6% 2 +poseurs p@U'z3z Kj% 2 +poseuse p@U'z3z Ki$ 2 +posh p0S H1$,OC% 115B +poshed p0St Hc$,Hd$ 115B +posher 'p0S@R Or% 2 +poshes 'p0SIz Ha$ 215B +poshest 'p0SIst Os% 2 +poshing 'p0SIN Hb$ 215B +posies 'p@UzIz Kj% 2 +posing 'p@UzIN Jb% 22A,2C,3A,6A +posit 'p0zIt H0$ 26A +posited 'p0zItId Hc$,Hd$ 36A +positing 'p0zItIN Hb$ 36A +position p@'zISn H0%,M6% 36A +positioned p@'zISnd Hc%,Hd% 36A +positioning p@'zISnIN Hb% 46A +positions p@'zISnz Ha%,Mj% 36A +positive 'p0z@tIv K6%,OA% 3 +positively 'p0z@tIvlI Pu% 4 +positiveness 'p0z@tIvn@s L@% 4 +positives 'p0z@tIvz Kj% 3 +positivism 'p0zItIvIz@m L@% 5 +positivist 'p0sItIvIst K6% 4 +positivists 'p0sItIvIsts Kj% 4 +posits 'p0zIts Ha$ 26A +posse 'p0sI K6$ 2 +posses 'p0sIz Kj$ 2 +possess p@'zes H1% 26A +possessed p@'zest Hc%,Hd% 26A +possesses p@'zesIz Ha% 36A +possessing p@'zesIN Hb% 36A +possession p@'zeSn M6% 3 +possessions p@'zeSnz Mj% 3 +possessive p@'zesIv OA% 3 +possessively p@'zesIvlI Pu% 4 +possessiveness p@'zesIvnIs L@% 4 +possessor p@'zes@R K6% 3 +possessors p@'zes@z Kj% 3 +posset 'p0sIt K6$ 2 +possets 'p0sIts Kj$ 2 +possibilities ,p0s@'bIlItIz Mj% 5 +possibility ,p0s@'bIlItI M8% 5 +possible 'p0s@bl K6%,OA* 3 +possibles 'p0s@blz Kj% 3 +possibly 'p0s@blI Pu% 3 +possum 'p0s@m K6$ 2 +possums 'p0s@mz Kj$ 2 +post p@Ust J0%,M6% 13A,6A,15A,15B +post meridiem ,p@Ust m@'rIdI@m Pu$ 5 +post- p@Ust- U-% 1 +post-chaise p@Ust-'SeIz K6$ 2 +post-chaises p@Ust-'SeIzIz Kj$ 3 +post-free p@Ust-'fri OA%,Pu% 2 +post-haste p@Ust-'heIst Pu% 2 +post-horse 'p@Ust-hOs K6$ 2 +post-horses 'p@Ust-hOsIz Kj$ 3 +post-mortem ,p@Ust-'mOt@m K6%,OA% 3 +post-mortems ,p@Ust-'mOt@mz Kj% 3 +post-paid p@Ust-'peId OA%,Pu% 2 +postage 'p@UstIdZ L@% 2 +postage-stamp 'p@UstIdZ-st&mp K6% 3 +postage-stamps 'p@UstIdZ-st&mps Kj% 3 +postal 'p@Ustl OA% 2 +postbag 'p@Ustb&g K6% 2 +postbags 'p@Ustb&gz Kj% 2 +postbox 'p@Ustb0ks K7% 2 +postboxes 'p@Ustb0ksIz Kj% 3 +postcard 'p@UstkAd K6% 2 +postcards 'p@UstkAdz Kj% 2 +postcode 'p@Ustk@Ud K6% 2 +postcodes 'p@Ustk@Udz Kj% 2 +postdate ,p@Ust'deIt H2% 26A +postdated ,p@Ust'deItId Hc%,Hd% 36A +postdates ,p@Ust'deIts Ha% 26A +postdating ,p@Ust'deItIN Hb% 36A +poste restante ,p@Ust 'restAnt L@% 3 +posted 'p@UstId Jc%,Jd% 23A,6A,15A,15B +poster 'p@Ust@R K6% 2 +posterior p0'stI@rI@R K6%,OA% 4 +posteriors p0'stI@rI@z Kj% 4 +posterity p0'sterItI L@% 4 +postern 'p0st@n K6$ 2 +posterns 'p0st@nz Kj$ 2 +posters 'p@Ust@z Kj% 2 +postgraduate ,p@Ust'gr&dZU@t K6%,OA% 4 +postgraduates ,p@Ust'gr&dZU@ts Kj% 4 +posthumous 'p0stjUm@s OA% 3 +posthumously 'p0stjUm@slI Pu% 4 +postilion p0'stIlI@n K6$ 4 +postilions p0'stIlI@nz Kj$ 4 +postillion p0'stIlI@n K6$ 4 +postillions p0'stIlI@nz Kj$ 4 +posting 'p@UstIN Jb% 23A,6A,15A,15B +postman 'p@Ustm@n Ki% 2 +postmark 'p@UstmAk H0%,K6% 2 +postmarked 'p@UstmAkt Hc%,Hd% 2 +postmarking 'p@UstmAkIN Hb% 3 +postmarks 'p@UstmAks Ha%,Kj% 2 +postmaster 'p@UstmAst@R K6% 3 +postmasters 'p@UstmAst@z Kj% 3 +postmen 'p@Ustm@n Kj% 2 +postmistress 'p@UstmIstrIs K7% 3 +postmistresses 'p@UstmIstrIsIz Kj% 4 +postpone p@'sp@Un H2% 26A,6C +postponed p@'sp@Und Hc%,Hd% 26A,6C +postponement p@'sp@Unm@nt M6% 3 +postponements p@'sp@Unm@nts Mj% 3 +postpones p@'sp@Unz Ha% 26A,6C +postponing p@'sp@UnIN Hb% 36A,6C +postprandial ,p@Ust'pr&ndI@l OA$ 4 +posts p@Usts Ja%,Mj% 13A,6A,15A,15B +postscript 'p@Us+skrIpt K6% 2 +postscripts 'p@Us+skrIpts Kj% 2 +postulant 'p0stjUl@nt K6$ 3 +postulants 'p0stjUl@nts Kj$ 3 +postulate 'p0stjUleIt H2%,K6% 36A +postulated 'p0stjUleItId Hc%,Hd% 46A +postulates 'p0stjUleIts Ha%,Kj% 36A +postulating 'p0stjUleItIN Hb% 46A +postural 'p0stS@r@l OA% 3 +posture 'p0stS@R J2%,M6% 22A,6A +postured 'p0stS@d Jc%,Jd% 22A,6A +postures 'p0stS@z Ja%,Mj% 22A,6A +posturing 'p0stS@rIN Jb%,M6% 32A,6A +posturings 'p0stS@rINz Mj% 3 +posy 'p@UzI K8% 2 +pot p0t J4%,K6% 13A,6A,15B +pot-shot 'p0t-S0t K6% 2 +pot-shots 'p0t-S0ts Kj% 2 +pot-trained 'p0t-treInd OA% 2 +potable 'p@Ut@bl OA$ 3 +potash 'p0t&S L@% 2 +potassium p@'t&sI@m L@% 4 +potation p@U'teISn K6$ 3 +potations p@U'teISnz Kj$ 3 +potato p@'teIt@U K7% 3 +potatoes p@'teIt@Uz Kj% 3 +potbellied p0t'belId OA% 3 +potbellies p0t'belIz Kj% 3 +potbelly p0t'belI K8% 3 +potboiler 'p0tboIl@R K6% 3 +potboilers 'p0tboIl@z Kj% 3 +potbound 'p0tbaUnd OA$ 2 +potboy 'p0tboI K6$ 2 +potboys 'p0tboIz Kj$ 2 +poteen p0'tin L@$ 2 +potencies 'p@UtnsIz Mj$ 3 +potency 'p@UtnsI M8% 3 +potent 'p@Utnt OA% 2 +potentate 'p@UtnteIt K6% 3 +potentates 'p@UtnteIts Kj% 3 +potential p@'tenSl M6%,OA% 3 +potentialities p@,tenSI'&lItIz Mj% 6 +potentiality p@,tenSI'&lItI M8% 6 +potentially p@'tenS@lI Pu% 4 +potentials p@'tenSlz Mj% 3 +potently 'p@UtntlI Pu% 3 +pothead 'p0thed K6$ 2 +potheads 'p0thedz Kj$ 2 +pother 'p0D@R K6$ 2 +potherb 'p0th3b K6$ 2 +potherbs 'p0th3bz Kj$ 2 +pothers 'p0D@z Kj$ 2 +pothole 'p0th@Ul K6% 2 +potholer 'p0th@Ul@R K6% 3 +potholers 'p0th@Ul@z Kj% 3 +potholes 'p0th@Ulz Kj% 2 +pothook 'p0thUk K6$ 2 +pothooks 'p0thUks Kj$ 2 +pothouse 'p0thaUs K6$ 2 +pothouses 'p0thaUzIz Kj$ 3 +pothunter 'p0thVnt@R K6$ 3 +pothunters 'p0thVnt@z Kj$ 3 +potion 'p@USn K6% 2 +potions 'p@USnz Kj% 2 +potman 'p0tm&n Ki$ 2 +potmen 'p0tmen Kj$ 2 +potpourri ,p@U'pU@ri K6% 3 +potpourris ,p@U'pU@riz Kj$ 3 +pots p0ts Ja%,Kj% 13A,6A,15B +potsherd 'p0t+S3d K6$ 2 +potsherds 'p0t+S3dz Kj$ 2 +pottage 'p0tIdZ M6$ 2 +pottages 'p0tIdZIz Mj$ 3 +potted 'p0tId Jc%,Jd%,OA% 23A,6A,15B +potter 'p0t@R I0%,K6% 22A,2C +pottered 'p0t@d Ic%,Id% 22A,2C +potterer 'p0t@r@R K6% 3 +potterers 'p0t@r@z Kj% 3 +potteries 'p0t@rIz Mj% 3 +pottering 'p0t@rIN Ib% 32A,2C +potters 'p0t@z Ia%,Kj% 22A,2C +pottery 'p0t@rI M8% 3 +pottier 'p0tI@R Or% 3 +potties 'p0tIz Kj% 2 +pottiest 'p0tIIst Os% 3 +potting 'p0tIN Jb% 23A,6A,15B +potty 'p0tI K8%,OD% 2 +pouch paUtS H1%,K7% 12A,6A +pouched paUtSt Hc%,Hd% 12A,6A +pouches 'paUtSIz Ha%,Kj% 22A,6A +pouching 'paUtSIN Hb% 22A,6A +pouf puf K6$ 1 +pouffe puf K6$ 1 +pouffes pufs Kj$ 1 +poufs pufs Kj$ 1 +poulterer 'p@Ult@r@R K6% 3 +poulterers 'p@Ult@r@z Kj% 3 +poultice 'p@UltIs H2$,K6% 26A +poulticed 'p@UltIst Hc$,Hd$ 26A +poultices 'p@UltIsIz Ha$,Kj% 36A +poulticing 'p@UltIsIN Hb$ 36A +poultry 'p@UltrI Kj% 2 +pounce paUns I2%,K6% 13A +pounced paUnst Ic%,Id% 13A +pounces 'paUnsIz Ia%,Kj% 23A +pouncing 'paUnsIN Ib% 23A +pound paUnd J0%,K6% 12C,3A,6A,15A +poundage 'paUndIdZ L@% 2 +pounded 'paUndId Jc%,Jd% 22C,3A,6A,15A +pounder 'paUnd@R K6$ 2 +pounders 'paUnd@z Kj$ 2 +pounding 'paUndIN Jb% 22C,3A,6A,15A +pounds paUndz Ja%,Kj% 12C,3A,6A,15A +pour pOR J0% 12C,6A,12B,13B,14,15A,15B +poured pOd Jc%,Jd% 12C,6A,12B,13B,14,15A,15B +pouring 'pOrIN Jb% 22C,6A,12B,13B,14,15A,15B +pours pOz Ja% 12C,6A,12B,13B,14,15A,15B +pout paUt J0%,K6% 12A,6A +pouted 'paUtId Jc%,Jd% 22A,6A +pouting 'paUtIN Jb% 22A,6A +poutingly 'paUtINlI Pu% 3 +pouts paUts Ja%,Kj% 12A,6A +poverty 'p0v@tI L@% 3 +poverty-stricken 'p0v@tI-strIk@n OA% 5 +powder 'paUd@R J0%,M6% 22A,6A +powder-flask 'paUd@-flAsk K6% 3 +powder-flasks 'paUd@-flAsks Kj% 3 +powder-horn 'paUd@-hOn K6% 3 +powder-horns 'paUd@-hOnz Kj% 3 +powder-magazine 'paUd@-m&g@zin K6% 5 +powder-magazines 'paUd@-m&g@zinz Kj% 5 +powder-puff 'paUd@-pVf K6% 3 +powder-puffs 'paUd@-pVfs Kj% 3 +powder-room 'paUd@-rum K6% 3 +powder-rooms 'paUd@-rumz Kj% 3 +powdered 'paUd@d Jc%,Jd%,OA% 22A,6A +powdering 'paUd@rIN Jb% 32A,6A +powders 'paUd@z Ja%,Mj% 22A,6A +powdery 'paUd@rI OA% 3 +power 'paU@R H0%,M6* 26A +power-dive 'paU@-daIv H2$,K6% 3 +power-dived 'paU@-daIvd Hc$,Hd$ 3 +power-dives 'paU@-daIvz Ha$,Kj$ 3 +power-diving 'paU@-daIvIN Hb$ 4 +power-point 'paU@-poInt K6% 3 +power-points 'paU@-poInts Kj% 3 +power-station 'paU@-steISn K6% 4 +power-stations 'paU@-steISnz Kj% 4 +powerboat 'paU@b@Ut K6% 3 +powerboats 'paU@b@Uts Kj% 3 +powered 'paU@d Hc%,Hd%,OA% 26A +powerful 'paU@f@l OA% 3 +powerfully 'paU@f@lI Pu% 4 +powerhouse 'paU@haUs K6% 3 +powerhouses 'paU@haUzIz Kj% 4 +powering 'paU@rIN Hb% 36A +powerless 'paU@lIs OA% 3 +powerlessly 'paU@lIslI Pu% 4 +powers 'paU@z Ha%,Mj% 26A +powwow 'paUwaU I0$,K6$ 2 +powwowed 'paUwaUd Ic$,Id$ 2 +powwowing 'paUwaUIN Ib$ 3 +powwows 'paUwaUz Ia$,Kj$ 2 +pox p0ks Ki% 1 +pp 'peIdZIz Y)% 2 +pr_ecis 'preIsi H5%,K9% 2 +practicability ,pr&ktIk@'bIlItI L@% 6 +practicable 'pr&ktIk@bl OA% 4 +practicably 'pr&ktIk@blI Pu% 4 +practical 'pr&ktIkl OA% 3 +practicalities ,pr&ktI'k&lItIz Mj% 5 +practicality ,pr&ktI'k&lItI M8% 5 +practically 'pr&ktIklI Pu% 3 +practice 'pr&ktIs M6% 2 +practices 'pr&ktIsIz Mj% 3 +practician pr&k'tISn K6$ 3 +practicians pr&k'tISnz Kj$ 3 +practise 'pr&ktIs J2% 22A,2B,3A,4A,6A,6C +practised 'pr&ktIst Jc%,Jd%,OA% 22A,2B,3A,4A,6A,6C +practises 'pr&ktIsIz Ja% 32A,2B,3A,4A,6A,6C +practising 'pr&ktIsIN Jb% 32A,2B,3A,4A,6A,6C +practitioner pr&k'tIS@n@R K6% 4 +practitioners pr&k'tIS@n@z Kj% 4 +praesidium prI'sIdI@m K6$ 4 +praesidiums prI'sIdI@mz Kj$ 4 +praetor 'prit@R K6$ 2 +praetorian prI'tOrI@n OA$ 4 +praetors 'prit@z Kj$ 2 +pragmatic pr&g'm&tIk OA% 3 +pragmatically pr&g'm&tIklI Pu% 4 +pragmatism 'pr&gm@tIz@m L@% 4 +pragmatist 'pr&gm@tIst K6% 3 +pragmatists 'pr&gm@tIsts Kj% 3 +prairie 'pre@rI K6% 2 +prairies 'pre@rIz Kj% 2 +praise preIz H2%,M6% 16A +praised preIzd Hc%,Hd% 16A +praises 'preIzIz Ha%,Mj% 26A +praiseworthily 'preIzw3DIlI Pu% 4 +praiseworthiness 'preIzw3DIn@s L@% 4 +praiseworthy 'preIzw3DI OA% 3 +praising 'preIzIN Hb% 26A +pram pr&m K6% 1 +prams pr&mz Kj% 1 +prance prAns I2%,K6% 12A,2C +pranced prAnst Ic%,Id% 12A,2C +prances 'prAnsIz Ia%,Kj% 22A,2C +prancing 'prAnsIN Ib% 22A,2C +prank pr&Nk K6% 1 +pranks pr&Nks Kj% 1 +prate preIt I2$ 12A,2C +prated 'preItId Ic$,Id$ 22A,2C +prates preIts Ia$ 12A,2C +prating 'preItIN Ib$ 22A,2C +prattle 'pr&tl I2%,L@% 22A,2C +prattled 'pr&tld Ic%,Id% 22A,2C +prattler 'pr&tl@R K6% 2 +prattlers 'pr&tl@z Kj% 2 +prattles 'pr&tlz Ia% 22A,2C +prattling 'pr&tlIN Ib% 22A,2C +prawn prOn I0$,K6% 1 +prawned prOnd Ic$,Id$ 1 +prawning 'prOnIN Ib$ 2 +prawns prOnz Ia$,Kj% 1 +pray preI J0% 12A,3A,11,14,17 +prayed preId Jc%,Jd% 12A,3A,11,14,17 +prayer pre@R M6% 1 +prayer-book 'pre@-bUk K6% 2 +prayer-books 'pre@-bUks Kj% 2 +prayer-mat 'pre@-m&t K6% 2 +prayer-mats 'pre@-m&ts Kj% 2 +prayer-meeting 'pre@-mitIN K6% 3 +prayer-meetings 'pre@-mitINz Kj% 3 +prayer-rug 'pre@-rVg K6% 2 +prayer-rugs 'pre@-rVgz Kj% 2 +prayer-wheel 'pre@-wil K6% 2 +prayer-wheels 'pre@-wilz Kj% 2 +prayers pre@z Mj% 1 +praying 'preIIN Jb% 22A,3A,11,14,17 +prays preIz Ja% 12A,3A,11,14,17 +pre- pri- U-% 1 +pre-eminence pri-'emIn@ns L@% 4 +pre-eminent ,pri-'emIn@nt OA% 4 +pre-eminently ,pri-'emIn@ntlI Pu% 5 +pre-empt ,pri-'empt H0% 26A +pre-empted ,pri-'emptId Hc%,Hd% 36A +pre-empting ,pri-'emptIN Hb% 36A +pre-emption ,pri-'empSn L@% 3 +pre-emptive pri-'emptIv OA% 3 +pre-empts ,pri-'empts Ha% 26A +pre-exist ,pri-Ig'zIst I0% 32A +pre-existed ,pri-Ig'zIstId Ic%,Id% 42A +pre-existence ,pri-Ig'zIst@ns K6% 4 +pre-existences ,pri-Ig'zIst@nsIz Kj$ 5 +pre-existent ,pri-Ig'zIst@nt OA% 4 +pre-existing ,pri-Ig'zIstIN Ib% 42A +pre-exists ,pri-Ig'zIsts Ia% 32A +pre-packaged ,pri-'p&kIdZd OA% 3 +preach pritS J1% 12A,2B,2C,3A,6A,12A,13A +preached pritSt Jc%,Jd% 12A,2B,2C,3A,6A,12A,13A +preacher 'pritS@R K6% 2 +preachers 'pritS@z Kj% 2 +preaches 'pritSIz Ja% 22A,2B,2C,3A,6A,12A,13A +preachified 'pritSIfaId Ic$,Id$ 3 +preachifies 'pritSIfaIz Ia$ 3 +preachify 'pritSIfaI I3$ 3 +preachifying 'pritSIfaIIN Ib$ 4 +preaching 'pritSIN Jb% 22A,2B,2C,3A,6A,12A,13A +preamble pri'&mbl K6% 3 +preambles pri'&mblz Kj% 3 +prearrange ,pri@'reIndZ H2% 3 +prearranged ,pri@'reIndZd Hc%,Hd% 3 +prearrangement ,pri@'reIndZm@nt K6% 4 +prearrangements ,pri@'reIndZm@nts Kj% 4 +prearranges ,pri@'reIndZIz Ha% 4 +prearranging ,pri@'reIndZIN Hb% 4 +prebend 'preb@nd K6$ 2 +prebendaries 'preb@ndrIz Kj$ 3 +prebendary 'preb@ndrI K8$ 3 +prebends 'preb@ndz Kj$ 2 +precarious prI'ke@rI@s OA% 4 +precariously prI'ke@rI@slI Pu% 5 +precariousness prI'ke@rI@snIs L@% 5 +precast ,pri'kAst OA% 2 +precaution prI'kOSn M6% 3 +precautionary ,prI'kOS@n@rI OA% 5 +precautions prI'kOSnz Mj% 3 +precede prI'sid J2% 22A,6A +preceded prI'sidId Jc%,Jd% 32A,6A +precedence 'presId@ns L@% 3 +precedent 'presId@nt K6% 3 +precedented 'presId@ntId OA% 4 +precedents 'presId@nts Kj% 3 +precedes prI'sidz Ja% 22A,6A +preceding prI'sidIN Jb%,OA% 32A,6A +precentor prI'sent@R K6$ 3 +precentors prI'sent@z Kj$ 3 +precept 'prisept M6% 2 +preceptor prI'sept@R K6$ 3 +preceptors prI'sept@z Kj$ 3 +precepts 'prisepts Mj% 2 +precession prI'seSn K6$ 3 +precessions prI'seSnz Kj$ 3 +precinct 'prisINkt K6% 2 +precincts 'prisINkts Kj% 2 +preciosities ,preSI'0sItIz Mj$ 5 +preciosity ,preSI'0sItI M8$ 5 +precious 'preS@s OA%,Pu% 2 +preciously 'preS@slI Pu% 3 +preciousness 'preS@sn@s L@% 3 +precipice 'presIpIs K6% 3 +precipices 'presIpIsIz Kj% 4 +precipitate prI'sIpIt@t OA% 4 +precipitate prI'sIpIteIt H2%,K6% 46A,14 +precipitated prI'sIpIteItId Hc%,Hd% 56A,14 +precipitately prI'sIpIt@tlI Pu% 5 +precipitates prI'sIpIteIts Ha%,Kj% 46A,14 +precipitating prI'sIpIteItIN Hb% 56A,14 +precipitation prI,sIpI'teISn L@% 5 +precipitous prI'sIpIt@s OA% 4 +precipitously prI'sIpIt@slI Pu% 5 +precise prI'saIs OA% 2 +precised 'preIsid Hc$,Hd$ 2 +precisely prI'saIslI Pu% 3 +preciseness prI'saIsn@s L@% 3 +precises 'preIsiz Ha$ 2 +precising 'preIsiIN Hb$ 3 +precision prI'sIZn L@% 3 +preclude prI'klud H2% 26A,6C,14 +precluded prI'kludId Hc%,Hd% 36A,6C,14 +precludes prI'kludz Ha% 26A,6C,14 +precluding prI'kludIN Hb% 36A,6C,14 +preclusion prI'kluZn K6$ 3 +preclusions prI'kluZnz Kj$ 3 +precocious prI'k@US@s OA% 3 +precociously prI'k@US@slI Pu% 4 +precociousness prI'k@US@sn@s L@% 4 +precocity prI'k0sItI L@% 4 +precognition ,prik0g'nISn L@% 4 +preconceive ,prik@n'siv H2% 36A +preconceived ,prik@n'sivd Hc%,Hd% 36A +preconceives ,prik@n'sivz Ha% 36A +preconceiving ,prik@n'sivIN Hb% 46A +preconception ,prik@n'sepSn M6% 4 +preconceptions ,prik@n'sepSnz Mj% 4 +preconcerted ,prik@n's3tId OA$ 4 +precondition ,prik@n'dISn K6% 4 +preconditioned ,prik@n'dISnd OA% 4 +preconditions ,prik@n'dISnz Kj% 4 +precursor ,pri'k3s@R K6% 3 +precursors ,pri'k3s@z Kj% 3 +precursory ,pri'k3s@rI OA$ 4 +predator 'pred@t@R K6% 3 +predators 'pred@t@z Kj% 3 +predatory 'pred@trI OA% 3 +predecease ,pridI'sis H2$ 3 +predeceased ,pridI'sist Hc$,Hd$ 3 +predeceases ,pridI'sisIz Ha$ 4 +predeceasing ,pridI'sisIN Hb$ 4 +predecessor 'pridIses@R K6% 4 +predecessors 'pridIses@z Kj% 4 +predestinate ,pri'destIneIt H2$,OA$ 4 +predestinated ,pri'destIneItId Hc$,Hd$ 5 +predestinates ,pri'destIneIts Ha$ 4 +predestinating ,pri'destIneItIN Hb$ 5 +predestination ,pridestI'neISn K6$ 5 +predestinations ,pridestI'neISnz Kj$ 5 +predestine ,pri'destIn H2% 314,17 +predestined ,pri'destInd Hc%,Hd% 314,17 +predestines ,pri'destInz Ha% 314,17 +predestining ,pri'destInIN Hb% 414,17 +predetermination ,pridI,t3mI'neISn K6$ 6 +predeterminations ,pridI,t3mI'neISnz Kj$ 6 +predetermine ,pridI't3mIn H2% 46A,17 +predetermined ,pridI't3mInd Hc%,Hd% 46A,17 +predetermines ,pridI't3mInz Ha% 46A,17 +predetermining ,pridI't3mInIN Hb% 56A,17 +predicament prI'dIk@m@nt K6% 4 +predicaments prI'dIk@m@nts Kj% 4 +predicate 'predIk@t K6% 3 +predicate 'predIkeIt H2$ 36A,9,17 +predicated 'predIkeItId Hc$,Hd% 46A,9,17 +predicates 'predIk@ts Kj% 3 +predicates 'predIkeIts Ha$ 36A,9,17 +predicating 'predIkeItIN Hb$ 46A,9,17 +predicative prI'dIk@tIv OA% 4 +predict prI'dIkt H0% 26A,9,10 +predictability prI,dIkt@'bIlItI L@% 6 +predictable prI'dIkt@bl OA% 4 +predictably prI'dIkt@blI Pu% 4 +predicted prI'dIktId Hc%,Hd% 36A,9,10 +predicting prI'dIktIN Hb% 36A,9,10 +prediction prI'dIkSn M6% 3 +predictions prI'dIkSnz Mj% 3 +predictor prI'dIkt@R K6% 3 +predictors prI'dIkt@z Kj% 3 +predicts prI'dIkts Ha% 26A,9,10 +predigest ,pridaI'dZest H0$ 3 +predigested ,pridaI'dZestId Hc$,Hd% 4 +predigesting ,pridaI'dZestIN Hb$ 4 +predigests ,pridaI'dZests Ha$ 3 +predilection ,pridI'lekSn K6% 4 +predilections ,pridI'lekSnz Kj% 4 +predispose ,pridI'sp@Uz H2% 314,17 +predisposed ,pridI'sp@Uzd Hc%,Hd% 314,17 +predisposes ,pridI'sp@UzIz Ha% 414,17 +predisposing ,pridI'sp@UzIN Hb% 414,17 +predisposition ,pridIsp@'zISn K6% 5 +predispositions ,pridIsp@'zISnz Kj% 5 +predominance prI'd0mIn@ns L@% 4 +predominant prI'd0mIn@nt OA% 4 +predominantly prI'd0mIn@ntlI Pu% 5 +predominate prI'd0mIneIt I2% 42A,3A +predominated prI'd0mIneItId Ic%,Id% 52A,3A +predominates prI'd0mIneIts Ia% 42A,3A +predominating prI'd0mIneItIN Ib% 52A,3A +preen prin H0% 16A,14 +preened prind Hc%,Hd% 16A,14 +preening 'prinIN Hb% 26A,14 +preens prinz Ha% 16A,14 +prefab 'prif&b K6% 2 +prefabricate ,pri'f&brIkeIt H2% 46A +prefabricated ,pri'f&brIkeItId Hc%,Hd% 56A +prefabricates ,pri'f&brIkeIts Ha% 46A +prefabricating ,pri'f&brIkeItIN Hb% 56A +prefabrication ,prif&brI'keISn K6% 5 +prefabrications ,prif&brI'keISnz Kj$ 5 +prefabs 'prif&bz Kj% 2 +preface 'prefIs H2%,K6% 214 +prefaced 'prefIst Hc%,Hd% 214 +prefaces 'prefIsIz Ha%,Kj% 314 +prefacing 'prefIsIN Hb% 314 +prefatory 'pref@trI OA% 3 +prefect 'prifekt K6% 2 +prefects 'prifekts Kj% 2 +prefectural pri'fektS@r@l OA$ 4 +prefecture 'prifektjU@R K6% 3 +prefectures 'prifektjU@z Kj% 3 +prefer prI'f3R H4% 26A,6D,7A,9,14,17 +preferable 'prefr@bl OA% 3 +preferably 'prefr@blI Pu% 3 +preference 'prefr@ns M6% 2 +preferences 'prefr@nsIz Mj% 3 +preferential ,pref@'renSl OA% 4 +preferment prI'f3m@nt L@% 3 +preferred prI'f3d Hc%,Hd% 26A,6D,7A,9,14,17 +preferring prI'f3rIN Hb% 36A,6D,7A,9,14,17 +prefers prI'f3z Ha% 26A,6D,7A,9,14,17 +prefigure ,pri'fIg@R H2$ 36A,9,10 +prefigured ,pri'fIg@d Hc$,Hd$ 36A,9,10 +prefigures ,pri'fIg@z Ha$ 36A,9,10 +prefiguring ,pri'fIg@rIN Hb$ 46A,9,10 +prefix 'prifIks K7% 2 +prefix ,pri'fIks H1% 26A,14 +prefixed ,pri'fIkst Hc%,Hd% 26A,14 +prefixes 'prifIksIz Kj% 3 +prefixes ,pri'fIksIz Ha$ 36A,14 +prefixing ,pri'fIksIN Hb$ 36A,14 +pregnancies 'pregn@nsIz Mj% 3 +pregnancy 'pregn@nsI M8% 3 +pregnant 'pregn@nt OA% 2 +preheat ,pri'hit H0% 26A +preheated ,pri'hitId Hc%,Hd% 36A +preheating ,pri'hitIN Hb% 36A +preheats ,pri'hits Ha% 26A +prehensile ,pri'hensaIl OA% 3 +prehistoric ,prihI'st0rIk OA% 4 +prehistorical ,prihI'st0rIkl OA$ 5 +prehistories ,pri'hIstrIz Mj$ 3 +prehistory ,pri'hIstrI M8% 3 +prejudge ,pri'dZVdZ H2% 26A +prejudged ,pri'dZVdZd Hc%,Hd% 26A +prejudgement ,pri'dZVdZm@nt K6% 3 +prejudgements ,pri'dZVdZm@nts Kj% 3 +prejudges ,pri'dZVdZIz Ha% 36A +prejudging ,pri'dZVdZIN Hb% 36A +prejudice 'predZUdIs H2%,M6% 36A,15A +prejudiced 'predZUdIst Hc%,Hd% 36A,15A +prejudices 'predZUdIsIz Ha%,Mj% 46A,15A +prejudicial ,predZU'dISl OA% 4 +prejudicing 'predZUdIsIN Hb% 46A,15A +prelacies 'prel@sIz Kj$ 3 +prelacy 'prel@sI K8$ 3 +prelate 'prel@t K6% 2 +prelates 'prel@ts Kj% 2 +prelim prI'lIm K6$ 2 +preliminaries prI'lImIn@rIz Kj% 5 +preliminary prI'lImIn@rI K8%,OA% 5 +prelims prI'lImz Kj$ 2 +prelude 'preljud H2$,K6% 26A +preluded 'preljudId Hc$,Hd$ 36A +preludes 'preljudz Ha$,Kj% 26A +preluding 'preljudIN Hb$ 36A +premarital ,pri'm&rItl OA% 4 +premature 'prem@tjU@R OA% 3 +prematurely ,prem@'tjU@lI Pu% 4 +premeditate ,pri'medIteIt H2% 46A +premeditated ,pri'medIteItId Hc%,Hd% 56A +premeditates ,pri'medIteIts Ha% 46A +premeditating ,pri'medIteItIN Hb% 56A +premeditation ,primedI'teISn L@% 5 +premi`ere 'premIe@R K6% 3 +premi`eres 'premIe@z Kj% 3 +premier 'premI@R K6%,OA% 3 +premiers 'premI@z Kj% 3 +premiership 'premI@SIp K6% 4 +premierships 'premI@SIps Kj% 4 +premise 'premIs H2$,K6% 26A,9 +premised 'premIst Hc$,Hd$ 26A,9 +premises 'premIsIz Ha$,Kj% 36A,9 +premising 'premIsIN Hb$ 36A,9 +premiss 'premIs H1$,K7$ 26A,9 +premissed 'premIst Hc$,Hd$ 26A,9 +premisses 'premIsIz Ha$,Kj$ 36A,9 +premissing 'premIsIN Hb$ 36A,9 +premium 'primI@m K6% 3 +premiums 'primI@mz Kj% 3 +premonition ,prim@'nISn K6% 4 +premonitions ,prim@'nISnz Kj% 4 +premonitory prI'm0nIt@rI OA$ 5 +prenatal ,pri'neItl OA% 3 +prentice 'prentIs K6$ 2 +prentices 'prentIsIz Kj$ 3 +preoccupation pri,0kjU'peISn M6% 5 +preoccupations pri,0kjU'peISnz Mj% 5 +preoccupied pri'0kjUpaId Hc%,Hd% 46A +preoccupies pri'0kjUpaIz Ha% 46A +preoccupy pri'0kjUpaI H3% 46A +preoccupying pri'0kjUpaIIN Hb% 56A +preordain ,priO'deIn H0% 36A,9 +preordained ,priO'deInd Hc%,Hd% 36A,9 +preordaining ,priO'deInIN Hb% 46A,9 +preordains ,priO'deInz Ha% 36A,9 +prep prep M6$ 1 +prepacked ,pri'p&kt OA% 2 +prepaid ,pri'peId Hc%,Hd% 26A +preparation ,prep@'reISn M6% 4 +preparations ,prep@'reISnz Mj% 4 +preparatory prI'p&r@trI OA% 4 +prepare prI'pe@R J2% 23A,6A,7A,14 +prepared prI'pe@d Jc%,Jd% 23A,6A,7A,14 +preparedness prI'pe@rIdn@s L@% 4 +prepares prI'pe@z Ja% 23A,6A,7A,14 +preparing prI'pe@rIN Jb% 33A,6A,7A,14 +prepay ,pri'peI H5% 26A +prepaying ,pri'peIIN Hb% 36A +prepays ,prI'peIz Ha% 26A +preponderance prI'p0nd@r@ns K6% 4 +preponderances prI'p0nd@r@nsIz Kj$ 5 +preponderant prI'p0nd@r@nt OA% 4 +preponderantly prI'p0nd@r@ntlI Pu% 5 +preponderate prI'p0nd@reIt I2$ 42A,2C +preponderated prI'p0nd@reItId Ic$,Id$ 52A,2C +preponderates prI'p0nd@reIts Ia$ 42A,2C +preponderating prI'p0nd@reItIN Ib$ 52A,2C +preposition ,prep@'zISn K6% 4 +prepositional ,prep@'zIS@nl OA% 5 +prepositions ,prep@'zISnz Kj% 4 +prepossess ,prip@'zes H1$ 36A,15A +prepossessed ,prip@'zest Hc$,Hd$ 36A,15A +prepossesses ,prip@'zesIz Ha$ 46A,15A +prepossessing ,prip@'zesIN Hb$,OA% 46A,15A +prepossession ,prip@'zeSn K6$ 4 +prepossessions ,prip@'zeSnz Kj$ 4 +preposterous prI'p0st@r@s OA% 4 +preposterously prI'p0st@r@slI Pu% 5 +preps preps Mj$ 1 +prepuce 'pripjus K6$ 2 +prepuces 'pripjusIz Kj$ 3 +prerecord ,prirI'kOd H0% 36A +prerecorded ,prirI'kOdId Hc%,Hd% 46A +prerecording ,prirI'kOdIN Hb% 46A +prerecords ,prirI'kOdz Ha% 36A +prerequisite ,pri'rekwIzIt K6%,OA% 4 +prerequisites ,pri'rekwIzIts Kj% 4 +prerogative prI'r0g@tIv K6% 4 +prerogatives prI'r0g@tIvz Kj% 4 +presage 'presIdZ K6$ 2 +presage prI'seIdZ H2$ 26A +presaged prI'seIdZd Hc$,Hd$ 26A +presages 'presIdZIz Kj$ 3 +presages prI'seIdZIz Ha$ 36A +presaging prI'seIdZIN Hb$ 36A +presbyter 'prezbIt@R K6$ 3 +presbyteries 'prezbItrIz Kj$ 3 +presbyters 'prezbIt@z Kj$ 3 +presbytery 'prezbItrI K8% 3 +prescience 'presI@ns L@$ 3 +prescient 'presI@nt OA$ 3 +presciently 'presI@ntlI Pu$ 4 +prescribe prI'skraIb J2% 22A,3A,6A,8,10,14,21 +prescribed prI'skraIbd Jc%,Jd% 22A,3A,6A,8,10,14,21 +prescribes prI'skraIbz Ja% 22A,3A,6A,8,10,14,21 +prescribing prI'skraIbIN Jb% 32A,3A,6A,8,10,14,21 +prescript 'priskrIpt K6$ 2 +prescription prI'skrIpSn M6% 3 +prescriptions prI'skrIpSnz Mj% 3 +prescriptive prI'skrIptIv OA% 3 +prescripts 'priskrIpts Kj$ 2 +presence 'prezns L@% 2 +present 'preznt K6*,OA* 2 +present prI'zent H0%,Ki% 26A,14,15A +present-day ,preznt-'deI Oq% 3 +presentable prI'zent@bl OA% 4 +presentably prI'zent@blI Pu% 4 +presentation ,prezn'teISn M6% 4 +presentations ,prezn'teISnz Mj% 4 +presented prI'zentId Hc%,Hd% 36A,14,15A +presentiment prI'zentIm@nt K6% 4 +presentiments prI'zentIm@nts Kj% 4 +presenting prI'zentIN Hb% 36A,14,15A +presently 'prezntlI Pu% 3 +presents 'preznts Kj% 2 +presents prI'zents Ha% 26A,14,15A +preservable prI'z3v@bl OA% 4 +preservation ,prez@'veISn L@% 4 +preservative prI'z3v@tIv K6%,OA% 4 +preservatives prI'z3v@tIvz Kj% 4 +preserve prI'z3v H2%,K6% 26A,14 +preserved prI'z3vd Hc%,Hd% 26A,14 +preserver prI'z3v@R K6% 3 +preservers prI'z3v@z Kj% 3 +preserves prI'z3vz Ha%,Kj% 26A,14 +preserving prI'z3vIN Hb% 36A,14 +preside prI'zaId I2% 22A,2C,3A +presided prI'zaIdId Ic%,Id% 32A,2C,3A +presidencies 'prezId@nsIz Kj% 4 +presidency 'prezId@nsI K8% 4 +president 'prezId@nt K6* 3 +presidential ,prezI'denSl OA% 4 +presidents 'prezId@nts Kj% 3 +presides prI'zaIdz Ia% 22A,2C,3A +presiding prI'zaIdIN Ib% 32A,2C,3A +presidium prI'sIdI@m K6$ 4 +presidiums prI'sIdI@mz Kj$ 4 +press pres J1%,K7% 12A,2C,3A,4A,6A,14,15A,15B,17,22 +press-agencies 'pres-eIdZ@nsIz Kj% 4 +press-agency 'pres-eIdZ@nsI K8% 4 +press-agent 'pres-eIdZ@nt K6% 3 +press-agents 'pres-eIdZ@nts Kj% 3 +press-box 'pres-b0ks K7% 2 +press-boxes 'pres-b0ksIz Kj% 3 +press-clipping 'pres-klIpIN K6% 3 +press-clippings 'pres-klIpINz Kj% 3 +press-cutting 'pres-kVtIN K6% 3 +press-cuttings 'pres-kVtINz Kj% 3 +press-galleries 'pres-g&l@rIz Kj% 4 +press-gallery 'pres-g&l@rI K8% 4 +press-gang 'pres-g&N K6% 2 +press-gangs 'pres-g&Nz Kj% 2 +press-lord 'pres-lOd K6$ 2 +press-lords 'pres-lOdz Kj$ 2 +press-photographer ,pres-f@'t0gr@f@R K6% 5 +press-photographers ,pres-f@'t0gr@f@z Kj% 5 +press-stud 'pres-stVd K6% 2 +press-studs 'pres-stVdz Kj% 2 +press-up 'pres-Vp K6% 2 +press-ups 'pres-Vps Kj% 2 +pressed prest Jc%,Jd% 12A,2C,3A,4A,6A,14,15A,15B,17,22 +presses 'presIz Ja%,Kj% 22A,2C,3A,4A,6A,14,15A,15B,17,22 +pressing 'presIN Jb%,K6%,OA% 22A,2C,3A,4A,6A,14,15A,15B,17,22 +pressingly 'presINlI Pu% 3 +pressings 'presINz Kj% 2 +pressman 'presm&n Ki% 2 +pressmark 'presmAk K6$ 2 +pressmarks 'presmAks Kj$ 2 +pressmen 'presmen Kj% 2 +pressure 'preS@R M6% 2 +pressure-cooker 'preS@-kUk@R K6% 4 +pressure-cookers 'preS@-kUk@z Kj% 4 +pressure-gauge 'preS@-geIdZ K6% 3 +pressure-gauges 'preS@-geIdZIz Kj% 4 +pressures 'preS@z Mj% 2 +pressurized 'preS@raIzd OA% 3 +prestidigitation ,prestI,dIdZI'teISn M6$ 6 +prestidigitations ,prestI,dIdZI'teISnz Mj$ 6 +prestidigitator ,prestI'dIdZIteIt@R K6$ 6 +prestidigitators ,prestI'dIdZIteIt@z Kj$ 6 +prestige pre'stiZ L@% 2 +prestigious pre'stIdZ@s OA% 3 +prestissimo pre'stIsIm@U OA$,Pu$ 4 +presto 'prest@U OA$,Pu$ 2 +prestressed ,pri'strest OA% 2 +presumable prI'zjum@bl OA$ 4 +presumably prI'zjum@blI Pu% 4 +presume prI'zjum J2% 23A,6A,7A,9,25 +presumed prI'zjumd Jc%,Jd% 23A,6A,7A,9,25 +presumes prI'zjumz Ja% 23A,6A,7A,9,25 +presuming prI'zjumIN Jb%,OA% 33A,6A,7A,9,25 +presumption prI'zVmpSn M6% 3 +presumptions prI'zVmpSnz Mj$ 3 +presumptive prI'zVmptIv OA$ 3 +presumptively prI'zVmptIvlI Pu$ 4 +presumptuous prI'zVmptSU@s OA% 4 +presumptuously prI'zVmptSU@slI Pu% 5 +presuppose ,pris@'p@Uz H2% 36A,9 +presupposed ,pris@'p@Uzd Hc%,Hd% 36A,9 +presupposes ,pris@'p@UzIz Ha% 46A,9 +presupposing ,pris@'p@UzIN Hb% 46A,9 +presupposition ,prisVp@'zISn M6% 5 +presuppositions ,prisVp@'zISnz Mj% 5 +pretence prI'tens M6% 2 +pretences prI'tensIz Mj% 3 +pretend prI'tend J0% 23A,6A,7A,9 +pretended prI'tendId Jc%,Jd% 33A,6A,7A,9 +pretendedly prI'tendIdlI Pu$ 4 +pretender prI'tend@R K6% 3 +pretenders prI'tend@z Kj% 3 +pretending prI'tendIN Jb% 33A,6A,7A,9 +pretends prI'tendz Ja% 23A,6A,7A,9 +pretension prI'tenSn M6% 3 +pretensions prI'tenSnz Mj% 3 +pretentious prI'tenS@s OA% 3 +pretentiously prI'tenS@slI Pu% 4 +pretentiousness prI'tenS@sn@s L@% 4 +preterit 'pret@rIt K6$,OA$ 3 +preterite 'pret@rIt K6$,OA$ 3 +preterites 'pret@rIts Kj$ 3 +preterits 'pret@rIts Kj$ 3 +preternatural ,prit@'n&tSr@l OA% 4 +preternaturally ,prit@'n&tSr@lI Pu% 5 +pretext 'pritekst K6% 2 +pretexts 'priteksts Kj% 2 +pretor 'prit@R K6$ 2 +pretors 'prit@z Kj$ 2 +prettier 'prItI@R Or% 3 +pretties 'prItIz Kj$ 2 +prettiest 'prItIIst Os% 3 +prettified 'prItIfaId Hc%,Hd% 36A +prettifies 'prItIfaIz Ha% 36A +prettify 'prItIfaI H3% 36A +prettifying 'prItIfaIIN Hb% 46A +prettily 'prItIlI Pu% 3 +prettiness 'prItIn@s L@% 3 +pretty 'prItI K8%,OD%,Pu% 2 +pretty-pretty 'prItI-prItI OA% 4 +pretzel 'pretsl K6% 2 +pretzels 'pretslz Kj% 2 +prevail prI'veIl I0% 22A,3A +prevailed prI'veIld Ic%,Id% 22A,3A +prevailing prI'veIlIN Ib%,OA% 32A,3A +prevails prI'veIlz Ia% 22A,3A +prevalence 'prev@l@ns L@% 3 +prevalent 'prev@l@nt OA% 3 +prevaricate prI'v&rIkeIt I2% 42A +prevaricated prI'v&rIkeItId Ic%,Id% 52A +prevaricates prI'v&rIkeIts Ia% 42A +prevaricating prI'v&rIkeItIN Ib% 52A +prevarication prI,v&rI'keISn M6% 5 +prevarications prI,v&rI'keISnz Mj$ 5 +prevent prI'vent H0% 26A,14,19C +preventable prI'vent@bl OA% 4 +preventative prI'vent@tIv K6% 4 +preventatives prI'vent@tIvz Kj% 4 +prevented prI'ventId Hc%,Hd% 36A,14,19C +preventing prI'ventIN Hb% 36A,14,19C +prevention prI'venSn L@% 3 +preventive prI'ventIv OA% 3 +prevents prI'vents Ha% 26A,14,19C +preview 'privju H0%,K6% 2 +previewed 'privjud Hc%,Hd% 2 +previewing 'privjuIN Hb% 3 +previews 'privjuz Ha%,Kj% 2 +previous 'privI@s OA% 3 +previously 'privI@slI Pu% 4 +prevision ,pri'vIZn M6$ 3 +previsions ,pri'vIZnz Mj$ 3 +prey preI I0%,Ki% 13A +preyed preId Ic%,Id% 13A +preying 'preIIN Ib% 23A +preys preIz Ia% 13A +price praIs H2%,M6% 16A +price-control 'praIs-k@ntr@Ul K6% 3 +price-controlled 'praIs-k@ntr@Uld OA% 3 +price-controls 'praIs-k@ntr@Ulz Kj% 3 +priced praIst Hc%,Hd% 16A +priceless 'praIsl@s OA% 2 +pricelist 'praIslIst K6% 2 +pricelists 'praIslIsts Kj% 2 +prices 'praIsIz Ha%,Mj% 26A +pricey 'praIsI OE% 2 +pricier 'praIsI@R Or% 3 +priciest 'praIsIIst Os% 3 +pricing 'praIsIN Hb% 26A +prick prIk J0%,K6% 12A,6A,15B +pricked prIkt Jc%,Jd% 12A,6A,15B +pricker 'prIk@R K6% 2 +prickers 'prIk@z Kj% 2 +pricking 'prIkIN Jb%,K6% 22A,6A,15B +prickings 'prIkINz Kj% 2 +prickle 'prIkl J2%,K6% 2 +prickled 'prIkld Jc%,Jd% 2 +prickles 'prIklz Ja%,Kj% 2 +pricklier 'prIklI@R Or% 3 +prickliest 'prIklIIst Os% 3 +prickling 'prIklIN Jb% 2 +prickly 'prIklI OD% 2 +pricks prIks Ja%,Kj% 12A,6A,15B +pride praId H2%,M6% 1 +prided 'praIdId Hc%,Hd% 2 +prides praIdz Ha%,Mj% 1 +priding 'praIdIN Hb% 2 +prie-dieu 'pri-dj3 K6$ 2 +prie-dieus 'pri-dj3z Kj$ 2 +pried praId Jc%,Jd% 12A,2C,3A,15A,15B,22 +pries praIz Ja% 12A,2C,3A,15A,15B,22 +priest prist K6% 1 +priest-ridden 'prist-rIdn OA$ 3 +priestcraft 'pristkrAft L@% 2 +priestess 'pristes K7% 2 +priestesses 'pristesIz Kj% 3 +priesthood 'pristhUd K6% 2 +priesthoods 'pristhUdz Kj% 2 +priestlier 'pristlI@R Or$ 3 +priestliest 'pristlIIst Os$ 3 +priestlike 'pristlaIk OA% 2 +priestly 'pristlI OD% 2 +priests prists Kj% 1 +prig prIg K6% 1 +priggish 'prIgIS OA% 2 +priggishly 'prIgISlI Pu% 3 +priggishness 'prIgISn@s L@% 3 +prigs prIgz Kj% 1 +prim prIm H4$,OE% 1 +prima 'prim@ OA% 2 +prima ballerina ,prim@ ,b&l@'rin@ K6% 6 +prima ballerinas ,prim@ ,b&l@'rin@z Kj% 6 +prima donna ,prim@ 'd0n@ K6% 4 +prima donnas ,prim@ 'd0n@z Kj% 4 +prima facie ,praIm@ 'feISi OA%,Pu% 4 +primacies 'praIm@sIz Kj$ 3 +primacy 'praIm@sI K8% 3 +primaeval praI'mivl OA% 3 +primal 'praIml OA% 2 +primaries 'praIm@rIz Kj% 3 +primarily 'praIm@r@lI Pu% 4 +primary 'praIm@rI K8%,OA% 3 +primate 'praImeIt K6% 2 +primates 'praImeIts Kj% 2 +prime praIm H2%,L@%,OA% 16A +primed praImd Hc%,Hd% 16A +primer 'praIm@R K6% 2 +primers 'praIm@z Kj% 2 +primes praImz Ha% 16A +primeval praI'mivl OA% 3 +priming 'praImIN Hb%,K6% 26A +primings 'praImINz Kj$ 2 +primitive 'prImItIv K6%,OA% 3 +primitively 'prImItIvlI Pu% 4 +primitiveness 'prImItIvn@s L@% 4 +primitives 'prImItIvz Kj% 3 +primly 'prImlI Pu% 2 +primmed prImd Hc$,Hd$ 1 +primmer 'prIm@R Or% 2 +primmest 'prImIst Os% 2 +primming 'prImIN Hb$ 2 +primness 'prImn@s L@% 2 +primogeniture ,praIm@U'dZenItS@R L@% 5 +primordial praI'mOdI@l OA% 4 +primp prImp H0$ 1 +primped prImpt Hc$,Hd$ 1 +primping 'prImpIN Hb$ 2 +primps prImps Ha$ 1 +primrose 'prImr@Uz K6% 2 +primroses 'prImr@UzIz Kj% 3 +prims prImz Ha$ 1 +primula 'prImjUl@ K6% 3 +primulas 'prImjUl@z Kj% 3 +primus 'praIm@s K7% 2 +primuses 'praIm@sIz Kj% 3 +prince prIns K6% 1 +princedom 'prInsd@m K6% 2 +princedoms 'prInsd@mz Kj% 2 +princelier 'prInslI@R Or% 3 +princeliest 'prInslIIst Os% 3 +princely 'prInslI OD% 2 +princes 'prInsIz Kj% 2 +princess prIn'ses K7% 2 +princesses prIn'sesIz Kj% 3 +principal 'prIns@pl K6%,OA% 3 +principalities ,prInsI'p&lItIz Kj% 5 +principality ,prInsI'p&lItI K8% 5 +principally 'prIns@plI Pu% 3 +principals 'prIns@plz Kj% 3 +principle 'prIns@pl K6% 3 +principled 'prIns@pld OA% 3 +principles 'prIns@plz Kj% 3 +prink prINk H0$ 1 +prinked prINkt Hc$,Hd$ 1 +prinking 'prINkIN Hb$ 2 +prinks prINks Ha$ 1 +print prInt J0%,M6% 12A,6A,15B +print-seller 'prInt-sel@R K6% 3 +print-sellers 'prInt-sel@z Kj% 3 +print-shop 'prInt-S0p K6% 2 +print-shops 'prInt-S0ps Kj% 2 +printable 'prInt@bl OA% 3 +printed 'prIntId Jc%,Jd% 22A,6A,15B +printer 'prInt@R K6% 2 +printers 'prInt@z Kj% 2 +printing 'prIntIN Jb%,M6% 22A,6A,15B +printing-ink 'prIntIN-INk K6% 3 +printing-inks 'prIntIN-INks Kj% 3 +printing-press 'prIntIN-pres K7% 3 +printing-presses 'prIntIN-presIz Kj% 4 +printings 'prIntINz Mj% 2 +printout 'prIntaUt K6% 2 +printouts 'prIntaUts Kj% 2 +prints prInts Ja%,Mj% 12A,6A,15B +prior 'praI@R K6%,OA% 2 +prioress 'praI@rIs K7% 3 +prioresses 'praI@rIsIz Kj% 4 +priories 'praI@rIz Kj% 3 +priorities praI'0rItIz Mj% 4 +priority praI'0rItI M8% 4 +priors 'praI@z Kj% 2 +priory 'praI@rI K8% 3 +prise praIz H2% 115A,15B +prised praIzd Hc%,Hd% 115A,15B +prises 'praIzIz Ha% 215A,15B +prising 'praIzIN Hb% 215A,15B +prism 'prIz@m K6% 2 +prismatic prIz'm&tIk OA% 3 +prisms 'prIz@mz Kj% 2 +prison 'prIzn M6% 2 +prison-breaking 'prIzn-breIkIN M6$ 4 +prison-breakings 'prIzn-breIkINz Mj$ 4 +prisoner 'prIzn@R K6% 3 +prisoners 'prIzn@z Kj% 3 +prisons 'prIznz Mj% 2 +pristine 'prIstin OA% 2 +prithee 'prIDI W-$ 2 +privacy 'prIv@sI L@% 3 +private 'praIvIt K6%,OA% 2 +privateer ,praIv@'tI@R K6% 3 +privateers ,praIv@'tI@z Kj% 3 +privately 'praIvItlI Pu% 3 +privates 'praIvIts Kj% 2 +privation praI'veISn M6% 3 +privations praI'veISnz Mj% 3 +privet 'prIvIt L@% 2 +privies 'prIvIz Kj% 2 +privilege 'prIv@lIdZ M6% 3 +privileged 'prIv@lIdZd OA% 3 +privileges 'prIv@lIdZIz Mj% 4 +privily 'prIvIlI Pu% 3 +privy 'prIvI K8%,OA% 2 +prize praIz H2%,K6% 115A,15B +prize-fight 'praIz-faIt K6% 2 +prize-fights 'praIz-faIts Kj% 2 +prize-money 'praIz-mVnI L@% 3 +prize-ring 'praIz-rIN K6$ 2 +prize-rings 'praIz-rINz Kj$ 2 +prized praIzd Hc%,Hd% 115A,15B +prizes 'praIzIz Ha%,Kj% 215A,15B +prizing 'praIzIN Hb$ 215A,15B +pro pr@U K6%,Pu% 1 +pro forma ,pr@U 'fOm@ OA%,Pu% 3 +pro rata ,pr@U 'rAt@ Pu% 3 +pro tem ,pr@U 'tem Pu% 2 +pro tempore ,pr@U 'temp@rI Pu$ 4 +pro- ,pr@U- U-% 1 +probabilistic ,pr0b@bI'lIstIk OA% 5 +probabilistically ,pr0b@bI'lIstIklI Pu% 6 +probabilities ,pr0b@'bIlItIz Mj% 5 +probability ,pr0b@'bIlItI M8% 5 +probable 'pr0b@bl K6%,OA% 3 +probables 'pr0b@blz Kj% 3 +probably 'pr0b@blI Pu* 3 +probate 'pr@UbeIt H2$,M6% 2 +probated 'pr@UbeItId Hc$,Hd$ 3 +probates 'pr@UbeIts Ha$,Mj$ 2 +probating 'pr@UbeItIN Hb$ 3 +probation pr@'beISn L@% 3 +probationary pr@'beISnrI OA% 4 +probationer pr@'beISn@R K6% 4 +probationers pr@'beISn@z Kj% 4 +probe pr@Ub H2%,K6% 16A +probed pr@Ubd Hc%,Hd% 16A +probes pr@Ubz Ha%,Kj% 16A +probing 'pr@UbIN Hb% 26A +probity 'pr@UbItI L@% 3 +problem 'pr0bl@m K6* 2 +problematic ,pr0bl@'m&tIk OA% 4 +problematically ,pr0bl@'m&tIklI Pu% 5 +problems 'pr0bl@mz Kj% 2 +proboscis pr@'b0sIs K7% 3 +proboscises pr@'b0sIsIz Kj$ 4 +procedural pr@'sidZ@r@l OA% 4 +procedure pr@'sidZ@R M6% 3 +procedures pr@'sidZ@z Mj% 3 +proceed pr@'sid I0% 22A,3A,4C +proceeded pr@'sidId Ic%,Id% 32A,3A,4C +proceeding pr@'sidIN Ib%,M6% 32A,3A,4C +proceedings pr@'sidINz Mj% 3 +proceeds 'pr@Usidz Kj% 2 +proceeds pr@'sidz Ia% 22A,3A,4C +process 'pr@Uses H1%,M7% 26A +process pr@'ses I1% 2 +process-server 'pr@UsIs-s3v@R K6$ 4 +process-servers 'pr@UsIs-s3v@z Kj$ 4 +processed 'pr@Usest Hc%,Hd% 26A +processed pr@'sest Ic%,Id% 2 +processes 'pr@UsesIz Ha%,Mj% 36A +processes pr@'sesIz Ia% 3 +processing 'pr@UsesIN Hb% 36A +processing pr@'sesIN Ib% 3 +procession pr@'seSn M6% 3 +processional pr@'seS@n@l OA% 4 +processions pr@'seSnz Mj% 3 +processor 'pr@Uses@R K6% 3 +processors 'pr@Uses@z Kj% 3 +proclaim pr@'kleIm H0% 26A,9,23,25 +proclaimed pr@'kleImd Hc%,Hd% 26A,9,23,25 +proclaiming pr@'kleImIN Hb% 36A,9,23,25 +proclaims pr@'kleImz Ha% 26A,9,23,25 +proclamation ,pr0kl@'meISn M6% 4 +proclamations ,pr0kl@'meISnz Mj% 4 +proclivities pr@'klIvItIz Kj% 4 +proclivity pr@'klIvItI K8% 4 +proconsul ,pr@U'k0nsl K6% 3 +proconsular ,pr@U'k0nsjUl@R OA% 4 +proconsulate pr@U'k0nsjUl@t K6% 4 +proconsulates pr@U'k0nsjUl@ts Kj% 4 +proconsuls ,pr@U'k0nslz Kj% 3 +procrastinate pr@U'kr&stIneIt I2% 42A +procrastinated pr@U'kr&stIneItId Ic%,Id% 52A +procrastinates pr@U'kr&stIneIts Ia% 42A +procrastinating pr@U'kr&stIneItIN Ib% 52A +procrastination pr@U,kr&stI'neISn L@% 5 +procreate 'pr@UkrIeIt H2% 36A +procreated 'pr@UkrIeItId Hc%,Hd% 46A +procreates 'pr@UkrIeIts Ha% 36A +procreating 'pr@UkrIeItIN Hb% 46A +procreation ,pr@UkrI'eISn K6% 4 +procreations ,pr@UkrI'eISnz Kj% 4 +proctor 'pr0kt@R K6% 2 +proctors 'pr0kt@z Kj% 2 +procurable pr@'kjU@r@bl OA% 4 +procurator 'pr0kjUreIt@R K6% 4 +procurators 'pr0kjUreIt@z Kj% 4 +procure pr@'kjU@R H2% 26A,12B,13B +procured pr@'kjU@d Hc%,Hd% 26A,12B,13B +procurement pr@'kjU@m@nt K6% 3 +procurements pr@'kjU@m@nts Kj$ 3 +procurer pr@'kjU@r@R K6% 3 +procurers pr@'kjU@r@z Kj% 3 +procures pr@'kjU@z Ha% 26A,12B,13B +procuress 'pr0kjUrIs K7% 3 +procuresses 'pr0kjUrIsIz Kj$ 4 +procuring pr@'kjU@rIN Hb% 36A,12B,13B +prod pr0d J4%,K6% 13A,6A +prodded 'pr0dId Jc%,Jd% 23A,6A +prodding 'pr0dIN Jb% 23A,6A +prodigal 'pr0dIgl K6$,OA% 3 +prodigality ,pr0dI'g&lItI L@% 5 +prodigally 'pr0dIg@lI Pu% 4 +prodigals 'pr0dIglz Kj$ 3 +prodigies 'pr0dIdZIz Kj% 3 +prodigious pr@'dIdZ@s OA% 3 +prodigiously pr@'dIdZ@slI Pu% 4 +prodigy 'pr0dIdZI K8% 3 +prods pr0dz Ja%,Kj% 13A,6A +produce 'pr0djus L@% 2 +produce pr@'djus J2% 22A,6A +produced pr@'djust Jc%,Jd% 22A,6A +producer pr@'djus@R K6% 3 +producers pr@'djus@z Kj% 3 +produces pr@'djusIz Ja% 32A,6A +producing pr@'djusIN Jb% 32A,6A +product 'pr0dVkt K6% 2 +production pr@'dVkSn M6% 3 +productions pr@'dVkSnz Mj% 3 +productive pr@'dVktIv OA% 3 +productively pr@'dVktIvlI Pu% 4 +productivity ,pr0dVk'tIvItI L@% 5 +products 'pr0dVkts Kj% 2 +profanation ,pr0f@'neISn M6$ 4 +profanations ,pr0f@'neISnz Mj$ 4 +profane pr@'feIn H2%,OA% 26A +profaned pr@'feInd Hc%,Hd% 26A +profanely pr@'feInlI Pu% 3 +profaneness pr@'feIn+n@s L@$ 3 +profanes pr@'feInz Ha% 26A +profaning pr@'feInIN Hb% 36A +profanities pr@'f&nItIz Mj% 4 +profanity pr@'f&nItI M8% 4 +profess pr@'fes J1% 26A,7A,9,25 +professed pr@'fest Jc%,Jd%,OA% 26A,7A,9,25 +professedly pr@'festlI Pu% 4 +professes pr@'fesIz Ja% 36A,7A,9,25 +professing pr@'fesIN Jb% 36A,7A,9,25 +profession pr@'feSn K6% 3 +professional pr@'feSn@l K6%,OA% 4 +professionalism pr@'feSn@lIz@m L@% 5 +professionally pr@'feSn@lI Pu% 4 +professionals pr@'feSn@lz Kj% 4 +professions pr@'feSnz Kj% 3 +professor pr@'fes@R K6% 3 +professorial ,pr0fI'sOrI@l OA% 5 +professors pr@'fes@z Kj% 3 +professorship pr@'fes@SIp K6% 4 +professorships pr@'fes@SIps Kj% 4 +proffer 'pr0f@R H0%,K6$ 26A,7A +proffered 'pr0f@d Hc%,Hd% 26A,7A +proffering 'pr0f@rIN Hb% 36A,7A +proffers 'pr0f@z Ha%,Kj$ 26A,7A +proficiency pr@'fISnsI L@% 4 +proficient pr@'fISnt OA% 3 +proficiently pr@'fISntlI Pu% 4 +profile 'pr@UfaIl H2%,M6% 2 +profiled 'pr@UfaIld Hc%,Hd% 2 +profiles 'pr@UfaIlz Ha%,Mj% 2 +profiling 'pr@UfaIlIN Hb% 3 +profit 'pr0fIt J0%,M6% 23A,6A,13A +profit-margin 'pr0fIt-mAdZIn K6% 4 +profit-margins 'pr0fIt-mAdZInz Kj% 4 +profit-sharing 'pr0fIt-Se@rIN L@% 4 +profitable 'pr0fIt@bl OA% 4 +profitably 'pr0fIt@blI Pu% 4 +profited 'pr0fItId Jc%,Jd% 33A,6A,13A +profiteer ,pr0fI'tI@R I0%,K6% 32A +profiteered ,pr0fI'tI@d Ic%,Id% 32A +profiteering ,pr0fI'tI@rIN Ib% 42A +profiteers ,pr0fI'tI@z Ia%,Kj% 32A +profiting 'pr0fItIN Jb% 33A,6A,13A +profitless 'pr0fItl@s OA% 3 +profitlessly 'pr0fItl@slI Pu% 4 +profits 'pr0fIts Ja%,Mj% 23A,6A,13A +profligacy 'pr0flIg@sI L@% 4 +profligate 'pr0flIg@t K6$,OA% 3 +profligates 'pr0flIg@ts Kj$ 3 +profound pr@'faUnd OA% 2 +profoundly pr@'faUndlI Pu% 3 +profundities pr@'fVndItIz Mj% 4 +profundity pr@'fVndItI M8% 4 +profuse pr@'fjus OA% 2 +profusely pr@'fjuslI Pu% 3 +profuseness pr@'fjusn@s L@% 3 +profusion pr@'fjuZn L@% 3 +progenitor pr@U'dZenIt@R K6% 4 +progenitors pr@U'dZenIt@z Kj% 4 +progeny 'pr0dZ@nI Kj% 3 +prognoses pr0g'n@Usiz Kj% 3 +prognosis pr0g'n@UsIs Ki% 3 +prognostic pr0g'n0stIk K6$,OA% 3 +prognosticate pr0g'n0stIkeIt H2% 46A,9 +prognosticated pr0g'n0stIkeItId Hc%,Hd% 56A,9 +prognosticates pr0g'n0stIkeIts Ha% 46A,9 +prognosticating pr0g'n0stIkeItIN Hb% 56A,9 +prognostication pr0g,n0stI'keISn M6% 5 +prognostications pr0g,n0stI'keISnz Mj% 5 +prognostics pr0g'n0stIks Kj$ 3 +program 'pr@Ugr&m H4%,K6% 26A +programme 'pr@Ugr&m H2%,K6% 26A +programmed 'pr@Ugr&md Hc%,Hd% 26A +programmer 'pr@Ugr&m@R K6% 3 +programmers 'pr@Ugr&m@z Kj% 3 +programmes 'pr@Ugr&mz Ha%,Kj% 26A +programming 'pr@Ugr&mIN Hb% 36A +programs 'pr@Ugr&mz Ha%,Kj% 26A +progress 'pr@Ugres M7% 2 +progress pr@'gres I1% 22A,2C +progressed pr@'grest Ic%,Id% 22A,2C +progresses 'pr@UgresIz Mj$ 3 +progresses pr@'gresIz Ia% 32A,2C +progressing pr@'gresIN Ib% 32A,2C +progression pr@'greSn L@% 3 +progressive pr@'gresIv K6$,OA% 3 +progressively pr@'gresIvlI Pu% 4 +progressiveness pr@'gresIvn@s L@% 4 +progressives pr@'gresIvz Kj$ 3 +prohibit pr@'hIbIt H0% 36A,14 +prohibited pr@'hIbItId Hc%,Hd% 46A,14 +prohibiting pr@'hIbItIN Hb% 46A,14 +prohibition ,pr@UI'bISn M6% 4 +prohibitionist ,pr@UI'bIS@nIst K6% 5 +prohibitionists ,pr@UI'bIS@nIsts Kj% 5 +prohibitions ,pr@UI'bISnz Mj% 4 +prohibitive pr@'hIb@tIv OA% 4 +prohibitively pr@'hIb@tIvlI Pu% 5 +prohibitory pr@'hIbIt@rI OA% 5 +prohibits pr@'hIbIts Ha% 36A,14 +project 'pr0dZekt K6% 2 +project pr@'dZekt J0% 22A,2C,6A,14,15A +projected pr@'dZektId Jc%,Jd% 32A,2C,6A,14,15A +projectile pr@'dZektaIl K6%,OA% 3 +projectiles pr@'dZektaIlz Kj% 3 +projecting pr@'dZektIN Jb% 32A,2C,6A,14,15A +projection pr@'dZekSn M6% 3 +projectionist pr@'dZekS@nIst K6% 4 +projectionists pr@'dZekS@nIsts Kj% 4 +projections pr@'dZekSnz Mj% 3 +projector pr@'dZekt@R K6% 3 +projectors pr@'dZekt@z Kj% 3 +projects 'pr0dZekts Kj% 2 +projects pr@'dZekts Ja% 22A,2C,6A,14,15A +prolapse 'pr@Ul&ps K6$ 2 +prolapse pr@U'l&ps I2$ 2 +prolapsed pr@U'l&pst Ic$,Id$ 2 +prolapses 'pr@Ul&psIz Kj$ 3 +prolapses pr@U'l&psIz Ia$ 3 +prolapsing pr@U'l&psIN Ib$ 3 +prole pr@Ul K6$ 1 +proles pr@Ulz Kj$ 1 +proletarian ,pr@UlI'te@rI@n K6%,OA% 5 +proletarians ,pr@UlI'te@rI@nz Kj% 5 +proletariat ,pr@UlI'te@rI@t K6% 5 +proletariats ,pr@UlI'te@rI@ts Kj% 5 +proliferate pr@'lIf@reIt J2% 42A,6A +proliferated pr@'lIf@reItId Jc%,Jd% 52A,6A +proliferates pr@'lIf@reIts Ja% 42A,6A +proliferating pr@'lIf@reItIN Jb% 52A,6A +proliferation pr@,lIf@'reISn K6% 5 +proliferations pr@,lIf@'reISnz Kj% 5 +prolific pr@'lIfIk OA% 3 +prolix 'pr@UlIks OA% 2 +prolixity pr@U'lIksItI L@% 4 +prologue 'pr@Ul0g K6% 2 +prologues 'pr@Ul0gz Kj% 2 +prolong pr@'l0N H0% 26A +prolongation ,pr@Ul0N'geISn M6% 4 +prolongations ,pr@Ul0N'geISnz Mj% 4 +prolonged pr@'l0Nd Hc%,Hd%,OA% 26A +prolonging pr@'l0NIN Hb% 36A +prolongs pr@'l0Nz Ha% 26A +prom pr0m K6% 1 +promenade ,pr0m@'nAd J2%,K6% 32A,2C,6A,15A +promenaded ,pr0m@'nAdId Jc%,Jd% 42A,2C,6A,15A +promenades ,pr0m@'nAdz Ja%,Kj% 32A,2C,6A,15A +promenading ,pr0m@'nAdIN Jb% 42A,2C,6A,15A +prominence 'pr0mIn@ns M6% 3 +prominences 'pr0mIn@nsIz Mj$ 4 +prominent 'pr0mIn@nt OA% 3 +prominently 'pr0mIn@ntlI Pu% 4 +promiscuity ,pr0mI'skjuItI L@% 5 +promiscuous pr@'mIskjU@s OA% 4 +promiscuously pr@'mIskjU@slI Pu% 5 +promise 'pr0mIs J2%,M6% 22A,6A,7A,9,11,12A,13A,17 +promised 'pr0mIst Jc%,Jd% 22A,6A,7A,9,11,12A,13A,17 +promises 'pr0mIsIz Ja%,Mj% 32A,6A,7A,9,11,12A,13A,17 +promising 'pr0mIsIN Jb%,OA% 32A,6A,7A,9,11,12A,13A,17 +promisingly 'pr0mIsINlI Pu% 4 +promissory 'pr0mIs@rI OA$ 4 +promontories 'pr0m@ntrIz Kj% 3 +promontory 'pr0m@ntrI K8% 3 +promote pr@'m@Ut H2% 26A,14 +promoted pr@'m@UtId Hc%,Hd% 36A,14 +promoter pr@'m@Ut@R K6% 3 +promoters pr@'m@Ut@z Kj% 3 +promotes pr@'m@Uts Ha% 26A,14 +promoting pr@'m@UtIN Hb% 36A,14 +promotion pr@'m@USn M6% 3 +promotional pr@'m@US@nl OA% 4 +promotions pr@'m@USnz Mj% 3 +prompt pr0mpt H0%,K6%,OA% 16A,17 +prompt-box 'pr0mpt-b0ks K7$ 2 +prompt-boxes 'pr0mpt-b0ksIz Kj$ 3 +prompt-copies 'pr0mpt-k0pIz Kj% 3 +prompt-copy 'pr0mpt-k0pI K8% 3 +prompted 'pr0mptId Hc%,Hd% 26A,17 +prompter 'pr0mpt@R K6% 2 +prompters 'pr0mpt@z Kj% 2 +prompting 'pr0mptIN Hb%,K6$ 26A,17 +promptings 'pr0mptINz Kj% 2 +promptitude 'pr0mptItjud L@$ 3 +promptly 'pr0mptlI Pu% 2 +promptness 'pr0mptn@s L@% 2 +prompts pr0mpts Ha%,Kj% 16A,17 +proms pr0mz Kj% 1 +promulgate 'pr0m@lgeIt H2% 36A +promulgated 'pr0m@lgeItId Hc%,Hd% 46A +promulgates 'pr0m@lgeIts Ha% 36A +promulgating 'pr0m@lgeItIN Hb% 46A +promulgation ,pr0m@l'geISn L@% 4 +prone pr@Un OA% 1 +proneness 'pr@Un+n@s L@% 2 +prong pr0N K6% 1 +pronged pr0Nd OA% 1 +prongs pr0Nz Kj% 1 +pronominal pr@U'n0mInl OA$ 4 +pronoun 'pr@UnaUn K6% 2 +pronounce pr@'naUns J2% 22A,3A,6A,9,22,25 +pronounceable pr@'naUns@bl OA% 4 +pronounced pr@'naUnst Jc%,Jd%,OA% 22A,3A,6A,9,22,25 +pronouncement pr@'naUnsm@nt K6% 3 +pronouncements pr@'naUnsm@nts Kj% 3 +pronounces pr@'naUnsIz Ja% 32A,3A,6A,9,22,25 +pronouncing pr@'naUnsIN Jb% 32A,3A,6A,9,22,25 +pronouns 'pr@UnaUnz Kj% 2 +pronto 'pr0nt@U Pu$ 2 +pronunciamento pr@,nVnsI@'ment@U K6$ 6 +pronunciamentos pr@,nVnsI@'ment@Uz Kj$ 6 +pronunciation pr@,nVnsI'eISn M6% 5 +pronunciations pr@,nVnsI'eISnz Mj% 5 +proof pruf H0%,M6%,OA% 16A +proofed pruft Hc%,Hd% 16A +proofing 'prufIN Hb% 26A +proofread 'prufred Jc%,Jd% 22A,6A +proofread 'prufrid J5% 22A,6A +proofreader 'prufrid@R K6% 3 +proofreaders 'prufrid@z Kj% 3 +proofreading 'prufridIN Jb% 32A,6A +proofreads 'prufridz Ja% 22A,6A +proofs prufs Ha%,Mj% 16A +prop pr0p H4%,K6% 16A,15A,15B,22 +propaganda ,pr0p@'g&nd@ L@% 4 +propagandist ,pr0p@'g&ndIst K6% 4 +propagandists ,pr0p@'g&ndIsts Kj% 4 +propagandize ,pr0p@'g&ndaIz I2$ 4 +propagandized ,pr0p@'g&ndaIzd Ic$,Id$ 4 +propagandizes ,pr0p@'g&ndaIzIz Ia$ 5 +propagandizing ,pr0p@'g&ndaIzIN Ib$ 5 +propagate 'pr0p@geIt J2% 32A,6A +propagated 'pr0p@geItId Jc%,Jd% 42A,6A +propagates 'pr0p@geIts Ja% 32A,6A +propagating 'pr0p@geItIN Jb% 42A,6A +propagation ,pr0p@'geISn L@% 4 +propagator 'pr0p@geIt@R K6% 4 +propagators 'pr0p@geIt@z Kj% 4 +propane 'pr@UpeIn L@$ 2 +propel pr@'pel H4% 26A,15A +propellant pr@'pel@nt M6%,OA% 3 +propellants pr@'pel@nts Mj% 3 +propelled pr@'peld Hc%,Hd% 26A,15A +propellent pr@'pel@nt M6%,OA% 3 +propellents pr@'pel@nts Mj% 3 +propeller pr@'pel@R K6% 3 +propellers pr@'pel@z Kj% 3 +propelling pr@'pelIN Hb% 36A,15A +propels pr@'pelz Ha% 26A,15A +propensities pr@'pensItIz Mj% 4 +propensity pr@'pensItI M8% 4 +proper 'pr0p@R OA% 2 +properly 'pr0p@lI Pu% 3 +propertied 'pr0p@tId OA% 3 +properties 'pr0p@tIz Mj% 3 +property 'pr0p@tI M8% 3 +property-man 'pr0p@tI-m&n Ki$ 4 +property-master 'pr0p@tI-mAst@R K6$ 5 +property-masters 'pr0p@tI-mAst@z Kj$ 5 +property-men 'pr0p@tI-men Kj$ 4 +prophecies 'pr0f@sIz Mj% 3 +prophecy 'pr0f@sI M8% 3 +prophesied 'pr0fIsaId Jc%,Jd% 32A,2C,6A,9,10 +prophesies 'pr0fIsaIz Ja% 32A,2C,6A,9,10 +prophesy 'pr0fIsaI J3% 32A,2C,6A,9,10 +prophesying 'pr0fIsaIIN Jb% 42A,2C,6A,9,10 +prophet 'pr0fIt K6% 2 +prophetess 'pr0fItes K7% 3 +prophetesses 'pr0fItesIz Kj% 4 +prophetic pr@'fetIk OA% 3 +prophetical pr@'fetIkl OA$ 4 +prophetically pr@'fetIklI Pu% 4 +prophets 'pr0fIts Kj% 2 +prophylactic ,pr0fI'l&ktIk K6%,OA% 4 +prophylactics ,pr0fI'l&ktIks Kj% 4 +prophylaxis ,pr0fI'l&ksIs L@% 4 +propinquity pr@'pINkwItI L@$ 4 +propitiate pr@'pISIeIt H2% 46A +propitiated pr@'pISIeItId Hc%,Hd% 56A +propitiates pr@'pISIeIts Ha% 46A +propitiating pr@'pISIeItIN Hb% 56A +propitiation pr@,pISI'eISn L@% 5 +propitiatory pr@'pISI@trI OA% 4 +propitious pr@'pIS@s OA% 3 +propitiously pr@'pIS@slI Pu% 4 +proponent pr@'p@Un@nt K6% 3 +proponents pr@'p@Un@nts Kj% 3 +proportion pr@'pOSn H0%,M6% 36A,14 +proportionable pr@'pOSn@bl OA$ 4 +proportional pr@'pOS@nl OA% 4 +proportionality pr@,pOS@'n&lItI L@% 6 +proportionally pr@'pOS@n@lI Pu% 5 +proportionate pr@'pOS@n@t OA% 4 +proportionately pr@'pOS@n@tlI Pu% 5 +proportioned pr@'pOSnd Hc%,Hd% 36A,14 +proportioning pr@'pOSnIN Hb% 46A,14 +proportions pr@'pOSnz Ha%,Mj% 36A,14 +proposal pr@'p@Uzl M6% 3 +proposals pr@'p@Uzlz Mj% 3 +propose pr@'p@Uz J2% 22A,6A,6D,7A,9,14 +proposed pr@'p@Uzd Jc%,Jd% 22A,6A,6D,7A,9,14 +proposer pr@'p@Uz@R K6% 3 +proposers pr@'p@Uz@z Kj% 3 +proposes pr@'p@UzIz Ja% 32A,6A,6D,7A,9,14 +proposing pr@'p@UzIN Jb% 32A,6A,6D,7A,9,14 +proposition ,pr0p@'zISn H0%,K6% 46A +propositioned ,pr0p@'zISnd Hc%,Hd% 46A +propositioning ,pr0p@'zISnIN Hb% 56A +propositions ,pr0p@'zISnz Ha%,Kj% 46A +propound pr@'paUnd H0% 26A +propounded pr@'paUndId Hc%,Hd% 36A +propounding pr@'paUndIN Hb% 36A +propounds pr@'paUndz Ha% 26A +propped pr0pt Hc%,Hd% 16A,15A,15B,22 +propping 'pr0pIN Hb% 26A,15A,15B,22 +proprietary pr@'praI@trI OA% 5 +proprieties pr@'praI@tIz Mj% 4 +proprietor pr@'praI@t@R K6% 4 +proprietors pr@'praI@t@z Kj% 4 +proprietress pr@'praI@trIs K7% 4 +proprietresses pr@'praI@trIsIz Kj% 5 +propriety pr@'praI@tI M8% 4 +props pr0ps Ha%,Kj% 16A,15A,15B,22 +propulsion pr@'pVlSn L@% 3 +propulsive pr@'pVlsIv OA% 3 +prorogation ,pr@Ur@'geISn K6$ 4 +prorogations ,pr@Ur@'geISnz Kj$ 4 +prorogue pr@U'r@Ug H2$ 26A +prorogued pr@U'r@Ugd Hc$,Hd$ 26A +prorogues pr@U'r@Ugz Ha$ 26A +proroguing pr@U'r@UgIN Hb$ 36A +pros pr@Uz Kj% 1 +prosaic pr@'zeIIk OA% 3 +prosaically pr@'zeIIklI Pu% 4 +proscenium pr@'sinI@m K6% 4 +prosceniums pr@'sinI@mz Kj$ 4 +proscribe pr@'skraIb H2% 26A +proscribed pr@'skraIbd Hc%,Hd% 26A +proscribes pr@'skraIbz Ha% 26A +proscribing pr@'skraIbIN Hb% 36A +proscription pr@'skrIpSn M6% 3 +proscriptions pr@'skrIpSnz Mj% 3 +prose pr@Uz L@% 1 +prosecute 'pr0sIkjut H2% 36A,14 +prosecuted 'pr0sIkjutId Hc%,Hd% 46A,14 +prosecutes 'pr0sIkjuts Ha% 36A,14 +prosecuting 'pr0sIkjutIN Hb% 46A,14 +prosecution ,pr0sI'kjuSn M6% 4 +prosecutions ,pr0sI'kjuSnz Mj% 4 +prosecutor 'pr0sIkjut@R K6% 4 +prosecutors 'pr0sIkjut@z Kj% 4 +proselyte 'pr0s@laIt K6$ 3 +proselytes 'pr0s@laIts Kj$ 3 +proselytize 'pr0s@lItaIz J2$ 42A,6A +proselytized 'pr0s@lItaIzd Jc$,Jd$ 42A,6A +proselytizes 'pr0s@lItaIzIz Ja$ 52A,6A +proselytizing 'pr0s@lItaIzIN Jb$ 52A,6A +prosier 'pr@UzI@R Or% 3 +prosiest 'pr@UzIIst Os% 3 +prosily 'pr@UzIlI Pu% 3 +prosiness 'pr@UzIn@s L@% 3 +prosody 'pr0s@dI L@% 3 +prospect 'pr0spekt M6% 2 +prospect pr@'spekt I0% 22A,3A +prospected pr@'spektId Ic%,Id% 32A,3A +prospecting pr@'spektIN Ib% 32A,3A +prospective pr@'spektIv OA% 3 +prospector pr@'spekt@R K6% 3 +prospectors pr@'spekt@z Kj% 3 +prospects 'pr0spekts Mj% 2 +prospects pr@'spekts Ia% 22A,3A +prospectus pr@'spekt@s K7% 3 +prospectuses pr@'spekt@sIz Kj% 4 +prosper 'pr0sp@R J0% 22A,6A +prospered 'pr0sp@d Jc%,Jd% 22A,6A +prospering 'pr0sp@rIN Jb% 32A,6A +prosperity pr0'sperItI L@% 4 +prosperous 'pr0sp@r@s OA% 3 +prosperously 'pr0sp@r@slI Pu% 4 +prospers 'pr0sp@z Ja% 22A,6A +prostate 'pr0steIt K6$ 2 +prostates 'pr0steIts Kj$ 2 +prostitute 'pr0stItjut H2%,K6% 36A +prostituted 'pr0stItjutId Hc%,Hd% 46A +prostitutes 'pr0stItjuts Ha%,Kj% 36A +prostituting 'pr0stItjutIN Hb% 46A +prostitution ,pr0stI'tjuSn L@% 4 +prostrate 'pr0streIt OA% 2 +prostrate pr0'streIt H2% 26A +prostrated pr0'streItId Hc%,Hd% 36A +prostrates pr0'streIts Ha% 26A +prostrating pr0'streItIN Hb% 36A +prostration pr0'streISn M6% 3 +prostrations pr0'streISnz Mj$ 3 +prosy 'pr@UzI OD% 2 +prot_eg_e 'pr0tIZeI K6% 3 +prot_eg_ee 'pr0tIZeI K6$ 3 +prot_eg_ees 'pr0tIZeIz Kj$ 3 +prot_eg_es 'pr0tIZeIz Kj% 3 +protagonist pr@'t&g@nIst K6% 4 +protagonists pr@'t&g@nIsts Kj% 4 +protean 'pr@UtI@n OA$ 3 +protect pr@'tekt H0% 26A,14 +protected pr@'tektId Hc%,Hd% 36A,14 +protecting pr@'tektIN Hb% 36A,14 +protection pr@'tekSn M6% 3 +protectionism pr@'tekS@nIz@m L@% 5 +protectionist pr@'tekS@nIst K6% 4 +protectionists pr@'tekS@nIsts Kj% 4 +protections pr@'tekSnz Mj% 3 +protective pr@'tektIv OA% 3 +protectively pr@'tektIvlI Pu% 4 +protector pr@'tekt@R K6% 3 +protectorate pr@'tekt@r@t K6% 4 +protectorates pr@'tekt@r@ts Kj% 4 +protectors pr@'tekt@z Kj% 3 +protects pr@'tekts Ha% 26A,14 +protein 'pr@Utin M6% 2 +proteins 'pr@Utinz Mj% 2 +protest 'pr@Utest M6% 2 +protest pr@'test J0% 22A,3A,6A,9 +protestation ,pr0te'steISn K6% 4 +protestations ,pr0te'steISnz Kj% 4 +protested pr@'testId Jc%,Jd% 32A,3A,6A,9 +protester pr@'test@R K6% 3 +protesters pr@'test@z Kj% 3 +protesting pr@'testIN Jb% 32A,3A,6A,9 +protestingly pr@'testINlI Pu% 4 +protests 'pr@Utests Mj% 2 +protests pr@'tests Ja% 22A,3A,6A,9 +protocol 'pr@Ut@k0l M6% 3 +protocols 'pr@Ut@k0lz Mj% 3 +proton 'pr@Ut0n K6% 2 +protons 'pr@Ut0nz Kj% 2 +protoplasm 'pr@Ut@pl&z@m L@% 4 +prototype 'pr@Ut@taIp K6% 3 +prototypes 'pr@Ut@taIps Kj% 3 +protozoa ,pr@Ut@'z@U@ Kj% 4 +protract pr@'tr&kt H0$ 26A +protracted pr@'tr&ktId Hc$,Hd% 36A +protracting pr@'tr&ktIN Hb$ 36A +protraction pr@'tr&kSn M6$ 3 +protractions pr@'tr&kSnz Mj$ 3 +protractor pr@'tr&kt@R K6% 3 +protractors pr@'tr&kt@z Kj% 3 +protracts pr@'tr&kts Ha$ 26A +protrude pr@'trud J2% 22A,6A +protruded pr@'trudId Jc%,Jd% 32A,6A +protrudes pr@'trudz Ja% 22A,6A +protruding pr@'trudIN Jb% 32A,6A +protrusion pr@'truZn M6% 3 +protrusions pr@'truZnz Mj% 3 +protrusive pr@'trusIv OA% 3 +protuberance pr@'tjub@r@ns M6% 4 +protuberances pr@'tjub@r@nsIz Mj% 5 +protuberant pr@'tjub@r@nt OA% 4 +proud praUd OC% 1 +prouder 'praUd@R Or% 2 +proudest 'praUdIst Os% 2 +proudly 'praUdlI Pu% 2 +provable 'pruv@bl OA% 3 +prove pruv J2% 14D,6A,9,14,25 +proved pruvd Jc%,Jd% 14D,6A,9,14,25 +proven 'pruvn Jd% 24D,6A,9,14,25 +provenance 'pr0v@n@ns L@% 3 +provender 'pr0vInd@R L@% 3 +proverb 'pr0v3b K6% 2 +proverbial pr@'v3bI@l OA% 4 +proverbially pr@'v3bI@lI Pu% 5 +proverbs 'pr0v3bz Kj% 2 +proves pruvz Ja% 14D,6A,9,14,25 +provide pr@'vaId J2% 23A,6A,9,14 +provided pr@'vaIdId Jc%,Jd%,V-% 33A,6A,9,14 +providence 'pr0vId@ns L@% 3 +provident 'pr0vId@nt OA% 3 +providential ,pr0vI'denSl OA% 4 +providentially ,pr0vI'denS@lI Pu% 5 +providently 'pr0vId@ntlI Pu% 4 +provider pr@'vaId@R K6% 3 +providers pr@'vaId@z Kj% 3 +provides pr@'vaIdz Ja% 23A,6A,9,14 +providing pr@'vaIdIN Jb%,V-% 33A,6A,9,14 +province 'pr0vIns K6% 2 +provinces 'pr0vInsIz Kj% 3 +provincial pr@'vInSl K6%,OA% 3 +provincialism pr@'vInS@lIz@m M6% 5 +provincialisms pr@'vInS@lIz@mz Mj$ 5 +provincially pr@'vInS@lI Pu% 4 +provincials pr@'vInSlz Kj% 3 +proving 'pruvIN Jb% 24D,6A,9,14,25 +provision pr@'vIZn H0%,M6% 36A +provisional pr@'vIZ@nl OA% 4 +provisionally pr@'vIZ@n@lI Pu% 5 +provisioned pr@'vIZnd Hc%,Hd% 36A +provisioning pr@'vIZnIN Hb$ 46A +provisions pr@'vIZnz Ha$,Mj% 36A +proviso pr@'vaIz@U K6% 3 +provisory pr@'vaIz@rI OA% 4 +provisos pr@'vaIz@Uz Kj% 3 +provocation ,pr0v@'keISn M6% 4 +provocations ,pr0v@'keISnz Mj% 4 +provocative pr@'v0k@tIv OA% 4 +provocatively pr@'v0k@tIvlI Pu% 5 +provoke pr@'v@Uk H2% 26A,14,17 +provoked pr@'v@Ukt Hc%,Hd% 26A,14,17 +provokes pr@'v@Uks Ha% 26A,14,17 +provoking pr@'v@UkIN Hb%,OA% 36A,14,17 +provokingly pr@'v@UkINlI Pu% 4 +provost 'pr0v@st K6% 2 +provosts 'pr0v@sts Kj% 2 +prow praU K6% 1 +prowess 'praUIs L@% 2 +prowl praUl J0%,K6% 12A,2C,6A +prowled praUld Jc%,Jd% 12A,2C,6A +prowler 'praUl@R K6% 2 +prowlers 'praUl@z Kj% 2 +prowling 'praUlIN Jb% 22A,2C,6A +prowls praUlz Ja%,Kj% 12A,2C,6A +prows praUz Kj% 1 +prox pr0ks Pu$ 1 +proxies 'pr0ksIz Mj% 2 +proximate 'pr0ksIm@t OA$ 3 +proximity pr0k'sImItI L@% 4 +proximo 'pr0ksIm@U OA$ 3 +proxy 'pr0ksI M8% 2 +prude prud K6% 1 +prudence 'prudns L@% 2 +prudent 'prudnt OA% 2 +prudential pru'denSl OA% 3 +prudently 'prudntlI Pu% 3 +pruderies 'prud@rIz Mj$ 3 +prudery 'prud@rI M8% 3 +prudes prudz Kj% 1 +prudish 'prudIS OA% 2 +prudishly 'prudISlI Pu% 3 +prune prun H2%,K6% 16A,14,15B +pruned prund Hc%,Hd% 16A,14,15B +pruners 'prun@z Kj$ 2 +prunes prunz Ha%,Kj% 16A,14,15B +pruning 'prunIN Hb%,L@% 26A,14,15B +pruning-hook 'pruniN-hUk K6% 3 +pruning-hooks 'pruniN-hUks Kj% 3 +pruning-knife 'pruniN-naIf Ki% 3 +pruning-knives 'pruniN-naIvz Kj% 3 +pruning-saw 'pruniN-sO K6% 3 +pruning-saws 'pruniN-sOz Kj% 3 +pruning-scissors 'pruniN-sIz@z Kj% 4 +pruning-shears 'pruniN-SI@z Kj% 3 +prurience 'prU@rI@ns L@% 3 +pruriency 'prU@rI@nsI L@$ 4 +prurient 'prU@rI@nt OA% 3 +pruriently 'prU@rI@ntlI Pu% 4 +prussic 'prVsIk OA% 2 +pry praI J3% 12A,2C,3A,15A,15B,22 +prying 'praIIN Jb% 22A,2C,3A,15A,15B,22 +pryingly 'praIINlI Pu% 3 +psalm sAm K6% 1 +psalmist 'sAmIst K6% 2 +psalmists 'sAmIsts Kj$ 2 +psalmodies 'sAm@dIz Mj$ 3 +psalmody 'sAm@dI M8$ 3 +psalms sAmz Kj% 1 +psalter 'sOlt@R K6$ 2 +psalteries 'sOlt@rIz Kj$ 3 +psalters 'sOlt@z Kj$ 2 +psaltery 'sOlt@rI K8$ 3 +psephologist se'f0l@dZIst K6$ 4 +psephologists se'f0l@dZIsts Kj$ 4 +psephology se'f0l@dZI L@$ 4 +pseud sjud K6% 1 +pseudo 'sjud@U K6$,OA% 2 +pseudo- ,sjud@U- U-% 2 +pseudonym 'sjud@nIm K6% 3 +pseudonymous sju'd0nIm@s OA% 4 +pseudonyms 'sjud@nImz Kj% 3 +pseudos 'sjud@Uz Kj$ 2 +pseuds sjudz Kj% 1 +pshaw pf@ W-$ 1 +psittacosis ,sIt@'k@UsIs L@$ 4 +psyche 'saIkI K6% 2 +psychedelic ,saIkI'delIk OA% 4 +psyches 'saIkIz Kj% 2 +psychiatric ,saIkI'&trIk OA% 4 +psychiatrist sI'kaI@trIst K6% 4 +psychiatrists sI'kaI@trIsts Kj% 4 +psychiatry saI'kaI@trI L@% 4 +psychic 'saIkIk K6%,OA% 2 +psychical 'saIkIkl OA% 3 +psychics 'saIkIks Kj% 2 +psychoanalyse ,saIk@U'&n@laIz H2% 5 +psychoanalysed ,saIk@U'&n@laIzd Hc%,Hd% 5 +psychoanalyses ,saIk@U'&n@laIzIz Ha% 6 +psychoanalysing ,saIk@U'&n@laIzIN Hb% 6 +psychoanalysis ,saIk@U@'n&l@sIs L@% 6 +psychoanalyst ,saIk@U'&n@lIst K6% 5 +psychoanalysts ,saIk@U'&n@lIsts Kj% 5 +psychoanalytic ,saIk@U,&n@'lItIk OA% 6 +psychoanalytical ,saIk@U,&n@'lItIkl OA% 7 +psychoanalyze ,saIk@U'&n@laIz H2% 5 +psychoanalyzed ,saIk@U'&n@laIzd Hc%,Hd% 5 +psychoanalyzes ,saIk@U'&n@laIzIz Ha% 6 +psychoanalyzing ,saIk@U'&n@laIzIN Hb% 6 +psychological ,saIk@'l0dZIkl OA% 5 +psychologically ,saIk@'l0dZIklI Pu% 5 +psychologies saI'k0l@dZIz Mj$ 4 +psychologist saI'k0l@dZIst K6% 4 +psychologists saI'k0l@dZIsts Kj% 4 +psychology saI'k0l@dZI M8% 4 +psychopath 'saIk@Up&T K6% 3 +psychopathic ,saIk@U'p&TIk OA% 4 +psychopaths 'saIk@Up&Ts Kj% 3 +psychoses saI'k@Usiz Kj% 3 +psychosis saI'k@UsIs Ki% 3 +psychosomatic ,saIk@Us@'m&tIk OA% 5 +psychotherapy ,saIk@U'Ter@pI L@% 5 +psychotic saI'k0tIk K6% 3 +psychotics saI'k0tIks Kj% 3 +pt paInt Y]% 1 +ptarmigan 'tAmIg@n K6$ 3 +ptarmigans 'tAmIg@nz Kj$ 3 +pterodactyl ,ter@'d&ktIl K6$ 4 +pterodactyls ,ter@'d&ktIlz Kj$ 4 +ptomaine 't@UmeIn K6$ 2 +ptomaines 't@UmeInz Kj$ 2 +pub pVb K6% 1 +pub-crawl 'pVb-krOl I0$,K6% 2 +pub-crawled 'pVb-krOld Ic$,Id$ 2 +pub-crawling 'pVb-krOlIN Ib$ 3 +pub-crawls 'pVb-krOlz Ia$,Kj$ 2 +puberty 'pjub@tI L@% 3 +pubic 'pjubIk OA% 2 +public 'pVblIk K6%,OA* 2 +public-spirited ,pVblIk-'spIrItId OA% 5 +publican 'pVblIk@n K6% 3 +publicans 'pVblIk@nz Kj% 3 +publication ,pVblI'keISn M6% 4 +publications ,pVblI'keISnz Mj% 4 +publicist 'pVblIsIst K6% 3 +publicists 'pVblIsIsts Kj% 3 +publicity pVb'lIsItI L@% 4 +publicize 'pVblIsaIz H2% 36A +publicized 'pVblIsaIzd Hc%,Hd% 36A +publicizes 'pVblIsaIzIz Ha% 46A +publicizing 'pVblIsaIzIN Hb% 46A +publicly 'pVblIklI Pu% 3 +publics 'pVblIks Kj$ 2 +publish 'pVblIS H1% 26A +published 'pVblISt Hc%,Hd% 26A +publisher 'pVblIS@R K6% 3 +publishers 'pVblIS@z Kj% 3 +publishes 'pVblISIz Ha% 36A +publishing 'pVblISIN Hb% 36A +pubs pVbz Kj% 1 +puce pjus L@$ 1 +puck pVk K6$ 1 +pucker 'pVk@R J0%,K6% 22A,2C,6A,15B +puckered 'pVk@d Jc%,Jd% 22A,2C,6A,15B +puckering 'pVk@rIN Jb% 32A,2C,6A,15B +puckers 'pVk@z Ja%,Kj% 22A,2C,6A,15B +puckish 'pVkIS OA% 2 +puckishly 'pVkISlI Pu% 3 +pucks pVks Kj$ 1 +pud pUd L@% 1 +pudden 'pUdn K6$ 2 +pudden-head 'pUdn-hed K6$ 3 +pudden-heads 'pUdn-hedz Kj$ 3 +puddens 'pUdnz Kj$ 2 +pudding 'pUdIN M6% 2 +pudding-face 'pUdIN-feIs K6$ 3 +pudding-faces 'pUdIN-feIsIz Kj$ 4 +puddings 'pUdINz Mj% 2 +puddle 'pVdl H2$,M6% 2 +puddled 'pVdld Hc$,Hd$ 2 +puddler 'pVdl@R K6$ 2 +puddlers 'pVdl@z Kj$ 2 +puddles 'pVdlz Ha$,Mj% 2 +puddling 'pVdlIN Hb$ 2 +pudenda pju'dend@ Kj$ 3 +pudgier 'pVdZI@R Or% 3 +pudgiest 'pVdZIIst Os% 3 +pudgy 'pVdZI OD% 2 +pueblo 'pwebl@U K6$ 2 +pueblos 'pwebl@Uz Kj$ 2 +puerile 'pjU@raIl OA% 3 +puerilities ,pjU@'rIlItIz Mj$ 5 +puerility ,pjU@'rIlItI M8$ 5 +puerperal pju'3p@r@l OA$ 4 +puff pVf J0%,K6% 12A,2C,6A,15A,15B +puffball 'pVfbOl K6$ 2 +puffballs 'pVfbOlz Kj$ 2 +puffed pVft Jc%,Jd% 12A,2C,6A,15A,15B +puffier 'pVfI@R Or% 3 +puffiest 'pVfIIst Os% 3 +puffin 'pVfIn K6% 2 +puffiness 'pVfIn@s L@% 3 +puffing 'pVfIN Jb% 22A,2C,6A,15A,15B +puffins 'pVfInz Kj% 2 +puffs pVfs Ja%,Kj% 12A,2C,6A,15A,15B +puffy 'pVfI OD% 2 +pug pVg K6% 1 +pug-dog 'pVg-d0g K6% 2 +pug-dogs 'pVg-d0gz Kj% 2 +pug-nose 'pVg-n@Uz K6%,OA% 2 +pug-nosed 'pVg-n@Uzd OA% 2 +pug-noses 'pVg-n@UzIz Kj% 3 +pugilism 'pjudZIlIz@m L@$ 4 +pugilist 'pjudZIlIst K6$ 3 +pugilistic ,pjudZI'lIstIk OA$ 4 +pugilists 'pjudZIlIsts Kj$ 3 +pugnacious pVg'neIS@s OA% 3 +pugnaciously pVg'neIS@slI Pu% 4 +pugnacity pVg'n&sItI L@% 4 +pugs pVgz Kj% 1 +puissance 'pwisAns L@$ 2 +puissant 'pwis@nt OA$ 2 +puke pjuk J2%,L@% 1 +puked pjukt Jc%,Jd% 1 +pukes pjuks Ja% 1 +puking 'pjukIN Jb% 2 +pukka 'pVk@ OA% 2 +pulchritude 'pVlkrItjud L@$ 3 +pulchritudinous ,pVlkrI'tjudIn@s OA$ 5 +pule pjul I2$ 12A +puled pjuld Ic$,Id$ 12A +pules pjulz Ia$ 12A +puling 'pjulIN Ib$ 22A +pull pUl J0%,M6% 12A,2C,3A,6A,15A,15B,22 +pull-in 'pUl-In K6% 2 +pull-ins 'pUl-Inz Kj$ 2 +pull-off 'pUl-0f K6$ 2 +pull-offs 'pUl-0fs Kj$ 2 +pull-out 'pUl-aUt K6% 2 +pull-outs 'pUl-aUts Kj$ 2 +pull-through 'pUl-Tru K6% 2 +pull-throughs 'pUl-Truz Kj$ 2 +pull-up 'pUl-Vp K6% 2 +pull-ups 'pUl-Vps Kj$ 2 +pulled pUld Jc%,Jd% 12A,2C,3A,6A,15A,15B,22 +pullet 'pUlIt K6% 2 +pullets 'pUlIts Kj% 2 +pulley 'pUlI K6% 2 +pulley-block 'pUlI-bl0k K6% 3 +pulley-blocks 'pUlI-bl0ks Kj% 3 +pulleys 'pUlIz Kj% 2 +pulling 'pUlIN Jb% 22A,2C,3A,6A,15A,15B,22 +pullover 'pUl@Uv@R K6% 3 +pullovers 'pUl@Uv@z Kj% 3 +pulls pUlz Ja%,Mj% 12A,2C,3A,6A,15A,15B,22 +pullulate 'pVljUleIt I2$ 3 +pullulated 'pVljUleItId Ic$,Id$ 4 +pullulates 'pVljUleIts Ia$ 3 +pullulating 'pVljUleItIN Ib$ 4 +pulmonary 'pVlm@n@rI OA% 4 +pulp pVlp J0%,M6% 12A,6A +pulped pVlpt Jc%,Jd% 12A,6A +pulpier 'pVlpI@R Or$ 3 +pulpiest 'pVlpIIst Os$ 3 +pulping 'pVlpIN Jb% 22A,6A +pulpit 'pUlpIt K6% 2 +pulpits 'pUlpIts Kj% 2 +pulps pVlps Ja%,Mj% 12A,6A +pulpy 'pVlpI OD% 2 +pulque 'pulkeI L@$ 2 +pulsar 'pVlsAR K6$ 2 +pulsars 'pVlsAz Kj$ 2 +pulsate pVl'seIt J2% 22A,6A +pulsated pVl'seItId Jc%,Jd% 32A,6A +pulsates pVl'seIts Ja% 22A,6A +pulsating pVl'seItIN Jb% 32A,6A +pulsation pVl'seISn M6% 3 +pulsations pVl'seISnz Mj% 3 +pulse pVls I2%,M6% 12C +pulsed pVlst Ic%,Id% 12C +pulses 'pVlsIz Ia%,Mj% 22C +pulsing 'pVlsIN Ib% 22C +pulverize 'pVlv@raIz J2% 32A,6A +pulverized 'pVlv@raIzd Jc%,Jd% 32A,6A +pulverizes 'pVlv@raIzIz Ja% 42A,6A +pulverizing 'pVlv@raIzIN Jb% 42A,6A +puma 'pjum@ K6$ 2 +pumas 'pjum@z Kj$ 2 +pumice 'pVmIs L@$ 2 +pumice-stone 'pVmIs-st@Un K6$ 3 +pumice-stones 'pVmIs-st@Unz Kj$ 3 +pummel 'pVm@l H4% 26A,15B +pummelled 'pVm@ld Hc%,Hd% 26A,15B +pummelling 'pVm@lIN Hb% 36A,15B +pummels 'pVm@lz Ha% 26A,15B +pump pVmp J0%,K6% 12A,2C,6A,15A,15B,22 +pump-room 'pVmp-rum K6% 2 +pump-rooms 'pVmp-rumz Kj% 2 +pumped pVmpt Jc%,Jd% 12A,2C,6A,15A,15B,22 +pumpernickel 'pVmp@nIkl L@$ 4 +pumping 'pVmpIN Jb% 22A,2C,6A,15A,15B,22 +pumpkin 'pVmpkIn K6% 2 +pumpkins 'pVmpkInz Kj% 2 +pumps pVmps Ja%,Kj% 12A,2C,6A,15A,15B,22 +pun pVn I4%,K6% 12A,3A +punch pVntS H1%,M7% 16A,15A,15B +punch-drunk 'pVntS-drVNk OA% 2 +punch-up 'pVntS-Vp K6% 2 +punch-ups 'pVntS-Vps Kj% 2 +punchball 'pVntSbOl K6% 2 +punchballs 'pVntSbOlz Kj% 2 +punchbowl 'pVntSb@Ul K6% 2 +punchbowls 'pVntSb@Ulz Kj% 2 +punched pVntSt Hc%,Hd% 16A,15A,15B +punches 'pVntSIz Ha%,Mj% 26A,15A,15B +punching 'pVntSIN Hb% 26A,15A,15B +punching-ball 'pVntSIN-bOl K6$ 3 +punching-balls 'pVntSIN-bOlz Kj$ 3 +punctilio pVNk'tIlI@U M6$ 4 +punctilios pVNk'tIlI@Uz Mj$ 4 +punctilious pVNk'tIlI@s OA% 4 +punctiliously pVNk'tIlI@slI Pu% 5 +punctiliousness pVNk'tIlI@sn@s L@% 5 +punctual 'pVNktSU@l OA% 3 +punctuality ,pVNktSU'&lItI L@% 5 +punctually 'pVNktSU@lI Pu% 4 +punctuate 'pVNktSUeIt H2% 36A,15A +punctuated 'pVNktSUeItId Hc%,Hd% 46A,15A +punctuates 'pVNktSUeIts Ha% 36A,15A +punctuating 'pVNktSUeItIN Hb% 46A,15A +punctuation ,pVNktSU'eISn L@% 4 +puncture 'pVNktS@R J2%,K6% 22A,6A +punctured 'pVNktS@d Jc%,Jd% 22A,6A +punctures 'pVNktS@z Ja%,Kj% 22A,6A +puncturing 'pVNktS@rIN Jb% 32A,6A +pundit 'pVndIt K6% 2 +pundits 'pVndIts Kj% 2 +pungency 'pVndZ@nsI L@% 3 +pungent 'pVndZ@nt OA% 2 +pungently 'pVndZ@ntlI Pu% 3 +punier 'pjunI@R Or% 3 +puniest 'pjunIIst Os% 3 +punily 'pjunIlI Pu% 3 +punish 'pVnIS H1% 26A,14 +punishable 'pVnIS@bl OA% 4 +punished 'pVnISt Hc%,Hd% 26A,14 +punishes 'pVnISIz Ha% 36A,14 +punishing 'pVnISIN Hb% 36A,14 +punishment 'pVnISm@nt M6% 3 +punishments 'pVnISm@nts Mj% 3 +punitive 'pjunItIv OA% 3 +punk pVNk M6% 1 +punkah 'pVNk@ K6$ 2 +punkahs 'pVNk@z Kj$ 2 +punks pVNks Mj% 1 +punned pVnd Ic%,Id% 12A,3A +punnet 'pVnIt K6% 2 +punnets 'pVnIts Kj% 2 +punning 'pVnIN Ib% 22A,3A +puns pVnz Ia%,Kj% 12A,3A +punster 'pVnst@R K6$ 2 +punsters 'pVnst@z Kj$ 2 +punt pVnt J0%,K6% 12A,6A +punted 'pVntId Jc%,Jd% 22A,6A +punter 'pVnt@R K6% 2 +punters 'pVnt@z Kj% 2 +punting 'pVntIN Jb% 22A,6A +punts pVnts Ja%,Kj% 12A,6A +puny 'pjunI OD% 2 +pup pVp K6% 1 +pupa 'pjup@ K6$ 2 +pupae 'pjupi Kj$ 2 +pupas 'pjup@z Kj$ 2 +pupil 'pjupl K6% 2 +pupils 'pjuplz Kj% 2 +puppet 'pVpIt K6% 2 +puppeteer ,pVpI'tI@R K6% 3 +puppeteers ,pVpI'tI@z Kj% 3 +puppets 'pVpIts Kj% 2 +puppies 'pVpIz Kj% 2 +puppy 'pVpI K8% 2 +pups pVps Kj% 1 +pur_ee 'pjU@reI K6% 2 +pur_ees 'pjU@reIz Kj$ 2 +purblind 'p3blaInd OA$ 2 +purchasable 'p3tS@s@bl OA% 4 +purchase 'p3tS@s H2%,M6% 26A +purchased 'p3tS@st Hc%,Hd% 26A +purchaser 'p3tS@s@R K6% 3 +purchasers 'p3tS@s@z Kj% 3 +purchases 'p3tS@sIz Ha%,Mj% 36A +purchasing 'p3tS@sIN Hb% 36A +purdah 'p3d@ L@$ 2 +pure pjU@R OB% 1 +purely 'pjU@lI Pu% 2 +pureness 'pjU@n@s L@% 2 +purer 'pjU@r@R Or% 2 +purest 'pjU@rIst Os% 2 +purgation p3'geISn L@$ 3 +purgative 'p3g@tIv K6%,OA% 3 +purgatives 'p3g@tIvz Kj% 3 +purgatorial ,p3g@'tOrI@l OA$ 5 +purgatories 'p3g@trIz Kj% 3 +purgatory 'p3g@trI K8% 3 +purge p3dZ H2%,K6% 16A,14,15A,15B +purged p3dZd Hc%,Hd% 16A,14,15A,15B +purges 'p3dZIz Ha%,Kj% 26A,14,15A,15B +purging 'p3dZIN Hb% 26A,14,15A,15B +purification ,pjU@rIfI'keISn M6% 5 +purifications ,pjU@rIfI'keISnz Mj% 5 +purified 'pjU@rIfaId Hc%,Hd% 36A,14 +purifier 'pjU@rIfaI@R K6% 4 +purifiers 'pjU@rIfaI@z Kj% 4 +purifies 'pjU@rIfaIz Ha% 36A,14 +purify 'pjU@rIfaI H3% 36A,14 +purifying 'pjU@rIfaIIN Hb% 46A,14 +purist 'pjU@rIst K6% 2 +purists 'pjU@rIsts Kj% 2 +puritan 'pjU@rIt@n K6%,OA% 3 +puritanical ,pjU@rI't&nIkl OA% 5 +puritanically ,pjU@rI't&nIklI Pu% 5 +puritanism 'pjU@rIt@nIz@m L@% 5 +puritans 'pjU@rIt@nz Kj% 3 +purity 'pjU@rItI L@% 3 +purl p3l J0$,K6$ 1 +purled p3ld Jc$,Jd$ 1 +purlieus 'p3ljuz Kj$ 2 +purling 'p3lIN Jb$ 2 +purloin p3'loIn H0% 26A +purloined p3'loInd Hc%,Hd% 26A +purloining p3'loInIN Hb% 36A +purloins p3'loInz Ha% 26A +purls p3lz Ja$,Kj$ 1 +purple 'p3pl M6%,OA% 2 +purples 'p3plz Mj% 2 +purplish 'p3plIS OA% 2 +purport 'p3p@t L@% 2 +purport p@'pOt H0% 26A,7A,9 +purported p@'pOtId Hc%,Hd% 36A,7A,9 +purporting p@'pOtIN Hb% 36A,7A,9 +purports p@'pOts Ha% 26A,7A,9 +purpose 'p3p@s H2$,M6% 26A,6D,7A,9 +purpose-built 'p3p@s-bIlt OA% 3 +purposed 'p3p@st Hc$,Hd$ 26A,6D,7A,9 +purposeful 'p3p@sf@l OA% 3 +purposefully 'p3p@sf@lI Pu% 4 +purposeless 'p3p@sl@s OA% 3 +purposelessly 'p3p@sl@slI Pu% 4 +purposely 'p3p@slI Pu% 3 +purposes 'p3p@sIz Ha$,Mj% 36A,6D,7A,9 +purposing 'p3p@sIN Hb$ 36A,6D,7A,9 +purposive 'p3p@sIv OA$ 3 +purr p3R J0%,K6% 12A,2C,6A +purred p3d Jc%,Jd% 12A,2C,6A +purring 'p3rIN Jb% 22A,2C,6A +purrs p3z Ja%,Kj% 12A,2C,6A +purse p3s H2%,K6% 16A,15B +purse-proud 'p3s-praUd OA$ 2 +pursed p3st Hc%,Hd% 16A,15B +purser 'p3s@R K6% 2 +pursers 'p3s@z Kj% 2 +purses 'p3sIz Ha%,Kj% 26A,15B +pursing 'p3sIN Hb% 26A,15B +pursuance p@'sju@ns K6% 3 +pursuances p@'sju@nsIz Kj$ 4 +pursuant p@'sju@nt OA% 3 +pursue p@'sju H2% 26A +pursued p@'sjud Hc%,Hd% 26A +pursuer p@'sju@R K6% 3 +pursuers p@'sju@z Kj% 3 +pursues p@'sjuz Ha% 26A +pursuing p@'sjuIN Hb% 36A +pursuit p@'sjut M6% 2 +pursuits p@'sjuts Mj% 2 +pursy 'p3sI OA$ 2 +purulence 'pjU@r@l@ns L@$ 3 +purulent 'pjU@r@l@nt OA$ 3 +purvey p@'veI J0% 23A,6A,14 +purveyance p@'veI@ns M6% 3 +purveyances p@'veI@nsIz Mj$ 4 +purveyed p@'veId Jc%,Jd% 23A,6A,14 +purveying p@'veIIN Jb% 33A,6A,14 +purveyor p@'veI@R K6% 3 +purveyors p@'veI@z Kj% 3 +purveys p@'veIz Ja% 23A,6A,14 +purview 'p3vju K6$ 2 +purviews 'p3vjuz Kj$ 2 +pus pVs L@% 1 +push pUS J1%,M7% 12A,2C,3A,6A,14,15A,15B,17,22 +push-bike 'pUS-baIk K6% 2 +push-bikes 'pUS-baIks Kj% 2 +pushcart 'pUSkAt K6% 2 +pushcarts 'pUSkAts Kj% 2 +pushchair 'pUStSe@R K6% 2 +pushchairs 'pUStSe@z Kj% 2 +pushed pUSt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B,17,22 +pusher 'pUS@R K6% 2 +pushers 'pUS@z Kj% 2 +pushes 'pUSIz Ja%,Mj% 22A,2C,3A,6A,14,15A,15B,17,22 +pushful 'pUSfUl OA$ 2 +pushing 'pUSIN Jb%,OA% 22A,2C,3A,6A,14,15A,15B,17,22 +pushover 'pUS@Uv@R K6% 3 +pushovers 'pUS@Uv@z Kj$ 3 +pusillanimity ,pjusIl@'nImItI L@$ 6 +pusillanimous ,pjusI'l&nIm@s OA% 5 +puss pUs Ki% 1 +pussies 'pUsIz Kj% 2 +pussy 'pUsI K8% 2 +pussycat 'pUsIk&t K6% 3 +pussycats 'pUsIk&ts Kj% 3 +pussyfoot 'pUsIfUt I0% 32A,2C +pussyfooted 'pUsIfUtId Ic%,Id% 42A,2C +pussyfooting 'pUsIfUtIN Ib% 42A,2C +pussyfoots 'pUsIfUts Ia% 32A,2C +pustule 'pVstjul K6$ 2 +pustules 'pVstjulz Kj$ 2 +put pUt J5*,Jc*,Jd* 12C,6A,14,15A,15B,22 +put pVt J4%,K6% 1 +put-down 'pUt-daUn K6% 2 +put-downs 'pUt-daUnz Kj$ 2 +put-on 'pUt-0n K6% 2 +put-ons 'pUt-0nz Kj$ 2 +putative 'pjut@tIv OA% 3 +putrefaction ,pjutrI'f&kSn K6% 4 +putrefactions ,pjutrI'f&kSnz Kj$ 4 +putrefied 'pjutrIfaId Jc%,Jd% 32A,6A +putrefies 'pjutrIfaIz Ja% 32A,6A +putrefy 'pjutrIfaI J3% 32A,6A +putrefying 'pjutrIfaIIN Jb% 42A,6A +putrescence pju'tresns K6$ 3 +putrescences pju'tresnsIz Kj$ 4 +putrescent pju'tresnt OA$ 3 +putrid 'pjutrId OA% 2 +putridity pju'trIdItI L@$ 4 +puts pUts Ja% 12C,6A,14,15A,15B,22 +puts pVts Ja$,Kj$ 1 +putsch pUtS K7$ 1 +putsches 'pUtSIz Kj$ 2 +putt pVt J0$,K6$ 12A,6A +putted 'pVtId Jc$,Jd$ 22A,6A +puttee 'pVtI K6$ 2 +puttees 'pVtIz Kj$ 2 +putter 'pVt@R J0$ 2 +puttered 'pVt@d Jc$,Jd$ 2 +puttering 'pVt@rIN Jb$ 3 +putters 'pVt@z Ja$ 2 +puttied 'pVtId Hc$,Hd$ 26A,15B +putties 'pVtIz Ha$ 26A,15B +putting 'pVtIN Jb% 22A,2C,6A,14,15A,15B,22 +putting-green 'pVtIN-grin K6% 3 +putting-greens 'pVtIN-grinz Kj% 3 +putting-iron 'pVtIN-aI@n K6% 4 +putting-irons 'pVtIN-aI@nz Kj% 4 +putts pVts Ja%,Kj% 12A,6A +putty 'pVtI H3$,L@% 26A,15B +puttying 'pVtIIN Hb$ 36A,15B +puzzle 'pVzl J2%,K6% 23A,6A,15B +puzzled 'pVzld Jc%,Jd% 23A,6A,15B +puzzlement 'pVzlm@nt K6% 3 +puzzlements 'pVzlm@nts Kj% 3 +puzzler 'pVzl@R K6% 2 +puzzlers 'pVzl@z Kj% 2 +puzzles 'pVzlz Ja%,Kj% 23A,6A,15B +puzzling 'pVzlIN Jb% 23A,6A,15B +pygmies 'pIgmIz Kj% 2 +pygmy 'pIgmI K8% 2 +pyjama p@'dZAm@ Oq% 3 +pyjamas p@'dZAm@z Kj% 3 +pylon 'paIl0n K6% 2 +pylons 'paIl0nz Kj% 2 +pyorrhoea ,paI@'rI@ L@$ 4 +pyramid 'pIr@mId K6% 3 +pyramids 'pIr@mIdz Kj% 3 +pyre 'paI@R K6$ 1 +pyres 'paI@z Kj$ 1 +pyrites ,paI@'raItiz L@$ 3 +pyrotechnic ,paIr@U'teknIk OA% 4 +pyrotechnics ,paIr@'teknIks Kj% 4 +python 'paITn K6% 2 +pythons 'paITnz Kj% 2 +pyx pIks K7$ 1 +pyxes 'pIksIz Kj$ 2 +q kju Ki$ 1 +q's kjuz Kj$ 1 +qt kwOt Y]$ 1 +qua kweI T-$,V-$ 1 +quack kw&k I0%,K6% 1 +quack-quack 'kw&k-kw&k K6% 2 +quack-quacks 'kw&k-kw&ks Kj% 2 +quacked kw&kt Ic%,Id% 1 +quackery 'kw&k@rI L@$ 3 +quacking 'kw&kIN Ib% 2 +quacks kw&ks Ia%,Kj% 1 +quad kw0d K6% 1 +quadrangle 'kw0dr&Ngl K6% 3 +quadrangles 'kw0dr&Nglz Kj% 3 +quadrangular kw0'dr&NgjUl@R OA% 4 +quadrant 'kw0dr@nt K6% 2 +quadrants 'kw0dr@nts Kj% 2 +quadratic kw0'dr&tIk OA% 3 +quadrilateral ,kw0drI'l&t@r@l K6%,OA% 5 +quadrilaterals ,kw0drI'l&t@r@lz Kj% 5 +quadrille kw@'drIl K6$ 2 +quadrilles kw@'drIlz Kj$ 2 +quadrillion kw0'drIlI@n K6$ 4 +quadrillions kw0'drIlI@nz Kj$ 4 +quadrophonic ,kw0dr@'f0nIk OA% 4 +quadrophony kw0'dr0f@nI L@$ 4 +quadruped 'kw0drUped K6% 3 +quadrupeds 'kw0drUpedz Kj% 3 +quadruple 'kw0drupl K6%,OA% 3 +quadruple kw0'drupl J2% 32A,6A +quadrupled kw0'drupld Jc%,Jd% 32A,6A +quadruples 'kw0druplz Kj% 3 +quadruples kw0'druplz Ja% 32A,6A +quadruplet 'kw0drupl@t K6$ 3 +quadruplets 'kw0drupl@ts Kj$ 3 +quadruplicate kw0'druplIk@t K6%,OA% 4 +quadruplicate kw0'druplIkeIt H2$ 46A +quadruplicated kw0'druplIkeItId Hc$,Hd$ 56A +quadruplicates kw0'druplIk@ts Kj$ 4 +quadruplicates kw0'druplIkeIts Ha$ 46A +quadruplicating kw0'druplIkeItIN Hb$ 56A +quadrupling kw0'druplIN Jb% 32A,6A +quads kw0dz Kj% 1 +quaff kw0f J0% 12A,6A,15B +quaffed kw0ft Jc%,Jd% 12A,6A,15B +quaffing 'kw0fIN Jb% 22A,6A,15B +quaffs kw0fs Ja% 12A,6A,15B +quagga 'kw&g@ K6$ 2 +quaggas 'kw&g@z Kj$ 2 +quagmire 'kw&gmaI@R K6% 2 +quagmires 'kw&gmaI@z Kj% 2 +quail kweIl I0%,K6% 12A,3A +quailed kweIld Ic%,Id% 12A,3A +quailing 'kweIlIN Ib% 22A,3A +quails kweIlz Ia%,Kj% 12A,3A +quaint kweInt OC% 1 +quainter 'kweInt@R Or% 2 +quaintest 'kweIntIst Os% 2 +quaintly 'kweIntlI Pu% 2 +quaintness 'kweIntn@s L@% 2 +quake kweIk I2%,K6% 12A,2C +quaked kweIkt Ic%,Id% 12A,2C +quakes kweIks Ia%,Kj% 12A,2C +quaking 'kweIkIN Ib% 22A,2C +qualification ,kw0lIfI'keISn M6% 5 +qualifications ,kw0lIfI'keISnz Mj% 5 +qualified 'kw0lIfaId Jc%,Jd%,OA% 32C,3A,4A,6A,14,16B,17 +qualifier 'kw0lIfaI@R K6% 4 +qualifiers 'kw0lIfaI@z Kj% 4 +qualifies 'kw0lIfaIz Ja% 32C,3A,4A,6A,14,16B,17 +qualify 'kw0lIfaI J3% 32C,3A,4A,6A,14,16B,17 +qualifying 'kw0lIfaIIN Jb% 42C,3A,4A,6A,14,16B,17 +qualitative 'kw0lIt@tIv OA% 4 +qualitatively 'kw0lIt@tIvlI Pu% 5 +qualities 'kw0lItIz Mj% 3 +quality 'kw0lItI M8% 3 +qualm kwAm K6% 1 +qualms kwAmz Kj% 1 +quandaries 'kw0nd@rIz Kj$ 3 +quandary 'kw0nd@rI K8% 3 +quango 'kw&Ng@U K6$ 2 +quangos 'kw&Ng@Uz Kj$ 2 +quanta 'kw0nt@ Kj$ 2 +quantified 'kw0ntIfaId Hc%,Hd% 36A +quantifies 'kw0ntIfaIz Ha% 36A +quantify 'kw0ntIfaI H3% 36A +quantifying 'kw0ntIfaIIN Hb% 46A +quantitative 'kw0ntIt@tIv OA% 4 +quantitatively 'kw0ntIt@tIvlI Pu% 5 +quantities 'kw0ntItIz Mj% 3 +quantity 'kw0ntItI M8% 3 +quantum 'kw0nt@m Ki% 2 +quarantine 'kw0r@ntin H2%,L@% 36A +quarantined 'kw0r@ntind Hc%,Hd% 36A +quarantines 'kw0r@ntinz Ha% 36A +quarantining 'kw0r@ntinIN Hb% 46A +quark kwAk K6$ 1 +quarks kwAks Kj$ 1 +quarrel 'kw0r@l I4%,K6% 22A,2C,3A +quarrelled 'kw0r@ld Ic%,Id% 22A,2C,3A +quarrelling 'kw0r@lIN Ib% 32A,2C,3A +quarrels 'kw0r@lz Ia%,Kj% 22A,2C,3A +quarrelsome 'kw0r@ls@m OA% 3 +quarried 'kw0rId Jc%,Jd% 22A,2C,6A,15A,15B +quarries 'kw0rIz Ja%,Kj% 22A,2C,6A,15A,15B +quarry 'kw0rI J3%,K8% 22A,2C,6A,15A,15B +quarrying 'kw0rIIN Jb% 32A,2C,6A,15A,15B +quarryman 'kw0rIm@n Ki% 3 +quarrymen 'kw0rIm@n Kj% 3 +quart kwOt K6% 1 +quarter 'kwOt@R H0%,M6% 26A,15A +quarter-day 'kwOt@-deI K6% 3 +quarter-days 'kwOt@-deIz Kj% 3 +quarter-deck 'kwOt@-dek K6% 3 +quarter-decks 'kwOt@-deks Kj% 3 +quarter-plate 'kwOt@-pleIt K6$ 3 +quarter-plates 'kwOt@-pleIts Kj$ 3 +quartered 'kwOt@d Hc%,Hd% 26A,15A +quarterfinal ,kwOt@'faInl K6% 4 +quarterfinals ,kwOt@'faInlz Kj% 4 +quartering 'kwOt@rIN Hb$,K6$ 36A,15A +quarterings 'kwOt@rINz Kj$ 3 +quarterlies 'kwOt@lIz Kj% 3 +quarterlight 'kwOt@laIt K6$ 3 +quarterlights 'kwOt@laIts Kj$ 3 +quarterly 'kwOt@lI K8%,OA%,Pu% 3 +quartermaster 'kwOt@mAst@R K6% 4 +quartermaster-general ,kwOt@mAst@-'dZenr@l K6% 6 +quartermaster-generals ,kwOt@mAst@-'dZenr@lz Kj% 6 +quartermasters 'kwOt@mAst@z Kj% 4 +quarters 'kwOt@z Ha%,Mj% 26A,15A +quarterstaff 'kwOt@stAf K6$ 3 +quarterstaffs 'kwOt@stAfs Kj$ 3 +quartet kwO'tet K6% 2 +quartets kwO'tets Kj% 2 +quarto 'kwOt@U K6$ 2 +quartos 'kwOt@Uz Kj$ 2 +quarts kwOts Kj% 1 +quartz kwOts L@% 1 +quasar 'kweIzAR K6$ 2 +quasars 'kweIzAz Kj$ 2 +quash kw0S H1% 16A +quashed kw0St Hc%,Hd% 16A +quashes 'kw0SIz Ha% 26A +quashing 'kw0SIN Hb% 26A +quasi- 'kweIsaI- U-% 2 +quassia 'kw0S@ L@$ 2 +quatercentenaries ,kw0t@sen'tin@rIz Kj% 6 +quatercentenary ,kw0t@sen'tin@rI K8% 6 +quatrain 'kw0treIn K6$ 2 +quatrains 'kw0treInz Kj$ 2 +quattrocento ,kw&tr@U'tSent@U K6$ 4 +quattrocentos ,kw&tr@U'tSent@Uz Kj$ 4 +quaver 'kweIv@R J0%,K6% 22A,6A,15B +quavered 'kweIv@d Jc%,Jd% 22A,6A,15B +quavering 'kweIv@rIN Jb% 32A,6A,15B +quavers 'kweIv@z Ja%,Kj% 22A,6A,15B +quay ki K6% 1 +quays kiz Kj% 1 +queasier 'kwizI@R Or% 3 +queasiest 'kwizIIst Os% 3 +queasily 'kwizIlI Pu% 3 +queasiness 'kwizIn@s L@% 3 +queasy 'kwizI OD% 2 +queen kwin H0$,K6% 1 +queened kwind Hc$,Hd$ 1 +queening 'kwinIN Hb$ 2 +queenlier 'kwinlI@R Or$ 3 +queenliest 'kwinlIIst Os$ 3 +queenly 'kwinlI OD% 2 +queens kwinz Ha$,Kj% 1 +queer kwI@R H0%,K6%,OC% 16A +queered kwI@d Hc%,Hd% 16A +queerer 'kwI@r@R Or% 2 +queerest 'kwI@rIst Os% 2 +queering 'kwI@rIN Hb% 26A +queerly 'kwI@lI Pu% 2 +queerness 'kwI@n@s L@% 2 +queers kwI@z Ha%,Kj% 16A +quell kwel H0% 16A +quelled kweld Hc%,Hd% 16A +quelling 'kwelIN Hb% 26A +quells kwelz Ha% 16A +quench kwentS H1% 16A +quenched kwentSt Hc%,Hd% 16A +quenches 'kwentSIz Ha% 26A +quenching 'kwentSIN Hb% 26A +quenchless 'kwentSl@s OA$ 2 +queried 'kwI@rId Hc%,Hd% 26A,10 +queries 'kwI@rIz Ha%,Kj% 26A,10 +quern kw3n K6$ 1 +querns kw3nz Kj$ 1 +querulous 'kwerUl@s OA% 3 +querulously 'kwerUl@slI Pu% 4 +querulousness 'kwerUl@sn@s L@% 4 +query 'kwI@rI H3%,K8% 26A,10 +querying 'kwI@rIIN Hb% 36A,10 +quest kwest I0$,K6% 13A +quested 'kwestId Ic$,Id$ 23A +questing 'kwestIN Ib$ 23A +question 'kwestS@n H0%,M6* 26A,10 +question-mark 'kwestS@n-mAk K6% 3 +question-marks 'kwestS@n-mAks Kj% 3 +question-master 'kwestS@n-mAst@R K6% 4 +question-masters 'kwestS@n-mAst@z Kj% 4 +questionable 'kwestS@n@bl OA% 4 +questionably 'kwestS@n@blI Pu% 4 +questioned 'kwestS@nd Hc%,Hd% 26A,10 +questioner 'kwestS@n@R K6% 3 +questioners 'kwestS@n@z Kj% 3 +questioning 'kwestS@nIN Hb% 36A,10 +questioningly 'kwestS@nINlI Pu% 4 +questionnaire ,kwestS@'ne@R K6% 3 +questionnaires ,kwestS@'ne@z Kj% 3 +questions 'kwestS@nz Ha%,Mj% 26A,10 +quests kwests Ia$,Kj% 13A +quetzal 'kwetsl K6$ 2 +quetzals 'kwetslz Kj$ 2 +queue kju I5%,K6% 12A,2C,3A +queued kjud Ic%,Id% 12A,2C,3A +queueing 'kjuIN Ib% 22A,2C,3A +queues kjuz Ia%,Kj% 12A,2C,3A +qui vive ,ki 'viv L@$ 2 +quibble 'kwIbl I2%,K6% 2 +quibbled 'kwIbld Ic%,Id% 2 +quibbler 'kwIbl@R K6% 2 +quibblers 'kwIbl@z Kj% 2 +quibbles 'kwIblz Ia%,Kj% 2 +quibbling 'kwIblIN Ib%,OA% 2 +quiche kiS K6% 1 +quiches 'kiSIz Kj% 2 +quick kwIk L@%,OC%,Pu% 1 +quick-change kwIk-'tSeIndZ Oq% 2 +quick-eared kwIk-'I@d OA$ 2 +quick-eyed 'kwIk-aId OA$ 2 +quick-freeze kwik-'friz H5$ 2 +quick-freezes kwik-'frizIz Ha$ 3 +quick-freezing kwik-'frizIN Hb$ 3 +quick-froze kwik-'fr@Uz Hc$ 2 +quick-frozen kwik-'fr@Uzn Hd% 3 +quick-sighted kwIk-'saItId OA% 3 +quick-tempered kwIk-'temp@d OA% 3 +quick-witted kwIk-'wItId OA% 3 +quicken 'kwIk@n J0% 22A,6A +quickened 'kwIk@nd Jc%,Jd% 22A,6A +quickening 'kwIk@nIN Jb% 32A,6A +quickens 'kwIk@nz Ja% 22A,6A +quicker 'kwIk@R Or%,Pu% 2 +quickest 'kwIkIst Os%,Pu% 2 +quickie 'kwIkI K6% 2 +quickies 'kwIkIz Kj% 2 +quicklime 'kwIklaIm L@% 2 +quickly 'kwIklI Pu% 2 +quickness 'kwIkn@s L@% 2 +quicksand 'kwIks&nd M6% 2 +quicksands 'kwIks&ndz Mj% 2 +quickset 'kwIkset OA% 2 +quicksilver 'kwIksIlv@R L@% 3 +quickstep 'kwIkstep K6% 2 +quicksteps 'kwIksteps Kj$ 2 +quid kwId K9% 1 +quid pro quo ,kwId pr@U 'kw@U Ki% 3 +quids kwIdz Kj$ 1 +quiescence kwaI'esns Ki% 3 +quiescent kwaI'esnt OA% 3 +quiescently kwaI'esntlI Pu% 4 +quiet 'kwaI@t J0%,L@%,OC% 2 +quieted 'kwaI@tId Jc%,Jd% 3 +quieten 'kwaI@tn J0% 32C,6A,15B +quietened 'kwaI@tnd Jc%,Jd% 32C,6A,15B +quietening 'kwaI@tnIN Jb% 32C,6A,15B +quietens 'kwaI@tnz Ja% 32C,6A,15B +quieter 'kwaI@t@R Or% 3 +quietest 'kwaI@tIst Os% 3 +quieting 'kwaI@tIN Jb% 3 +quietism 'kwaIItIz@m L@$ 4 +quietist 'kwaI@tIst K6$ 3 +quietists 'kwaI@tIsts Kj$ 3 +quietly 'kwaI@tlI Pu% 3 +quietness 'kwaI@tn@s L@% 3 +quiets 'kwaI@ts Ja% 2 +quietude 'kwaIItjud Ki$ 3 +quietus kwaI'it@s K7$ 3 +quietuses kwaI'it@sIz Kj$ 4 +quiff kwIf K6$ 1 +quiffs kwIfs Kj$ 1 +quill kwIl K6% 1 +quill-feather 'kwIl-feD@R K6% 3 +quill-feathers 'kwIl-feD@z Kj% 3 +quills kwIlz Kj% 1 +quilt kwIlt H0%,K6% 1 +quilted 'kwIltId Hc%,Hd% 2 +quilting 'kwIltIN Hb% 2 +quilts kwIlts Ha%,Kj% 1 +quin kwIn K6% 1 +quince kwIns K6% 1 +quincentenaries ,kwInsen'tin@rIz Kj% 5 +quincentenary ,kwInsen'tin@rI K8%,OA% 5 +quinces 'kwInsIz Kj% 2 +quinine kwI'nin L@% 2 +quins kwInz Kj% 1 +quinsy 'kwInzI L@$ 2 +quintal 'kwIntl K6$ 2 +quintals 'kwIntlz Kj$ 2 +quintessence kwIn'tesns K6% 3 +quintessences kwIn'tesnsIz Kj$ 4 +quintet kwIn'tet K6% 2 +quintets kwIn'tets Kj% 2 +quintuplet 'kwIntjuplet K6% 3 +quintuplets 'kwIntjuplets Kj% 3 +quip kwIp I4%,K6% 1 +quipped kwIpt Ic%,Id% 1 +quipping 'kwIpIN Ib% 2 +quips kwIps Ia%,Kj% 1 +quire 'kwaI@R K6$ 1 +quires 'kwaI@z Kj$ 1 +quirk kw3k K6% 1 +quirks kw3ks Kj% 1 +quisling 'kwIzlIN K6$ 2 +quislings 'kwIzlINz Kj$ 2 +quit kwIt H4%,Hc%,Hd%,Op% 12A,6A,6D +quite kwaIt Pu* 1 +quits kwIts Ha%,Op% 12A,6A,6D +quittance 'kwItns K6$ 2 +quittances 'kwItnsIz Kj$ 3 +quitted 'kwItId Hc%,Hd% 22A,6A,6D +quitter 'kwIt@R K6% 2 +quitters 'kwIt@z Kj% 2 +quitting 'kwItIN Hb% 22A,6A,6D +quiver 'kwIv@R J0%,K6% 22A,6A +quivered 'kwIv@d Jc%,Jd% 22A,6A +quivering 'kwIv@rIN Jb% 32A,6A +quivers 'kwIv@z Ja%,Kj% 22A,6A +quixotic kwIk's0tIk OA% 3 +quixotically kwIk's0tIklI Pu% 4 +quiz kwIz H5%,K7% 16A +quizes 'kwIzIz Kj% 2 +quizmaster 'kwIzmAst@R K6% 3 +quizmasters 'kwIzmAst@z Kj% 3 +quizzed kwIzd Hc%,Hd% 16A +quizzes 'kwIzIz Ha% 26A +quizzical 'kwIzIkl OA% 3 +quizzically 'kwIzIklI Pu% 3 +quizzing 'kwIzIN Hb% 26A +quoin koIn K6$ 1 +quoins koInz Kj$ 1 +quoit koIt K6% 1 +quoits koIts Kj% 1 +quorum 'kwOr@m K6% 2 +quorums 'kwOr@mz Kj$ 2 +quota 'kw@Ut@ K6% 2 +quotability ,kw@Ut@'bIlItI L@% 5 +quotable 'kw@Ut@bl OA% 3 +quotas 'kw@Ut@z Kj% 2 +quotation kw@U'teISn M6% 3 +quotations kw@U'teISnz Mj% 3 +quote kw@Ut H2%,K6% 16A,13A,14 +quoted 'kw@UtId Hc%,Hd% 26A,13A,14 +quotes kw@Uts Ha%,Kj% 16A,13A,14 +quoth kw@UT Hc$ 1 +quotidian kw@U'tIdI@n OA$ 4 +quotient 'kw@USnt K6% 2 +quotients 'kw@USnts Kj% 2 +quoting 'kw@UtIN Hb% 26A,13A,14 +qv ,kju'vi Y~$ 2 +r AR Ki$ 1 +r's Az Kj$ 1 +r^ole r@Ul K6% 1 +r^oles r@Ulz Kj% 1 +r_echauff_e reI'S@UfeI K6$ 3 +r_echauff_es reI'S@UfeIz Kj$ 3 +r_egime reI'Zim K6% 2 +r_egimes reI'Zimz Kj% 2 +r_esum_e 'rezjumeI K6% 3 +r_esum_es 'rezjumeIz Kj% 3 +rabbi 'r&baI K6% 2 +rabbinical r@'bInIkl OA$ 4 +rabbis 'r&baIz Kj% 2 +rabbit 'r&bIt I0%,K6% 2 +rabbit-burrow 'r&bIt-bVr@U K6% 4 +rabbit-burrows 'r&bIt-bVr@Uz Kj% 4 +rabbit-hole 'r&bIt-h@Ul K6% 3 +rabbit-holes 'r&bIt-h@Ulz Kj% 3 +rabbit-hutch 'r&bIt-hVtS K7% 3 +rabbit-hutches 'r&bIt-hVtSIz Kj% 4 +rabbit-punch 'r&bIt-pVntS K7% 3 +rabbit-punches 'r&bIt-pVntSIz Kj% 4 +rabbit-warren 'r&bIt-w0r@n K6% 4 +rabbit-warrens 'r&bIt-w0r@nz Kj% 4 +rabbited 'r&bItId Ic%,Id% 3 +rabbiting 'r&bItIN Ib% 3 +rabbits 'r&bIts Ia%,Kj% 2 +rabble 'r&bl K6% 2 +rabble-rousing 'r&bl-raUzIN OA% 4 +rabbles 'r&blz Kj% 2 +rabid 'r&bId OA% 2 +rabies 'reIbiz L@% 2 +raccoon r@'kun K6% 2 +raccoons r@'kunz Kj% 2 +race reIs J2%,M6% 12A,2C,3A,4A,6A,15A +race-meeting 'reIs-mitIN K6% 3 +race-meetings 'reIs-mitINz Kj% 3 +racecard 'reIskAd K6% 2 +racecards 'reIskAdz Kj% 2 +racecourse 'reIskOs K6% 2 +racecourses 'reIskOsIz Kj% 3 +raced reIst Jc%,Jd% 12A,2C,3A,4A,6A,15A +racehorse 'reIshOs K6% 2 +racehorses 'reIshOsIz Kj% 3 +raceme r&'sim K6$ 2 +racemes r&'simz Kj$ 2 +racer 'reIs@R K6% 2 +racers 'reIs@z Kj% 2 +races 'reIsIz Ja%,Mj% 22A,2C,3A,4A,6A,15A +racial 'reISl OA% 2 +racialism 'reIS@lIz@m L@% 4 +racialist 'reIS@lIst K6% 3 +racialists 'reIS@lIsts Kj% 3 +racially 'reIS@lI Pu% 3 +racier 'reIsI@R Or% 3 +raciest 'reIsIIst Os% 3 +racily 'reIsIlI Pu% 3 +raciness 'reIsIn@s L@% 3 +racing 'reIsIN Jb%,L@% 22A,2C,3A,4A,6A,15A +racism 'reIsIz@m L@% 3 +racist 'reIsIst K6% 2 +racists 'reIsIsts Kj% 2 +rack r&k H0%,M6% 16A,15A +rack-railway 'r&k-reIlweI K6$ 3 +rack-railways 'r&k-reIlweIz Kj$ 3 +rack-rent 'r&k-rent K6$ 2 +rack-rents 'r&k-rents Kj$ 2 +racked r&kt Hc%,Hd% 16A,15A +racket 'r&kIt I0$,M6% 22A,2C +racketed 'r&kItId Ic$,Id$ 32A,2C +racketeer ,r&k@'tI@R K6% 3 +racketeering ,r&k@'tI@rIN L@% 4 +racketeers ,r&k@'tI@z Kj% 3 +racketing 'r&kItIN Ib$ 32A,2C +rackets 'r&kIts Ia$,Mj% 22A,2C +racking 'r&kIN Hb% 26A,15A +racks r&ks Ha%,Mj% 16A,15A +raconteur ,r&k0n't3R K6% 3 +raconteurs ,r&k0n't3z Kj% 3 +racoon r@'kun K6% 2 +racoons r@'kunz Kj% 2 +racquet 'r&kIt K6% 2 +racquets 'r&kIts Kj% 2 +racy 'reIsI OD% 2 +radar 'reIdAR L@% 2 +raddled 'r&dld OA% 2 +radial 'reIdI@l K6%,OA% 3 +radially 'reIdI@lI Pu% 4 +radials 'reIdI@lz Kj% 3 +radiance 'reIdI@ns L@% 3 +radiant 'reIdI@nt OA% 3 +radiantly 'reIdI@ntlI Pu% 4 +radiate 'reIdIeIt J2% 32A,3A,6A +radiated 'reIdIeItId Jc%,Jd% 42A,3A,6A +radiates 'reIdIeIts Ja% 32A,3A,6A +radiating 'reIdIeItIN Jb% 42A,3A,6A +radiation ,reIdI'eISn M6% 4 +radiations ,reIdI'eISnz Mj% 4 +radiator 'reIdIeIt@R K6% 4 +radiators 'reIdIeIt@z Kj% 4 +radical 'r&dIkl K6%,OA% 3 +radicalism 'r&dIk@lIz@m L@% 5 +radically 'r&dIklI Pu% 3 +radicals 'r&dIklz Kj% 3 +radicle 'r&dIkl K6$ 3 +radicles 'r&dIklz Kj$ 3 +radii 'reIdIaI Kj% 3 +radio 'reIdI@U M6% 3 +radio- ,reIdI@U- U-% 3 +radio-gramophone ,reIdI@U-'gr&m@f@Un K6% 6 +radio-gramophones ,reIdI@U-'gr&m@f@Unz Kj% 6 +radio-location ,reIdI@U-l@'keISn K6$ 6 +radio-locations ,reIdI@U-l@'keISnz Kj$ 6 +radio-set 'reIdI@U-set K6% 4 +radio-sets 'reIdI@U-sets Kj% 4 +radio-telescope ,reIdI@U-'telIsk@Up K6% 6 +radio-telescopes ,reIdI@U-'telIsk@Ups Kj% 6 +radioactive ,reIdI@U'&ktIv OA% 5 +radioactivity ,reIdI@U&k'tIvItI L@% 7 +radiogram 'reIdI@Ugr&m K6% 4 +radiograms 'reIdI@Ugr&mz Kj% 4 +radiograph 'reIdI@Ugr&f K6% 4 +radiographer ,reIdI'0gr@f@R K6% 5 +radiographers ,reIdI'0gr@f@z Kj% 5 +radiographs 'reIdI@Ugr&fs Kj% 4 +radiography ,reIdI'0gr@fI L@% 5 +radioisotope ,reIdI@U'aIs@t@Up K6% 6 +radioisotopes ,reIdI@U'aIs@t@Ups Kj% 6 +radiologist ,reIdI'0l@dZIst K6% 5 +radiologists ,reIdI'0l@dZIsts Kj% 5 +radiology ,reIdI'0l@dZI L@% 5 +radios 'reIdI@Uz Mj% 3 +radiotherapist ,reIdI@U'Ter@pIst K6% 6 +radiotherapists ,reIdI@U'Ter@pIsts Kj% 6 +radiotherapy ,reIdI@U'Ter@pI L@% 6 +radish 'r&dIS K7% 2 +radishes 'r&dISIz Kj% 3 +radium 'reIdI@m L@% 3 +radius 'reIdI@s Ki% 3 +raffia 'r&fI@ L@% 3 +raffish 'r&fIS OA$ 2 +raffishly 'r&fISlI Pu$ 3 +raffle 'r&fl H2%,K6% 26A,15B +raffled 'r&fld Hc%,Hd% 26A,15B +raffles 'r&flz Ha%,Kj% 26A,15B +raffling 'r&flIN Hb% 26A,15B +raft rAft J0$,K6% 12C,6A,15A,15B +rafted 'rAftId Jc$,Jd$ 22C,6A,15A,15B +rafter 'rAft@R K6% 2 +raftered 'rAft@d OA% 2 +rafters 'rAft@z Kj% 2 +rafting 'rAftIN Jb$ 22C,6A,15A,15B +rafts rAfts Ja$,Kj% 12C,6A,15A,15B +raftsman 'rAftsm@n Ki% 2 +raftsmen 'rAftsm@n Kj% 2 +rag r&g H4%,K6% 16A +rag-day 'r&g-deI K6% 2 +rag-days 'r&g-deIz Kj% 2 +ragamuffin 'r&g@mVfIn K6% 4 +ragamuffins 'r&g@mVfInz Kj% 4 +ragbag 'r&gb&g K6% 2 +ragbags 'r&gb&gz Kj% 2 +rage reIdZ I2%,M6% 12A,2C +raged reIdZd Ic%,Id% 12A,2C +rages 'reIdZIz Ia%,Mj% 22A,2C +ragged 'r&gId OA% 2 +ragged r&gd Hc%,Hd% 16A +raggedly 'r&gIdlI Pu% 3 +raggedness 'r&gIdn@s L@% 3 +ragging 'r&gIN Hb% 26A +raging 'reIdZIN Ib% 22A,2C +raglan 'r&gl@n K6$ 2 +raglans 'r&gl@nz Kj$ 2 +ragout 'r&gu M6% 2 +ragouts 'r&guz Mj$ 2 +rags r&gz Ha%,Kj% 16A +ragtag 'r>&g K6% 2 +ragtags 'r>&gz Kj$ 2 +ragtime 'r>aIm L@% 2 +rah rA W-$ 1 +raid reId J0%,K6% 12A,6A +raided 'reIdId Jc%,Jd% 22A,6A +raider 'reId@R K6% 2 +raiders 'reId@z Kj% 2 +raiding 'reIdIN Jb% 22A,6A +raids reIdz Ja%,Kj% 12A,6A +rail reIl J0%,K6% 12A,3A,6A,15B +railcar 'reIlkAR K6% 2 +railcars 'reIlkAz Kj% 2 +railed reIld Jc%,Jd% 12A,3A,6A,15B +railhead 'reIlhed K6% 2 +railheads 'reIlhedz Kj% 2 +railing 'reIlIN Jb%,M6% 22A,3A,6A,15B +railings 'reIlINz Mj% 2 +railleries 'reIl@rIz Mj$ 3 +raillery 'reIl@rI M8% 3 +railroad 'reIlr@Ud H0%,K6% 215A,15B +railroaded 'reIlr@UdId Hc%,Hd% 315A,15B +railroading 'reIlr@UdIN Hb% 315A,15B +railroads 'reIlr@Udz Ha%,Kj% 215A,15B +rails reIlz Ja%,Kj% 12A,3A,6A,15B +railway 'reIlweI K6% 2 +railwayman 'reIlweIm@n Ki% 3 +railwaymen 'reIlweImen Kj% 3 +railways 'reIlweIz Kj% 2 +raiment 'reIm@nt L@$ 2 +rain reIn J0%,M6% 12C,14 +rain-gauge 'reIn-geIdZ K6% 2 +rain-gauges 'reIn-geIdZIz Kj% 3 +rainbow 'reInb@U K6% 2 +rainbows 'reInb@Uz Kj% 2 +raincoat 'reInk@Ut K6% 2 +raincoats 'reInk@Uts Kj% 2 +raindrop 'reIndr0p K6% 2 +raindrops 'reIndr0ps Kj% 2 +rained reInd Jc%,Jd% 12C,14 +rainfall 'reInfOl M6% 2 +rainfalls 'reInfOlz Mj% 2 +rainier 'reInI@R Or% 3 +rainiest 'reInIIst Os% 3 +raining 'reInIN Jb% 22C,14 +rainproof 'reInpruf OA% 2 +rains reInz Ja%,Mj% 12C,14 +rainwater 'reInwOt@R L@% 3 +rainy 'reInI OD% 2 +raise reIz H2%,K6% 16A,15A,15B +raised reIzd Hc%,Hd% 16A,15A,15B +raiser 'reIz@R K6$ 2 +raisers 'reIz@z Kj$ 2 +raises 'reIzIz Ha%,Kj% 26A,15A,15B +raisin 'reIzn K6% 2 +raising 'reIzIN Hb% 26A,15A,15B +raisins 'reIznz Kj% 2 +raison d'^etre ,reIz0n 'detr@ Ki% 4 +raj rAdZ Ki$ 1 +rajah 'rAdZ@ K6% 2 +rajahs 'rAdZ@z Kj% 2 +rake reIk J2%,K6% 12A,2C,3A,6A,14,15A,15B,22 +rake-off 'reIk-0f K6% 2 +rake-offs 'reIk-0fs Kj$ 2 +raked reIkt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B,22 +rakes reIks Ja%,Kj% 12A,2C,3A,6A,14,15A,15B,22 +raking 'reIkIN Jb% 22A,2C,3A,6A,14,15A,15B,22 +rakish 'reIkIS OA% 2 +rakishly 'reIkISlI Pu% 3 +rakishness 'reIkISn@s L@% 3 +rallentando ,r&l@n't&nd@U OA$,Pu$ 4 +rallied 'r&lId Jc%,Jd% 22A,2C,6A,15A +rallies 'r&lIz Ja%,Kj% 22A,2C,6A,15A +rally 'r&lI J3%,K8% 22A,2C,6A,15A +rallying 'r&lIIN Jb% 32A,2C,6A,15A +ram r&m H4%,K6% 16A,15A,15B +ramble 'r&mbl I2%,K6% 22A,2C +rambled 'r&mbld Ic%,Id% 22A,2C +rambler 'r&mbl@R K6% 2 +ramblers 'r&mbl@z Kj% 2 +rambles 'r&mblz Ia%,Kj% 22A,2C +rambling 'r&mblIN Ib%,OA% 22A,2C +rambunctious r&m'bVNkS@s OA$ 3 +ramification ,r&mIfI'keISn K6% 5 +ramifications ,r&mIfI'keISnz Kj% 5 +ramified 'r&mIfaId Jc%,Jd% 32A,6A +ramifies 'r&mIfaIz Ja% 32A,6A +ramify 'r&mIfaI J3% 32A,6A +ramifying 'r&mIfaIIN Jb% 42A,6A +ramjet 'r&mdZet K6$ 2 +ramjets 'r&mdZets Kj$ 2 +rammed r&md Hc%,Hd% 16A,15A,15B +ramming 'r&mIN Hb% 26A,15A,15B +ramp r&mp H0%,K6% 12C +rampage 'r&mpeIdZ K6% 2 +rampage r&m'peIdZ I2% 22A +rampaged r&m'peIdZd Ic%,Id% 22A +rampageous r&m'peIdZ@s OA$ 3 +rampages 'r&mpeIdZIz Kj$ 3 +rampages r&m'peIdZIz Ia% 32A +rampaging r&m'peIdZIN Ib% 32A +rampant 'r&mp@nt OA% 2 +rampantly 'r&mp@ntlI Pu% 3 +rampart 'r&mpAt K6% 2 +ramparts 'r&mpAts Kj% 2 +ramped r&mpt Hc%,Hd% 12C +ramping 'r&mpIN Hb% 22C +ramps r&mps Ha%,Kj% 12C +ramrod 'r&mr0d K6% 2 +ramrods 'r&mr0dz Kj% 2 +rams r&mz Ha%,Kj% 16A,15A,15B +ramshackle 'r&mS&kl OA% 3 +ran r&n Jc% 12A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +ranch rAntS K7% 1 +rancher 'rAntS@R K6% 2 +ranchers 'rAntS@z Kj% 2 +ranches 'rAntSIz Kj% 2 +rancid 'r&nsId OA% 2 +rancorous 'r&Nk@r@s OA% 3 +rancour 'r&Nk@R L@% 2 +rand r&nd K6$ 1 +randier 'r&ndI@R Or% 3 +randiest 'r&ndIIst Os% 3 +random 'r&nd@m Ki% 2 +randomly 'r&nd@mlI Pu% 3 +randomness 'r&nd@mnIs L@% 3 +rands r&ndz Kj$ 1 +randy 'r&ndI OD% 2 +ranee 'rAni K6$ 2 +ranees 'rAniz Kj$ 2 +rang r&N Jc% 12A,2B,2C,2D,3A,6A,15A,15B +range reIndZ J2%,K6% 12C,3A,6A,15A +ranged reIndZd Jc%,Jd% 12C,3A,6A,15A +rangefinder 'reIndZfaInd@R K6% 3 +rangefinders 'reIndZfaInd@z Kj% 3 +ranger 'reIndZ@R K6% 2 +rangers 'reIndZ@z Kj% 2 +ranges 'reIndZIz Ja%,Kj% 22C,3A,6A,15A +ranging 'reIndZIN Jb% 22C,3A,6A,15A +rani 'rAni K6$ 2 +ranis 'rAniz Kj$ 2 +rank r&Nk J0%,M6%,OA% 13A,6A,15A,16B +ranked r&Nkt Jc%,Jd% 13A,6A,15A,16B +ranker 'r&Nk@R K6$ 2 +rankers 'r&Nk@z Kj$ 2 +ranking 'r&NkIN Jb%,K6$ 23A,6A,15A,16B +rankings 'r&NkINz Kj% 2 +rankle 'r&Nkl I2% 22A +rankled 'r&Nkld Ic%,Id% 22A +rankles 'r&Nklz Ia% 22A +rankling 'r&NklIN Ib% 22A +rankly 'r&NklI Pu% 2 +rankness 'r&Nkn@s L@% 2 +ranks r&Nks Ja%,Mj% 13A,6A,15A,16B +ransack 'r&ns&k H0% 26A,14,16A +ransacked 'r&ns&kt Hc%,Hd% 26A,14,16A +ransacking 'r&ns&kIN Hb% 36A,14,16A +ransacks 'r&ns&ks Ha% 26A,14,16A +ransom 'r&ns@m H0%,M6% 26A +ransomed 'r&ns@md Hc%,Hd% 26A +ransoming 'r&ns@mIN Hb% 36A +ransoms 'r&ns@mz Ha%,Mj% 26A +rant r&nt J0%,K6% 12A,6A +ranted 'r&ntId Jc%,Jd% 22A,6A +ranter 'r&nt@R K6% 2 +ranters 'r&nt@z Kj% 2 +ranting 'r&ntIN Jb% 22A,6A +rants r&nts Ja%,Kj% 12A,6A +rap r&p J4%,K6% 12A,2C,6A,15B +rapacious r@'peIS@s OA% 3 +rapaciously r@'peIS@slI Pu% 4 +rapacity r@'p&sItI L@% 4 +rape reIp H2%,M6% 16A +raped reIpt Hc%,Hd% 16A +rapes reIps Ha%,Mj% 16A +rapid 'r&pId K6%,OA% 2 +rapidity r@'pIdItI L@% 4 +rapidly 'r&pIdlI Pu% 3 +rapids 'r&pIdz Kj% 2 +rapier 'reIpI@R K6% 3 +rapier-thrust 'reIpI@-TrVst K6% 4 +rapier-thrusts 'reIpI@-TrVsts Kj% 4 +rapiers 'reIpI@z Kj% 3 +rapine 'r&paIn L@$ 2 +raping 'reIpIN Hb% 26A +rapist 'reIpIst K6% 2 +rapists 'reIpIsts Kj% 2 +rapped r&pt Jc%,Jd% 12A,2C,6A,15B +rapping 'r&pIN Jb% 22A,2C,6A,15B +rapport r&'pOR M6% 2 +rapports r&'pOz Mj$ 2 +rapprochement r&'pr0Sm0N K6% 3 +rapprochements r&'pr0Sm0Nz Kj$ 3 +raps r&ps Ja%,Kj% 12A,2C,6A,15B +rapscallion r&p'sk&lI@n K6% 4 +rapscallions r&p'sk&lI@nz Kj% 4 +rapt r&pt OA% 1 +rapture 'r&ptS@R M6% 2 +raptures 'r&ptS@z Mj% 2 +rapturous 'r&ptS@r@s OA% 3 +rapturously 'r&ptS@r@slI Pu% 4 +rare re@R OB% 1 +rarebit 're@bIt M6% 2 +rarebits 're@bIts Mj$ 2 +rarefaction ,re@rI'f&kSn L@$ 4 +rarefied 're@rIfaId Jc%,Jd% 32A,6A +rarefies 're@rIfaIz Ja% 32A,6A +rarefy 're@rIfaI J3% 32A,6A +rarefying 're@rIfaIIN Jb% 42A,6A +rarely 're@lI Pu% 2 +rareness 're@n@s L@% 2 +rarer 're@r@R Or% 2 +rarest 're@rIst Os% 2 +raring 're@rIN OA% 2 +rarities 're@rItIz Mj% 3 +rarity 're@rItI M8% 3 +rascal 'rAskl K6% 2 +rascally 'rAsk@lI OA% 3 +rascals 'rAsklz Kj% 2 +rase reIz H2$ 16A +rased reIzd Hc%,Hd% 16A +rases 'reIzIz Ha$ 26A +rash r&S K7%,OC% 1 +rasher 'r&S@R K6%,Or% 2 +rashers 'r&S@z Kj% 2 +rashes 'r&SIz Kj% 2 +rashest 'r&SIst Os% 2 +rashly 'r&SlI Pu% 2 +rashness 'r&Sn@s L@% 2 +rasing 'reIzIN Hb$ 26A +rasp rAsp J0%,K6% 12A,2C,6A,15A,15B,22 +raspberries 'rAzb@rIz Kj% 3 +raspberry 'rAzb@rI K8% 3 +rasped rAspt Jc%,Jd% 12A,2C,6A,15A,15B,22 +rasping 'rAspIN Jb% 22A,2C,6A,15A,15B,22 +raspingly 'rAspINlI Pu% 3 +rasps rAsps Ja%,Kj% 12A,2C,6A,15A,15B,22 +rat r&t H4%,K6% 12A,3A +rat-a-tat-tat ,r&t-@-,t&t-'t&t K6% 4 +rat-a-tat-tats ,r&t-@-,t&t-'t&ts Kj% 4 +rat-tat r&t-'t&t K6$ 2 +rat-tats r&t-'t&ts Kj$ 2 +ratability ,reIt@'bIlItI L@% 5 +ratable 'reIt@bl OA% 3 +ratan r&'t&n M6$ 2 +ratans r&'t&nz Mj$ 2 +ratch r&tS K7$ 1 +ratches 'r&tSIz Kj$ 2 +ratchet 'r&tSIt K6% 2 +ratchets 'r&tSIts Kj% 2 +rate reIt J2%,K6% 12C,2D,6A,14,15A,16B +rateability ,reIt@'bIlItI L@% 5 +rateable 'reIt@bl OA% 3 +rated 'reItId Jc%,Jd% 22C,2D,6A,14,15A,16B +ratepayer 'reItpeI@R K6% 3 +ratepayers 'reItpeI@z Kj% 3 +rates reIts Ja%,Kj% 12C,2D,6A,14,15A,16B +rather 'rAD@R Pu* 2 +ratification ,r&tIfI'keISn K6% 5 +ratifications ,r&tIfI'keISnz Kj% 5 +ratified 'r&tIfaId Hc%,Hd% 36A +ratifies 'r&tIfaIz Ha% 36A +ratify 'r&tIfaI H3% 36A +ratifying 'r&tIfaIIN Hb% 46A +rating 'reItIN Jb%,K6% 22C,2D,6A,14,15A,16B +ratings 'reItINz Kj% 2 +ratio 'reISI@U K6% 3 +ratiocination ,r&tI,0sI'neISn L@$ 6 +ration 'r&Sn H0%,K6% 26A,15B +rational 'r&Sn@l OA% 2 +rationale ,r&S@'nAl K6% 3 +rationales ,r&S@'nAlz Kj$ 3 +rationalism 'r&Sn@lIz@m L@% 4 +rationalist 'r&Sn@lIst K6% 3 +rationalistic ,r&Sn@'lIstIk OA% 4 +rationalists 'r&Sn@lIsts Kj% 3 +rationalities ,r&S@'n&lItIz Mj% 5 +rationality ,r&S@'n&lItI M8% 5 +rationalization ,r&Sn@laI'zeISn M6% 5 +rationalizations ,r&Sn@laI'zeISnz Mj% 5 +rationalize 'r&Sn@laIz H2% 36A +rationalized 'r&Sn@laIzd Hc%,Hd% 36A +rationalizes 'r&Sn@laIzIz Ha% 46A +rationalizing 'r&Sn@laIzIN Hb% 46A +rationally 'r&Sn@lI Pu% 3 +rationed 'r&Snd Hc%,Hd% 26A,15B +rationing 'r&SnIN Hb% 36A,15B +rations 'r&Snz Ha%,Kj% 26A,15B +ratios 'reISI@Uz Kj% 3 +ratlin 'r&tlIn K6$ 2 +ratline 'r&tlIn K6$ 2 +ratlines 'r&tlInz Kj$ 2 +ratlins 'r&tlInz Kj$ 2 +rats r&ts Ha%,Kj% 12A,3A +rattan r&'t&n M6% 2 +rattans r&'t&nz Mj$ 2 +ratted 'r&tId Hc%,Hd% 22A,3A +ratter 'r&t@R K6% 2 +ratters 'r&t@z Kj% 2 +rattier 'r&tI@R Or% 3 +rattiest 'r&tIIst Os% 3 +ratting 'r&tIN Hb% 22A,3A +rattle 'r&tl J2%,M6% 22A,2C,6A,15A,15B +rattlebrained 'r&tlbreInd OA$ 3 +rattled 'r&tld Jc%,Jd% 22A,2C,6A,15A,15B +rattlepated 'r&tlpeItId OA$ 4 +rattler 'r&tl@R K6% 2 +rattlers 'r&tl@z Kj% 2 +rattles 'r&tlz Ja%,Mj% 22A,2C,6A,15A,15B +rattlesnake 'r&tlsneIk K6% 3 +rattlesnakes 'r&tlsneIks Kj% 3 +rattling 'r&tlIN Jb%,OA%,Pu% 22A,2C,6A,15A,15B +ratty 'r&tI OD% 2 +raucous 'rOk@s OA% 2 +raucously 'rOk@slI Pu% 3 +ravage 'r&vIdZ J2%,M6% 26A +ravaged 'r&vIdZd Jc%,Jd% 26A +ravages 'r&vIdZIz Ja%,Mj% 36A +ravaging 'r&vIdZIN Jb% 36A +rave reIv I2%,K6% 12A,2C,3A,15B +rave-up 'reIv-Vp K6% 2 +rave-ups 'reIv-Vps Kj$ 2 +raved reIvd Ic%,Id% 12A,2C,3A,15B +ravel 'r&v@l J4% 22A,2C,6A,15B +ravelled 'r&v@ld Jc%,Jd% 22A,2C,6A,15B +ravelling 'r&v@lIN Jb% 32A,2C,6A,15B +ravels 'r&v@lz Ja% 22A,2C,6A,15B +raven 'reIvn K6% 2 +ravening 'r&v@nIN OA% 3 +ravenous 'r&v@n@s OA% 3 +ravenously 'r&v@n@slI Pu% 4 +ravens 'reIvnz Kj% 2 +raver 'reIv@R K6% 2 +ravers 'reIv@z Kj% 2 +raves reIvz Ia%,Kj% 12A,2C,3A,15B +ravine r@'vin K6% 2 +ravines r@'vinz Kj% 2 +raving 'reIvIN Ib%,OA%,Pu% 22A,2C,3A,15B +ravings 'reIvINz Kj% 2 +ravioli ,r&vI'@UlI M6% 4 +raviolis ,r&vI'@UlIz Mj% 4 +ravish 'r&vIS H1% 26A +ravished 'r&vISt Hc%,Hd% 26A +ravishes 'r&vISIz Ha% 36A +ravishing 'r&vISIN Hb% 36A +ravishingly 'r&vISINlI Pu% 4 +ravishment 'r&vISm@nt M6$ 3 +ravishments 'r&vISm@nts Mj$ 3 +raw rO Ki%,OA% 1 +rawboned 'rOb@Und OA% 2 +rawhide 'rOhaId OA% 2 +ray reI J0$,K6% 1 +rayed reId Jc$,Jd$ 1 +raying 'reIIN Jb$ 2 +rayon 'reI0n L@% 2 +rays reIz Ja$,Kj% 1 +raze reIz H2% 16A +razed reIzd Hc%,Hd% 16A +razes 'reIzIz Ha% 26A +razing 'reIzIN Hb% 26A +razor 'reIz@R H0%,K6% 2 +razor-edge reIz@r-'edZ K6% 3 +razor-edges reIz@r-'edZIz Kj% 4 +razorback 'reIz@b&k K6$ 3 +razorbacked 'reIz@b&kt OA$ 3 +razorbacks 'reIz@b&ks Kj$ 3 +razorblade 'reIz@bleId K6% 3 +razorblades 'reIz@bleIdz Kj% 3 +razored 'reIz@d Hc%,Hd% 2 +razoring 'reIz@rIN Hb% 3 +razors 'reIz@z Ha%,Kj% 2 +razzle 'r&zl Ki% 2 +razzle-dazzle ,r&zl-'d&zl Ki% 4 +re reI Ki$ 1 +re ri T-$ 1 +re- ri- U-% 1 +re-address ,ri-@'dres H1% 36A +re-addressed ,ri-@'drest Hc%,Hd% 36A +re-addresses ,ri-@'dresIz Ha% 46A +re-addressing ,ri-@'dresIN Hb% 46A +re-afforest ,ri-@'f0rIst H0$ 4 +re-afforestation ,ri-@,f0rI'steISn M6$ 6 +re-afforestations ,ri-@,f0rI'steISnz Mj$ 6 +re-afforested ,ri-@'f0rIstId Hc$,Hd$ 5 +re-afforesting ,ri-@'f0rIstIN Hb$ 5 +re-afforests ,ri-@'f0rIsts Ha$ 4 +re-count 'ri-kaUnt K6% 2 +re-count ,ri-'kaUnt H0$ 26A +re-counted ,ri-'kaUntId Hc$,Hd$ 36A +re-counting ,ri-'kaUntIN Hb$ 36A +re-counts 'ri-kaUnts Kj% 2 +re-counts ,ri-'kaUnts Ha$ 26A +re-cover ,ri-'kVv@R H0$ 36A +re-covered ,ri-'kVv@d Hc$,Hd$ 36A +re-covering ,ri-'kVv@rIN Hb$ 46A +re-covers ,ri-'kVv@z Ha$ 36A +re-echo ri-'ek@U I0%,K7% 32A +re-echoed ri-'ek@Ud Ic%,Id% 32A +re-echoes ri-'ek@Uz Kj% 3 +re-echoing ri-'ek@UIN Ib% 42A +re-echos ri-'ek@Uz Ia% 32A +re-entries ,ri-'entrIz Kj% 3 +re-entry ,ri-'entrI K8% 3 +re-form ,ri-'fOm J0$ 2 +re-formation ,ri-fO'meISn M6$ 4 +re-formations ,ri-fO'meISnz Mj$ 4 +re-formed ,ri-'fOmd Jc$,Jd$ 2 +re-forming ,ri-'fOmIN Jb$ 3 +re-forms ,ri-'fOmz Ja$ 2 +re-join ,ri-'dZoIn H0$ 26A +re-joined ,ri-'dZoInd Hc$,Hd$ 26A +re-joining ,ri-'dZoInIN Hb$ 36A +re-joins ,ri-'dZoInz Ha$ 26A +reach ritS J1%,M7% 12C,3A,6A,12B,13B,15B +reach-me-downs 'ritS-mI-daUnz Kj% 3 +reached ritSt Jc%,Jd% 12C,3A,6A,12B,13B,15B +reaches 'ritSIz Ja%,Mj% 22C,3A,6A,12B,13B,15B +reaching 'ritSIN Jb% 22C,3A,6A,12B,13B,15B +react rI'&kt I0% 22A,3A +reacted rI'&ktId Ic%,Id% 32A,3A +reacting rI'&ktIN Ib% 32A,3A +reaction rI'&kSn M6% 3 +reactionaries rI'&kS@nrIz Kj% 4 +reactionary rI'&kS@nrI K8% 4 +reactions rI'&kSnz Mj% 3 +reactor rI'&kt@R K6% 3 +reactors rI'&kt@z Kj% 3 +reacts rI'&kts Ia% 22A,3A +read red Jc*,Jd* 12A,2B,2C,6A,12A,13A,15A,15B,16B +read rid J5*,Ki% 12A,2B,2C,6A,12A,13A,15A,15B,16B +readability ,rid@'bIlItI L@% 5 +readable 'rid@bl OA% 3 +reader 'rid@R K6% 2 +readers 'rid@z Kj% 2 +readership 'rid@SIp K6% 3 +readerships 'rid@SIps Kj% 3 +readier 'redI@R Or% 3 +readies 'redIz Kj% 2 +readiest 'redIIst Os% 3 +readily 'redIlI Pu% 3 +readiness 'redIn@s L@% 3 +reading 'ridIN Jb%,M6% 22A,2B,2C,6A,12A,13A,15A,15B,16B +reading-glasses 'ridIN-gl&sIz Kj% 4 +reading-lamp 'ridIN-l&mp K6% 3 +reading-lamps 'ridIN-l&mps Kj% 3 +reading-room 'ridIN-rum K6% 3 +reading-rooms 'ridIN-rumz Kj% 3 +readings 'ridINz Mj% 2 +readjust ,ri@'dZVst H0% 33A,6A,15A +readjusted ,ri@'dZVstId Hc%,Hd% 43A,6A,15A +readjusting ,ri@'dZVstIN Hb% 43A,6A,15A +readjustment ,ri@'dZVstm@nt K6% 4 +readjustments ,ri@'dZVstm@nts Kj% 4 +readjusts ,ri@'dZVsts Ha% 33A,6A,15A +readmission ,ri@d'mISn M6% 4 +readmissions ,ri@d'mISnz Mj% 4 +readmit ,ri@d'mIt H4% 33A,6A,6C,9,14,25 +readmits ,ri@d'mIts Ha% 33A,6A,6C,9,14,25 +readmitted ,ri@d'mItId Hc%,Hd% 43A,6A,6C,9,14,25 +readmitting ,ri@d'mItIN Hb% 43A,6A,6C,9,14,25 +reads ridz Ja% 12A,2B,2C,6A,12A,13A,15A,15B,16B +ready 'redI K8%,OD% 2 +ready-made 'redI-meId OA% 3 +reaffiliation ,ri@,fIlI'eISn M6% 6 +reaffiliations ,ri@,fIlI'eISnz Mj% 6 +reaffirm ,ri@'f3m H0% 36A,9 +reaffirmed ,ri@'f3md Hc%,Hd% 36A,9 +reaffirming ,ri@'f3mIN Hb% 46A,9 +reaffirms ,ri@'f3mz Ha% 36A,9 +reagent ri'eIdZ@nt K6$ 3 +reagents ri'eIdZ@nts Kj$ 3 +real rI@l OA* 2 +real reI'Al K6$ 2 +realism 'rI@lIz@m L@% 4 +realist 'rI@lIst K6% 3 +realistic ,rI@'lIstIk OA% 4 +realistically ,rI@'lIstIklI Pu% 5 +realists 'rI@lIsts Kj% 3 +realities rI'&lItIz Mj% 3 +reality rI'&lItI M8% 3 +realizable ,rI@'laIz@bl OA% 5 +realization ,rI@laI'zeISn L@% 5 +realize 'rI@laIz H2% 36A,9,10,14 +realized 'rI@laIzd Hc%,Hd% 36A,9,10,14 +realizes 'rI@laIzIz Ha% 46A,9,10,14 +realizing 'rI@laIzIN Hb% 46A,9,10,14 +reallocation ri,&l@'keISn M6% 5 +reallocations ri,&l@'keISnz Mj% 5 +really 'rI@lI Pu* 3 +realm relm K6% 1 +realms relmz Kj% 1 +reals reI'Alz Kj$ 2 +realties 'rI@ltIz Kj$ 3 +realty 'rI@ltI K8$ 3 +ream rim K6% 1 +reams rimz Kj% 1 +reanimate ri'&nImeIt H2% 46A +reanimated ri'&nImeItId Hc%,Hd% 56A +reanimates ri'&nImeIts Ha% 46A +reanimating ri'&nImeItIN Hb% 56A +reap rip J0% 12A,6A +reaped ript Jc%,Jd% 12A,6A +reaper 'rip@R K6% 2 +reapers 'rip@z Kj% 2 +reaping 'ripIN Jb% 22A,6A +reaping-hook 'ripIN-hUk K6% 3 +reaping-hooks 'ripIN-hUks Kj% 3 +reappear ,ri@'pI@R I0% 32A +reappearance ,rI@'pI@r@ns K6% 4 +reappearances ,rI@'pI@r@nsIz Kj% 5 +reappeared ,ri@'pI@d Ic%,Id% 32A +reappearing ,ri@'pI@rIN Ib% 42A +reappears ,ri@'pI@z Ia% 32A +reappraisal ,ri@'preIzl K6% 4 +reappraisals ,ri@'preIzlz Kj% 4 +reaps rips Ja% 12A,6A +rear rI@R J0%,K6% 12A,2C,6A,15B +rear-admiral ,rI@r-'&dm@r@l K6% 4 +rear-admirals ,rI@r-'&dm@r@lz Kj% 4 +reared rI@d Jc%,Jd% 12A,2C,6A,15B +rearguard 'rI@gAd K6% 2 +rearguards 'rI@gAdz Kj% 2 +rearing 'rI@rIN Jb% 22A,2C,6A,15B +rearm ,ri'Am J0% 22A,6A +rearmament ri'Am@m@nt M6% 4 +rearmaments ri'Am@m@nts Mj% 4 +rearmed ,ri'Amd Jc%,Jd% 22A,6A +rearming ,ri'AmIN Jb% 32A,6A +rearmost 'rI@m@Ust OA% 2 +rearms ,ri'Amz Ja% 22A,6A +rearrange ,ri@'reIndZ H2% 33A,4C,6A,14,15A +rearranged ,ri@'reIndZ Hc%,Hd% 33A,4C,6A,14,15A +rearrangement ,ri@'reIndZm@nt M6% 4 +rearrangements ,ri@'reIndZm@nts Mj% 4 +rearranges ,ri@'reIndZIz Ha% 43A,4C,6A,14,15A +rearranging ,ri@'reIndZIN Hb% 43A,4C,6A,14,15A +rears rI@z Ja%,Kj% 12A,2C,6A,15B +rearward 'rI@w@d K6% 2 +rearwards 'rI@w@dz Kj%,Pu% 2 +reason 'riz@n J0%,M6* 22A,3A,6A,9,14 +reasonable 'rizn@bl OA% 3 +reasonableness 'rizn@bln@s L@% 4 +reasonably 'rizn@blI Pu% 3 +reasoned 'riz@nd Jc%,Jd% 22A,3A,6A,9,14 +reasoning 'riz@nIN Jb%,L@% 32A,3A,6A,9,14 +reasonless 'riz@nl@s OA$ 3 +reasons 'riz@nz Ja%,Mj% 22A,3A,6A,9,14 +reassemble ,ri@'sembl J2% 42A,6A +reassembled ,ri@'sembld Jc%,Jd% 42A,6A +reassembles ,ri@'semblz Ja% 42A,6A +reassembling ,ri@'semblIN Jb% 42A,6A +reassess ,ri@'ses H1% 36A,14 +reassessed ,ri@'sest Hc%,Hd% 36A,14 +reassesses ,ri@'sesIz Ha% 46A,14 +reassessing ,ri@'sesIN Hb% 46A,14 +reassessment ,ri@'sesm@nt M6% 4 +reassessments ,ri@'sesm@nts Mj% 4 +reassurance ,rI@'Sur@ns M6% 4 +reassurances ,rI@'Sur@nsIz Mj% 5 +reassure ,ri@'SU@R H2% 36A +reassured ,ri@'SU@d Hc%,Hd% 36A +reassures ,ri@'SU@z Ha% 36A +reassuring ,ri@'SU@rIN Hb%,OA% 46A +reassuringly ,ri@'SU@rINlI Pu% 5 +reattribute rI'&trIbjut H2% 414 +reattributed ,ri@'trIbjutId Hc%,Hd% 514 +reattributes rI'&trIbjuts Ha% 414 +reattributing ,ri@'trIbjutIN Hb% 514 +rebarbative rI'bAb@tIv OA$ 4 +rebate 'ribeIt M6% 2 +rebates 'ribeIts Mj% 2 +rebel 'reb@l K6% 2 +rebel rI'bel I4% 22A,3A +rebelled rI'beld Ic%,Id% 22A,3A +rebelling rI'belIN Ib% 32A,3A +rebellion rI'belI@n M6% 4 +rebellions rI'belI@nz Mj% 4 +rebellious rI'belI@s OA% 4 +rebelliously rI'belI@slI Pu% 5 +rebelliousness rI'belI@sn@s L@% 5 +rebels 'reb@lz Kj% 2 +rebels rI'belz Ia% 22A,3A +rebind ,ri'baInd H5$ 26A +rebinding ,ri'baIndIN Hb$ 36A +rebinds ,ri'baIndz Ha$ 26A +rebirth ,ri'b3T K6$ 2 +rebirths ,ri'b3Ts Kj$ 2 +reborn ,ri'bOn OA% 2 +rebound 'ribaUnd K6% 2 +rebound ,ri'baUnd Hc$,Hd$ 26A +rebound rI'baUnd I0% 22A,3A +rebounded rI'baUndId Ic%,Id% 32A,3A +rebounding rI'baUndIN Ib% 32A,3A +rebounds 'ribaUndz Kj% 2 +rebounds rI'baUndz Ia% 22A,3A +rebuff rI'bVf H0%,K6% 26A +rebuffed rI'bVft Hc%,Hd% 26A +rebuffing rI'bVfIN Hb% 36A +rebuffs rI'bVfs Ha%,Kj% 26A +rebuild ,ri'bIld H5% 26A +rebuilding ,ri'bIldIN Hb% 36A +rebuilds ,ri'bIldz Ha% 26A +rebuilt ,ri'bIlt Hc%,Hd% 26A +rebuke rI'bjuk H2%,K6% 26A,14 +rebuked rI'bjukt Hc%,Hd% 26A,14 +rebukes rI'bjuks Ha%,Kj% 26A,14 +rebuking rI'bjukIN Hb% 36A,14 +rebukingly rI'bjukINlI Pu$ 4 +rebus 'rib@s K7$ 2 +rebuses 'rib@sIz Kj$ 3 +rebut rI'bVt H4% 26A +rebuts rI'bVts Ha% 26A +rebuttal rI'bVt@l K6% 3 +rebuttals rI'bVt@lz Kj% 3 +rebutted rI'bVtId Hc%,Hd% 36A +rebutting rI'bVtIN Hb% 36A +rec rI'sivd Y~% 2 +recalcitrance rI'k&lsItr@ns L@% 4 +recalcitrancy rI'k&lsItr@nsI L@$ 5 +recalcitrant rI'k&lsItr@nt OA% 4 +recall rI'kOl H0%,M6% 26A,6C,8,9,10,14,19C +recalled rI'kOld Hc%,Hd% 26A,6C,8,9,10,14,19C +recalling rI'kOlIN Hb% 36A,6C,8,9,10,14,19C +recalls rI'kOlz Ha%,Mj% 26A,6C,8,9,10,14,19C +recant rI'k&nt J0% 22A,6A +recantation ,rik&n'teISn M6% 4 +recantations ,rik&n'teISnz Mj% 4 +recanted rI'k&ntId Jc%,Jd% 32A,6A +recanting rI'k&ntIN Jb% 32A,6A +recants rI'k&nts Ja% 22A,6A +recap 'rik&p J4%,K6% 2 +recap ,ri'k&p H4$ 2 +recapitulate ,rik@'pItSUleIt J2% 52A,6A +recapitulated ,rik@'pItSUleItId Jc%,Jd% 62A,6A +recapitulates ,rik@'pItSUleIts Ja% 52A,6A +recapitulating ,rik@'pItSUleItIN Jb% 62A,6A +recapitulation ,rik@,pItSU'leISn M6% 6 +recapitulations ,rik@,pItSU'leISnz Mj% 6 +recapped 'rik&pt Jc%,Jd% 2 +recapped ,ri'k&pt Hc$,Hd$ 2 +recapping 'rik&pIN Jb% 3 +recapping ,ri'k&pIN Hb$ 3 +recaps 'rik&ps Ja%,Kj% 2 +recaps ,ri'k&ps Ha$ 2 +recapture ,ri'k&ptS@R H2% 36A +recaptured ,ri'k&ptS@d Hc%,Hd% 36A +recaptures ,ri'k&ptS@z Ha% 36A +recapturing ,ri'k&ptS@rIN Hb% 46A +recast ,ri'kAst H5%,Hc%,Hd% 26A +recasting ,ri'kAstIN Hb% 36A +recasts ,ri'kAsts Ha% 26A +recce 'rekI K6$ 2 +recces 'rekIz Kj$ 2 +recd rI'sivd Y~% 2 +recede rI'sid I2% 22A,3A +receded rI'sidId Ic%,Id% 32A,3A +recedes rI'sidz Ia% 22A,3A +receding rI'sidIN Ib% 32A,3A +receipt rI'sit H0$,M6% 26A +receipted rI'sitId Hc$,Hd$ 36A +receipting rI'sitIN Hb$ 36A +receipts rI'sits Ha$,Mj% 26A +receivable rI'siv@bl OA$ 4 +receive rI'siv J2% 22A,6A +received rI'sivd Jc%,Jd%,OA% 22A,6A +receiver rI'siv@R K6% 3 +receivers rI'siv@z Kj% 3 +receivership rI'siv@SIp K6% 4 +receiverships rI'siv@SIps Kj$ 4 +receives rI'sivz Ja% 22A,6A +receiving rI'sivIN Jb% 32A,6A +receiving-set rI'sivIN-set K6% 4 +receiving-sets rI'sivIN-sets Kj% 4 +recent 'risnt OA% 2 +recently 'risntlI Pu% 3 +receptacle rI'sept@kl K6% 4 +receptacles rI'sept@klz Kj% 4 +reception rI'sepSn M6% 3 +reception-desk rI'sepSn-desk K6% 4 +reception-desks rI'sepSn-desks Kj% 4 +receptionist rI'sepS@nIst K6% 4 +receptionists rI'sepS@nIsts Kj% 4 +receptions rI'sepSnz Mj% 3 +receptive rI'septIv OA% 3 +receptively rI'septIvlI Pu% 4 +receptiveness rI'septIvnIs L@% 4 +receptivity ,risep'tIvItI L@% 5 +recess rI'ses H1$,K7% 26A +recessed rI'sest Hc$,Hd% 26A +recesses rI'sesIz Ha$,Kj% 36A +recessing rI'sesIN Hb$ 36A +recession rI'seSn M6% 3 +recessional rI'seS@nl K6$,OA$ 4 +recessionals rI'seS@nlz Kj$ 4 +recessions rI'seSnz Mj% 3 +recessive rI'sesIv OA% 3 +recherch_e r@'Se@SeI OA% 3 +recidivism rI'sIdIvIz@m L@$ 5 +recidivist rI'sIdIvIst K6$ 4 +recidivists rI'sIdIvIsts Kj$ 4 +recipe 'res@pI K6% 3 +recipes 'res@pIz Kj% 3 +recipient rI'sIpI@nt K6% 4 +recipients rI'sIpI@nts Kj% 4 +reciprocal rI'sIpr@kl K6$,OA% 4 +reciprocally rI'sIpr@klI Pu% 4 +reciprocals rI'sIpr@klz Kj$ 4 +reciprocate rI'sIpr@keIt J2% 42A,6A +reciprocated rI'sIpr@keItId Jc%,Jd% 52A,6A +reciprocates rI'sIpr@keIts Ja% 42A,6A +reciprocating rI'sIpr@keItIN Jb% 52A,6A +reciprocation rI,sIpr@'keISn L@% 5 +reciprocity ,resI'pr0sItI L@% 5 +recital rI'saItl K6% 3 +recitalist rI'saIt@lIst K6% 4 +recitalists rI'saIt@lIsts Kj% 4 +recitals rI'saItlz Kj% 3 +recitation ,resI'teISn M6% 4 +recitations ,resI'teISnz Mj% 4 +recitative ,resIt@'tiv M6$ 4 +recitatives ,resIt@'tivz Mj$ 4 +recite rI'saIt J2% 22A,6A,15A +recited rI'saItId Jc%,Jd% 32A,6A,15A +recites rI'saIts Ja% 22A,6A,15A +reciting rI'saItIN Jb% 32A,6A,15A +reckless 'rekl@s OA% 2 +recklessly 'rekl@slI Pu% 3 +recklessness 'rekl@sn@s L@% 3 +reckon 'rek@n J0% 22A,6A,7A,9,15B,16B,25 +reckoned 'rek@nd Jc%,Jd% 22A,6A,7A,9,15B,16B,25 +reckoner 'rek@n@R K6% 3 +reckoners 'rek@n@z Kj% 3 +reckoning 'rek@nIN Jb%,M6% 32A,6A,7A,9,15B,16B,25 +reckonings 'rek@nINz Mj% 3 +reckons 'rek@nz Ja% 22A,6A,7A,9,15B,16B,25 +reclaim rI'kleIm H0% 26A +reclaimed rI'kleImd Hc%,Hd% 26A +reclaiming rI'kleImIN Hb% 36A +reclaims rI'kleImz Ha% 26A +reclamation ,rekl@'meISn L@% 4 +recline rI'klaIn J2% 22A,2C,15A +reclined rI'klaInd Jc%,Jd% 22A,2C,15A +reclines rI'klaInz Ja% 22A,2C,15A +reclining rI'klaInIN Jb% 32A,2C,15A +recluse rI'klus K6% 2 +recluses rI'klusIz Kj$ 3 +recognition ,rek@g'nISn L@% 4 +recognizable 'rek@gnaIz@bl OA% 5 +recognizably ,rek@g'naIz@blI Pu% 5 +recognizance rI'k0gnIz@ns K6$ 4 +recognizances rI'k0gnIz@nsIz Kj$ 5 +recognize 'rek@gnaIz H2% 36A,9,16A,25 +recognized 'rek@gnaIzd Hc%,Hd% 36A,9,16A,25 +recognizes 'rek@gnaIzIz Ha% 46A,9,16A,25 +recognizing 'rek@gnaIzIN Hb% 46A,9,16A,25 +recoil rI'koIl I0%,K6% 22A,3A +recoiled rI'koIld Ic%,Id% 22A,3A +recoiling rI'koIlIN Ib% 32A,3A +recoils rI'koIlz Ia%,Kj% 22A,3A +recollect ,rek@'lekt J0% 32A,6A,6C,8,9,10 +recollected ,rek@'lektId Jc%,Jd% 42A,6A,6C,8,9,10 +recollecting ,rek@'lektIN Jb% 42A,6A,6C,8,9,10 +recollection ,rek@'lekSn M6% 4 +recollections ,rek@'lekSnz Mj% 4 +recollects ,rek@'lekts Ja% 32A,6A,6C,8,9,10 +recommend ,rek@'mend H0% 36A,6C,9,12A,13A,14,16A,17 +recommendation ,rek@men'deISn M6% 5 +recommendations ,rek@men'deISnz Mj% 5 +recommended ,rek@'mendId Hc%,Hd% 46A,6C,9,12A,13A,14,16A,17 +recommending ,rek@'mendIN Hb% 46A,6C,9,12A,13A,14,16A,17 +recommends ,rek@'mendz Ha% 36A,6C,9,12A,13A,14,16A,17 +recommit ,rik@'mIt H4% 36A,14,16A +recommits ,rik@'mIts Ha% 36A,14,16A +recommitted ,rik@'mItId Hc%,Hd% 46A,14,16A +recommitting ,rik@'mItIN Hb% 46A,14,16A +recompense 'rek@mpens H2%,M6% 36A,14 +recompensed 'rek@mpenst Hc%,Hd% 36A,14 +recompenses 'rek@mpensIz Ha%,Mj% 46A,14 +recompensing 'rek@mpensIN Hb% 46A,14 +reconcilable ,rek@n'saIl@bl OA% 5 +reconcile 'rek@nsaIl H2% 36A,14 +reconciled 'rek@nsaIld Hc%,Hd% 36A,14 +reconciles 'rek@nsaIlz Ha% 36A,14 +reconciliation ,rek@n,sIlI'eISn M6% 6 +reconciliations ,rek@n,sIlI'eISnz Mj% 6 +reconciling 'rek@nsaIlIN Hb% 46A,14 +recondite 'rek@ndaIt OA$ 3 +recondition ,rik@n'dISn H0% 46A +reconditioned ,rik@n'dISnd Hc%,Hd% 46A +reconditioning ,rik@n'dISnIN Hb% 56A +reconditions ,rik@n'dISnz Ha% 46A +reconnaissance rI'k0nIs@ns M6% 4 +reconnaissances rI'k0nIs@nsIz Mj% 5 +reconnoitre ,rek@'noIt@R J2% 42A,6A +reconnoitred ,rek@'noIt@d Jc%,Jd% 42A,6A +reconnoitres ,rek@'noIt@z Ja% 42A,6A +reconnoitring ,rek@'noIt@rIN Jb% 42A,6A +reconsecrate ri'k0nsIkreIt H2% 46A,14,23 +reconsecrated ri'k0nsIkreItId Hc%,Hd% 56A,14,23 +reconsecrates ri'k0nsIkreIts Ha% 46A,14,23 +reconsecrating ri'k0nsIkreItIN Hb% 56A,14,23 +reconsider ,rik@n'sId@R H0% 46A,6C,8,9,10,25 +reconsidered ,rik@n'sId@d Hc%,Hd% 46A,6C,8,9,10,25 +reconsidering ,rik@n'sId@rIN Hb% 56A,6C,8,9,10,25 +reconsiders ,rik@n'sId@z Ha% 46A,6C,8,9,10,25 +reconstruct ,rik@n'strVkt H0% 36A +reconstructed ,rik@n'strVktId Hc%,Hd% 46A +reconstructing ,rik@n'strVktIN Hb% 46A +reconstruction ,rik@n'strVkSn M6% 4 +reconstructions ,rik@n'strVkSnz Mj% 4 +reconstructs ,rik@n'strVkts Ha% 36A +reconvict ,rik@n'vIkt H0% 36A,14 +reconvicted ,rik@n'vIktId Hc%,Hd% 46A,14 +reconvicting ,rik@n'vIktIN Hb% 46A,14 +reconvicts ,rik@n'vIkts Ha% 36A,14 +record 'rekOd M6% 2 +record rI'kOd H0% 26A +record-breaking 'rekOd-breIkIN OA% 4 +record-player 'rekOd-pleI@R K6% 4 +record-players 'rekOd-pleI@z Kj% 4 +recorded rI'kOdId Hc%,Hd% 36A +recorder rI'kOd@R K6% 3 +recorders rI'kOd@z Kj% 3 +recording rI'kOdIN Hb%,K6% 36A +recordings rI'kOdINz Kj% 3 +records 'rekOdz Mj% 2 +records rI'kOdz Ha% 26A +recount rI'kaUnt H0% 26A +recounted rI'kaUntId Hc%,Hd% 36A +recounting rI'kaUntIN Hb% 36A +recounts rI'kaUnts Ha% 26A +recoup rI'kup H0% 26A,14 +recouped rI'kupt Hc%,Hd% 26A,14 +recouping rI'kupIN Hb% 36A,14 +recoups rI'kups Ha% 26A,14 +recourse rI'kOs L@% 2 +recover rI'kVv@R J0% 32A,3A,6A +recoverable rI'kVv@r@bl OA% 5 +recovered rI'kVv@d Jc%,Jd% 32A,3A,6A +recoveries rI'kVv@rIz Mj% 4 +recovering rI'kVv@rIN Jb% 42A,3A,6A +recovers rI'kVv@z Ja% 32A,3A,6A +recovery rI'kVv@rI M8% 4 +recreant 'rekrI@nt K6$,OA$ 3 +recreants 'rekrI@nts Kj$ 3 +recreate ,rikri'eIt H2% 36A,23 +recreated ,rikri'eItId Hc%,Hd% 46A,23 +recreates ,rikri'eIts Ha% 36A,23 +recreating ,rikri'eItIN Hb% 46A,23 +recreation ,rekrI'eISn M6% 4 +recreational ,rekrI'eISn@l OA% 4 +recreations ,rekrI'eISnz Mj% 4 +recriminate rI'krImIneIt I2$ 42A,3A +recriminated rI'krImIneItId Ic$,Id$ 52A,3A +recriminates rI'krImIneIts Ia$ 42A,3A +recriminating rI'krImIneItIN Ib$ 52A,3A +recrimination rI,krImI'neISn M6% 5 +recriminations rI,krImI'neISnz Mj% 5 +recriminatory rI'krImIn@trI OA$ 5 +recrudescence ,rikru'des@ns M6$ 4 +recrudescences ,rikru'des@nsIz Mj$ 5 +recruit rI'krut J0%,K6% 26A +recruited rI'krutId Jc%,Jd% 36A +recruiting rI'krutIN Jb% 36A +recruitment rI'krutm@nt K6% 3 +recruitments rI'krutm@nts Kj% 3 +recruits rI'kruts Ja%,Kj% 26A +rectal 'rekt@l OA% 2 +rectangle 'rekt&Ngl K6% 3 +rectangles 'rekt&Nglz Kj% 3 +rectangular rek't&NgjUl@R OA% 4 +rectification ,rektIfI'keISn M6% 5 +rectifications ,rektIfI'keISnz Mj% 5 +rectified 'rektIfaId Hc%,Hd% 36A +rectifier 'rektIfaI@R K6% 4 +rectifiers 'rektIfaI@z Kj% 4 +rectifies 'rektIfaIz Ha% 36A +rectify 'rektIfaI H3% 36A +rectifying 'rektIfaIIN Hb% 46A +rectilinear ,rektI'lInI@R OA% 5 +rectitude 'rektItjud L@% 3 +recto 'rekt@U K6$ 2 +rector 'rekt@R K6% 2 +rectories 'rekt@rIz Kj% 3 +rectors 'rekt@z Kj% 2 +rectory 'rekt@rI K8% 3 +rectos 'rekt@Uz Kj$ 2 +rectum 'rekt@m K6% 2 +rectums 'rekt@mz Kj$ 2 +recumbent rI'kVmb@nt OA% 3 +recuperate rI'kup@reIt J2% 42A,6A +recuperated rI'kup@reItId Jc%,Jd% 52A,6A +recuperates rI'kup@reIts Ja% 42A,6A +recuperating rI'kup@reItIN Jb% 52A,6A +recuperation rI,kup@'reISn M6% 5 +recuperations rI,kup@'reISnz Mj% 5 +recuperative rI'kup@r@tIv OA% 5 +recur rI'k3R I4% 22A,3A +recurred rI'k3d Ic%,Id% 22A,3A +recurrence rI'kVr@ns M6% 3 +recurrences rI'kVr@nsIz Mj% 4 +recurrent rI'kVr@nt OA% 3 +recurring rI'k3rIN Ib% 32A,3A +recurs rI'k3z Ia% 22A,3A +recurve ,ri'k3v J2$ 2 +recurved ,ri'k3vd Jc$,Jd$ 2 +recurves ,ri'k3vz Ja$ 2 +recurving ,ri'k3vIN Jb$ 3 +recusancy 'rekjUz@nsI L@$ 4 +recusant 'rekjUz@nt K6$,OA$ 3 +recusants 'rekjUz@nts Kj$ 3 +recycle ,ri'saIkl H2% 36A +recycled ,ri'saIkld Hc%,Hd% 36A +recycles ,ri'saIklz Ha% 36A +recycling ,ri'saIklIN Hb% 36A +red red M6%,OE% 1 +red-hot 'red-h0t OA% 2 +red-rimmed 'red-rImd OA% 2 +redact rI'd&kt H0$ 26A +redacted rI'd&ktId Hc$,Hd$ 36A +redacting rI'd&ktIN Hb$ 36A +redaction rI'd&kSn M6$ 3 +redactions rI'd&kSnz Mj$ 3 +redacts rI'd&kts Ha$ 26A +redbreast 'redbrest K6% 2 +redbreasts 'redbrests Kj% 2 +redcap 'redk&p K6% 2 +redcaps 'redk&ps Kj% 2 +redcoat 'redk@Ut K6% 2 +redcoats 'redk@Uts Kj% 2 +redden 'redn J0% 22A,6A +reddened 'rednd Jc%,Jd% 22A,6A +reddening 'rednIN Jb% 32A,6A +reddens 'rednz Ja% 22A,6A +redder 'red@R Or% 2 +reddest 'redIst Os% 2 +reddish 'redIS OA% 2 +redecorate ri'dek@reIt H2% 46A,14 +redecorated ri'dek@reItId Hc%,Hd% 56A,14 +redecorates ri'dek@reIts Ha% 46A,14 +redecorating ri'dek@reItIN Hb% 56A,14 +redeem rI'dim H0% 26A,14 +redeemable rI'dim@bl OA% 4 +redeemed rI'dimd Hc%,Hd% 26A,14 +redeemer rI'dim@R K6% 3 +redeemers rI'dim@z Kj% 3 +redeeming rI'dimIN Hb% 36A,14 +redeems rI'dimz Ha% 26A,14 +redefine ,ridI'faIn H2% 36A +redefined ,ridI'faInd Hc%,Hd% 36A +redefines ,ridI'faInz Ha% 36A +redefining ,ridI'faInIN Hb% 46A +redemption rI'dempSn L@% 3 +redemptive rI'demptIv OA% 3 +redeploy ,ridI'ploI H0% 36A +redeployed ,ridI'ploId Hc%,Hd% 36A +redeploying ,ridI'ploIIN Hb% 46A +redeployment ,ridI'ploIm@nt M6% 4 +redeployments ,ridI'ploIm@nts Mj% 4 +redeploys ,ridI'ploIz Ha% 36A +redesign ,ridI'zaIn H0% 32A,2C,6A,14,16A,16B +redesigned ,ridI'zaInd Hc%,Hd% 32A,2C,6A,14,16A,16B +redesigning ,ridI'zaInIN Hb% 42A,2C,6A,14,16A,16B +redesigns ,ridI'zaInz Ha% 32A,2C,6A,14,16A,16B +redevelop ,ridI'vel@p H0% 42A,2C,3A,6A +redeveloped ,ridI'vel@pt Hc%,Hd% 42A,2C,3A,6A +redeveloping ,ridI'vel@pIN Hb% 52A,2C,3A,6A +redevelopment ,ridI'vel@pm@nt M6% 5 +redevelopments ,ridI'vel@pm@nts Mj% 5 +redevelops ,ridI'vel@ps Ha% 42A,2C,3A,6A +redhead 'redhed K6% 2 +redheads 'redhedz Kj% 2 +redid ,ri'dId Hc% 26A +rediffusion ,ridI'fjuZn L@% 4 +rediscover ,ridI'skVv@R H0% 46A,8,9,10,25 +rediscovered ,ridI'skVv@d Hc%,Hd% 46A,8,9,10,25 +rediscoveries ,ridI'skVv@rIz Mj% 5 +rediscovering ,ridI'skVv@rIN Hb% 56A,8,9,10,25 +rediscovers ,ridI'skVv@z Ha% 46A,8,9,10,25 +rediscovery ,ridI'skVv@rI M8% 5 +redisposition ,ridIsp@'zISn K6% 5 +redispositions ,ridIsp@'zISnz Kj% 5 +redistribute ,ridI'strIbjut H2% 46A,14 +redistributed ,ridI'strIbjutId Hc%,Hd% 56A,14 +redistributes ,ridI'strIbjuts Ha% 46A,14 +redistributing ,ridI'strIbjutIN Hb% 56A,14 +redistribution ,ridIstrI'bjuSn M6% 5 +redistributions ,ridIstrI'bjuSnz Mj% 5 +redness 'rednIs L@% 2 +redo ,ri'du H5% 26A +redoes ,ri'dVz Ha% 26A +redoing ,ri'duIN Hb% 36A +redolence 'red@l@ns L@% 3 +redolent 'red@l@nt OA% 3 +redone ,ri'dVn Hd% 26A +redouble rI'dVbl J2% 32A,6A +redoubled rI'dVbld Jc%,Jd% 32A,6A +redoubles rI'dVblz Ja% 32A,6A +redoubling rI'dVblIN Jb% 32A,6A +redoubt rI'daUt K6$ 2 +redoubtable rI'daUt@bl OA% 4 +redoubts rI'daUts Kj$ 2 +redound rI'daUnd I0$ 23A +redounded rI'daUndId Ic$,Id$ 33A +redounding rI'daUndIN Ib$ 33A +redounds rI'daUndz Ia$ 23A +redress rI'dres H1%,L@% 26A +redressed rI'drest Hc%,Hd% 26A +redresses rI'dresIz Ha% 36A +redressing rI'dresIN Hb% 36A +reds redz Mj% 1 +redskin 'redskIn K6% 2 +redskins 'redskInz Kj% 2 +reduce rI'djus J2% 22A,2B,6A,14 +reduced rI'djust Jc%,Jd% 22A,2B,6A,14 +reduces rI'djusIz Ja% 32A,2B,6A,14 +reducible rI'djus@bl OA% 4 +reducing rI'djusIN Jb% 32A,2B,6A,14 +reductio ad absurdum rI,dVktI@U ,&d @b's3d@mMi% 8 +reduction rI'dVkSn M6% 3 +reductions rI'dVkSnz Mj% 3 +redundance rI'dVnd@ns K6$ 3 +redundances rI'dVnd@nsIz Kj$ 4 +redundancies rI'dVnd@nsIz Mj% 4 +redundancy rI'dVnd@nsI M8% 4 +redundant rI'dVnd@nt OA% 3 +reduplicate rI'djuplIkeIt H2% 46A +reduplicated rI'djuplIkeItId Hc%,Hd% 56A +reduplicates rI'djuplIkeIts Ha% 46A +reduplicating rI'djuplIkeItIN Hb% 56A +reduplication rI,djuplI'keISn M6% 5 +reduplications rI,djuplI'keISnz Mj% 5 +redwing 'redwIN K6% 2 +redwings 'redwINz Kj% 2 +redwood 'redwUd K6% 2 +redwoods 'redwUdz Kj% 2 +reed rid M6% 1 +reedier 'ridI@R Or% 3 +reediest 'ridIIst Os% 3 +reeds ridz Mj% 1 +reedy 'ridI OD% 2 +reef rif H0$,K6% 16A +reef-knot 'rif-n0t K6% 2 +reef-knots 'rif-n0ts Kj% 2 +reefed rift Hc$,Hd$ 16A +reefer 'rif@R K6% 2 +reefers 'rif@z Kj% 2 +reefing 'rifIN Hb$ 26A +reefs rifs Ha$,Kj% 16A +reek rik I0%,L@% 13A +reeked rikt Ic%,Id% 13A +reeking 'rikIN Ib% 23A +reeks riks Ia% 13A +reel ril J0%,K6% 12A,2C,6A,15A,15B +reeled rild Jc%,Jd% 12A,2C,6A,15A,15B +reeling 'rilIN Jb% 22A,2C,6A,15A,15B +reels rilz Ja%,Kj% 12A,2C,6A,15A,15B +reeve riv K6$ 1 +reeves rivz Kj$ 1 +ref ref Y>% 1 +reface ,ri'feIs H2$ 2 +refaced ,ri'feIst Hc$,Hd% 2 +refaces ,ri'feIsIz Ha$ 3 +refacing ,ri'feIsIN Hb$ 3 +refashion ri'f&Sn H0%,M6% 36A,15A +refashioned ri'f&Snd Hc%,Hd% 36A,15A +refashioning ri'f&S@nIN Hb% 46A,15A +refashions ri'f&Snz Ha% 36A,15A +refection rI'fekSn M6$ 3 +refections rI'fekSnz Mj$ 3 +refectories rI'fekt@rIz Kj% 4 +refectory rI'fekt@rI K8% 4 +refer rI'f3R J4% 23A,14,15B +referable rI'f3r@bl OA% 4 +referee ,ref@'ri J5%,K6% 32A,6A +refereed ,ref@'rid Jc%,Jd% 32A,6A +refereeing ,ref@'riIN Jb% 42A,6A +referees ,ref@'riz Ja%,Kj% 32A,6A +reference 'refr@ns M6% 2 +references 'refr@nsIz Mj% 3 +referenda ,ref@'rend@ Kj% 4 +referendum ,ref@'rend@m K6% 4 +referendums ,ref@'rend@mz Kj% 4 +referential ,ref@'renSl OA% 4 +referred rI'f3d Jc%,Jd% 23A,14,15B +referring rI'f3rIN Jb% 33A,14,15B +refers rI'f3z Ja% 23A,14,15B +refill 'rifIl K6% 2 +refill ,ri'fIl H0% 2 +refilled ,ri'fIld Hc%,Hd% 2 +refilling ,ri'fIlIN Hb% 3 +refills 'rifIlz Kj% 2 +refills ,ri'fIlz Ha% 2 +refine rI'faIn J2% 22A,6A +refined rI'faInd Jc%,Jd% 22A,6A +refinement rI'faInm@nt M6% 3 +refinements rI'faInm@nts Mj% 3 +refiner rI'faIn@R K6% 3 +refineries rI'faIn@rIz Kj% 4 +refiners rI'faIn@z Kj% 3 +refinery rI'faIn@rI K8% 4 +refines rI'faInz Ja% 22A,6A +refining rI'faInIN Jb% 32A,6A +refit 'rifIt K6% 2 +refit ,ri'fIt J4% 22A,6A +refits 'rifIts Kj% 2 +refits ,ri'fIts Ja% 22A,6A +refitted ,ri'fItId Jc%,Jd% 32A,6A +refitting ,ri'fItIN Jb% 32A,6A +reflate ,ri'fleIt H2$ 26A +reflated ,ri'fleItId Hc$,Hd$ 36A +reflates ,ri'fleIts Ha$ 26A +reflating ,ri'fleItIN Hb$ 36A +reflation ri'fleISn L@% 3 +reflect rI'flekt J0% 22A,3A,6A,8,9,10,14 +reflected rI'flektId Jc%,Jd% 32A,3A,6A,8,9,10,14 +reflecting rI'flektIN Jb% 32A,3A,6A,8,9,10,14 +reflection rI'flekSn M6% 3 +reflections rI'flekSnz Mj% 3 +reflective rI'flektIv OA% 3 +reflectively rI'flektIvlI Pu% 4 +reflector rI'flekt@R K6% 3 +reflectors rI'flekt@z Kj% 3 +reflects rI'flekts Ja% 22A,3A,6A,8,9,10,14 +reflex 'rifleks K7%,OA% 2 +reflexes 'rifleksIz Kj% 3 +reflexion rI'flekSn M6% 3 +reflexions rI'flekSnz Mj% 3 +reflexive rI'fleksIv K6%,OA% 3 +reflexives rI'fleksIvz Kj% 3 +refloat ,ri'fl@Ut J0% 22A,6A +refloated ,ri'fl@UtId Jc%,Jd% 32A,6A +refloating ,ri'fl@UtIN Jb% 32A,6A +refloats ,ri'fl@Uts Ja% 22A,6A +reflux ,ri'flVks K7$ 2 +refluxes ,ri'flVksIz Kj$ 3 +reforest ,ri'f0rIst H0$ 3 +reforestation ri,f0rI'steISn M6% 5 +reforestations ri,f0rI'steISnz Mj% 5 +reforested ,ri'f0rIstId Hc$,Hd$ 4 +reforesting ,ri'f0rIstIN Hb$ 4 +reforests ,ri'f0rIsts Ha$ 3 +reform rI'fOm J0%,M6% 22A,6A +reformation ,ref@'meISn M6% 4 +reformations ,ref@'meISnz Mj% 4 +reformatories rI'fOm@trIz Kj% 4 +reformatory rI'fOm@trI K8%,OA% 4 +reformed rI'fOmd Jc%,Jd% 22A,6A +reformer rI'fOm@R K6% 3 +reformers rI'fOm@z Kj% 3 +reforming rI'fOmIN Jb% 32A,6A +reforms rI'fOmz Ja%,Mj% 22A,6A +refract rI'fr&kt H0% 26A +refracted rI'fr&ktId Hc%,Hd% 36A +refracting rI'fr&ktIN Hb% 36A +refraction rI'fr&kSn M6% 3 +refractions rI'fr&kSnz Mj% 3 +refractory rI'fr&kt@rI OA% 4 +refracts rI'fr&kts Ha% 26A +refrain rI'freIn I0%,K6% 22A,3A +refrained rI'freInd Ic%,Id% 22A,3A +refraining rI'freInIN Ib% 32A,3A +refrains rI'freInz Ia%,Kj% 22A,3A +refresh rI'freS H1% 26A +refreshed rI'freSt Hc%,Hd% 26A +refresher rI'freS@R K6% 3 +refreshers rI'freS@z Kj% 3 +refreshes rI'freSIz Ha% 36A +refreshing rI'freSIN Hb%,OA% 36A +refreshingly rI'freSINlI Pu% 4 +refreshment rI'freSm@nt M6% 3 +refreshments rI'freSm@nts Mj% 3 +refrigerant rI'frIdZ@r@nt K6$,OA$ 4 +refrigerants rI'frIdZ@r@nts Kj$ 4 +refrigerate rI'frIdZ@reIt H2% 46A +refrigerated rI'frIdZ@reItId Hc%,Hd% 56A +refrigerates rI'frIdZ@reIts Ha% 46A +refrigerating rI'frIdZ@reItIN Hb% 56A +refrigeration rI,frIdZ@'reISn M6% 5 +refrigerations rI,frIdZ@'reISnz Mj% 5 +refrigerator rI'frIdZ@reIt@R K6% 5 +refrigerators rI'frIdZ@reIt@z Kj% 5 +reft reft Hd$ 114 +refuel ,ri'fju@l J4% 32A,6A +refuelled ,ri'fju@ld Jc%,Jd% 32A,6A +refuelling ,ri'fju@lIN Jb% 42A,6A +refuels ,ri'fju@lz Ja% 32A,6A +refuge 'refjudZ M6% 2 +refugee ,refjU'dZi K6% 3 +refugees ,refjU'dZiz Kj% 3 +refuges 'refjudZIz Mj% 3 +refulgence rI'fVldZens L@$ 3 +refulgent rI'fVldZent OA$ 3 +refund 'rifVnd M6% 2 +refund rI'fVnd H0% 26A +refunded rI'fVndId Hc%,Hd% 36A +refunding rI'fVndIN Hb% 36A +refunds 'rifVndz Mj% 2 +refunds rI'fVndz Ha% 26A +refurbish ,ri'f3bIS H1% 36A +refurbished ,ri'f3bISt Hc%,Hd% 36A +refurbishes ,ri'f3bISIz Ha% 46A +refurbishing ,ri'f3bISIN Hb% 46A +refurnish ri'f3nIS H1% 36A,14 +refurnished ri'f3nISt Hc%,Hd% 36A,14 +refurnishes ri'f3nISIz Ha% 46A,14 +refurnishing ri'f3nISIN Hb% 46A,14 +refusal rI'fjuzl M6% 3 +refusals rI'fjuzlz Mj% 3 +refuse 'refjus L@% 2 +refuse rI'fjuz J2% 22A,6A,7A,12C +refuse-collector 'refjus-k@,lekt@R K6% 5 +refuse-collectors 'refjus-k@,lekt@z Kj% 5 +refused rI'fjuzd Jc%,Jd% 22A,6A,7A,12C +refuses rI'fjuzIz Ja% 32A,6A,7A,12C +refusing rI'fjuzIN Jb% 32A,6A,7A,12C +refutable rI'fjut@bl OA% 4 +refutation ,refjU'teISn M6% 4 +refutations ,refjU'teISnz Mj% 4 +refute rI'fjut H2% 26A +refuted rI'fjutId Hc%,Hd% 36A +refutes rI'fjuts Ha% 26A +refuting rI'fjutIN Hb% 36A +regain rI'geIn H0% 26A +regained rI'geInd Hc%,Hd% 26A +regaining rI'geInIN Hb% 36A +regains rI'geInz Ha% 26A +regal 'rig@l OA% 2 +regale rI'geIl H2% 26A,14 +regaled rI'geIld Hc%,Hd% 26A,14 +regales rI'geIlz Ha% 26A,14 +regalia rI'geIlI@ Kj% 4 +regaling rI'geIlIN Hb% 36A,14 +regally 'rig@lI Pu% 3 +regard rI'gAd H0%,M6% 26A,14,16B +regarded rI'gAdId Hc%,Hd% 36A,14,16B +regardful rI'gAdf@l OA% 3 +regarding rI'gAdIN Hb% 36A,14,16B +regardless rI'gAdl@s OA% 3 +regards rI'gAdz Ha%,Mj% 26A,14,16B +regatta rI'g&t@ K6% 3 +regattas rI'g&t@z Kj% 3 +regencies 'ridZ@nsIz Kj$ 3 +regency 'ridZ@nsI K8$ 3 +regenerate rI'dZen@r@t OA% 4 +regenerate rI'dZen@reIt J2% 42A,6A +regenerated rI'dZen@reItId Jc%,Jd% 52A,6A +regenerates rI'dZen@reIts Ja% 42A,6A +regenerating rI'dZen@reItIN Jb% 52A,6A +regeneration rI,dZen@'reISn L@% 5 +regent 'ridZ@nt K6$,OA$ 2 +regents 'ridZ@nts Kj$ 2 +reggae 'regeI L@% 2 +regicide 'redZIsaId M6% 3 +regicides 'redZIsaIdz Mj% 3 +regime reI'Zim K6% 2 +regimen 'redZIm@n K6% 3 +regimens 'redZIm@nz Kj$ 3 +regiment 'redZIm@nt H0%,K6% 36A +regimental ,redZI'mentl OA% 4 +regimentals ,redZI'mentlz Kj$ 4 +regimentation ,redZImen'teISn L@% 5 +regimented 'redZIm@ntId Hc%,Hd% 46A +regimenting 'redZIm@ntIN Hb% 46A +regiments 'redZIm@nts Ha%,Kj% 36A +regimes reI'Zimz Kj% 2 +region 'ridZ@n K6% 2 +regional 'ridZ@nl OA% 3 +regionally 'ridZ@n@lI Pu% 4 +regions 'ridZ@nz Kj% 2 +register 'redZIst@R J0%,K6% 32A,3A,6A,14 +registered 'redZIst@d Jc%,Jd% 32A,3A,6A,14 +registering 'redZIst@rIN Jb% 42A,3A,6A,14 +registers 'redZIst@z Ja%,Kj% 32A,3A,6A,14 +registrar ,redZI'strAR K6% 3 +registrars ,redZI'strAz Kj% 3 +registration ,redZI'streISn M6% 4 +registrations ,redZI'streISnz Mj% 4 +registries 'redZIstrIz Mj% 3 +registry 'redZIstrI M8% 3 +regnant 'regn@nt OA$ 2 +regress rI'gres I1% 22A +regressed rI'grest Ic%,Id% 22A +regresses rI'gresIz Ia% 32A +regressing rI'gresIN Ib% 32A +regression rI'greSn M6% 3 +regressions rI'greSnz Mj% 3 +regressive rI'gresIv OA% 3 +regret rI'gret H4%,M6% 26A,6D,7A,9 +regretful rI'gretf@l OA% 3 +regretfully rI'gretf@lI Pu% 4 +regrets rI'grets Ha%,Mj% 26A,6D,7A,9 +regrettable rI'gret@bl OA% 4 +regrettably rI'gret@blI Pu% 4 +regretted rI'gretId Hc%,Hd% 36A,6D,7A,9 +regretting rI'gretIN Hb% 36A,6D,7A,9 +regroup ,ri'grup J0% 22A,6A +regrouped ,ri'grupt Jc%,Jd% 22A,6A +regrouping ,ri'grupIN Jb% 32A,6A +regroups ,ri'grups Ja% 22A,6A +regular 'regjUl@R K6%,OA% 3 +regularities ,regjU'l&rItIz Mj% 5 +regularity ,regjU'l&rItI M8% 5 +regularization ,regjUl@raI'zeISn M6% 6 +regularizations ,regjUl@raI'zeISnz Mj% 6 +regularize 'regjUl@raIz H2% 46A +regularized 'regjUl@raIzd Hc%,Hd% 46A +regularizes 'regjUl@raIzIz Ha% 56A +regularizing 'regjUl@raIzIN Hb% 56A +regularly 'regjUl@lI Pu% 4 +regulars 'regjUl@z Kj% 3 +regulate 'regjUleIt H2% 36A +regulated 'regjUleItId Hc%,Hd% 46A +regulates 'regjUleIts Ha% 36A +regulating 'regjUleItIN Hb% 46A +regulation ,regjU'leISn M6% 4 +regulations ,regjU'leISnz Mj% 4 +regulator 'regjUleIt@R K6% 4 +regulators 'regjUleIt@z Kj% 4 +regurgitate ri'g3dZIteIt J2% 42A,6A +regurgitated ri'g3dZIteItId Jc%,Jd% 52A,6A +regurgitates ri'g3dZIteIts Ja% 42A,6A +regurgitating ri'g3dZIteItIN Jb% 52A,6A +rehabilitate ,ri@'bIlIteIt H2% 56A +rehabilitated ,ri@'bIlIteItId Hc%,Hd% 66A +rehabilitates ,ri@'bIlIteIts Ha% 56A +rehabilitating ,ri@'bIlIteItIN Hb% 66A +rehabilitation ,ri@,bIlI'teISn M6% 6 +rehabilitations ,ri@,bIlI'teISnz Mj% 6 +rehash 'rih&S K7% 2 +rehash ,ri'h&S H1% 2 +rehashed ,ri'h&St Hc%,Hd% 2 +rehashes 'rih&SIz Kj$ 3 +rehashes ,ri'h&SIz Ha$ 3 +rehashing ,ri'h&SIN Hb% 3 +rehear ,ri'hI@R H5$ 26A +reheard ,ri'h3d Hc$,Hd$ 26A +rehearing ,ri'hI@rIN Hb$,K6$ 36A +rehearings ,ri'hI@rINz Kj$ 3 +rehears ,ri'hI@z Ha$ 26A +rehearsal rI'h3sl M6% 3 +rehearsals rI'h3slz Mj% 3 +rehearse rI'h3s J2% 22A,6A +rehearsed rI'h3st Jc%,Jd% 22A,6A +rehearses rI'h3sIz Ja% 32A,6A +rehearsing rI'h3sIN Jb% 32A,6A +rehouse ,ri'haUz H2% 26A +rehoused ,ri'haUzd Hc%,Hd% 26A +rehouses ,ri'haUzIz Ha% 36A +rehousing ,ri'haUzIN Hb% 36A +reign reIn I0%,K6% 12A,3A +reigned reInd Ic%,Id% 12A,3A +reigning 'reInIN Ib% 22A,3A +reigns reInz Ia%,Kj% 12A,3A +reimburse ,riIm'b3s H2% 36A,12A,13A,14 +reimbursed ,riIm'b3st Hc%,Hd% 36A,12A,13A,14 +reimbursement ,riIm'b3sm@nt M6% 4 +reimbursements ,riIm'b3sm@nts Mj% 4 +reimburses ,riIm'b3sIz Ha% 46A,12A,13A,14 +reimbursing ,riIm'b3sIN Hb% 46A,12A,13A,14 +reimposition ,riImp@'zISn M6% 5 +reimpositions ,riImp@'zISnz Mj% 5 +rein reIn H0%,K6% 16A,15B +reincarnate ,riIn'kAn@t OA% 4 +reincarnate ,riIn'kAneIt H2$ 4 +reincarnated ,riIn'kAneItId Hc$,Hd% 5 +reincarnates ,riIn'kAneIts Ha$ 4 +reincarnating ,riInkA'neItIN Hb$ 5 +reincarnation ,riInkA'neISn M6% 5 +reincarnations ,riInkA'neISnz Mj$ 5 +reindeer 'reIndI@R K9% 2 +reined reInd Hc%,Hd% 16A,15B +reinforce ,riIn'fOs H2% 36A +reinforced ,riIn'fOst Hc%,Hd% 36A +reinforcement ,riIn'fOsm@nt M6% 4 +reinforcements ,riIn'fOsm@nts Mj% 4 +reinforces ,riIn'fOsIz Ha% 46A +reinforcing ,riIn'fOsIN Hb% 46A +reining 'reInIN Hb% 26A,15B +reins reInz Ha%,Kj% 16A,15B +reinstate ,riIn'steIt H2% 36A,14 +reinstated ,riIn'steItId Hc%,Hd% 46A,14 +reinstatement ,riIn'steItm@nt K6% 4 +reinstatements ,riIn'steItm@nts Kj% 4 +reinstates ,riIn'steIts Ha% 36A,14 +reinstating ,riIn'steItIN Hb% 46A,14 +reinsurance ,riIn'Sur@ns M6% 4 +reinsurances ,riIn'Sur@nsIz Mj$ 5 +reinsure ,riIn'SU@R H2% 36A +reinsured ,riIn'SU@d Hc%,Hd% 36A +reinsures ,riIn'SU@z Ha% 36A +reinsuring ,riIn'SU@rIN Hb% 46A +reintegrate ri'IntIgreIt H2% 42A,6A +reintegrated ri'IntIgreItId Hc%,Hd% 52A,6A +reintegrates ri'IntIgreIts Ha% 42A,6A +reintegrating ri'IntIgreItIN Hb% 52A,6A +reinterpret ,riIn't3prIt H0% 42A,6A,16B +reinterpretation ,riIn,t3prI'teISn M6% 6 +reinterpretations ,riIn,t3prI'teISnz Mj% 6 +reinterpreted ,riIn't3prItId Hc%,Hd% 52A,6A,16B +reinterpreting ,riIn't3prItIN Hb% 52A,6A,16B +reinterprets ,riIn't3prIts Ha% 42A,6A,16B +reissue ,ri'ISu H2%,K6% 36A +reissued ,ri'ISud Hc%,Hd% 36A +reissues ,ri'ISuz Ha%,Kj% 36A +reissuing ,ri'ISuIN Hb% 46A +reiterate ri'It@reIt H2% 46A +reiterated ri'It@reItId Hc%,Hd% 56A +reiterates ri'It@reIts Ha% 46A +reiterating ri'It@reItIN Hb% 56A +reiteration ri,It@'reISn M6% 5 +reiterations ri,It@'reISnz Mj% 5 +reject 'ridZekt K6% 2 +reject rI'dZekt H0% 26A +rejected rI'dZektId Hc%,Hd% 36A +rejecting rI'dZektIN Hb% 36A +rejection rI'dZekSn M6% 3 +rejections rI'dZekSnz Mj% 3 +rejects 'ridZekts Kj% 2 +rejects rI'dZekts Ha% 26A +rejig ,ri'dZIg H4$ 26A +rejigged ,ri'dZIgd Hc$,Hd$ 26A +rejigging ,ri'dZIgIN Hb$ 36A +rejigs ,ri'dZIgz Ha$ 26A +rejoice rI'dZoIs J2% 22A,2C,3B,4C,6A +rejoiced rI'dZoIst Jc%,Jd% 22A,2C,3B,4C,6A +rejoices rI'dZoIsIz Ja% 32A,2C,3B,4C,6A +rejoicing rI'dZoIsIN Jb%,L@% 32A,2C,3B,4C,6A +rejoin ,ri'dZoIn H0% 26A +rejoin rI'dZoIn J0% 22A,6A +rejoinder rI'dZoInd@R K6% 3 +rejoinders rI'dZoInd@z Kj% 3 +rejoined ,ri'dZoInd Hc%,Hd% 26A +rejoined rI'dZoInd Jc%,Jd% 22A,6A +rejoining ,ri'dZoInIN Hb% 36A +rejoining rI'dZoInIN Jb% 32A,6A +rejoins ,ri'dZoInz Ha% 26A +rejoins rI'dZoInz Ja% 22A,6A +rejuvenate ri'dZuv@neIt J2% 42A,6A +rejuvenated ri'dZuv@neItId Jc%,Jd% 52A,6A +rejuvenates ri'dZuv@neIts Ja% 42A,6A +rejuvenating ri'dZuv@neItIN Jb% 52A,6A +rejuvenation rI,dZuv@'neISn K6% 5 +rejuvenations rI,dZuv@'neISnz Kj$ 5 +rekindle ,ri'kIndl J2% 32A,6A +rekindled ,ri'kIndld Jc%,Jd% 32A,6A +rekindles ,ri'kIndlz Ja% 32A,6A +rekindling ,ri'kIndlIN Jb% 32A,6A +relaid ,ri'leId Hc%,Hd% 2 +relapse rI'l&ps I2%,K6% 22A,3A +relapsed rI'l&pst Ic%,Id% 22A,3A +relapses rI'l&psIz Ia%,Kj% 32A,3A +relapsing rI'l&psIN Ib% 32A,3A +relate rI'leIt J2% 23A,6A,14 +related rI'leItId Jc%,Jd% 33A,6A,14 +relates rI'leIts Ja% 23A,6A,14 +relating rI'leItIN Jb% 33A,6A,14 +relation rI'leISn M6% 3 +relations rI'leISnz Mj% 3 +relationship rI'leISnSIp M6% 4 +relationships rI'leISnSIps Mj% 4 +relative 'rel@tIv K6%,OA% 3 +relatively 'rel@tIvlI Pu% 4 +relatives 'rel@tIvz Kj% 3 +relativity ,rel@'tIvItI L@% 5 +relax rI'l&ks J1% 22A,2C,6A +relaxation ,ril&k'seISn M6% 4 +relaxations ,ril&k'seISnz Mj% 4 +relaxed rI'l&kst Jc%,Jd% 22A,2C,6A +relaxes rI'l&ksIz Ja% 32A,2C,6A +relaxing rI'l&ksIN Jb% 32A,2C,6A +relay 'rileI K6% 2 +relay ,ri'leI H5$ 2 +relay rI'leI H0% 2 +relayed rI'leId Hc%,Hd% 2 +relaying ,ri'leIIN Hb$ 3 +relaying rI'leIIN Hb% 3 +relays 'rileIz Kj% 2 +relays ,ri'leIz Ha$ 2 +relays rI'leIz Ha% 2 +release rI'lis H2%,M6% 26A,14 +released rI'list Hc%,Hd% 26A,14 +releases rI'lisIz Ha%,Mj% 36A,14 +releasing rI'lisIN Hb% 36A,14 +relegate 'relIgeIt H2% 314 +relegated 'relIgeItId Hc%,Hd% 414 +relegates 'relIgeIts Ha% 314 +relegating 'relIgeItIN Hb% 414 +relegation ,relI'geISn L@% 4 +relent rI'lent I0% 22A +relented rI'lentId Ic%,Id% 32A +relenting rI'lentIN Ib% 32A +relentless rI'lentl@s OA% 3 +relentlessly rI'lentl@slI Pu% 4 +relents rI'lents Ia% 22A +relevance 'rel@v@ns K6% 3 +relevancy 'rel@v@nsI L@$ 4 +relevant 'rel@v@nt OA% 3 +relevantly 'rel@v@ntlI Pu% 4 +reliability rI,laI@'bIlItI L@% 6 +reliable rI'laI@bl OA% 4 +reliably rI'laI@blI Pu% 4 +reliance rI'laI@ns L@% 3 +reliant rI'laI@nt OA% 3 +relic 'relIk K6% 2 +relics 'relIks Kj% 2 +relict 'relIkt K6$ 2 +relicts 'relIkts Kj$ 2 +relied rI'laId Ic%,Id% 23A +relief rI'lif M6% 2 +reliefs rI'lifs Mj% 2 +relies rI'laIz Ia% 23A +relieve rI'liv H2% 26A +relieved rI'livd Hc%,Hd% 26A +relieves rI'livz Ha% 26A +relieving rI'livIN Hb% 36A +religion rI'lIdZ@n M6% 3 +religions rI'lIdZ@nz Mj% 3 +religious rI'lIdZ@s K9%,OA% 3 +religiously rI'lIdZ@slI Pu% 4 +reline ,ri'laIn H2% 2 +relined ,ri'laInd Hc%,Hd% 2 +relines ,ri'laInz Ha% 2 +relining ,ri'laInIN Hb% 3 +relinquish rI'lINkwIS H1% 36A,14 +relinquished rI'lINkwISt Hc%,Hd% 36A,14 +relinquishes rI'lINkwISIz Ha% 46A,14 +relinquishing rI'lINkwISIN Hb% 46A,14 +reliquaries 'relIkw@rIz Kj$ 4 +reliquary 'relIkw@rI K8$ 4 +relish 'relIS H1%,M7% 26A,6D +relished 'relISt Hc%,Hd% 26A,6D +relishes 'relISIz Ha%,Mj% 36A,6D +relishing 'relISIN Hb% 36A,6D +relive ,ri'lIv H2% 2 +relived ,ri'lIvd Hc%,Hd% 2 +relives ,ri'lIvz Ha% 2 +reliving ,ri'lIvIN Hb% 3 +relocate ,ril@U'keIt J2% 3 +relocated ,ril@U'keItId Jc%,Jd% 4 +relocates ,ril@U'keIts Ja% 3 +relocating ,ril@U'keItIN Jb% 4 +relocation ,ril@U'keISn L@% 4 +reluctance rI'lVkt@ns L@% 3 +reluctant rI'lVkt@nt OA% 3 +reluctantly rI'lVkt@ntlI Pu% 4 +rely rI'laI I3% 23A +relying rI'laIIN Ib% 33A +remade ,ri'meId Hc%,Hd% 2 +remain rI'meIn I0% 22A,2B,2C,4A +remainder rI'meInd@R K6% 3 +remainders rI'meInd@z Kj% 3 +remained rI'meInd Ic%,Id% 22A,2B,2C,4A +remaining rI'meInIN Ib% 32A,2B,2C,4A +remains rI'meInz Ia%,Kj% 22A,2B,2C,4A +remake 'rimeIk K6% 2 +remake ,ri'meIk H5% 2 +remakes 'rimeIks Kj% 2 +remakes ,ri'meIks Ha% 2 +remaking ,ri'meIkIN Hb% 3 +remand rI'mAnd H0%,L@% 26A +remanded rI'mAndId Hc%,Hd% 36A +remanding rI'mAndIN Hb% 36A +remands rI'mAndz Ha% 26A +remark rI'mAk J0%,M6% 23A,6A,9,10 +remarkable rI'mAk@bl OA% 4 +remarkably rI'mAk@blI Pu% 4 +remarked rI'mAkt Jc%,Jd% 23A,6A,9,10 +remarking rI'mAkIN Jb% 33A,6A,9,10 +remarks rI'mAks Ja%,Mj% 23A,6A,9,10 +remarriage ,ri'm&rIdZ K6% 3 +remarriages ,ri'm&rIdZIz Kj% 4 +remarried ,ri'm&rId Jc%,Jd% 3 +remarries ,ri'm&rIz Ja% 3 +remarry ,ri'm&rI J3% 3 +remarrying ,ri'm&rIIN Jb% 4 +remediable rI'midI@bl OA% 5 +remedial rI'midI@l OA% 4 +remedied 'rem@dId Hc%,Hd% 36A +remedies 'rem@dIz Ha%,Mj% 36A +remedy 'rem@dI H3%,M8% 36A +remedying 'rem@dIIN Hb% 46A +remember rI'memb@R J0% 36A,6C,7A,8,9,10,14,16B,19C +remembered rI'memb@d Jc%,Jd% 36A,6C,7A,8,9,10,14,16B,19C +remembering rI'memb@rIN Jb% 46A,6C,7A,8,9,10,14,16B,19C +remembers rI'memb@z Ja% 36A,6C,7A,8,9,10,14,16B,19C +remembrance rI'membr@ns M6% 3 +remembrances rI'membr@nsIz Mj% 4 +remilitarization ,ri,mIlIt@raI'zeISn M6% 7 +remilitarizations ,ri,mIlIt@raI'zeISnz Mj$ 7 +remilitarize ,ri'mIlIt@raIz H2% 56A +remilitarized ,ri'mIlIt@raIzd Hc%,Hd% 56A +remilitarizes ,ri'mIlIt@raIzIz Ha% 66A +remilitarizing ,ri'mIlIt@raIzIN Hb% 66A +remind rI'maInd H0% 26A,11,14,17,20,21 +reminded rI'maIndId Hc%,Hd% 36A,11,14,17,20,21 +reminder rI'maInd@R K6% 3 +reminders rI'maInd@z Kj% 3 +reminding rI'maIndIN Hb% 36A,11,14,17,20,21 +reminds rI'maIndz Ha% 26A,11,14,17,20,21 +reminisce ,remI'nIs I2% 32A,3A +reminisced ,remI'nIst Ic%,Id% 32A,3A +reminiscence ,remI'nIsns M6% 4 +reminiscences ,remI'nIsnsIz Mj% 5 +reminiscent ,remI'nIsnt OA% 4 +reminiscently ,remI'nIsntlI Pu% 5 +reminisces ,remI'nIsIz Ia% 42A,3A +reminiscing ,remI'nIsIN Ib% 42A,3A +remiss rI'mIs OA% 2 +remission rI'mISn M6% 3 +remissions rI'mISnz Mj% 3 +remissness rI'mIsn@s L@% 3 +remit rI'mIt J4% 22C,6A,12A,13A,14 +remits rI'mIts Ja% 22C,6A,12A,13A,14 +remittance rI'mItns M6% 3 +remittances rI'mItnsIz Mj% 4 +remitted rI'mItId Jc%,Jd% 32C,6A,12A,13A,14 +remittent rI'mItnt OA$ 3 +remitting rI'mItIN Jb% 32C,6A,12A,13A,14 +remnant 'remn@nt K6% 2 +remnants 'remn@nts Kj% 2 +remodel ri'm0dl H4% 32A,6A,14,15A +remodelled ri'm0dld Hc%,Hd% 32A,6A,14,15A +remodelling ri'm0d@lIN Hb% 42A,6A,14,15A +remodels ri'm0dlz Ha% 32A,6A,14,15A +remonstrance rI'm0nstr@ns M6$ 3 +remonstrances rI'm0nstr@nsIz Mj$ 4 +remonstrate 'rem@nstreIt I2% 32A,3A +remonstrated 'rem@nstreItId Ic%,Id% 42A,3A +remonstrates 'rem@nstreIts Ia% 32A,3A +remonstrating 'rem@nstreItIN Ib% 42A,3A +remorse rI'mOs L@% 2 +remorseful rI'mOsf@l OA% 3 +remorsefully rI'mOsf@lI Pu% 4 +remorseless rI'mOsl@s OA% 3 +remorselessly rI'mOsl@slI Pu% 4 +remote rI'm@Ut OB% 2 +remotely rI'm@UtlI Pu% 3 +remoteness rI'm@Utn@s L@% 3 +remoter rI'm@Ut@R Or% 3 +remotest rI'm@UtIst Os% 3 +remould ri'm@Uld H0% 22A,6A,14 +remoulded ri'm@UldId Hc%,Hd% 32A,6A,14 +remoulding ri'm@UldIN Hb% 32A,6A,14 +remoulds ri'm@Uldz Ha% 22A,6A,14 +remount 'rimaUnt K6% 2 +remount ,ri'maUnt J0% 22A,6A +remounted ,ri'maUntId Jc%,Jd% 32A,6A +remounting ,ri'maUntIN Jb% 32A,6A +remounts 'rimaUnts Kj$ 2 +remounts ,ri'maUnts Ja% 22A,6A +removable rI'muv@bl OA% 4 +removal rI'muv@l M6% 3 +removals rI'muv@lz Mj% 3 +remove rI'muv J2%,K6% 22A,2C,6A,14 +removed rI'muvd Jc%,Jd%,OA% 22A,2C,6A,14 +remover rI'muv@R K6% 3 +removers rI'muv@z Kj% 3 +removes rI'muvz Ja%,Kj% 22A,2C,6A,14 +removing rI'muvIN Jb% 32A,2C,6A,14 +remunerate rI'mjun@reIt H2% 46A,14 +remunerated rI'mjun@reItId Hc%,Hd% 56A,14 +remunerates rI'mjun@reIts Ha% 46A,14 +remunerating rI'mjun@reItIN Hb% 56A,14 +remuneration rI,mjun@'reISn L@% 5 +remunerative rI'mjun@r@tIv OA% 5 +renaissance rI'neIsns K6% 3 +renaissances rI'neIsnsIz Kj$ 4 +renal 'rinl OA% 2 +rename ,ri'neIm H2% 26A +renamed ,ri'neImd Hc%,Hd% 26A +renames ,ri'neImz Ha% 26A +renaming ,ri'neImIN Hb% 36A +renascence rI'n&sns K6$ 3 +renascences rI'n&snsIz Kj$ 4 +renascent rI'n&snt OA$ 3 +rend rend H5% 16A,14,15A +render 'rend@R H0% 26A,12A,13A,14,15A,15B,22 +rendered 'rend@d Hc%,Hd% 26A,12A,13A,14,15A,15B,22 +rendering 'rend@rIN Hb%,M6% 36A,12A,13A,14,15A,15B,22 +renderings 'rend@rINz Mj% 3 +renders 'rend@z Ha% 26A,12A,13A,14,15A,15B,22 +rendezvoued 'r0ndIvud Ic$,Id$ 32A,2C +rendezvouing 'r0ndIvuIN Ib$ 42A,2C +rendezvous 'r0ndIvu I5%,K9% 32A,2C +rendezvous 'r0ndIvuz Ia$ 32A,2C +rending 'rendIN Hb% 26A,14,15A +rendition ren'dISn K6% 3 +renditions ren'dISnz Kj% 3 +rends rendz Ha% 16A,14,15A +renegade 'renIgeId I2$,K6% 3 +renegaded 'renIgeIdId Ic$,Id$ 4 +renegades 'renIgeIdz Ia$,Kj% 3 +renegading 'renIgeIdIN Ib$ 4 +renege rI'neIg I2% 23A +reneged rI'neIgd Ic%,Id% 23A +reneges rI'neIgz Ia% 23A +reneging rI'neIgIN Ib% 33A +renegue rI'neIg I2$ 23A +renegued rI'neIgd Ic$,Id$ 23A +renegues rI'neIgz Ia$ 23A +reneguing rI'neIgIN Ib$ 33A +renew rI'nju H0% 26A +renewable rI'nju@bl OA% 4 +renewal rI'nju@l M6% 3 +renewals rI'nju@lz Mj% 3 +renewed rI'njud Hc%,Hd% 26A +renewing rI'njuIN Hb% 36A +renews rI'njuz Ha% 26A +rennet 'renIt L@% 2 +renounce rI'naUns H2% 26A +renounced rI'naUnst Hc%,Hd% 26A +renounces rI'naUnsIz Ha% 36A +renouncing rI'naUnsIN Hb% 36A +renovate 'ren@veIt H2% 36A +renovated 'ren@veItId Hc%,Hd% 46A +renovates 'ren@veIts Ha% 36A +renovating 'ren@veItIN Hb% 46A +renovation ,ren@'veISn M6% 4 +renovations ,ren@'veISnz Mj% 4 +renovator 'ren@veIt@R K6% 4 +renovators 'ren@veIt@z Kj% 4 +renown rI'naUn L@% 2 +renowned rI'naUnd OA% 2 +rent rent Hc%,Hd%,J0%,M6% 12A,2C,6A,14,15A +rent-collector 'rent-k@,lekt@R K6% 4 +rent-collectors 'rent-k@,lekt@z Kj% 4 +rent-free rent-'fri OA%,Pu% 2 +rent-rebate 'rent-ribeIt M6% 3 +rent-rebates 'rent-ribeIts Mj% 3 +rent-roll 'rent-r@Ul K6$ 2 +rent-rolls 'rent-r@Ulz Kj$ 2 +rentable 'rent@bl OA% 3 +rental 'rentl K6% 2 +rentals 'rentlz Kj% 2 +rented 'rentId Jc%,Jd% 22A,2C,6A,14,15A +rentier 'rAntIeI K6$ 3 +rentiers 'rAntIeIz Kj$ 3 +renting 'rentIN Jb% 22A,2C,6A,14,15A +rents rents Ja%,Mj% 12A,2C,6A,14,15A +renunciation rI,nVnsI'eISn L@% 5 +reopen ri'@Up@n J0% 32A,6A +reopened ri'@Up@nd Jc%,Jd% 32A,6A +reopening ri'@Up@nIN Jb% 42A,6A +reopens ri'@Up@nz Ja% 32A,6A +reorganization ri,Og@naI'zeISn M6% 6 +reorganizations ri,Og@naI'zeISnz Mj% 6 +reorganize ri'Og@naIz J2% 4 +reorganized ri'Og@naIzd Jc%,Jd% 4 +reorganizes ri'Og@naIzIz Ja% 5 +reorganizing ri'Og@naIzIN Jb% 5 +reorient ri'OrI@nt J0% 4 +reorientate ri'OrI@nteIt J2% 5 +reorientated ri'OrI@nteItId Jc%,Jd% 6 +reorientates ri'OrI@nteIts Ja% 5 +reorientating ri'OrI@nteItIN Jb% 6 +reorientation ri,OrIen'teISn L@% 6 +reoriented ri'OrI@ntId Jc%,Jd% 5 +reorienting ri'OrI@ntIN Jb% 5 +reorients ri'OrI@nts Ja% 4 +rep rep M6% 1 +repaid rI'peId Jc%,Jd% 22A,6A,14 +repaint ri'peInt H0% 22A,2C,6A,15A,15B,22 +repainted ri'peIntId Hc%,Hd% 32A,2C,6A,15A,15B,22 +repainting ri'peIntIN Hb% 32A,2C,6A,15A,15B,22 +repaints ri'peInts Ha% 22A,2C,6A,15A,15B,22 +repair rI'pe@R J0%,M6% 23A,6A +repairable rI'pe@r@bl OA% 4 +repaired rI'pe@d Jc%,Jd% 23A,6A +repairer rI'pe@r@R K6% 3 +repairers rI'pe@r@z Kj% 3 +repairing rI'pe@rIN Jb% 33A,6A +repairs rI'pe@z Ja%,Mj% 23A,6A +reparable 'rep@r@bl OA$ 4 +reparation ,rep@'reISn M6% 4 +reparations ,rep@'reISnz Mj% 4 +repartee ,repA'ti M6% 3 +repartees ,repA'tiz Mj$ 3 +repast rI'pAst K6% 2 +repasts rI'pAsts Kj% 2 +repatriate ri'p&trIeIt H2%,K6% 46A +repatriated ri'p&trIeItId Hc%,Hd% 56A +repatriates ri'p&trIeIts Ha%,Kj% 46A +repatriating ri'p&trIeItIN Hb% 56A +repatriation ,rip&trI'eISn M6% 5 +repatriations ,rip&trI'eISnz Mj% 5 +repay rI'peI J5% 22A,6A,14 +repayable rI'peI@bl OA% 4 +repaying rI'peIIN Jb% 32A,6A,14 +repayment rI'peIm@nt M6% 3 +repayments rI'peIm@nts Mj% 3 +repays rI'peIz Ja% 22A,6A,14 +repeal rI'pil H0%,K6% 26A +repealed rI'pild Hc%,Hd% 26A +repealing rI'pilIN Hb% 36A +repeals rI'pilz Ha%,Kj% 26A +repeat rI'pit J0%,K6% 22A,6A,9 +repeatable rI'pit@bl OA% 4 +repeated rI'pitId Jc%,Jd%,OA% 32A,6A,9 +repeatedly rI'pitIdlI Pu% 4 +repeater rI'pit@R K6% 3 +repeaters rI'pit@z Kj% 3 +repeating rI'pitIN Jb% 32A,6A,9 +repeats rI'pits Ja%,Kj% 22A,6A,9 +repel rI'pel H4% 26A +repelled rI'peld Hc%,Hd% 26A +repellent rI'pel@nt L@%,OA% 3 +repelling rI'pelIN Hb% 36A +repels rI'pelz Ha% 26A +repent rI'pent J0% 22A,3A,6A,6D +repentance rI'pent@ns L@% 3 +repentant rI'pent@nt OA% 3 +repentantly rI'pent@ntlI Pu% 4 +repented rI'pentId Jc%,Jd% 32A,3A,6A,6D +repenting rI'pentIN Jb% 32A,3A,6A,6D +repents rI'pents Ja% 22A,3A,6A,6D +repercussion ,rip@'kVSn M6% 4 +repercussions ,rip@'kVSnz Mj% 4 +repertoire 'rep@twAR K6% 3 +repertoires 'rep@twAz Kj% 3 +repertories 'rep@trIz Kj$ 3 +repertory 'rep@trI K8% 3 +repetition ,repI'tISn M6% 4 +repetitions ,repI'tISnz Mj% 4 +repetitious ,repI'tIS@s OA% 4 +repetitive rI'pet@tIv OA% 4 +repetitively rI'pet@tIvlI Pu% 5 +repine rI'paIn I2$ 22A,3A +repined rI'paInd Ic$,Id$ 22A,3A +repines rI'paInz Ia$ 22A,3A +repining rI'paInIN Ib$ 32A,3A +replace rI'pleIs H2% 26A,14,15A +replaceable rI'pleIs@bl OA% 4 +replaced rI'pleIst Hc%,Hd% 26A,14,15A +replacement rI'pleIsm@nt M6% 3 +replacements rI'pleIsm@nts Mj% 3 +replaces rI'pleIsIz Ha% 36A,14,15A +replacing rI'pleIsIN Hb% 36A,14,15A +replant ri'plAnt H0% 26A,15A,15B +replanted ri'plAntId Hc%,Hd% 36A,15A,15B +replanting ri'plAntIN Hb% 36A,15A,15B +replants ri'plAnts Ha% 26A,15A,15B +replay 'ripleI K6% 2 +replay ,ri'pleI H0% 26A +replayed ,ri'pleId Hc%,Hd% 26A +replaying ,ri'pleIIN Hb% 36A +replays 'ripleIz Kj% 2 +replays ,ri'pleIz Ha% 26A +replenish rI'plenIS H1% 36A,14 +replenished rI'plenISt Hc%,Hd% 36A,14 +replenishes rI'plenISIz Ha% 46A,14 +replenishing rI'plenISIN Hb% 46A,14 +replenishment rI'plenISm@nt M6% 4 +replenishments rI'plenISm@nts Mj% 4 +replete rI'plit OA% 2 +repletion rI'pliSn L@$ 3 +replica 'replIk@ K6% 3 +replicas 'replIk@z Kj% 3 +replied rI'plaId Jc%,Jd% 22A,3A,3B +replies rI'plaIz Ja%,Kj% 22A,3A,3B +reply rI'plaI J3%,K8% 22A,3A,3B +reply-paid rI'plaI-peId OA% 3 +replying rI'plaIIN Jb% 32A,3A,3B +repoint ri'poInt H0$ 26A +repointed ri'poIntId Hc$,Hd% 36A +repointing ri'poIntIN Hb$ 36A +repoints ri'poInts Ha$ 26A +report rI'pOt J0%,M6% 22A,3A,6A,6D,9,14,15A,15B,25 +reportable rI'pOt@bl OA% 4 +reportage ,repO'tAZ L@$ 3 +reported rI'pOtId Jc%,Jd% 32A,3A,6A,6D,9,14,15A,15B,25 +reportedly rI'pOtIdlI Pu% 4 +reporter rI'pOt@R K6% 3 +reporters rI'pOt@z Kj% 3 +reporting rI'pOtIN Jb% 32A,3A,6A,6D,9,14,15A,15B,25 +reports rI'pOts Ja%,Mj% 22A,3A,6A,6D,9,14,15A,15B,25 +repose rI'p@Uz J2%,L@% 22A,2C,3A,6A,14,15A +reposed rI'p@Uzd Jc%,Jd% 22A,2C,3A,6A,14,15A +reposeful rI'p@Uzf@l OA$ 3 +reposes rI'p@UzIz Ja% 32A,2C,3A,6A,14,15A +reposing rI'p@UzIN Jb% 32A,2C,3A,6A,14,15A +repositories rI'p0zItrIz Kj% 4 +repository rI'p0zItrI K8% 4 +repot ,ri'p0t H4% 2 +repots ,ri'p0ts Ha% 2 +repotted ,ri'p0tId Hc%,Hd% 3 +repotting ,ri'p0tIN Hb% 3 +repp rep L@$ 1 +reprehend ,reprI'hend H0% 36A +reprehended ,reprI'hendId Hc%,Hd% 46A +reprehending ,reprI'hendIN Hb% 46A +reprehends ,reprI'hendz Ha% 36A +reprehensible ,reprI'hens@bl OA% 5 +reprehensibly ,reprI'hens@blI Pu% 5 +represent ,reprI'zent H0% 36A,9,14,16A,25 +represent ,riprI'zent H0% 3 +representation ,reprIzen'teISn M6% 5 +representations ,reprIzen'teISnz Mj% 5 +representative ,reprI'zent@tIv K6%,OA% 5 +representatives ,reprI'zent@tIvz Kj% 5 +represented ,reprI'zentId Hc%,Hd% 46A,9,14,16A,25 +represented ,riprI'zentId Hc%,Hd% 4 +representing ,reprI'zentIN Hb% 46A,9,14,16A,25 +representing ,riprI'zentIN Hb$ 4 +represents ,reprI'zents Ha% 36A,9,14,16A,25 +represents ,riprI'zents Ha$ 3 +repress rI'pres H1% 26A +repressed rI'prest Hc%,Hd%,OA% 26A +represses rI'presIz Ha% 36A +repressing rI'presIN Hb% 36A +repression rI'preSn M6% 3 +repressions rI'preSnz Mj$ 3 +repressive rI'presIv OA% 3 +reprieve rI'priv H2%,K6% 26A +reprieved rI'privd Hc%,Hd% 26A +reprieves rI'privz Ha%,Kj% 26A +reprieving rI'privIN Hb% 36A +reprimand 'reprImAnd H0%,K6% 36A +reprimanded 'reprImAndId Hc%,Hd% 46A +reprimanding 'reprImAndIN Hb% 46A +reprimands 'reprImAndz Ha%,Kj% 36A +reprint 'riprInt K6% 2 +reprint ,ri'prInt H0% 26A +reprinted ,ri'prIntId Hc%,Hd% 36A +reprinting ,ri'prIntIN Hb% 36A +reprints 'riprInts Kj% 2 +reprints ,ri'prInts Ha% 26A +reprisal rI'praIzl M6% 3 +reprisals rI'praIzlz Mj% 3 +reproach rI'pr@UtS H1%,M7% 26A,14 +reproached rI'pr@UtSt Hc%,Hd% 26A,14 +reproaches rI'pr@UtSIz Ha%,Mj% 36A,14 +reproachful rI'pr@UtSf@l OA% 3 +reproachfully rI'pr@UtSf@lI Pu% 4 +reproaching rI'pr@UtSIN Hb% 36A,14 +reprobate 'repr@beIt H2$,K6% 36A +reprobated 'repr@beItId Hc$,Hd$ 46A +reprobates 'repr@beIts Ha$,Kj% 36A +reprobating 'repr@beItIN Hb$ 46A +reprobation ,repr@'beISn L@$ 4 +reproduce ,ripr@'djus J2% 32A,6A +reproduced ,ripr@'djust Jc%,Jd% 32A,6A +reproducer ,ripr@'djus@R K6% 4 +reproducers ,ripr@'djus@z Kj% 4 +reproduces ,ripr@'djusIz Ja% 42A,6A +reproducible ,ripr@'djus@bl OA% 5 +reproducing ,ripr@'djusIN Jb% 42A,6A +reproduction ,ripr@'dVkSn M6% 4 +reproductions ,ripr@'dVkSnz Mj% 4 +reproductive ,ripr@'dVktIv OA% 4 +reproof ,ri'pruf H0% 26A +reproof rI'pruf M6% 2 +reproofed ,ri'pruft Hc%,Hd% 26A +reproofing ,ri'prufIN Hb% 36A +reproofs ,ri'prufs Ha% 26A +reproofs rI'prufs Mj% 2 +reprove rI'pruv H2% 26A,14 +reproved rI'pruvd Hc%,Hd% 26A,14 +reproves rI'pruvz Ha% 26A,14 +reproving rI'pruvIN Hb% 36A,14 +reprovingly rI'pruvINlI Pu% 4 +reps reps L@$,Mj% 1 +reptile 'reptaIl K6% 2 +reptiles 'reptaIlz Kj% 2 +reptilian rep'tIlI@n K6$,OA% 4 +reptilians rep'tIlI@nz Kj$ 4 +republic rI'pVblIk K6% 3 +republican rI'pVblIk@n K6%,OA% 4 +republicanism rI'pVblIk@nIz@m L@% 6 +republicans rI'pVblIk@nz Kj% 4 +republics rI'pVblIks Kj% 3 +repudiate rI'pjudIeIt H2% 46A +repudiated rI'pjudIeItId Hc%,Hd% 56A +repudiates rI'pjudIeIts Ha% 46A +repudiating rI'pjudIeItIN Hb% 56A +repudiation rI,pjudI'eISn K6% 5 +repudiations rI,pjudI'eISnz Kj% 5 +repugnance rI'pVgn@ns L@% 3 +repugnant rI'pVgn@nt OA% 3 +repulse rI'pVls H2%,K6% 26A +repulsed rI'pVlst Hc%,Hd% 26A +repulses rI'pVlsIz Ha%,Kj% 36A +repulsing rI'pVlsIN Hb% 36A +repulsion rI'pVlSn L@% 3 +repulsive rI'pVlsIv OA% 3 +repulsively rI'pVlsIvlI Pu% 4 +reputable 'repjUt@bl OA% 4 +reputably 'repjUt@blI Pu% 4 +reputation ,repjU'teISn M6% 4 +reputations ,repjU'teISnz Mj% 4 +repute rI'pjut H2$,L@% 225 +reputed rI'pjutId Hc$,Hd%,Oq% 325 +reputedly rI'pjutIdlI Pu% 4 +reputes rI'pjuts Ha$ 225 +reputing rI'pjutIN Hb$ 325 +request rI'kwest H0%,M6% 26A,9,17 +requested rI'kwestId Hc%,Hd% 36A,9,17 +requesting rI'kwestIN Hb% 36A,9,17 +requests rI'kwests Ha%,Mj% 26A,9,17 +requiem 'rekwI@m K6% 3 +requiems 'rekwI@mz Kj% 3 +require rI'kwaI@R H2% 26A,6D,9,14,17 +required rI'kwaI@d Hc%,Hd% 26A,6D,9,14,17 +requirement rI'kwaI@m@nt K6% 3 +requirements rI'kwaI@m@nts Kj% 3 +requires rI'kwaI@z Ha% 26A,6D,9,14,17 +requiring rI'kwaI@rIN Hb% 36A,6D,9,14,17 +requisite 'rekwIzIt K6%,OA% 3 +requisites 'rekwIzIts Kj% 3 +requisition ,rekwI'zISn H0%,M6% 46A,14 +requisitioned ,rekwI'zISnd Hc%,Hd% 46A,14 +requisitioning ,rekwI'zISnIN Hb% 56A,14 +requisitions ,rekwI'zISnz Ha%,Mj% 46A,14 +requital rI'kwaItl L@% 3 +requite rI'kwaIt H2$ 26A,14 +requited rI'kwaItId Hc$,Hd% 36A,14 +requites rI'kwaIts Ha$ 26A,14 +requiting rI'kwaItIN Hb$ 36A,14 +reran 'rir&n Hc% 2 +reread ri'red Hc%,Hd% 22A,2B,2C,6A,12A,13A,15A,15B,16B +reread ri'rid H5% 22A,2B,2C,6A,12A,13A,15A,15B,16B +rereading ri'ridIN Hb% 32A,2B,2C,6A,12A,13A,15A,15B,16B +rereads ri'ridz Ha% 22A,2B,2C,6A,12A,13A,15A,15B,16B +reredos 'rI@d0s K7$ 3 +reredoses 'rI@d0sIz Kj$ 4 +rerun 'rirVn H5%,Hd%,K6% 2 +rerunning 'rirVnIN Hb% 3 +reruns 'rirVnz Ha%,Kj% 2 +res rez Y>$ 1 +rescind rI'sInd H0% 26A +rescinded rI'sIndId Hc%,Hd% 36A +rescinding rI'sIndIN Hb% 36A +rescinds rI'sIndz Ha% 26A +rescript 'riskrIpt K6$ 2 +rescripts 'riskrIpts Kj$ 2 +rescue 'reskju H2%,M6% 26A,14 +rescued 'reskjud Hc%,Hd% 26A,14 +rescuer 'reskju@R K6% 3 +rescuers 'reskju@z Kj% 3 +rescues 'reskjuz Ha%,Mj% 26A,14 +rescuing 'reskjuIN Hb% 36A,14 +research rI's3tS I1%,M7% 22A,3A +researched rI's3tSt Ic%,Id% 22A,3A +researcher rI's3tS@R K6% 3 +researchers rI's3tS@z Kj% 3 +researches rI's3tSIz Ia%,Mj% 32A,3A +researching rI's3tSIN Ib% 32A,3A +reseat ,ri'sit H0% 26A +reseated ,ri'sitId Hc%,Hd% 36A +reseating ,ri'sitIN Hb% 36A +reseats ,ri'sits Ha% 26A +reseed ri'sid H0$ 22A,6A +reseeded ri'sidId Hc%,Hd% 32A,6A +reseeding ri'sidIN Hb$ 32A,6A +reseeds ri'sidz Ha$ 22A,6A +resell ri'sel H5% 22A,2C,6A,12A,13A,15B +reselling ri'selIN Hb% 32A,2C,6A,12A,13A,15B +resells ri'selz Ha% 22A,2C,6A,12A,13A,15B +resemblance rI'zembl@ns M6% 3 +resemblances rI'zembl@nsIz Mj% 4 +resemble rI'zembl H2% 36B +resembled rI'zembld Hc%,Hd% 36B +resembles rI'zemblz Ha% 36B +resembling rI'zemblIN Hb% 36B +resent rI'zent H0% 26A,6C,19C +resented rI'zentId Hc%,Hd% 36A,6C,19C +resentful rI'zentf@l OA% 3 +resentfully rI'zentf@lI Pu% 4 +resenting rI'zentIN Hb% 36A,6C,19C +resentment rI'zentm@nt L@% 3 +resents rI'zents Ha% 26A,6C,19C +reservation ,rez@'veISn M6% 4 +reservations ,rez@'veISnz Mj% 4 +reserve rI'z3v H2%,M6% 26A,14 +reserved rI'z3vd Hc%,Hd%,OA% 26A,14 +reservedly rI'z3vIdlI Pu% 4 +reserves rI'z3vz Ha%,Mj% 26A,14 +reserving rI'z3vIN Hb% 36A,14 +reservist rI'z3vIst K6% 3 +reservists rI'z3vIsts Kj% 3 +reservoir 'rez@vwAR K6% 3 +reservoirs 'rez@vwAz Kj% 3 +reset ,ri'set H5%,Hc%,Hd% 26A +resets ,ri'sets Ha% 26A +resetting ,ri'setIN Hb% 36A +resettle ,ri'setl J2% 32A,6A +resettled ,ri'setld Jc%,Jd% 32A,6A +resettlement ,ri'setlm@nt K6% 4 +resettlements ,ri'setlm@nts Kj% 4 +resettles ,ri'setlz Ja% 32A,6A +resettling ,ri'setlIN Jb% 32A,6A +reshape ri'SeIp H2% 22A,2C,6A,15A +reshaped ri'SeIpt Hb% 22A,2C,6A,15A +reshapes ri'SeIps Ha% 22A,2C,6A,15A +reshaping ri'SeIpIN Hb% 32A,2C,6A,15A +reshuffle ,ri'SVfl H2%,K6% 36A +reshuffled ,ri'SVfld Hc%,Hd% 36A +reshuffles ,ri'SVflz Ha%,Kj% 36A +reshuffling ,ri'SVflIN Hb% 36A +reside rI'zaId I2% 22C,3A +resided rI'zaIdId Ic%,Id% 32C,3A +residence 'rezId@ns M6% 3 +residences 'rezId@nsIz Mj% 4 +residencies 'rezId@nsIz Kj$ 4 +residency 'rezId@nsI K8$ 4 +resident 'rezId@nt K6%,OA% 3 +residential ,rezI'denSl OA% 4 +residents 'rezId@nts Kj% 3 +resides rI'zaIdz Ia% 22C,3A +residing rI'zaIdIN Ib% 32C,3A +residual rI'zIdjU@l OA% 4 +residuary rI'zIdjU@rI OA% 5 +residue 'rezIdju K6% 3 +residues 'rezIdjuz Kj% 3 +resign rI'zaIn J0% 22A,3A,6A,14 +resignation ,rezIg'neISn M6% 4 +resignations ,rezIg'neISnz Mj% 4 +resigned rI'zaInd Jc%,Jd%,OA% 22A,3A,6A,14 +resignedly rI'zaIn@dlI Pu% 4 +resigning rI'zaInIN Jb% 32A,3A,6A,14 +resigns rI'zaInz Ja% 22A,3A,6A,14 +resilience rI'zIlI@ns L@% 4 +resiliency rI'zIlI@nsI L@$ 5 +resilient rI'zIlI@nt OA% 4 +resin 'rezIn M6% 2 +resinated 'rezIneItId OA$ 4 +resinous 'rezIn@s OA% 3 +resins 'rezInz Mj% 2 +resist rI'zIst J0% 22A,6A,6C +resistance rI'zIst@ns M6% 3 +resistances rI'zIst@nsIz Mj% 4 +resistant rI'zIst@nt OA% 3 +resisted rI'zIstId Jc%,Jd% 32A,6A,6C +resister rI'zIst@R K6$ 3 +resisters rI'zIst@z Kj$ 3 +resisting rI'zIstIN Jb% 32A,6A,6C +resistive rI'zIstIv OA$ 3 +resistivity ,rezIs'tIvItI L@$ 5 +resistless rI'zIstl@s OA$ 3 +resistor rI'zIst@R K6$ 3 +resistors rI'zIst@z Kj$ 3 +resists rI'zIsts Ja% 22A,6A,6C +resold ri's@Uld Hc%,Hd% 22A,2C,6A,12A,13A,15B +resole ,ri's@Ul H2% 26A +resoled ,ri's@Uld Hc%,Hd% 26A +resoles ,ri's@Ulz Ha% 26A +resoling ,ri's@UlIN Hb% 36A +resolute 'rez@lut OA% 3 +resolutely 'rez@lutlI Pu% 4 +resoluteness 'rez@lutn@s L@% 4 +resolution ,rez@'luSn M6% 4 +resolutions ,rez@'luSnz Mj% 4 +resolvable rI'z0lv@bl OA% 4 +resolve rI'z0lv J2%,K6% 23A,6A,7A,9,14 +resolved rI'z0lvd Jc%,Jd% 23A,6A,7A,9,14 +resolves rI'z0lvz Ja%,Kj% 23A,6A,7A,9,14 +resolving rI'z0lvIN Jb% 33A,6A,7A,9,14 +resonance 'rez@n@ns L@% 3 +resonant 'rez@n@nt OA% 3 +resonate 'rez@neIt J2% 3 +resonated 'rez@neItId Jc%,Jd% 4 +resonates 'rez@neIts Ja% 3 +resonating 'rez@neItIN Jb% 4 +resonator 'rez@neIt@R K6% 4 +resonators 'rez@neIt@z Kj% 4 +resort rI'zOt I0%,M6% 23A +resorted rI'zOtId Ic%,Id% 33A +resorting rI'zOtIN Ib% 33A +resorts rI'zOts Ia%,Mj% 23A +resound rI'zaUnd J0% 22A,2C,3A +resounded rI'zaUndId Jc%,Jd% 32A,2C,3A +resounding rI'zaUndIN Jb% 32A,2C,3A +resoundingly rI'zaUndINlI Pu% 4 +resounds rI'zaUndz Ja% 22A,2C,3A +resource rI'zOs M6% 2 +resourceful rI'zOsf@l OA% 3 +resourcefully rI'zOsf@lI Pu% 4 +resourceless rI'zOslIs OA% 3 +resources rI'zOsIz Mj% 3 +respect rI'spekt H0%,M6% 26A +respectabilities rI,spekt@'bIlItIz Mj% 6 +respectability rI,spekt@'bIlItI M8% 6 +respectable rI'spekt@bl OA% 4 +respectably rI'spekt@blI Pu% 4 +respected rI'spektId Hc%,Hd% 36A +respecter rI'spekt@R K6% 3 +respecters rI'spekt@z Kj% 3 +respectful rI'spektf@l OA% 3 +respectfully rI'spektf@lI Pu% 4 +respecting rI'spektIN Hb%,T-% 36A +respective rI'spektIv OA% 3 +respectively rI'spektIvlI Pu% 4 +respects rI'spekts Ha%,Mj% 26A +respiration ,resp@'reISn M6% 4 +respirations ,resp@'reISnz Mj$ 4 +respirator 'resp@reIt@R K6% 4 +respirators 'resp@reIt@z Kj% 4 +respiratory rI'spIr@trI OA% 4 +respire rI'spaI@R I2$ 22A +respired rI'spaI@d Ic$,Id$ 22A +respires rI'spaI@z Ia$ 22A +respiring rI'spaI@rIN Ib$ 32A +respite 'respaIt H2$,M6% 26A +respited 'respaItId Hc$,Hd$ 36A +respites 'respaIts Ha$,Mj$ 26A +respiting 'respaItIN Hb$ 36A +resplendence rI'splend@ns L@% 3 +resplendency rI'splend@nsI L@$ 4 +resplendent rI'splend@nt OA% 3 +resplendently rI'splend@ntlI Pu% 4 +respond rI'sp0nd I0% 22A,2C,3A,3B +responded rI'sp0ndId Ic%,Id% 32A,2C,3A,3B +respondent rI'sp0nd@nt K6% 3 +respondents rI'sp0nd@nts Kj% 3 +responding rI'sp0ndIN Ib% 32A,2C,3A,3B +responds rI'sp0ndz Ia% 22A,2C,3A,3B +response rI'sp0ns M6% 2 +responses rI'sp0nsIz Mj% 3 +responsibilities rI,sp0ns@'bIlItIz Mj% 6 +responsibility rI,sp0ns@'bIlItI M8% 6 +responsible rI'sp0ns@bl OA% 4 +responsibly rI'sp0ns@blI Pu% 4 +responsive rI'sp0nsIv OA% 3 +responsiveness rI'sp0nsIvnIs L@% 4 +rest rest J0%,M6% 12A,2B,2C,2D,3A,6A,14 +rest-cure 'rest-kjU@R K6% 2 +rest-cures 'rest-kjU@z Kj% 2 +rest-day 'rest-deI K6% 2 +rest-days 'rest-deIz Kj% 2 +rest-home 'rest-h@Um K6% 2 +rest-homes 'rest-h@Umz Kj% 2 +rest-house 'rest-haUs K6% 2 +rest-houses 'rest-haUzIz Kj% 3 +restart ri'stAt J0% 22A,2C,3A,6A,6D,7A,15A,19B +restarted ri'stAtId Jc%,Jd% 32A,2C,3A,6A,6D,7A,15A,19B +restarting ri'stAtIN Jb% 32A,2C,3A,6A,6D,7A,15A,19B +restarts ri'stAts Ja% 22A,2C,3A,6A,6D,7A,15A,19B +restate ,ri'steIt H2% 26A +restated ,ri'steItId Hc%,Hd% 36A +restatement ,ri'steItm@nt K6% 3 +restatements ,ri'steItm@nts Kj% 3 +restates ,ri'steIts Ha% 26A +restating ,ri'steItIN Hb% 36A +restaurant 'restr0nt K6% 2 +restauranteur ,restr0n't3R K6$ 3 +restauranteurs ,restr0n't3z Kj$ 3 +restaurants 'restr0nts Kj% 2 +restaurateur ,rest@r@'t3R K6% 4 +restaurateurs ,rest@r@'t3z Kj% 4 +rested 'restId Jc%,Jd% 22A,2B,2C,2D,3A,6A,14 +restful 'restf@l OA% 2 +restfully 'restf@lI Pu% 3 +restfulness 'restf@ln@s L@% 3 +resting 'restIN Jb% 22A,2B,2C,2D,3A,6A,14 +restitution ,restI'tjuSn L@% 4 +restive 'restIv OA% 2 +restively 'restIvlI Pu% 3 +restiveness 'restIvn@s L@% 3 +restless 'restl@s OA% 2 +restlessly 'restl@slI Pu% 3 +restlessness 'restl@sn@s L@% 3 +restock ,ri'st0k H0% 26A +restocked ,ri'st0kt Hc%,Hd% 26A +restocking ,ri'st0kIN Hb% 36A +restocks ,ri'st0ks Ha% 26A +restoration ,rest@'reISn M6% 4 +restorations ,rest@'reISnz Mj% 4 +restorative rI'stOr@tIv M6%,OA% 4 +restoratives rI'stOr@tIvz Mj% 4 +restore rI'stOR H2% 26A,14 +restored rI'stOd Hc%,Hd% 26A,14 +restorer rI'stOr@R K6% 3 +restorers rI'stOr@z Kj% 3 +restores rI'stOz Ha% 26A,14 +restoring rI'stOrIN Hb% 36A,14 +restrain rI'streIn H0% 26A,14 +restrained rI'streInd Hc%,Hd%,OA% 26A,14 +restraining rI'streInIN Hb% 36A,14 +restrains rI'streInz Ha% 26A,14 +restraint rI'streInt M6% 2 +restraints rI'streInts Mj% 2 +restrict rI'strIkt H0% 26A,14 +restricted rI'strIktId Hc%,Hd% 36A,14 +restricting rI'strIktIN Hb% 36A,14 +restriction rI'strIkSn M6% 3 +restrictions rI'strIkSnz Mj% 3 +restrictive rI'strIktIv OA% 3 +restrictively rI'strIktIvlI Pu% 4 +restrictiveness rI'strIktIvnIs L@% 4 +restricts rI'strIkts Ha% 26A,14 +restructure ,ri'strVktS@R H2% 36A +restructured ,ri'strVktS@d Hc%,Hd% 36A +restructures ,ri'strVktS@z Ha% 36A +restructuring ,ri'strVktS@rIN Hb% 46A +rests rests Ja%,Mj% 12A,2B,2C,2D,3A,6A,14 +result rI'zVlt I0%,M6% 22A,3A +resultant rI'sVlt@nt OA% 3 +resulted rI'zVltId Ic%,Id% 32A,3A +resulting rI'zVltIN Ib% 32A,3A +results rI'zVlts Ia%,Mj% 22A,3A +resume rI'zjum H2% 26A,6D +resumed rI'zjumd Hc%,Hd% 26A,6D +resumes rI'zjumz Ha% 26A,6D +resuming rI'zjumIN Hb% 36A,6D +resumption rI'zVmpSn M6% 3 +resumptions rI'zVmpSnz Mj$ 3 +resurface ,ri's3fIs J2% 32A,6A +resurfaced ,ri's3fIst Jc%,Jd% 32A,6A +resurfaces ,ri's3fIsIz Ja% 42A,6A +resurfacing ,ri's3fIsIN Jb% 42A,6A +resurgence rI's3dZ@ns K6% 3 +resurgences rI's3dZ@nsIz Kj$ 4 +resurgent rI's3dZ@nt OA% 3 +resurrect ,rez@'rekt J0% 32A,6A +resurrected ,rez@'rektId Jc%,Jd% 42A,6A +resurrecting ,rez@'rektIN Jb% 42A,6A +resurrection ,rez@'rekSn L@% 4 +resurrects ,rez@'rekts Ja% 32A,6A +resuscitate rI'sVsIteIt J2% 42A,6A +resuscitated rI'sVsIteItId Jc%,Jd% 52A,6A +resuscitates rI'sVsIteIts Ja% 42A,6A +resuscitating rI'sVsIteItIN Jb% 52A,6A +resuscitation rI,sVsI'teISn M6% 5 +resuscitations rI,sVsI'teISnz Mj$ 5 +ret rI'taI@d Y~% 3 +ret ret H4$ 16A +retail 'riteIl J0%,K6%,Pu% 23A,6A +retailed 'riteIld Jc%,Jd% 23A,6A +retailer 'riteIl@R K6% 3 +retailers 'riteIl@z Kj% 3 +retailing 'riteIlIN Jb% 33A,6A +retails 'riteIlz Ja%,Kj% 23A,6A +retain rI'teIn H0% 26A +retained rI'teInd Hc%,Hd% 26A +retainer rI'teIn@R K6% 3 +retainers rI'teIn@z Kj% 3 +retaining rI'teInIN Hb% 36A +retains rI'teInz Ha% 26A +retake 'riteIk K6% 2 +retake ,ri'teIk H5% 26A +retaken ,ri'teIk@n Hd% 36A +retakes 'riteIks Kj% 2 +retakes ,ri'teIks Ha% 26A +retaking ,ri'teIkIN Hb% 36A +retaliate rI't&lIeIt I2% 42A,3A +retaliated rI't&lIeItId Ic%,Id% 52A,3A +retaliates rI't&lIeIts Ia% 42A,3A +retaliating rI't&lIeItIN Ib% 52A,3A +retaliation rI,t&lI'eISn L@% 5 +retaliative rI't&lI@tIv OA$ 5 +retaliatory rI't&lI@trI OA% 5 +retard rI'tAd H0% 26A +retardation ,ritA'deISn M6% 4 +retardations ,ritA'deISnz Mj$ 4 +retarded rI'tAdId Hc%,Hd% 36A +retarding rI'tAdIN Hb% 36A +retards rI'tAdz Ha% 26A +retch retS I1% 12A +retched retSt Ic%,Id% 12A +retches 'retSIz Ia% 22A +retching 'retSIN Ib% 22A +retd rI'taI@d Y~% 3 +retell ,ri'tel H5% 26A +retelling ,ri'telIN Hb% 36A +retells ,ri'telz Ha% 26A +retention rI'tenSn L@% 3 +retentive rI'tentIv OA% 3 +retentively rI'tentIvlI Pu% 4 +retentiveness rI'tentIvn@s L@% 4 +rethink 'riTINk K6% 2 +rethink ,ri'TINk J5% 22A,6A +rethinking ,ri'TINkIN Jb% 32A,6A +rethinks 'riTINks Kj% 2 +rethinks ,ri'TINks Ja% 22A,6A +rethought ,ri'TOt Jc%,Jd% 22A,6A +reticence 'retIsns M6% 3 +reticences 'retIsnsIz Mj$ 4 +reticent 'retIsnt OA% 3 +reticently 'retIsntlI Pu% 4 +reticulate rI'tIkjUl@t OA$ 4 +reticulate rI'tIkjUleIt J2$ 42A,6A +reticulated rI'tIkjUleItId Jc$,Jd$ 52A,6A +reticulates rI'tIkjUleIts Ja$ 42A,6A +reticulating rI'tIkjUleItIN Jb$ 52A,6A +reticulation rI,tIkjU'leISn K6$ 5 +reticulations rI,tIkjU'leISnz Kj$ 5 +reticule 'retIkjul K6$ 3 +reticules 'retIkjulz Kj$ 3 +retina 'retIn@ K6% 3 +retinae 'retIni Kj$ 3 +retinal 'retIn@l OA$ 3 +retinas 'retIn@z Kj% 3 +retinue 'retInju K6% 3 +retinues 'retInjuz Kj% 3 +retire rI'taI@R J2%,Ki% 22A,2C,3A,6A +retired rI'taI@d Jc%,Jd%,OA% 22A,2C,3A,6A +retirement rI'taI@m@nt M6% 3 +retirements rI'taI@m@nts Mj% 3 +retires rI'taI@z Ja% 22A,2C,3A,6A +retiring rI'taI@rIN Jb%,OA% 32A,2C,3A,6A +retold ,ri't@Uld Hc%,Hd% 26A +retook ,ri'tUk Hc% 26A +retool ,ri'tul H0$ 26A +retooled ,ri'tuld Hc$,Hd$ 26A +retooling ,ri'tulIN Hb$ 36A +retools ,ri'tulz Ha$ 26A +retort rI'tOt J0%,M6% 22A,6A,9,14 +retorted rI'tOtId Jc%,Jd% 32A,6A,9,14 +retorting rI'tOtIN Jb% 32A,6A,9,14 +retorts rI'tOts Ja%,Mj% 22A,6A,9,14 +retouch ,ri'tVtS H1% 26A +retouched ,ri'tVtSt Hc%,Hd% 26A +retouches ,ri'tVtSIz Ha% 36A +retouching ,ri'tVtSIN Hb% 36A +retrace ri'treIs H2% 26A +retraced ri'treIst Hc%,Hd% 26A +retraces ri'treIsIz Ha% 36A +retracing ri'treIsIN Hb% 36A +retract rI'tr&kt J0% 22A,6A +retractable rI'tr&kt@bl OA% 4 +retracted rI'tr&ktId Jc%,Jd% 32A,6A +retractile rI'tr&ktaIl OA$ 3 +retracting rI'tr&ktIN Jb% 32A,6A +retraction rI'tr&kSn M6% 3 +retractions rI'tr&kSnz Mj% 3 +retracts rI'tr&kts Ja% 22A,6A +retransmit ,ritr&nz'mIt H4% 36A,14 +retransmits ,ritr&nz'mIts Ha% 36A,14 +retransmitted ,ritr&nz'mItId Hc%,Hd% 46A,14 +retransmitting ,ritr&nz'mItIN Hb% 46A,14 +retread 'ritred K6% 2 +retread ,ri'tred H0$ 2 +retreaded ,ri'tredId Hc$,Hd$ 3 +retreading ,ri'tredIN Hb$ 3 +retreads 'ritredz Kj% 2 +retreads ,ri'tredz Ha$ 2 +retreat rI'trit I0%,M6% 22A,2C,3A +retreated rI'tritId Ic%,Id% 32A,2C,3A +retreating rI'tritIN Ib% 32A,2C,3A +retreats rI'trits Ia%,Mj% 22A,2C,3A +retrench rI'trentS J1% 22A,6A +retrenched rI'trentSt Jc%,Jd% 22A,6A +retrenches rI'trentSIz Ja% 32A,6A +retrenching rI'trentSIN Jb% 32A,6A +retrenchment rI'trentSm@nt M6% 3 +retrenchments rI'trentSm@nts Mj$ 3 +retrial ,ri'traI@l K6% 3 +retrials ,ri'traI@lz Kj% 3 +retribution ,retrI'bjuSn L@% 4 +retributive rI'trIbjUtIv OA% 4 +retrievable rI'triv@bl OA% 4 +retrieval rI'triv@l L@% 3 +retrieve rI'triv J2% 22A,6A,14 +retrieved rI'trivd Jc%,Jd% 22A,6A,14 +retriever rI'triv@R K6% 3 +retrievers rI'triv@z Kj% 3 +retrieves rI'trivz Ja% 22A,6A,14 +retrieving rI'trivIN Jb% 32A,6A,14 +retroactive ,retr@U'&ktIv OA% 4 +retroactively ,retr@U'&ktIvlI Pu% 5 +retrograde 'retr@greId I2$,OA% 32A +retrograded 'retr@greIdId Ic$,Id$ 42A +retrogrades 'retr@greIdz Ia$ 32A +retrograding 'retr@greIdIN Ib$ 42A +retrogress ,retr@'gres I1$ 32A +retrogressed ,retr@'grest Ic$,Id$ 32A +retrogresses ,retr@'gresIz Ia$ 42A +retrogressing ,retr@'gresIN Ib$ 42A +retrogression ,retr@'greSn M6$ 4 +retrogressions ,retr@'greSnz Mj$ 4 +retrogressive ,retr@'gresIv OA% 4 +retrorocket 'retr@Ur0kIt K6% 4 +retrorockets 'retr@Ur0kIts Kj% 4 +retrospect 'retr@spekt L@% 3 +retrospection ,retr@'spekSn M6% 4 +retrospections ,retr@'spekSnz Mj$ 4 +retrospective ,retr@'spektIv OA% 4 +retrospectively ,retr@'spektIvlI Pu% 5 +retrouss_e r@'truseI OA% 3 +retroversion ,retr@U'v3Sn M6$ 4 +retroversions ,retr@U'v3Snz Mj$ 4 +rets rets Ha$ 16A +retsina ret'sin@ L@% 3 +retted 'retId Hc$,Hd$ 26A +retting 'retIN Hb$ 26A +return rI't3n J0%,M6% 22A,2C,3A,4A,6A,12A,13A,15A,16A +returnable rI't3n@bl OA% 4 +returned rI't3nd Jc%,Jd% 22A,2C,3A,4A,6A,12A,13A,15A,16A +returning rI't3nIN Jb% 32A,2C,3A,4A,6A,12A,13A,15A,16A +returns rI't3nz Ja%,Mj% 22A,2C,3A,4A,6A,12A,13A,15A,16A +reunification ri,junIfI'keISn L@% 6 +reunion ,ri'junI@n M6% 3 +reunions ,ri'junI@nz Mj% 3 +reunite ,riju'naIt J2% 32A,6A +reunited ,riju'naItId Jc%,Jd% 42A,6A +reunites ,riju'naIts Ja% 32A,6A +reuniting ,riju'naItIN Jb% 42A,6A +rev rev J4%,K6% 12A,2C,6A,15B +revaluation ,riv&lju'eISn M6% 5 +revaluations ,riv&lju'eISnz Mj% 5 +revalue ri'v&lju H2% 36A +revalued ri'v&ljud Hc%,Hd% 36A +revalues ri'v&ljuz Ha% 36A +revaluing ri'v&ljuIN Hb% 46A +revamp ,ri'v&mp H0% 26A +revamped ,ri'v&mpt Hc%,Hd% 26A +revamping ,ri'v&mpIN Hb% 36A +revamps ,ri'v&mps Ha% 26A +reveal rI'vil H0% 26A,9,14,25 +revealed rI'vild Hc%,Hd% 26A,9,14,25 +revealing rI'vilIN Hb% 36A,9,14,25 +reveals rI'vilz Ha% 26A,9,14,25 +reveille rI'v&lI K6% 3 +reveilles rI'v&lIz Kj% 3 +revel 'rev@l I4%,M6% 22A,2B,2C,3A,15B +revelation ,rev@'leISn M6% 4 +revelations ,rev@'leISnz Mj% 4 +revelled 'rev@ld Ic%,Id% 22A,2B,2C,3A,15B +reveller 'rev@l@R K6% 3 +revellers 'rev@l@z Kj% 3 +revelling 'rev@lIN Ib% 32A,2B,2C,3A,15B +revelries 'rev@lrIz Mj% 3 +revelry 'rev@lrI M8% 3 +revels 'rev@lz Ia%,Mj% 22A,2B,2C,3A,15B +revenge rI'vendZ H2%,L@% 26A +revenged rI'vendZd Hc%,Hd% 26A +revengeful rI'vendZf@l OA% 3 +revengefully rI'vendZf@lI Pu% 4 +revenges rI'vendZIz Ha% 36A +revenging rI'vendZIN Hb% 36A +revenue 'rev@nju M6% 3 +revenues 'rev@njuz Mj% 3 +reverberant rI'v3b@r@nt OA$ 4 +reverberate rI'v3b@reIt J2% 42A,6A +reverberated rI'v3b@reItId Jc%,Jd% 52A,6A +reverberates rI'v3b@reIts Ja% 42A,6A +reverberating rI'v3b@reItIN Jb% 52A,6A +reverberation rI,v3b@'reISn M6% 5 +reverberations rI,v3b@'reISnz Mj% 5 +revere rI'vI@R H2% 26A +revered rI'vI@d Hc%,Hd% 26A +reverence 'rev@r@ns H2%,L@% 36A +reverenced 'rev@r@nst Hc%,Hd% 36A +reverences 'rev@r@nsIz Ha% 46A +reverencing 'rev@r@nsIN Hb% 46A +reverend 'rev@r@nd K6%,OA% 3 +reverends 'rev@r@ndz Kj% 3 +reverent 'rev@r@nt OA% 3 +reverential ,rev@'renSl OA% 4 +reverentially ,rev@'renS@lI Pu% 5 +reverently 'rev@r@ntlI Pu% 4 +reveres rI'vI@z Ha% 26A +reverie 'rev@rI M6% 3 +reveries 'rev@rIz Mj% 3 +revering rI'vI@rIN Hb% 36A +revers rI'vI@R Ki$ 2 +revers rI'vI@z Kj$ 2 +reversal rI'v3sl M6% 3 +reversals rI'v3slz Mj% 3 +reverse rI'v3s J2%,M6%,OA% 22A,6A +reversed rI'v3st Jc%,Jd% 22A,6A +reversely rI'v3slI Pu$ 3 +reverses rI'v3sIz Ja%,Mj% 32A,6A +reversibility rI,v3s@'bIlItI L@% 6 +reversible rI'v3s@bl OA% 4 +reversing rI'v3sIN Jb% 32A,6A +reversion rI'v3Sn M6% 3 +reversionary rI'v3Sn@rI OA$ 4 +reversions rI'v3Snz Mj$ 3 +revert rI'v3t I0% 22A,3A +reverted rI'v3tId Ic%,Id% 32A,3A +revertible rI'v3t@bl OA$ 4 +reverting rI'v3tIN Ib% 32A,3A +reverts rI'v3ts Ia% 22A,3A +revetment rI'vetm@nt K6$ 3 +revetments rI'vetm@nts Kj$ 3 +review rI'vju J0%,M6% 22A,2C,6A +reviewed rI'vjud Jc%,Jd% 22A,2C,6A +reviewer rI'vju@R K6% 3 +reviewers rI'vju@z Kj% 3 +reviewing rI'vjuIN Jb% 32A,2C,6A +reviews rI'vjuz Ja%,Mj% 22A,2C,6A +revile rI'vaIl J2% 23A,6A +reviled rI'vaIld Jc%,Jd% 23A,6A +reviles rI'vaIlz Ja% 23A,6A +reviling rI'vaIlIN Jb% 33A,6A +revise rI'vaIz H2%,K6% 26A +revised rI'vaIzd Hc%,Hd% 26A +reviser rI'vaIz@R K6% 3 +revisers rI'vaIz@z Kj% 3 +revises rI'vaIzIz Ha%,Kj% 36A +revising rI'vaIzIN Hb% 36A +revision rI'vIZn M6% 3 +revisionism rI'vIZ@nIz@m L@% 5 +revisionist rI'vIZ@nIst K6% 4 +revisionists rI'vIZ@nIsts Kj% 4 +revisions rI'vIZnz Mj% 3 +revisit ri'vIzIt H0% 32C,3A,6A,14 +revisited ri'vIzItId Hc%,Hd% 42C,3A,6A,14 +revisiting ri'vIzItIN Hb% 42C,3A,6A,14 +revisits ri'vIzIts Ha% 32C,3A,6A,14 +revitalization ,ri,vaIt@laI'zeISn M6% 6 +revitalizations ,ri,vaIt@laI'zeISnz Mj$ 6 +revitalize ri'vaIt@laIz H2% 4 +revitalized ri'vaIt@laIzd Hc%,Hd% 4 +revitalizes ri'vaIt@laIzIz Ha% 5 +revitalizing ri'vaIt@laIzIN Hb% 5 +revival rI'vaIvl M6% 3 +revivalist rI'vaIv@lIst K6% 4 +revivalists rI'vaIv@lIsts Kj% 4 +revivals rI'vaIvlz Mj% 3 +revive rI'vaIv J2% 22A,6A +revived rI'vaIvd Jc%,Jd% 22A,6A +revives rI'vaIvz Ja% 22A,6A +revivified ri'vIvIfaId Hc%,Hd% 4 +revivifies ri'vIvIfaIz Ha% 4 +revivify ri'vIvIfaI H3% 4 +revivifying ri'vIvIfaIIN Hb% 5 +reviving rI'vaIvIN Jb% 32A,6A +revocable 'rev@k@bl OA$ 4 +revocation ,rev@'keISn M6% 4 +revocations ,rev@'keISnz Mj% 4 +revoke rI'v@Uk J2%,K6% 22A,6A +revoked rI'v@Ukt Jc%,Jd% 22A,6A +revokes rI'v@Uks Ja%,Kj% 22A,6A +revoking rI'v@UkIN Jb% 32A,6A +revolt rI'v@Ult J0%,M6% 22A,3A,6A +revolted rI'v@UltId Jc%,Jd% 32A,3A,6A +revolting rI'v@UltIN Jb%,OA% 32A,3A,6A +revoltingly rI'v@UltINlI Pu% 4 +revolts rI'v@Ults Ja%,Mj% 22A,3A,6A +revolution ,rev@'luSn M6% 4 +revolutionaries ,rev@'luS@n@rIz Kj% 6 +revolutionary ,rev@'luS@nrI K6%,OA% 5 +revolutionize ,rev@'luS@naIz H2% 56A +revolutionized ,rev@'luS@naIzd Hc%,Hd% 56A +revolutionizes ,rev@'luS@naIzIz Ha% 66A +revolutionizing ,rev@'luS@naIzIN Hb% 66A +revolutions ,rev@'luSnz Mj% 4 +revolve rI'v0lv J2% 22A,3A,6A +revolved rI'v0lvd Jc%,Jd% 22A,3A,6A +revolver rI'v0lv@R K6% 3 +revolvers rI'v0lv@z Kj% 3 +revolves rI'v0lvz Ja% 22A,3A,6A +revolving rI'v0lvIN Jb% 32A,3A,6A +revs revz Ja%,Kj% 12A,2C,6A,15B +revue rI'vju M6% 2 +revues rI'vjuz Mj% 2 +revulsion rI'vVlSn L@% 3 +revved revd Jc%,Jd% 12A,2C,6A,15B +revving 'revIN Jb% 22A,2C,6A,15B +reward rI'wOd H0%,M6% 26A,14 +rewarded rI'wOdId Hc%,Hd% 36A,14 +rewarding rI'wOdIN Hb% 36A,14 +rewards rI'wOdz Ha%,Mj% 26A,14 +rewire ,ri'waI@R H2% 2 +rewired ,ri'waI@d Hc%,Hd% 2 +rewires ,ri'waI@z Ha% 2 +rewiring ,ri'waI@rIN Hb% 3 +reword ,ri'w3d H0% 26A +reworded ,ri'w3dId Hc%,Hd% 36A +rewording ,ri'w3dIN Hb% 36A +rewords ,ri'w3dz Ha% 26A +rewrite 'riraIt K6% 2 +rewrite ,ri'raIt H5% 26A +rewrites 'riraIts Kj% 2 +rewrites ,ri'raIts Ha% 26A +rewriting ,ri'raItIN Hb% 36A +rewritten ,ri'rIt@n Hd% 36A +rewrote ,ri'r@Ut Hc% 26A +rhapsodies 'r&ps@dIz Kj% 3 +rhapsodize 'r&ps@daIz I2% 32A,3A +rhapsodized 'r&ps@daIzd Ic%,Id% 32A,3A +rhapsodizes 'r&ps@daIzIz Ia% 42A,3A +rhapsodizing 'r&ps@daIzIN Ib% 42A,3A +rhapsody 'r&ps@dI K8% 3 +rhea rI@ K6$ 2 +rheas rI@z Kj$ 2 +rheostat 'ri@st&t K6% 3 +rheostats 'ri@st&ts Kj% 3 +rhesus 'ris@s K7% 2 +rhesuses 'ris@sIz Kj$ 3 +rhetoric 'ret@rIk L@% 3 +rhetorical rI't0rIkl OA% 4 +rhetorically rI't0rIklI Pu% 4 +rhetorician ,ret@'rISn K6% 4 +rhetoricians ,ret@'rISnz Kj% 4 +rheum rum L@$ 1 +rheumatic ru'm&tIk K6%,OA% 3 +rheumatics ru'm&tIks Kj% 3 +rheumatism 'rum@tIz@m L@% 4 +rheumatoid 'rum@toId OA% 3 +rhinal 'raInl OA$ 2 +rhino 'raIn@U K6% 2 +rhinoceros raI'n0s@r@s K9% 4 +rhinoceroses raI'n0s@r@sIz Kj% 5 +rhinos 'raIn@Uz Kj% 2 +rhizome 'raIz@Um K6$ 2 +rhizomes 'raIz@Umz Kj$ 2 +rhododendron ,r@Ud@'dendr@n K6% 4 +rhododendrons ,r@Ud@'dendr@nz Kj% 4 +rhomb r0m K6$ 1 +rhomboid 'r0mboId K6$,OA$ 2 +rhomboids 'r0mboIdz Kj$ 2 +rhombs r0mz Kj$ 1 +rhombus 'r0mb@s K7% 2 +rhombuses 'r0mb@sIz Kj% 3 +rhubarb 'rubAb L@% 2 +rhyme raIm J2%,M6% 12A,3A,6A +rhymed raImd Jc%,Jd%,OA% 12A,3A,6A +rhymes raImz Ja%,Mj% 12A,3A,6A +rhymester 'raImst@R K6$ 2 +rhymesters 'raImst@z Kj$ 2 +rhyming 'raImIN Jb% 22A,3A,6A +rhythm 'rID@m M6% 2 +rhythmic 'rIDmIk OA% 2 +rhythmical 'rIDmIkl OA% 3 +rhythmically 'rIDmIklI Pu% 3 +rhythms 'rID@mz Mj% 2 +rib rIb H4%,K6% 16A +ribald 'rIb@ld K6$,OA% 2 +ribaldry 'rIb@ldrI L@% 3 +ribalds 'rIb@ldz Kj$ 2 +riband 'rIb@nd K6% 2 +ribands 'rIb@ndz Kj$ 2 +ribbed rIbd Hc%,Hd% 16A +ribbing 'rIbIN Hb% 26A +ribbon 'rIb@n M6% 2 +ribbons 'rIb@nz Mj% 2 +riboflavin ,raIb@U'fleIvIn L@% 4 +ribs rIbz Ha%,Kj% 16A +rice raIs L@% 1 +rice-paper 'raIs-peIp@R L@% 3 +rich rItS OC% 1 +richer 'rItS@R Or% 2 +riches 'rItSIz Kj% 2 +richest 'rItSIst Os% 2 +richly 'rItSlI Pu% 2 +richness 'rItSn@s L@% 2 +rick rIk H0%,K6% 16A +ricked rIkt Hc%,Hd% 16A +rickets 'rIkIts Lk% 2 +rickety 'rIk@tI OA% 3 +ricking 'rIkIN Hb% 26A +ricks rIks Ha%,Kj% 16A +rickshaw 'rIkSO K6% 2 +rickshaws 'rIkSOz Kj% 2 +ricochet 'rIk@SeI J0%,M6% 32A,6A +ricocheted 'rIk@SeId Jc%,Jd% 32A,6A +ricocheting 'rIk@SeIIN Jb$ 42A,6A +ricochets 'rIk@SeIz Ja%,Mj% 32A,6A +ricochetted 'rIk@SeId Jc$,Jd$ 32A,6A +ricochetting 'rIk@SeIIN Jb$ 42A,6A +rid rId H5%,Hc%,Hd% 114 +riddance 'rIdns L@% 2 +ridden 'rIdn Jd% 22A,2B,2C,2D,3A,4A,6A,15A +ridding 'rIdIN Hb% 214 +riddle 'rIdl H2%,K6% 26A,14 +riddled 'rIdld Hc%,Hd% 26A,14 +riddles 'rIdlz Ha%,Kj% 26A,14 +riddling 'rIdlIN Hb% 26A,14 +ride raId J5%,K6% 12A,2B,2C,2D,3A,4A,6A,15A +rider 'raId@R K6% 2 +riderless 'raId@l@s OA% 3 +riders 'raId@z Kj% 2 +rides raIdz Ja%,Kj% 12A,2B,2C,2D,3A,4A,6A,15A +ridge rIdZ H2%,K6% 16A +ridge-tile 'rIdZ-taIl K6% 2 +ridge-tiles 'rIdZ-taIlz Kj% 2 +ridged rIdZd Hc%,Hd% 16A +ridgepole 'rIdZp@Ul K6% 2 +ridgepoles 'rIdZp@Ulz Kj% 2 +ridges 'rIdZIz Ha%,Kj% 26A +ridging 'rIdZIN Hb% 26A +ridicule 'rIdIkjul H2%,K6% 3 +ridiculed 'rIdIkjuld Hc%,Hd% 3 +ridicules 'rIdIkjulz Ha%,Kj% 3 +ridiculing 'rIdIkjulIN Hb% 4 +ridiculous rI'dIkjUl@s OA% 4 +ridiculously rI'dIkjUl@slI Pu% 5 +riding 'raIdIN Jb%,M6% 22A,2B,2C,2D,3A,4A,6A,15A +riding-breeches 'raIdIN-brItSIz Kj% 4 +riding-habit 'raIdIN-h&bIt K6% 4 +riding-habits 'raIdIN-h&bIts Kj$ 4 +riding-lamp 'raIdIN-l&mp K6% 3 +riding-lamps 'raIdIN-l&mps Kj% 3 +riding-light 'raIdIN-laIt K6% 3 +riding-lights 'raIdIN-laIts Kj% 3 +riding-master 'raIdIN-mAst@R K6% 4 +riding-masters 'raIdIN-mAst@z Kj% 4 +riding-school 'raIdIN-skul K6% 3 +riding-schools 'raIdIN-skulz Kj% 3 +ridings 'raIdINz Mj% 2 +rids rIdz Ha% 114 +rife raIf Op% 1 +riff rIf K6$ 1 +riff-raff 'rIf-r&f Mi% 2 +riffle 'rIfl J2$ 23A,6A +riffled 'rIfld Jc$,Jd$ 23A,6A +riffles 'rIflz Ja$ 23A,6A +riffling 'rIflIN Jb$ 23A,6A +riffs rIfs Kj$ 1 +rifle 'raIf@l H2%,K6% 26A +rifle-range 'raIfl-reIndZ K6% 3 +rifle-ranges 'raIfl-reIndZIz Kj% 4 +rifle-shot 'raIfl-S0t K6% 3 +rifle-shots 'raIfl-S0ts Kj% 3 +rifled 'raIf@ld Hc%,Hd% 26A +rifleman 'raIflm@n Ki% 3 +riflemen 'raIflm@n Kj% 3 +rifles 'raIf@lz Ha%,Kj% 26A +rifling 'raIflIN Hb% 26A +rift rIft K6% 1 +rift-valley rIft-'v&lI K6% 3 +rift-valleys rIft-'v&lIz Kj% 3 +rifts rIfts Kj% 1 +rig rIg J4%,K6% 12A,2C,6A,14,15B +rigged rIgd Jc%,Jd% 12A,2C,6A,14,15B +rigger 'rIg@R K6$ 2 +riggers 'rIg@z Kj$ 2 +rigging 'rIgIN Jb%,L@% 22A,2C,6A,14,15B +right raIt H0%,M6%,OA*,Pu* 16A +right-angled 'raIt-&Ngld OA% 3 +right-down 'raIt-daUn OA$,Pu$ 2 +right-hand 'raIt-h&nd OA% 2 +right-handed raIt-'h&ndId OA% 3 +right-hander raIt-'h&nd@R K6% 3 +right-handers raIt-'h&nd@z Kj% 3 +right-minded 'raIt-maIndId OA% 3 +right-turn raIt-'t3n K6% 2 +right-turns raIt-'t3nz Kj% 2 +right-wing raIt-'wIN K6% 2 +right-winger raIt-'wIN@R K6% 3 +right-wingers raIt-'wIN@z Kj% 3 +right-wings raIt-'wINz Kj% 2 +righted 'raItId Hc%,Hd% 26A +righteous 'raItS@s OA% 2 +righteously 'raItS@slI Pu% 3 +righteousness 'raItS@sn@s L@% 3 +rightful 'raItf@l OA% 2 +rightfully 'raItf@lI Pu% 3 +rightfulness 'raItfln@s L@$ 3 +righting 'raItIN Hb% 26A +rightist 'raItIst K6$,OA$ 2 +rightists 'raItIsts Kj$ 2 +rightly 'raItlI Pu% 2 +rightness 'raItn@s L@% 2 +rights raIts Ha%,Mj% 16A +rigid 'rIdZId OA% 2 +rigidities rI'dZIdItIz Mj% 4 +rigidity rI'dZIdItI M8% 4 +rigidly 'rIdZIdlI Pu% 3 +rigmarole 'rIgm@r@Ul M6% 3 +rigmaroles 'rIgm@r@Ulz Mj% 3 +rigor mortis ,rIg@ 'mOtIs L@% 4 +rigorous 'rIg@r@s OA% 3 +rigorously 'rIg@r@slI Pu% 4 +rigour 'rIg@R M6% 2 +rigours 'rIg@z Mj% 2 +rigout 'rIgaUt K6% 2 +rigouts 'rIgaUts Kj% 2 +rigs rIgz Ja%,Kj% 12A,2C,6A,14,15B +rile raIl H2% 16A +riled raIld Hc%,Hd% 16A +riles raIlz Ha% 16A +riling 'raIlIN Hb% 26A +rill rIl K6$ 1 +rills rIlz Kj$ 1 +rim rIm H4%,K6% 16A +rime raIm H2$,L@$ 16A +rimed raImd Hc$,Hd$ 16A +rimes raImz Ha$ 16A +riming 'raImIN Hb$ 26A +rimmed rImd Hc%,Hd% 16A +rimming 'rImIN Hb% 26A +rims rImz Ha%,Kj% 16A +rind raInd M6% 1 +rinderpest 'rInd@pest L@$ 3 +rinds raIndz Mj% 1 +ring rIN J0%,J5%,K6% 12A,2B,2C,2D,3A,6A,15A,15B +ring-armour 'rIN-Am@R L@$ 3 +ring-finger 'rIN-fINg@R K6% 3 +ring-fingers 'rIN-fINg@z Kj% 3 +ring-mail 'rIN-meIl L@$ 2 +ring-road 'rIN-r@Ud K6% 2 +ring-roads 'rIN-r@Udz Kj% 2 +ringed rINd Jc%,Jd% 12A,2B,2C,2D,3A,6A,15A,15B +ringer 'rIN@R K6% 2 +ringers 'rIN@z Kj% 2 +ringing 'rININ Jb% 22A,2B,2C,2D,3A,6A,15A,15B +ringleader 'rINlid@R K6% 3 +ringleaders 'rINlid@z Kj% 3 +ringlet 'rINlIt K6% 2 +ringlets 'rINlIts Kj% 2 +ringmaster 'rINmAst@R K6% 3 +ringmasters 'rINmAst@z Kj% 3 +rings rINz Ja%,Kj% 12A,2B,2C,2D,3A,6A,15A,15B +ringside 'rINsaId K6% 2 +ringsides 'rINsaIdz Kj$ 2 +ringworm 'rINw3m L@% 2 +rink rINk K6% 1 +rinks rINks Kj% 1 +rinse rIns H2%,K6% 16A,15A,15B +rinsed rInst Hc%,Hd% 16A,15A,15B +rinses 'rInsIz Ha%,Kj% 26A,15A,15B +rinsing 'rInsIN Hb% 26A,15A,15B +riot 'raI@t I0%,M6% 22A,2B,2C,3A +rioted 'raI@tId Ic%,Id% 32A,2B,2C,3A +rioter 'raI@t@R K6% 3 +rioters 'raI@t@z Kj% 3 +rioting 'raI@tIN Ib% 32A,2B,2C,3A +riotous 'raI@t@s OA% 3 +riotously 'raI@t@slI Pu% 4 +riots 'raI@ts Ia%,Mj% 22A,2B,2C,3A +rip rIp J4%,K6% 12A,2C,6A,15A,15B,22 +rip-off 'rIp-0f K6% 2 +rip-offs 'rIp-0fs Kj% 2 +rip-roaring 'rIp-rOrIN OA% 3 +riparian raI'pe@rI@n OA$ 4 +ripcord 'rIpkOd K6% 2 +ripcords 'rIpkOdz Kj% 2 +ripe raIp OB% 1 +ripely 'raIplI Pu% 2 +ripen 'raIp@n J0% 22A,6A +ripened 'raIp@nd Jc%,Jd% 22A,6A +ripeness 'raIpn@s L@% 2 +ripening 'raIp@nIN Jb% 32A,6A +ripens 'raIp@nz Ja% 22A,6A +riper 'raIp@R Or% 2 +ripest 'raIpIst Os% 2 +riposte rI'p0st I2$,K6% 2 +riposted rI'p0stId Ic$,Id$ 3 +ripostes rI'p0sts Ia$,Kj$ 2 +riposting rI'p0stIN Ib$ 3 +ripped rIpt Jc%,Jd% 12A,2C,6A,15A,15B,22 +ripping 'rIpIN Jb% 22A,2C,6A,15A,15B,22 +ripple 'rIpl J2%,K6% 22A,6A +rippled 'rIpld Jc%,Jd% 22A,6A +ripples 'rIplz Ja%,Kj% 22A,6A +rippling 'rIplIN Jb% 22A,6A +rips rIps Ja%,Kj% 12A,2C,6A,15A,15B,22 +ripsaw 'rIpsO K6% 2 +ripsaws 'rIpsOz Kj% 2 +riptide 'rIptaId K6$ 2 +riptides 'rIptaIdz Kj$ 2 +rise raIz I5%,K6% 12A,2B,2C,3A,4A +risen 'rIzn Id% 22A,2B,2C,3A,4A +riser 'raIz@R K6% 2 +risers 'raIz@z Kj% 2 +rises 'raIzIz Ia%,Kj% 22A,2B,2C,3A,4A +risibility ,rIz@'bIlItI L@% 5 +risible 'rIz@bl OA% 3 +rising 'raIzIN Ib%,K6% 22A,2B,2C,3A,4A +risings 'raIzINz Kj% 2 +risk rIsk H0%,M6% 16A,6D +risked rIskt Hc%,Hd% 16A,6D +riskier 'rIskI@R Or% 3 +riskiest 'rIskIIst Os% 3 +riskily 'rIskIlI Pu% 3 +riskiness 'rIskIn@s L@% 3 +risking 'rIskIN Hb% 26A,6D +risks rIsks Ha%,Mj% 16A,6D +risky 'rIskI OD% 2 +risotto rI'z0t@U M6% 3 +risottos rI'z0t@Uz Mj% 3 +risqu_e 'riskeI OA% 2 +rissole 'rIs@Ul K6% 2 +rissoles 'rIs@Ulz Kj% 2 +rite raIt K6% 1 +rites raIts Kj% 1 +ritual 'rItSU@l M6%,OA% 3 +ritualism 'rItSU@lIz@m L@$ 5 +ritualist 'rItSU@lIst K6% 4 +ritualistic ,rItSU@'lIstIk OA% 5 +ritualists 'rItSU@lIsts Kj$ 4 +rituals 'rItSU@lz Mj% 3 +ritzy 'rItsI OA% 2 +rival 'raIv@l H4%,K6% 26A,14 +rivalled 'raIv@ld Hc%,Hd% 26A,14 +rivalling 'raIv@lIN Hb% 36A,14 +rivalries 'raIv@lrIz Mj% 3 +rivalry 'raIv@lrI M8% 3 +rivals 'raIv@lz Ha%,Kj% 26A,14 +rive raIv J2$ 16A,15A,15B +rived raIvd Jc$,Jd$ 16A,15A,15B +riven 'rIvn Jd$ 26A,15A,15B +river 'rIv@R K6% 2 +river-basin ,rIv@-'beIsn K6% 4 +river-basins ,rIv@-'beIsnz Kj% 4 +river-bed 'rIv@-bed K6% 3 +river-beds 'rIv@-bedz Kj% 3 +rivers 'rIv@z Kj% 2 +riverside 'rIv@saId K6% 3 +riversides 'rIv@saIdz Kj% 3 +rives raIvz Ja$ 16A,15A,15B +rivet 'rIvIt H0%,K6% 26A,15A,15B +riveted 'rIvItId Hc%,Hd% 36A,15A,15B +riveter 'rIvIt@R K6% 3 +riveters 'rIvIt@z Kj% 3 +riveting 'rIvItIN Hb% 36A,15A,15B +rivets 'rIvIts Ha%,Kj% 26A,15A,15B +riving 'raIvIN Jb$ 26A,15A,15B +rivulet 'rIvjUlIt K6% 3 +rivulets 'rIvjUlIts Kj% 3 +rly 'reIlweI Y>$ 2 +roach r@UtS K9% 1 +roaches 'r@UtSIz Kj% 2 +road r@Ud K6* 1 +road-book 'r@Ud-bUk K6% 2 +road-books 'r@Ud-bUks Kj% 2 +road-hog 'r@Ud-h0g K6% 2 +road-hogs 'r@Ud-h0gz Kj% 2 +road-metal 'r@Ud-metl L@$ 3 +road-sense 'r@Ud-sens L@% 2 +roadbed 'r@Udbed K6% 2 +roadbeds 'r@Udbedz Kj% 2 +roadblock 'r@Udbl0k K6% 2 +roadblocks 'r@Udbl0ks Kj% 2 +roadhouse 'r@UdhaUs K6% 2 +roadhouses 'r@UdhaUzIz Kj% 3 +roadless 'r@Udl@s OA$ 2 +roadman 'r@Udm&n Ki% 2 +roadmen 'r@Udmen Kj% 2 +roadmender 'r@Udmend@R K6% 3 +roadmenders 'r@Udmend@z Kj% 3 +roads r@Udz Kj% 1 +roadside 'r@UdsaId K6% 2 +roadsides 'r@UdsaIdz Kj% 2 +roadstead 'r@Udsted K6$ 2 +roadsteads 'r@Udstedz Kj$ 2 +roadster 'r@Udst@R K6$ 2 +roadsters 'r@Udst@z Kj$ 2 +roadway 'r@UdweI K6% 2 +roadways 'r@UdweIz Kj% 2 +roadworthy 'r@Udw3DI OA% 3 +roam r@Um J0% 12A,2C,6A +roamed r@Umd Jc%,Jd% 12A,2C,6A +roaming 'r@UmIN Jb% 22A,2C,6A +roams r@Umz Ja% 12A,2C,6A +roan r@Un M6$,OA$ 1 +roans r@Unz Mj$ 1 +roar rOR J0%,K6% 12A,2C,3A,6A,15B,22 +roared rOd Jc%,Jd% 12A,2C,3A,6A,15B,22 +roaring 'rOrIN Jb%,OA%,Pu% 22A,2C,3A,6A,15B,22 +roars rOz Ja%,Kj% 12A,2C,3A,6A,15B,22 +roast r@Ust J0%,M6%,Oq% 12A,6A +roasted 'r@UstId Jc%,Jd% 22A,6A +roaster 'r@Ust@R K6% 2 +roasters 'r@Ust@z Kj% 2 +roasting 'r@UstIN Jb%,M6% 22A,6A +roastings 'r@UstINz Mj$ 2 +roasts r@Usts Ja%,Mj% 12A,6A +rob r0b H4% 16A,14 +robbed r0bd Hc%,Hd% 16A,14 +robber 'r0b@R K6% 2 +robberies 'r0b@rIz Mj% 3 +robbers 'r0b@z Kj% 2 +robbery 'r0b@rI M8% 3 +robbing 'r0bIN Hb% 26A,14 +robe r@Ub J2%,K6% 12A,6A,14 +robed r@Ubd Jc%,Jd% 12A,6A,14 +robes r@Ubz Ja%,Kj% 12A,6A,14 +robin 'r0bIn K6% 2 +robing 'r@UbIN Jb% 22A,6A,14 +robins 'r0bInz Kj% 2 +robot 'r@Ub0t K6% 2 +robots 'r@Ub0ts Kj% 2 +robs r0bz Ha% 16A,14 +robust r@U'bVst OA% 2 +robustly r@U'bVstlI Pu% 3 +robustness r@U'bVstn@s L@% 3 +roc r0k K6$ 1 +rock r0k J0%,M6% 12A,6A,15A +rock-'n-roll ,r0k-@n-'r@Ul L@% 3 +rock-bottom r0k-'b0t@m L@% 3 +rock-cake 'r0k-keIk K6% 2 +rock-cakes 'r0k-keIks Kj% 2 +rock-climbing 'r0k-klaImIN L@% 3 +rock-crystal 'r0k-krIstl K6% 3 +rock-crystals 'r0k-krIstlz Kj% 3 +rock-garden 'r0k-gAdn K6% 3 +rock-gardens 'r0k-gAdnz Kj% 3 +rock-plant 'r0k-plAnt K6% 2 +rock-plants 'r0k-plAnts Kj% 2 +rock-salmon r0k-'s&m@n K9% 3 +rock-salt 'r0k-sOlt L@% 2 +rocked r0kt Jc%,Jd% 12A,6A,15A +rocker 'r0k@R K6% 2 +rockeries 'r0k@rIz Kj% 3 +rockers 'r0k@z Kj% 2 +rockery 'r0k@rI K8% 3 +rocket 'r0kIt I0%,K6% 22A +rocket-base 'r0kIt-beIs K6% 3 +rocket-bases 'r0kIt-beIsIz Kj% 4 +rocket-range 'r0kIt-reIndZ K6% 3 +rocket-ranges 'r0kIt-reIndZIz Kj% 4 +rocketed 'r0kItId Ic%,Id% 32A +rocketing 'r0kItIN Ib% 32A +rocketry 'r0kItrI L@% 3 +rockets 'r0kIts Ia%,Kj% 22A +rockier 'r0kI@R Or% 3 +rockiest 'r0kIIst Os% 3 +rocking 'r0kIN Jb% 22A,6A,15A +rocking-chair 'r0kIN-tSe@R K6% 3 +rocking-chairs 'r0kIN-tSe@z Kj% 3 +rocking-horse 'r0kIN-hOs K6% 3 +rocking-horses 'r0kIN-hOsIz Kj% 4 +rocks r0ks Ja%,Mj% 12A,6A,15A +rocky 'r0kI OD% 2 +rococo r@'k@Uk@U OA% 3 +rocs r0ks Kj$ 1 +rod r0d K6% 1 +rode r@Ud Jc% 12A,2B,2C,2D,3A,4A,6A,15A +rodent 'r@Udnt K6% 2 +rodents 'r@Udnts Kj% 2 +rodeo r@U'deI@U K6% 3 +rodeos r@U'deI@Uz Kj% 3 +rodomontade ,r0d@m0n'teId L@$ 4 +rods r0dz Kj% 1 +roe r@U M9% 1 +roebuck 'r@UbVk K6% 2 +roebucks 'r@UbVks Kj% 2 +roes r@Uz Kj% 1 +rogation r@U'geISn K6$ 3 +rogations r@U'geISnz Kj$ 3 +roger 'r0dZ@R W-$ 2 +rogue r@Ug K6% 1 +rogue-elephant r@Ug-'elIf@nt K6% 4 +rogue-elephants r@Ug-'elIf@nts Kj% 4 +rogueries 'r@Ug@rIz Mj% 3 +roguery 'r@Ug@rI M8% 3 +rogues r@Ugz Kj% 1 +roguish 'r@UgIS OA% 2 +roguishly 'r@UgISlI Pu% 3 +roguishness 'r@UgISn@s L@% 3 +roisterer 'roIst@r@R K6% 3 +roisterers 'roIst@r@z Kj% 3 +role r@Ul K6% 1 +roles r@Ulz Kj% 1 +roll r@Ul J0%,K6% 12A,2B,2C,6A,12B,13B,14,15A,15B,22 +roll-call 'r@Ul-kOl K6% 2 +roll-calls 'r@Ul-kOlz Kj% 2 +roll-on 'r@Ul-0n K6% 2 +roll-ons 'r@Ul-0nz Kj% 2 +rolled r@Uld Jc%,Jd% 12A,2B,2C,6A,12B,13B,14,15A,15B,22 +roller 'r@Ul@R K6% 2 +roller-skate 'r@Ul@-skeIt K6% 3 +roller-skates 'r@Ul@-skeIts Kj% 3 +rollers 'r@Ul@z Kj% 2 +rollicking 'r0lIkIN OA% 3 +rolling 'r@UlIN Jb%,L@% 22A,2B,2C,6A,12B,13B,14,15A,15B,22 +rolling-mill 'r@UlIN-mIl K6% 3 +rolling-mills 'r@UlIN-mIlz Kj% 3 +rolling-pin 'r@UlIN-pIn K6% 3 +rolling-pins 'r@UlIN-pInz Kj% 3 +rolling-stock 'r@UlIN-st0k L@% 3 +rolls r@Ulz Ja%,Kj% 12A,2B,2C,6A,12B,13B,14,15A,15B,22 +roly-polies ,r@UlI-'p@UlIz Kj$ 4 +roly-poly ,r@UlI-'p@UlI K8% 4 +romance r@U'm&ns I2%,M6% 22A +romanced r@U'm&nst Ic%,Id% 22A +romances r@U'm&nsIz Ia%,Mj% 32A +romancing r@U'm&nsIN Ib% 32A +romantic r@'m&ntIk K6%,OA% 3 +romantically r@'m&ntIklI Pu% 4 +romanticism r@'m&ntIsIz@m L@% 5 +romanticist r@'m&ntIsIst K6% 4 +romanticists r@'m&ntIsIsts Kj% 4 +romanticize r@U'm&ntIsaIz J2% 42A,6A +romanticized r@U'm&ntIsaIzd Jc%,Jd% 42A,6A +romanticizes r@U'm&ntIsaIzIz Ja% 52A,6A +romanticizing r@U'm&ntIsaIzIN Jb% 52A,6A +romantics r@'m&ntIks Kj% 3 +romp r0mp I0%,K6% 12A,2C +romped r0mpt Ic%,Id% 12A,2C +romper 'r0mp@R K6% 2 +rompers 'r0mp@z Kj% 2 +romping 'r0mpIN Ib% 22A,2C +romps r0mps Ia%,Kj% 12A,2C +rondeau 'r0nd@U K6$ 2 +rondeaus 'r0nd@Uz Kj$ 2 +rondel 'r0ndl K6$ 2 +rondels 'r0ndlz Kj$ 2 +rondo 'r0nd@U K6$ 2 +rondos 'r0nd@Uz Kj$ 2 +rood rud K6$ 1 +rood-tree 'rud-tri K6$ 2 +rood-trees 'rud-triz Kj$ 2 +roods rudz Kj$ 1 +roof ruf H0%,K6% 16A,15A,15B +roof-garden 'ruf-gAdn K6% 3 +roof-gardens 'ruf-gAdnz Kj% 3 +roof-tree 'ruf-tri K6% 2 +roof-trees 'ruf-triz Kj% 2 +roofed ruft Hc%,Hd% 16A,15A,15B +roofing 'rufIN Hb%,L@% 26A,15A,15B +roofless 'rufl@s OA% 2 +roofs rufs Ha%,Kj% 16A,15A,15B +rook rUk H0$,K6% 16A +rooked rUkt Hc$,Hd$ 16A +rookeries 'rUk@rIz Kj% 3 +rookery 'rUk@rI K8% 3 +rookie 'rUkI K6% 2 +rookies 'rUkIz Kj% 2 +rooking 'rUkIN Hb$ 26A +rooks rUks Ha$,Kj% 16A +room rum I0%,M6* 12C +room-mate 'rum-meIt K6% 2 +room-mates 'rum-meIts Kj% 2 +roomed rumd Ic%,Id%,Ot% 12C +roomer 'rum@R K6$ 2 +roomers 'rum@z Kj$ 2 +roomful 'rumfUl K6% 2 +roomfuls 'rumfUlz Kj% 2 +roomier 'rumI@R Or% 3 +roomiest 'rumIIst Os% 3 +roomily 'rumIlI Pu% 3 +rooming 'rumIN Ib% 22C +rooms rumz Ia%,Mj% 12C +roomy 'rumI OD% 2 +roost rust I0%,K6% 12A +roosted 'rustId Ic%,Id% 22A +rooster 'rust@R K6% 2 +roosters 'rust@z Kj% 2 +roosting 'rustIN Ib% 22A +roosts rusts Ia%,Kj% 12A +root rut J0%,K6% 12A,2C,3A,6A,15A,15B +rooted 'rutId Jc%,Jd% 22A,2C,3A,6A,15A,15B +rooting 'rutIN Jb% 22A,2C,3A,6A,15A,15B +rootle 'rutl I2$ 22C +rootled 'rutld Ic$,Id$ 22C +rootles 'rutlz Ia$ 22C +rootless 'rutl@s OA% 2 +rootling 'rutlIN Ib$ 22C +roots ruts Ja%,Kj% 12A,2C,3A,6A,15A,15B +rope r@Up H2%,M6% 115A,15B +rope-dancer 'r@Up-dAns@R K6$ 3 +rope-dancers 'r@Up-dAns@z Kj$ 3 +rope-ladder 'r@Up-l&d@R K6% 3 +rope-ladders 'r@Up-l&d@z Kj% 3 +rope-yard 'r@Up-jAd K6$ 2 +rope-yards 'r@Up-jAdz Kj$ 2 +rope-yarn 'r@Up-jAn L@$ 2 +roped r@Upt Hc%,Hd% 115A,15B +ropes r@Ups Ha%,Mj% 115A,15B +ropewalk 'r@UpwOk K6$ 2 +ropewalker 'r@UpwOk@R K6$ 3 +ropewalkers 'r@UpwOk@z Kj$ 3 +ropewalks 'r@UpwOks Kj$ 2 +ropeway 'r@UpweI K6$ 2 +ropeways 'r@UpweIz Kj$ 2 +ropey 'r@UpI OE% 2 +ropier 'r@UpI@R Or% 3 +ropiest 'r@UpI@st Os% 3 +roping 'r@UpIN Hb% 215A,15B +rosaries 'r@Uz@rIz Kj% 3 +rosary 'r@Uz@rI K8% 3 +rose r@Uz Ic%,M6% 12A,2B,2C,3A,4A +rose-bed 'r@Uz-bed K6% 2 +rose-beds 'r@Uz-bedz Kj% 2 +rose-leaf 'r@Uz-lif Ki% 2 +rose-leaves 'r@Uz-livz Kj% 2 +rose-red 'r@Uz-red OA% 2 +rose-water 'r@Uz-wOt@R L@% 3 +roseate 'r@UzI@t OA% 3 +rosebud 'r@UzbVd K6% 2 +rosebuds 'r@UzbVdz Kj% 2 +rosemary 'r@Uzm@rI L@% 3 +roses 'r@UzIz Mj% 2 +rosette r@U'zet K6% 2 +rosettes r@U'zets Kj% 2 +rosewood 'r@UzwUd L@% 2 +rosier 'r@UzI@R Or% 3 +rosiest 'r@UzIIst Os% 3 +rosin 'r0zIn H4$,L@$ 26A +rosinned 'r0zInd Hc$,Hd$ 26A +rosinning 'r0zInIN Hb$ 36A +rosins 'r0zInz Ha$ 26A +roster 'r0st@R K6% 2 +rosters 'r0st@z Kj% 2 +rostra 'r0str@ Kj$ 2 +rostrum 'r0str@m K6% 2 +rostrums 'r0str@mz Kj$ 2 +rosy 'r@UzI OD% 2 +rot r0t J4%,L@% 12A,2C,6A +rota 'r@Ut@ K6% 2 +rotaries 'r@Ut@rIz Kj% 3 +rotary 'r@Ut@rI K8%,OA% 3 +rotas 'r@Ut@z Kj% 2 +rotate r@U'teIt J2% 22A,6A +rotated r@U'teItId Jc%,Jd% 32A,6A +rotates r@U'teIts Ja% 22A,6A +rotating r@U'teItIN Jb% 32A,6A +rotation r@U'teISn M6% 3 +rotational r@U'teIS@nl OA% 4 +rotationally r@U'teISn@I Pu% 4 +rotations r@U'teISnz Mj% 3 +rotatory 'r@Ut@t@rI OA$ 4 +rote r@Ut Ki% 1 +rotgut 'r0tgVt L@% 2 +rotisserie r@U'tis@rI K6% 4 +rotisseries r@U'tis@rIz Kj% 4 +rotogravure ,r@Ut@Ugr@'vjU@R M6$ 4 +rotogravures ,r@Ut@Ugr@'vjU@z Mj$ 4 +rotor 'r@Ut@R K6% 2 +rotors 'r@Ut@z Kj% 2 +rots r0ts Ja% 12A,2C,6A +rotted 'r0tId Jc%,Jd% 22A,2C,6A +rotten 'r0tn OA% 2 +rottenly 'r0tnlI Pu% 3 +rottenness 'r0tn+n@s L@% 3 +rotter 'r0t@R K6% 2 +rotters 'r0t@z Kj% 2 +rotting 'r0tIN Jb% 22A,2C,6A +rotund r@U'tVnd OA% 2 +rotunda r@U'tVnd@ K6$ 3 +rotundas r@U'tVnd@z Kj$ 3 +rotundity r@U'tVndItI L@$ 4 +rotundly r@U'tVndlI Pu$ 3 +rou_e 'rueI K6$ 2 +rou_es 'rueIz Kj$ 2 +rouble 'rubl K6$ 2 +roubles 'rublz Kj$ 2 +rouge ruZ J2%,L@% 12A,6A +rouged ruZd Jc%,Jd% 12A,6A +rouges 'ruZIz Ja$ 22A,6A +rough rVf H0%,M6%,OC%,Pu% 16A,15B +rough-and-tumble ,rVf-@n-'tVmbl K6%,OA% 4 +rough-and-tumbles ,rVf-@n-'tVmblz Kj$ 4 +rough-dried 'rVf-draId Hc$,Hd% 2 +rough-dries 'rVf-draIz Ha$ 2 +rough-dry 'rVf-draI H3$ 2 +rough-drying 'rVf-draIIN Hb$ 3 +rough-hewn 'rVf-hjun OA% 2 +rough-house 'rVf-haUs J2$ 22A,6A +rough-housed 'rVf-haUst Jc$,Jd$ 22A,6A +rough-houses 'rVf-haUzIz Ja$ 32A,6A +rough-housing 'rVf-haUsIN Jb$ 32A,6A +rough-spoken rVf-'sp@Uk@n OA% 3 +roughage 'rVfIdZ L@% 2 +roughcast 'rVfk&st H5$,Hc%,Hd%,L@% 2 +roughcasting 'rVfk&stIN Hb$ 3 +roughcasts 'rVfk&sts Ha$ 2 +roughed rVft Hc%,Hd% 16A,15B +roughen 'rVfn J0% 2 +roughened 'rVfnd Jc%,Jd% 2 +roughening 'rVfnIN Jb% 3 +roughens 'rVfnz Ja% 2 +rougher 'rVf@R Or% 2 +roughest 'rVfIst Os% 2 +roughing 'rVfIN Hb% 26A,15B +roughish 'rVfIS OA% 2 +roughly 'rVflI Pu% 2 +roughneck 'rVfnek K6% 2 +roughnecks 'rVfneks Kj% 2 +roughness 'rVfn@s L@% 2 +roughrider 'rVfraId@R K6$ 3 +roughriders 'rVfraId@z Kj$ 3 +roughs rVfs Ha%,Mj% 16A,15B +roughshod 'rVfS0d OA% 2 +rouging 'ruZIN Jb$ 22A,6A +roulette ru'let L@% 2 +round raUnd J0%,M6%,OC%,P+%,T-% 12C,3A,6A,15B +round-arm 'raUnd-Am OA$,Pu$ 2 +round-backed raUnd-'b&kt OA% 2 +round-eyed 'raUnd-aId OA% 2 +round-hand 'raUnd-h&nd L@$ 2 +round-shot 'raUnd-S0t K6$ 2 +round-shots 'raUnd-S0ts Kj$ 2 +round-shouldered raUnd-'S@Uld@d OA% 3 +round-the-clock ,raUnd-D@-'kl0k Oq%,Pu% 3 +roundabout 'raUnd@baUt K6%,Oq% 3 +roundabouts 'raUnd@baUts Kj% 3 +rounded 'raUndId Jc%,Jd% 22C,3A,6A,15B +roundel 'raUndl K6$ 2 +roundelay 'raUndIleI K6$ 3 +roundelays 'raUndIleIz Kj$ 3 +roundels 'raUndlz Kj$ 2 +rounder 'raUnd@R Or$ 2 +rounders 'raUnd@z Kj% 2 +roundest 'raUndIst Os% 2 +roundhouse 'raUndhaUs K6% 2 +roundhouses 'raUndhaUzIz Kj% 3 +rounding 'raUndIN Jb% 22C,3A,6A,15B +roundish 'raUndIS OA% 2 +roundly 'raUndlI Pu% 2 +roundness 'raUndn@s L@% 2 +rounds raUndz Ja%,Mj% 12C,3A,6A,15B +roundsman 'raUndzm@n Ki% 2 +roundsmen 'raUndzm@n Kj% 2 +roundup 'raUndVp K6% 2 +roundups 'raUndVps Kj% 2 +rouse raUz J2% 12A,6A,15A +roused raUzd Jc%,Jd% 12A,6A,15A +rouses 'raUzIz Ja% 22A,6A,15A +rousing 'raUzIN Jb% 22A,6A,15A +rout raUt H0%,K6% 16A,15B +route rut H2%,M6% 1 +routed 'raUtId Hc%,Hd% 26A,15B +routed 'rutId Hc%,Hd% 2 +routemarch 'rutmAtS K7% 2 +routemarches 'rutmAtSIz Kj% 3 +routes ruts Ha%,Mj% 1 +routine ru'tin M6%,OA% 2 +routines ru'tinz Mj% 2 +routing 'raUtIN Hb% 26A,15B +routing 'rutIN Hb% 2 +routs raUts Ha%,Kj% 16A,15B +rove r@Uv J2% 12A,2C,6A +roved r@Uvd Jc%,Jd% 12A,2C,6A +rover 'r@Uv@R K6% 2 +rovers 'r@Uv@z Kj% 2 +roves r@Uvz Ja% 12A,2C,6A +roving 'r@UvIN Jb% 22A,2C,6A +row r@U J0%,K6% 12A,2B,2C,6A,15A,15B +row raU J0%,M6% 12A,3A,6A +rowan 'r@U@n K6% 2 +rowan-berries 'r@U@n-berIz Kj% 4 +rowan-berry 'r@U@n-berI K8% 4 +rowan-tree 'r@U@n-tri K6% 3 +rowan-trees 'r@U@n-triz Kj% 3 +rowans 'r@U@nz Kj% 2 +rowboat 'r@Ub@Ut K6% 2 +rowboats 'r@Ub@Uts Kj% 2 +rowdier 'raUdI@R Or% 3 +rowdies 'raUdIz Kj% 2 +rowdiest 'raUdIIst Os% 3 +rowdily 'raUdIlI Pu% 3 +rowdiness 'raUdIn@s L@% 3 +rowdy 'raUdI K8%,OD% 2 +rowdyism 'raUdIIz@m L@$ 4 +rowed r@Ud Jc%,Jd% 12A,2B,2C,6A,15A,15B +rowed raUd Jc%,Jd% 12A,3A,6A +rowel 'raU@l K6$ 2 +rowels 'raU@lz Kj$ 2 +rower 'r@U@R K6% 2 +rowers 'r@U@z Kj% 2 +rowing 'r@UIN Jb%,L@% 22A,2B,2C,6A,15A,15B +rowing 'raUIN Jb% 22A,3A,6A +rowing-boat 'r@UIN-b@Ut K6% 3 +rowing-boats 'r@UIN-b@Uts Kj% 3 +rowing-club 'r@UIN-klVb K6% 3 +rowing-clubs 'r@UIN-klVbz Kj% 3 +rowlock 'r0l@k K6% 2 +rowlocks 'r0l@ks Kj% 2 +rows r@Uz Ja%,Kj% 12A,2B,2C,6A,15A,15B +rows raUz Ja%,Mj% 12A,3A,6A +royal 'roI@l OA% 2 +royalist 'roI@lIst K6% 3 +royalists 'roI@lIsts Kj% 3 +royally 'roI@lI Pu% 3 +royals 'roI@lz Kj% 2 +royalties 'roI@ltIz Mj% 3 +royalty 'roI@ltI M8% 3 +rpm ,ApI'em Y]% 3 +rub rVb J4%,K6% 12A,2C,6A,15A,15B,22 +rub-a-dub ,rVb-@-'dVb L@$ 3 +rub-down 'rVb-daUn K6% 2 +rub-downs 'rVb-daUnz Kj$ 2 +rub-up 'rVb-Vp K6$ 2 +rub-ups 'rVb-Vps Kj$ 2 +rubbed rVbd Jc%,Jd% 12A,2C,6A,15A,15B,22 +rubber 'rVb@R H0%,M6% 26A +rubber-stamp ,rVb@-'st&mp H0% 3 +rubber-stamped ,rVb@-'st&mpt Hc%,Hd% 3 +rubber-stamping ,rVb@-'st&mpIN Hb% 4 +rubber-stamps ,rVb@-'st&mps Ha% 3 +rubbered 'rVb@d Hc$,Hd$ 26A +rubbering 'rVb@rIN Hb$ 36A +rubberize 'rVb@raIz H2% 36A +rubberized 'rVb@raIzd Hc%,Hd% 36A +rubberizes 'rVb@raIzIz Ha% 46A +rubberizing 'rVb@raIzIN Hb% 46A +rubberneck 'rVb@nek I0$,K6% 3 +rubbernecked 'rVb@nekt Ic$,Id$ 3 +rubbernecking 'rVb@nekIN Ib$ 4 +rubbernecks 'rVb@neks Ia$,Kj$ 3 +rubbers 'rVb@z Ha$,Mj% 26A +rubbery 'rVb@rI OA% 3 +rubbing 'rVbIN Jb%,M6% 22A,2C,6A,15A,15B,22 +rubbings 'rVbINz Mj% 2 +rubbish 'rVbIS H1$,L@% 26A +rubbished 'rVbISt Hc%,Hd% 26A +rubbishes 'rVbISIz Ha% 36A +rubbishing 'rVbISIN Hb%,K6% 36A +rubbishy 'rVbISI OA% 3 +rubble 'rVbl L@% 2 +rubicund 'rubIk@nd OA$ 3 +rubies 'rubIz Kj% 2 +rubric 'rubrIk K6$ 2 +rubrics 'rubrIks Kj$ 2 +rubs rVbz Ja%,Kj% 12A,2C,6A,15A,15B,22 +ruby 'rubI K8%,OA% 2 +ruck rVk J0$,K6$ 12A,2C,6A,15B +rucked rVkt Jc$,Jd$ 12A,2C,6A,15B +rucking 'rVkIN Jb$ 22A,2C,6A,15B +rucks rVks Ja$,Kj$ 12A,2C,6A,15B +rucksack 'rVks&k K6% 2 +rucksacks 'rVks&ks Kj% 2 +ruckus 'rVk@s K6% 2 +ruckuses 'rVk@sIz Kj$ 3 +ructions 'rVkSnz Kj% 2 +rudder 'rVd@R K6% 2 +rudderless 'rVd@lIs OA% 3 +rudders 'rVd@z Kj% 2 +ruddier 'rVdI@R Or% 3 +ruddiest 'rVdIIst Os% 3 +ruddiness 'rVdInIs L@% 3 +ruddle 'rVdl H2$,L@$ 2 +ruddled 'rVdld Hc$,Hd$ 2 +ruddles 'rVdlz Ha$ 2 +ruddling 'rVdlIN Hb$ 2 +ruddy 'rVdI OD% 2 +rude rud OB% 1 +rudely 'rudlI Pu% 2 +rudeness 'rudn@s M7% 2 +rudenesses 'rudn@sIz Mj% 3 +ruder 'rud@R Or% 2 +rudest 'rudIst Os% 2 +rudiment 'rudIm@nt K6$ 3 +rudimentary ,rudI'mentrI OA% 4 +rudiments 'rudIm@nts Kj% 3 +rue ru H2%,L@% 16A +rued rud Hc%,Hd% 16A +rueful 'ruf@l OA% 2 +ruefully 'ruf@lI Pu% 3 +rues ruz Ha% 16A +ruff rVf J0$,K6% 1 +ruffed rVft Jc$,Jd$ 1 +ruffian 'rVfI@n K6% 3 +ruffianism 'rVfI@nIz@m L@$ 5 +ruffianly 'rVfI@nlI OA% 4 +ruffians 'rVfI@nz Kj% 3 +ruffing 'rVfIN Jb$ 2 +ruffle 'rVfl J2%,K6% 22A,6A,15B +ruffled 'rVfld Jc%,Jd% 22A,6A,15B +ruffles 'rVflz Ja%,Kj% 22A,6A,15B +ruffling 'rVflIN Jb% 22A,6A,15B +ruffs rVfs Ja$,Kj$ 1 +rug rVg K6% 1 +rugby 'rVgbI L@% 2 +rugged 'rVgId OA% 2 +ruggedly 'rVgIdlI Pu% 3 +ruggedness 'rVgIdn@s L@% 3 +rugger 'rVg@R L@% 2 +rugs rVgz Kj% 1 +ruin 'ruIn H0%,M6% 26A +ruination ,ruI'neISn L@% 4 +ruined 'ruInd Hc%,Hd% 26A +ruing 'ruIN Hb% 26A +ruining 'ruInIN Hb% 36A +ruinous 'ruIn@s OA% 3 +ruinously 'ruIn@slI Pu% 4 +ruins 'ruInz Ha%,Mj% 26A +rule rul J2%,M6% 12A,2B,2C,3A,6A,9,15A,15B,25 +ruled ruld Jc%,Jd% 12A,2B,2C,3A,6A,9,15A,15B,25 +ruler 'rul@R K6% 2 +rulers 'rul@z Kj% 2 +rules rulz Ja%,Mj% 12A,2B,2C,3A,6A,9,15A,15B,25 +ruling 'rulIN Jb%,K6%,OA% 22A,2B,2C,3A,6A,9,15A,15B,25 +rulings 'rulINz Kj% 2 +rum rVm L@% 1 +rum-runner 'rVm-rVn@R K6% 3 +rum-runners 'rVm-rVn@z Kj% 3 +rumba 'rVmb@ K6% 2 +rumbas 'rVmb@z Kj% 2 +rumble 'rVmbl J2%,M6% 22A,2C,15B +rumbled 'rVmbld Jc%,Jd% 22A,2C,15B +rumbles 'rVmblz Ja%,Mj% 22A,2C,15B +rumbling 'rVmblIN Jb%,K6% 22A,2C,15B +rumblings 'rVmblINz Kj% 2 +rumbustious rVm'bVstI@s OA% 4 +ruminant 'rumIn@nt K6%,OA% 3 +ruminants 'rumIn@nts Kj% 3 +ruminate 'rumIneIt I2% 32A,2B,2C +ruminated 'rumIneItId Ic%,Id% 42A,2B,2C +ruminates 'rumIneIts Ia% 32A,2B,2C +ruminating 'rumIneItIN Ib% 42A,2B,2C +rumination ,rumI'neISn L@% 4 +ruminative 'rumIn@tIv OA% 4 +rummage 'rVmIdZ J2%,L@% 22A,2B,2C,3A,6A,15B +rummaged 'rVmIdZd Jc%,Jd% 22A,2B,2C,3A,6A,15B +rummages 'rVmIdZIz Ja% 32A,2B,2C,3A,6A,15B +rummaging 'rVmIdZIN Jb% 32A,2B,2C,3A,6A,15B +rummer 'rVm@R Or$ 2 +rummest 'rVmIst Os$ 2 +rummy 'rVmI L@%,OE% 2 +rumour 'rum@R H0%,M6% 2 +rumour-monger 'rum@-mVNg@R K6% 4 +rumour-mongers 'rum@-mVNg@z Kj% 4 +rumoured 'rum@d Hc%,Hd% 2 +rumouring 'rum@rIN Hb% 3 +rumours 'rum@z Ha%,Mj% 2 +rump rVmp K6% 1 +rump-steak rVmp-'steIk M6% 2 +rump-steaks rVmp-'steIks Mj% 2 +rumple 'rVmpl H2% 26A +rumpled 'rVmpld Hc%,Hd% 26A +rumples 'rVmplz Ha% 26A +rumpling 'rVmplIN Hb% 26A +rumps rVmps Kj% 1 +rumpus 'rVmp@s Ki% 2 +run rVn J5%,Jd%,K6% 12A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +run-of-the-mill 'rVn-@v-D@-mIl OA% 4 +run-off 'rVn-0f K6$ 2 +run-offs 'rVn-0fs Kj$ 2 +run-through 'rVn-Tru K6% 2 +run-throughs 'rVn-Truz Kj$ 2 +run-up 'rVn-Vp K6% 2 +run-ups 'rVn-Vps Kj$ 2 +runaway 'rVn@weI K6%,OA% 3 +runaways 'rVn@weIz Kj% 3 +rundown 'rVndaUn K6%,OA% 2 +rundowns 'rVndaUnz Kj$ 2 +rune run K6$ 1 +runes runz Kj$ 1 +rung rVN Jd%,K6% 12A,2B,2C,2D,3A,6A,15A,15B +rungs rVNz Kj% 1 +runic 'runIk OA$ 2 +runnel 'rVnl K6$ 2 +runnels 'rVnlz Kj$ 2 +runner 'rVn@R K6% 2 +runner-up ,rVn@r-'Vp Ki% 3 +runners 'rVn@z Kj% 2 +runners-up ,rVn@z-'Vp Kj% 3 +runnier 'rVnI@R Or% 3 +runniest 'rVnIIst Os% 3 +running 'rVnIN Jb%,L@%,OA% 22A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +running-board 'rVnIN-bOd K6% 3 +running-boards 'rVnIN-bOdz Kj% 3 +runny 'rVnI OD% 2 +runs rVnz Ja%,Kj% 12A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +runt rVnt K6% 1 +runts rVnts Kj% 1 +runway 'rVnweI K6% 2 +runways 'rVnweIz Kj% 2 +rupee ru'pi K6% 2 +rupees ru'piz Kj% 2 +rupiah ru'pi@ K6$ 3 +rupiahs ru'pi@z Kj$ 3 +rupture 'rVptS@R J2%,M6% 22A,6A +ruptured 'rVptS@d Jc%,Jd% 22A,6A +ruptures 'rVptS@z Ja%,Mj% 22A,6A +rupturing 'rVptS@rIN Jb% 32A,6A +rural 'rU@r@l OA% 2 +ruse ruz K6% 1 +ruses 'ruzIz Kj% 2 +rush rVS J1%,M7% 12A,2C,4A,6A,15A,15B +rushed rVSt Jc%,Jd% 12A,2C,4A,6A,15A,15B +rushes 'rVSIz Ja%,Mj% 22A,2C,4A,6A,15A,15B +rushier 'rVSI@R Or$ 3 +rushiest 'rVSIIst Os$ 3 +rushing 'rVSIN Jb% 22A,2C,4A,6A,15A,15B +rushlight 'rVSlaIt K6$ 2 +rushlights 'rVSlaIts Kj$ 2 +rushy 'rVSI OD% 2 +rusk rVsk K6% 1 +rusks rVsks Kj% 1 +russet 'rVsIt M6%,OA% 2 +russets 'rVsIts Mj$ 2 +rust rVst J0%,L@% 12A,2C,6A +rusted 'rVstId Jc%,Jd% 22A,2C,6A +rustic 'rVstIk K6%,OA% 2 +rusticate 'rVstIkeIt J2$ 32A,6A +rusticated 'rVstIkeItId Jc$,Jd$ 42A,6A +rusticates 'rVstIkeIts Ja$ 32A,6A +rusticating 'rVstIkeItIN Jb$ 42A,6A +rusticity rV'stIsItI L@$ 4 +rustics 'rVstIks Kj% 2 +rustier 'rVstI@R Or% 3 +rustiest 'rVstIIst Os% 3 +rustiness 'rVstIn@s L@% 3 +rusting 'rVstIN Jb% 22A,2C,6A +rustle 'rVsl J2%,L@% 22A,2C,6A,15B +rustled 'rVsld Jc%,Jd% 22A,2C,6A,15B +rustler 'rVsl@R K6% 2 +rustlers 'rVsl@z Kj% 2 +rustles 'rVslz Ja% 22A,2C,6A,15B +rustless 'rVstl@s OA% 2 +rustling 'rVslIN Jb%,M6% 22A,2C,6A,15B +rustlings 'rVslINz Mj$ 2 +rusts rVsts Ja% 12A,2C,6A +rusty 'rVstI OD% 2 +rut rVt H4%,M6% 12A +ruthless 'ruTlIs OA% 2 +ruthlessly 'ruTlIslI Pu% 3 +ruthlessness 'ruTlIsn@s L@% 3 +ruts rVts Ha$,Mj% 12A +rutted 'rVtId Hc%,Hd% 22A +rutting 'rVtIN Hb$ 22A +rye raI L@% 1 +rye-bread 'raI-bred L@% 2 +s es Ki$ 1 +s's 'esIz Kj$ 2 +s_eance 'seIAns K6% 2 +s_eances 'seIAnsIz Kj% 3 +sabbatarian ,s&b@'te@rI@n K6$,OA$ 5 +sabbatarians ,s&b@'te@rI@nz Kj$ 5 +sabbatical s@'b&tIkl K6%,OA% 4 +sabbaticals s@'b&tIklz Kj% 4 +sable 'seIbl M6%,OA% 2 +sables 'seIblz Mj% 2 +sabot 's&b@U K6$ 2 +sabotage 's&b@tAZ H2%,L@% 36A +sabotaged 's&b@tAZd Hc%,Hd% 36A +sabotages 's&b@tAZIz Ha% 46A +sabotaging 's&b@tAZIN Hb% 46A +saboteur ,s&b@'t3R K6% 3 +saboteurs ,s&b@'t3z Kj% 3 +sabots 's&b@Uz Kj$ 2 +sabre 'seIb@R H2$,K6% 2 +sabre-rattling 'seIb@-r&tlIN L@% 4 +sabre-toothed 'seIb@-tuTt OA% 3 +sabred 'seIb@d Hc$,Hd$ 2 +sabres 'seIb@z Ha$,Kj% 2 +sabring 'seIb@rIN Hb$ 3 +sac s&k K6$ 1 +saccharin 's&k@rIn L@% 3 +saccharine 's&k@rin OA% 3 +sacerdotal ,s&s@'d@Utl OA$ 4 +sacerdotalism ,s&s@'d@Ut@lIz@m L@$ 6 +sachet 's&SeI K6% 2 +sachets 's&SeIz Kj% 2 +sack s&k H0%,M6% 16A +sack-race 's&k-reIs K6% 2 +sack-races 's&k-reIsIz Kj% 3 +sackbut 's&kbVt K6$ 2 +sackbuts 's&kbVts Kj$ 2 +sackcloth 's&k+kl0T L@% 2 +sacked s&kt Hc%,Hd% 16A +sacking 's&kIN Hb%,L@% 26A +sacks s&ks Ha%,Mj% 16A +sacrament 's&kr@m@nt K6% 3 +sacramental ,s&kr@'mentl OA% 4 +sacraments 's&kr@m@nts Kj% 3 +sacred 'seIkrId OA% 2 +sacredly 'seIkrIdlI Pu% 3 +sacredness 'seIkrIdn@s L@% 3 +sacrifice 's&krIfaIs J2%,M6% 33A,6A,14,16A +sacrificed 's&krIfaIst Jc%,Jd% 33A,6A,14,16A +sacrifices 's&krIfaIsIz Ja%,Mj% 43A,6A,14,16A +sacrificial ,s&krI'fISl OA% 4 +sacrificing 's&krIfaIsIN Jb% 43A,6A,14,16A +sacrilege 's&krIlIdZ L@% 3 +sacrilegious ,s&krI'lIdZ@s OA% 4 +sacristan 's&krIst@n K6$ 3 +sacristans 's&krIst@nz Kj$ 3 +sacristies 's&krIstIz Kj% 3 +sacristy 's&krIstI K8% 3 +sacrosanct 's&kr@Us&Nkt OA% 3 +sacs s&ks Kj$ 1 +sad s&d OE% 1 +sadden 's&dn J0% 22A,6A +saddened 's&dnd Jc%,Jd% 22A,6A +saddening 's&dnIN Jb% 32A,6A +saddens 's&dnz Ja% 22A,6A +sadder 's&d@R Or% 2 +saddest 's&dIst Os% 2 +saddle 's&dl H2%,K6% 26A,14 +saddle-sore 's&dl-sOR OA% 3 +saddlebag 's&dlb&g K6% 3 +saddlebags 's&dlb&gz Kj% 3 +saddled 's&dld Hc%,Hd% 26A,14 +saddler 's&dl@R K6% 2 +saddleries 's&dl@rIz Mj% 3 +saddlers 's&dl@z Kj% 2 +saddlery 's&dl@rI M8% 3 +saddles 's&dlz Ha%,Kj% 26A,14 +saddling 's&dlIN Hb% 26A,14 +sadhu 'sAdu K6$ 2 +sadhus 'sAduz Kj$ 2 +sadism 'seIdIz@m L@% 3 +sadist 'seIdIst K6% 2 +sadistic s@'dIstIk OA% 3 +sadists 'seIdIsts Kj% 2 +sadly 's&dlI Pu% 2 +sadness 's&dn@s L@% 2 +sado-masochist ,seId@U-'m&s@kIst K6% 5 +sado-masochists ,seId@U-'m&s@kIsts Kj% 5 +sadomasochism ,seId@U'm&s@kIz@m L@% 6 +sae ,es,eI'i Y>% 3 +safari s@'fArI M6% 3 +safaris s@'fArIz Mj% 3 +safe seIf K6%,OB% 1 +safe-conduct seIf-'k0ndVkt L@% 3 +safe-deposit 'seIf-dIp0zIt K6%,OA% 4 +safe-deposits 'seIf-dIp0zIts Kj% 4 +safecracker 'seIfkr&k@R K6% 3 +safecrackers 'seIfkr&k@z Kj% 3 +safeguard 'seIfgAd H0%,K6% 26A,14 +safeguarded 'seIfgAdId Hc%,Hd% 36A,14 +safeguarding 'seIfgAdIN Hb% 36A,14 +safeguards 'seIfgAdz Ha%,Kj% 26A,14 +safekeeping seIf'kipIN L@% 3 +safely 'seIflI Pu% 2 +safeness 'seIfn@s L@% 2 +safer 'seIf@R Or% 2 +safes seIfs Kj% 1 +safest 'seIfIst Os% 2 +safety 'seIftI L@% 2 +safety-belt 'seIftI-belt K6% 3 +safety-belts 'seIftI-belts Kj% 3 +safety-bolt 'seIftI-b@Ult K6% 3 +safety-bolts 'seIftI-b@Ults Kj% 3 +safety-catch 'seIftI-k&tS K7% 3 +safety-catches 'seIftI-k&tSIz Kj% 4 +safety-curtain 'seIftI-k3tn K6% 4 +safety-curtains 'seIftI-k3tnz Kj% 4 +safety-factor 'seIftI-f&kt@R K6% 4 +safety-factors 'seIftI-f&kt@z Kj% 4 +safety-lamp 'seIftI-l&mp K6% 3 +safety-lamps 'seIftI-l&mps Kj% 3 +safety-lock 'seIftI-l0k K6% 3 +safety-locks 'seIftI-l0ks Kj% 3 +safety-match 'seIftI-m&tS K7% 3 +safety-matches 'seIftI-m&tSIz Kj% 4 +safety-pin 'seIftI-pIn K6% 3 +safety-pins 'seIftI-pInz Kj% 3 +safety-razor 'seIftI-reIz@R K6% 4 +safety-razors 'seIftI-reIz@z Kj% 4 +safety-valve 'seIftI-v&lv K6% 3 +safety-valves 'seIftI-v&lvz Kj% 3 +saffron 's&fr@n M6% 2 +saffrons 's&fr@nz Mj$ 2 +sag s&g I4%,K6$ 12A +saga 'sAg@ K6% 2 +sagacious s@'geIS@s OA% 3 +sagaciously s@'geIS@slI Pu% 4 +sagacity s@'g&sItI L@% 4 +sagas 'sAg@z Kj% 2 +sage seIdZ M6%,OA% 1 +sage-green seIdZ-'grin L@%,OA% 2 +sagely 'seIdZlI Pu% 2 +sages 'seIdZIz Mj% 2 +sagged s&gd Ic%,Id% 12A +sagging 's&gIN Ib% 22A +sago 'seIg@U L@% 2 +sags s&gz Ia%,Kj$ 12A +sahib sAb K6$ 1 +sahibs sAbz Kj$ 1 +said sed Jc*,Jd*,Oq% 16A,9,10,14 +sail seIl J0%,M6% 12A,2B,2C,3A,6A +sailcloth 'seIlkl0T L@% 2 +sailed seIld Jc%,Jd% 12A,2B,2C,3A,6A +sailing 'seIlIN Jb%,K6% 22A,2B,2C,3A,6A +sailing-boat 'seIlIN-b@Ut K6% 3 +sailing-boats 'seIlIN-b@Uts Kj% 3 +sailing-master 'seIlIN-mAst@R K6% 4 +sailing-masters 'seIlIN-mAst@z Kj% 4 +sailing-ship 'seIlIN-SIp K6% 3 +sailing-ships 'seIlIN-SIps Kj% 3 +sailing-vessel 'seIlIN-vesl K6% 4 +sailing-vessels 'seIlIN-veslz Kj% 4 +sailings 'seIlINz Kj$ 2 +sailor 'seIl@R K6% 2 +sailors 'seIl@z Kj% 2 +sails seIlz Ja%,Mj% 12A,2B,2C,3A,6A +saint seInt K6% 1 +saint's-day 'seInts-deI K6% 2 +saint's-days 'seInts-deIz Kj% 2 +sainted 'seIntId OA% 2 +sainthood 'seInthUd L@% 2 +saintlier 'seIntlI@R Or% 3 +saintliest 'seIntlIIst Os% 3 +saintlike 'seIntlaIk OA% 2 +saintliness 'seIntlIn@s L@% 3 +saintly 'seIntlI OD% 2 +saints seInts Kj% 1 +saith seT Je$ 16A,9,10,14 +sak_e 'sAkI L@$ 2 +sake seIk K6% 1 +sakes seIks Kj% 1 +sal volatile ,s&l v@'l&t@lI L@% 5 +salaam s@'lAm I0$,K6$ 2 +salaamed s@'lAmd Ic$,Id$ 2 +salaaming s@'lAmIN Ib$ 3 +salaams s@'lAmz Ia$,Kj$ 2 +salable 'seIl@bl OA$ 3 +salacious s@'leIS@s OA% 3 +salaciously s@'leIS@slI Pu% 4 +salaciousness s@'leIS@sn@s L@% 4 +salacity s@'l&sItI L@$ 4 +salad 's&l@d M6% 2 +salad-days 's&l@d-deIz Kj% 3 +salad-dressing 's&l@d-dresIN M6% 4 +salad-dressings 's&l@d-dresINz Mj% 4 +salad-oil 's&l@d-oIl M6% 3 +salad-oils 's&l@d-oIlz Mj% 3 +salads 's&l@dz Mj% 2 +salamander 's&l@m&nd@R K6$ 4 +salamanders 's&l@m&nd@z Kj$ 4 +salami s@'lAmI L@% 3 +salaried 's&l@rId OA% 3 +salaries 's&l@rIz Kj% 3 +salary 's&l@rI K8% 3 +sale seIl M6% 1 +saleable 'seIl@bl OA% 3 +saleroom 'seIlrum K6% 2 +salerooms 'seIlrumz Kj% 2 +sales seIlz Mj% 1 +salesman 'seIlzm@n Ki% 2 +salesmanship 'seIlzm@nSIp L@% 3 +salesmen 'seIlzm@n Kj% 2 +saleswoman 'seIlzwUm@n Ki% 3 +saleswomen 'seIlzwImIn Kj% 3 +salience 'seIlI@ns L@% 3 +salient 'seIlI@nt K6$,OA% 3 +salients 'seIlI@nts Kj$ 3 +saline 'seIlaIn M6$,OA% 2 +salines 'seIlaInz Mj$ 2 +salinity s@'lInItI L@% 4 +saliva s@'laIv@ L@% 3 +salivary 's&lIv@rI OA% 4 +salivate 's&lIveIt I2% 3 +salivated 's&lIveItId Ic%,Id% 4 +salivates 's&lIveIts Ia% 3 +salivating 's&lIveItIN Ib% 4 +sallied 's&lId Ic%,Id% 22A,2C +sallies 's&lIz Ia%,Kj% 22A,2C +sallow 's&l@U J0$,OC% 2 +sallowed 's&l@Ud Jc$,Jd$ 2 +sallower 's&l@U@R Or$ 3 +sallowest 's&l@UIst Os$ 3 +sallowing 's&l@UIN Jb$ 3 +sallows 's&l@Uz Ja$ 2 +sally 's&lI I3%,K8% 22A,2C +sallying 's&lIIN Ib% 32A,2C +salmon 's&m@n M9% 2 +salon 's&l0n K6% 2 +salons 's&l0nz Kj% 2 +saloon s@'lun K6% 2 +saloons s@'lunz Kj% 2 +salsify 's&lsIfI L@$ 3 +salt sOlt H0%,M6%,OA% 16A,15B +salt-cellar 'sOlt-sel@R K6% 3 +salt-cellars 'sOlt-sel@z Kj% 3 +salt-lick 'sOlt-lIk K6% 2 +salt-licks 'sOlt-lIks Kj% 2 +salted 'sOltId Hc%,Hd% 26A,15B +saltier 'sOltI@R Or% 3 +saltiest 'sOltIIst Os% 3 +saltiness 'sOltIn@s L@% 3 +salting 'sOltIN Hb% 26A,15B +saltpan 'sOltp&n K6% 2 +saltpans 'sOltp&nz Kj% 2 +saltpetre sOlt'pit@R L@% 3 +salts sOlts Ha%,Mj% 16A,15B +saltwater 'sOltwOt@R L@% 3 +saltworks 'sOltw3ks K9% 2 +salty 'sOltI OD% 2 +salubrious s@'lubrI@s OA% 4 +salubrity s@'lubrItI L@$ 4 +salutary 's&ljUtrI OA% 3 +salutation ,s&lju'teISn M6% 4 +salutations ,s&lju'teISnz Mj% 4 +salute s@'lut J2%,K6% 22A,6A +saluted s@'lutId Jc%,Jd% 32A,6A +salutes s@'luts Ja%,Kj% 22A,6A +saluting s@'lutIN Jb% 32A,6A +salvage 's&lvIdZ H2%,L@% 26A +salvaged 's&lvIdZd Hc%,Hd% 26A +salvages 's&lvIdZIz Ha% 36A +salvaging 's&lvIdZIN Hb% 36A +salvation s&l'veISn L@% 3 +salve s&lv H2%,M6% 16A +salved s&lvd Hc%,Hd% 16A +salver 's&lv@R K6% 2 +salvers 's&lv@z Kj% 2 +salves s&lvz Ha%,Mj% 16A +salvia 's&lvI@ K6$ 3 +salvias 's&lvI@z Kj$ 3 +salving 's&lvIN Hb% 26A +salvo 's&lv@U K6% 2 +salvoes 's&lv@Uz Kj% 2 +salvos 's&lv@Uz Kj% 2 +samba 's&mb@ K6% 2 +sambas 's&mb@z Kj% 2 +same seIm OA*,Pu*,Qx* 1 +sameness 'seImn@s L@% 2 +samovar 's&m@vAR K6$ 3 +samovars 's&m@vAz Kj$ 3 +sampan 's&mp&n K6$ 2 +sampans 's&mp&nz Kj$ 2 +sample 'sAmpl H2%,K6% 26A +sampled 'sAmpld Hc%,Hd% 26A +sampler 'sAmpl@R K6% 2 +samplers 'sAmpl@z Kj% 2 +samples 'sAmplz Ha%,Kj% 26A +sampling 'sAmplIN Hb% 26A +samurai 's&mUraI K9$ 3 +sanatoria ,s&n@'tOrI@ Kj% 5 +sanatorium ,s&n@'tOrI@m K6% 5 +sanatoriums ,s&n@'tOrI@mz Kj$ 5 +sanctification ,s&NktIfI'keISn M6% 5 +sanctifications ,s&NktIfI'keISnz Mj$ 5 +sanctified 's&NktIfaId Hc%,Hd% 36A +sanctifies 's&NktIfaIz Ha% 36A +sanctify 's&NktIfaI H3% 36A +sanctifying 's&NktIfaIIN Hb% 46A +sanctimonious ,s&NktI'm@UnI@s OA% 5 +sanctimoniously ,s&NktI'm@UnI@slI Pu% 6 +sanction 's&NkSn H0%,M6% 26A +sanctioned 's&NkSnd Hc%,Hd% 26A +sanctioning 's&NkSnIN Hb% 36A +sanctions 's&NkSnz Ha%,Mj% 26A +sanctities 's&NktItIz Mj$ 3 +sanctity 's&NktItI M8% 3 +sanctuaries 's&NktSU@rIz Mj% 4 +sanctuary 's&NktSU@rI M8% 4 +sanctum 's&Nkt@m K6% 2 +sanctums 's&Nkt@mz Kj% 2 +sand s&nd H0%,M6% 16A +sand-bar 's&nd-bAR K6% 2 +sand-bars 's&nd-bAz Kj% 2 +sandal 's&ndl K6% 2 +sandalled 's&ndld OA$ 2 +sandals 's&ndlz Kj% 2 +sandalwood 's&ndlwUd L@% 3 +sandbag 's&ndb&g K6% 2 +sandbags 's&ndb&gz Kj% 2 +sandbank 's&ndb&Nk K6% 2 +sandbanks 's&ndb&Nks Kj% 2 +sandblast 's&ndbl&st H0% 26A +sandblasted 's&ndbl&stId Hc%,Hd% 36A +sandblasting 's&ndbl&stIN Hb% 36A +sandblasts 's&ndbl&sts Ha% 26A +sandboy 's&ndboI K6% 2 +sandboys 's&ndboIz Kj% 2 +sanded 's&ndId Hc%,Hd% 26A +sandflies 's&ndflaIz Kj% 2 +sandfly 's&ndflaI K8% 2 +sandglass 's&ndglAs K7$ 2 +sandglasses 's&ndglAsIz Kj$ 3 +sandier 's&ndI@R Or% 3 +sandiest 's&ndIIst Os% 3 +sandiness 's&ndIn@s L@% 3 +sanding 's&ndIN Hb% 26A +sandpaper 's&ndpeIp@R H0%,M6% 36A +sandpapered 's&ndpeIp@d Hc%,Hd% 36A +sandpapering 's&ndpeIp@rIN Hb% 46A +sandpapers 's&ndpeIp@z Ha%,Mj% 36A +sandpiper 's&ndpaIp@R K6% 3 +sandpipers 's&ndpaIp@z Kj% 3 +sandpit 's&ndpIt K6% 2 +sandpits 's&ndpIts Kj% 2 +sands s&ndz Ha%,Mj% 16A +sandshoes 's&ndSuz Kj% 2 +sandstone 's&ndst@Un L@% 2 +sandstorm 's&ndstOm K6% 2 +sandstorms 's&ndstOmz Kj% 2 +sandwich 's&nwIdZ H1%,K7% 26A,14 +sandwich-board 's&nwIdZ-bOd K6% 3 +sandwich-boards 's&nwIdZ-bOdz Kj% 3 +sandwiched 's&nwIdZd Hc%,Hd% 26A,14 +sandwiches 's&nwIdZIz Ha%,Kj% 36A,14 +sandwiching 's&nwIdZIN Hb% 36A,14 +sandwichman 's&nwIdZm&n Ki% 3 +sandwichmen 's&nwIdZmen Kj% 3 +sandy 's&ndI OD% 2 +sane seIn OB% 1 +sanely 'seInlI Pu% 2 +saner 'seIn@R Or% 2 +sanest 'seInIst Os% 2 +sang s&N Jc% 12A,2C,3A,6A,12B,13B,15A +sang froid ,s0N 'frwA L@% 2 +sanguinary 's&NgwIn@rI OA$ 4 +sanguine 's&NgwIn OA% 2 +sanitary 's&nItrI OA% 3 +sanitation ,s&nI'teISn L@% 4 +sanity 's&nItI L@% 3 +sank s&Nk Jc% 12A,2C,3A,6A,14,15A +sans s&nz T-$ 1 +sap s&p J4%,M6% 12A,6A +saphead 's&phed K6$ 2 +sapheads 's&phedz Kj$ 2 +sapience 'seIpI@ns L@$ 3 +sapient 'seIpI@nt OA$ 3 +sapiently 'seIpI@ntlI Pu$ 4 +sapless 's&pl@s OA$ 2 +sapling 's&plIN K6% 2 +saplings 's&plINz Kj% 2 +sapped s&pt Jc%,Jd% 12A,6A +sapper 's&p@R K6% 2 +sappers 's&p@z Kj% 2 +sapphire 's&faI@R M6% 2 +sapphires 's&faI@z Mj% 2 +sappier 's&pI@R Or$ 3 +sappiest 's&pIIst Os$ 3 +sapping 's&pIN Jb% 22A,6A +sappy 's&pI OD% 2 +saps s&ps Ja%,Mj% 12A,6A +sapwood 's&pwUd L@$ 2 +saraband 's&r@b&nd K6$ 3 +sarabands 's&r@b&ndz Kj$ 3 +sarcasm 'sAk&z@m M6% 3 +sarcasms 'sAk&z@mz Mj$ 3 +sarcastic sA'k&stIk OA% 3 +sarcastically sA'k&stIklI Pu% 4 +sarcophagi sA'k0f@gaI Kj$ 4 +sarcophagus sA'k0f@g@s Ki$ 4 +sardine sA'din M6% 2 +sardines sA'dinz Mj% 2 +sardonic sA'd0nIk OA% 3 +sardonically sA'd0nIklI Pu% 4 +sari 'sArI K6% 2 +saris 'sArIz Kj% 2 +sarong s@'r0N K6$ 2 +sarongs s@'r0Nz Kj$ 2 +sarsaparilla ,sAsp@'rIl@ L@$ 4 +sartorial sA'tOrI@l OA$ 4 +sash s&S K7% 1 +sash-cord 's&S-kOd K6% 2 +sash-cords 's&S-kOdz Kj% 2 +sash-line 's&S-laIn K6$ 2 +sash-lines 's&S-laInz Kj$ 2 +sashes 's&SIz Kj% 2 +sat s&t Jc%,Jd% 12A,2C,3A,6A,15B +satchel 's&tSl K6% 2 +satchels 's&tSlz Kj% 2 +sate seIt H2$ 16A +sated 'seItId Hc$,Hd% 26A +sateen s@'tin L@$ 2 +satellite 's&t@laIt K6% 3 +satellites 's&t@laIts Kj% 3 +sates seIts Ha$ 16A +satiable 'seIS@bl OA% 3 +satiate 'seISIeIt H2% 36A +satiated 'seISIeItId Hc%,Hd% 46A +satiates 'seISIeIts Ha% 36A +satiating 'seISIeItIN Hb% 46A +satiety s@'taI@tI L@% 4 +satin 's&tIn L@%,OA% 2 +sating 'seItIN Hb$ 26A +satinwood 's&tInwUd L@% 3 +satire 's&taI@R M6% 2 +satires 's&taI@z Mj% 2 +satirical s@'tIrIkl OA% 4 +satirically s@'tIrIklI Pu% 4 +satirist 's&t@rIst K6% 3 +satirists 's&t@rIsts Kj% 3 +satirize 's&t@raIz H2% 36A +satirized 's&t@raIzd Hc%,Hd% 36A +satirizes 's&t@raIzIz Ha% 46A +satirizing 's&t@raIzIN Hb% 46A +satisfaction ,s&tIs'f&kSn M6% 4 +satisfactions ,s&tIs'f&kSnz Mj% 4 +satisfactorily ,s&tIs'f&kt@rIlI Pu% 6 +satisfactory ,s&tIs'f&kt@rI OA% 5 +satisfied 's&tIsfaId Jc%,Jd% 32A,6A,11,14 +satisfies 's&tIsfaIz Ja% 32A,6A,11,14 +satisfy 's&tIsfaI J3% 32A,6A,11,14 +satisfying 's&tIsfaIIN Jb%,OA% 42A,6A,11,14 +satisfyingly 's&tIsfaIINlI Pu% 5 +satrap 's&tr&p K6$ 2 +satraps 's&tr&ps Kj$ 2 +satsuma ,s&t'sum@ K6% 3 +satsumas ,s&t'sum@z Kj% 3 +saturate 's&tS@reIt H2% 36A,14 +saturated 's&tS@reItId Hc%,Hd% 46A,14 +saturates 's&tS@reIts Ha% 36A,14 +saturating 's&tS@reItIN Hb% 46A,14 +saturation ,s&tS@'reISn L@% 4 +saturnalia ,s&t@'neIlI@ K6$ 5 +saturnalias ,s&t@'neIlI@z Kj$ 5 +saturnine 's&t@naIn OA% 3 +satyr 's&t@R K6$ 2 +satyric s@'tIrIk OA$ 3 +satyrs 's&t@z Kj$ 2 +sauce sOs H2$,M6% 16A +sauce-boat 'sOs-b@Ut K6% 2 +sauce-boats 'sOs-b@Uts Kj% 2 +sauced sOst Hc$,Hd$ 16A +saucepan 'sOsp@n K6% 2 +saucepans 'sOsp@nz Kj% 2 +saucer 'sOs@R K6% 2 +saucer-eyed 'sOs@r-aId OA% 3 +saucers 'sOs@z Kj% 2 +sauces 'sOsIz Ha$,Mj% 26A +saucier 'sOsI@R Or% 3 +sauciest 'sOsIIst Os% 3 +saucily 'sOsIlI Pu% 3 +sauciness 'sOsIn@s L@% 3 +saucing 'sOsIN Hb$ 26A +saucy 'sOsI OD% 2 +sauerkraut 'saU@kraUt L@% 3 +sauna 'saUn@ K6% 2 +saunas 'saUn@z Kj% 2 +saunter 'sOnt@R I0%,K6% 22A,2C +sauntered 'sOnt@d Ic%,Id% 22A,2C +saunterer 'sOnt@r@R K6$ 3 +saunterers 'sOnt@r@z Kj$ 3 +sauntering 'sOnt@rIN Ib% 32A,2C +saunters 'sOnt@z Ia%,Kj% 22A,2C +saurian 'sOrI@n K6$,OA$ 3 +saurians 'sOrI@nz Kj$ 3 +sausage 's0sIdZ M6% 2 +sausage-dog 's0sIdZ-d0g K6% 3 +sausage-dogs 's0sIdZ-d0gz Kj% 3 +sausage-meat 's0sIdZ-mit L@% 3 +sausage-roll ,s0sIdZ-'r@Ul K6% 3 +sausage-rolls ,s0sIdZ-'r@Ulz Kj% 3 +sausages 's0sIdZIz Mj% 3 +saut_e 's@UteI H0%,OA% 2 +saut_eed 's@UteId Hc%,Hd% 2 +saut_eing 's@UteIIN Hb% 3 +saut_es 's@UteIz Ha% 2 +savage 's&vIdZ H2%,K6%,OA% 26A +savaged 's&vIdZd Hc%,Hd% 26A +savagely 's&vIdZlI Pu% 3 +savageness 's&vIdZn@s L@% 3 +savagery 's&vIdZrI L@% 3 +savages 's&vIdZIz Ha%,Kj% 36A +savaging 's&vIdZIN Hb% 36A +savanna s@'v&n@ K6% 3 +savannah s@'v&n@ K6% 3 +savannahs s@'v&n@z Kj$ 3 +savannas s@'v&n@z Kj$ 3 +savant 's&v@nt K6$ 2 +savants 's&v@nts Kj$ 2 +save seIv J2%,K6%,T-% 12A,2C,3A,6A,6D,12B,12C,13B,14,15B +saved seIvd Jc%,Jd% 12A,2C,3A,6A,6D,12B,12C,13B,14,15B +saveloy 's&v@loI M6% 3 +saveloys 's&v@loIz Mj% 3 +saver 'seIv@R K6% 2 +savers 'seIv@z Kj% 2 +saves seIvz Ja%,Kj% 12A,2C,3A,6A,6D,12B,12C,13B,14,15B +saving 'seIvIN Jb%,K6%,OA%,T-% 22A,2C,3A,6A,6D,12B,12C,13B,14,15B +savings 'seIvINz Kj% 2 +savings-bank 'seIvINz-b&Nk K6% 3 +savings-banks 'seIvINz-b&Nks Kj% 3 +saviour 'seIvI@R K6% 2 +saviours 'seIvI@z Kj% 2 +savoir-faire ,s&vwA-'fe@R L@% 3 +savory 'seIv@rI L@$ 3 +savour 'seIv@R J0%,M6% 23A,6A +savoured 'seIv@d Jc%,Jd% 23A,6A +savouries 'seIv@rIz Kj% 3 +savouring 'seIv@rIN Jb% 33A,6A +savours 'seIv@z Ja%,Mj% 23A,6A +savoury 'seIv@rI K8%,OA% 3 +savoy s@'voI M6$ 2 +savoys s@'voIz Mj$ 2 +savvy 's&vI I5%,L@% 2 +saw sO J0%,Jc*,K6% 12A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +saw-pit 'sO-pIt K6$ 2 +saw-pits 'sO-pIts Kj$ 2 +sawdust 'sOdVst L@% 2 +sawed sOd Jc%,Jd% 12A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +sawhorse 'sOhOs K6$ 2 +sawhorses 'sOhOsIz Kj$ 3 +sawing 'sOIN Jb% 22A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +sawmill 'sOmIl K6% 2 +sawmills 'sOmIlz Kj% 2 +sawn sOn Jd% 12A,2C,6A,15A,15B +saws sOz Ja%,Kj% 12A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +sawyer 'sOj@R K6% 2 +sawyers 'sOj@z Kj% 2 +sax s&ks K7% 1 +saxes 's&ksIz Kj% 2 +saxhorn 's&kshOn K6$ 2 +saxhorns 's&kshOnz Kj$ 2 +saxifrage 's&ksIfrIdZ L@% 3 +saxophone 's&ks@f@Un K6% 3 +saxophones 's&ks@f@Unz Kj% 3 +saxophonist s&k's0f@nIst K6% 4 +saxophonists s&k's0f@nIsts Kj% 4 +say seI J5*,Ki% 16A,9,10,14 +saying 'seIIN Jb%,K6% 26A,9,10,14 +sayings 'seIINz Kj% 2 +says sez Ja* 16A,9,10,14 +scab sk&b M6% 1 +scabbard 'sk&b@d K6$ 2 +scabbards 'sk&b@dz Kj$ 2 +scabbier 'sk&bI@R Or$ 3 +scabbiest 'sk&bIIst Os$ 3 +scabby 'sk&bI OD% 2 +scabies 'skeIbiz L@% 2 +scabious 'skeIbI@s L@$ 3 +scabrous 'skeIbr@s OA$ 2 +scabs sk&bz Mj% 1 +scaffold 'sk&f@Uld K6% 2 +scaffolding 'sk&f@ldIN L@% 3 +scaffolds 'sk&f@Uldz Kj% 2 +scalawag 'sk&l@w&g K6$ 3 +scalawags 'sk&l@w&gz Kj$ 3 +scald skOld H0%,K6% 16A +scalded 'skOldId Hc%,Hd% 26A +scalding 'skOldIN Hb% 26A +scalds skOldz Ha%,Kj% 16A +scale skeIl J2%,M6% 12B,2C,6A,15A,15B +scaled skeIld Jc%,Jd% 12B,2C,6A,15A,15B +scales skeIlz Ja%,Mj% 12B,2C,6A,15A,15B +scalier 'skeIlI@R Or% 3 +scaliest 'skeIlIIst Os% 3 +scaling 'skeIlIN Jb% 22B,2C,6A,15A,15B +scaling-ladder 'skeIlIN-l&d@R K6% 4 +scaling-ladders 'skeIlIN-l&d@z Kj% 4 +scallop 'sk0l@p H0$,K6% 26A +scallop-shell 'sk0l@p-Sel K6% 3 +scallop-shells 'sk0l@p-Selz Kj% 3 +scalloped 'sk0l@pt Hc$,Hd% 26A +scalloping 'sk0l@pIN Hb$ 36A +scallops 'sk0l@ps Ha$,Kj% 26A +scallywag 'sk&lIw&g K6% 3 +scallywags 'sk&lIw&gz Kj% 3 +scalp sk&lp H0%,K6% 16A +scalped sk&lpt Hc%,Hd% 16A +scalpel 'sk&lp@l K6% 2 +scalpels 'sk&lp@lz Kj% 2 +scalping 'sk&lpIN Hb% 26A +scalps sk&lps Ha%,Kj% 16A +scaly 'skeIlI OD% 2 +scamp sk&mp H0$,K6% 16A +scamped sk&mpt Hc$,Hd$ 16A +scamper 'sk&mp@R I0%,K6% 22A,2C +scampered 'sk&mp@d Ic%,Id% 22A,2C +scampering 'sk&mp@rIN Ib% 32A,2C +scampers 'sk&mp@z Ia%,Kj% 22A,2C +scampi 'sk&mpI Kj% 2 +scamping 'sk&mpIN Hb$ 26A +scamps sk&mps Ha$,Kj% 16A +scan sk&n J4% 12A,6A +scandal 'sk&ndl M6% 2 +scandalize 'sk&nd@laIz H2% 36A +scandalized 'sk&nd@laIzd Hc%,Hd% 36A +scandalizes 'sk&nd@laIzIz Ha% 46A +scandalizing 'sk&nd@laIzIN Hb% 46A +scandalmonger 'sk&ndl,mVNg@R K6% 4 +scandalmongering 'sk&ndl,mVNg@rIN L@% 5 +scandalmongers 'sk&ndl,mVNg@z Kj% 4 +scandalous 'sk&nd@l@s OA% 3 +scandalously 'sk&nd@l@slI Pu% 4 +scandals 'sk&ndlz Mj% 2 +scanned sk&nd Jc%,Jd% 12A,6A +scanner 'sk&n@R K6% 2 +scanners 'sk&n@z Kj% 2 +scanning 'sk&nIN Jb% 22A,6A +scans sk&nz Ja% 12A,6A +scansion 'sk&nSn L@% 2 +scant sk&nt H0$,OA% 16A +scanted 'sk&ntId Hc$,Hd$ 26A +scantier 'sk&ntI@R Or% 3 +scantiest 'sk&ntIIst Os% 3 +scantily 'sk&ntIlI Pu% 3 +scantiness 'sk&ntIn@s L@% 3 +scanting 'sk&ntIN Hb$ 26A +scantling 'sk&ntlIN K6$ 2 +scantlings 'sk&ntlINz Kj$ 2 +scants sk&nts Ha$ 16A +scanty 'sk&ntI OD% 2 +scapegoat 'skeIpg@Ut K6% 2 +scapegoats 'skeIpg@Uts Kj% 2 +scapegrace 'skeIpgreIs K6% 2 +scapegraces 'skeIpgreIsIz Kj$ 3 +scapula 'sk&pjUl@ K6% 3 +scapulas 'sk&pjUl@z Kj% 3 +scar skAR J4%,K6% 12C,6A +scarab 'sk&r@b K6$ 2 +scarabs 'sk&r@bz Kj$ 2 +scarce ske@s OB% 1 +scarcely 'ske@slI Pu% 2 +scarcer 'ske@s@R Or% 2 +scarcest 'ske@sIst Os% 2 +scarcities 'ske@sItIz Mj% 3 +scarcity 'ske@sItI M8% 3 +scare ske@R J2%,K6% 12A,6A,15A,15B +scarecrow 'ske@kr@U K6% 2 +scarecrows 'ske@kr@Uz Kj% 2 +scared ske@d Jc%,Jd% 12A,6A,15A,15B +scaremonger 'ske@mVNg@R K6% 3 +scaremongers 'ske@mVNg@z Kj% 3 +scares ske@z Ja%,Kj% 12A,6A,15A,15B +scarf skAf K6% 1 +scarf-pin 'skAf-pIn K6% 2 +scarf-pins 'skAf-pInz Kj% 2 +scarfs skAfs Kj$ 1 +scarier 'ske@rI@R Or% 3 +scariest 'ske@rIIst Os% 3 +scarified 'sk&rIfaId Hc$,Hd$ 36A +scarifies 'sk&rIfaIz Ha$ 36A +scarify 'sk&rIfaI H3$ 36A +scarifying 'sk&rIfaIIN Hb$ 46A +scaring 'ske@rIN Jb% 22A,6A,15A,15B +scarlet 'skAl@t M6%,OA% 2 +scarlets 'skAl@ts Mj$ 2 +scarp skAp K6$ 1 +scarper 'skAp@R I0% 22A +scarpered 'skAp@d Ic% 22A +scarpering 'skAp@rIN Ib% 32A +scarpers 'skAp@z Ia% 22A +scarps skAps Kj$ 1 +scarred skAd Jc%,Jd% 12C,6A +scarring 'skArIN Jb% 22C,6A +scars skAz Ja%,Kj% 12C,6A +scarves skAvz Kj% 1 +scary 'ske@rI OD% 2 +scat sk&t W-$ 1 +scathing 'skeIDIN OA% 2 +scathingly 'skeIDINlI Pu% 3 +scatter 'sk&t@R J0%,K6% 22A,2C,6A,15A,15B +scatterbrain 'sk&t@breIn K6% 3 +scatterbrained 'sk&t@breInd OA% 3 +scatterbrains 'sk&t@breInz Kj% 3 +scattered 'sk&t@d Jc%,Jd%,OA% 22A,2C,6A,15A,15B +scattering 'sk&t@rIN Jb% 32A,2C,6A,15A,15B +scatters 'sk&t@z Ja%,Kj% 22A,2C,6A,15A,15B +scattier 'sk&tI@R Or% 3 +scattiest 'sk&tIIst Os% 3 +scatty 'sk&tI OD% 2 +scavenge 'sk&vIndZ I2% 22A,3A +scavenged 'sk&vIndZd Ic%,Id% 22A,3A +scavenger 'sk&vIndZ@R K6% 3 +scavengers 'sk&vIndZ@z Kj% 3 +scavenges 'sk&vIndZIz Ia% 32A,3A +scavenging 'sk&vIndZIN Ib% 32A,3A +scenario sI'nArI@U K6% 4 +scenarios sI'nArI@Uz Kj% 4 +scenarist sI'nArIst K6$ 3 +scenarists sI'nArIsts Kj$ 3 +scene sin K6% 1 +scene-painter 'sin-peInt@R K6% 3 +scene-painters 'sin-peInt@z Kj% 3 +scene-shifter 'sin-SIft@R K6% 3 +scene-shifters 'sin-SIft@z Kj% 3 +scenery 'sin@rI L@% 3 +scenes sinz Kj% 1 +scenic 'sinIk OA% 2 +scenically 'sinIklI Pu% 3 +scent sent H0%,M6% 16A +scented 'sentId Hc%,Hd% 26A +scenting 'sentIN Hb% 26A +scentless 'sentl@s OA$ 2 +scents sents Ha%,Mj% 16A +sceptered 'sept@d OA$ 2 +sceptic 'skeptIk K6% 2 +sceptical 'skeptIkl OA% 3 +sceptically 'skeptIklI Pu% 3 +scepticism 'skeptIsIz@m L@% 4 +sceptics 'skeptIks Kj% 2 +sceptre 'sept@R K6% 2 +sceptred 'sept@d OA% 2 +sceptres 'sept@z Kj% 2 +schedule 'Sedjul H2%,K6% 26A,7A,14 +scheduled 'Sedjuld Hc%,Hd% 26A,7A,14 +schedules 'Sedjulz Ha%,Kj% 26A,7A,14 +scheduling 'SedjulIN Hb% 36A,7A,14 +schema 'skim@ K6$ 2 +schemas 'skim@z Kj$ 2 +schemata 'skim@t@ Kj$ 3 +schematic skI'm&tIk OA% 3 +schematically skI'm&tIklI Pu% 4 +scheme skim J2%,K6% 12A,3A,4A,6A +schemed skimd Jc%,Jd% 12A,3A,4A,6A +schemer 'skim@R K6% 2 +schemers 'skim@z Kj% 2 +schemes skimz Ja%,Kj% 12A,3A,4A,6A +scheming 'skimIN Jb% 22A,3A,4A,6A +scherzo 'ske@ts@U K6$ 2 +scherzos 'ske@ts@Uz Kj$ 2 +schism 'skIz@m M6% 2 +schismatic skIz'm&tIk OA$ 3 +schisms 'skIz@mz Mj$ 2 +schist SIst K6$ 1 +schists SIsts Kj$ 1 +schizoid 'skItsoId OA% 2 +schizophrenia ,skIts@U'frinI@ L@% 5 +schizophrenic ,skIts@U'frenIk K6%,OA% 4 +schizophrenics ,skIts@U'frenIks Kj% 4 +schmaltz SmOlts L@% 1 +schmaltzier 'SmOltsI@R Or% 3 +schmaltziest 'SmOltsIIst Os% 3 +schmaltzy 'SmOltsI OD% 2 +schmalz SmOlts L@$ 1 +schmalzier 'smOltsI@R Or$ 3 +schmalziest 'smOltsIIst Os$ 3 +schmalzy 'smOltsI OD$ 2 +schnapps Sn&ps L@% 1 +schnitzel 'SnItsl M6% 2 +schnitzels 'SnItslz Mj$ 2 +schnorkel 'SnOkl K6$ 2 +schnorkels 'SnOklz Kj$ 2 +scholar 'sk0l@R K6% 2 +scholarly 'sk0l@lI OA% 3 +scholars 'sk0l@z Kj% 2 +scholarship 'sk0l@SIp M6% 3 +scholarships 'sk0l@SIps Mj% 3 +scholastic sk@'l&stIk OA% 3 +scholasticism sk@'l&stIsIz@m L@% 5 +school skul H0%,M6* 16A,15A +school-board 'skul-bOd K6% 2 +school-boards 'skul-bOdz Kj% 2 +schoolbook 'skulbUk K6% 2 +schoolbooks 'skulbUks Kj% 2 +schoolboy 'skulboI K6% 2 +schoolboys 'skulboIz Kj% 2 +schoolchild 'skultSaIld Ki% 2 +schoolchildren 'skultSIldr@n Kj% 3 +schooldays 'skuldeIz Kj% 2 +schooled skuld Hc%,Hd% 16A,15A +schoolfellow 'skulfel@U K6% 3 +schoolfellows 'skulfel@Uz Kj% 3 +schoolfriend 'skulfrend K6% 2 +schoolfriends 'skulfrendz Kj% 2 +schoolgirl 'skulg3l K6% 2 +schoolgirls 'skulg3lz Kj% 2 +schoolhouse 'skulhaUs K6% 2 +schoolhouses 'skulhaUzIz Kj% 3 +schooling 'skulIN Hb%,L@% 26A,15A +schoolman 'skulm&n Ki$ 2 +schoolmaster 'skulmAst@R K6% 3 +schoolmasters 'skulmAst@z Kj% 3 +schoolmate 'skulmeIt K6% 2 +schoolmates 'skulmeIts Kj% 2 +schoolmen 'skulmen Kj$ 2 +schoolmistress 'skulmIstrIs K7% 3 +schoolmistresses 'skulmIstrIsIz Kj% 4 +schoolroom 'skulrum K6% 2 +schoolrooms 'skulrumz Kj% 2 +schools skulz Ha%,Mj% 16A,15A +schoolteacher 'skultitS@R K6% 3 +schoolteachers 'skultitS@z Kj% 3 +schooltime 'skultaIm M6% 2 +schooltimes 'skultaImz Mj% 2 +schooner 'skun@R K6% 2 +schooners 'skun@z Kj% 2 +schottische S0'tiS K6$ 2 +schottisches S0'tiSIz Kj$ 3 +schwa SwA K6$ 1 +schwas SwAz Kj$ 1 +sciatic saI'&tIk OA$ 3 +sciatica saI'&tIk@ L@% 4 +science 'saI@ns M6% 2 +sciences 'saI@nsIz Mj% 3 +scientific ,saI@n'tIfIk OA% 4 +scientifically ,saI@n'tIfIklI Pu% 5 +scientist 'saI@ntIst K6% 3 +scientists 'saI@ntIsts Kj% 3 +scimitar 'sImIt@R K6$ 3 +scimitars 'sImIt@z Kj$ 3 +scintilla sIn'tIl@ K6$ 3 +scintillas sIn'tIl@z Kj$ 3 +scintillate 'sIntIleIt I2% 32A +scintillated 'sIntIleItId Ic%,Id% 42A +scintillates 'sIntIleIts Ia% 32A +scintillating 'sIntIleItIN Ib% 42A +scintillation ,sIntI'leISn K6% 4 +scintillations ,sIntI'leISnz Kj$ 4 +scion 'saI@n K6$ 2 +scions 'saI@nz Kj$ 2 +scissors 'sIz@z Kj% 2 +sclerosis skl@'r@UsIs L@% 3 +scoff sk0f J0%,K6% 12A,3A +scoffed sk0ft Jc%,Jd% 12A,3A +scoffer 'sk0f@R K6% 2 +scoffers 'sk0f@z Kj% 2 +scoffing 'sk0fIN Jb% 22A,3A +scoffingly 'sk0fINlI Pu% 3 +scoffs sk0fs Ja%,Kj% 12A,3A +scold sk@Uld J0%,K6% 12A,6A,14 +scolded 'sk@UldId Jc%,Jd% 22A,6A,14 +scolding 'sk@UldIN Jb%,K6% 22A,6A,14 +scoldings 'sk@UldINz Kj% 2 +scolds sk@Uldz Ja%,Kj% 12A,6A,14 +scollop 'sk0l@p H0$,K6$ 2 +scolloped 'sk0l@pt Hc$,Hd$ 2 +scolloping 'sk0l@pIN Hb$ 3 +scollops 'sk0l@ps Ha$,Kj$ 2 +sconce sk0ns K6$ 1 +sconces 'sk0nsIz Kj$ 2 +scone sk0n K6% 1 +scones sk0nz Kj% 1 +scoop skup H0%,K6% 16A,15B +scooped skupt Hc%,Hd% 16A,15B +scoopful 'skupfUl K6% 2 +scoopfuls 'skupfUlz Kj% 2 +scooping 'skupIN Hb% 26A,15B +scoops skups Ha%,Kj% 16A,15B +scoot skut I0% 1 +scooted 'skutId Ic%,Id% 2 +scooter 'skut@R K6% 2 +scooters 'skut@z Kj% 2 +scooting 'skutIN Ib% 2 +scoots skuts Ia% 1 +scope sk@Up L@% 1 +scorbutic skO'bjutIk OA$ 3 +scorch skOtS J1%,K7% 12A,2C,6A +scorched skOtSt Jc%,Jd% 12A,2C,6A +scorcher 'skOtS@R K6% 2 +scorchers 'skOtS@z Kj% 2 +scorches 'skOtSIz Ja%,Kj% 22A,2C,6A +scorching 'skOtSIN Jb%,OA%,Pu% 22A,2C,6A +score skOR J2%,K6% 12A,3A,6A,15A,15B +scoreboard 'skObOd K6% 2 +scoreboards 'skObOdz Kj% 2 +scorebook 'skObUk K6% 2 +scorebooks 'skObUks Kj% 2 +scorecard 'skOkAd K6% 2 +scorecards 'skOkAdz Kj% 2 +scored skOd Jc%,Jd% 12A,3A,6A,15A,15B +scorer 'skOr@R K6% 2 +scorers 'skOr@z Kj% 2 +scores skOz Ja%,Kj% 12A,3A,6A,15A,15B +scoring 'skOrIN Jb% 22A,3A,6A,15A,15B +scorn skOn H0%,L@% 16A,6D,7A +scorned skOnd Hc%,Hd% 16A,6D,7A +scornful 'skOnf@l OA% 2 +scornfully 'skOnf@lI Pu% 3 +scorning 'skOnIN Hb% 26A,6D,7A +scorns skOnz Ha% 16A,6D,7A +scorpion 'skOpI@n K6% 3 +scorpions 'skOpI@nz Kj% 3 +scot sk0t K6$ 1 +scot-free ,sk0t-'fri Pu% 2 +scotch sk0tS H1%,M7% 16A +scotched sk0tSt Hc%,Hd% 16A +scotches 'sk0tSIz Ha$,Mj$ 26A +scotching 'sk0tSIN Hb$ 26A +scots sk0ts Kj$ 1 +scoundrel 'skaUndr@l K6% 2 +scoundrelly 'skaUndr@lI OA$ 3 +scoundrels 'skaUndr@lz Kj% 2 +scour 'skaU@R J0%,K6% 22C,6A,15A,15B +scoured 'skaU@d Jc%,Jd% 22C,6A,15A,15B +scourer 'skaU@r@R K6% 3 +scourers 'skaU@r@z Kj% 3 +scourge sk3dZ H2%,K6% 16A +scourged sk3dZd Hc%,Hd% 16A +scourges 'sk3dZIz Ha%,Kj% 26A +scourging 'sk3dZIN Hb% 26A +scouring 'skaU@rIN Jb% 32C,6A,15A,15B +scours 'skaU@z Ja%,Kj% 22C,6A,15A,15B +scout skaUt J0%,K6% 12C,6A +scouted 'skaUtId Jc%,Jd% 22C,6A +scouting 'skaUtIN Jb% 22C,6A +scoutmaster 'skaUtmAst@R K6% 3 +scoutmasters 'skaUtmAst@z Kj% 3 +scouts skaUts Ja%,Kj% 12C,6A +scow skaU K6$ 1 +scowl skaUl I0%,K6% 12A,3A +scowled skaUld Ic%,Id% 12A,3A +scowling 'skaUlIN Ib% 22A,3A +scowls skaUlz Ia%,Kj% 12A,3A +scows skaUz Kj$ 1 +scrabble 'skr&bl I2%,M6% 22A,2C +scrabbled 'skr&bld Ic%,Id% 22A,2C +scrabbles 'skr&blz Ia%,Mj% 22A,2C +scrabbling 'skr&blIN Ib% 22A,2C +scrag skr&g H4$,K6$ 1 +scrag-end skr&g-'end K6% 2 +scrag-ends skr&g-'endz Kj% 2 +scragged skr&gd Hc$,Hd$ 1 +scraggier 'skr&gI@R Or$ 3 +scraggiest 'skr&gIIst Os$ 3 +scragging 'skr&gIN Hb$ 2 +scraggy 'skr&gI OD$ 2 +scrags skr&gz Ha$,Kj$ 1 +scram skr&m I4% 1 +scramble 'skr&mbl J2%,K6% 22A,2C,3A,4A,6A +scrambled 'skr&mbld Jc%,Jd% 22A,2C,3A,4A,6A +scrambler 'skr&mbl@R K6% 2 +scramblers 'skr&mbl@z Kj% 2 +scrambles 'skr&mblz Ja%,Kj% 22A,2C,3A,4A,6A +scrambling 'skr&mblIN Jb% 22A,2C,3A,4A,6A +scrammed skr&md Ic$,Id$ 1 +scramming 'skr&mIN Ib$ 2 +scrams skr&mz Ia$ 1 +scrap skr&p H4%,M6% 16A +scrap-iron skr&p-'aI@n L@% 3 +scrapbook 'skr&pbUk K6% 2 +scrapbooks 'skr&pbUks Kj% 2 +scrape skreIp J2%,K6% 12C,3A,6A,14,15A,15B,22 +scraped skreIpt Jc%,Jd% 12C,3A,6A,14,15A,15B,22 +scraper 'skreIp@R K6% 2 +scrapers 'skreIp@z Kj% 2 +scrapes skreIps Ja%,Kj% 12C,3A,6A,14,15A,15B,22 +scrapheap 'skr&phip K6% 2 +scrapheaps 'skr&phips Kj% 2 +scraping 'skreIpIN Jb%,K6% 22C,3A,6A,14,15A,15B,22 +scrapings 'skreIpINz Kj% 2 +scrapped skr&pt Hc%,Hd% 16A +scrappier 'skr&pI@R Or% 3 +scrappiest 'skr&pIIst Os% 3 +scrappily 'skr&pIlI Pu% 3 +scrappiness 'skr&pIn@s L@$ 3 +scrapping 'skr&pIN Hb% 26A +scrappy 'skr&pI OD% 2 +scraps skr&ps Ha%,Mj% 16A +scratch skr&tS J1%,K7% 12A,2C,6A,15B +scratch-pad 'skr&tS-p&d K6% 2 +scratch-pads 'skr&tS-p&dz Kj% 2 +scratch-race 'skr&tS-reIs K6% 2 +scratch-races 'skr&tS-reIsIz Kj% 3 +scratched skr&tSt Jc%,Jd% 12A,2C,6A,15B +scratches 'skr&tSIz Ja%,Kj% 22A,2C,6A,15B +scratchier 'skr&tSI@R Or% 3 +scratchiest 'skr&tSIIst Os% 3 +scratching 'skr&tSIN Jb% 22A,2C,6A,15B +scratchy 'skr&tSI OD% 2 +scrawl skrOl J0%,K6% 12A,2C,6A +scrawled skrOld Jc%,Jd% 12A,2C,6A +scrawling 'skrOlIN Jb% 22A,2C,6A +scrawls skrOlz Ja%,Kj% 12A,2C,6A +scrawnier 'skrOnI@R Or% 3 +scrawniest 'skrOnIIst Os% 3 +scrawny 'skrOnI OD% 2 +scream skrim J0%,K6% 12A,2C,6A,15A,15B,22 +screamed skrimd Jc%,Jd% 12A,2C,6A,15A,15B,22 +screaming 'skrimIN Jb% 22A,2C,6A,15A,15B,22 +screamingly 'skrimINlI Pu% 3 +screams skrimz Ja%,Kj% 12A,2C,6A,15A,15B,22 +scree skri M6$ 1 +screech skritS J1%,K7% 12A,2C,6A,15A,15B +screech-owl 'skritS-aUl K6% 2 +screech-owls 'skritS-aUlz Kj% 2 +screeched skritSt Jc%,Jd% 12A,2C,6A,15A,15B +screeches 'skritSIz Ja%,Kj% 22A,2C,6A,15A,15B +screeching 'skritSIN Jb% 22A,2C,6A,15A,15B +screed skrid K6$ 1 +screeds skridz Kj$ 1 +screen skrin J0%,K6% 12C,6A,14,15A,15B +screened skrind Jc%,Jd% 12C,6A,14,15A,15B +screening 'skrinIN Jb% 22C,6A,14,15A,15B +screens skrinz Ja%,Kj% 12C,6A,14,15A,15B +screes skriz Mj$ 1 +screw skru J0%,M6% 12A,6A,15A,15B +screw-topped 'skru-t0pt OA% 2 +screwball 'skrubOl K6%,OA% 2 +screwballs 'skrubOlz Kj% 2 +screwdriver 'skrudraIv@R K6% 3 +screwdrivers 'skrudraIv@z Kj% 3 +screwed skrud Jc%,Jd% 12A,6A,15A,15B +screwier 'skruI@R Or% 3 +screwiest 'skruIIst Os% 3 +screwing 'skruIN Jb% 22A,6A,15A,15B +screws skruz Ja%,Mj% 12A,6A,15A,15B +screwy 'skruI OD% 2 +scribble 'skrIbl J2%,M6% 22A,6A +scribbled 'skrIbld Jc%,Jd% 22A,6A +scribbler 'skrIbl@R K6% 2 +scribblers 'skrIbl@z Kj% 2 +scribbles 'skrIblz Ja%,Mj% 22A,6A +scribbling 'skrIblIN Jb% 22A,6A +scribbling-block 'skrIblIN-bl0k K6% 3 +scribbling-blocks 'skrIblIN-bl0ks Kj% 3 +scribe skraIb K6% 1 +scribes skraIbz Kj% 1 +scrimmage 'skrImIdZ J2$,K6% 2 +scrimmaged 'skrImIdZd Jc$,Jd$ 2 +scrimmages 'skrImIdZIz Ja$,Kj$ 3 +scrimmaging 'skrImIdZIN Jb$ 3 +scrimp skrImp J0% 1 +scrimped skrImpt Jc%,Jd% 1 +scrimping 'skrImpIN Jb% 2 +scrimps skrImps Ja% 1 +scrimshank 'skrImS&Nk I0$ 2 +scrimshanked 'skrImS&Nkt Ic$,Id$ 2 +scrimshanker 'skrImS&Nk@R K6$ 3 +scrimshankers 'skrImS&Nk@z Kj$ 3 +scrimshanking 'skrImS&NkIN Ib$ 3 +scrimshanks 'skrImS&Nks Ia$ 2 +scrip skrIp M6$ 1 +scrips skrIps Mj$ 1 +script skrIpt M6% 1 +scripted 'skrIptId OA% 2 +scripts skrIpts Mj% 1 +scriptural 'skrIptS@r@l OA% 3 +scripture 'skrIptS@R K6% 2 +scriptures 'skrIptS@z Kj% 2 +scriptwriter 'skrIptraIt@R K6% 3 +scriptwriters 'skrIptraIt@z Kj% 3 +scrivener 'skrIv@n@R K6$ 3 +scriveners 'skrIv@n@z Kj$ 3 +scrofula 'skr0fjUl@ L@$ 3 +scrofulous 'skr0fjUl@s OA$ 3 +scroll skr@Ul K6% 1 +scrolls skr@Ulz Kj% 1 +scrotum 'skr@Ut@m K6% 2 +scrotums 'skr@Ut@mz Kj$ 2 +scrounge skraUndZ J2% 12A,6A +scrounged skraUndZd Jc%,Jd% 12A,6A +scrounger 'skraUndZ@R K6% 2 +scroungers 'skraUndZ@z Kj% 2 +scrounges 'skraUndZIz Ja% 22A,6A +scrounging 'skraUndZIN Jb% 22A,6A +scrub skrVb J4%,M6% 12A,2C,6A,15B,22 +scrubbed skrVbd Jc%,Jd% 12A,2C,6A,15B,22 +scrubbier 'skrVbI@R Or$ 3 +scrubbiest 'skrVbIIst Os$ 3 +scrubbing 'skrVbIN Jb% 22A,2C,6A,15B,22 +scrubbing-brush 'skrVbIN-brVS K7% 3 +scrubbing-brushes 'skrVbIN-brVSIz Kj% 4 +scrubby 'skrVbI OD% 2 +scrubs skrVbz Ja%,Mj% 12A,2C,6A,15B,22 +scruff skrVf K6% 1 +scruffier 'skrVfI@R Or% 3 +scruffiest 'skrVfIIst Os% 3 +scruffs skrVfs Kj% 1 +scruffy 'skrVfI OD% 2 +scrum skrVm K6% 1 +scrummage 'skrVmIdZ K6% 2 +scrummages 'skrVmIdZIz Kj% 3 +scrumptious 'skrVmpS@s OA% 2 +scrums skrVmz Kj% 1 +scrunch skrVntS H1$,K7$ 1 +scrunched skrVntSt Hc$,Hd$ 1 +scrunches 'skrVntSIz Ha$,Kj$ 2 +scrunching 'skrVntSIN Hb$ 2 +scruple 'skrupl I2%,M6% 24C +scrupled 'skrupld Ic%,Id% 24C +scruples 'skruplz Ia%,Mj% 24C +scrupling 'skruplIN Ib% 24C +scrupulous 'skrupjUl@s OA% 3 +scrupulously 'skrupjUl@slI Pu% 4 +scrutineer ,skrutI'nI@R K6% 3 +scrutineers ,skrutI'nI@z Kj% 3 +scrutinies 'skrutInIz Mj% 3 +scrutinize 'skrutInaIz H2% 36A +scrutinized 'skrutInaIzd Hc%,Hd% 36A +scrutinizes 'skrutInaIzIz Ha% 46A +scrutinizing 'skrutInaIzIN Hb% 46A +scrutiny 'skrutInI M8% 3 +scud skVd I4$,M6$ 12A,2C +scudded 'skVdId Ic$,Id$ 22A,2C +scudding 'skVdIN Ib$ 22A,2C +scuds skVdz Ia$,Mj$ 12A,2C +scuff skVf J0% 12A,2C,6A,15A,15B +scuffed skVft Jc%,Jd% 12A,2C,6A,15A,15B +scuffing 'skVfIN Jb% 22A,2C,6A,15A,15B +scuffle 'skVfl I2% 22A,2C +scuffled 'skVfld Ic%,Id% 22A,2C +scuffles 'skVflz Ia% 22A,2C +scuffling 'skVflIN Ib% 22A,2C +scuffs skVfs Ja% 12A,2C,6A,15A,15B +scull skVl J0%,K6% 12A,6A +sculled skVld Jc%,Jd% 12A,6A +sculler 'skVl@R K6% 2 +sculleries 'skVl@rIz Kj% 3 +scullers 'skVl@z Kj% 2 +scullery 'skVl@rI K8% 3 +sculling 'skVlIN Jb% 22A,6A +scullion 'skVlI@n K6$ 3 +scullions 'skVlI@nz Kj$ 3 +sculls skVlz Ja%,Kj% 12A,6A +sculpt skVlpt J0% 1 +sculpted 'skVlptId Jc%,Jd% 2 +sculpting 'skVlptIN Jb% 2 +sculptor 'skVlpt@R K6% 2 +sculptors 'skVlpt@z Kj% 2 +sculptress 'skVlptrIs K7% 2 +sculptresses 'skVlptrIsIz Kj% 3 +sculpts skVlpts Ja% 1 +sculptural 'skVlptS@r@l OA% 3 +sculpture 'skVlptS@R J2%,M6% 22A,6A +sculptured 'skVlptS@d Jc%,Jd% 22A,6A +sculptures 'skVlptS@z Ja%,Mj% 22A,6A +sculpturing 'skVlptS@rIN Jb% 32A,6A +scum skVm L@% 1 +scummier 'skVmI@R Or$ 3 +scummiest 'skVmIIst Os$ 3 +scummy 'skVmI OD% 2 +scupper 'skVp@R H0$,K6$ 2 +scuppered 'skVp@d Hc$,Hd% 2 +scuppering 'skVp@rIN Hb$ 3 +scuppers 'skVp@z Ha$,Kj$ 2 +scurf sk3f L@% 1 +scurfier 'sk3fI@R Or$ 3 +scurfiest 'sk3fIIst Os$ 3 +scurfy 'sk3fI OD% 2 +scurried 'skVrId Ic%,Id% 22A,2C,3A +scurries 'skVrIz Ia%,Mj% 22A,2C,3A +scurrility sk@'rIlItI L@$ 4 +scurrilous 'skVrIl@s OA% 3 +scurrilously 'skVrIl@slI Pu% 4 +scurry 'skVrI I3%,M8% 22A,2C,3A +scurrying 'skVrIIN Ib% 32A,2C,3A +scurvily 'sk3vIlI Pu% 3 +scurvy 'sk3vI L@%,OA% 2 +scut skVt K6$ 1 +scutcheon 'skVtS@n K6$ 2 +scutcheons 'skVtS@nz Kj$ 2 +scuts skVts Kj$ 1 +scuttle 'skVtl J2%,K6% 22A,2C,6A +scuttled 'skVtld Jc%,Jd% 22A,2C,6A +scuttles 'skVtlz Ja%,Kj% 22A,2C,6A +scuttling 'skVtlIN Jb% 22A,2C,6A +scythe saID H2%,K6% 16A,15A +scythed saIDd Hc%,Hd% 16A,15A +scythes saIDz Ha%,Kj% 16A,15A +scything 'saIDIN Hb% 26A,15A +sea si M6% 1 +sea-anemone ,si-@'nem@nI K6% 5 +sea-anemones ,si-@'nem@nIz Kj% 5 +sea-animal 'si-&nIml K6% 4 +sea-animals 'si-&nImlz Kj% 4 +sea-bathing 'si-beIDIN L@% 3 +sea-boat 'si-b@Ut K6% 2 +sea-boats 'si-b@Uts Kj% 2 +sea-bream 'si-brim K9% 2 +sea-breeze si-'briz K6% 2 +sea-breezes si-'brizIz Kj% 3 +sea-coal 'si-k@Ul L@$ 2 +sea-cow 'si-kaU K6$ 2 +sea-cows 'si-kaUz Kj$ 2 +sea-dog 'si-d0g K6% 2 +sea-dogs 'si-d0gz Kj% 2 +sea-fish 'si-fIS K9% 2 +sea-fishes 'si-fISIz Kj% 3 +sea-girt 'si-g3t OA$ 2 +sea-god 'si-g0d K6% 2 +sea-gods 'si-g0dz Kj% 2 +sea-green si-'grin L@%,OA% 2 +sea-horse 'si-hOs K6% 2 +sea-horses 'si-hOsIz Kj% 3 +sea-legs 'si-legz Kj% 2 +sea-level 'si-levl Ki% 3 +sea-lion 'si-laI@n K6% 3 +sea-lions 'si-laI@nz Kj% 3 +sea-power 'si-paU@R L@% 3 +sea-rover 'si-r@Uv@R K6$ 3 +sea-rovers 'si-r@Uv@z Kj$ 3 +sea-snake 'si-sneIk K6% 2 +sea-snakes 'si-sneIks Kj% 2 +sea-urchin 'si-3tSIn K6% 3 +sea-urchins 'si-3tSInz Kj% 3 +sea-wall si-'wOl K6% 2 +sea-walls si-'wOlz Kj% 2 +sea-water 'si-wOt@R L@% 3 +seabed 'sibed K6% 2 +seabeds 'sibedz Kj$ 2 +seabird 'sib3d K6% 2 +seabirds 'sib3dz Kj% 2 +seaboard 'sibOd K6% 2 +seaboards 'sibOdz Kj$ 2 +seaborne 'sibOn OA% 2 +seafarer 'sife@r@R K6% 3 +seafarers 'sife@r@z Kj% 3 +seafaring 'sife@rIN OA% 3 +seafood 'sifud M6% 2 +seafoods 'sifudz Mj% 2 +seafront 'sifrVnt K6% 2 +seafronts 'sifrVnts Kj$ 2 +seagoing 'sig@UIN OA% 3 +seagull 'sigVl K6% 2 +seagulls 'sigVlz Kj% 2 +seakale 'sikeIl L@$ 2 +seal sil J0%,K6% 12A,6A,15A,15B +seal-ring 'sil-rIN K6$ 2 +seal-rings 'sil-rINz Kj$ 2 +sealed sild Jc%,Jd% 12A,6A,15A,15B +sealer 'sil@R K6$ 2 +sealers 'sil@z Kj$ 2 +sealing 'silIN Jb% 22A,6A,15A,15B +sealing-wax 'silIN-w&ks L@% 3 +seals silz Ja%,Kj% 12A,6A,15A,15B +sealskin 'silskIn M6% 2 +sealskins 'silskInz Mj% 2 +seam sim H0%,K6% 1 +seaman 'sim@n Ki% 2 +seamanlike 'sim@nlaIk OA% 3 +seamanship 'sim@nSIp L@% 3 +seamed simd Hc%,Hd% 1 +seamen 'sim@n Kj% 2 +seamier 'simI@R Or% 3 +seamiest 'simIIst Os% 3 +seaming 'simIN Hb$ 2 +seamless 'siml@s OA% 2 +seams simz Ha$,Kj% 1 +seamstress 'simstrIs K7% 2 +seamstresses 'simstrIsIz Kj% 3 +seamy 'simI OD% 2 +seaplane 'sipleIn K6% 2 +seaplanes 'sipleInz Kj% 2 +seaport 'sipOt K6% 2 +seaports 'sipOts Kj% 2 +sear sI@R H0$,OA$ 16A +search s3tS J1%,M7% 12A,3A,6A,14,15A,15B +search-parties 's3tS-pAtIz Kj% 3 +search-party 's3tS-pAtI K8% 3 +search-warrant 's3tS-w0r@nt K6% 3 +search-warrants 's3tS-w0r@nts Kj% 3 +searched s3tSt Jc%,Jd% 12A,3A,6A,14,15A,15B +searcher 's3tS@R K6% 2 +searchers 's3tS@z Kj% 2 +searches 's3tSIz Ja%,Mj% 22A,3A,6A,14,15A,15B +searching 's3tSIN Jb%,OA% 22A,3A,6A,14,15A,15B +searchingly 's3tSINlI Pu% 3 +searchlight 's3tSlaIt K6% 2 +searchlights 's3tSlaIts Kj% 2 +seared sI@d Hc$,Hd$ 16A +searing 'sI@rIN Hb% 26A +searing-iron 'se@rIN-aI@n K6$ 4 +searing-irons 'se@rIN-aI@nz Kj$ 4 +sears sI@z Ha$ 16A +seas siz Mj% 1 +seascape 'siskeIp K6% 2 +seascapes 'siskeIps Kj% 2 +seashell 'siSel K6% 2 +seashells 'siSelz Kj% 2 +seashore 'siSOR K6% 2 +seashores 'siSOz Kj% 2 +seasick 'sisIk OA% 2 +seasickness 'sisIkn@s L@% 3 +seaside 'sisaId K6% 2 +seasides 'sisaIdz Kj$ 2 +season 'sizn J0%,K6% 22A,6A,14 +season-ticket 'sizn-tIkIt K6% 4 +season-tickets 'sizn-tIkIts Kj% 4 +seasonable 'sizn@bl OA% 3 +seasonal 'siz@nl OA% 3 +seasonally 'siz@n@lI Pu% 4 +seasoned 'siznd Jc%,Jd% 22A,6A,14 +seasoning 'siznIN Jb%,M6% 32A,6A,14 +seasonings 'siznINz Mj% 3 +seasons 'siznz Ja%,Kj% 22A,6A,14 +seat sit H0%,K6% 16A +seat-belt 'sit-belt K6% 2 +seat-belts 'sit-belts Kj% 2 +seated 'sitId Hc%,Hd% 26A +seating 'sitIN Hb% 26A +seating-room 'sitIN-rum L@$ 3 +seats sits Ha%,Kj% 16A +seaward 'siw@d OA% 2 +seawards 'siw@dz Pu% 2 +seaway 'siweI K6% 2 +seaways 'siweIz Kj% 2 +seaweed 'siwid M6% 2 +seaweeds 'siwidz Mj$ 2 +seaworthiness 'siw3DInIs L@% 4 +seaworthy 'siw3DI OA% 3 +sec sek K6$ 1 +secateurs 'sek@t3z Kj% 3 +secede sI'sid I2% 22A,3A +seceded sI'sidId Ic%,Id% 32A,3A +secedes sI'sidz Ia% 22A,3A +seceding sI'sidIN Ib% 32A,3A +secession sI'seSn M6% 3 +secessionist sI'seS@nIst K6% 4 +secessionists sI'seS@nIsts Kj% 4 +secessions sI'seSnz Mj$ 3 +seclude sI'klud H2$ 26A,14,15A +secluded sI'kludId Hc$,Hd%,OA% 36A,14,15A +secludes sI'kludz Ha$ 26A,14,15A +secluding sI'kludIN Hb$ 36A,14,15A +seclusion sI'kluZn L@% 3 +second 'sek@nd H0%,K6*,OA*,Pu* 26A +second sI'k0nd H0% 26A,15A +second-best 'sek@nd-best Ki%,OA%,Pu% 3 +second-class 'sek@nd-klAs L@%,OA%,Pu% 3 +second-hand 'sek@nd-h&nd K6$,OA% 3 +second-hands 'sek@nd-h&ndz Kj$ 3 +second-rate 'sek@nd-reIt OA% 3 +second-rater ,sek@nd-'reIt@R K6% 4 +second-raters ,sek@nd-'reIt@z Kj% 4 +second-sighted ,sek@nd-'saItId OA% 4 +secondarily 'sek@ndrIlI Pu% 4 +secondary 'sek@ndrI OA% 3 +seconded 'sek@ndId Hc%,Hd% 36A +seconded sI'k0ndId Hc%,Hd% 36A,15A +seconder 'sek@nd@R K6% 3 +seconders 'sek@nd@z Kj% 3 +seconding 'sek@ndIN Hb% 36A +seconding sI'k0ndIN Hb% 36A,15A +secondly 'sek@ndlI Pu% 3 +secondment sI'k0ndm@nt K6% 3 +secondments sI'k0ndm@nts Kj% 3 +seconds 'sek@ndz Ha%,Kj% 26A +seconds sI'k0ndz Ha% 26A,15A +secrecy 'sikr@sI L@% 3 +secret 'sikrIt M6%,OA% 2 +secretarial ,sekr@'te@rI@l OA% 5 +secretariat ,sekr@'te@rI@t K6% 5 +secretariats ,sekr@'te@rI@ts Kj% 5 +secretaries 'sekr@trIz Kj% 3 +secretary 'sekr@trI K8% 3 +secrete sI'krit H2% 26A +secreted sI'kritId Hc%,Hd% 36A +secretes sI'krits Ha% 26A +secreting sI'kritIN Hb% 36A +secretion sI'kriSn M6% 3 +secretions sI'kriSnz Mj% 3 +secretive 'sikr@tIv OA% 3 +secretively 'sikr@tIvlI Pu% 4 +secretiveness 'sikr@tIvn@s L@% 4 +secretly 'sikrItlI Pu% 3 +secrets 'sikrIts Mj% 2 +secs seks Kj$ 1 +sect sekt K6% 1 +sectarian sek'te@rI@n K6$,OA% 4 +sectarianism sek'te@rI@nIz@m L@% 6 +sectarians sek'te@rI@nz Kj$ 4 +section 'sekSn K6% 2 +sectional 'sekS@nl OA$ 3 +sectionalism 'sekS@n@lIz@m L@$ 5 +sections 'sekSnz Kj% 2 +sector 'sekt@R K6% 2 +sectors 'sekt@z Kj% 2 +sects sekts Kj% 1 +secular 'sekjUl@R OA% 3 +secularism 'sekjUl@rIz@m L@$ 5 +secularist 'sekjUl@rIst K6$ 4 +secularists 'sekjUl@rIsts Kj$ 4 +secularize 'sekj@l@raIz H2$ 46A +secularized 'sekj@l@raIzd Hc$,Hd$ 46A +secularizes 'sekj@l@raIzIz Ha$ 56A +secularizing 'sekj@l@raIzIN Hb$ 56A +secure sI'kjU@R H2%,OA% 26A,12B,13B,14 +secured sI'kjU@d Hc%,Hd% 26A,12B,13B,14 +securely sI'kjU@lI Pu% 3 +secures sI'kjU@z Ha% 26A,12B,13B,14 +securing sI'kjU@rIN Hb% 36A,12B,13B,14 +securities sI'kjU@rItIz Mj% 4 +security sI'kjU@rItI M8% 4 +sedan sI'd&n K6$ 2 +sedan-chair sI'd&n-tSe@R K6$ 3 +sedan-chairs sI'd&n-tSe@z Kj$ 3 +sedans sI'd&nz Kj$ 2 +sedate sI'deIt H2%,OA% 26A +sedated sI'deItId Hc%,Hd% 36A +sedately sI'deItlI Pu% 3 +sedateness sI'deItn@s L@% 3 +sedates sI'deIts Ha% 26A +sedating sI'deItIN Hb% 36A +sedation sI'deISn L@% 3 +sedative 'sed@tIv M6%,OA% 3 +sedatives 'sed@tIvz Mj% 3 +sedentary 'sedntrI OA% 3 +sedge sedZ M6% 1 +sedges 'sedZIz Mj% 2 +sedgier 'sedZI@R Or$ 3 +sedgiest 'sedZIIst Os$ 3 +sedgy 'sedZI OD$ 2 +sediment 'sedIm@nt L@% 3 +sedimentary ,sedI'mentrI OA% 4 +sedition sI'dISn L@% 3 +seditious sI'dIS@s OA% 3 +seduce sI'djus H2% 26A,14 +seduced sI'djust Hc%,Hd% 26A,14 +seducer sI'djus@R K6% 3 +seducers sI'djus@z Kj% 3 +seduces sI'djusIz Ha% 36A,14 +seducing sI'djusIN Hb% 36A,14 +seduction sI'dVkSn M6% 3 +seductions sI'dVkSnz Mj% 3 +seductive sI'dVktIv OA% 3 +seductively sI'dVktIvlI Pu% 4 +sedulous 'sedjUl@s OA$ 3 +sedulously 'sedjUl@slI Pu$ 4 +see si J5*,K6% 12A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +see-through 'si-Tru OA% 2 +seed sid J0$,M9% 12A,6A +seed-corn 'sid-kOn L@% 2 +seed-pearls 'sid-p3lz Kj% 2 +seedbed 'sidbed K6% 2 +seedbeds 'sidbedz Kj% 2 +seedcake 'sidkeIk K6% 2 +seedcakes 'sidkeIks Kj% 2 +seeded 'sidId Jc%,Jd% 22A,6A +seedier 'sidI@R Or% 3 +seediest 'sidIIst Os% 3 +seedily 'sidIlI Pu% 3 +seediness 'sidIn@s L@% 3 +seeding 'sidIN Jb$ 22A,6A +seedless 'sidl@s OA% 2 +seedling 'sidlIN K6% 2 +seedlings 'sidlINz Kj% 2 +seeds sidz Ja$,Kj% 12A,6A +seedsman 'sidzm@n Ki% 2 +seedsmen 'sidzm@n Kj% 2 +seedtime 'sidtaIm K6% 2 +seedtimes 'sidtaImz Kj$ 2 +seedy 'sidI OD% 2 +seeing 'siIN Jb% 22A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +seek sik H5% 12A,3A,6A,7A,15A +seeker 'sik@R K6% 2 +seekers 'sik@z Kj% 2 +seeking 'sikIN Hb% 22A,3A,6A,7A,15A +seeks siks Ha% 12A,3A,6A,7A,15A +seem sim I0* 12A,4D,4E +seemed simd Ic*,Id* 12A,4D,4E +seeming 'simIN Ib%,OA% 22A,4D,4E +seemingly 'simINlI Pu% 3 +seemlier 'simlI@R Or$ 3 +seemliest 'simlIIst Os$ 3 +seemliness 'simlIn@s L@% 3 +seemly 'simlI OD% 2 +seems simz Ia% 12A,4D,4E +seen sin Jd* 12A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +seep sip I0% 12C +seepage 'sipIdZ L@% 2 +seeped sipt Ic%,Id% 12C +seeping 'sipIN Ib% 22C +seeps sips Ia% 12C +seer sI@R K6% 2 +seers sI@z Kj% 2 +seersucker 'sI@sVk@R L@$ 3 +sees siz Ja%,Kj$ 12A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +seesaw 'sisO I0%,M6% 2 +seesawed 'sisOd Ic%,Id% 2 +seesawing 'sisOIN Ib% 3 +seesaws 'sisOz Ia%,Mj% 2 +seethe siD J2% 12A,3A,6A +seethed siDd Jc%,Jd% 12A,3A,6A +seethes siDz Ja% 12A,3A,6A +seething 'siDIN Jb% 22A,3A,6A +segment 'segm@nt K6% 2 +segment seg'ment J0% 2 +segmentation ,segm@n'teISn M6$ 4 +segmentations ,segm@n'teISnz Mj$ 4 +segmented seg'mentId Jc%,Jd% 3 +segmenting seg'mentIN Jb% 3 +segments 'segm@nts Kj% 2 +segments seg'ments Ja% 2 +segregate 'segrIgeIt H2% 36A +segregated 'segrIgeItId Hc%,Hd% 46A +segregates 'segrIgeIts Ha% 36A +segregating 'segrIgeItIN Hb% 46A +segregation ,segrI'geISn K6% 4 +segregations ,segrI'geISnz Kj% 4 +seignior 'seInj@R K6$ 2 +seigniors 'seInj@z Kj$ 2 +seine seIn J2$,K6$ 1 +seined seInd Jc$,Jd$ 1 +seines seInz Ja$,Kj$ 1 +seining 'seInIN Jb$ 2 +seismic 'saIzmIk OA% 2 +seismograph 'saIzm@grAf K6% 3 +seismographs 'saIzm@grAfs Kj% 3 +seismologist saIz'm0l@dZIst K6% 4 +seismologists saIz'm0l@dZIsts Kj% 4 +seismology saIz'm0l@dZI L@% 4 +seize siz J2% 12A,2C,3A,6A,15A +seized sizd Jc%,Jd% 12A,2C,3A,6A,15A +seizes 'sizIz Ja% 22A,2C,3A,6A,15A +seizing 'sizIN Jb% 22A,2C,3A,6A,15A +seizure 'siZ@R M6% 2 +seizures 'siZ@z Mj% 2 +seldom 'seld@m Pu% 2 +select sI'lekt H0%,OA% 26A,15A,16A +selected sI'lektId Hc%,Hd% 36A,15A,16A +selecting sI'lektIN Hb% 36A,15A,16A +selection sI'lekSn M6% 3 +selections sI'lekSnz Mj% 3 +selective sI'lektIv OA% 3 +selectively sI'lektIvlI Pu% 4 +selectivity ,sIlek'tIvItI L@% 5 +selector sI'lekt@R K6% 3 +selectors sI'lekt@z Kj% 3 +selects sI'lekts Ha% 26A,15A,16A +selenium sI'linI@m L@$ 4 +self self Mi% 1 +self- self- U-% 1 +self-abasement self-@'beIsm@nt L@% 4 +self-abnegation self-,&bnI'geISn L@$ 5 +self-absorbed ,self-@b'zObd OA% 3 +self-acting self-'&ktIN OA$ 3 +self-activating self-'&ktIveItIN OA% 5 +self-addressed ,self-@'drest OA% 3 +self-appointed ,self-@'poIntID OA% 4 +self-assertion self-@'s3Sn L@% 4 +self-assertive self-@'s3tIv OA% 4 +self-assurance self-@'SU@r@ns L@% 4 +self-assured ,self-@'SU@d OA% 3 +self-centred self-'sent@d OA% 3 +self-collected ,self-k@'lektId OA$ 4 +self-coloured self-'kVl@d OA$ 3 +self-command self-k@'mAnd L@% 3 +self-communion self-k@'mjunI@n L@$ 4 +self-complacency ,self-k@m'pleIsnsI L@$ 5 +self-confessed ,self-k@n'fest OA% 3 +self-confidence self-'k0nfId@ns L@% 4 +self-confident self-'k0nfId@nt OA% 4 +self-conscious self-'k0nS@s OA% 3 +self-consciousness self-'k0nS@sn@s L@% 4 +self-contained ,self-k@n'teInd OA% 3 +self-control self-k@n'tr@Ul L@% 3 +self-defence self-dI'fens L@% 3 +self-denial self-dI'naI@l L@% 4 +self-denying ,self-dI'naIIN OA% 4 +self-determination self-dI,t3mI'neISn L@% 6 +self-educated self-'edj@keItId OA% 5 +self-effacing ,self-I'feIsIN OA% 4 +self-employed ,self-Im'ploId OA% 3 +self-esteem self-I'stim L@% 3 +self-evident self-'evId@nt OA% 4 +self-examination ,self-Ig,z&mI'neISn M6% 6 +self-examinations ,self-Ig,z&mI'neISnz Mj% 6 +self-explanatory self-Ik'spl&n@trI OA% 5 +self-help self-'help L@% 2 +self-importance self-Im'pOtns L@% 4 +self-important self-Im'pOtnt OA% 4 +self-imposed ,self-Im'p@Uzd OA% 3 +self-indulgence self-In'dVldZ@ns L@% 4 +self-indulgent ,self-In'dVldZ@nt OA% 4 +self-interest self-'Intr@st L@% 3 +self-locking self-'l0kIN OA% 3 +self-made 'self-meId OA% 2 +self-opinionated ,self-@'pInI@neItId OA% 6 +self-pity self-'pItI L@% 3 +self-possessed ,self-p@'zest OA% 3 +self-possession self-p@'zeSn L@% 4 +self-preservation ,self-,prez@'veISn L@% 5 +self-raising self-'reIzIN OA% 3 +self-reliance self-rI'laI@ns L@% 4 +self-reliant ,self-rI'laI@nt OA% 4 +self-respect self-rI'spekt L@% 3 +self-respecting ,self-rI'spektIN OA% 4 +self-righteous self-'raItS@s OA% 3 +self-rule self-'rul L@% 2 +self-sacrifice self-'s&krIfaIs M6% 4 +self-sacrifices self-'s&krIfaIsIz Mj$ 5 +self-sacrificing self-'s&krIfaIsIN OA% 5 +self-same 'self-seIm OA% 2 +self-sealing self-'silIN OA% 3 +self-seeker self-'sik@R K6$ 3 +self-seekers self-'sik@z Kj$ 3 +self-seeking self-'sikIN L@%,OA% 3 +self-service self-'s3vIs L@% 3 +self-sown self-'s@Un OA$ 2 +self-starter self-'stAt@R K6% 3 +self-starters self-'stAt@z Kj% 3 +self-styled 'self-staIld OA% 2 +self-sufficiency self-s@'fIS@nsI L@% 5 +self-sufficient self-s@'fISnt OA% 4 +self-sufficing ,self-s@'faIsIN OA$ 4 +self-supporting ,self-s@'pOtIN OA% 4 +self-will self-'wIl L@% 2 +self-willed self-'wIld OA% 2 +self-winding self-'waIndIN OA% 3 +selfconsciously self'k0nS@slI Pu% 4 +selfish 'selfIS OA% 2 +selfishly 'selfISlI Pu% 3 +selfishness 'selfISn@s L@% 3 +sell sel J5%,Ki% 12A,2C,6A,12A,13A,15B +seller 'sel@R K6% 2 +sellers 'sel@z Kj% 2 +selling 'selIN Jb%,L@% 22A,2C,6A,12A,13A,15B +sellout 'selaUt K6% 2 +sellouts 'selaUts Kj$ 2 +sells selz Ja% 12A,2C,6A,12A,13A,15B +selvage 'selvIdZ K6$ 2 +selvages 'selvIdZIz Kj$ 3 +selvedge 'selvIdZ K6$ 2 +selvedges 'selvIdZIz Kj$ 3 +selves selvz Kj% 1 +semantic sI'm&ntIk OA% 3 +semantics sI'm&ntIks Lk% 3 +semaphore 'sem@fOR J2$,L@% 32A,6A +semaphored 'sem@fOd Jc$,Jd$ 32A,6A +semaphores 'sem@fOz Ja$ 32A,6A +semaphoring 'sem@fOrIN Jb$ 42A,6A +semblance 'sembl@ns M6% 2 +semblances 'sembl@nsIz Mj$ 3 +semen 'sim@n L@% 2 +semester sI'mest@R K6% 3 +semesters sI'mest@z Kj% 3 +semi- 'semI- U-% 2 +semibreve 'semIbriv K6$ 3 +semibreves 'semIbrivz Kj$ 3 +semicircle 'semIs3kl K6% 4 +semicircles 'semIs3klz Kj% 4 +semicircular ,semI's3kjUl@R OA% 5 +semicolon ,semI'k@Ul@n K6% 4 +semicolons ,semI'k@Ul@nz Kj% 4 +semiconducting ,semIk@n'dVktIN OA% 5 +semiconductor ,semIk@n'dVkt@R K6% 5 +semiconductors ,semIk@n'dVkt@z Kj% 5 +semiconscious ,semI'k0nS@s OA% 4 +semidetached ,semIdI't&tSt OA% 4 +semifinal ,semI'faInl K6% 4 +semifinalist ,semI'faIn@lIst K6% 5 +semifinalists ,semI'faIn@lIsts Kj% 5 +semifinals ,semI'faInlz Kj% 4 +seminal 'semInl OA% 3 +seminar 'semInAR K6% 3 +seminaries 'semIn@rIz Kj$ 4 +seminarist 'semIn@rIst K6$ 4 +seminarists 'semIn@rIsts Kj$ 4 +seminars 'semInAz Kj% 3 +seminary 'semIn@rI K8% 4 +semiofficial ,semI@'fISl OA% 5 +semiquaver 'semIkweIv@R K6% 4 +semiquavers 'semIkweIv@z Kj% 4 +semirigid ,semI'rIdZId OA$ 4 +semitone 'semIt@Un K6% 3 +semitones 'semIt@Unz Kj% 3 +semitropical ,semI'tr0pIkl OA$ 5 +semivowel 'semIvaU@l K6$ 4 +semivowels 'semIvaU@lz Kj$ 4 +semolina ,sem@'lin@ L@% 4 +sempstress 'sempstrIs K7$ 2 +sempstresses 'sempstrIsIz Kj$ 3 +senate 'senIt K6% 2 +senates 'senIts Kj% 2 +senator 'sen@t@R K6% 3 +senatorial ,sen@'tOrI@l OA% 5 +senators 'sen@t@z Kj% 3 +send send J5% 12C,3A,6A,12A,13A,15A,15B,19B,22 +send-up 'send-Vp K6% 2 +send-ups 'send-Vps Kj$ 2 +sender 'send@R K6% 2 +senders 'send@z Kj% 2 +sending 'sendIN Jb% 22C,3A,6A,12A,13A,15A,15B,19B,22 +sendoff 'send0f K6% 2 +sendoffs 'send0fs Kj$ 2 +sends senz Ja% 12C,3A,6A,12A,13A,15A,15B,19B,22 +senescence sI'nesns L@$ 3 +senescent sI'nesnt OA$ 3 +seneschal 'senISl K6$ 3 +seneschals 'senISlz Kj$ 3 +senile 'sinaIl OA% 2 +senility sI'nIlItI L@% 4 +senior 'sinI@R K6%,OA% 3 +seniority ,sinI'0rItI L@% 5 +seniors 'sinI@z Kj% 3 +senna 'sen@ L@$ 2 +senora se'njOr@ K6$ 3 +senoras se'njOr@z Kj$ 3 +senores se'njOreIz Kj$ 3 +senorita ,senjO'rit@ K6$ 4 +senoritas ,senjO'rit@z Kj$ 4 +sensation sen'seISn M6% 3 +sensational sIn'seIS@nl OA% 4 +sensationalism sIn'seIS@n@lIz@m L@% 6 +sensationalist sIn'seISn@lIst K6% 4 +sensationalists sIn'seISn@lIsts Kj% 4 +sensationally sIn'seIS@n@lI Pu% 5 +sensations sen'seISnz Mj% 3 +sense sens H2%,M6* 16A,9 +sense-organ 'sens-Og@n K6% 3 +sense-organs 'sens-Og@nz Kj% 3 +sensed senst Hc%,Hd% 16A,9 +senseless 'senslIs OA% 2 +senselessly 'senslIslI Pu% 3 +senselessness 'senslIsn@s L@% 3 +senses 'sensIz Ha%,Mj% 26A,9 +sensibilities ,sens@'bIlItIz Mj% 5 +sensibility ,sens@'bIlItI M8% 5 +sensible 'sens@bl OA% 3 +sensibly 'sens@blI Pu% 3 +sensing 'sensIN Hb% 26A,9 +sensitive 'sens@tIv OA% 3 +sensitively 'sens@tIvlI Pu% 4 +sensitivities ,sens@'tIvItIz Mj% 5 +sensitivity ,sens@'tIvItI M8% 5 +sensitization ,sensItaI'zeISn L@% 5 +sensitize 'sensItaIz H2% 36A +sensitized 'sensItaIzd Hc%,Hd% 36A +sensitizes 'sensItaIzIz Ha% 46A +sensitizing 'sensItaIzIN Hb% 46A +sensory 'sens@rI OA% 3 +sensual 'senSU@l OA% 3 +sensualism 'senSU@lIz@m L@$ 5 +sensualist 'senSU@lIst K6% 4 +sensualists 'senSU@lIsts Kj$ 4 +sensuality ,senSU'&lItI L@% 5 +sensuous 'senSU@s OA% 3 +sensuously 'senSU@slI Pu% 4 +sensuousness 'senSU@sn@s L@% 4 +sent sent Jc%,Jd% 12C,3A,6A,12A,13A,15A,15B,19B,22 +sentence 'sent@ns H2%,K6% 26A,14,17 +sentenced 'sent@nst Hc%,Hd% 26A,14,17 +sentences 'sent@nsIz Ha%,Kj% 36A,14,17 +sentencing 'sent@nsIN Hb% 36A,14,17 +sententious sen'tenS@s OA% 3 +sententiously sen'tenS@slI Pu% 4 +sentient 'senSnt OA% 2 +sentiment 'sentIm@nt M6% 3 +sentimental ,sentI'mentl OA% 4 +sentimentalist ,sentI'ment@lIst K6% 5 +sentimentalists ,sentI'ment@lIsts Kj$ 5 +sentimentality ,sentImen't&lItI L@% 6 +sentimentalize ,sentI'ment@laIz J2% 52A,6A +sentimentalized ,sentI'ment@laIzd Jc%,Jd% 52A,6A +sentimentalizes ,sentI'ment@laIzIz Ja% 62A,6A +sentimentalizing ,sentI'ment@laIzIN Jb% 62A,6A +sentimentally ,sentI'ment@lI Pu% 5 +sentiments 'sentIm@nts Mj% 3 +sentinel 'sentInl K6% 3 +sentinels 'sentInlz Kj% 3 +sentries 'sentrIz Kj% 2 +sentry 'sentrI K8% 2 +sentry-box 'sentrI-b0ks K7% 3 +sentry-boxes 'sentrI-b0ksIz Kj% 4 +sentry-go 'sentrI-g@U Ki$ 3 +sepal 'sepl K6$ 2 +sepals 'seplz Kj$ 2 +separability ,sepr@'bIlItI L@% 5 +separable 'sep@r@bl OA% 4 +separably 'sep@r@blI Pu% 4 +separate 'sep@reIt J2% 32A,6A,14,15B +separate 'sepr@t K6%,OA% 2 +separated 'sep@reItId Jc%,Jd% 42A,6A,14,15B +separately 'sepr@tlI Pu% 3 +separates 'sep@reIts Ja% 32A,6A,14,15B +separates 'sepr@ts Kj% 2 +separating 'sep@reItIN Jb% 42A,6A,14,15B +separation ,sep@'reISn M6% 4 +separations ,sep@'reISnz Mj% 4 +separatist 'sep@r@tIst K6% 4 +separatists 'sep@r@tIsts Kj% 4 +separator 'sep@reIt@R K6% 4 +separators 'sep@reIt@z Kj% 4 +sepia 'sipI@ L@% 3 +sepsis 'sepsIs L@$ 2 +septet sep'tet K6% 2 +septets sep'tets Kj% 2 +septic 'septIk OA% 2 +septicaemia ,septI'simI@ L@% 5 +septicemia ,septI'simI@ L@% 5 +septuagenarian ,septjU@dZI'ne@rI@n K6% 7 +septuagenarians ,septjU@dZI'ne@rI@nz Kj% 7 +sepulchral sI'pVlkr@l OA% 3 +sepulchre 'seplk@R K6% 3 +sepulchres 'seplk@z Kj% 3 +sepulture 'sepltSU@R L@$ 3 +sequel 'sikw@l K6% 2 +sequels 'sikw@lz Kj% 2 +sequence 'sikw@ns M6% 2 +sequences 'sikw@nsIz Mj% 3 +sequent 'sikw@nt OA$ 2 +sequential sI'kwenSl OA% 3 +sequentially sI'kwenS@lI Pu% 4 +sequester sI'kwest@R H0$ 36A +sequestered sI'kwest@d Hc$,Hd$,OA$ 36A +sequestering sI'kwest@rIN Hb$ 46A +sequesters sI'kwest@z Ha$ 36A +sequestrate sI'kwestreIt H2$ 36A +sequestrated sI'kwestreItId Hc$,Hd$ 46A +sequestrates sI'kwestreIts Ha$ 36A +sequestrating sI'kwestreItIN Hb$ 46A +sequestration ,sikwe'streISn M6$ 4 +sequestrations ,sikwe'streISnz Mj$ 4 +sequin 'sikwIn K6% 2 +sequins 'sikwInz Kj% 2 +sequoia sI'kwoI@ K6$ 3 +sequoias sI'kwoI@z Kj$ 3 +seraglio se'rAlI@U K6$ 4 +seraglios se'rAlI@Uz Kj$ 4 +seraph 'ser@f K6$ 2 +seraphic se'r&fIk OA$ 3 +seraphim 'ser@fIm Kj$ 3 +seraphs 'ser@fs Kj$ 2 +sere sI@R OA$ 1 +serenade ,ser@'neId H2%,K6% 36A +serenaded ,ser@'neIdId Hc%,Hd% 46A +serenades ,ser@'neIdz Ha%,Kj% 36A +serenading ,ser@'neIdIN Hb% 46A +serendipity ,ser@n'dIpItI L@% 5 +serene sI'rin OA% 2 +serenely sI'rinlI Pu% 3 +serenity sI'renItI L@% 4 +serf s3f K6$ 1 +serfdom 's3fd@m L@$ 2 +serfs s3fs Kj$ 1 +serge s3dZ L@$ 1 +sergeant 'sAdZ@nt K6% 2 +sergeant-major ,sAdZ@nt-'meIdZ@R K6% 4 +sergeant-majors ,sAdZ@nt-'meIdZ@z Kj% 4 +sergeants 'sAdZ@nts Kj% 2 +serial 'sI@rI@l K6%,OA% 3 +serialize 'sI@rI@laIz H2% 46A +serialized 'sI@rI@laIzd Hc%,Hd% 46A +serializes 'sI@rI@laIzIz Ha% 56A +serializing 'sI@rI@laIzIN Hb% 56A +serially 'sI@rI@lI Pu% 4 +serials 'sI@rI@lz Kj% 3 +seriatim ,sI@rI'eItIm Pu$ 4 +sericultural ,serI'kVltS@r@l OA$ 5 +sericulture 'serIkVltS@R K6$ 4 +sericultures 'serIkVltS@z Kj$ 4 +sericulturist ,serI'kVltS@rIst K6$ 5 +sericulturists ,serI'kVltS@rIsts Kj$ 5 +series 'sI@riz K9% 2 +seriocomic ,sI@rI@U'k0mIk OA$ 5 +serious 'sI@rI@s OA% 3 +seriously 'sI@rI@slI Pu% 4 +seriousness 'sI@rI@sn@s L@% 4 +serjeant 'sAdZ@nt K6$ 2 +serjeants 'sAdZ@nts Kj$ 2 +sermon 's3m@n K6% 2 +sermonize 's3m@naIz J2% 32A,6A +sermonized 's3m@naIzd Jc%,Jd% 32A,6A +sermonizes 's3m@naIzIz Ja% 42A,6A +sermonizing 's3m@naIzIN Jb% 42A,6A +sermons 's3m@nz Kj% 2 +serous 'sI@r@s OA$ 2 +serpent 's3p@nt K6% 2 +serpentine 's3p@ntaIn OA% 3 +serpents 's3p@nts Kj% 2 +serrated sI'reItId OA% 3 +serried 'serId OA% 2 +serum 'sI@r@m L@% 2 +servant 's3v@nt K6% 2 +servants 's3v@nts Kj% 2 +serve s3v J2%,K6% 12A,2B,2C,3A,4A,6A,14,15A,15B +served s3vd Jc%,Jd% 12A,2B,2C,3A,4A,6A,14,15A,15B +server 's3v@R K6% 2 +servers 's3v@z Kj% 2 +serves s3vz Ja%,Kj% 12A,2B,2C,3A,4A,6A,14,15A,15B +service 's3vIs H2%,M6% 26A +serviceable 's3vIs@bl OA% 4 +serviced 's3vIst Hc%,Hd% 26A +serviceman 's3vIsm@n Ki% 3 +servicemen 's3vIsmen Kj% 3 +services 's3vIsIz Ha%,Mj% 36A +servicing 's3vIsIN Hb% 36A +serviette ,s3vI'et K6% 3 +serviettes ,s3vI'ets Kj% 3 +servile 's3vaIl OA% 2 +servilely 's3vaIlI Pu$ 3 +servility s3'vIlItI L@% 4 +serving 's3vIN Jb%,K6% 22A,2B,2C,3A,4A,6A,14,15A,15B +servings 's3vINz Kj% 2 +servitor 's3vIt@R K6$ 3 +servitors 's3vIt@z Kj$ 3 +servitude 's3vItjud L@% 3 +servo- 's3v@U- U-% 2 +sesame 'ses@mI L@% 3 +sesquipedalian ,seskwIpI'deIlI@n OA$ 6 +session 'seSn K6% 2 +sessions 'seSnz Kj% 2 +set set J5*,Jc*,Jd*,M6* 12A,2C,3A,6A,12C,14,15A,16A,17,19B,22 +set-square 'set-skwe@R K6% 2 +set-squares 'set-skwe@z Kj% 2 +set-to set-'tu K6% 2 +set-tos set-'tuz Kj% 2 +set-up 'set-Vp K6% 2 +set-ups 'set-Vps Kj$ 2 +setback 'setb&k K6% 2 +setbacks 'setb&ks Kj% 2 +sets sets Ja%,Mj% 12A,2C,3A,6A,12C,14,15A,16A,17,19B,22 +sett set K6$ 1 +settee se'ti K6% 2 +settees se'tiz Kj% 2 +setter 'set@R K6% 2 +setters 'set@z Kj% 2 +setting 'setIN Jb%,K6% 22A,2C,3A,6A,12C,14,15A,16A,17,19B,22 +settings 'setINz Kj% 2 +settle 'setl J2%,K6$ 22A,2C,3A,6A,7A,8,10,14,15A,15B +settled 'setld Jc%,Jd%,OA% 22A,2C,3A,6A,7A,8,10,14,15A,15B +settlement 'setlm@nt M6% 3 +settlements 'setlm@nts Mj% 3 +settler 'setl@R K6% 2 +settlers 'setl@z Kj% 2 +settles 'setlz Ja%,Kj$ 22A,2C,3A,6A,7A,8,10,14,15A,15B +settling 'setlIN Jb% 22A,2C,3A,6A,7A,8,10,14,15A,15B +setts sets Kj$ 1 +seven 'sevn K6%,OA% 2 +sevenfold 'sev@nf@Uld OA%,Pu% 3 +sevens 'sevnz Kj% 2 +seventeen ,sevn'tin K6%,OA% 3 +seventeens ,sevn'tinz Kj% 3 +seventeenth ,sevn'tinT K6%,OA% 3 +seventeenths ,sevn'tinTs Kj% 3 +seventh 'sevnT K6%,OA% 2 +seventhly 'sevnTlI Pu$ 3 +sevenths 'sevnTs Kj% 2 +seventies 'sevntIz Kj% 3 +seventieth 'sevntI@T K6%,OA% 4 +seventieths 'sevntI@Ts Kj% 4 +seventy 'sevntI K8%,OA% 3 +sever 'sev@R J0% 22A,6A,15A +several 'sevr@l OA*,Qx* 2 +severally 'sevr@lI Pu% 3 +severance 'sev@r@ns L@% 3 +severe sI'vI@R OB% 2 +severed 'sev@d Jc%,Jd% 22A,6A,15A +severely sI'vI@lI Pu% 3 +severer sI'vI@r@R Or% 3 +severest sI'vI@rIst Os% 3 +severing 'sev@rIN Jb% 32A,6A,15A +severities sI'verItIz Mj% 4 +severity sI'verItI M8% 4 +severs 'sev@z Ja% 22A,6A,15A +sew s@U J5% 12A,2B,2C,6A,15B +sewage 'sjuIdZ L@% 2 +sewage-farm 'sjuIdZ-fAm K6% 3 +sewage-farms 'sjuIdZ-fAmz Kj% 3 +sewage-works 'sjuIdZ-w3ks K9% 3 +sewed s@Ud Jc%,Jd% 12A,2B,2C,6A,15B +sewer 's@U@R K6$ 2 +sewer 'sju@R K6% 2 +sewer-gas 'sju@-g&s L@% 3 +sewer-rat 'sju@-r&t K6% 3 +sewer-rats 'sju@-r&ts Kj% 3 +sewerage 'sju@rIdZ M6% 3 +sewerages 'sju@rIdZIz Mj$ 4 +sewers 's@U@z Kj$ 2 +sewers 'sju@z Kj% 2 +sewing 's@UIN Jb%,L@% 22A,2B,2C,6A,15B +sewing-machine 's@UIN-m@Sin K6% 4 +sewing-machines 's@UIN-m@Sinz Kj% 4 +sewn s@Un Jc%,Jd% 12A,2B,2C,6A,15B +sews s@Uz Ja% 12A,2B,2C,6A,15B +sex seks H1%,M7% 16A +sex-starved 'seks-stAvd OA% 2 +sexagenarian ,seks@dZI'ne@rI@n K6%,OA% 6 +sexagenarians ,seks@dZI'ne@rI@nz Kj% 6 +sexed sekst Hc$,Hd%,OA% 16A +sexes 'seksIz Ha$,Mj% 26A +sexier 'seksI@R Or% 3 +sexiest 'seksIIst Os% 3 +sexing 'seksIN Hb$ 26A +sexism 'seksIz@m L@% 3 +sexist 'seksIst K6%,OA% 2 +sexists 'seksIsts Kj% 2 +sexless 'seksl@s OA% 2 +sextant 'sekst@nt K6$ 2 +sextants 'sekst@nts Kj$ 2 +sextet seks'tet K6% 2 +sextets seks'tets Kj% 2 +sextette seks'tet K6$ 2 +sextettes seks'tets Kj$ 2 +sexton 'sekst@n K6% 2 +sextons 'sekst@nz Kj% 2 +sexual 'sekSU@l OA% 3 +sexuality ,sekSU'&lItI L@% 5 +sexually 'sekSU@lI Pu% 4 +sexy 'seksI OD% 2 +se~nor se'njOR Ki% 2 +sgd saInd Y~% 1 +shabbier 'S&bI@R Or% 3 +shabbiest 'S&bIIst Os% 3 +shabbily 'S&bIlI Pu% 3 +shabbiness 'S&bIn@s L@% 3 +shabby 'S&bI OD% 2 +shabby-genteel ,S&bI-dZen'til OA$ 4 +shack S&k I0%,K6% 12C +shacked S&kt Ic%,Id% 12C +shacking 'S&kIN Ib% 22C +shackle 'S&kl H2%,K6% 26A +shackled 'S&kld Hc%,Hd% 26A +shackles 'S&klz Ha%,Kj% 26A +shackling 'S&klIN Hb% 26A +shacks S&ks Ia%,Kj% 12C +shad S&d K9$ 1 +shaddock 'S&d@k K6$ 2 +shaddocks 'S&d@ks Kj$ 2 +shade SeId J2%,M6% 12C,6A,15A +shade-tree 'SeId-tri K6$ 2 +shade-trees 'SeId-triz Kj$ 2 +shaded 'SeIdId Jc%,Jd% 22C,6A,15A +shades SeIdz Ja%,Mj% 12C,6A,15A +shadier 'SeIdI@R Or% 3 +shadiest 'SeIdIIst Os% 3 +shading 'SeIdIN Jb%,M6% 22C,6A,15A +shadings 'SeIdINz Mj% 2 +shadow 'S&d@U H0%,M6% 26A +shadow-boxing 'S&d@U-b0ksIN L@% 4 +shadowed 'S&d@Ud Hc%,Hd% 26A +shadowier 'S&d@UI@R Or$ 4 +shadowiest 'S&d@UIIst Os$ 4 +shadowing 'S&d@UIN Hb% 36A +shadows 'S&d@Uz Ha%,Mj% 26A +shadowy 'S&d@UI OD% 3 +shady 'SeIdI OD% 2 +shaft SAft K6% 1 +shafts SAfts Kj% 1 +shag S&g J4$,L@$ 16A +shagged S&gd Jc%,Jd% 16A +shaggier 'S&gI@R Or% 3 +shaggiest 'S&gIIst Os% 3 +shaggily 'S&gIlI Pu% 3 +shagginess 'S&gIn@s L@% 3 +shagging 'S&gIN Jb%,L@% 26A +shaggy 'S&gI OD% 2 +shags S&gz Ja% 16A +shah SA K6$ 1 +shahs SAz Kj$ 1 +shake SeIk J5%,K6% 12A,2C,6A,14,15A,15B +shake-up 'SeIk-Vp K6% 2 +shake-ups 'SeIk-Vps Kj$ 2 +shakedown 'SeIkdaUn K6% 2 +shakedowns 'SeIkdaUnz Kj$ 2 +shaken 'SeIk@n Jd% 22A,2C,6A,14,15A,15B +shakeout 'SeIkaUt K6% 2 +shakeouts 'SeIkaUts Kj$ 2 +shaker 'SeIk@R K6% 2 +shakers 'SeIk@z Kj% 2 +shakes SeIks Ja%,Kj% 12A,2C,6A,14,15A,15B +shakier 'SeIkI@R Or% 3 +shakiest 'SeIkIIst Os% 3 +shakily 'SeIkIlI Pu% 3 +shakiness 'SeIkIn@s L@% 3 +shaking 'SeIkIN Jb%,K6% 22A,2C,6A,14,15A,15B +shakings 'SeIkINz Kj% 2 +shaky 'SeIkI OD% 2 +shale SeIl L@% 1 +shale-oil 'SeIl-oIl L@$ 2 +shall S&l G5* 1 +shallot S@'l0t K6$ 2 +shallots S@'l0ts Kj$ 2 +shallow 'S&l@U I0$,K6%,OC% 2 +shallowed 'S&l@Ud Ic$,Id$ 2 +shallower 'S&l@U@R Or% 3 +shallowest 'S&l@UIst Os% 3 +shallowing 'S&l@UIN Ib$ 3 +shallows 'S&l@Uz Ia$,Kj% 2 +shalom S&'l0m W-$ 2 +shalt S< Ge$ 1 +sham S&m J4%,Mi%,OA% 12A,2D,6A +shamble 'S&mbl I2%,K6% 22A,2C +shambled 'S&mbld Ic%,Id% 22A,2C +shambles 'S&mblz Ia%,Ki% 22A,2C +shambling 'S&mblIN Ib% 22A,2C +shame SeIm H2%,L@% 16A,14 +shame-making 'SeIm-meIkIN OA$ 3 +shamed SeImd Hc%,Hd% 16A,14 +shamefaced 'SeImfeIst OA% 2 +shamefacedly 'SeImfeIstlI Pu% 4 +shameful 'SeImf@l OA% 2 +shamefully 'SeImf@lI Pu% 3 +shameless 'SeIml@s OA% 2 +shamelessly 'SeIml@slI Pu% 3 +shamelessness 'SeIml@sn@s L@% 3 +shames SeImz Ha% 16A,14 +shaming 'SeImIN Hb% 26A,14 +shammed S&md Jc%,Jd% 12A,2D,6A +shammies 'S&mIz Kj$ 2 +shamming 'S&mIN Jb% 22A,2D,6A +shammy 'S&mI K8$ 2 +shampoo S&m'pu H0%,M6% 26A +shampooed S&m'pud Hc%,Hd% 26A +shampooing S&m'puIN Hb% 36A +shampoos S&m'puz Ha%,Mj% 26A +shamrock 'S&mr0k K6% 2 +shamrocks 'S&mr0ks Kj% 2 +shams S&mz Ja$ 12A,2D,6A +shan't SAnt Gg% 1 +shandies 'S&ndIz Mj% 2 +shandy 'S&ndI M8% 2 +shanghai S&N'haI H0$ 2 +shanghaied S&N'haId Hc$,Hd$ 2 +shanghaiing S&N'haIIN Hb$ 3 +shanghais S&N'haIz Ha$ 2 +shank S&Nk K6% 1 +shanks S&Nks Kj% 1 +shanties 'S&ntIz Kj$ 2 +shantung S&n'tVN L@% 2 +shanty 'S&ntI K8% 2 +shantytown 'S&ntItaUn K6% 3 +shantytowns 'S&ntItaUnz Kj% 3 +shape SeIp J2%,M6% 12A,2C,6A,15A +shaped SeIpt Jc%,Jd% 12A,2C,6A,15A +shapeless 'SeIpl@s OA% 2 +shapelessly 'SeIpl@slI Pu% 3 +shapelessness 'SeIpl@sn@s L@% 3 +shapelier 'SeIplI@R Or% 3 +shapeliest 'SeIplIIst Os% 3 +shapely 'SeIplI OD% 2 +shapes SeIps Ja%,Mj% 12A,2C,6A,15A +shaping 'SeIpIN Jb% 22A,2C,6A,15A +shard SAd K6$ 1 +shards SAdz Kj$ 1 +share Se@R J2%,M6% 13A,6A,14,15B +share-out 'Se@r-aUt K6% 2 +share-outs 'Se@r-aUts Kj% 2 +sharecropper 'Se@kr0p@R K6$ 3 +sharecroppers 'Se@kr0p@z Kj$ 3 +shared Se@d Jc%,Jd% 13A,6A,14,15B +shareholder 'Se@h@Uld@R K6% 3 +shareholders 'Se@h@Uld@z Kj% 3 +shareholding 'Se@h@UldIN K6% 3 +shareholdings 'Se@h@UldINz Kj$ 3 +shares Se@z Ja%,Mj% 13A,6A,14,15B +sharing 'Se@rIN Jb% 23A,6A,14,15B +shark SAk K6% 1 +sharks SAks Kj% 1 +sharkskin 'SAkskIn M6% 2 +sharkskins 'SAkskInz Mj$ 2 +sharp SAp K6%,OC%,Pu% 1 +sharp-eyed 'SAp-aId OA% 2 +sharp-set 'SAp-set OA$ 2 +sharp-sighted SAp-'saItId OA% 3 +sharp-witted SAp-'wItId OA% 3 +sharpen 'SAp@n J0% 22A,6A +sharpened 'SAp@nd Jc%,Jd% 22A,6A +sharpener 'SApn@R K6% 2 +sharpeners 'SApn@z Kj% 2 +sharpening 'SAp@nIN Jb% 32A,6A +sharpens 'SAp@nz Ja% 22A,6A +sharper 'SAp@R K6$,Or% 2 +sharpers 'SAp@z Kj$ 2 +sharpest 'SApIst Os% 2 +sharply 'SAplI Pu% 2 +sharpness 'SApn@s L@% 2 +sharps SAps Kj$ 1 +sharpshooter 'SApSut@R K6% 3 +sharpshooters 'SApSut@z Kj% 3 +shat S&t Ic% 12A,3A +shatter 'S&t@R J0% 22A,6A +shattered 'S&t@d Jc%,Jd% 22A,6A +shattering 'S&t@rIN Jb% 32A,6A +shatterproof 'S&t@pruf OA% 3 +shatters 'S&t@z Ja% 22A,6A +shave SeIv J2%,K6% 12A,6A,15A,15B +shaved SeIvd Jc%,Jd% 12A,6A,15A,15B +shaven 'SeIvn Jd% 22A,6A,15A,15B +shaver 'SeIv@R K6% 2 +shavers 'SeIv@z Kj% 2 +shaves SeIvz Ja%,Kj% 12A,6A,15A,15B +shaving 'SeIvIN Jb% 22A,6A,15A,15B +shaving-brush 'SeIvIN-brVS K7% 3 +shaving-brushes 'SeIvIN-brVSIz Kj% 4 +shavings 'SeIvINz Kj% 2 +shawl SOl K6% 1 +shawls SOlz Kj% 1 +she Si Qx* 1 +she'd Sid Gf% 1 +she'll Sil Gf% 1 +she's Siz Gf% 1 +she-goat 'Si-g@Ut K6% 2 +she-goats 'Si-g@Uts Kj% 2 +sheaf Sif Ki% 1 +shear SI@R H0% 16A +sheared SI@d Hc%,Hd% 16A +shearing 'SI@rIN Hb% 26A +shears SI@z Ha%,Kj% 16A +sheath SiT K6% 1 +sheath-knife 'SiT-naIf Ki% 2 +sheath-knives 'SiT-naIvz Kj% 2 +sheathe SiD H2% 16A +sheathed SiDd Hc%,Hd% 16A +sheathes SiDz Ha% 16A +sheathing 'SiDIN Hb%,K6$ 26A +sheathings 'SiDINz Kj$ 2 +sheaths SiDz Kj% 1 +sheaves Sivz Kj% 1 +shebang SI'b&N Ki$ 2 +shebeen SI'bin K6$ 2 +shebeens SI'binz Kj$ 2 +shed Sed H5%,Hc%,Hd%,K6% 16A +shedding 'SedIN Hb% 26A +sheds Sedz Ha%,Kj% 16A +sheen Sin L@% 1 +sheep Sip K9% 1 +sheepdog 'Sipd0g K6% 2 +sheepdogs 'Sipd0gz Kj% 2 +sheepfold 'Sipf@Uld K6% 2 +sheepfolds 'Sipf@Uldz Kj% 2 +sheepish 'SipIS OA% 2 +sheepishly 'SipISlI Pu% 3 +sheepishness 'SipISn@s L@% 3 +sheeprun 'SiprVn K6% 2 +sheepruns 'SiprVnz Kj% 2 +sheepskin 'SipskIn K6% 2 +sheepskins 'SipskInz Kj% 2 +sheer SI@R I0%,OC%,Pu% 12C +sheered SI@d Ic%,Id% 12C +sheerer 'SI@r@R Or$ 2 +sheerest 'SI@rIst Os$ 2 +sheering 'SI@rIN Ib% 22C +sheers SI@z Ia% 12C +sheet Sit K6% 1 +sheet-anchor Sit-'&Nk@R K6% 3 +sheet-anchors Sit-'&Nk@z Kj% 3 +sheet-lightning Sit-'laItnIN L@% 3 +sheeting 'SitIN L@% 2 +sheets Sits Kj% 1 +sheik SeIk K6% 1 +sheikdom 'SeIkd@m K6% 2 +sheikdoms 'SeIkd@mz Kj% 2 +sheikh SeIk K6% 1 +sheikhdom 'SeIkd@m K6$ 2 +sheikhdoms 'SeIkd@mz Kj$ 2 +sheikhs SeIks Kj% 1 +sheiks SeIks Kj% 1 +shekel 'Sekl K6$ 2 +shekels 'Seklz Kj$ 2 +sheldrake 'SeldreIk K6$ 2 +sheldrakes 'SeldreIks Kj$ 2 +shelf Self Ki% 1 +shell Sel J0%,K6% 12C,6A,15B +shell-shock 'Sel-S0k L@% 2 +shellac S@'l&k H5$,L@% 2 +shellacked S@'l&kt Hc$,Hd$ 2 +shellacking S@'l&kIN Hb$ 3 +shellacs S@'l&ks Ha$ 2 +shelled Seld Jc%,Jd% 12C,6A,15B +shellfire 'SelfaI@R L@% 2 +shellfish 'SelfIS K9% 2 +shelling 'SelIN Jb% 22C,6A,15B +shellproof 'Selpruf OA% 2 +shells Selz Ja%,Kj% 12C,6A,15B +shelter 'Selt@R J0%,M6% 22A,2C,6A,14 +sheltered 'Selt@d Jc%,Jd% 22A,2C,6A,14 +sheltering 'Selt@rIN Jb% 32A,2C,6A,14 +shelters 'Selt@z Ja%,Mj% 22A,2C,6A,14 +shelve Selv J2% 12A,2C,6A +shelved Selvd Jc%,Jd% 12A,2C,6A +shelves Selvz Ja%,Kj% 12A,2C,6A +shelving 'SelvIN Jb% 22A,2C,6A +shepherd 'Sep@d H0%,K6% 26A,15A +shepherded 'Sep@dId Hc%,Hd% 36A,15A +shepherdess ,Sep@'des K7% 3 +shepherdesses ,Sep@'desIz Kj% 4 +shepherding 'Sep@dIN Hb% 36A,15A +shepherds 'Sep@dz Ha%,Kj% 26A,15A +sherbet 'S3b@t M6% 2 +sherbets 'S3b@ts Mj$ 2 +sheriff 'SerIf K6% 2 +sheriffs 'SerIfs Kj% 2 +sherries 'SerIz Mj% 2 +sherry 'SerI M8% 2 +shew S@U J0$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shewed S@Ud Jc$,Jd$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shewing 'S@UIN Jb$ 22A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shewn S@Un Jc$,Jd$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shews S@Uz Ja$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shibboleth 'SIb@leT K6$ 3 +shibboleths 'SIb@leTs Kj$ 3 +shied SaId Jc%,Jd% 12A,3A,6A,15A +shield Sild H0%,K6% 16A,15A +shielded 'SildId Hc%,Hd% 26A,15A +shielding 'SildIN Hb% 26A,15A +shields Sildz Ha%,Kj% 16A,15A +shies SaIz Ja%,Kj% 12A,3A,6A,15A +shift SIft J0%,K6% 12A,2C,6A,14,15A +shifted 'SIftId Jc%,Jd% 22A,2C,6A,14,15A +shiftier 'SIftI@R Or% 3 +shiftiest 'SIftIIst Os% 3 +shiftily 'SIftIlI Pu% 3 +shiftiness 'SIftIn@s L@% 3 +shifting 'SIftIN Jb% 22A,2C,6A,14,15A +shiftless 'SIftl@s OA% 2 +shifts SIfts Ja%,Kj% 12A,2C,6A,14,15A +shifty 'SIftI OD% 2 +shillelagh SI'leIl@ K6$ 3 +shillelaghs SI'leIl@z Kj$ 3 +shilling 'SIlIN K6% 2 +shillings 'SIlINz Kj% 2 +shillyshallied 'SIlIS&lId Ic%,Id% 42A +shillyshallies 'SIlIS&lIz Ia% 42A +shillyshally 'SIlIS&lI I3%,L@% 42A +shillyshallying 'SIlIS&lIIN Ib% 52A +shimmer 'SIm@R I0%,L@% 22A,2C +shimmered 'SIm@d Ic%,Id% 22A,2C +shimmering 'SIm@rIN Ib% 32A,2C +shimmers 'SIm@z Ia% 22A,2C +shin SIn I4%,K6% 13A +shinbone 'SInb@Un K6% 2 +shinbones 'SInb@Unz Kj% 2 +shindies 'SIndIz Kj% 2 +shindig 'SIndIg K6% 2 +shindigs 'SIndIgz Kj% 2 +shindy 'SIndI K8% 2 +shine SaIn J5%,L@% 12A,2C,6A +shines SaInz Ja% 12A,2C,6A +shingle 'SINgl H2$,M6% 26A +shingled 'SINgld Hc$,Hd$ 26A +shingles 'SINglz Ha$,Lk%,Mj% 26A +shinglier 'SINglI@R Or$ 3 +shingliest 'SINglIIst Os$ 3 +shingling 'SINglIN Hb$ 26A +shingly 'SINglI OD% 2 +shinguard 'SIngAd K6% 2 +shinguards 'SIngAdz Kj% 2 +shinier 'SaInI@R Or% 3 +shiniest 'SaInIIst Os% 3 +shining 'SaInIN Jb% 22A,2C,6A +shinned SInd Ic%,Id% 13A +shinning 'SInIN Ib% 23A +shins SInz Ia%,Kj% 13A +shiny 'SaInI OD% 2 +ship SIp J4%,K6% 12C,6A,15A,15B +ship's-chandler Sips-'tSAndl@R K6% 3 +ship's-chandlers Sips-'tSAndl@z Kj% 3 +ship-breaker 'SIp-breIk@R K6% 3 +ship-breakers 'SIp-breIk@z Kj% 3 +ship-canal 'SIp-k@n&l K6% 3 +ship-canals 'SIp-k@n&lz Kj% 3 +shipboard 'SIpbOd Oq% 2 +shipbroker 'SIpbr@Uk@R K6$ 3 +shipbrokers 'SIpbr@Uk@z Kj$ 3 +shipbuilder 'SIpbIld@R K6% 3 +shipbuilders 'SIpbIld@z Kj% 3 +shipbuilding 'SIpbIldIN L@% 3 +shipload 'SIpl@Ud K6% 2 +shiploads 'SIpl@Udz Kj% 2 +shipmate 'SIpmeIt K6% 2 +shipmates 'SIpmeIts Kj% 2 +shipment 'SIpm@nt M6% 2 +shipments 'SIpm@nts Mj% 2 +shipowner 'SIp@Un@R K6% 3 +shipowners 'SIp@Un@z Kj% 3 +shipped SIpt Jc%,Jd% 12C,6A,15A,15B +shipper 'SIp@R K6% 2 +shippers 'SIp@z Kj% 2 +shipping 'SIpIN Jb%,L@% 22C,6A,15A,15B +shipping-agent 'SIpIN-eIdZ@nt K6% 4 +shipping-agents 'SIpIN-eIdZ@nts Kj% 4 +shipping-office 'SIpIN-0fIs K6% 4 +shipping-offices 'SIpIN-0fIsIz Kj% 5 +ships SIps Ja%,Kj% 12C,6A,15A,15B +shipshape 'SIpSeIp OA%,Pu% 2 +shipway 'SIpweI K6% 2 +shipways 'SIpweIz Kj% 2 +shipwreck 'SIprek I0$,M6% 2 +shipwrecked 'SIprekt Ic$,Id% 2 +shipwrecking 'SIprekIN Ib$ 3 +shipwrecks 'SIpreks Ia$,Mj% 2 +shipwright 'SIpraIt K6% 2 +shipwrights 'SIpraIts Kj% 2 +shipyard 'SIpjAd K6% 2 +shipyards 'SIpjAdz Kj% 2 +shire 'SaI@R K6% 1 +shires 'SaI@z Kj% 1 +shirk S3k J0% 12A,6A,6D +shirked S3kt Jc%,Jd% 12A,6A,6D +shirker 'S3k@R K6% 2 +shirkers 'S3k@z Kj% 2 +shirking 'S3kIN Jb% 22A,6A,6D +shirks S3ks Ja% 12A,6A,6D +shirt S3t K6% 1 +shirt-front S3t-'frVnt K6% 2 +shirt-fronts S3t-'frVnts Kj% 2 +shirtier 'S3tI@R Or$ 3 +shirtiest 'S3tIIst Os$ 3 +shirting 'S3tIN L@$ 2 +shirts S3ts Kj% 1 +shirtsleeves 'S3tslivz Kj% 2 +shirtwaist S3t'weIst K6% 2 +shirtwaister S3t'weIst@R K6% 3 +shirtwaisters S3t'weIst@z Kj% 3 +shirtwaists S3t'weIsts Kj% 2 +shirty 'S3tI OD% 2 +shish kebab ,SIS k@'b&b K6% 3 +shish kebabs ,SIS k@'b&bz Kj% 3 +shit SIt I4%,L@%,W-% 12A,3A +shits SIts Ia% 12A,3A +shitted 'SItId Ic$,Id$ 22A,3A +shitting 'SItIN Ib% 22A,3A +shiver 'SIv@R J0%,K6% 22A,2C,15A +shivered 'SIv@d Jc%,Jd% 22A,2C,15A +shivering 'SIv@rIN Jb% 32A,2C,15A +shivers 'SIv@z Ja%,Kj% 22A,2C,15A +shivery 'SIv@rI OA% 3 +shoal S@Ul I0$,K6% 12A +shoaled S@Uld Ic$,Id$ 12A +shoaling 'S@UlIN Ib$ 22A +shoals S@Ulz Ia$,Kj% 12A +shock S0k H0%,M6%,Pu% 16A +shock-brigade 'S0k-brIgeId K6$ 3 +shock-brigades 'S0k-brIgeIdz Kj$ 3 +shock-headed S0k-'hedId OA$ 3 +shock-worker 'S0k-w3k@R K6$ 3 +shock-workers 'S0k-w3k@z Kj$ 3 +shockable 'S0k@bl OA% 3 +shocked S0kt Hc%,Hd% 16A +shocker 'S0k@R K6% 2 +shockers 'S0k@z Kj% 2 +shocking 'S0kIN Hb%,OA% 26A +shockingly 'S0kINlI Pu% 3 +shocks S0ks Ha%,Mj% 16A +shod S0d Hc%,Hd% 16A +shoddier 'S0dI@R Or% 3 +shoddiest 'S0dIIst Os% 3 +shoddiness 'S0dInIs L@% 3 +shoddy 'S0dI L@%,OD% 2 +shoe Su H5%,K6% 16A +shoe-leather 'Su-leD@R M6% 3 +shoe-leathers 'Su-leD@z Mj$ 3 +shoeblack 'Subl&k L@$ 2 +shoehorn 'SuhOn K6% 2 +shoehorns 'SuhOnz Kj% 2 +shoeing 'SuIN Hb% 26A +shoelace 'SuleIs K6% 2 +shoelaces 'SuleIsIz Kj% 3 +shoemaker 'SumeIk@R K6% 3 +shoemakers 'SumeIk@z Kj% 3 +shoemaking 'SumeIkIN L@% 3 +shoes Suz Ha%,Kj% 16A +shoestring 'SustrIN K6% 2 +shoestrings 'SustrINz Kj% 2 +shoetree 'Sutri K6$ 2 +shoetrees 'Sutriz Kj$ 2 +shogun 'S@Ugun K6$ 2 +shoguns 'S@Ugunz Kj$ 2 +shone S0n Jc%,Jd% 12A,2C,6A +shoo Su J0% 115B +shooed Sud Jc%,Jd% 115B +shooing 'SuIN Jb% 215B +shook SUk Jc% 12A,2C,6A,14,15A,15B +shoos Suz Ja% 115B +shoot Sut J5%,K6% 12A,2C,4A,6A,15A,15B +shooter 'Sut@R K6% 2 +shooters 'Sut@z Kj% 2 +shooting 'SutIN Jb%,L@% 22A,2C,4A,6A,15A,15B +shooting-box 'SutIN-b0ks K7$ 3 +shooting-boxes 'SutIN-b0ksIz Kj$ 4 +shooting-brake 'SutIN-breIk K6% 3 +shooting-brakes 'SutIN-breIks Kj% 3 +shooting-galleries 'SutIN-g&l@rIz Kj% 5 +shooting-gallery 'SutIN-g&l@rI K8% 5 +shooting-range 'SutIN-reIndZ K6% 3 +shooting-ranges 'SutIN-reIndZIz Kj% 4 +shooting-stick 'SutIN-stIk K6% 3 +shooting-sticks 'SutIN-stIks Kj% 3 +shoots Suts Ja%,Kj% 12A,2C,4A,6A,15A,15B +shop S0p I4%,M6% 12A,2C +shop-assistant 'S0p-@sIst@nt K6% 4 +shop-assistants 'S0p-@sIst@nts Kj% 4 +shop-bell 'S0p-bel K6% 2 +shop-bells 'S0p-belz Kj% 2 +shop-boy 'S0p-boI K6$ 2 +shop-boys 'S0p-boIz Kj$ 2 +shop-front S0p-'frVnt K6% 2 +shop-fronts S0p-'frVnts Kj% 2 +shop-girl 'S0p-g3l K6$ 2 +shop-girls 'S0p-g3lz Kj$ 2 +shop-steward S0p-'stjU@d K6% 3 +shop-stewards S0p-'stjU@dz Kj% 3 +shopkeeper 'S0pkip@R K6% 3 +shopkeepers 'S0pkip@z Kj% 3 +shoplift 'S0plIft J0$ 22A,6A +shoplifted 'S0plIftId Jc$,Jd$ 32A,6A +shoplifter 'S0plIft@R K6% 3 +shoplifters 'S0plIft@z Kj% 3 +shoplifting 'S0plIftIN Jb%,L@% 32A,6A +shoplifts 'S0plIfts Ja$ 22A,6A +shopped S0pt Ic%,Id% 12A,2C +shopper 'S0p@R K6% 2 +shoppers 'S0p@z Kj% 2 +shopping 'S0pIN Ib%,L@% 22A,2C +shops S0ps Ia%,Mj% 12A,2C +shopsoiled 'S0psoIld OA% 2 +shopwalker 'S0pwOk@R K6$ 3 +shopwalkers 'S0pwOk@z Kj$ 3 +shopwindow S0p'wInd@U K6% 3 +shopwindows S0p'wInd@Uz Kj% 3 +shopworn 'S0pwOn OA% 2 +shore SOR H2%,M6% 115B +shored SOd Hc%,Hd% 115B +shores SOz Ha%,Mj% 115B +shoring 'SOrIN Hb% 215B +shorn SOn Hd% 16A +short SOt J0%,K6%,OC*,Pu* 1 +short-change SOt-'tSeIndZ H2$ 2 +short-changed SOt-'tSeIndZd Hc%,Hd% 2 +short-changes SOt-'tSeIndZIz Ha$ 3 +short-changing SOt-'tSeIndZIN Hb$ 3 +short-circuit SOt-'s3kIt J0%,K6% 3 +short-circuited SOt-'s3kItId Jc%,Jd% 4 +short-circuiting SOt-'s3kItIN Jb% 4 +short-circuits SOt-'s3kIts Ja%,Kj% 3 +short-dated SOt-'deItId OA$ 3 +short-handed SOt-'h&ndId OA% 3 +short-lived SOt-'lIvd OA% 2 +short-range 'SOt-reIndZ OA% 2 +short-sighted SOt-'saItId OA% 3 +short-tempered SOt-'temp@d OA% 3 +short-term 'SOt-t3m Oq% 2 +short-winded SOt-'wIndId OA% 3 +shortage 'SOtIdZ M6% 2 +shortages 'SOtIdZIz Mj% 3 +shortbread 'SOtbred L@% 2 +shortcake 'SOtkeIk L@% 2 +shortcoming 'SOtkVmIN K6% 3 +shortcomings 'SOtkVmINz Kj% 3 +shorted 'SOtId Jc%,Jd% 2 +shorten 'SOtn J0% 22A,6A +shortened 'SOtnd Jc%,Jd% 22A,6A +shortening 'SOtnIN Jb%,L@% 22A,6A +shortens 'SOtnz Ja% 22A,6A +shorter 'SOt@R Or% 2 +shortest 'SOtIst Os% 2 +shortfall 'SOtfOl K6% 2 +shortfalls 'SOtfOlz Kj% 2 +shorthand 'SOth&nd L@% 2 +shorthorn 'SOthOn K6$ 2 +shorthorns 'SOthOnz Kj$ 2 +shorting 'SOtIN Jb% 2 +shortish 'SOtIS OA% 2 +shortlist 'SOtlIst H0%,K6% 2 +shortlisted 'SOtlIstId Hc%,Hd% 3 +shortlisting 'SOtlIstIN Hb% 3 +shortlists 'SOtlIsts Ha%,Kj% 2 +shortly 'SOtlI Pu% 2 +shortness 'SOtn@s L@% 2 +shorts SOts Ja%,Kj% 1 +shot S0t Jc%,Jd%,M6% 12A,2C,4A,6A,15A,15B +shot-put 'S0t-pUt M6% 2 +shot-puts 'S0t-pUts Mj$ 2 +shot-tower 'S0t-taU@R K6$ 3 +shot-towers 'S0t-taU@z Kj$ 3 +shotgun 'S0tgVn K6% 2 +shotguns 'S0tgVnz Kj% 2 +shots S0ts Mj% 1 +should SUd G5* 1 +shoulder 'S@Uld@R H0%,K6% 26A,15A +shoulder-blade 'S@Uld@-bleId K6% 3 +shoulder-blades 'S@Uld@-bleIdz Kj% 3 +shoulder-flash 'S@Uld@-fl&S K7$ 3 +shoulder-flashes 'S@Uld@-fl&SIz Kj$ 4 +shoulder-strap 'S@Uld@-str&p K6% 3 +shoulder-straps 'S@Uld@-str&ps Kj% 3 +shouldered 'S@Uld@d Hc%,Hd% 26A,15A +shouldering 'S@Uld@rIN Hb% 36A,15A +shoulders 'S@Uld@z Ha%,Kj% 26A,15A +shouldn't 'SUdnt Gg% 2 +shout SaUt J0%,K6% 12A,2B,2C,3A,4B,6A,15A,15B,22 +shouted 'SaUtId Jc%,Jd% 22A,2B,2C,3A,4B,6A,15A,15B,22 +shouting 'SaUtIN Jb%,L@% 22A,2B,2C,3A,4B,6A,15A,15B,22 +shouts SaUts Ja%,Kj% 12A,2B,2C,3A,4B,6A,15A,15B,22 +shove SVv J2%,K6% 12A,2C,6A,15A,15B +shove-ha'penny ,SVv-'heIpnI L@% 3 +shoved SVvd Jc%,Jd% 12A,2C,6A,15A,15B +shovel 'SVvl H4%,K6% 26A,15A,15B +shovel-board 'SVvl-bOd L@$ 3 +shovelful 'SVvlfUl K6% 3 +shovelfuls 'SVvlfUlz Kj% 3 +shovelled 'SVvld Hc%,Hd% 26A,15A,15B +shovelling 'SVv@lIN Hb% 36A,15A,15B +shovels 'SVvlz Ha%,Kj% 26A,15A,15B +shoves SVvz Ja%,Kj% 12A,2C,6A,15A,15B +shoving 'SVvIN Jb% 22A,2C,6A,15A,15B +show S@U J0*,M6% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +show-business 'S@U-bIzn@s L@% 3 +show-off 'S@U-0f K6% 2 +show-offs 'S@U-0fs Kj% 2 +show-window 'S@U-wInd@U K6$ 3 +show-windows 'S@U-wInd@Uz Kj$ 3 +showbiz 'S@UbIz L@% 2 +showboat 'S@Ub@Ut K6% 2 +showboats 'S@Ub@Uts Kj% 2 +showcase 'S@UkeIs K6% 2 +showcases 'S@UkeIsIz Kj% 3 +showdown 'S@UdaUn K6% 2 +showdowns 'S@UdaUnz Kj$ 2 +showed S@Ud Jc%,Jd% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shower 'SaU@R J0%,K6% 22C,14 +shower-bath 'SaU@-bAT K6% 3 +shower-baths 'SaU@-bADz Kj% 3 +showered 'SaU@d Jc%,Jd% 22C,14 +showerier 'SaU@rI@R Or$ 4 +showeriest 'SaU@rIIst Os$ 4 +showering 'SaU@rIN Jb% 32C,14 +showers 'SaU@z Ja%,Kj% 22C,14 +showery 'SaU@rI OD% 3 +showgirl 'S@Ug3l K6% 2 +showgirls 'S@Ug3lz Kj% 2 +showier 'S@UI@R Or$ 3 +showiest 'S@UIIst Os$ 3 +showily 'S@UIlI Pu% 3 +showiness 'S@UIn@s L@% 3 +showing 'S@UIN Jb%,K6% 22A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +showings 'S@UINz Kj% 2 +showjumping 'S@UdZVmpIN L@% 3 +showman 'S@Um@n Ki% 2 +showmanship 'S@Um@nSIp L@% 3 +showmen 'S@Um@n Kj% 2 +shown S@Un Jc%,Jd% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +showplace 'S@UpleIs K6% 2 +showplaces 'S@UpleIsIz Kj% 3 +showroom 'S@Urum K6% 2 +showrooms 'S@Urumz Kj% 2 +shows S@Uz Ja%,Mj% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +showy 'S@UI OD% 2 +shrank Sr&Nk Jc% 12A,2C,3A,6A +shrapnel 'Sr&pn@l L@% 2 +shred Sred H4%,K6% 16A +shredded 'SredId Hc%,Hd% 26A +shredding 'SredIN Hb% 26A +shreds Sredz Ha%,Kj% 16A +shrew Sru K6% 1 +shrew-mice 'Sru-maIs Kj$ 2 +shrew-mouse 'Sru-maUs Ki$ 2 +shrewd Srud OC% 1 +shrewder 'Srud@R Or% 2 +shrewdest 'SrudIst Os% 2 +shrewdly 'SrudlI Pu% 2 +shrewdness 'Srudn@s L@% 2 +shrewish 'SruIS OA% 2 +shrewishly 'SruISlI Pu% 3 +shrewishness 'SruISn@s L@% 3 +shrews Sruz Kj% 1 +shriek Srik J0%,K6% 12A,2C,6A,15B +shrieked Srikt Jc%,Jd% 12A,2C,6A,15B +shrieking 'SrikIN Jb% 22A,2C,6A,15B +shrieks Sriks Ja%,Kj% 12A,2C,6A,15B +shrift SrIft L@% 1 +shrike SraIk K6$ 1 +shrikes SraIks Kj$ 1 +shrill SrIl J0%,OC% 1 +shrilled SrIld Jc%,Jd% 1 +shriller 'SrIl@R Or% 2 +shrillest 'SrIlIst Os% 2 +shrilling 'SrIlIN Jb% 2 +shrillness 'SrIln@s L@% 2 +shrills SrIlz Ja% 1 +shrilly 'SrIlI Pu% 2 +shrimp SrImp I0$,K6% 1 +shrimped SrImpt Ic$,Id$ 1 +shrimping 'SrImpIN Ib% 2 +shrimps SrImps Ia$,Kj% 1 +shrine SraIn H2$,K6% 1 +shrined SraInd Hc$,Hd$ 1 +shrines SraInz Ha$,Kj% 1 +shrining 'SraInIN Hb$ 2 +shrink SrINk J5%,K6% 12A,2C,3A,6A +shrinkable 'SrInk@bl OA$ 3 +shrinkage 'SrInkIdZ L@% 2 +shrinking 'SrINkIN Jb% 22A,2C,3A,6A +shrinks SrINks Ja%,Kj% 12A,2C,3A,6A +shrive SraIv H2$ 16A +shrived SraIvd Hc$,Hd$ 16A +shrivel 'SrIvl J4% 22A,2C,6A,15B +shrivelled 'SrIvld Jc%,Jd% 22A,2C,6A,15B +shrivelling 'SrIv@lIN Jb% 32A,2C,6A,15B +shrivels 'SrIvlz Ja% 22A,2C,6A,15B +shriven 'SrIvn Hd$ 26A +shrives SraIvz Ha$ 16A +shriving 'SraIvIN Hb$ 26A +shroud SraUd H0%,K6% 16A,15A +shrouded 'SraUdId Hc%,Hd% 26A,15A +shrouding 'SraUdIN Hb% 26A,15A +shrouds SraUdz Ha%,Kj% 16A,15A +shrove Sr@Uv Hc$ 16A +shrub SrVb K6% 1 +shrubberies 'SrVb@rIz Kj% 3 +shrubbery 'SrVb@rI K8% 3 +shrubs SrVbz Kj% 1 +shrug SrVg H4%,K6% 16A,15B +shrugged SrVgd Hc%,Hd% 16A,15B +shrugging 'SrVgIN Hb% 26A,15B +shrugs SrVgz Ha%,Kj% 16A,15B +shrunk SrVNk Jd% 12A,2C,3A,6A +shrunken 'SrVnk@n Jd% 22A,2C,3A,6A +shuck SVk H0$,K6$ 16A +shucked SVkt Hc$,Hd$ 16A +shucking 'SVkIN Hb$ 26A +shucks SVks Ha$,Kj$ 16A +shudder 'SVd@R I0%,K6% 22A,2C,4C +shuddered 'SVd@d Ic%,Id% 22A,2C,4C +shuddering 'SVd@rIN Ib% 32A,2C,4C +shudderingly 'SVd@rINlI Pu% 4 +shudders 'SVd@z Ia%,Kj% 22A,2C,4C +shuffle 'SVfl J2%,K6% 22A,2C,6A,15A,15B +shuffled 'SVfld Jc%,Jd% 22A,2C,6A,15A,15B +shuffler 'SVfl@R K6% 2 +shufflers 'SVfl@z Kj% 2 +shuffles 'SVflz Ja%,Kj% 22A,2C,6A,15A,15B +shuffling 'SVflIN Jb% 22A,2C,6A,15A,15B +shun SVn H4% 16A,6D +shunned SVnd Hc%,Hd% 16A,6D +shunning 'SVnIN Hb% 26A,6D +shuns SVnz Ha% 16A,6D +shunt SVnt J0% 12A,6A,15A,15B +shunted 'SVntId Jc%,Jd% 22A,6A,15A,15B +shunter 'SVnt@R K6$ 2 +shunters 'SVnt@z Kj$ 2 +shunting 'SVntIN Jb% 22A,6A,15A,15B +shunts SVnts Ja% 12A,6A,15A,15B +shush SUS J1$ 1 +shushed SUSt Jc$,Jd$ 1 +shushes 'SUSIz Ja$ 2 +shushing 'SUSIN Jb$ 2 +shut SVt J5%,Jc%,Jd% 12A,2C,6A,15A,15B +shutdown 'SVtdaUn K6% 2 +shutdowns 'SVtdaUnz Kj$ 2 +shuteye 'SVtaI L@% 2 +shuts SVts Ja% 12A,2C,6A,15A,15B +shutter 'SVt@R H0$,K6% 26A +shuttered 'SVt@d Hc$,Hd% 26A +shuttering 'SVt@rIN Hb$ 36A +shutters 'SVt@z Ha$,Kj% 26A +shutting 'SVtIN Jb% 22A,2C,6A,15A,15B +shuttle 'SVtl J2%,K6% 22C,6A,15A +shuttlecock 'SVtlk0k K6% 3 +shuttlecocks 'SVtlk0ks Kj% 3 +shuttled 'SVtld Jc%,Jd% 22C,6A,15A +shuttles 'SVtlz Ja%,Kj% 22C,6A,15A +shuttling 'SVtlIN Jb% 22C,6A,15A +shy SaI J3%,K8%,OC% 12A,3A,6A,15A +shyer 'SaI@R Or% 2 +shyest 'SaIIst Os% 2 +shying 'SaIIN Jb% 22A,3A,6A,15A +shyly 'SaIlI Pu% 2 +shyness 'SaIn@s L@% 2 +shyster 'SaIst@R K6$ 2 +shysters 'SaIst@z Kj$ 2 +sibilant 'sIbIl@nt K6$,OA% 3 +sibilants 'sIbIl@nts Kj$ 3 +sibling 'sIblIN K6% 2 +siblings 'sIblINz Kj% 2 +sibyl 'sIbl K6$ 2 +sibylline 'sIb@laIn OA$ 3 +sibyls 'sIblz Kj$ 2 +sic sIk Pu$ 1 +sick sIk H0%,OA% 1 +sick-benefit 'sIk-benIfIt M6% 4 +sick-benefits 'sIk-benIfIts Mj% 4 +sick-berth 'sIk-b3T K6% 2 +sick-berths 'sIk-b3Ts Kj% 2 +sick-headache sIk-'hedeIk K6% 3 +sick-headaches sIk-'hedeIks Kj% 3 +sick-leave 'sIk-liv L@% 2 +sick-list 'sIk-lIst K6% 2 +sick-lists 'sIk-lIsts Kj% 2 +sick-parade 'sIk-p@reId K6% 3 +sick-parades 'sIk-p@reIdz Kj% 3 +sick-pay 'sIk-peI L@% 2 +sick-room 'sIk-rum K6% 2 +sick-rooms 'sIk-rumz Kj% 2 +sickbay 'sIkbeI K6% 2 +sickbays 'sIkbeIz Kj% 2 +sickbed 'sIkbed K6% 2 +sickbeds 'sIkbedz Kj% 2 +sicked sIkt Hc%,Hd% 1 +sicken 'sIk@n J0% 22A,3A,4C,6A +sickened 'sIk@nd Jc%,Jd% 22A,3A,4C,6A +sickening 'sIk@nIN Jb%,OA% 32A,3A,4C,6A +sickeningly 'sIk@nINlI Pu% 4 +sickens 'sIk@nz Ja% 22A,3A,4C,6A +sicking 'sIkIN Hb$ 2 +sickish 'sIkIS OA$ 2 +sickle 'sIkl K6% 2 +sickles 'sIklz Kj% 2 +sicklier 'sIklI@R Or% 3 +sickliest 'sIklIIst Os% 3 +sickly 'sIklI OD% 2 +sickness 'sIkn@s M7% 2 +sicknesses 'sIkn@sIz Mj% 3 +sicks sIks Ha$ 1 +side saId I2%,M6* 13A +side-arms 'saId-Amz Kj$ 2 +side-chapel 'saId-tS&pl K6% 3 +side-chapels 'saId-tS&plz Kj% 3 +side-dish 'saId-dIS K7% 2 +side-dishes 'saId-dISIz Kj% 3 +side-drum 'saId-drVm K6% 2 +side-drums 'saId-drVmz Kj% 2 +side-face 'saId-feIs Pu% 2 +side-glance saId-'glAns K6% 2 +side-glances saId-'glAnsIz Kj% 3 +side-road 'saId-r@Ud K6% 2 +side-roads 'saId-r@Udz Kj% 2 +side-saddle 'saId-s&dl K6%,Pu% 3 +side-saddles 'saId-s&dlz Kj% 3 +side-slip 'saId-slip I4$,K6$ 2 +side-slipped 'saId-slipt Ic$,Id$ 2 +side-slipping 'saId-slipIN Ib$ 3 +side-slips 'saId-slips Ia$,Kj$ 2 +side-splitting 'saId-splItIN OA% 3 +side-stroke 'saId-str@Uk L@% 2 +side-view saId-'vju K6% 2 +side-views saId-'vjuz Kj% 2 +side-whiskers 'saId-wIsk@z Kj% 3 +sideboard 'saIdbOd K6% 2 +sideboards 'saIdbOdz Kj% 2 +sideburns 'saIdb3nz Kj% 2 +sidecar 'saIdkAR K6% 2 +sidecars 'saIdkAz Kj% 2 +sided 'saIdId Ic%,Id%,Ot% 23A +sidelight 'saIdlaIt K6% 2 +sidelights 'saIdlaIts Kj% 2 +sideline 'saIdlaIn K6% 2 +sidelines 'saIdlaInz Kj% 2 +sidelong 'saIdl0N OA%,Pu% 2 +sidereal saI'dI@rI@l OA$ 4 +sides saIdz Ia%,Mj% 13A +sideshow 'saIdS@U K6% 2 +sideshows 'saIdS@Uz Kj% 2 +sidesman 'saIdzm@n Ki% 2 +sidesmen 'saIdzm@n Kj% 2 +sidestep 'saIdstep J4%,K6% 22A,6A +sidestepped 'saIdstept Jc%,Jd% 22A,6A +sidestepping 'saIdstepIN Jb% 32A,6A +sidesteps 'saIdsteps Ja%,Kj% 22A,6A +sidetrack 'saIdtr&k H0$,K6$ 26A +sidetracked 'saIdtr&kt Hc$,Hd% 26A +sidetracking 'saIdtr&kIN Hb$ 36A +sidetracks 'saIdtr&ks Ha$,Kj$ 26A +sidewalk 'saIdwOk K6% 2 +sidewalks 'saIdwOks Kj% 2 +sidewards 'saIdw@dz Pu% 2 +sideways 'saIdweIz Pu% 2 +siding 'saIdIN Ib%,K6% 23A +sidings 'saIdINz Kj% 2 +sidle 'saIdl I2% 22C +sidled 'saIdld Ic%,Id% 22C +sidles 'saIdlz Ia% 22C +sidling 'saIdlIN Ib% 22C +siege sidZ M6% 1 +sieges 'sidZIz Mj% 2 +sienna sI'en@ L@$ 3 +sierra sI'e@r@ K6$ 3 +sierras sI'e@r@z Kj$ 3 +siesta sI'est@ K6% 3 +siestas sI'est@z Kj% 3 +sieve sIv H2%,K6% 16A +sieved sIvd Hc%,Hd% 16A +sieves sIvz Ha%,Kj% 16A +sieving 'sIvIN Hb% 26A +sift sIft J0% 12C,6A,14,15A,15B +sifted 'sIftId Jc%,Jd% 22C,6A,14,15A,15B +sifter 'sIft@R K6$ 2 +sifters 'sIft@z Kj$ 2 +sifting 'sIftIN Jb% 22C,6A,14,15A,15B +sifts sIfts Ja% 12C,6A,14,15A,15B +sigh saI J0%,K6% 12A,3A,6A,15B +sighed saId Jc%,Jd% 12A,3A,6A,15B +sighing 'saIIN Jb% 22A,3A,6A,15B +sighs saIz Ja%,Kj% 12A,3A,6A,15B +sight saIt H0%,M6% 16A +sighted 'saItId Hc%,Hd%,Ot% 26A +sighting 'saItIN Hb%,K6% 26A +sightings 'saItINz Kj% 2 +sightless 'saItlIs OA% 2 +sights saIts Ha%,Mj% 16A +sightseeing 'saItsiIN L@% 3 +sightseer 'saItsi@R K6% 3 +sightseers 'saItsi@z Kj% 3 +sign saIn J0%,K6% 12A,2C,3A,6A,15B +sign-painter 'saIn-peInt@R K6% 3 +sign-painters 'saIn-peInt@z Kj% 3 +signal 'sIgn@l J4%,K6%,Oq% 22A,2C,6A,9,17 +signal-box 'sIgn@l-b0ks K7% 3 +signal-boxes 'sIgn@l-b0ksIz Kj% 4 +signalize 'sIgn@laIz H2$ 36A +signalized 'sIgn@laIzd Hc$,Hd$ 36A +signalizes 'sIgn@laIzIz Ha$ 46A +signalizing 'sIgn@laIzIN Hb$ 46A +signalled 'sIgn@ld Jc%,Jd% 22A,2C,6A,9,17 +signaller 'sIgn@l@R K6% 3 +signallers 'sIgn@l@z Kj% 3 +signalling 'sIgn@lIN Jb% 32A,2C,6A,9,17 +signally 'sIgn@lI Pu% 3 +signalman 'sIgn@lm@n Ki% 3 +signalmen 'sIgn@lm@n Kj% 3 +signals 'sIgn@lz Ja%,Kj% 22A,2C,6A,9,17 +signatories 'sIgn@trIz Kj% 3 +signatory 'sIgn@trI K8% 3 +signature 'sIgn@tS@R K6% 3 +signatures 'sIgn@tS@z Kj% 3 +signed saInd Jc%,Jd% 12A,2C,3A,6A,15B +signet 'sIgnIt K6% 2 +signet-ring 'sIgnIt-rIN K6% 3 +signet-rings 'sIgnIt-rINz Kj% 3 +signets 'sIgnIts Kj$ 2 +significance sIg'nIfIk@ns L@% 4 +significant sIg'nIfIk@nt OA% 4 +significantly sIg'nIfIk@ntlI Pu% 5 +signification ,sIgnIfI'keISn K6% 5 +significations ,sIgnIfI'keISnz Kj$ 5 +significative sIg'nIfIk@tIv OA$ 5 +signified 'sIgnIfaId Jc%,Jd% 32A,2C,6A,9,15A +signifies 'sIgnIfaIz Ja% 32A,2C,6A,9,15A +signify 'sIgnIfaI J3% 32A,2C,6A,9,15A +signifying 'sIgnIfaIIN Jb% 42A,2C,6A,9,15A +signing 'saInIN Jb% 22A,2C,3A,6A,15B +signor 'sinjOR K6$ 2 +signora sI'njOr@ K6$ 3 +signoras sI'njOr@z Kj$ 3 +signorina ,sInjO'rin@ K6$ 4 +signorinas ,sInjO'rin@z Kj$ 4 +signors 'sinjOz Kj$ 2 +signpost 'saInp@Ust H0%,K6% 2 +signposted 'saInp@UstId Hc%,Hd% 3 +signposting 'saInp@UstIN Hb% 3 +signposts 'saInp@Usts Ha%,Kj% 2 +signs saInz Ja%,Kj% 12A,2C,3A,6A,15B +silage 'saIlIdZ L@$ 2 +silence 'saIl@ns H2%,M6% 26A +silenced 'saIl@nst Hc%,Hd% 26A +silencer 'saIl@ns@R K6% 3 +silencers 'saIl@ns@z Kj% 3 +silences 'saIl@nsIz Ha%,Mj% 36A +silencing 'saIl@nsIN Hb% 36A +silent 'saIl@nt OA% 2 +silently 'saIl@ntlI Pu% 3 +silhouette ,sIlu'et H2%,K6% 3 +silhouetted ,sIlu'etId Hc%,Hd% 4 +silhouettes ,sIlu'ets Ha%,Kj% 3 +silhouetting ,sIlu'etIN Hb% 4 +silica 'sIlIk@ L@$ 3 +silicate 'sIlIkeIt L@$ 3 +silicon 'sIlIk@n L@% 3 +silicone 'sIlIk@Un L@$ 3 +silicosis ,sIlI'k@UsIs L@$ 4 +silk sIlk M6% 1 +silken 'sIlk@n OA% 2 +silkier 'sIlkI@R Or% 3 +silkiest 'sIlkIIst Os% 3 +silkily 'sIlkIlI Pu% 3 +silkiness 'sIlkIn@s L@% 3 +silks sIlks Mj% 1 +silkworm 'sIlkw3m K6% 2 +silkworms 'sIlkw3mz Kj% 2 +silky 'sIlkI OD% 2 +sill sIl K6% 1 +sillabub 'sIl@bVb M6$ 3 +sillabubs 'sIl@bVbz Mj$ 3 +sillier 'sIlI@R Or% 3 +sillies 'sIlIz Kj$ 2 +silliest 'sIlIIst Os% 3 +silliness 'sIlIn@s L@% 3 +sills sIlz Kj% 1 +silly 'sIlI K8$,OD% 2 +silo 'saIl@U K6% 2 +silos 'saIl@Uz Kj% 2 +silt sIlt J0%,L@% 12C,15B +silted 'sIltId Jc%,Jd% 22C,15B +silting 'sIltIN Jb% 22C,15B +silts sIlts Ja% 12C,15B +silvan 'sIlv@n OA$ 2 +silver 'sIlv@R J0%,L@% 22A,6A +silver-fish 'sIlv@-fIS K9% 3 +silver-fishes 'sIlv@-fISIz Kj% 4 +silvered 'sIlv@d Jc%,Jd% 22A,6A +silverier 'sIlv@rI@R Or$ 4 +silveriest 'sIlv@rIIst Os$ 4 +silvering 'sIlv@rIN Jb$ 32A,6A +silvern 'sIlv@n OA$ 2 +silvers 'sIlv@z Ja$ 22A,6A +silverside 'sIlv@saId L@% 3 +silversmith 'sIlv@smIT K6% 3 +silversmiths 'sIlv@smITs Kj% 3 +silvery 'sIlv@rI OD% 3 +simian 'sImI@n K6$,OA% 3 +simians 'sImI@nz Kj$ 3 +similar 'sIm@l@R OA% 3 +similarities ,sIm@'l&rItIz Mj% 5 +similarity ,sIm@'l&rItI M8% 5 +similarly 'sIm@l@lI Pu% 4 +simile 'sImIlI M6% 3 +similes 'sImIlIz Mj% 3 +similitude sI'mIlItjud M6% 4 +similitudes sI'mIlItjudz Mj$ 4 +simmer 'sIm@R J0%,Ki% 22A,2B,2C,6A,15A +simmered 'sIm@d Jc%,Jd% 22A,2B,2C,6A,15A +simmering 'sIm@rIN Jb% 32A,2B,2C,6A,15A +simmers 'sIm@z Ja% 22A,2B,2C,6A,15A +simony 'sIm@nI L@$ 3 +simoom sI'mum K6$ 2 +simooms sI'mumz Kj$ 2 +simoon sI'mun K6$ 2 +simoons sI'munz Kj$ 2 +simper 'sImp@R I0% 22A +simpered 'sImp@d Ic%,Id% 22A +simpering 'sImp@rIN Ib% 32A +simperingly 'sImprINlI Pu% 3 +simpers 'sImp@z Ia% 22A +simple 'sImpl K6%,OB% 2 +simple-hearted ,sImpl-'hAtId OA% 4 +simple-minded ,sImpl-'maIndId OA% 4 +simpler 'sImpl@R Or% 2 +simples 'sImplz Kj$ 2 +simplest 'sImplIst Os% 2 +simpleton 'sImplt@n K6% 3 +simpletons 'sImplt@nz Kj% 3 +simplicity sIm'plIsItI L@% 4 +simplification ,sImplIfI'keISn M6% 5 +simplifications ,sImplIfI'keISnz Mj% 5 +simplified 'sImplIfaId Hc%,Hd% 36A +simplifies 'sImplIfaIz Ha% 36A +simplify 'sImplIfaI H3% 36A +simplifying 'sImplIfaIIN Hb% 46A +simply 'sImplI Pu% 2 +simulacra ,sImjU'leIkr@ Kj$ 4 +simulacrum ,sImjU'leIkr@m Ki$ 4 +simulate 'sImjUleIt H2% 36A +simulated 'sImjUleItId Hc%,Hd% 46A +simulates 'sImjUleIts Ha% 36A +simulating 'sImjUleItIN Hb% 46A +simulation ,sImjU'leISn L@% 4 +simulator 'sImjUleIt@R K6% 4 +simulators 'sImjUleIt@z Kj% 4 +simultaneity ,sImlt@'nI@tI L@% 6 +simultaneous ,sIml'teInI@s OA% 5 +simultaneously ,sIml'teInI@slI Pu% 6 +simultaneousness ,sIml'teInI@sn@s L@$ 6 +sin sIn I4%,M6% 12A,3A +since sIns Pu*,T-*,V-* 1 +sincere sIn'sI@R OA% 2 +sincerely sIn'sI@lI Pu% 3 +sincerity sIn'serItI L@% 4 +sine saIn K6$ 1 +sine die ,saInI 'daIi Pu$ 4 +sine qua non ,sIneI kwA 'n@Un Ki% 4 +sinecure 'saInIkjU@R K6% 3 +sinecures 'saInIkjU@z Kj% 3 +sines saInz Kj$ 1 +sinew 'sInju K6% 2 +sinews 'sInjuz Kj% 2 +sinewy 'sInjuI OA% 3 +sinful 'sInf@l OA% 2 +sinfulness 'sInf@ln@s L@% 3 +sing sIN J5% 12A,2C,3A,6A,12B,13B,15A +singable 'sIN@bl OA% 3 +singe sIndZ J5%,K6% 12A,6A +singed sIndZd Jc%,Jd% 12A,6A +singeing 'sIndZIN Jb% 22A,6A +singer 'sIN@R K6% 2 +singers 'sIN@z Kj% 2 +singes 'sIndZIz Ja%,Kj% 22A,6A +singing 'sININ Jb%,L@% 22A,2C,3A,6A,12B,13B,15A +single 'sINgl H2%,K6%,OA% 215B +single-breasted ,sINgl-'brestId OA% 4 +single-handed ,sINgl-'h&ndId OA%,Pu% 4 +single-minded ,sINgl-'maIndId OA% 4 +single-spacing ,sINgl-'speIsIN L@% 4 +singled 'sINgld Hc%,Hd% 215B +singleness 'sINgln@s L@% 3 +singles 'sINglz Ha%,Kj% 215B +singlestick 'sINglstIk M6$ 3 +singlesticks 'sINglstIks Mj$ 3 +singlet 'sINglIt K6% 2 +singleton 'sINglt@n K6% 3 +singletons 'sINglt@nz Kj% 3 +singlets 'sINglIts Kj% 2 +singling 'sINglIN Hb% 215B +singly 'sINglI Pu% 2 +sings sINz Ja% 12A,2C,3A,6A,12B,13B,15A +singsong 'sINs0N K6% 2 +singsongs 'sINs0Nz Kj% 2 +singular 'sINgjUl@R K6%,OA% 3 +singularities ,sINgjU'l&rItIz Mj% 5 +singularity ,sINgjU'l&rItI M8% 5 +singularize 'sINgjUl@raIz H2$ 4 +singularized 'sINgjUl@raIzd Hc$,Hd$ 4 +singularizes 'sINgjUl@raIzIz Ha$ 5 +singularizing 'sINgjUl@raIzIN Hb$ 5 +singularly 'sINgjUl@lI Pu% 4 +singulars 'sINgjUl@z Kj% 3 +sinister 'sInIst@R OA% 3 +sink sINk J5%,K6% 12A,2C,3A,6A,14,15A +sinkable 'sINk@bl OA% 3 +sinker 'sINk@R K6$ 2 +sinkers 'sINk@z Kj$ 2 +sinking 'sINkIN Jb%,K6% 22A,2C,3A,6A,14,15A +sinking-fund 'sINkIN-fVnd K6% 3 +sinking-funds 'sINkIN-fVndz Kj% 3 +sinkings 'sINkINz Kj% 2 +sinks sINks Ja%,Kj% 12A,2C,3A,6A,14,15A +sinless 'sInl@s OA% 2 +sinlessness 'sInl@sn@s L@$ 3 +sinned sInd Ic%,Id% 12A,3A +sinner 'sIn@R K6% 2 +sinners 'sIn@z Kj% 2 +sinning 'sInIN Ib% 22A,3A +sins sInz Ia%,Mj% 12A,3A +sinuosities ,sInjU'0sItIz Mj$ 5 +sinuosity ,sInjU'0sItI M8$ 5 +sinuous 'sInjU@s OA% 3 +sinus 'saIn@s K7% 2 +sinuses 'saIn@sIz Kj% 3 +sinusitis ,saIn@'saItIs L@% 4 +sip sIp J4%,K6% 12A,6A,15B +siphon 'saIf@n J0%,K6% 215B +siphoned 'saIf@nd Jc%,Jd% 215B +siphoning 'saIf@nIN Jb% 315B +siphons 'saIf@nz Ja%,Kj% 215B +sipped sIpt Jc%,Jd% 12A,6A,15B +sipping 'sIpIN Jb% 22A,6A,15B +sips sIps Ja%,Kj% 12A,6A,15B +sir s3R K6% 1 +sirdar 's3dAR K6$ 2 +sirdars 's3dAz Kj$ 2 +sire 'saI@R H2%,K6% 16A +sired 'saI@d Hc%,Hd% 16A +siren 'saI@r@n K6% 2 +sirens 'saI@r@nz Kj% 2 +sires 'saI@z Ha$,Kj$ 16A +siring 'saI@rIN Hb$ 26A +sirloin 's3loIn M6% 2 +sirloins 's3loInz Mj$ 2 +sirocco sI'r0k@U K6$ 3 +siroccos sI'r0k@Uz Kj$ 3 +sirrah 'sIr@ K6$ 2 +sirrahs 'sIr@z Kj$ 2 +sirs s3z Kj% 1 +sirup 'sIr@p M6$ 2 +sirups 'sIr@ps Mj$ 2 +sisal 'saIsl L@$ 2 +sissies 'sIsIz Kj% 2 +sissified 'sIsIfaId OA$ 3 +sissy 'sIsI K8% 2 +sister 'sIst@R K6% 2 +sister-in-law 'sIst@r-In-lO Ki% 4 +sisterhood 'sIst@hUd L@% 3 +sisterly 'sIst@lI OA% 3 +sisters 'sIst@z Kj% 2 +sisters-in-law 'sIst@z-In-lO Kj% 4 +sit sIt J5% 12A,2C,3A,6A,15B +sit-in 'sIt-In K6% 2 +sit-ins 'sIt-Inz Kj% 2 +sitar sI'tAR K6$ 2 +sitars sI'tAz Kj$ 2 +site saIt I2%,K6% 16A +sited 'saItId Ic%,Id% 26A +sites saIts Ia%,Kj% 16A +siting 'saItIN Ib% 26A +sits sIts Ja% 12A,2C,3A,6A,15B +sitter 'sIt@R K6% 2 +sitters 'sIt@z Kj% 2 +sitting 'sItIN Jb%,K6% 22A,2C,3A,6A,15B +sitting-room 'sItIN-rum K6% 3 +sitting-rooms 'sItIN-rumz Kj% 3 +sittings 'sItINz Kj% 2 +situated 'sItSUeItId Op% 4 +situation ,sItSU'eISn K6% 4 +situations ,sItSU'eISnz Kj% 4 +six sIks K7%,OA* 1 +six-footer sIks-'fUt@R K6% 3 +six-footers sIks-'fUt@z Kj% 3 +six-shooter 'sIks-Sut@R K6% 3 +six-shooters 'sIks-Sut@z Kj% 3 +sixes 'sIksIz Kj% 2 +sixfold 'sIksf@Uld OA%,Pu% 2 +sixpence 'sIksp@ns K6% 2 +sixpences 'sIksp@nsIz Kj% 3 +sixpenny 'sIksp@nI OA% 3 +sixteen sIk'stin K6%,OA% 2 +sixteens sIk'stinz Kj% 2 +sixteenth sik'stinT K6%,OA% 2 +sixteenths sik'stinTs Kj% 2 +sixth sIksT K6%,OA% 1 +sixth-former 'sIksT-fOm@R K6% 3 +sixth-formers 'sIksT-fOm@z Kj% 3 +sixthly 'sIksTlI Pu% 2 +sixths sIksTs Kj% 1 +sixties 'sIkstIz Kj% 2 +sixtieth 'sIkstI@T K6%,OA% 3 +sixtieths 'sIkstI@Ts Kj% 3 +sixty 'sIkstI K8%,OA% 2 +sizable 'saIz@bl OA$ 3 +size saIz H2%,M6% 16A,15B +sizeable 'saIz@bl OA% 3 +sized saIzd Hc%,Hd%,Ot% 16A,15B +sizes 'saIzIz Ha%,Mj% 26A,15B +sizing 'saIzIN Hb% 26A,15B +sizzle 'sIzl I2% 26A +sizzled 'sIzld Ic%,Id% 26A +sizzles 'sIzlz Ia% 26A +sizzling 'sIzlIN Ib% 26A +skate skeIt I2%,K6% 12A,2C +skateboard 'skeItbOd K6% 2 +skateboarder 'skeItbOd@R K6% 3 +skateboarders 'skeItbOd@z Kj% 3 +skateboarding 'skeItbOdIN L@% 3 +skateboards 'skeItbOdz Kj% 2 +skated 'skeItId Ic%,Id% 22A,2C +skater 'skeIt@R K6% 2 +skaters 'skeIt@z Kj% 2 +skates skeIts Ia%,Kj% 12A,2C +skating 'skeItIN Ib%,L@% 22A,2C +skating-rink 'skeItIN-rINk K6% 3 +skating-rinks 'skeItIN-rINks Kj% 3 +skedaddle skI'd&dl I2$ 32A +skedaddled skI'd&dld Ic$,Id$ 32A +skedaddles skI'd&dlz Ia$ 32A +skedaddling skI'd&dlIN Ib$ 32A +skeet skit K6$ 1 +skeets skits Kj$ 1 +skein skeIn K6$ 1 +skeins skeInz Kj$ 1 +skeleton 'skelItn K6% 3 +skeletons 'skelItnz Kj% 3 +skep skep K6$ 1 +skeps skeps Kj$ 1 +skeptical 'skeptIkl OA$ 3 +skeptically 'skeptIklI Pu$ 3 +skepticism 'skeptIsIz@m L@$ 4 +sketch sketS J1%,K7% 12A,6A,15B +sketch-block 'sketS-bl0k K6% 2 +sketch-blocks 'sketS-bl0ks Kj% 2 +sketch-book 'sketS-bUk K6% 2 +sketch-books 'sketS-bUks Kj% 2 +sketch-map 'sketS-m&p K6% 2 +sketch-maps 'sketS-m&ps Kj% 2 +sketched sketSt Jc%,Jd% 12A,6A,15B +sketcher 'sketS@R K6% 2 +sketchers 'sketS@z Kj% 2 +sketches 'sketSIz Ja%,Kj% 22A,6A,15B +sketchier 'sketSI@R Or% 3 +sketchiest 'sketSIIst Os% 3 +sketchily 'sketSIlI Pu% 3 +sketchiness 'sketSIn@s L@% 3 +sketching 'sketSIN Jb% 22A,6A,15B +sketchy 'sketSI OD% 2 +skew skju OA% 1 +skew-eyed 'skju-aId OA$ 2 +skewer 'skjU@R H0%,K6% 26A +skewered 'skjU@d Hc%,Hd% 26A +skewering 'skjU@rIN Hb% 36A +skewers 'skjU@z Ha%,Kj% 26A +ski ski I5%,K6% 1 +ski'd skid Ic%,Id% 1 +ski-bob 'ski-b0b K6$ 2 +ski-bobs 'ski-b0bz Kj$ 2 +ski-jump 'ski-dZVmp K6% 2 +ski-jumps 'ski-dZVmps Kj% 2 +ski-lift 'ski-lIft K6% 2 +ski-lifts 'ski-lIfts Kj% 2 +ski-plane 'ski-pleIn K6% 2 +ski-planes 'ski-pleInz Kj% 2 +skid skId I4%,K6% 12A +skidded 'skIdId Ic%,Id% 22A +skidding 'skIdIN Ib% 22A +skidpan 'skIdp&n K6% 2 +skidpans 'skIdp&nz Kj% 2 +skids skIdz Ia%,Kj% 12A +skied skaId Hc%,Hd% 1 +skier 'ski@R K6% 2 +skiers 'ski@z Kj% 2 +skies skaIz Ha%,Kj% 1 +skiff skIf K6$ 1 +skiffle 'skIfl L@% 2 +skiffle-group 'skIfl-grup K6% 3 +skiffle-groups 'skIfl-grups Kj% 3 +skiffs skIfs Kj$ 1 +skiing 'skiIN Ib% 2 +skilful 'skIlf@l OA% 2 +skilfully 'skIlf@lI Pu% 3 +skill skIl M6% 1 +skilled skIld OA% 1 +skillet 'skIlIt K6$ 2 +skillets 'skIlIts Kj$ 2 +skills skIlz Mj% 1 +skilly 'skIlI L@$ 2 +skim skIm J4% 12C,3A,6A,14,15A,15B +skimmed skImd Jc%,Jd% 12C,3A,6A,14,15A,15B +skimmed-milk skImd-'mIlk L@% 2 +skimmer 'skIm@R K6$ 2 +skimmers 'skIm@z Kj$ 2 +skimming 'skImIN Jb% 22C,3A,6A,14,15A,15B +skimp skImp J0% 12A,6A +skimped skImpt Jc%,Jd% 12A,6A +skimpier 'skImpI@R Or% 3 +skimpiest 'skImpIIst Os% 3 +skimpily 'skImpIlI Pu% 3 +skimping 'skImpIN Jb% 22A,6A +skimps skImps Ja% 12A,6A +skimpy 'skImpI OD% 2 +skims skImz Ja% 12C,3A,6A,14,15A,15B +skin skIn J4%,M6% 12C,6A,14 +skin-deep skIn-'dip OA% 2 +skin-diving 'skIn-daIvIN L@% 3 +skin-graft 'skIn-grAft K6% 2 +skin-grafts 'skIn-grAfts Kj% 2 +skin-tight 'skIn-taIt OA% 2 +skinflint 'skInflInt K6% 2 +skinflints 'skInflInts Kj% 2 +skinhead 'skInhed K6% 2 +skinheads 'skInhedz Kj% 2 +skinned skInd Jc%,Jd% 12C,6A,14 +skinnier 'skInI@R Or% 3 +skinniest 'skInIIst Os% 3 +skinning 'skInIN Jb% 22C,6A,14 +skinny 'skInI OD% 2 +skins skInz Ja%,Mj% 12C,6A,14 +skint skInt OA% 1 +skip skIp J4%,K6% 12A,2C,6A +skipped skIpt Jc%,Jd% 12A,2C,6A +skipper 'skIp@R H0%,K6% 2 +skippered 'skIp@d Hc%,Hd% 2 +skippering 'skIp@rIN Hb% 3 +skippers 'skIp@z Ha%,Kj% 2 +skipping 'skIpIN Jb% 22A,2C,6A +skipping-rope 'skIpIN-r@Up K6% 3 +skipping-ropes 'skIpIN-r@Ups Kj% 3 +skips skIps Ja%,Kj% 12A,2C,6A +skirl sk3l K6$ 1 +skirls sk3lz Kj$ 1 +skirmish 'sk3mIS I1$,K7% 22A,2C +skirmished 'sk3mISt Ic$,Id$ 22A,2C +skirmisher 'sk3mIS@R K6$ 3 +skirmishers 'sk3mIS@z Kj$ 3 +skirmishes 'sk3mISIz Ia$,Kj% 32A,2C +skirmishing 'sk3mISIN Ib$ 32A,2C +skirt sk3t J0%,K6% 12C,6A +skirted 'sk3tId Jc%,Jd% 22C,6A +skirting 'sk3tIN Jb% 22C,6A +skirting-board 'sk3tIN-bOd K6% 3 +skirting-boards 'sk3tIN-bOdz Kj% 3 +skirts sk3ts Ja%,Kj% 12C,6A +skis skiz Ia%,Kj% 1 +skit skIt K6% 1 +skits skIts Kj% 1 +skitter 'skIt@R I0% 22A +skittered 'skIt@d Ic% 22A +skittering 'skIt@rIN Ib% 32A +skitters 'skIt@z Ia% 22A +skittish 'skItIS OA% 2 +skittishly 'skItISlI Pu% 3 +skittishness 'skItISn@s L@% 3 +skittle 'skItl H2%,K6% 215B +skittle-pin 'skItl-pIn K6$ 3 +skittle-pins 'skItl-pInz Kj$ 3 +skittled 'skItld Hc%,Hd% 215B +skittles 'skItlz Ha%,Kj%,Lk% 215B +skittling 'skItlIN Hb% 215B +skivvies 'skIvIz Kj$ 2 +skivvy 'skIvI K8$ 2 +skua 'skju@ K6$ 2 +skuas 'skju@z Kj$ 2 +skulk skVlk I0% 12A,2C +skulked skVlkt Ic%,Id% 12A,2C +skulker 'skVlk@R K6$ 2 +skulkers 'skVlk@z Kj$ 2 +skulking 'skVlkIN Ib% 22A,2C +skulks skVlks Ia% 12A,2C +skull skVl K6% 1 +skullcap 'skVlk&p K6% 2 +skullcaps 'skVlk&ps Kj% 2 +skullduggery skVl'dVg@rI Ki% 4 +skulled skVld Ot% 1 +skulls skVlz Kj% 1 +skunk skVNk M6% 1 +skunks skVNks Mj% 1 +sky skaI H3%,K8% 1 +sky-blue skaI-'blu L@%,OA% 2 +sky-high skaI-'haI Pu% 2 +skying 'skaIIN Hb$ 2 +skylark 'skaIlAk I0%,K6% 2 +skylarked 'skaIlAkt Ic%,Id% 2 +skylarking 'skaIlAkIN Ib% 3 +skylarks 'skaIlAks Ia%,Kj% 2 +skylight 'skaIlaIt K6% 2 +skylights 'skaIlaIts Kj% 2 +skyline 'skaIlaIn K6% 2 +skylines 'skaIlaInz Kj$ 2 +skyrocket 'skaIr0kIt I0$ 3 +skyrocketed 'skaIr0kItId Ic$,Id$ 4 +skyrocketing 'skaIr0kItIN Ib$ 4 +skyrockets 'skaIr0kIts Ia$ 3 +skyscraper 'skaIskreIp@R K6% 3 +skyscrapers 'skaIskreIp@z Kj% 3 +skyward 'skaIw@d OA%,Pu% 2 +skywards 'skaIw@dz OA%,Pu% 2 +skywriting 'skaIraItIN L@% 3 +slab sl&b K6% 1 +slabs sl&bz Kj% 1 +slack sl&k I0%,M6%,OC% 12A,2C +slacked sl&kt Ic%,Id% 12A,2C +slacken 'sl&k@n J0% 22A,6A +slackened 'sl&k@nd Jc%,Jd% 22A,6A +slackening 'sl&k@nIN Jb% 32A,6A +slackens 'sl&k@nz Ja% 22A,6A +slacker 'sl&k@R K6%,Or% 2 +slackers 'sl&k@z Kj% 2 +slackest 'sl&kIst Os% 2 +slacking 'sl&kIN Ib% 22A,2C +slackly 'sl&klI Pu% 2 +slackness 'sl&kn@s L@% 2 +slacks sl&ks Ia%,Mj% 12A,2C +slag sl&g L@% 1 +slag-heap 'sl&g-hip K6% 2 +slag-heaps 'sl&g-hips Kj% 2 +slain sleIn Hd$ 16A +slake sleIk H2% 16A +slaked sleIkt Hc%,Hd% 16A +slakes sleIks Ha% 16A +slaking 'sleIkIN Hb% 26A +slalom 'slAl@m K6% 2 +slaloms 'slAl@mz Kj$ 2 +slam sl&m J4%,K6% 12A,2C,6A,15A,15B,22 +slammed sl&md Jc%,Jd% 12A,2C,6A,15A,15B,22 +slamming 'sl&mIN Jb% 22A,2C,6A,15A,15B,22 +slams sl&mz Ja%,Kj% 12A,2C,6A,15A,15B,22 +slander 'slAnd@R H0%,M6% 26A +slandered 'slAnd@d Hc%,Hd% 26A +slanderer 'slAnd@r@R K6% 3 +slanderers 'slAnd@r@z Kj% 3 +slandering 'slAnd@rIN Hb% 36A +slanderous 'slAnd@r@s OA% 3 +slanders 'slAnd@z Ha%,Mj% 26A +slang sl&N H0%,L@% 16A +slanged sl&Nd Hc%,Hd% 16A +slangier 'sl&NI@R Or$ 3 +slangiest 'sl&NIIst Os$ 3 +slangily 'sl&NIlI Pu$ 3 +slanginess 'sl&NIn@s L@% 3 +slanging 'sl&NIN Hb% 26A +slangs sl&Nz Ha% 16A +slangy 'sl&NI OD% 2 +slant slAnt J0%,K6% 12A,2C,6A +slanted 'slAntId Jc%,Jd% 22A,2C,6A +slanting 'slAntIN Jb% 22A,2C,6A +slantingly 'slAntINlI Pu% 3 +slants slAnts Ja%,Kj% 12A,2C,6A +slantwise 'slAntwaIz Pu% 2 +slap sl&p H4%,K6%,Pu% 16A,15A,15B +slap-bang sl&p-'b&N Pu% 2 +slap-happy sl&p-'h&pI OA% 3 +slap-up 'sl&p-Vp OA% 2 +slapdash 'sl&pd&S OA%,Pu% 2 +slapped sl&pt Hc%,Hd% 16A,15A,15B +slapping 'sl&pIN Hb% 26A,15A,15B +slaps sl&ps Ha%,Kj% 16A,15A,15B +slapstick 'sl&pstIk L@% 2 +slash sl&S J1%,K7% 12C,6A +slashed sl&St Jc%,Jd% 12C,6A +slashes 'sl&SIz Ja%,Kj% 22C,6A +slashing 'sl&SIN Jb% 22C,6A +slat sl&t K6% 1 +slate sleIt H2%,M6% 16A +slate-club 'sleIt-klVb K6$ 2 +slate-clubs 'sleIt-klVbz Kj$ 2 +slate-pencil 'sleIt-pensl K6$ 3 +slate-pencils 'sleIt-penslz Kj$ 3 +slated 'sleItId Hc%,Hd% 26A +slates sleIts Ha%,Mj% 16A +slatier 'sleItI@R Or$ 3 +slatiest 'sleItIIst Os$ 3 +slating 'sleItIN Hb%,K6% 26A +slatings 'sleItINz Kj$ 2 +slats sl&ts Kj% 1 +slatted 'sl&tId OA% 2 +slattern 'sl&t@n K6% 2 +slatternliness 'sl&t@nlIn@s L@% 4 +slatternly 'sl&t@nlI OA% 3 +slatterns 'sl&t@nz Kj% 2 +slaty 'sleItI OD$ 2 +slaughter 'slOt@R H0%,L@% 26A +slaughtered 'slOt@d Hc%,Hd% 26A +slaughterer 'slOt@r@R K6% 3 +slaughterers 'slOt@r@z Kj% 3 +slaughterhouse 'slOt@haUs K6% 3 +slaughterhouses 'slOt@haUzIz Kj% 4 +slaughtering 'slOt@rIN Hb% 36A +slaughters 'slOt@z Ha% 26A +slave sleIv I2%,K6% 12A,2B,2C,3A +slave-driver 'sleIv-draIv@R K6% 3 +slave-drivers 'sleIv-draIv@z Kj% 3 +slave-trade 'sleIv-treId L@% 2 +slave-traffic 'sleIv-tr&fIk L@% 3 +slaved sleIvd Ic%,Id% 12A,2B,2C,3A +slaver 'sl&v@R I0%,L@% 22A,2C +slavered 'sl&v@d Ic%,Id% 22A,2C +slavering 'sl&v@rIN Ib% 32A,2C +slavers 'sl&v@z Ia% 22A,2C +slavery 'sleIv@rI L@% 3 +slaves sleIvz Ia%,Kj% 12A,2B,2C,3A +slavey 'sleIvI K6$ 2 +slaveys 'sleIvIz Kj$ 2 +slaving 'sleIvIN Ib% 22A,2B,2C,3A +slavish 'sleIvIS OA% 2 +slavishly 'sleIvISlI Pu% 3 +slaw slO L@$ 1 +slay sleI H5% 16A +slayer 'sleI@R K6% 2 +slayers 'sleI@z Kj% 2 +slaying 'sleIIN Hb% 26A +slays sleIz Ha% 16A +sleazier 'slizI@R Or% 3 +sleaziest 'slizIIst Os% 3 +sleazy 'slizI OD% 2 +sled sled K6$ 1 +sledge sledZ J2%,K6% 1 +sledged sledZd Jc%,Jd% 1 +sledgehammer 'sledZh&m@R K6% 3 +sledgehammers 'sledZh&m@z Kj% 3 +sledges 'sledZIz Ja%,Kj% 2 +sledging 'sledZIN Jb% 2 +sleds sledz Kj$ 1 +sleek slik H0%,OC% 16A +sleeked slikt Hc%,Hd% 16A +sleeker 'slik@R Or% 2 +sleekest 'slikIst Os% 2 +sleeking 'slikIN Hb% 26A +sleekly 'sliklI Pu% 2 +sleekness 'slikn@s L@% 2 +sleeks sliks Ha% 16A +sleep slip J5%,L@% 12A,2B,2C,6A +sleeper 'slip@R K6% 2 +sleepers 'slip@z Kj% 2 +sleepier 'slipI@R Or% 3 +sleepiest 'slipIIst Os% 3 +sleepily 'slipIlI Pu% 3 +sleepiness 'slipIn@s L@% 3 +sleeping 'slipIN Jb%,L@% 22A,2B,2C,6A +sleeping-bag 'slipIN-b&g K6% 3 +sleeping-bags 'slipIN-b&gz Kj% 3 +sleeping-car 'slipIN-kAR K6% 3 +sleeping-cars 'slipIN-kAz Kj% 3 +sleeping-draught 'slipIN-drAft K6% 3 +sleeping-draughts 'slipIN-drAfts Kj% 3 +sleeping-pill 'slipIN-pIl K6% 3 +sleeping-pills 'slipIN-pIlz Kj% 3 +sleeping-sickness 'slipIN-sIkn@s L@% 4 +sleepless 'slipl@s OA% 2 +sleeplessly 'slipl@slI Pu% 3 +sleeplessness 'slipl@sn@s L@% 3 +sleeps slips Ja% 12A,2B,2C,6A +sleepwalker 'slipwOk@R K6% 3 +sleepwalkers 'slipwOk@z Kj% 3 +sleepy 'slipI OD% 2 +sleepy-head 'slipI-hed K6% 3 +sleepy-heads 'slipI-hedz Kj% 3 +sleet slit I0%,L@% 12A +sleeted 'slitId Ic%,Id% 22A +sleetier 'slitI@R Or$ 3 +sleetiest 'slitIIst Os$ 3 +sleeting 'slitIN Ib% 22A +sleets slits Ia$ 12A +sleety 'slitI OD$ 2 +sleeve sliv K6% 1 +sleeved slivd Ot% 1 +sleeveless 'slivl@s OA% 2 +sleeves slivz Kj% 1 +sleigh sleI J0$,K6% 12A,6A +sleigh-bell 'sleI-bel K6% 2 +sleigh-bells 'sleI-belz Kj% 2 +sleighed sleId Jc$,Jd$ 12A,6A +sleighing 'sleIIN Jb$ 22A,6A +sleighs sleIz Ja$,Kj% 12A,6A +sleight slaIt K6% 1 +sleights slaIts Kj$ 1 +slender 'slend@R OA% 2 +slenderize 'slend@raIz J2$ 36A +slenderized 'slend@raIzd Jc$,Jd$ 36A +slenderizes 'slend@raIzIz Ja$ 46A +slenderizing 'slend@raIzIN Jb$ 46A +slenderly 'slend@lI Pu$ 3 +slenderness 'slend@n@s L@% 3 +slept slept Jc%,Jd% 12A,2B,2C,6A +sleuth sluT K6% 1 +sleuth-hound 'sluT-haUnd K6% 2 +sleuth-hounds 'sluT-haUndz Kj% 2 +sleuths sluTs Kj% 1 +slew slu Hc%,J0$ 12C,6A,15B +slewed slud Jc$,Jd$ 12C,6A,15B +slewing 'sluIN Jb$ 22C,6A,15B +slews sluz Ja$ 12C,6A,15B +slice slaIs J2%,K6% 13A,6A,15A,15B,22 +sliced slaIst Jc%,Jd% 13A,6A,15A,15B,22 +slices 'slaIsIz Ja%,Kj% 23A,6A,15A,15B,22 +slicing 'slaIsIN Jb% 23A,6A,15A,15B,22 +slick slIk K6%,OC%,Pu% 1 +slicker 'slIk@R K6%,Or% 2 +slickers 'slIk@z Kj% 2 +slickest 'slIkIst Os% 2 +slicks slIks Kj% 1 +slid slId Jc%,Jd% 12A,2C,3A,6A,15A +slide slaId J5%,K6% 12A,2C,3A,6A,15A +slide-rule 'slaId-rul K6% 2 +slide-rules 'slaId-rulz Kj% 2 +slides slaIdz Ja%,Kj% 12A,2C,3A,6A,15A +sliding 'slaIdIN Jb% 22A,2C,3A,6A,15A +slight slaIt H0%,K6%,OC% 16A +slighted 'slaItId Hc%,Hd% 26A +slighter 'slaIt@R Or% 2 +slightest 'slaItIst Os% 2 +slighting 'slaItIN Hb% 26A +slightingly 'slaItINlI Pu% 3 +slightly 'slaItlI Pu% 2 +slightness 'slaItn@s L@% 2 +slights slaIts Ha%,Kj% 16A +slim slIm I4%,OE% 1 +slime slaIm L@% 1 +slimier 'slaImI@R Or% 3 +slimiest 'slaImIIst Os% 3 +sliminess 'slaImInIs L@% 3 +slimly 'slImlI Pu$ 2 +slimmed slImd Ic%,Id% 1 +slimmer 'slIm@R Or% 2 +slimmest 'slImIst Os% 2 +slimming 'slImIN Ib% 2 +slimness 'slImn@s L@% 2 +slims slImz Ia% 1 +slimy 'slaImI OD% 2 +sling slIN J5%,K6% 16A,15A,15B +slinger 'slIN@R K6$ 2 +slingers 'slIN@z Kj$ 2 +slinging 'slININ Jb% 26A,15A,15B +slings slINz Ja%,Kj% 16A,15A,15B +slink slINk I5% 12C +slinking 'slINkIN Ib% 22C +slinks slINks Ia% 12C +slip slIp J4%,M6% 12A,2C,6A,15A,15B +slip-carriage 'slIp-k&rIdZ K6$ 3 +slip-carriages 'slIp-k&rIdZIz Kj$ 4 +slip-coach 'slIp-k@UtS K7$ 2 +slip-coaches 'slIp-k@UtSIz Kj$ 3 +slip-road 'slIp-r@Ud K6% 2 +slip-roads 'slIp-r@Udz Kj% 2 +slip-up 'slIp-Vp K6% 2 +slip-ups 'slIp-Vps Kj% 2 +slipcover 'slIpkVv@R K6% 3 +slipcovers 'slIpkVv@z Kj% 3 +slipknot 'slIpn0t K6% 2 +slipknots 'slIpn0ts Kj% 2 +slipon 'slIp0n K6% 2 +slipons 'slIp0nz Kj$ 2 +slipover 'slIp@Uv@R K6% 3 +slipovers 'slIp@Uv@z Kj% 3 +slipped slIpt Jc%,Jd% 12A,2C,6A,15A,15B +slipper 'slIp@R K6% 2 +slippered 'slIp@d OA% 2 +slipperier 'slIp@rI@R Or% 4 +slipperiest 'slIp@rIIst Os% 4 +slipperiness 'slIp@rIn@s L@% 4 +slippers 'slIp@z Kj% 2 +slippery 'slIp@rI OD% 3 +slipping 'slIpIN Jb% 22A,2C,6A,15A,15B +slippy 'slIpI OA% 2 +slips slIps Ja%,Mj% 12A,2C,6A,15A,15B +slipshod 'slIpS0d OA% 2 +slipstream 'slIpstrim K6% 2 +slipstreams 'slIpstrimz Kj$ 2 +slipway 'slIpweI K6% 2 +slipways 'slIpweIz Kj% 2 +slit slIt H5%,Hc%,Hd%,K6% 12A,2C,6A,15A,22 +slither 'slID@R I0% 22A,2C +slithered 'slID@d Ic%,Id% 22A,2C +slithering 'slID@rIN Ib% 32A,2C +slithers 'slID@z Ia% 22A,2C +slithery 'slID@rI OA% 3 +slits slIts Ha%,Kj% 12A,2C,6A,15A,22 +slitting 'slItIN Hb% 22A,2C,6A,15A,22 +sliver 'slIv@R J0$,K6% 22A,6A +slivered 'slIv@d Jc$,Jd$ 22A,6A +slivering 'slIv@rIN Jb$ 32A,6A +slivers 'slIv@z Ja$,Kj% 22A,6A +slob sl0b K6% 1 +slobber 'sl0b@R J0%,L@$ 22A,3A,6A +slobbered 'sl0b@d Jc%,Jd% 22A,3A,6A +slobbering 'sl0b@rIN Jb% 32A,3A,6A +slobbers 'sl0b@z Ja% 22A,3A,6A +slobs sl0bz Kj% 1 +sloe sl@U K6$ 1 +sloe-gin 'sl@U-dZIn L@$ 2 +sloes sl@Uz Kj$ 1 +slog sl0g J4% 12C,3A,6A +slogan 'sl@Ug@n K6% 2 +slogans 'sl@Ug@nz Kj% 2 +slogged sl0gd Jc%,Jd% 12C,3A,6A +slogger 'sl0g@R K6% 2 +sloggers 'sl0g@z Kj% 2 +slogging 'sl0gIN Jb% 22C,3A,6A +slogs sl0gz Ja% 12C,3A,6A +sloop slup K6% 1 +sloops slups Kj% 1 +slop sl0p J4%,K6% 12A,2C,6A,15A +slop-basin 'sl0p-beIsn K6% 3 +slop-basins 'sl0p-beIsnz Kj% 3 +slop-pail 'sl0p-peIl K6% 2 +slop-pails 'sl0p-peIlz Kj% 2 +slop-shop 'sl0p-S0p K6$ 2 +slop-shops 'sl0p-S0ps Kj$ 2 +slope sl@Up J2%,M6% 12A,2C,6A +sloped sl@Upt Jc%,Jd% 12A,2C,6A +slopes sl@Ups Ja%,Mj% 12A,2C,6A +sloping 'sl@UpIN Jb% 22A,2C,6A +slopingly 'sl@UpINlI Pu$ 3 +slopped sl0pt Jc%,Jd% 12A,2C,6A,15A +sloppier 'sl0pI@R Or% 3 +sloppiest 'sl0pIIst Os% 3 +sloppily 'sl0pIlI Pu% 3 +sloppiness 'sl0pIn@s L@% 3 +slopping 'sl0pIN Jb% 22A,2C,6A,15A +sloppy 'sl0pI OD% 2 +slops sl0ps Ja%,Kj% 12A,2C,6A,15A +slosh sl0S J1% 13A,6A,15A,15B +sloshed sl0St Jc%,Jd%,OA% 13A,6A,15A,15B +sloshes 'sl0SIz Ja% 23A,6A,15A,15B +sloshing 'sl0SIN Jb% 23A,6A,15A,15B +slot sl0t H4%,K6% 16A,15A +slot-machine 'sl0t-m@Sin K6% 3 +slot-machines 'sl0t-m@Sinz Kj% 3 +sloth sl@UT M6% 1 +slothful 'sl@UTf@l OA% 2 +sloths sl@UTs Mj$ 1 +slots sl0ts Ha%,Kj% 16A,15A +slotted 'sl0tId Hc%,Hd% 26A,15A +slotting 'sl0tIN Hb% 26A,15A +slouch slaUtS I1%,K7% 12A,2C +slouch-hat slaUtS-'h&t K6$ 2 +slouch-hats slaUtS-'h&ts Kj$ 2 +slouched slaUtSt Ic%,Id% 12A,2C +slouches 'slaUtSIz Ia%,Kj% 22A,2C +slouching 'slaUtSIN Ib% 22A,2C +slouchingly 'slaUtSINlI Pu$ 3 +slough slVf J0$,K6$ 12A,6A,15B +slough slaU K6$ 1 +sloughed slVft Jc$,Jd$ 12A,6A,15B +sloughing 'slVfIN Jb$ 22A,6A,15B +sloughs slVfs Ja$,Kj$ 12A,6A,15B +sloughs slaUz Kj$ 1 +sloven 'slVvn K6$ 2 +slovenlier 'slVv@nlI@R Or% 4 +slovenliest 'slVv@nlIIst Os% 4 +slovenliness 'slVvnlIn@s L@% 4 +slovenly 'slVv@nlI OD% 3 +slovens 'slVvnz Kj$ 2 +slow sl@U J0%,OC%,Pu% 12C,15B +slow-worm 'sl@U-w3m K6% 2 +slow-worms 'sl@U-w3mz Kj% 2 +slowcoach 'sl@Uk@UtS K7% 2 +slowcoaches 'sl@Uk@UtSIz Kj% 3 +slowdown 'sl@UdaUn K6% 2 +slowdowns 'sl@UdaUnz Kj$ 2 +slowed sl@Ud Jc%,Jd% 12C,15B +slower 'sl@U@R Or%,Pu% 2 +slowest 'sl@UIst Os%,Pu% 2 +slowing 'sl@UIN Jb% 22C,15B +slowly 'sl@UlI Pu% 2 +slowness 'sl@Un@s L@% 2 +slows sl@Uz Ja% 12C,15B +sludge slVdZ L@% 1 +slug slVg J4%,K6% 1 +sluggard 'slVg@d K6% 2 +sluggards 'slVg@dz Kj% 2 +slugged slVgd Jc%,Jd% 1 +slugging 'slVgIN Jb% 2 +sluggish 'slVgIS OA% 2 +sluggishly 'slVgISlI Pu% 3 +sluggishness 'slVgISn@s L@% 3 +slugs slVgz Ja%,Kj% 1 +sluice slus J2%,K6% 13A,6A,15B +sluice-valve 'slus-v&lv K6% 2 +sluice-valves 'slus-v&lvz Kj% 2 +sluiced slust Jc%,Jd% 13A,6A,15B +sluicegate 'slusgeIt K6% 2 +sluicegates 'slusgeIts Kj% 2 +sluices 'slusIz Ja%,Kj% 23A,6A,15B +sluicing 'slusIN Jb% 23A,6A,15B +slum slVm I4%,K6% 1 +slumber 'slVmb@R J0%,K6% 22A,15B +slumbered 'slVmb@d Jc%,Jd% 22A,15B +slumberer 'slVmb@r@R K6% 3 +slumberers 'slVmb@r@z Kj% 3 +slumbering 'slVmb@rIN Jb% 32A,15B +slumberous 'slVmb@r@s OA$ 3 +slumbers 'slVmb@z Ja%,Kj% 22A,15B +slummed slVmd Ic%,Id% 1 +slummier 'slVmI@R Or% 3 +slummiest 'slVmIIst Os% 3 +slumming 'slVmIN Ib% 2 +slummy 'slVmI OD% 2 +slump slVmp I0%,K6% 12A,2C +slumped slVmpt Ic%,Id% 12A,2C +slumping 'slVmpIN Ib% 22A,2C +slumps slVmps Ia%,Kj% 12A,2C +slums slVmz Ia%,Kj% 1 +slung slVN Jc%,Jd% 16A,15A,15B +slunk slVNk Ic%,Id% 12C +slur sl3R J4%,M6% 13A,6A +slurred sl3d Jc%,Jd% 13A,6A +slurring 'sl3rIN Jb% 23A,6A +slurry 'slVrI L@$ 2 +slurs sl3z Ja%,Mj% 13A,6A +slush slVS L@% 1 +slushier 'slVSI@R Or% 3 +slushiest 'slVSIIst Os% 3 +slushy 'slVSI OD% 2 +slut slVt K6% 1 +sluts slVts Kj% 1 +sluttish 'slVtIS OA% 2 +sly slaI OC% 1 +slyer 'slaI@R Or% 2 +slyest 'slaIIst Os% 2 +slyly 'slaIlI Pu% 2 +slyness 'slaIn@s L@% 2 +smack sm&k J0%,K6%,Pu% 13A,6A +smacked sm&kt Jc%,Jd% 13A,6A +smacker 'sm&k@R K6% 2 +smackers 'sm&k@z Kj% 2 +smacking 'sm&kIN Jb%,M6% 23A,6A +smackings 'sm&kINz Mj% 2 +smacks sm&ks Ja%,Kj% 13A,6A +small smOl K6%,OC*,Pu* 1 +small-arms 'smOl-Amz Kj% 2 +small-minded smOl-'maIndId OA% 3 +smaller 'smOl@R Or% 2 +smallest 'smOlIst Os% 2 +smallholder 'smOlh@Uld@R K6% 3 +smallholders 'smOlh@Uld@z Kj% 3 +smallholding 'smOlh@UldIN K6% 3 +smallholdings 'smOlh@UldINz Kj% 3 +smallness 'smOln@s L@% 2 +smallpox 'smOlp0ks L@% 2 +smalls smOlz Kj% 1 +smalltime 'smOltaIm OA% 2 +smarmy 'smAmI OA% 2 +smart smAt I0%,L@%,OC% 12A,2C,3A +smarted 'smAtId Hd%,Ic% 22A,2C,3A +smarten 'smAtn J0% 22C,6A,15B +smartened 'smAtnd Jc%,Jd% 22C,6A,15B +smartening 'smAtnIN Jb% 22C,6A,15B +smartens 'smAtnz Ja% 22C,6A,15B +smarter 'smAt@R Or% 2 +smartest 'smAtIst Os% 2 +smarting 'smAtIN Ib% 22A,2C,3A +smartly 'smAtlI Pu% 2 +smartness 'smAtn@s L@% 2 +smarts smAts Ia% 12A,2C,3A +smash sm&S J1%,K7%,Pu% 12A,2C,6A,15A,15B,22 +smash-up 'sm&S-Vp K6% 2 +smash-ups 'sm&S-Vps Kj$ 2 +smashed sm&St Jc%,Jd% 12A,2C,6A,15A,15B,22 +smasher 'sm&S@R K6% 2 +smashers 'sm&S@z Kj% 2 +smashes 'sm&SIz Ja%,Kj% 22A,2C,6A,15A,15B,22 +smashing 'sm&SIN Jb%,OA% 22A,2C,6A,15A,15B,22 +smattering 'sm&t@rIN K6% 3 +smatterings 'sm&t@rINz Kj$ 3 +smear smI@R J0%,K6% 12A,6A,14 +smear-word 'smI@-w3d K6$ 2 +smear-words 'smI@-w3dz Kj$ 2 +smeared smI@d Jc%,Jd% 12A,6A,14 +smearing 'smI@rIN Jb% 22A,6A,14 +smears smI@z Ja%,Kj% 12A,6A,14 +smell smel J0%,M6% 12A,2C,2D,3A,6A,15B,19A +smelled smeld Jc%,Jd% 12A,2C,2D,3A,6A,15B,19A +smellier 'smelI@R Or% 3 +smelliest 'smelIIst Os% 3 +smelling 'smelIN Jb% 22A,2C,2D,3A,6A,15B,19A +smelling-bottle 'smelIN-b0tl K6$ 4 +smelling-bottles 'smelIN-b0tlz Kj$ 4 +smelling-salts 'smelIN-s0lts Kj% 3 +smells smelz Ja%,Mj% 12A,2C,2D,3A,6A,15B,19A +smelly 'smelI OD% 2 +smelt smelt H0$,Jc$,Jd$,K6$ 12A,2C,2D,3A,6A,15B,19A +smelted 'smeltId Hc$,Hd$ 22A,2C,2D,3A,6A,15B,19A +smelting 'smeltIN Hb$ 22A,2C,2D,3A,6A,15B,19A +smelts smelts Ha$,Kj$ 12A,2C,2D,3A,6A,15B,19A +smilax 'smaIl&ks L@$ 2 +smile smaIl J2%,K6% 12A,2B,3A,4B,6B +smiled smaIld Jc%,Jd% 12A,2B,3A,4B,6B +smiles smaIlz Ja%,Kj% 12A,2B,3A,4B,6B +smiling 'smaIlIN Jb% 22A,2B,3A,4B,6B +smilingly 'smaIlINlI Pu% 3 +smirch sm3tS H1$,K7$ 16A +smirched sm3tSt Hc$,Hd$ 16A +smirches 'sm3tSIz Ha$,Kj$ 26A +smirching 'sm3tSIN Hb$ 26A +smirk sm3k I0%,K6% 12A +smirked sm3kt Ic%,Id% 12A +smirking 'sm3kIN Ib% 22A +smirks sm3ks Ia%,Kj% 12A +smite smaIt J5$ 12A,2C,6A +smites smaIts Ja$ 12A,2C,6A +smith smIT K6% 1 +smithereens ,smID@'rinz Kj% 3 +smithies 'smIDIz Kj% 2 +smiths smITs Kj% 1 +smithy 'smIDI K8% 2 +smiting 'smaItIN Jb$ 22A,2C,6A +smitten smItn Jd% 22A,2C,6A +smock sm0k K6% 1 +smocking 'sm0kIN L@% 2 +smocks sm0ks Kj% 1 +smog sm0g M6% 1 +smogs sm0gz Mj$ 1 +smoke sm@Uk J2%,M6% 12A,2C,6A,15B,22 +smoke-bomb 'sm@Uk-b0m K6% 2 +smoke-bombs 'sm@Uk-b0mz Kj% 2 +smoke-cured 'sm@Uk-kju@d OA% 2 +smoke-dried 'sm@Uk-draId OA% 2 +smoke-screen 'sm@Uk-skrin K6% 2 +smoke-screens 'sm@Uk-skrinz Kj% 2 +smoked sm@Ukt Jc%,Jd% 12A,2C,6A,15B,22 +smokeless 'sm@Ukl@s OA% 2 +smoker 'sm@Uk@R K6% 2 +smokers 'sm@Uk@z Kj% 2 +smokes sm@Uks Ja%,Mj% 12A,2C,6A,15B,22 +smokestack 'sm@Ukst&k K6% 2 +smokestacks 'sm@Ukst&ks Kj% 2 +smokier 'sm@UkI@R Or% 3 +smokiest 'sm@UkIIst Os% 3 +smoking 'sm@UkIN Jb%,L@% 22A,2C,6A,15B,22 +smoking-car 'sm@UkIN-kAR K6% 3 +smoking-carriage 'sm@UkIN-k&rIdZ K6% 4 +smoking-carriages 'sm@UkIN-k&rIdZIz Kj% 5 +smoking-cars 'sm@UkIN-kAz Kj% 3 +smoking-compartment 'sm@UkIN-k@m,pAtm@nt K6% 5 +smoking-compartments 'sm@UkIN-k@m,pAtm@nts Kj% 5 +smoking-mixture 'sm@UkIN-mIkstS@R L@% 4 +smoking-room 'sm@UkIN-rum K6% 3 +smoking-rooms 'sm@UkIN-rumz Kj% 3 +smoky 'sm@UkI OD% 2 +smooth smuD J0%,Ki%,OC% 12C,6A,15B +smooth-bore 'smuD-bOR OA% 2 +smooth-faced 'smuD-feIst OA% 2 +smooth-spoken smuD-'sp@Uk@n OA% 3 +smooth-tongued 'smuD-tVNd OA% 2 +smoothed smuDd Jc%,Jd% 12C,6A,15B +smoother 'smuD@R Or% 2 +smoothest 'smuDIst Os% 2 +smoothing 'smuDIN Jb% 22C,6A,15B +smoothing-iron 'smuDIN-aI@n K6% 4 +smoothing-irons 'smuDIN-aI@nz Kj% 4 +smoothing-plane 'smuDIN-pleIn K6$ 3 +smoothing-planes 'smuDIN-pleInz Kj$ 3 +smoothly 'smuDlI Pu% 2 +smoothness 'smuDn@s L@% 2 +smooths smuDz Ja% 12C,6A,15B +smorgasbord 'smOg@sbOd L@$ 3 +smote sm@Ut Jc$ 12A,2C,6A +smother 'smVD@R H0%,Ki% 26A,14,15B +smothered 'smVD@d Hc%,Hd% 26A,14,15B +smothering 'smVD@rIN Hb% 36A,14,15B +smothers 'smVD@z Ha% 26A,14,15B +smoulder 'sm@Uld@R I0%,L@% 22A,2C +smouldered 'sm@Uld@d Ic%,Id% 22A,2C +smouldering 'sm@Uld@rIN Ib% 32A,2C +smoulders 'sm@Uld@z Ia% 22A,2C +smudge smVdZ J2%,K6% 12A,6A +smudged smVdZd Jc%,Jd% 12A,6A +smudges 'smVdZIz Ja%,Kj% 22A,6A +smudging 'smVdZIN Jb% 22A,6A +smudgy 'smVdZI OA% 2 +smug smVg OE% 1 +smugger 'smVg@R Or% 2 +smuggest 'smVgIst Os% 2 +smuggle 'smVgl H2% 26A,14,15A,15B +smuggled 'smVgld Hc%,Hd% 26A,14,15A,15B +smuggler 'smVgl@R K6% 2 +smugglers 'smVgl@z Kj% 2 +smuggles 'smVglz Ha% 26A,14,15A,15B +smuggling 'smVglIN Hb% 26A,14,15A,15B +smugly 'smVglI Pu% 2 +smugness 'smVgn@s L@% 2 +smut smVt H4$,M6% 16A +smuts smVts Ha$,Mj$ 16A +smutted 'smVtId Hc$,Hd$ 26A +smuttier 'smVtI@R Or% 3 +smuttiest 'smVtIIst Os% 3 +smuttily 'smVtIlI Pu% 3 +smuttiness 'smVtIn@s L@% 3 +smutting 'smVtIN Hb$ 26A +smutty 'smVtI OD% 2 +snack sn&k K6% 1 +snack-bar 'sn&k-bAR K6% 2 +snack-bars 'sn&k-bAz Kj% 2 +snack-counter 'sn&k-kaUnt@R K6% 3 +snack-counters 'sn&k-kaUnt@z Kj% 3 +snacks sn&ks Kj% 1 +snaffle 'sn&fl H2%,K6$ 26A +snaffle-bit 'sn&fl-bIt K6$ 3 +snaffle-bits 'sn&fl-bIts Kj$ 3 +snaffled 'sn&fld Hc%,Hd% 26A +snaffles 'sn&flz Ha%,Kj$ 26A +snaffling 'sn&flIN Hb% 26A +snag sn&g H4$,K6% 1 +snagged sn&gd Hc$,Hd$ 1 +snagging 'sn&gIN Hb$ 2 +snags sn&gz Ha$,Kj% 1 +snail sneIl K6% 1 +snails sneIlz Kj% 1 +snake sneIk I2%,K6% 12C +snake-charmer 'sneIk-tSAm@R K6% 3 +snake-charmers 'sneIk-tSAm@z Kj% 3 +snaked sneIkt Ic%,Id% 12C +snakes sneIks Ia%,Kj% 12C +snakier 'sneIkI@R Or$ 3 +snakiest 'sneIkIIst Os$ 3 +snaking 'sneIkIN Ib% 22C +snaky 'sneIkI OD% 2 +snap sn&p J4%,M6% 12A,2C,3A,6A,14,15A,15B,22 +snap-fastener 'sn&p-fAsn@R K6% 3 +snap-fasteners 'sn&p-fAsn@z Kj% 3 +snapdragon 'sn&pdr&g@n K6% 3 +snapdragons 'sn&pdr&g@nz Kj% 3 +snapped sn&pt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B,22 +snappier 'sn&pI@R Or% 3 +snappiest 'sn&pIIst Os% 3 +snapping 'sn&pIN Jb% 22A,2C,3A,6A,14,15A,15B,22 +snappish 'sn&pIS OA$ 2 +snappishly 'sn&pISlI Pu$ 3 +snappishness 'sn&pISn@s L@% 3 +snappy 'sn&pI OD% 2 +snaps sn&ps Ja%,Mj% 12A,2C,3A,6A,14,15A,15B,22 +snapshot 'sn&pS0t K6% 2 +snapshots 'sn&pS0ts Kj% 2 +snare sne@R H2%,K6% 16A +snare-drum 'sne@-drVm K6% 2 +snare-drums 'sne@-drVmz Kj% 2 +snared sne@d Hc%,Hd% 16A +snares sne@z Ha%,Kj% 16A +snaring 'sne@rIN Hb% 26A +snarl snAl J0%,K6% 12A,2C,3A,6A,15B +snarl-up 'snAl-Vp K6% 2 +snarl-ups 'snAl-Vps Kj% 2 +snarled snAld Jc%,Jd% 12A,2C,3A,6A,15B +snarling 'snAlIN Jb% 22A,2C,3A,6A,15B +snarls snAlz Ja%,Kj% 12A,2C,3A,6A,15B +snatch sn&tS J1%,K7% 12A,6A,15A,15B +snatched sn&tSt Jc%,Jd% 12A,6A,15A,15B +snatcher 'sn&tS@R K6% 2 +snatchers 'sn&tS@z Kj% 2 +snatches 'sn&tSIz Ja%,Kj% 22A,6A,15A,15B +snatching 'sn&tSIN Jb% 22A,6A,15A,15B +snazzy 'sn&zI OA% 2 +sneak snik J0%,K6% 12A,3A,6A +sneak-thief 'snik-Tif Ki% 2 +sneak-thieves 'snik-Tivz Kj% 2 +sneaked snikt Jc%,Jd% 12A,3A,6A +sneakers 'snik@z Kj% 2 +sneakier 'snikI@R Or% 3 +sneakiest 'snikIIst Os% 3 +sneaking 'snikIN Jb%,OA% 22A,3A,6A +sneakingly 'snikINlI Pu$ 3 +sneaks sniks Ja%,Kj% 12A,3A,6A +sneaky 'snikI OD% 2 +sneer snI@R I0%,K6% 12A,3A +sneered snI@d Ic%,Id% 12A,3A +sneering 'snI@rIN Ib% 22A,3A +sneeringly 'snI@rINlI Pu% 3 +sneers snI@z Ia%,Kj% 12A,3A +sneeze sniz I2%,K6% 12A +sneezed snizd Ic%,Id% 12A +sneezes 'snizIz Ia%,Kj% 22A +sneezing 'snizIN Ib% 22A +snick snIk J0$,K6$ 1 +snicked snIkt Jc$,Jd$ 1 +snicker 'snIk@R I0$,K6$ 2 +snickered 'snIk@d Ic$,Id$ 2 +snickering 'snIk@rIN Ib$ 3 +snickers 'snIk@z Ia$,Kj$ 2 +snicking 'snIkIN Jb$ 2 +snicks snIks Ja$,Kj$ 1 +snide snaId OA% 1 +sniff snIf J0%,K6% 12A,3A,6A,15B +sniffed snIft Jc%,Jd% 12A,3A,6A,15B +sniffier 'snIfI@R Or$ 3 +sniffiest 'snIfIIst Os$ 3 +sniffing 'snIfIN Jb% 22A,3A,6A,15B +sniffle 'snIfl I2% 2 +sniffled 'snIfld Ic%,Id% 2 +sniffles 'snIflz Ia% 2 +sniffling 'snIflIN Ib% 2 +sniffs snIfs Ja%,Kj% 12A,3A,6A,15B +sniffy 'snIfI OD% 2 +snifter 'snIft@R K6% 2 +snifters 'snIft@z Kj% 2 +snigger 'snIg@R I0%,K6% 22A,2C +sniggered 'snIg@d Ic%,Id% 22A,2C +sniggering 'snIg@rIN Ib% 32A,2C +sniggers 'snIg@z Ia%,Kj% 22A,2C +snip snIp J4%,K6% 13A,6A,15B +snipe snaIp J2%,K9% 12A,3A,6A +sniped snaIpt Jc%,Jd% 12A,3A,6A +sniper 'snaIp@R K6% 2 +snipers 'snaIp@z Kj% 2 +snipes snaIps Ja% 12A,3A,6A +sniping 'snaIpIN Jb% 22A,3A,6A +snipped snIpt Jc%,Jd% 13A,6A,15B +snippet 'snIpIt K6% 2 +snippets 'snIpIts Kj% 2 +snipping 'snIpIN Jb%,K6% 23A,6A,15B +snippings 'snIpINz Kj% 2 +snips snIps Ja%,Kj% 13A,6A,15B +snitch snItS J1$ 12A,3A,6A +snitched snItSt Jc$,Jd$ 12A,3A,6A +snitches 'snItSIz Ja$ 22A,3A,6A +snitching 'snItSIN Jb$ 22A,3A,6A +snivel 'snIvl I4% 22A +snivelled 'snIvld Ic%,Id% 22A +sniveller 'snIvl@R K6% 3 +snivellers 'snIvl@z Kj% 3 +snivelling 'snIv@lIN Ib% 32A +snivels 'snIvlz Ia% 22A +snob sn0b K6% 1 +snobbery 'sn0b@rI L@% 3 +snobbish 'sn0bIS OA% 2 +snobbishly 'sn0bISlI Pu% 3 +snobbishness 'sn0bISn@s L@% 3 +snobs sn0bz Kj% 1 +snog sn0g I4% 12A +snogged sn0gd Ic% 12A +snogging 'sn0gIN Ib%,L@% 22A +snogs sn0gz Ia$ 12A +snood snud K6$ 1 +snoods snudz Kj$ 1 +snook snuk K6% 1 +snooker 'snuk@R M6% 2 +snookers 'snuk@z Mj% 2 +snooks snuks Kj$ 1 +snoop snup I0% 12A,2C,3A +snooped snupt Ic%,Id% 12A,2C,3A +snooper 'snup@R K6% 2 +snoopers 'snup@z Kj% 2 +snooping 'snupIN Ib% 22A,2C,3A +snoops snups Ia% 12A,2C,3A +snootier 'snutI@R Or% 3 +snootiest 'snutIIst Os% 3 +snootily 'snutIlI Pu% 3 +snooty 'snutI OD% 2 +snooze snuz I2%,K6% 12A +snoozed snuzd Ic%,Id% 12A +snoozes 'snuzIz Ia%,Kj% 22A +snoozing 'snuzIN Ib% 22A +snore snOR I2%,K6% 12A,2C +snored snOd Ic%,Id% 12A,2C +snorer 'snOr@R K6% 2 +snorers 'snOr@z Kj% 2 +snores snOz Ia%,Kj% 12A,2C +snoring 'snOrIN Ib% 22A,2C +snorkel 'snOkl K6% 2 +snorkels 'snOklz Kj% 2 +snort snOt J0%,K6% 12A,2C,6A,15B +snorted 'snOtId Jc%,Jd% 22A,2C,6A,15B +snorter 'snOt@R K6$ 2 +snorters 'snOt@z Kj$ 2 +snortier 'snOtI@R Or$ 3 +snortiest 'snOtIIst Os$ 3 +snorting 'snOtIN Jb% 22A,2C,6A,15B +snorts snOts Ja%,Kj% 12A,2C,6A,15B +snorty 'snOtI OD$ 2 +snot sn0t L@% 1 +snot-nosed 'sn0t-n@Uzd OA% 2 +snottier 'sn0tI@R Or$ 3 +snottiest 'sn0tIIst Os$ 3 +snotty 'sn0tI OD% 2 +snout snaUt K6% 1 +snouts snaUts Kj% 1 +snow sn@U J0%,M6% 12A,2B,2C +snow-clad 'sn@U-kl&d OA% 2 +snow-covered 'sn@U-kVv@d OA% 3 +snow-line 'sn@U-laIn K6% 2 +snow-lines 'sn@U-laInz Kj% 2 +snow-white 'sn@U-waIt OA% 2 +snowball 'sn@UbAl J0%,K6% 2 +snowballed 'sn@UbAld Jc%,Jd% 2 +snowballing 'sn@UbAlIN Jb% 3 +snowballs 'sn@UbAlz Ja%,Kj% 2 +snowberries 'sn@UberIz Kj$ 3 +snowberry 'sn@UberI K8$ 3 +snowblind 'sn@UblaInd OA% 2 +snowblindness 'sn@UblaIn+n@s L@% 3 +snowbound 'sn@UbaUnd OA% 2 +snowcapped 'sn@Uk&pt OA% 2 +snowdrift 'sn@UdrIft K6% 2 +snowdrifts 'sn@UdrIfts Kj% 2 +snowdrop 'sn@Udr0p K6% 2 +snowdrops 'sn@Udr0ps Kj% 2 +snowed sn@Ud Jc%,Jd% 12A,2B,2C +snowfall 'sn@UfOl K6% 2 +snowfalls 'sn@UfOlz Kj% 2 +snowfield 'sn@Ufild K6% 2 +snowfields 'sn@Ufildz Kj% 2 +snowflake 'sn@UfleIk K6% 2 +snowflakes 'sn@UfleIks Kj% 2 +snowier 'sn@UI@R Or$ 3 +snowiest 'sn@UIIst Os$ 3 +snowing 'sn@UIN Jb% 22A,2B,2C +snowman 'sn@Um&n Ki% 2 +snowmen 'sn@Umen Kj% 2 +snowplough 'sn@UplaU K6% 2 +snowploughs 'sn@UplaUz Kj% 2 +snows sn@Uz Ja%,Mj% 12A,2B,2C +snowshoes 'sn@USuz Kj% 2 +snowstorm 'sn@UstOm K6% 2 +snowstorms 'sn@UstOmz Kj% 2 +snowy 'sn@UI OD% 2 +snub snVb H4%,K6%,OA% 16A +snub-nosed snVb-'n@Uzd OA% 2 +snubbed snVbd Hc%,Hd% 16A +snubbing 'snVbIN Hb% 26A +snubs snVbz Ha%,Kj% 16A +snuff snVf J0%,M6% 12C,6A,15B +snuff-colour 'snVf-kVl@R L@$,OA$ 3 +snuff-coloured 'snVf-kVl@d OA$ 3 +snuffbox 'snVfb0ks K7% 2 +snuffboxes 'snVfb0ksIz Kj% 3 +snuffed snVft Jc%,Jd% 12C,6A,15B +snuffers 'snVf@z Kj$ 2 +snuffing 'snVfIN Jb% 22C,6A,15B +snuffle 'snVfl I2%,K6% 22A +snuffled 'snVfld Ic%,Id% 22A +snuffles 'snVflz Ia%,Kj% 22A +snuffling 'snVflIN Ib% 22A +snuffs snVfs Ja%,Mj$ 12C,6A,15B +snug snVg K6%,OE% 1 +snugger 'snVg@R Or% 2 +snuggeries 'snVg@rIz Kj$ 3 +snuggery 'snVg@rI K8$ 3 +snuggest 'snVgIst Os% 2 +snuggle 'snVgl J2% 22C,14 +snuggled 'snVgld Jc%,Jd% 22C,14 +snuggles 'snVglz Ja% 22C,14 +snuggling 'snVglIN Jb% 22C,14 +snugly 'snVglI Pu% 2 +snugness 'snVgn@s L@$ 2 +snugs snVgz Kj$ 1 +so s@U Ki%,Pu*,V-* 1 +so-and-so 's@U-@n-s@U K6% 3 +so-and-sos 's@U-@n-s@Uz Kj% 3 +so-called s@U-'kOld OA% 2 +so-so ,s@U-'s@U Op%,Pu% 2 +soak s@Uk J0%,K6% 12A,3A,6A,14,15A,15B +soaked s@Ukt Jc%,Jd% 12A,3A,6A,14,15A,15B +soaker 's@Uk@R K6$ 2 +soakers 's@Uk@z Kj$ 2 +soaking 's@UkIN Jb% 22A,3A,6A,14,15A,15B +soaks s@Uks Ja%,Kj% 12A,3A,6A,14,15A,15B +soap s@Up H0%,M6% 16A,15B +soap-bubble 's@Up-bVbl K6% 3 +soap-bubbles 's@Up-bVblz Kj% 3 +soap-opera 's@Up-0pr@ M6% 3 +soap-operas 's@Up-0pr@z Mj% 3 +soapbox 's@Upb0ks K7% 2 +soapboxes 's@Upb0ksIz Kj% 3 +soaped s@Upt Hc%,Hd% 16A,15B +soapier 's@UpI@R Or$ 3 +soapiest 's@UpIIst Os$ 3 +soaping 's@UpIN Hb% 26A,15B +soaps s@Ups Ha%,Mj% 16A,15B +soapsuds 's@UpsVdz Kj% 2 +soapy 's@UpI OD% 2 +soar sOR I0% 12A,2C +soared sOd Ic%,Id% 12A,2C +soaring 'sOrIN Ib% 22A,2C +soars sOz Ia% 12A,2C +sob s0b J4%,K6% 12A,2C,15A,15B +sob-stuff 's0b-stVf L@% 2 +sobbed s0bd Jc%,Jd% 12A,2C,15A,15B +sobbing 's0bIN Jb% 22A,2C,15A,15B +sobbingly 's0bINlI Pu% 3 +sober 's@Ub@R J0%,OA% 22C,6A,15B +sober-sides 's@Ub@-saIdz Ki% 3 +sobered 's@Ub@d Jc%,Jd% 22C,6A,15B +sobering 's@Ub@rIN Jb% 32C,6A,15B +soberly 's@Ub@lI Pu% 3 +sobers 's@Ub@z Ja% 22C,6A,15B +sobriety s@'braI@tI L@% 4 +sobriquet 's@UbrIkeI K6$ 3 +sobriquets 's@UbrIkeIz Kj$ 3 +sobs s0bz Ja%,Kj% 12A,2C,15A,15B +soccer 's0k@R L@% 2 +sociability ,s@US@'bIlItI L@% 5 +sociable 's@US@bl OA% 3 +sociably 's@US@blI Pu% 3 +social 's@USl K6%,OA% 2 +social-work 's@USl-w3k L@% 3 +socialism 's@US@lIz@m L@% 4 +socialist 's@US@lIst K6%,OA% 3 +socialists 's@US@lIsts Kj% 3 +socialite 's@US@laIt K6% 3 +socialites 's@US@laIts Kj% 3 +socialization ,s@US@laI'zeISn M6% 5 +socializations ,s@US@laI'zeISnz Mj$ 5 +socialize 's@US@laIz H2% 36A +socialized 's@US@laIzd Hc%,Hd% 36A +socializes 's@US@laIzIz Ha% 46A +socializing 's@US@laIzIN Hb% 46A +socially 's@US@lI Pu% 3 +socials 's@USlz Kj% 2 +societies s@'saI@tIz Mj% 4 +society s@'saI@tI M8% 4 +socio- ,s@UsI@U- U-% 3 +sociological ,s@UsI@'l0dZIkl OA% 6 +sociologically ,s@UsI@'l0dZIklI Pu% 6 +sociologist ,s@USI'0l@dZIst K6% 5 +sociologists ,s@USI'0l@dZIsts Kj% 5 +sociology ,s@UsI'0l@dZI L@% 5 +sock s0k H0%,K6%,Pu% 16A,15A +socked s0kt Hc%,Hd% 16A,15A +socket 's0kIt K6% 2 +sockets 's0kIts Kj% 2 +socking 's0kIN Hb% 26A,15A +socks s0ks Ha%,Kj% 16A,15A +sod s0d I4$,M6% 1 +soda 's@Ud@ L@% 2 +soda-biscuit 's@Ud@-bIskIt K6$ 4 +soda-biscuits 's@Ud@-bIskIts Kj$ 4 +soda-cracker 's@Ud@-kr&k@R K6$ 4 +soda-crackers 's@Ud@-kr&k@z Kj$ 4 +soda-fountain 's@Ud@-faUntIn K6% 4 +soda-fountains 's@Ud@-faUntInz Kj% 4 +soda-water 's@Ud@-wOt@R M6% 4 +soda-waters 's@Ud@-wOt@z Mj$ 4 +sodded 's0dId Ic$,Id$ 2 +sodden 's0dn OA% 2 +sodding 's0dIN Ib$,Oq% 2 +sodium 's@UdI@m L@% 3 +sodomite 's0d@maIt K6$ 3 +sodomites 's0d@maIts Kj$ 3 +sodomy 's0d@mI L@% 3 +sods s0dz Ia$,Mj% 1 +sofa 's@Uf@ K6% 2 +sofas 's@Uf@z Kj% 2 +soft s0ft OC% 1 +soft-boiled 's0ft-boIld OA% 2 +soft-footed s0ft-'fUtId OA% 3 +soft-headed s0ft-'hedId OA% 3 +soft-hearted s0ft-'hAtId OA% 3 +soft-pedal s0ft-'ped@l J4% 3 +soft-pedalled s0ft-'ped@ld Jc%,Jd% 3 +soft-pedalling s0ft-'ped@lIN Jb% 4 +soft-pedals s0ft-'ped@lz Ja% 3 +soft-soap s0ft-'s@Up H0% 2 +soft-soaped s0ft-'s@Upt Hc%,Hd% 2 +soft-soaping s0ft-'s@UpIN Hb% 3 +soft-soaps s0ft-'s@Ups Ha% 2 +soft-solder s0ft-'s@Uld@R H0$,L@$ 3 +soft-soldered s0ft-'s@Uld@d Hc$,Hd$ 3 +soft-soldering s0ft-'s@Uld@rIN Hb$ 4 +soft-solders s0ft-'s@Uld@z Ha$ 3 +soft-spoken s0ft-'sp@Uk@n OA% 3 +soft-witted s0ft-'wItId OA$ 3 +soften 's0fn J0% 22A,6A +softened 's0fnd Jc%,Jd% 22A,6A +softener 's0fn@R K6% 2 +softeners 's0fn@z Kj% 2 +softening 's0fnIN Jb% 22A,6A +softens 's0fnz Ja% 22A,6A +softer 's0ft@R Or% 2 +softest 's0ftIst Os% 2 +softie 's0ftI K6% 2 +softies 's0ftIz Kj% 2 +softish 's0ftIS OA% 2 +softland s0ft'l&nd I0$ 2 +softlanded s0ft'l&ndId Ic$,Id$ 3 +softlanding s0ft'l&ndIN Ib$ 3 +softlands s0ft'l&ndz Ia$ 2 +softly 's0ftlI Pu% 2 +softness 's0ftn@s L@% 2 +software 's0ftwe@R L@% 2 +softwood 's0ftwUd M6% 2 +softwoods 's0ftwUdz Mj% 2 +softy 's0ftI K8% 2 +soggier 's0gI@R Or% 3 +soggiest 's0gIIst Os% 3 +sogginess 's0gIn@s L@% 3 +soggy 's0gI OD% 2 +soh s@U Ki$ 1 +soign_e 'swAnjeI OA$ 2 +soignee 'swAnjeI OA$ 2 +soil soIl J0%,M6% 12A,2C,6A +soil-pipe 'soIl-paIp K6% 2 +soil-pipes 'soIl-paIps Kj% 2 +soiled soIld Jc%,Jd% 12A,2C,6A +soiling 'soIlIN Jb% 22A,2C,6A +soils soIlz Ja%,Mj% 12A,2C,6A +soir_ee 'swAreI K6% 2 +soir_ees 'swAreIz Kj% 2 +sojourn 's0dZ@n I0$,K6% 22C +sojourned 's0dZ@nd Ic$,Id$ 22C +sojourner 's0dZ@n@R K6$ 3 +sojourners 's0dZ@n@z Kj$ 3 +sojourning 's0dZ@nIN Ib$ 32C +sojourns 's0dZ@nz Ia$,Kj$ 22C +sol-fa ,s0l-'fA Ki$ 2 +solace 's0lIs H2$,M6% 26A,15A +solaced 's0lIst Hc$,Hd$ 26A,15A +solaces 's0lIsIz Ha$,Mj$ 36A,15A +solacing 's0lIsIN Hb$ 36A,15A +solar 's@Ul@R OA% 2 +solar plexus ,s@Ul@ 'pleks@s Ki% 4 +solaria s@U'le@rI@ Kj$ 4 +solarium s@U'le@rI@m Ki$ 4 +sold s@Uld Jc%,Jd% 12A,2C,6A,12A,13A,15B +solder 's0ld@R H0%,L@% 26A,15A,15B +soldered 's0ld@d Hc%,Hd% 26A,15A,15B +soldering 's0ld@rIN Hb% 36A,15A,15B +soldering-iron 's0ld@rIN-aI@n K6% 5 +soldering-irons 's0ld@rIN-aI@nz Kj% 5 +solders 's0ld@z Ha% 26A,15A,15B +soldier 's@UldZ@R I0%,K6% 22A +soldiered 's@UldZ@d Ic%,Id% 22A +soldiering 's@UldZ@rIN Ib% 32A +soldiers 's@UldZ@z Ia%,Kj% 22A +soldiery 's@UldZ@rI Ki% 3 +sole s@Ul H2%,K6%,OA% 16A +solecism 's0lIsIz@m K6$ 4 +solecisms 's0lIsIz@mz Kj$ 4 +soled s@Uld Hc%,Hd%,Ot% 16A +solely 's@UlI Pu% 2 +solemn 's0l@m OA% 2 +solemnities s@'lemnItIz Mj% 4 +solemnity s@'lemnItI M8% 4 +solemnization ,s0l@mnaI'zeISn L@$ 5 +solemnize 's0l@mnaIz H2$ 36A +solemnized 's0l@mnaIzd Hc$,Hd% 36A +solemnizes 's0l@mnaIzIz Ha$ 46A +solemnizing 's0l@mnaIzIN Hb$ 46A +solemnly 's0l@mlI Pu% 3 +solemnness 's0l@mn@s L@% 3 +soles s@Ulz Ha%,Kj% 16A +solicit s@'lIsIt J0% 32A,6A,14 +solicitation s@,lIsI'teISn M6% 5 +solicitations s@,lIsI'teISnz Mj% 5 +solicited s@'lIsItId Jc%,Jd% 42A,6A,14 +soliciting s@'lIsItIN Jb% 42A,6A,14 +solicitor s@'lIsIt@R K6% 4 +solicitors s@'lIsIt@z Kj% 4 +solicitous s@'lIsIt@s OA% 4 +solicitously s@'lIsIt@slI Pu% 5 +solicits s@'lIsIts Ja% 32A,6A,14 +solicitude s@'lIsItjud L@% 4 +solid 's0lId K6%,OA% 2 +solid-state ,s0lId-'steIt OA% 3 +solidarity ,s0lI'd&rItI L@% 5 +solidification s@,lIdIfI'keISn M6% 6 +solidifications s@,lIdIfI'keISnz Mj$ 6 +solidified s@'lIdIfaId Jc%,Jd% 42A,6A +solidifies s@'lIdIfaIz Ja% 42A,6A +solidify s@'lIdIfaI J3% 42A,6A +solidifying s@'lIdIfaIIN Jb% 52A,6A +solidity s@'lIdItI L@% 4 +solidly 's0lIdlI Pu% 3 +solidness 's0lIdn@s L@% 3 +solids 's0lIdz Kj% 2 +soliloquies s@'lIl@kwIz Mj% 4 +soliloquize s@'lIl@kwaIz I2$ 42A +soliloquized s@'lIl@kwaIzd Ic$,Id$ 42A +soliloquizes s@'lIl@kwaIzIz Ia$ 52A +soliloquizing s@'lIl@kwaIzIN Ib$ 52A +soliloquy s@'lIl@kwI M8% 4 +soling 's@UlIN Hb% 26A +solipsism 's0lIpsIz@m L@$ 4 +solitaire ,s0lI'te@R M6% 3 +solitaires ,s0lI'te@z Mj$ 3 +solitarily 's0lItr@lI Pu% 4 +solitary 's0lItrI OA% 3 +solitude 's0lItjud M6% 3 +solitudes 's0lItjudz Mj$ 3 +solo 's@Ul@U M6% 2 +soloist 's@Ul@UIst K6% 3 +soloists 's@Ul@UIsts Kj% 3 +solos 's@Ul@Uz Mj% 2 +solstice 's0lstIs K6% 2 +solstices 's0lstIsIz Kj$ 3 +solubility ,s0ljU'bIlItI L@% 5 +soluble 's0ljUbl OA% 3 +solution s@'luSn M6% 3 +solutions s@'luSnz Mj% 3 +solvable 's0lv@bl OA% 3 +solve s0lv H2% 16A +solved s0lvd Hc%,Hd% 16A +solvency 's0lv@nsI L@% 3 +solvent 's0lv@nt K6%,OA% 2 +solvents 's0lv@nts Kj% 2 +solves s0lvz Ha% 16A +solving 's0lvIN Hb% 26A +somatic s@U'm&tIk OA$ 3 +sombre 's0mb@R OA% 2 +sombrely 's0mb@lI Pu% 3 +sombreness 's0mb@n@s L@% 3 +sombrero s0m'bre@r@U K6% 3 +sombreros s0m'bre@r@Uz Kj% 3 +some sVm OA*,Pu*,Qx* 1 +somebody 'sVmb@dI Qx% 3 +someday 'sVmdeI Pu% 2 +somehow 'sVmhaU Pu% 2 +someone 'sVmwVn Ki%,Qx% 2 +someplace 'sVmpleIs Pu$ 2 +somersault 'sVm@sOlt I0%,K6% 32A +somersaulted 'sVm@sOltId Ic%,Id% 42A +somersaulting 'sVm@sOltIN Ib% 42A +somersaults 'sVm@sOlts Ia%,Kj% 32A +something 'sVmTIN Pu*,Qx* 2 +sometime 'sVmtaIm Pu% 2 +sometimes 'sVmtaImz Pu* 2 +someway 'sVmweI Pu$ 2 +somewhat 'sVmw0t Pu% 2 +somewhere 'sVmwe@R Pu% 2 +somnambulism s0m'n&mbjUlIz@m L@% 5 +somnambulist s0m'n&mbjUlIst K6% 4 +somnambulists s0m'n&mbjUlIsts Kj% 4 +somnolence 's0mn@l@ns L@% 3 +somnolent 's0mn@l@nt OA% 3 +somnolently 's0mn@l@ntlI Pu% 4 +son sVn K6% 1 +son-in-law 'sVn-In-lO Ki% 3 +sonar 's@UnAR K6$ 2 +sonars 's@UnAz Kj$ 2 +sonata s@'nAt@ K6% 3 +sonatas s@'nAt@z Kj% 3 +song s0N M6% 1 +songbird 's0Nb3d K6% 2 +songbirds 's0Nb3dz Kj% 2 +songbook 's0NbUk K6% 2 +songbooks 's0NbUks Kj% 2 +songs s0Nz Mj% 1 +songster 's0Nst@R K6% 2 +songsters 's0Nst@z Kj% 2 +songstress 's0NstrIs K7$ 2 +songstresses 's0NstrIsIz Kj$ 3 +sonic 's0nIk OA% 2 +sonnet 's0nIt K6% 2 +sonneteer ,s0nI'tI@R K6$ 3 +sonneteers ,s0nI'tI@z Kj$ 3 +sonnets 's0nIts Kj% 2 +sonnies 'sVnIz Kj$ 2 +sonny 'sVnI K8% 2 +sonorities s@'n0rItIz Mj$ 4 +sonority s@'n0rItI M8$ 4 +sonorous s@'nOr@s OA% 3 +sonorously s@'nOr@slI Pu% 4 +sons sVnz Kj% 1 +sons-in-law 'sVnz-In-lO Kj% 3 +sonsy 's0nsI OA$ 2 +soon sun Pu* 1 +sooner 'sun@R Pu% 2 +soonest 'sunIst Pu% 2 +soot sUt H0$,L@% 1 +sooted 'sUtId Hc$,Hd$ 2 +sooth suT K6$ 1 +soothe suD H2% 16A +soothed suDd Hc%,Hd% 16A +soothes suDz Ha% 16A +soothing 'suDIN Hb% 26A +soothingly 'suDINlI Pu% 3 +sooths suTs Kj$ 1 +soothsayer 'suTseI@R K6% 3 +soothsayers 'suTseI@z Kj% 3 +sootier 'sUtI@R Or% 3 +sootiest 'sUtIIst Os% 3 +sooting 'sUtIN Hb$ 2 +soots sUts Ha$ 1 +sooty 'sUtI OD% 2 +sop s0p H4$,K6% 16A,15B +sophism 's0fIz@m M6$ 3 +sophisms 's0fIz@mz Mj$ 3 +sophist 's0fIst K6$ 2 +sophisticated s@'fIstIkeItId OA% 5 +sophistication s@,fIstI'keISn L@% 5 +sophistries 's0fIstrIz Mj$ 3 +sophistry 's0fIstrI M8% 3 +sophists 's0fIsts Kj$ 2 +sophomore 's0f@mOR K6$ 3 +sophomores 's0f@mOz Kj$ 3 +soporific ,s0p@'rIfIk K6$,OA% 4 +soporifics ,s0p@'rIfIks Kj$ 4 +sopped s0pt Hc$,Hd$ 16A,15B +soppier 's0pI@R Or% 3 +soppiest 's0pIIst Os% 3 +sopping 's0pIN Hb$,OA%,Pu% 26A,15B +soppy 's0pI OD% 2 +soprano s@'prAn@U K6% 3 +sopranos s@'prAn@Uz Kj% 3 +sops s0ps Ha$,Kj% 16A,15B +sorbet 'sOb@t K6% 2 +sorbets 'sOb@ts Kj% 2 +sorcerer 'sOs@r@R K6% 3 +sorcerers 'sOs@r@z Kj% 3 +sorceress 'sOs@rIs K7% 3 +sorceresses 'sOs@rIsIz Kj$ 4 +sorceries 'sOs@rIz Mj$ 3 +sorcery 'sOs@rI M8% 3 +sordid 'sOdid OA% 2 +sordidly 'sOdidlI Pu% 3 +sordidness 'sOdidn@s L@% 3 +sore sOR K6%,OA% 1 +sorely 'sOlI Pu% 2 +soreness 'sOn@s L@% 2 +sores sOz Kj% 1 +sorghum 'sOg@m L@$ 2 +sororities s@'r0rItIz Kj$ 4 +sorority s@'r0rItI K8$ 4 +sorrel 's0r@l M6$,OA$ 2 +sorrels 's0r@lz Mj$ 2 +sorrier 's0rI@R Or% 3 +sorriest 's0rIIst Os% 3 +sorrow 's0r@U I0%,M6% 22A,2C +sorrowed 's0r@Ud Ic%,Id% 22A,2C +sorrowful 's0r@Uf@l OA% 3 +sorrowfully 's0r@Uf@lI Pu% 4 +sorrowing 's0r@UIN Ib% 32A,2C +sorrows 's0r@Uz Ia%,Mj% 22A,2C +sorry 's0rI OD% 2 +sort sOt J0%,K6% 16A,15B +sorted 'sOtId Jc%,Jd% 26A,15B +sorter 'sOt@R K6% 2 +sorters 'sOt@z Kj% 2 +sortie 'sOti K6% 2 +sorties 'sOtiz Kj% 2 +sorting 'sOtIN Jb% 26A,15B +sorts sOts Ja%,Kj% 16A,15B +sot s0t K6% 1 +sots s0ts Kj% 1 +sottish 's0tIS OA$ 2 +sottishly 's0tISlI Pu$ 3 +sottishness 's0tISn@s L@$ 3 +sotto voce ,s0t@U 'v@UtSI Pu$ 4 +sou su K6$ 1 +sou'-east ,saU-'ist L@$,Pu$ 2 +sou'-sou'-east ,saU-saU-'ist L@$,Pu$ 3 +sou'-sou'-west ,saU-saU-'west L@$,Pu$ 3 +sou'-west ,saU-'west L@$,Pu$ 2 +sou'-wester ,saU-'west@R K6% 3 +sou'-westers ,saU-'west@z Kj% 3 +soubrette su'bret K6$ 2 +soubrettes su'brets Kj$ 2 +soubriquet 'subrIkeI K6$ 3 +soubriquets 'subrIkeIz Kj$ 3 +souffl_e 'sufleI K6% 2 +souffl_es 'sufleIz Kj% 2 +sough sVf I0$ 12A +soughed sVft Ic$,Id$ 12A +soughing 'sVfIN Ib$ 22A +soughs sVfs Ia$ 12A +sought sOt Hc%,Hd% 12A,3A,6A,7A,15A +soul s@Ul K6% 1 +soul-destroying 's@Ul-dIstroIIN OA% 4 +soul-stirring 's@Ul-st3rIN OA% 3 +soulful 's@Ulf@l OA% 2 +soulfully 's@Ulf@lI Pu% 3 +soulless 's@Ul+l@s OA% 2 +soullessly 's@Ul+l@slI Pu% 3 +souls s@Ulz Kj% 1 +sound saUnd J0%,M6%,OA%,Pu% 12A,2C,2D,6A,15A,15B +sound-film 'saUnd-fIlm K6$ 2 +sound-films 'saUnd-fIlmz Kj$ 2 +sound-recording 'saUnd-rI,kOdIN M6% 4 +sound-recordings 'saUnd-rI,kOdINz Mj% 4 +sound-wave 'saUnd-weIv K6% 2 +sound-waves 'saUnd-weIvz Kj% 2 +soundbox 'saUndb0ks K7$ 2 +soundboxes 'saUndb0ksIz Kj$ 3 +sounded 'saUndId Jc%,Jd% 22A,2C,2D,6A,15A,15B +sounding 'saUndIN Jb% 22A,2C,2D,6A,15A,15B +sounding-board 'saUndIN-bOd K6% 3 +sounding-boards 'saUndIN-bOdz Kj% 3 +soundings 'saUndINz Kj% 2 +soundless 'saUndl@s OA% 2 +soundlessly 'saUndl@slI Pu% 3 +soundly 'saUndlI Pu% 2 +soundness 'saUndn@s L@% 2 +soundproof 'saUndpruf H0%,OA% 26A +soundproofed 'saUndpruft Hc%,Hd% 26A +soundproofing 'saUndprufIN Hb% 36A +soundproofs 'saUndprufs Ha% 26A +sounds saUndz Ja%,Mj% 12A,2C,2D,6A,15A,15B +soundtrack 'saUndtr&k K6% 2 +soundtracks 'saUndtr&ks Kj% 2 +soup sup H0%,M6% 115B +soup-kitchen 'sup-kItSIn K6% 3 +soup-kitchens 'sup-kItSInz Kj% 3 +soup% 3 +treason 'trizn L@% 2 +treasonable 'triz@n@bl OA% 4 +treasonably 'triz@n@blI Pu% 4 +treasonous 'triz@n@s OA$ 3 +treasure 'treZ@R H2%,M6% 26A,15B +treasure-house 'treZ@-haUs K6% 3 +treasure-houses 'treZ@-haUzIz Kj$ 4 +treasure-trove 'treZ@-tr@Uv L@% 3 +treasured 'treZ@d Hc%,Hd% 26A,15B +treasurer 'treZ@r@R K6% 3 +treasurers 'treZ@r@z Kj% 3 +treasures 'treZ@z Ha%,Mj% 26A,15B +treasuries 'treZ@rIz Kj% 3 +treasuring 'treZ@rIN Hb% 36A,15B +treasury 'treZ@rI K8% 3 +treat trit J0%,K6% 13A,6A,14,15A,16B +treated 'tritId Jc%,Jd% 23A,6A,14,15A,16B +treaties 'tritIz Mj% 2 +treating 'tritIN Jb% 23A,6A,14,15A,16B +treatise 'tritIs K6% 2 +treatises 'tritIsIz Kj% 3 +treatment 'tritm@nt M6% 2 +treatments 'tritm@nts Mj% 2 +treats trits Ja%,Kj% 13A,6A,14,15A,16B +treaty 'tritI M8% 2 +treble 'trebl J2%,K6%,OA% 22A,6A +trebled 'trebld Jc%,Jd% 22A,6A +trebles 'treblz Ja%,Kj% 22A,6A +trebling 'treblIN Jb% 22A,6A +tree tri H5$,K6% 16A +tree-fern 'tri-f3n K6% 2 +tree-ferns 'tri-f3nz Kj% 2 +treed trid Hc$,Hd$ 16A +treeing 'triIN Hb$ 26A +treeless 'tril@s OA% 2 +trees triz Ha$,Kj% 16A +trefoil 'trefoIl K6$ 2 +trefoils 'trefoIlz Kj$ 2 +trek trek I4%,K6% 12A,2B,2C +trekked trekt Ic%,Id% 12A,2B,2C +trekking 'trekIN Ib% 22A,2B,2C +treks treks Ia%,Kj% 12A,2B,2C +trellis 'trelIs H1$,K7% 26A +trellised 'trelIst Hc$,Hd% 26A +trellises 'trelIsIz Ha$,Kj% 36A +trellising 'trelIsIN Hb$ 36A +tremble 'trembl I2%,K6% 22A,2B,2C,4B +trembled 'trembld Ic%,Id% 22A,2B,2C,4B +trembles 'tremblz Ia%,Kj% 22A,2B,2C,4B +trembling 'tremblIN Ib% 22A,2B,2C,4B +tremendous trI'mend@s OA% 3 +tremendously trI'mend@slI Pu% 4 +tremolo 'trem@l@U K6% 3 +tremolos 'trem@l@Uz Kj% 3 +tremor 'trem@R K6% 2 +tremors 'trem@z Kj% 2 +tremulous 'tremjUl@s OA$ 3 +tremulously 'tremjUl@slI Pu$ 4 +trench trentS H1$,K7% 16A +trenchancy 'trentS@nsI L@$ 3 +trenchant 'trentS@nt OA% 2 +trenchantly 'trentS@ntlI Pu% 3 +trenched trentSt Hc$,Hd$ 16A +trencher 'trentS@R K6$ 2 +trencherman 'trentS@m@n Ki% 3 +trenchermen 'trentS@m@n Kj% 3 +trenchers 'trentS@z Kj$ 2 +trenches 'trentSIz Ha$,Kj% 26A +trenching 'trentSIN Hb$ 26A +trend trend I0$,K6% 12C +trend-setter 'trend-set@R K6% 3 +trend-setters 'trend-set@z Kj% 3 +trend-setting 'trend-setIN L@% 3 +trended 'trendId Ic$,Id$ 22C +trendier 'trendI@R Or% 3 +trendiest 'trendIIst Os% 3 +trending 'trendIN Ib$ 22C +trends trendz Ia$,Kj% 12C +trendy 'trendI OD% 2 +trepan trI'p&n H4$ 2 +trepanned trI'p&nd Hc$,Hd$ 2 +trepanning trI'p&nIN Hb$ 3 +trepans trI'p&nz Ha$ 2 +trephine trI'fin H2$,K6$ 26A +trephined trI'find Hc$,Hd$ 26A +trephines trI'finz Ha$,Kj$ 26A +trephining trI'finIN Hb$ 36A +trepidation ,trepI'deISn L@% 4 +trespass 'tresp@s I1%,M7% 22A,3A +trespassed 'tresp@st Ic%,Id% 22A,3A +trespasser 'tresp@s@R K6% 3 +trespassers 'tresp@s@z Kj% 3 +trespasses 'tresp@sIz Ia%,Mj% 32A,3A +trespassing 'tresp@sIN Ib% 32A,3A +tress tres K7% 1 +tresses 'tresIz Kj% 2 +trestle 'tresl K6% 2 +trestle-bridge 'tresl-brIdZ K6$ 3 +trestle-bridges 'tresl-brIdZIz Kj$ 4 +trestle-table 'tresl-teIbl K6% 4 +trestle-tables 'tresl-teIblz Kj% 4 +trestles 'treslz Kj% 2 +trews truz Kj$ 1 +tri- traI- U-% 1 +triad 'traI&d K6% 2 +triads 'traI&dz Kj% 2 +trial 'traI@l M6% 2 +trials 'traI@lz Mj% 2 +triangle 'traI&Ngl K6% 3 +triangles 'traI&Nglz Kj% 3 +triangular traI'&NgjUl@R OA% 4 +tribal 'traIbl OA% 2 +tribalism 'traIb@lIz@m L@% 4 +tribe traIb K6% 1 +tribes traIbz Kj% 1 +tribesman 'traIbzm@n Ki% 2 +tribesmen 'traIbzm@n Kj% 2 +tribulation ,trIbjU'leISn M6% 4 +tribulations ,trIbjU'leISnz Mj% 4 +tribunal traI'bjunl K6% 3 +tribunals traI'bjunlz Kj% 3 +tribune 'trIbjun K6% 2 +tribunes 'trIbjunz Kj% 2 +tributaries 'trIbjUt@rIz Kj% 4 +tributary 'trIbjUt@rI K8%,OA% 4 +tribute 'trIbjut M6% 2 +tributes 'trIbjuts Mj% 2 +trice traIs H2$,K6% 115B +triced traIst Hc$,Hd$ 115B +trices 'traIsIz Ha$,Kj$ 215B +tricing 'traIsIN Hb$ 215B +trick trIk H0%,K6% 16A,14,15B +tricked trIkt Hc%,Hd% 16A,14,15B +trickery 'trIk@rI L@% 3 +trickier 'trIkI@R Or% 3 +trickiest 'trIkIIst Os% 3 +trickiness 'trIkInIs L@% 3 +tricking 'trIkIN Hb% 26A,14,15B +trickle 'trIkl J2%,K6% 22A,2C,15A +trickled 'trIkld Jc%,Jd% 22A,2C,15A +trickles 'trIklz Ja%,Kj% 22A,2C,15A +trickling 'trIklIN Jb% 22A,2C,15A +tricks trIks Ha%,Kj% 16A,14,15B +trickster 'trIkst@R K6% 2 +tricksters 'trIkst@z Kj% 2 +tricksy 'trIksI OA% 2 +tricky 'trIkI OD% 2 +tricolour 'trIk@l@R K6$ 3 +tricolours 'trIk@l@z Kj$ 3 +tricycle 'traIsIkl K6% 3 +tricycles 'traIsIklz Kj% 3 +trident 'traIdnt K6% 2 +tridents 'traIdnts Kj$ 2 +tried traId Jc%,Jd%,OA% 12A,2B,3A,6A,6B,6C,7A,10,15A,15B +triennial traI'enI@l K6$,OA$ 4 +triennials traI'enI@lz Kj$ 4 +trier 'traI@R K6$ 2 +triers 'traI@z Kj$ 2 +tries traIz Ja%,Kj% 12A,2B,3A,6A,6B,6C,7A,10,15A,15B +trifle 'traIf@l J2%,M6% 23A,15B +trifled 'traIf@ld Jc%,Jd% 23A,15B +trifler 'traIfl@R K6$ 2 +triflers 'traIfl@z Kj$ 2 +trifles 'traIf@lz Ja%,Mj% 23A,15B +trifling 'traIflIN Jb%,OA% 23A,15B +trigger 'trIg@R H0%,K6% 215B +trigger-happy 'trIg@-h&pI OA% 4 +triggered 'trIg@d Hc%,Hd% 215B +triggering 'trIg@rIN Hb$ 315B +triggers 'trIg@z Ha%,Kj% 215B +trigonometry ,trIg@'n0m@trI L@% 5 +trilateral ,traI'l&t@r@l OA$ 4 +trilbies 'trIlbIz Kj$ 2 +trilby 'trIlbI K8% 2 +trill trIl J0%,K6% 12A,2C,6A +trilled trIld Jc%,Jd% 12A,2C,6A +trilling 'trIlIN Jb% 22A,2C,6A +trillion 'trIlI@n K6%,OA% 3 +trillions 'trIlI@nz Kj% 3 +trillionth 'trIlI@nT K6%,OA% 3 +trillionths 'trIlI@nTs Kj% 3 +trills trIlz Ja%,Kj% 12A,2C,6A +trilogies 'trIl@dZIz Kj% 3 +trilogy 'trIl@dZI K8% 3 +trim trIm J4%,L@%,OE% 12A,6A,14,15A,22 +trimaran 'traIm@r&n K6% 3 +trimarans 'traIm@r&nz Kj% 3 +trimly 'trImlI Pu% 2 +trimmed trImd Jc%,Jd% 12A,6A,14,15A,22 +trimmer 'trIm@R K6$,Or% 2 +trimmers 'trIm@z Kj$ 2 +trimmest 'trImIst Os% 2 +trimming 'trImIN Jb%,M6% 22A,6A,14,15A,22 +trimmings 'trImINz Mj% 2 +trims trImz Ja% 12A,6A,14,15A,22 +trinities 'trInItIz Kj$ 3 +trinitrotoluene ,traI,naItr@U't0ljUin L@$ 6 +trinity 'trInItI K8% 3 +trinket 'trINkIt K6% 2 +trinkets 'trINkIts Kj% 2 +trio 'tri@U K6% 2 +trios 'tri@Uz Kj% 2 +trip trIp J4%,K6% 12A,2C,3A,15B +tripartite ,traI'pAtaIt OA% 3 +tripe traIp L@% 1 +triple 'trIpl J2%,OA% 22A,6A +tripled 'trIpld Jc%,Jd% 22A,6A +triples 'trIplz Ja% 22A,6A +triplet 'trIpl@t K6% 2 +triplets 'trIpl@ts Kj% 2 +triplex 'trIpleks OA$ 2 +triplicate 'trIplIk@t K6$,OA% 3 +triplicate 'trIplIkeIt H2$ 36A +triplicated 'trIplIkeItId Hc$,Hd$ 46A +triplicates 'trIplIk@ts Kj$ 3 +triplicates 'trIplIkeIts Ha$ 36A +triplicating 'trIplIkeItIN Hb$ 46A +tripling 'trIplIN Jb% 22A,6A +tripod 'traIp0d K6% 2 +tripods 'traIp0dz Kj% 2 +tripos 'traIp0s K7$ 2 +triposes 'traIp0sIz Kj$ 3 +tripped trIpt Jc%,Jd% 12A,2C,3A,15B +tripper 'trIp@R K6% 2 +trippers 'trIp@z Kj% 2 +tripping 'trIpIN Jb%,OA$ 22A,2C,3A,15B +trippingly 'trIpINlI Pu$ 3 +trips trIps Ja%,Kj% 12A,2C,3A,15B +triptych 'trIptIk K6$ 2 +triptychs 'trIptIks Kj$ 2 +trireme 'traIrim K6$ 2 +triremes 'traIrimz Kj$ 2 +trisect traI'sekt H0$ 26A +trisected traI'sektId Hc$,Hd$ 36A +trisecting traI'sektIN Hb$ 36A +trisects traI'sekts Ha$ 26A +trite traIt OA% 1 +tritely 'traItlI Pu% 2 +triteness 'traItn@s L@% 2 +triumph 'traI@mf I0%,M6% 22A,3A +triumphal traI'Vmf@l OA% 3 +triumphant traI'Vmf@nt OA% 3 +triumphantly traI'Vmf@ntlI Pu% 4 +triumphed 'traI@mft Ic%,Id% 22A,3A +triumphing 'traI@mfIN Ib% 32A,3A +triumphs 'traI@mfs Ia%,Mj% 22A,3A +triumvir traI'Vmv@R K6$ 3 +triumvirate traI'VmvIr@t K6% 4 +triumvirates traI'VmvIr@ts Kj$ 4 +triumvirs traI'Vmv@z Kj$ 3 +triune 'traIjun OA$ 2 +trivet 'trIvIt K6$ 2 +trivets 'trIvIts Kj$ 2 +trivia 'trIvI@ Kj% 3 +trivial 'trIvI@l OA% 3 +trivialities ,trIvI'&lItIz Mj% 5 +triviality ,trIvI'&lItI M8% 5 +trivialize 'trIvI@laIz H2% 46A +trivialized 'trIvI@laIzd Hc%,Hd% 46A +trivializes 'trIvI@laIzIz Ha% 56A +trivializing 'trIvI@laIzIN Hb% 56A +trivially 'trIvI@lI Pu% 4 +trochaic tr@U'keIIk OA$ 3 +trochee 'tr@Uki K6$ 2 +trochees 'tr@Ukiz Kj$ 2 +trod tr0d Jc%,Jd% 12C,3A,6A,15A,15B +trodden 'tr0dn Jd% 22C,3A,6A,15A,15B +troglodyte 'tr0gl@daIt K6$ 3 +troglodytes 'tr0gl@daIts Kj$ 3 +troika 'troIk@ K6$ 2 +troikas 'troIk@z Kj$ 2 +troll tr@Ul J0$,K6$ 12A,2C +trolled tr@Uld Jc$,Jd$ 12A,2C +trolley 'tr0lI K6% 2 +trolley-car 'tr0lI-kAR K6% 3 +trolley-cars 'tr0lI-kAz Kj% 3 +trolleys 'tr0lIz Kj% 2 +trolling 'tr@UlIN Jb$ 22A,2C +trollop 'tr0l@p K6% 2 +trollops 'tr0l@ps Kj% 2 +trolls tr@Ulz Ja$,Kj$ 12A,2C +trombone tr0m'b@Un K6% 2 +trombones tr0m'b@Unz Kj% 2 +trombonist tr0m'b@UnIst K6% 3 +trombonists tr0m'b@UnIsts Kj% 3 +troop trup J0%,K6% 12C +troop-carrier 'trup-k&rI@R K6% 4 +troop-carriers 'trup-k&rI@z Kj% 4 +trooped trupt Jc%,Jd% 12C +trooper 'trup@R K6% 2 +troopers 'trup@z Kj% 2 +trooping 'trupIN Jb% 22C +troops trups Ja%,Kj% 12C +troopship 'trupSIp K6% 2 +troopships 'trupSIps Kj% 2 +trope tr@Up K6$ 1 +tropes tr@Ups Kj$ 1 +trophies 'tr@UfIz Kj% 2 +trophy 'tr@UfI K8% 2 +tropic 'tr0pIk K6% 2 +tropical 'tr0pIkl OA% 3 +tropically 'tr0pIklI Pu% 3 +tropics 'tr0pIks Kj% 2 +trot tr0t J4%,K6% 12A,2B,2C,15A,15B +troth tr@UT L@$ 1 +trots tr0ts Ja%,Kj% 12A,2B,2C,15A,15B +trotted 'tr0tId Jc%,Jd% 22A,2B,2C,15A,15B +trotter 'tr0t@R K6% 2 +trotters 'tr0t@z Kj% 2 +trotting 'tr0tIN Jb% 22A,2B,2C,15A,15B +troubadour 'trub@dOR K6% 3 +troubadours 'trub@dOz Kj% 3 +trouble 'trVbl J2%,M6% 22A,2C,4A,6A,14,17 +troubled 'trVbld Jc%,Jd% 22A,2C,4A,6A,14,17 +troublemaker 'trVblmeIk@R K6% 4 +troublemakers 'trVblmeIk@z Kj% 4 +troubles 'trVblz Ja%,Mj% 22A,2C,4A,6A,14,17 +troubleshooter 'trVblSut@R K6% 4 +troubleshooters 'trVblSut@z Kj% 4 +troublesome 'trVbls@m OA% 3 +troubling 'trVblIN Jb% 22A,2C,4A,6A,14,17 +troublous 'trVbl@s OA$ 2 +trough tr0f K6% 1 +troughs tr0fs Kj% 1 +trounce traUns H2% 16A +trounced traUnst Hc%,Hd% 16A +trounces 'traUnsIz Ha% 26A +trouncing 'traUnsIN Hb%,K6% 26A +trouncings 'traUnsINz Kj$ 2 +troupe trup K6% 1 +trouper 'trup@R K6% 2 +troupers 'trup@z Kj% 2 +troupes trups Kj% 1 +trouser 'traUz@R K6% 2 +trousers 'traUz@z Kj% 2 +trousseau 'trus@U K6% 2 +trousseaus 'trus@Uz Kj$ 2 +trousseaux 'trus@Uz Kj$ 2 +trout traUt M9% 1 +trove tr@Uv K6% 1 +troves tr@Uvz Kj$ 1 +trowel 'traU@l K6% 2 +trowels 'traU@lz Kj% 2 +troy troI L@$ 1 +truancies 'tru@nsIz Mj$ 3 +truancy 'tru@nsI M8% 3 +truant 'tru@nt K6% 2 +truants 'tru@nts Kj% 2 +truce trus K6% 1 +truces 'trusIz Kj$ 2 +truck trVk M6% 1 +truckle 'trVkl I2$,K6$ 23A +truckle-bed 'trVkl-bed K6% 3 +truckle-beds 'trVkl-bedz Kj% 3 +truckled 'trVkld Ic$,Id$ 23A +truckles 'trVklz Ia$,Kj$ 23A +truckling 'trVklIN Ib$ 23A +trucks trVks Mj% 1 +truculence 'trVkjUl@ns L@% 3 +truculency 'trVkjUl@nsI L@$ 4 +truculent 'trVkjUl@nt OA% 3 +truculently 'trVkjUl@ntlI Pu% 4 +trudge trVdZ I2%,K6% 12A,2B,2C +trudged trVdZd Ic%,Id% 12A,2B,2C +trudges 'trVdZIz Ia%,Kj% 22A,2B,2C +trudging 'trVdZIN Ib% 22A,2B,2C +true tru H2$,K6$,OB*,Pu* 115B +true-blue tru-'blu K6%,OA% 2 +true-blues tru-'bluz Kj% 2 +true-hearted tru-'hAtId OA$ 3 +trued trud Hc$,Hd$ 115B +truelove tru'lVv K6% 2 +trueloves tru'lVvz Kj$ 2 +truer 'tru@R Or% 2 +trues truz Ha$,Kj$ 115B +truest 'truIst Os% 2 +truffle 'trVfl K6% 2 +truffles 'trVflz Kj% 2 +truing 'truIN Hb$ 215B +truism 'truIz@m K6% 3 +truisms 'truIz@mz Kj% 3 +truly 'trulI Pu% 2 +trump trVmp J0%,K6% 12A,6A,15B +trumped trVmpt Jc%,Jd% 12A,6A,15B +trumpery 'trVmp@rI OA% 3 +trumpet 'trVmpIt J0%,K6% 22A,2C,6A,15B +trumpeted 'trVmpItId Jc%,Jd% 32A,2C,6A,15B +trumpeter 'trVmpIt@R K6% 3 +trumpeters 'trVmpIt@z Kj% 3 +trumpeting 'trVmpItIN Jb% 32A,2C,6A,15B +trumpets 'trVmpIts Ja%,Kj% 22A,2C,6A,15B +trumping 'trVmpIN Jb% 22A,6A,15B +trumps trVmps Ja%,Kj% 12A,6A,15B +truncate trVN'keIt H2% 26A +truncated trVN'keItId Hc%,Hd% 36A +truncates trVN'keIts Ha% 26A +truncating trVN'keItIN Hb% 36A +truncheon 'trVntS@n K6% 2 +truncheons 'trVntS@nz Kj% 2 +trundle 'trVndl J2% 22C,6A,15A,15B +trundled 'trVndld Jc%,Jd% 22C,6A,15A,15B +trundles 'trVndlz Ja% 22C,6A,15A,15B +trundling 'trVndlIN Jb% 22C,6A,15A,15B +trunk trVNk K6% 1 +trunk-call 'trVNk-kOl K6% 2 +trunk-calls 'trVNk-kOlz Kj% 2 +trunk-line 'trVNk-laIn K6$ 2 +trunk-lines 'trVNk-laInz Kj$ 2 +trunk-road 'trVNk-r@Ud K6% 2 +trunk-roads 'trVNk-r@Udz Kj% 2 +trunking 'trVNkIN L@% 2 +trunks trVNks Kj% 1 +truss trVs H1$,K7% 16A,15B +trussed trVst Hc$,Hd% 16A,15B +trusses 'trVsIz Ha$,Kj% 26A,15B +trussing 'trVsIN Hb$ 26A,15B +trust trVst J0%,M6% 13A,6A,7A,9,14,15A,15B,17 +trusted 'trVstId Jc%,Jd% 23A,6A,7A,9,14,15A,15B,17 +trustee trVs'ti K6% 2 +trustees trVs'tiz Kj% 2 +trusteeship trVs'tiSIp K6$ 3 +trusteeships trVs'tiSIps Kj$ 3 +trustful 'trVstf@l OA% 2 +trustfully 'trVstf@lI Pu% 3 +trustier 'trVstI@R Or$ 3 +trustiest 'trVstIIst Os$ 3 +trusting 'trVstIN Jb%,OA% 23A,6A,7A,9,14,15A,15B,17 +trustingly 'trVstINlI Pu% 3 +trusts trVsts Ja%,Mj% 13A,6A,7A,9,14,15A,15B,17 +trustworthiness 'trVstw3DIn@s L@% 4 +trustworthy 'trVstw3DI OA% 3 +trusty 'trVstI OD% 2 +truth truT M6% 1 +truthful 'truTf@l OA% 2 +truthfully 'truTf@lI Pu% 3 +truthfulness 'truTf@ln@s L@% 3 +truths truDz Mj% 1 +try traI J3%,K8% 12A,2B,3A,6A,6B,6C,7A,10,15A,15B +try-on 'traI-0n K6% 2 +try-ons 'traI-0nz Kj$ 2 +try-out 'traI-aUt K6% 2 +try-outs 'traI-aUts Kj$ 2 +trying 'traIIN Jb%,OA% 22A,2B,3A,6A,6B,6C,7A,10,15A,15B +tryst trIst K6$ 1 +trysts trIsts Kj$ 1 +tsetse 'tsetsI K6$ 2 +tsetse-flies 'tsetsI-flaIz Kj% 3 +tsetse-fly 'tsetsI-flaI K8% 3 +tsetses 'tsetsIz Kj$ 2 +tu quoque ,tju 'kw@UkwI W-$ 3 +tub tVb K6% 1 +tub-thumper 'tVb-TVmp@R K6% 3 +tub-thumpers 'tVb-TVmp@z Kj% 3 +tuba 'tjub@ K6% 2 +tubas 'tjub@z Kj% 2 +tubbier 'tVbI@R Or$ 3 +tubbiest 'tVbIIst Os$ 3 +tubby 'tVbI OD% 2 +tube tjub M6% 1 +tube-well 'tjub-wel K6$ 2 +tube-wells 'tjub-welz Kj$ 2 +tubeless 'tjubl@s OA% 2 +tuber 'tjub@R K6$ 2 +tubercular tju'b3kjUl@R OA% 4 +tuberculosis tju,b3kjU'l@UsIs L@% 5 +tuberculous tju'b3kjUl@s OA% 4 +tubers 'tjub@z Kj$ 2 +tubes tjubz Mj% 1 +tubful 'tVbfUl K6% 2 +tubfuls 'tVbfUlz Kj% 2 +tubing 'tjubIN L@% 2 +tubs tVbz Kj% 1 +tubular 'tjubjUl@R OA% 3 +tuck tVk J0%,M6% 12C,3A,15A,15B +tuck-in 'tVk-In K6% 2 +tuck-ins 'tVk-Inz Kj$ 2 +tuck-shop 'tVk-S0p K6% 2 +tuck-shops 'tVk-S0ps Kj% 2 +tucked tVkt Jc%,Jd% 12C,3A,15A,15B +tucker 'tVk@R K6$ 2 +tuckers 'tVk@z Kj$ 2 +tucking 'tVkIN Jb% 22C,3A,15A,15B +tucks tVks Ja%,Mj% 12C,3A,15A,15B +tuft tVft K6% 1 +tufted 'tVftId OA% 2 +tufts tVfts Kj% 1 +tug tVg J4%,K6% 12A,2C,3A,6A,15A,15B +tugboat 'tVgb@Ut K6% 2 +tugboats 'tVgb@Uts Kj% 2 +tugged tVgd Jc%,Jd% 12A,2C,3A,6A,15A,15B +tugging 'tVgIN Jb% 22A,2C,3A,6A,15A,15B +tugs tVgz Ja%,Kj% 12A,2C,3A,6A,15A,15B +tuition tju'ISn L@% 3 +tulip 'tjulIp K6% 2 +tulips 'tjulIps Kj% 2 +tulle tjul L@$ 1 +tumble 'tVmbl J2%,K6% 22A,2C,3A,6A,15A,15B +tumble-down 'tVmbl-daUn Oq% 3 +tumbled 'tVmbld Jc%,Jd% 22A,2C,3A,6A,15A,15B +tumbler 'tVmbl@R K6% 2 +tumblers 'tVmbl@z Kj% 2 +tumbles 'tVmblz Ja%,Kj% 22A,2C,3A,6A,15A,15B +tumbleweed 'tVmblwid L@$ 3 +tumbling 'tVmblIN Jb% 22A,2C,3A,6A,15A,15B +tumbrel 'tVmbr@l K6$ 2 +tumbrels 'tVmbr@lz Kj$ 2 +tumbril 'tVmbr@l K6$ 2 +tumbrils 'tVmbr@lz Kj$ 2 +tumescence tju'mesns M6% 3 +tumescences tju'mesnsIz Mj$ 4 +tumescent tju'mesnt OA% 3 +tumid 'tjumId OA$ 2 +tumidity tju'mIdItI L@$ 4 +tummies 'tVmIz Kj% 2 +tummy 'tVmI K8% 2 +tumour 'tjum@R K6% 2 +tumours 'tjum@z Kj% 2 +tumuli 'tjumjUlaI Kj$ 3 +tumult 'tjumVlt M6% 2 +tumults 'tjumVlts Mj% 2 +tumultuous tju'mVltSU@s OA% 4 +tumultuously tju'mVltSU@slI Pu% 5 +tumulus 'tjumjUl@s Ki$ 3 +tun tVn K6$ 1 +tuna 'tjun@ M9% 2 +tunas 'tjun@z Kj$ 2 +tundra 'tVndr@ M6% 2 +tundras 'tVndr@z Mj$ 2 +tune tjun J2%,M6% 12C,6A +tuned tjund Jc%,Jd% 12C,6A +tuneful 'tjunf@l OA% 2 +tunefully 'tjunf@lI Pu% 3 +tunefulness 'tjunf@ln@s L@% 3 +tuner 'tjun@R K6% 2 +tuners 'tjun@z Kj% 2 +tunes tjunz Ja%,Mj% 12C,6A +tung-oil 'tVN-oIl L@$ 2 +tungsten 'tVNst@n L@% 2 +tunic 'tjunIk K6% 2 +tunics 'tjunIks Kj% 2 +tuning 'tjunIN Jb% 22C,6A +tuning-fork 'tjunIN-fOk K6% 3 +tuning-forks 'tjunIN-fOks Kj% 3 +tunnel 'tVnl J4%,K6% 22A,2C,3A,6A +tunnelled 'tVnld Jc%,Jd% 22A,2C,3A,6A +tunnelling 'tVn@lIN Jb% 32A,2C,3A,6A +tunnels 'tVnlz Ja%,Kj% 22A,2C,3A,6A +tunnies 'tVnIz Kj$ 2 +tunny 'tVnI K9$ 2 +tuns tVnz Kj$ 1 +tup tVp K6$ 1 +tuppence 'tVp@ns K6% 2 +tuppences 'tVp@nsIz Kj% 3 +tuppenny 'tVp@nI OA% 3 +tups tVps Kj$ 1 +turban 't3b@n K6% 2 +turbaned 't3b@nd OA% 2 +turbans 't3b@nz Kj% 2 +turbid 't3bId OA$ 2 +turbidity t3'bIdItI L@$ 4 +turbidness 't3bIdn@s L@$ 3 +turbine 't3baIn K6% 2 +turbines 't3baInz Kj% 2 +turbojet ,t3b@U'dZet K6% 3 +turbojets ,t3b@U'dZets Kj% 3 +turboprop ,t3b@U'pr0p K6% 3 +turboprops ,t3b@U'pr0ps Kj% 3 +turbot 't3b@t M9% 2 +turbulence 't3bjUl@ns M6% 3 +turbulences 't3bjUl@nsIz Mj$ 4 +turbulent 't3bjUl@nt OA% 3 +turbulently 't3bjUl@ntlI Pu% 4 +turd t3d K6% 1 +turds t3dz Kj% 1 +tureen tjU'rin K6% 2 +tureens tjU'rinz Kj% 2 +turf t3f H0$,M6% 16A,15B +turfed t3ft Hc$,Hd$ 16A,15B +turfing 't3fIN Hb$ 26A,15B +turfs t3fs Ha$,Mj$ 16A,15B +turgid 't3dZId OA% 2 +turgidity t3'dZIdItI L@$ 4 +turgidly 't3dZIdlI Pu% 3 +turkey 't3kI M6% 2 +turkeys 't3kIz Mj% 2 +turmeric 't3m@rIk L@% 3 +turmoil 't3moIl M6% 2 +turmoils 't3moIlz Mj$ 2 +turn t3n J0*,K6% 12A,2C,3A,4A,6A,14,15A,15B +turn-off 't3n-0f K6% 2 +turn-offs 't3n-0fs Kj$ 2 +turn-on 't3n-0n K6% 2 +turn-ons 't3n-0nz Kj$ 2 +turn-out 't3n-aUt K6% 2 +turn-outs 't3n-aUts Kj$ 2 +turn-round 't3n-raUnd K6% 2 +turn-rounds 't3n-raUndz Kj$ 2 +turn-up 't3n-Vp K6% 2 +turn-ups 't3n-Vps Kj% 2 +turncoat 't3nk@Ut K6% 2 +turncoats 't3nk@Uts Kj% 2 +turncock 't3nk0k K6$ 2 +turncocks 't3nk0ks Kj$ 2 +turned t3nd Jc*,Jd* 12A,2C,3A,4A,6A,14,15A,15B +turner 't3n@R K6% 2 +turners 't3n@z Kj% 2 +turning 't3nIN Jb%,K6% 22A,2C,3A,4A,6A,14,15A,15B +turning-point 't3nIN-poInt K6% 3 +turning-points 't3nIN-poInts Kj% 3 +turnings 't3nINz Kj% 2 +turnip 't3nIp K6% 2 +turnips 't3nIps Kj% 2 +turnkey 't3nki K6% 2 +turnkeys 't3nkiz Kj% 2 +turnover 't3n@Uv@R K6% 3 +turnovers 't3n@Uv@z Kj% 3 +turnpike 't3npaIk K6% 2 +turnpikes 't3npaIks Kj% 2 +turns t3nz Ja%,Kj% 12A,2C,3A,4A,6A,14,15A,15B +turnspit 't3nspIt K6$ 2 +turnspits 't3nspIts Kj$ 2 +turnstile 't3nstaIl K6% 2 +turnstiles 't3nstaIlz Kj% 2 +turntable 't3nteIbl K6% 3 +turntables 't3nteIblz Kj% 3 +turpentine 't3p@ntaIn L@% 3 +turpitude 't3pItjud L@% 3 +turps t3ps L@% 1 +turquoise 't3kwoIz M6% 2 +turquoises 't3kwoIzIz Mj$ 3 +turret 'tVrIt K6% 2 +turrets 'tVrIts Kj% 2 +turtle 't3tl K6% 2 +turtledove 't3tldVv K6% 3 +turtledoves 't3tldVvz Kj% 3 +turtleneck 't3tlnek OA% 3 +turtlenecked 't3tlnekt OA% 3 +turtles 't3tlz Kj% 2 +turves t3vz Kj$ 1 +tusk tVsk K6% 1 +tusks tVsks Kj% 1 +tussle 'tVsl I2%,K6% 2 +tussled 'tVsld Ic%,Id% 2 +tussles 'tVslz Ia%,Kj% 2 +tussling 'tVslIN Ib% 2 +tussock 'tVs@k K6% 2 +tussocks 'tVs@ks Kj% 2 +tut tVt H4$,W-$ 16A +tut-tut ,tVt-'tVt W-% 2 +tutelage 'tjutIlIdZ L@% 3 +tutelary 'tjutIl@rI OA$ 4 +tutor 'tjut@R H0%,K6% 26A,15A,16A +tutored 'tjut@d Hc%,Hd% 26A,15A,16A +tutorial tju'tOrI@l K6%,OA% 4 +tutorially tju'tOrI@lI Pu% 5 +tutorials tju'tOrI@lz Kj% 4 +tutoring 'tjut@rIN Hb% 36A,15A,16A +tutors 'tjut@z Ha%,Kj% 26A,15A,16A +tutorship 'tjut@SIp K6% 3 +tutorships 'tjut@SIps Kj$ 3 +tuts tVts Ha$ 16A +tutted 'tVtId Hc$,Hd$ 26A +tutti-frutti ,tutI-'frutI M6% 4 +tutti-fruttis ,tutI-'frutIz Mj$ 4 +tutting 'tVtIN Hb$ 26A +tutu 'tutu K6$ 2 +tutus 'tutuz Kj$ 2 +tuxedo tVk'sid@U K6% 3 +tuxedos tVk'sid@Uz Kj% 3 +twaddle 'tw0dl I2$,L@% 22A +twaddled 'tw0dld Ic$,Id$ 22A +twaddles 'tw0dlz Ia$ 22A +twaddling 'tw0dlIN Ib$ 22A +twain tweIn K6% 1 +twains tweInz Kj$ 1 +twang tw&N J0%,K6% 12A,6A +twanged tw&Nd Jc%,Jd% 12A,6A +twanging 'tw&NIN Jb% 22A,6A +twangs tw&Nz Ja%,Kj% 12A,6A +tweak twik H0%,K6% 16A +tweaked twikt Hc%,Hd% 16A +tweaking 'twikIN Hb% 26A +tweaks twiks Ha%,Kj% 16A +twee twi OA% 1 +tweed twid M6% 1 +tweeds twidz Mj% 1 +tweet twit I0$,K6$ 1 +tweeted 'twitId Ic$,Id$ 2 +tweeter 'twit@R K6$ 2 +tweeters 'twit@z Kj$ 2 +tweeting 'twitIN Ib$ 2 +tweets twits Ia$,Kj$ 1 +tweezers 'twiz@z Kj% 2 +twelfth twelfT K6%,OA% 1 +twelfths twelfTs Kj% 1 +twelve twelv K6%,OA% 1 +twelvemonth 'twelvmVnT K6% 2 +twelvemonths 'twelvmVnTs Kj$ 2 +twelves twelvz Kj% 1 +twenties 'twentIz Kj% 2 +twentieth 'twentI@T K6%,OA% 3 +twentieths 'twentI@Ts Kj% 3 +twenty 'twentI K8%,OA% 2 +twerp tw3p K6% 1 +twerps tw3ps Kj% 1 +twice twaIs Pu% 1 +twiddle 'twIdl J2%,K6$ 23A,6A +twiddled 'twIdld Jc%,Jd% 23A,6A +twiddles 'twIdlz Ja%,Kj$ 23A,6A +twiddling 'twIdlIN Jb% 23A,6A +twiddly 'twIdlI OA% 2 +twig twIg J4%,K6% 12A,6A +twigged twIgd Jc%,Jd% 12A,6A +twiggier 'twIgI@R Or$ 3 +twiggiest 'twIgIIst Os$ 3 +twigging 'twIgIN Jb$ 22A,6A +twiggy 'twIgI OD% 2 +twigs twIgz Ja%,Kj% 12A,6A +twilight 'twaIlaIt L@% 2 +twilit 'twaIlIt OA$ 2 +twill twIl L@$ 1 +twilled twIld OA$ 1 +twin twIn H4%,K6% 16A,14 +twine twaIn J2%,L@% 12A,2C,15A,15B +twined twaInd Jc%,Jd% 12A,2C,15A,15B +twines twaInz Ja% 12A,2C,15A,15B +twinge twIndZ K6% 1 +twinges 'twIndZIz Kj% 2 +twining 'twaInIN Jb% 22A,2C,15A,15B +twinkle 'twINkl I2%,L@% 22A,2C +twinkled 'twINkld Ic%,Id% 22A,2C +twinkles 'twINklz Ia% 22A,2C +twinkling 'twINklIN Ib%,Ki% 22A,2C +twinned twInd Hc%,Hd%,Oq% 16A,14 +twinning 'twInIN Hb% 26A,14 +twins twInz Ha%,Kj% 16A,14 +twirl tw3l J0%,K6% 12A,2C,6A,15B,16A +twirled tw3ld Jc%,Jd% 12A,2C,6A,15B,16A +twirling 'tw3lIN Jb% 22A,2C,6A,15B,16A +twirls tw3lz Ja%,Kj% 12A,2C,6A,15B,16A +twist twIst J0%,M6% 12A,2C,6A,15A,15B,16A +twisted 'twIstId Jc%,Jd% 22A,2C,6A,15A,15B,16A +twister 'twIst@R K6% 2 +twisters 'twIst@z Kj% 2 +twistier 'twIstI@R Or$ 3 +twistiest 'twIstIIst Os$ 3 +twisting 'twIstIN Jb% 22A,2C,6A,15A,15B,16A +twists twIsts Ja%,Mj% 12A,2C,6A,15A,15B,16A +twisty 'twIstI OD% 2 +twit twIt H4$,K6% 16A,14 +twitch twItS J1%,K7% 12A,2C,6A,15A,15B +twitched twItSt Jc%,Jd% 12A,2C,6A,15A,15B +twitches 'twItSIz Ja%,Kj% 22A,2C,6A,15A,15B +twitching 'twItSIN Jb% 22A,2C,6A,15A,15B +twits twIts Ha$,Kj% 16A,14 +twitted 'twItId Hc$,Hd$ 26A,14 +twitter 'twIt@R I0%,K6% 215A,15B +twittered 'twIt@d Ic%,Id% 215A,15B +twittering 'twIt@rIN Ib% 315A,15B +twitters 'twIt@z Ia%,Kj% 215A,15B +twitting 'twItIN Hb$ 26A,14 +two tu K6%,OA* 1 +two-a-penny ,tu-@-'penI OA% 4 +two-edged tu-'edZd OA% 2 +two-faced tu-'feIst OA% 2 +two-funnelled tu-'fVn@ld OA% 3 +two-handed tu-'h&ndId OA% 3 +two-piece 'tu-pis Ki% 2 +two-ply 'tu-plaI OA% 2 +two-seater tu-'sit@R K6% 3 +two-seaters tu-'sit@z Kj% 3 +two-step 'tu-step K6% 2 +two-steps 'tu-steps Kj% 2 +two-timing 'tu-taImIN OA% 3 +two-way 'tu-weI Oq% 2 +twofold 'tuf@Uld OA%,Pu% 2 +twopence 'tVp@ns K6% 2 +twopences 'tVp@nsIz Kj% 3 +twopenny 'tVp@nI OA% 3 +twopenny-halfpenny ,tVpnI-'heIpnI OA% 4 +twos tuz Kj% 1 +tycoon taI'kun K6% 2 +tycoons taI'kunz Kj% 2 +tying 'taIIN Jb% 22A,3A,6A,15A,15B +tyke taIk K6$ 1 +tykes taIks Kj$ 1 +tympana 'tImp@n@ Kj$ 3 +tympanum 'tImp@n@m K6$ 3 +tympanums 'tImp@n@mz Kj$ 3 +type taIp J2%,M6% 12A,6A +typecast 'taIpkAst H5$,Hc$,Hd% 26A +typecasting 'taIpkAstIN Hb$ 36A +typecasts 'taIpkAsts Ha$ 26A +typed taIpt Jc%,Jd% 12A,6A +typeface 'taIpfeIs K6% 2 +typefaces 'taIpfeIsIz Kj% 3 +types taIps Ja%,Mj% 12A,6A +typescript 'taIpskrIpt K6% 2 +typescripts 'taIpskrIpts Kj% 2 +typesetter 'taIpset@R K6% 3 +typesetters 'taIpset@z Kj% 3 +typewriter 'taIpraIt@R K6% 3 +typewriters 'taIpraIt@z Kj% 3 +typewritten 'taIprItn OA% 3 +typhoid 'taIfoId L@% 2 +typhoon taI'fun K6% 2 +typhoons taI'funz Kj% 2 +typhus 'taIf@s L@% 2 +typical 'tIpIkl OA% 3 +typically 'tIpIklI Pu% 3 +typified 'tIpIfaId Hc%,Hd% 36A +typifies 'tIpIfaIz Ha% 36A +typify 'tIpIfaI H3% 36A +typifying 'tIpIfaIIN Hb% 46A +typing 'taIpIN Jb% 22A,6A +typist 'taIpIst K6% 2 +typists 'taIpIsts Kj% 2 +typographer taI'p0gr@f@R K6% 4 +typographers taI'p0gr@f@z Kj% 4 +typographic ,taIp@'gr&fIk OA% 4 +typographically ,taIp@'gr&fIklI Pu% 5 +typography taI'p0gr@fI L@% 4 +tyrannical tI'r&nIkl OA% 4 +tyrannies 'tIr@nIz Mj% 3 +tyrannize 'tIr@naIz J2% 33A,6A +tyrannized 'tIr@naIzd Jc%,Jd% 33A,6A +tyrannizes 'tIr@naIzIz Ja% 43A,6A +tyrannizing 'tIr@naIzIN Jb% 43A,6A +tyrannous 'tIr@n@s OA% 3 +tyranny 'tIr@nI M8% 3 +tyrant 'taI@r@nt K6% 2 +tyrants 'taI@r@nts Kj% 2 +tyre 'taI@R K6% 1 +tyres 'taI@z Kj% 1 +tyro 'taI@r@U K6$ 2 +tyros 'taI@r@Uz Kj$ 2 +tzar zAR K6% 1 +tzarina zA'rin@ K6% 3 +tzarinas zA'rin@z Kj$ 3 +tzars zAz Kj$ 1 +u ju Ki$ 1 +u's juz Kj$ 1 +ubiquitous ju'bIkwIt@s OA% 4 +ubiquity ju'bIkwItI L@$ 4 +udder 'Vd@R K6% 2 +udders 'Vd@z Kj% 2 +ugh 3 W-$ 1 +uglier 'VglI@R Or% 3 +ugliest 'VglIIst Os% 3 +uglified 'VglIfaId Hc$,Hd$ 3 +uglifies 'VglIfaIz Ha$ 3 +uglify 'VglIfaI H3$ 3 +uglifying 'VglIfaIIN Hb$ 4 +ugliness 'VglIn@s L@% 3 +ugly 'VglI OD% 2 +ukase ju'keIs K6$ 2 +ukases ju'keIsIz Kj$ 3 +ukulele ,juk@'leIlI K6% 4 +ukuleles ,juk@'leIlIz Kj% 4 +ulcer 'Vls@R K6% 2 +ulcerate 'Vls@reIt J2% 32A,6A +ulcerated 'Vls@reItId Jc%,Jd% 42A,6A +ulcerates 'Vls@reIts Ja% 32A,6A +ulcerating 'Vls@reItIN Jb% 42A,6A +ulceration ,Vls@'reISn K6% 4 +ulcerations ,Vls@'reISnz Kj% 4 +ulcerous 'Vls@r@s OA% 3 +ulcers 'Vls@z Kj% 2 +ulna 'Vln@ Ki% 2 +ulnae 'Vlni Kj$ 2 +ulster 'Vlst@R K6$ 2 +ulsters 'Vlst@z Kj$ 2 +ulterior Vl'tI@rI@R OA% 4 +ultimata ,VltI'meIt@ Kj$ 4 +ultimate 'VltIm@t OA% 3 +ultimately 'VltIm@tlI Pu% 4 +ultimatum ,VltI'meIt@m K6% 4 +ultimatums ,VltI'meIt@mz Kj% 4 +ultimo 'VltIm@U OA$ 3 +ultra vires ,Vltr@ 'vaI@riz OA$,Pu$ 4 +ultra- ,Vltr@- U-% 2 +ultramarine ,Vltr@m@'rin K6$,OA% 4 +ultramarines ,Vltr@m@'rinz Kj$ 4 +ultramontane ,Vltr@m0n'teIn OA$ 4 +ultrasonic ,Vltr@'s0nIk OA% 4 +ultraviolet ,Vltr@'vaI@l@t OA% 5 +ululate 'juljUleIt I2$ 32A +ululated 'juljUleItId Ic$,Id$ 42A +ululates 'juljUleIts Ia$ 32A +ululating 'juljUleItIN Ib$ 42A +ululation ,juljU'leISn K6$ 4 +ululations ,juljU'leISnz Kj$ 4 +umber 'Vmb@R K6$,OA$ 2 +umbers 'Vmb@z Kj$ 2 +umbilical Vm'bIlIkl OA% 4 +umbrage 'VmbrIdZ L@% 2 +umbrella Vm'brel@ K6% 3 +umbrellas Vm'brel@z Kj% 3 +umlaut 'UmlaUt K6$ 2 +umlauts 'UmlaUts Kj$ 2 +umpire 'VmpaI@R J2%,K6% 22A,6A +umpired 'VmpaI@d Jc%,Jd% 22A,6A +umpires 'VmpaI@z Ja%,Kj% 22A,6A +umpiring 'VmpaI@rIN Jb% 32A,6A +umpteen 'Vmptin OA% 2 +umpteenth 'VmptinT OA% 2 +un- Vn- U-% 1 +un-come-at-able ,Vn-kVm-'&t-@bl OA$ 5 +un-get-at-able ,Vn-get-'&t-@bl OA$ 5 +unabashed ,Vn@'b&St OA% 3 +unabated ,Vn@'beItId OA% 4 +unable Vn'eIbl Op% 3 +unabridged ,Vn@'brIdZd OA% 3 +unacceptable ,Vn@k'sept@bl OA% 5 +unacceptably ,Vn@k'sept@blI Pu% 5 +unaccommodating ,Vn@'k0m@deItIN OA% 6 +unaccompanied ,Vn@'kVmp@nId OA% 5 +unaccountable ,Vn@'kaUnt@bl OA% 5 +unaccountably ,Vn@'kaUnt@blI Pu% 5 +unaccounted ,Vn@'kaUntId OA% 4 +unaccustomed ,Vn@'kVst@md OA% 4 +unacknowledged ,Vn@k'n0lIdZd OA% 4 +unacquainted ,Vn@'kweIntId OA% 4 +unadorned ,Vn@'dOnd OA% 3 +unadulterated ,Vn@'dVlt@reItId OA% 6 +unadventurous ,Vn@d'ventS@r@s OA% 5 +unadvised ,Vn@d'vaIzd OA$ 3 +unadvisedly ,Vn@d'vaIz@dlI Pu% 5 +unaffected ,Vn@'fektId OA% 4 +unafraid ,Vn@'freId Op% 3 +unaided Vn'eIdId OA% 3 +unalienable Vn'eIlI@n@bl OA$ 6 +unaligned ,Vn@'laInd OA% 3 +unalloyed ,Vn@'loId OA% 3 +unalterable Vn'0lt@r@bl OA% 5 +unalterably Vn'Olt@r@blI Pu% 5 +unaltered Vn'Olt@d OA% 3 +unambiguous ,Vn&m'bIgjU@s OA% 5 +unambiguously ,Vn&m'bIgjU@slI Pu% 5 +unamended ,Vn@'mendId OA% 4 +unanimity ,jun@'nImItI L@% 5 +unanimous ju'n&nIm@s OA% 4 +unanimously ju'n&nIm@slI Pu% 5 +unannounced ,Vn@'naUnst OA% 3 +unanswerable ,Vn'Ans@r@bl OA% 5 +unanswered ,Vn'Ans@d OA% 3 +unanticipated ,Vn&n'tIsIpeItId OA% 6 +unappealing ,Vn@'pilIN OA% 4 +unappetizing Vn'&pItaIzIN OA% 5 +unappreciated ,Vn@'priSIeItId OA% 6 +unappreciative ,Vn@'priS@tIv OA% 5 +unapproachable ,Vn@'pr@UtS@bl OA% 5 +unarguable Vn'AgjU@bl OA% 5 +unarguably Vn'AgjU@blI Pu% 5 +unarmed ,Vn'Amd OA% 2 +unarticulated ,VnA'tIkjUleItId OA% 6 +unashamed ,Vn@'SeImd Op% 3 +unashamedly ,Vn@'SeImIdlI Pu% 5 +unasked ,Vn'Askt OA% 2 +unassailable ,Vn@'seIl@bl OA% 5 +unassailably ,Vn@'seIl@blI Pu% 5 +unassisted ,Vn@'sIstId OA% 4 +unassuming ,Vn@'sjumIN OA% 4 +unassumingly ,Vn@'sjumINlI Pu% 5 +unattached ,Vn@'t&tSt OA% 3 +unattainable ,Vn@'taIn@bl OA% 5 +unattainably ,Vn@'teIn@blI Pu% 5 +unattended ,Vn@'tendId OA% 4 +unattractive ,Vn@'tr&ktIv OA% 4 +unattractively ,Vn@'tr&ktIvlI Pu% 5 +unauthorized Vn'OT@raIzd OA% 4 +unavailable ,Vn@'veIl@bl OA% 5 +unavailing ,Vn@'veIlIN OA% 4 +unavoidable ,Vn@'voId@bl OA% 5 +unavoidably ,Vn@'voId@blI Pu% 5 +unawakened ,Vn@'weIk@nd OA% 4 +unaware ,Vn@'we@R Op% 3 +unawares ,Vn@'we@z Pu% 3 +unbacked ,Vn'b&kt OA$ 2 +unbalance Vn'b&l@ns H2% 36A +unbalanced ,Vn'b&l@nst OA% 3 +unbalanced Vn'b&l@nst Hc%,Hd%,OA% 36A +unbalances Vn'b&l@nsIz Ha% 46A +unbalancing Vn'b&l@nsIN Hb% 46A +unbar ,Vn'bAR H4$ 2 +unbarred ,Vn'bAd Hc$,Hd% 2 +unbarring ,Vn'bArIN Hb$ 3 +unbars ,Vn'bAz Ha$ 2 +unbearable Vn'be@r@bl OA% 4 +unbearably Vn'be@r@blI Pu% 4 +unbeatable Vn'bit@bl OA% 4 +unbeaten ,Vn'bitn OA% 3 +unbecoming ,VnbI'kVmIN OA% 4 +unbecomingly ,VnbI'kVmINlI Pu% 5 +unbeknown ,VnbI'n@Un OA%,Pu% 3 +unbeknownst ,VnbI'n@Unst OA%,Pu% 3 +unbelief ,VnbI'lif L@% 3 +unbelievable ,VnbI'liv@bl OA% 5 +unbelievably ,VnbI'liv@blI Pu% 5 +unbeliever ,VnbI'liv@R K6% 4 +unbelievers ,VnbI'liv@z Kj% 4 +unbelieving ,VnbI'livIN OA% 4 +unbelievingly ,VnbI'livINlI Pu% 5 +unbeloved ,VnbI'lVvd OA% 3 +unbend ,Vn'bend J0% 22A,6A +unbended ,Vn'bendId Jc%,Jd% 32A,6A +unbending ,Vn'bendIN Jb%,OA% 32A,6A +unbends ,Vn'bendz Ja% 22A,6A +unbent ,Vn'bent Jc%,Jd% 22A,6A +unbiased ,Vn'baI@st OA% 3 +unbiassed ,Vn'baI@st OA% 3 +unbidden ,Vn'bIdn OA% 3 +unbind ,Vn'baInd H5% 26A +unbinding ,Vn'baIndIN Hb% 36A +unbinds ,Vn'baIndz Ha% 26A +unblock Vn'bl0k H0% 26A,15B +unblocked Vn'bl0kt Hc%,Hd% 26A,15B +unblocking Vn'bl0kIN Hb% 36A,15B +unblocks Vn'bl0ks Ha% 26A,15B +unblushing ,Vn'blVSIN OA% 3 +unblushingly ,Vn'blVSINlI Pu% 4 +unblushingly Vn'blVSINlI Pu% 4 +unbolt Vn'b@Ult J0% 22A,2C,6A,15B +unbolted Vn'b@UltId Jc%,Jd% 32A,2C,6A,15B +unbolting Vn'b@UltIN Jb% 32A,2C,6A,15B +unbolts Vn'b@Ults Ja% 22A,2C,6A,15B +unborn ,Vn'bOn OA% 2 +unbosom Vn'bUz@m H0$ 36A,14 +unbosomed Vn'bUz@md Hc$,Hd$ 36A,14 +unbosoming Vn'bUz@mIN Hb$ 46A,14 +unbosoms Vn'bUz@mz Ha$ 36A,14 +unbound ,Vn'baUnd Hc%,Hd% 26A +unbounded Vn'baUndId OA% 3 +unbowed ,Vn'baUd OA% 2 +unbreakable Vn'breIk@bl OA% 4 +unbridled ,Vn'braIdld OA% 3 +unbroken ,Vn'br@Uk@n OA% 3 +unbuckle ,Vn'bVkl H2% 36A +unbuckled ,Vn'bVkld Hc%,Hd% 36A +unbuckles ,Vn'bVklz Ha% 36A +unbuckling ,Vn'bVklIN Hb% 36A +unburden ,Vn'b3dn H0% 36A,15A +unburdened ,Vn'b3dnd Hc%,Hd% 36A,15A +unburdening ,Vn'b3dnIN Hb% 46A,15A +unburdens ,Vn'b3dnz Ha% 36A,15A +unburied Vn'berId OA% 3 +unbutton Vn'bVtn H0% 36A +unbuttoned ,Vn'bVtnd OA% 3 +unbuttoned Vn'bVtnd Hc%,Hd%,OA% 36A +unbuttoning Vn'bVtnIN Hb% 46A +unbuttons Vn'bVtnz Ha% 36A +uncalled-for Vn'kOld-fOR OA% 3 +uncannily Vn'k&nIlI Pu% 4 +uncanny Vn'k&nI OA% 3 +uncared-for ,Vn'ke@d-fOR OA% 3 +uncarpeted Vn'kApItId OA% 4 +unceasing Vn'sisIN OA% 3 +unceasingly Vn'sisINlI Pu% 4 +uncensored Vn'sens@d OA% 3 +unceremonious ,Vn,serI'm@UnI@s OA% 6 +unceremoniously ,Vn,serI'm@UnI@slI Pu% 7 +unceremoniousness ,Vn,serI'm@UnI@sn@s L@$ 7 +uncertain Vn's3tn OA% 3 +uncertainly Vn's3tnlI Pu% 4 +uncertainties Vn's3tntIz Mj% 4 +uncertainty Vn's3tntI M8% 4 +unchain Vn'tSeIn H0$ 26A,15A,15B +unchained Vn'tSeInd Hc%,Hd% 26A,15A,15B +unchaining Vn'tSeInIN Hb$ 36A,15A,15B +unchains Vn'tSeInz Ha$ 26A,15A,15B +unchallengeable Vn'tS&l@ndZ@bl OA% 5 +unchallenged Vn'tS&l@ndZd OA% 3 +unchanged Vn'tSeIndZd OA% 2 +unchanging Vn'tSeIndZIN OA% 3 +uncharacteristic ,Vnk&r@kt@'rIstIk OA% 6 +uncharacteristically ,Vnk&r@kt@'rIstIklI Pu% 7 +uncharitable ,Vn'tS&rIt@bl OA% 5 +uncharted ,Vn'tSAtId OA% 3 +unchecked ,Vn'tSekt OA% 2 +unchivalrously Vn'SIvlr@slI Pu% 5 +unchristian ,Vn'krIstS@n OA% 3 +uncivil ,Vn'sIvl OA% 3 +uncivilized Vn'sIvIlaIzd OA% 4 +unclaimed ,Vn'kleImd OA% 2 +unclassified Vn'kl&sIfaId OA% 4 +uncle 'VNkl K6% 2 +unclean ,Vn'klin OA% 2 +unclear Vn'klI@R OA% 2 +uncles 'VNklz Kj% 2 +unclouded ,Vn'klaUdId OA% 3 +uncluttered Vn'klVt@d OA% 3 +unco 'VNk@U OA$,Pu$ 2 +unco-operative ,Vnk@U-'0p@r@tIv OA% 6 +unco-ordinated ,Vnk@U-'OdIneItId OA% 6 +uncoloured ,Vn'kVl@d OA% 3 +uncomfortable Vn'kVmft@bl OA% 4 +uncomfortably Vn'kVmf@t@blI Pu% 5 +uncommercialized ,Vnk@'m3S@laIzd OA% 5 +uncommitted ,Vnk@'mItId OA% 4 +uncommon Vn'k0m@n OA% 3 +uncommonly Vn'k0m@nlI Pu% 4 +uncommunicative ,Vnk@'mjunIk@tIv OA% 6 +uncompetitive ,Vnk@m'pet@tIv OA% 5 +uncomplaining ,Vnk@m'pleInIN OA% 4 +uncomplainingly ,Vnk@m'pleInINlI Pu% 5 +uncompleted ,Vnk@m'plitId OA% 4 +uncomplicated Vn'k0mplIkeItId OA% 5 +uncomplimentary ,Vnk0mplI'mentrI OA% 5 +uncomprehending ,Vnk0mprI'hendIN OA% 5 +uncompromising Vn'k0mpr@maIzIN OA% 5 +unconcealed ,Vnk@n'sild OA% 3 +unconcern ,Vnk@n's3n L@% 3 +unconcerned ,Vnk@n's3nd OA% 3 +unconcernedly ,Vnk@n's3n@dlI Pu% 5 +unconditional ,Vnk@n'dIS@nl OA% 5 +unconditionally ,Vnk@n'dIS@n@lI Pu% 6 +unconditioned ,Vnk@n'dISnd OA% 4 +unconfined ,Vnk@n'faInd OA% 3 +unconfirmed ,Vnk@n'f3md OA% 3 +unconformable ,Vnk@n'fOm@bl OA% 5 +uncongenial ,Vnk@n'dZinI@l OA% 5 +unconnected ,Vnk@'nektId OA% 4 +unconquered Vn'k0Nk@d OA% 3 +unconscionable Vn'k0nS@n@bl OA% 5 +unconscious Vn'k0nS@s K7%,OA% 3 +unconsciouses Vn'k0nS@sIz Kj$ 4 +unconsciously Vn'k0nS@slI Pu% 4 +unconsciousness Vn'k0nS@sn@s L@% 4 +unconsidered 'Vnk@nsId@d OA% 4 +unconstitutional ,Vnk0nstI'tjuS@nl OA% 6 +unconstitutionally ,Vnk0nstI'tjuS@n@lI Pu% 7 +unconstrained ,Vnk@n'streInd OA% 3 +unconstructive ,Vnk@n'strVktIv OA% 4 +unconsummated Vn'k0ns@meItId OA% 5 +uncontaminated ,Vnk@n't&mIneItId OA% 6 +uncontrollable ,Vnk@n'tr@Ul@bl OA% 5 +uncontrollably ,Vnk@n'tr@Ul@blI Pu% 5 +uncontrolled ,Vnk@n'tr@Uld OA% 3 +uncontroversial ,Vnk0ntr@'v3Sl OA% 5 +unconventional ,Vnk@n'venS@nl OA% 5 +unconventionality ,Vnk@n,venS@'n&lItI L@% 7 +unconverted ,Vnk@n'v3tId OA% 4 +unconvinced ,Vnk@n'vInst OA% 3 +unconvincing ,Vnk@n'vInsIN OA% 4 +uncooked Vn'kUkt OA% 2 +uncork ,Vn'kOk H0% 26A +uncorked ,Vn'kOkt Hc%,Hd% 26A +uncorking ,Vn'kOkIN Hb% 36A +uncorks ,Vn'kOks Ha% 26A +uncorrected ,Vnk@'rektId OA% 4 +uncorrelated Vn'k0r@leItId OA% 5 +uncorroborated ,Vnk@'r0b@reItId OA% 6 +uncouple ,Vn'kVpl H2% 36A +uncoupled ,Vn'kVpld Hc%,Hd% 36A +uncouples ,Vn'kVplz Ha% 36A +uncoupling ,Vn'kVplIN Hb% 36A +uncouth Vn'kuT OA% 2 +uncouthly Vn'kuTlI Pu% 3 +uncouthness Vn'kuTn@s L@% 3 +uncover Vn'kVv@R H0% 32A,6A +uncovered Vn'kVv@d Hc%,Hd% 32A,6A +uncovering Vn'kVv@rIN Hb% 42A,6A +uncovers Vn'kVv@z Ha% 32A,6A +uncritical Vn'krItIkl OA% 4 +uncritically Vn'krItIklI Pu% 4 +uncross Vn'kr0s H1% 26A +uncrossed ,Vn'kr0st OA% 2 +uncrossed Vn'kr0st Hc%,Hd%,OA% 26A +uncrosses Vn'kr0sIz Ha% 36A +uncrossing Vn'kr0sIN Hb% 36A +uncrowned ,Vn'kraUnd OA% 2 +unction 'VNkSn L@% 2 +unctuous 'VNktSU@s OA% 3 +unctuously 'VNktSU@slI Pu% 4 +uncultivated Vn'kVltIveItId OA% 5 +uncultured Vn'kVltS@d OA% 3 +uncurl Vn'k3l J0% 22A,2C,6A,15A,15B +uncurled Vn'k3ld Jc%,Jd% 22A,2C,6A,15A,15B +uncurling Vn'k3lIN Jb% 32A,2C,6A,15A,15B +uncurls Vn'k3lz Ja% 22A,2C,6A,15A,15B +uncut ,Vn'kVt OA% 2 +undamaged Vn'd&mIdZd OA% 3 +undated ,Vn'deItId OA% 3 +undaunted ,Vn'dOntId OA% 3 +undeceive ,VndI'siv H2$ 36A +undeceived ,VndI'sivd Hc$,Hd$ 36A +undeceives ,VndI'sivz Ha$ 36A +undeceiving ,VndI'sivIN Hb$ 46A +undecided ,VndI'saIdId OA% 4 +undeclared ,VndI'kle@d OA% 3 +undefeated ,VndI'fitId OA% 4 +undefended ,VndI'fendId OA% 4 +undeferential ,Vndef@'renSl OA% 5 +undefinable ,VndI'faIn@bl OA% 5 +undefined ,VndI'faInd OA% 3 +undemanding ,VndI'mAndIN OA% 4 +undemocratic ,Vndem@'kr&tIk OA% 5 +undemocratically ,Vndem@'kr&tIklI Pu% 6 +undemonstrative ,VndI'm0nstr@tIv OA% 5 +undeniable ,VndI'naI@bl OA% 5 +undeniably ,VndI'naI@blI Pu% 5 +undenominational ,VndI,n0mI'neIS@nl OA% 7 +under 'Vnd@R Pu*,T-* 2 +under- 'Vnd@R- U-% 2 +under-the-counter ,Vnd@-D@-'kaUnt@R OA% 5 +underact ,Vnd@'r&kt J0% 32A,6A +underacted ,Vnd@'r&ktId Jc%,Jd% 42A,6A +underacting ,Vnd@'r&ktIN Jb% 42A,6A +underacts ,Vnd@'r&kts Ja% 32A,6A +underarm 'Vnd@rAm OA%,Pu% 3 +underbellies 'Vnd@belIz Kj% 4 +underbelly 'Vnd@belI K8% 4 +underbid ,Vnd@'bId H5%,Hc%,Hd% 3 +underbidding ,Vnd@'bIdIN Hb% 4 +underbids ,Vnd@'bIdz Ha% 3 +underbred ,Vnd@'bred OA$ 3 +underbrush 'Vnd@brVS L@$ 3 +undercarriage 'Vnd@k&rIdZ K6% 4 +undercarriages 'Vnd@k&rIdZIz Kj% 5 +undercharge 'Vnd@tSAdZ K6$ 3 +undercharge ,Vnd@'tSAdZ H2% 36A +undercharged ,Vnd@'tSAdZd Hc%,Hd% 36A +undercharges 'Vnd@tSAdZIz Kj$ 4 +undercharges ,Vnd@'tSAdZIz Ha% 46A +undercharging ,Vnd@'tSAdZIN Hb% 46A +underclothes 'Vnd@kl@UDz Kj% 3 +underclothing 'Vnd@kl@UDIN L@% 4 +undercoat 'Vnd@k@Ut K6% 3 +undercoats 'Vnd@k@Uts Kj% 3 +undercover ,Vnd@'kVv@R OA% 4 +undercurrent 'Vnd@kVr@nt K6% 4 +undercurrents 'Vnd@kVr@nts Kj% 4 +undercut 'Vnd@kVt L@% 3 +undercut ,Vnd@'kVt H5%,Hc%,Hd% 36A +undercuts ,Vnd@'kVts Ha% 36A +undercutting ,Vnd@'kVtIN Hb% 46A +underdeveloped ,Vnd@dI'vel@pt OA% 5 +underdevelopment ,Vnd@dI'vel@pm@nt L@% 6 +underdog 'Vnd@d0g K6% 3 +underdogs 'Vnd@d0gz Kj% 3 +underdone ,Vnd@'dVn OA% 3 +underemployed ,Vnd@rIm'ploId OA% 4 +underestimate ,Vnd@'restIm@t K6% 5 +underestimate ,Vnd@'restImeIt H2% 56A +underestimated ,Vnd@'restImeItId Hc%,Hd% 66A +underestimates ,Vnd@'restIm@ts Kj% 5 +underestimates ,Vnd@'restImeIts Ha% 56A +underestimating ,Vnd@'restImeItIN Hb% 66A +underestimation ,Vnd@,restI'meISn M6% 6 +underestimations ,Vnd@,restI'meISnz Mj% 6 +underexpose ,Vnd@rIk'sp@Uz H2% 46A +underexposed ,Vnd@rIk'sp@Uzd Hc%,Hd% 46A +underexposes ,Vnd@rIk'sp@UzIz Ha% 56A +underexposing ,Vnd@rIk'sp@UzIN Hb% 56A +underexposure ,Vnd@rIk'sp@UZ@R K6% 5 +underexposures ,Vnd@rIk'sp@UZ@z Kj% 5 +underfed ,Vnd@'fed OA% 3 +underfelt 'Vnd@felt L@% 3 +underfloor ,Vnd@'flOR OA% 3 +underfoot ,Vnd@'fUt Pu% 3 +undergarment 'Vnd@gAm@nt K6% 4 +undergarments 'Vnd@gAm@nts Kj% 4 +undergo ,Vnd@'g@U H5% 36A +undergoes ,Vnd@'g@Uz Ha% 36A +undergoing ,Vnd@'g@UIN Hb% 46A +undergone ,Vnd@'g0n Hd% 36A +undergraduate ,Vnd@'gr&dZU@t K6% 5 +undergraduates ,Vnd@'gr&dZU@ts Kj% 5 +underground 'Vnd@graUnd K6%,Oq%,Pu% 3 +undergrounds 'Vnd@graUndz Kj$ 3 +undergrowth 'Vnd@gr@UT L@% 3 +underhand 'Vnd@h&nd OA%,Pu% 3 +underhanded 'Vnd@h&ndId OA% 4 +underhung ,Vnd@'hVN OA$ 3 +underlain ,Vnd@'leIn Hd% 36A +underlay 'Vnd@leI L@% 3 +underlay ,Vnd@'leI Hc% 36A +underlie ,Vnd@'laI H5% 36A +underlies ,Vnd@'laIz Ha% 36A +underline 'Vnd@laIn K6% 3 +underline ,Vnd@'laIn H2% 36A +underlined ,Vnd@'laInd Hc%,Hd% 36A +underlines 'Vnd@laInz Kj% 3 +underlines ,Vnd@'laInz Ha% 36A +underling 'Vnd@lIN K6% 3 +underlings 'Vnd@lINz Kj% 3 +underlining ,Vnd@'laInIN Hb% 46A +underlying ,Vnd@'laIIN Hb% 46A +undermanned ,Vnd@'m&nd OA% 3 +undermentioned ,Vnd@'menSnd OA% 4 +undermine ,Vnd@'maIn H2% 36A +undermined ,Vnd@'maInd Hc%,Hd% 36A +undermines ,Vnd@'maInz Ha% 36A +undermining ,Vnd@'maInIN Hb% 46A +underneath ,Vnd@'niT Pu%,T-% 3 +undernourished ,Vnd@'nVrISt OA% 4 +undernourishment ,Vnd@'nVrISm@nt L@% 5 +underpaid ,Vnd@'peId Hc%,Hd% 36A +underpants 'Vnd@p&nts Kj% 3 +underpass 'Vnd@pAs K7% 3 +underpasses 'Vnd@pAsIz Kj% 4 +underpay ,Vnd@'peI H5% 36A +underpaying ,Vnd@'peIIN Hb% 46A +underpayment ,Vnd@'peIm@nt M6% 4 +underpayments ,Vnd@'peIm@nts Mj% 4 +underpays ,Vnd@'peIz Ha% 36A +underpin ,Vnd@'pIn H4% 3 +underpinned ,Vnd@'pInd Hc%,Hd% 3 +underpinning ,Vnd@'pInIN Hb% 4 +underpins ,Vnd@'pInz Ha% 3 +underpopulated ,Vnd@'p0pjUleItId OA% 6 +underprivileged ,Vnd@'prIv@lIdZd OA% 5 +underproduction ,Vnd@pr@'dVkSn L@% 5 +underquote ,Vnd@'kw@Ut H2$ 36A +underquoted ,Vnd@'kw@UtId Hc$,Hd$ 46A +underquotes ,Vnd@'kw@Uts Ha$ 36A +underquoting ,Vnd@'kw@UtIN Hb$ 46A +underrate ,Vnd@'reIt H2% 36A +underrated ,Vnd@'reItId Hc%,Hd% 46A +underrates ,Vnd@'reIts Ha% 36A +underrating ,Vnd@'reItIN Hb% 46A +underscore ,Vnd@'skOR H2% 36A +underscored ,Vnd@'skOd Hc%,Hd% 36A +underscores ,Vnd@'skOz Ha% 36A +underscoring ,Vnd@'skOrIN Hb% 46A +undersea 'Vnd@si OA% 3 +underseal 'Vnd@sil L@% 3 +undersealed 'Vnd@sild OA% 3 +undersecretaries ,Vnd@'sekr@trIz Kj% 5 +undersecretary ,Vnd@'sekr@trI K8% 5 +undersell ,Vnd@'sel H5% 36A +underselling ,Vnd@'selIN Hb% 46A +undersells ,Vnd@'selz Ha% 36A +undersexed ,Vnd@'sekst OA% 3 +undershoot ,Vnd@'Sut H5% 3 +undershooting ,Vnd@'SutIN Hb% 4 +undershoots ,Vnd@'Suts Ha% 3 +undershot ,Vnd@'S0t Hc%,Hd% 3 +underside 'Vnd@saId K6% 3 +undersides 'Vnd@saIdz Kj% 3 +undersign ,Vnd@'saIn H0% 36A +undersigned ,Vnd@'saInd Hc%,Hd% 36A +undersigning ,Vnd@'saInIN Hb% 46A +undersigns ,Vnd@'saInz Ha% 36A +undersized ,Vnd@'saIzd OA% 3 +underskirt 'Vnd@sk3t K6% 3 +underskirts 'Vnd@sk3ts Kj% 3 +underslung ,Vnd@'slVN OA$ 3 +undersold ,Vnd@'s@Uld Hc%,Hd% 36A +underspend ,Vnd@'spend J5% 32A,6A,14,19B +underspending ,Vnd@'spendIN Jb% 42A,6A,14,19B +underspends ,Vnd@'spendz Ja% 32A,6A,14,19B +underspent ,Vnd@'spent Jc%,Jd%,OA% 32A,6A,14,19B +understaffed ,Vnd@'stAft OA% 3 +understand ,Vnd@'st&nd J5% 32A,6A,6C,8,9,10,17,19C +understandable ,Vnd@'st&nd@bl OA% 5 +understandably ,Vnd@'st&nd@blI Pu% 5 +understanding ,Vnd@'st&ndIN Jb%,M6%,OA% 42A,6A,6C,8,9,10,17,19C +understandings ,Vnd@'st&ndINz Mj$ 4 +understands ,Vnd@'st&ndz Ja% 32A,6A,6C,8,9,10,17,19C +understate ,Vnd@'steIt H2% 36A +understated ,Vnd@'steItId Hc%,Hd% 46A +understatement 'Vnd@steItm@nt M6% 4 +understatements 'Vnd@steItm@nts Mj% 4 +understates ,Vnd@'steIts Ha% 36A +understating ,Vnd@'steItIN Hb% 46A +understock ,Vnd@'st0k H0% 36A +understocked ,Vnd@'st0kt Hc%,Hd% 36A +understocking ,Vnd@'st0kIN Hb% 46A +understocks ,Vnd@'st0ks Ha% 36A +understood ,Vnd@'stUd Jc%,Jd% 32A,6A,6C,8,9,10,17,19C +understudied 'Vnd@stVdId Hc%,Hd% 46A +understudies 'Vnd@stVdIz Ha%,Kj% 46A +understudy 'Vnd@stVdI H3%,K8% 46A +understudying 'Vnd@stVdIIN Hb% 56A +undersurface 'Vnd@s3fIs K6% 4 +undersurfaces 'Vnd@s3fIsIz Kj% 5 +undertake ,Vnd@'teIk H5% 36A,7A,9 +undertaken ,Vnd@'teIk@n Hc% 46A,7A,9 +undertaker 'Vnd@teIk@R K6% 4 +undertakers 'Vnd@teIk@z Kj% 4 +undertakes ,Vnd@'teIks Ha% 36A,7A,9 +undertaking 'Vnd@teIkIN M6% 4 +undertaking ,Vnd@'teIkIN Hb%,K6% 46A,7A,9 +undertakings 'Vnd@teIkINz Mj$ 4 +undertakings ,Vnd@'teIkINz Kj% 4 +undertone 'Vnd@t@Un K6% 3 +undertones 'Vnd@t@Unz Kj% 3 +undertook ,Vnd@'tUk Hc% 36A,7A,9 +undertow 'Vnd@t@U K6% 3 +undertows 'Vnd@t@Uz Kj$ 3 +undervaluation ,Vnd@,v&ljU'eISn M6% 6 +undervaluations ,Vnd@,v&ljU'eISnz Mj% 6 +undervalue ,Vnd@'v&lju H2% 46A +undervalued ,Vnd@'v&ljud Hc%,Hd% 46A +undervalues ,Vnd@'v&ljuz Ha% 46A +undervaluing ,Vnd@'v&ljuIN Hb% 56A +underwater 'Vnd@wOt@R OA% 4 +underwear 'Vnd@we@R L@% 3 +underweight ,Vnd@'weIt OA% 3 +underwent ,Vnd@'went Hc% 36A +underworld 'Vnd@w3ld K6% 3 +underworlds 'Vnd@w3ldz Kj$ 3 +underwrite ,Vnd@'raIt H5% 36A +underwriter ,Vnd@'raIt@R K6% 4 +underwriters ,Vnd@'raIt@z Kj% 4 +underwrites ,Vnd@'raIts Ha% 36A +underwriting ,Vnd@'raItIN Hb% 46A +underwritten ,Vnd@'rItn Hd% 46A +underwrote ,Vnd@'r@Ut Hc% 36A +undeserved ,VndI'z3vd OA% 3 +undeserving ,VndI'z3vIN OA% 4 +undesigned ,VndI'zaInd OA% 3 +undesirable ,VndI'zaI@r@bl K6%,OA% 5 +undesirables ,VndI'zaI@r@blz Kj% 5 +undetected ,VndI'tektId OA% 4 +undetermined ,VndI't3mInd OA% 4 +undeterred ,VndI't3d OA% 3 +undeveloped ,VndI'vel@pt OA% 4 +undiagnosed Vn'daI@gn@Uzd OA% 4 +undid Vn'dId Hc% 26A +undies 'VndIz Kj% 2 +undifferentiated ,VndIf@'renSIeItId OA% 7 +undigested ,VndI'dZestId OA% 4 +undignified Vn'dIgnIfaId OA% 4 +undiluted ,VndaI'ljutId OA% 4 +undiminished ,VndI'mInISt OA% 4 +undimmed Vn'dImd OA% 2 +undiplomatic ,VndIpl@'m&tIk OA% 5 +undiplomatically ,VndIpl@'m&tIklI Pu% 6 +undischarged ,VndIs'tSAdZd OA% 3 +undisciplined Vn'dIsIplInd OA% 4 +undisclosed ,VndIs'kl@Uzd OA% 3 +undiscovered ,VndI'skVv@d OA% 4 +undiscriminating ,VndI'skrImIneItIN OA% 6 +undisguised ,VndIs'gaIzd OA% 3 +undismayed ,VndIs'meId OA% 3 +undisputed ,VndI'spjutId OA% 4 +undisputedly ,VndI'spjutIdlI Pu% 5 +undissolved ,VndI'z0lvd OA% 3 +undistinguishable ,VndI'stINgwIS@bl OA% 6 +undistinguished ,VndI'stINgwISt OA% 4 +undistributed ,VndI'strIbjutId OA% 5 +undisturbed ,VndI'st3bd OA% 3 +undivided ,VndI'vaIdId OA% 4 +undo Vn'du H5% 26A +undock Vn'd0k J0$ 22A,6A +undocked Vn'd0kt Jc$,Jd$ 22A,6A +undocking Vn'd0kIN Jb$ 32A,6A +undocks Vn'd0ks Ja$ 22A,6A +undocumented Vn'd0kjUmentId OA% 5 +undoes Vn'dVz Ha% 26A +undogmatic ,Vnd0g'm&tIk OA% 4 +undoing Vn'duIN Hb%,K6% 36A +undoings Vn'duINz Kj$ 3 +undomesticated ,Vnd@'mestIkeItId OA% 6 +undone Vn'dVn Hd%,Op% 26A +undoubted Vn'daUtId OA% 3 +undoubtedly Vn'daUtIdlI Pu% 4 +undramatic ,Vndr@'m&tIk OA% 4 +undramatically ,Vndr@'m&tIklI Pu% 5 +undreamed Vn'drimd OA% 2 +undreamed-of Vn'drimd-@v OA% 3 +undreamt Vn'dremt OA% 2 +undress Vn'dres J1%,L@% 22A,6A +undressed Vn'drest Jc%,Jd% 22A,6A +undresses Vn'dresIz Ja% 32A,6A +undressing Vn'dresIN Jb% 32A,6A +undrinkable Vn'drINk@bl OA% 4 +undue ,Vn'dju OA% 2 +undulate 'VndjUleIt I2% 32A,2C +undulated 'VndjUleItId Ic%,Id% 42A,2C +undulates 'VndjUleIts Ia% 32A,2C +undulating 'VndjUleItIN Ib% 42A,2C +undulation ,VndjU'leISn M6% 4 +undulations ,VndjU'leISnz Mj% 4 +unduly ,Vn'djulI Pu% 3 +undying ,Vn'daIIN OA% 3 +unearned ,Vn'3nd OA% 2 +unearth Vn'3T H0% 26A +unearthed Vn'3Tt Hc%,Hd% 26A +unearthing Vn'3TIN Hb$ 36A +unearthly Vn'3TlI OA% 3 +unearths Vn'3Ts Ha$ 26A +unease Vn'iz L@% 2 +uneasily Vn'izIlI Pu% 4 +uneasiness Vn'izIn@s L@% 4 +uneasy Vn'izI OA% 3 +uneatable Vn'it@bl OA% 4 +uneaten Vn'itn OA% 3 +uneconomic ,Vnik@'n0mIk OA% 5 +uneconomical ,Vnik@'n0mIkl OA% 6 +unedifying Vn'edIfaIIN OA% 5 +unedited Vn'edItId OA% 4 +uneducated Vn'edZUkeItId OA% 5 +uneffective ,VnI'fektIv OA% 4 +unelaborated ,VnI'l&b@reItId OA% 6 +unemotional ,VnI'm@US@nl OA% 5 +unemotionally ,VnI'm@US@n@lI Pu% 6 +unemployable ,VnIm'ploI@bl OA% 5 +unemployed ,VnIm'ploId OA% 3 +unemployment ,VnIm'ploIm@nt L@% 4 +unending Vn'endIN OA% 3 +unendingly Vn'endINlI Pu% 4 +unendurable ,VnIn'djU@r@bl OA% 5 +unenlightened ,VnIn'laItnd OA% 4 +unenterprising Vn'ent@praIzIN OA% 5 +unenthusiastic ,VnIn,TjuzI'&stIk OA% 6 +unenthusiastically ,VnIn,TjuzI'&stIklI Pu% 7 +unenviable Vn'envI@bl OA% 5 +unequal ,Vn'ikw@l OA% 3 +unequalled ,Vn'ikw@ld OA% 3 +unequally ,Vn'ikw@lI Pu% 4 +unequipped ,VnI'kwIpt OA% 3 +unequivocal ,VnI'kwIv@kl OA% 5 +unequivocally ,VnI'kwIv@klI Pu% 5 +unerring Vn'3rIN OA% 3 +unerringly Vn'3rINlI Pu% 4 +unethical Vn'eTIkl OA% 4 +unethically Vn'eTIklI Pu% 4 +uneven Vn'ivn OA% 3 +unevenly Vn'ivnlI Pu% 4 +uneventful ,VnI'ventf@l OA% 4 +uneventfully ,VnI'ventf@lI Pu% 5 +unexampled ,VnIg'zAmpld OA% 4 +unexceeded ,VnIk'sidId OA% 4 +unexceptionable ,VnIk'sepS@n@bl OA% 6 +unexceptional ,VnIk'sepS@nl OA% 5 +unexciting ,VnIk'saItIN OA% 4 +unexpected ,VnIk'spektId OA% 4 +unexpectedly ,VnIk'spektIdlI Pu% 5 +unexpectedness ,VnIk'spektIdnIs L@% 5 +unexpired ,VnIk'spaI@d OA% 3 +unexplained ,VnIk'spleInd OA% 3 +unexplored ,VnIk'splOd OA% 3 +unexposed ,VnIk'sp@Uzd OA% 3 +unexpressed ,VnIk'sprest OA% 3 +unexpurgated Vn'eksp@geItId OA% 5 +unfailing Vn'feIlIN OA% 3 +unfailingly Vn'feIlINlI Pu% 4 +unfair ,Vn'fe@R OA% 2 +unfairly ,Vn'fe@lI Pu% 3 +unfairness ,Vn'fe@n@s L@% 3 +unfaithful ,Vn'feITf@l OA% 3 +unfaithfully ,Vn'feITf@lI Pu% 4 +unfaithfulness ,Vn'feITf@ln@s L@% 4 +unfaltering Vn'fOlt@rIN OA% 4 +unfalteringly Vn'fOlt@rINlI Pu% 5 +unfamiliar ,Vnf@'mIlI@R OA% 5 +unfamiliarity ,Vnf@,mIlI'&rItI L@% 7 +unfashionable Vn'f&Sn@bl OA% 4 +unfashionably Vn'f&Sn@blI Pu% 4 +unfasten Vn'fAsn J0% 32A,2C,3A,6A,14,15A,15B +unfastened Vn'fAsnd Jc%,Jd% 32A,2C,3A,6A,14,15A,15B +unfastening Vn'fAsnIN Jb% 42A,2C,3A,6A,14,15A,15B +unfastens Vn'fAsnz Ja% 32A,2C,3A,6A,14,15A,15B +unfathomable Vn'f&D@m@bl OA% 5 +unfathomed Vn'f&D@md OA% 3 +unfavourable Vn'feIv@r@bl OA% 5 +unfavourably Vn'feIv@r@blI Pu% 5 +unfed Vn'fed OA% 2 +unfeeling Vn'filIN OA% 3 +unfeelingly Vn'filINlI Pu% 4 +unfeigned Vn'feInd OA% 2 +unfeignedly Vn'feIn@dlI Pu% 4 +unfermented ,Vnf@'mentId OA% 4 +unfertilized Vn'f3t@laIzd OA% 4 +unfettered Vn'fet@d OA% 3 +unfinished Vn'fInISt OA% 3 +unfit ,Vn'fIt H4$,OA% 214 +unfits ,Vn'fIts Ha$ 214 +unfitted ,Vn'fItId Hc$,Hd% 314 +unfitting ,Vn'fItIN Hb$ 314 +unflagging ,Vn'fl&gIN OA% 3 +unflappable ,Vn'fl&p@bl OA% 4 +unfledged ,Vn'fledZd OA% 2 +unflinching Vn'flIntSIN OA% 3 +unflurried Vn'flVrId OA% 3 +unfold Vn'f@Uld J0% 22A,2C,6A +unfolded Vn'f@UldId Jc%,Jd% 32A,2C,6A +unfolding Vn'f@UldIN Jb% 32A,2C,6A +unfolds Vn'f@Uldz Ja% 22A,2C,6A +unforeseeable ,VnfO'si@bl OA% 5 +unforeseen ,VnfO'sin OA% 3 +unforgettable ,Vnf@'get@bl OA% 5 +unforgettably ,Vnf@'get@blI Pu% 5 +unforgivable ,Vnf@'gIv@bl OA% 5 +unforgivably ,Vnf@'gIv@blI Pu% 5 +unforgiving ,Vnf@'gIvIN OA% 4 +unformed Vn'fOmd OA% 2 +unforthcoming ,VnfOT'kVmIN OA% 4 +unfortunate Vn'fOtSUn@t K6$,OA% 4 +unfortunately Vn'fOtSUn@tlI Pu% 5 +unfortunates Vn'fOtS@n@ts Kj$ 4 +unfounded ,Vn'faUndId OA% 3 +unframed Vn'freImd OA% 2 +unfrequented ,VnfrI'kwentId OA% 4 +unfriendliness Vn'frendlIn@s L@% 4 +unfriendly ,Vn'frendlI OA% 3 +unfrock ,Vn'fr0k H0% 26A +unfrocked ,Vn'fr0kt Hc%,Hd% 26A +unfrocking ,Vn'fr0kIN Hb$ 36A +unfrocks ,Vn'fr0ks Ha$ 26A +unfruitful Vn'frutf@l OA% 3 +unfulfilled ,VnfUl'fIld OA% 3 +unfurl Vn'f3l J0% 22A,6A +unfurled Vn'f3ld Jc%,Jd% 22A,6A +unfurling Vn'f3lIN Jb% 32A,6A +unfurls Vn'f3lz Ja% 22A,6A +unfurnished ,Vn'f3nISt OA% 3 +ungainly Vn'geInlI OA% 3 +ungenerous Vn'dZen@r@s OA% 4 +ungentle Vn'dZentl OA% 3 +ungentlemanly Vn'dZentlm@nlI OA% 5 +unglazed Vn'gleIzd OA% 2 +ungodly Vn'g0dlI OA% 3 +ungovernable Vn'gVv@n@bl OA% 5 +ungraceful Vn'greIsf@l OA% 3 +ungracious Vn'greIS@s OA% 3 +ungraciously Vn'greIS@slI Pu% 4 +ungrammatical ,Vngr@'m&tIkl OA% 5 +ungrammatically ,Vngr@'m&tIklI Pu% 5 +ungrateful Vn'greItf@l OA% 3 +ungratefully Vn'greItf@lI Pu% 4 +ungratefulness Vn'greItf@ln@s L@% 4 +ungrudging Vn'grVdZIN OA% 3 +ungrudgingly Vn'grVdZINlI Pu% 4 +unguarded ,Vn'gAdId OA% 3 +unguent 'VNgw@nt M6$ 2 +unguents 'VNgw@nts Mj$ 2 +unhallowed Vn'h&l@Ud OA% 3 +unhampered Vn'h&mp@d OA% 3 +unhand Vn'h&nd H0$ 26A +unhanded Vn'h&ndId Hc$,Hd$ 36A +unhanding Vn'h&ndIN Hb$ 36A +unhands Vn'h&ndz Ha$ 26A +unhappier Vn'h&pI@R Or% 4 +unhappiest Vn'h&pIIst Os% 4 +unhappily Vn'h&pIlI Pu% 4 +unhappiness Vn'h&pIn@s L@% 4 +unhappy Vn'h&pI OD% 3 +unharmed Vn'hAmd OA% 2 +unhealed Vn'hild OA% 2 +unhealthy Vn'helTI OA% 3 +unheard Vn'h3d OA% 2 +unheard-of Vn'h3d-0v OA% 3 +unhearing Vn'hI@rIN OA% 3 +unheated Vn'hitId OA% 3 +unheeded Vn'hidId OA% 3 +unhelpful Vn'helpf@l OA% 3 +unhelpfully Vn'helpf@lI Pu% 4 +unheralded Vn'her@ldId OA% 4 +unhesitating Vn'hezIteItIN OA% 5 +unhesitatingly Vn'hesIteItINlI Pu% 6 +unhindered Vn'hInd@d OA% 3 +unhinge Vn'hIndZ H2$ 26A +unhinged Vn'hIndZd Hc$,Hd% 26A +unhinges Vn'hIndZIz Ha$ 36A +unhinging Vn'hIndZIN Hb$ 36A +unhitch Vn'hItS J1% 22A,2C,6A,15A,15B +unhitched Vn'hItSt Jc%,Jd% 22A,2C,6A,15A,15B +unhitches Vn'hItSIz Ja% 32A,2C,6A,15A,15B +unhitching Vn'hItSIN Jb% 32A,2C,6A,15A,15B +unholy Vn'h@UlI OA% 3 +unhook Vn'hUk H0% 26A +unhooked Vn'hUkt Hc%,Hd% 26A +unhooking Vn'hUkIN Hb% 36A +unhooks Vn'hUks Ha% 26A +unhoped-for Vn'h@Upt-fOR OA% 3 +unhorse ,Vn'hOs H2$ 26A +unhorsed ,Vn'hOst Hc$,Hd% 26A +unhorses ,Vn'hOsIz Ha$ 36A +unhorsing ,Vn'hOsIN Hb$ 36A +unhurried Vn'hVrId OA% 3 +unhurriedly Vn'hVrIdlI Pu% 4 +unhurt Vn'h3t OA% 2 +unhygienic ,VnhaI'dZinIk OA% 4 +unhygienically ,VnhaI'dZinIklI Pu% 5 +unicorn 'junIkOn K6% 3 +unicorns 'junIkOnz Kj% 3 +unidentifiable ,VnaI,dentI'faI@bl OA% 7 +unidentified ,VnaI'dentIfaId OA% 5 +unification ,junIfI'keISn L@% 5 +unified 'junIfaId Hc%,Hd% 36A +unifies 'junIfaIz Ha% 36A +uniform 'junIfOm M6%,OA% 3 +uniformed 'junIfOmd OA% 3 +uniformity ,junI'fOmItI L@% 5 +uniformly 'junIfOmlI Pu% 4 +uniforms 'junIfOmz Mj% 3 +unify 'junIfaI H3% 36A +unifying 'junIfaIIN Hb% 46A +unilateral ,junI'l&tr@l OA% 4 +unilateralism ,junI'l&tr@lIzm L@% 6 +unilateralist ,junI'l&tr@lIst K6%,OA% 5 +unilateralists ,junI'l&tr@lIsts Kj% 5 +unilaterally ,junI'l&tr@lI Pu% 5 +unimaginable ,VnI'm&dZIn@bl OA% 6 +unimaginably ,VnI'm&dZIn@blI Pu% 6 +unimaginative ,VnI'm&dZIn@tIv OA% 6 +unimaginatively ,VnI'm&dZIn@tIvlI Pu% 7 +unimpaired ,VnIm'pe@d OA% 3 +unimpeachable ,VnIm'pitS@bl OA% 5 +unimpeded ,VnIm'pidId OA% 4 +unimportant ,VnIm'pOtnt OA% 4 +unimpressed ,VnIm'prest OA% 3 +unimpressive ,VnIm'presIv OA% 4 +unimpressively ,VnIm'presIvlI Pu% 5 +uninfluenced Vn'InflU@nst OA% 4 +uninformative ,VnIn'fOm@tIv OA% 5 +uninformed ,VnIn'fOmd OA% 3 +uninhabitable ,VnIn'h&bIt@bl OA% 6 +uninhabited ,VnIn'h&bItId OA% 5 +uninhibited ,VnIn'hIbItId OA% 5 +uninitiated ,VnI'nISIeItId OA% 6 +uninjured Vn'IndZ@d OA% 3 +uninspired ,VnIn'spaI@d OA% 3 +uninspiring ,VnIn'spaI@rIN OA% 4 +uninsured ,VnIn'SU@d OA% 3 +unintelligent ,VnIn'telIdZ@nt OA% 5 +unintelligently ,VnIn'telIdZ@ntlI Pu% 6 +unintelligible ,VnIn'telIdZ@bl OA% 6 +unintelligibly ,VnIn'telIdZ@blI Pu% 6 +unintended ,VnIn'tendId OA% 4 +unintentional ,VnIn'tenSn@l OA% 5 +unintentionally ,VnIn'tenSn@lI Pu% 5 +uninterested Vn'Intr@stId OA% 4 +uninteresting Vn'Intr@stIN OA% 4 +uninterestingly Vn'Intr@stINlI Pu% 5 +uninterrupted ,VnInt@'rVptId OA% 5 +uninterruptedly ,VnInt@'rVptIdlI Pu% 6 +uninvited ,VnIn'vaItId OA% 4 +uninviting ,VnIn'vaItIN OA% 4 +union 'junI@n M6% 2 +unionist 'junI@nIst K6% 4 +unionists 'junI@nIsts Kj% 4 +unions 'junI@nz Mj% 2 +unique ju'nik OA% 2 +uniquely ju'niklI Pu% 3 +uniqueness ju'nikn@s L@% 3 +unisex 'junIseks OA% 3 +unison 'junIsn L@% 3 +unit 'junIt K6% 2 +unitary 'junItrI OA% 3 +unite ju'naIt J2% 22A,3A,4A,6A +united ju'naItId Jc%,Jd%,OA% 32A,3A,4A,6A +unitedly ju'naItIdlI Pu$ 4 +unites ju'naIts Ja% 22A,3A,4A,6A +unities 'junItIz Mj% 3 +uniting ju'naItIN Jb% 32A,3A,4A,6A +units 'junIts Kj% 2 +unity 'junItI M8% 3 +universal ,junI'v3sl OA% 4 +universality ,junIv3's&lItI L@% 6 +universally ,junI'v3s@lI Pu% 5 +universe 'junIv3s K6% 3 +universes 'junIv3sIz Kj% 4 +universities ,junI'v3sItIz Kj% 5 +university ,junI'v3sItI K8% 5 +unjust Vn'dZVst OA% 2 +unjustifiable ,VndZVstI'faI@bl OA% 6 +unjustifiably ,VndZVstI'faI@blI Pu% 6 +unjustified Vn'dZVstIfaId OA% 4 +unjustly Vn'dZVstlI Pu% 3 +unkempt ,Vn'kempt OA% 2 +unkind Vn'kaInd OA% 2 +unkindly Vn'kaIndlI Pu% 3 +unkissed Vn'kIst OA% 2 +unknowable Vn'n@U@bl OA% 4 +unknowing Vn'n@UIN OA% 3 +unknowingly Vn'n@UINlI Pu% 4 +unknown ,Vn'n@Un K6%,OA% 2 +unknowns Vn'n@Unz Kj$ 2 +unlabelled Vn'leIbld OA% 3 +unladylike Vn'leIdIlaIk OA% 4 +unlamented ,Vnl@'mentId OA% 4 +unlatched Vn'l&tSt OA% 2 +unlawful Vn'lOf@l OA% 3 +unlawfully Vn'lOf@lI Pu% 4 +unlearn ,Vn'l3n H0% 26A +unlearned ,Vn'l3nd Hc%,Hd% 26A +unlearning ,Vn'l3nIN Hb% 36A +unlearns ,Vn'l3nz Ha% 26A +unlearnt ,Vn'l3nt Hd% 26A +unleash Vn'liS H1% 26A +unleashed Vn'liSt Hc%,Hd% 26A +unleashes Vn'liSIz Ha% 36A +unleashing Vn'liSIN Hb% 36A +unleavened ,Vn'levnd OA% 3 +unless @n'les V-% 2 +unlettered ,Vn'let@d OA% 3 +unlicensed Vn'laIsnst OA% 3 +unlighted Vn'laItId OA% 3 +unlikable Vn'laIk@bl OA% 4 +unlike ,Vn'laIk Op%,T-% 2 +unlikely Vn'laIklI OA% 3 +unlimited Vn'lImItId OA% 4 +unlined Vn'laInd OA% 2 +unlisted Vn'lIstId OA% 3 +unlit Vn'lIt OA% 2 +unliterary Vn'lIt@r@rI OA% 5 +unload Vn'l@Ud J0% 22A,6A,14 +unloaded Vn'l@UdId Jc%,Jd% 32A,6A,14 +unloading Vn'l@UdIN Jb% 32A,6A,14 +unloads Vn'l@Udz Ja% 22A,6A,14 +unlocated ,Vnl@U'keItId OA% 4 +unlock Vn'l0k J0% 22A,2C,6A,15A,15B +unlocked Vn'l0kt Jc%,Jd% 22A,2C,6A,15A,15B +unlocking Vn'l0kIN Jb% 32A,2C,6A,15A,15B +unlocks Vn'l0ks Ja% 22A,2C,6A,15A,15B +unlooked-for Vn'lUkt-fOR OA% 3 +unloose Vn'lus H2% 26A +unloosed Vn'lust Hc%,Hd% 26A +unlooses Vn'lusIz Ha% 36A +unloosing Vn'lusIN Hb% 36A +unlovable Vn'lVv@bl OA% 4 +unloved VN'lVvd OA% 2 +unlovely Vn'lVvlI OA% 3 +unluckily Vn'lVkIlI Pu% 4 +unlucky Vn'lVkI OA% 3 +unmade Vn'meId OA% 2 +unman ,Vn'm&n H4$ 26A +unmanageable Vn'm&nIdZ@bl OA% 5 +unmanageably Vn'm&nIdZ@blI Pu% 5 +unmanly Vn'm&nlI OA% 3 +unmanned ,Vn'm&nd Hc$,Hd%,OA% 26A +unmannered Vn'm&n@d OA$ 3 +unmannerly Vn'm&n@lI OA% 4 +unmanning ,Vn'm&nIN Hb$ 36A +unmans ,Vn'm&nz Ha$ 26A +unmarked Vn'mAkt OA% 2 +unmarried Vn'm&rId OA% 3 +unmask Vn'mAsk J0% 22A,6A +unmasked Vn'mAskt Jc%,Jd% 22A,6A +unmasking Vn'mAskIN Jb% 32A,6A +unmasks Vn'mAsks Ja% 22A,6A +unmatchable Vn'm&tS@bl OA% 4 +unmatched Vn'm&tSt OA% 2 +unmechanized Vn'mek@naIzd OA% 4 +unmemorable Vn'mem@r@bl OA% 5 +unmemorably Vn'mem@r@blI Pu% 5 +unmentionable Vn'menS@n@bl OA% 5 +unmerciful Vn'm3sIf@l OA% 4 +unmercifully Vn'm3sIf@lI Pu% 5 +unmerited Vn'merItId OA% 4 +unmindful Vn'maIndf@l OA% 3 +unmingled Vn'mINgld OA% 3 +unmistakable ,VnmI'steIk@bl OA% 5 +unmistakably ,VnmI'steIk@blI Pu% 5 +unmitigated Vn'mItIgeItId OA% 5 +unmixed Vn'mIkst OA% 2 +unmodernized Vn'm0d@naIzd OA% 4 +unmodified Vn'm0dIfaId OA% 4 +unmolested ,Vnm@'lestId OA% 4 +unmourned Vn'mOnd OA% 2 +unmovable Vn'muv@bl OA% 4 +unmoved Vn'muvd OA% 2 +unmoving Vn'muvIN OA% 3 +unmusical Vn'mjuzIkl OA% 4 +unmusically Vn'mjuzIklI Pu% 4 +unnamed Vn'neImd OA% 2 +unnatural Vn'n&tSr@l OA% 3 +unnaturally Vn'n&tSr@lI Pu% 4 +unnecessarily ,Vn'nes@s@r@lI Pu% 6 +unnecessary Vn'nes@srI OA% 4 +unnerve ,Vn'n3v H2% 26A +unnerved ,Vn'n3vd Hc%,Hd% 26A +unnerves ,Vn'n3vz Ha% 26A +unnerving ,Vn'n3vIN Hb% 36A +unnoticeable Vn'n@UtIs@bl OA% 5 +unnoticed ,Vn'n@UtIst OA% 3 +unnumbered ,Vn'nVmb@d OA% 3 +unobjectionable ,Vn@b'dZekSn@bl OA% 5 +unobservant ,Vn@b'z3v@nt OA% 4 +unobserved ,Vn@b'z3vd OA% 3 +unobtainable ,Vn@b'teIn@bl OA% 5 +unobtrusive ,Vn@b'trusIv OA% 4 +unobtrusively ,Vn@b'trusIvlI Pu% 5 +unobvious Vn'0bvI@s OA% 4 +unoccupied Vn'0kjUpaId OA% 4 +unofficial ,Vn@'fISl OA% 4 +unofficially ,Vn@'fIS@lI Pu% 5 +unopen Vn'@Up@n OA% 3 +unopened Vn'@Up@nd OA% 3 +unopposed ,Vn@'p@Uzd OA% 3 +unoriginal ,Vn@'rIdZ@nl OA% 5 +unorthodox ,Vn'OT@d0ks OA% 4 +unpack ,Vn'p&k J0% 22A,6A +unpacked ,Vn'p&kt Jc%,Jd% 22A,6A +unpacking ,Vn'p&kIN Jb% 32A,6A +unpacks ,Vn'p&ks Ja% 22A,6A +unpaid Vn'peId OA% 2 +unpainted Vn'peIntId OA% 3 +unpalatable Vn'p&l@t@bl OA% 5 +unpalatably Vn'p&l@t@blI Pu% 5 +unparalleled Vn'p&r@leld OA% 4 +unpardonable Vn'pAdn@bl OA% 4 +unpardonably Vn'pAdn@blI Pu% 4 +unparliamentary ,Vn,pAl@'mentrI OA% 5 +unpatriotic ,Vnp&trI'0tIk OA% 5 +unpatriotically ,Vnp&trI'0tIklI Pu% 6 +unpaved Vn'peIvd OA% 2 +unpersuaded ,Vnp@'sweIdId OA% 4 +unperturbed ,Vnp@'t3bd OA% 3 +unpick Vn'pIk J0% 23A,6A,15B +unpicked Vn'pIkt Jc%,Jd% 23A,6A,15B +unpicking Vn'pIkIN Jb% 33A,6A,15B +unpicks Vn'pIks Ja% 23A,6A,15B +unplaced ,Vn'pleIst OA% 2 +unplanned Vn'pl&nd OA% 2 +unplayable Vn'pleI@bl OA% 4 +unpleasant Vn'pleznt OA% 3 +unpleasantly Vn'plezntlI Pu% 4 +unpleasantness Vn'plezntn@s M7% 4 +unpleasantnesses Vn'plezntn@sIz Mj% 5 +unplug Vn'plVg J4% 22C,6A,15B +unplugged Vn'plVgd Jc%,Jd% 22C,6A,15B +unplugging Vn'plVgIN Jb% 32C,6A,15B +unplugs Vn'plVgz Ja% 22C,6A,15B +unplumbed Vn'plVmd OA% 2 +unpolluted ,Vnp@'lutId OA% 4 +unpompous Vn'p0mp@s OA% 3 +unpopular Vn'p0pjUl@R OA% 4 +unpopularity ,Vnp0pjU'l&rItI L@% 6 +unpractised Vn'pr&ktIst OA% 3 +unprecedented Vn'presIdentId OA% 5 +unprecedentedly Vn'presIdentIdlI Pu% 6 +unpredictability ,VnprI,dIkt@'bIlItI L@% 7 +unpredictable ,VnprI'dIkt@bl OA% 5 +unpredictably ,VnprI'dIkt@blI Pu% 5 +unpredicted ,VnprI'dIktId OA% 4 +unprejudiced Vn'predZUdIst OA% 4 +unpremeditated ,Vnpri'medIteItId OA% 6 +unprepared ,VnprI'pe@d OA% 3 +unprepossessing ,Vnprip@'zesIN OA$ 5 +unpretentious ,VnprI'tenS@s OA% 4 +unprincipled Vn'prIns@pld OA% 4 +unprintable Vn'prInt@bl OA% 4 +unproductive ,Vnpr@'dVktIv OA% 4 +unproductively ,Vnpr@'dVktIvlI Pu% 5 +unprofessional ,Vnpr@'feS@nl OA% 5 +unprofitable Vn'pr0fIt@bl OA% 5 +unprofitably Vn'pr0fIt@blI Pu% 5 +unpromising Vn'pr0mIsIN OA% 4 +unprompted ,Vn'pr0mptId OA% 3 +unpronounceable ,Vnpr@'naUns@bl OA% 5 +unpropitious ,Vnpr@'pIS@s OA% 4 +unprotected ,Vnpr@'tektId OA% 4 +unproved Vn'pruvd OA% 2 +unproven Vn'pruvn Op% 3 +unprovided ,Vnpr@'vaIdId OA% 4 +unprovoked ,Vnpr@'v@Ukt OA% 3 +unpublished Vn'pVblISt OA% 3 +unpunished Vn'pVnISt OA% 3 +unputdownable ,VnpUt'daUn@bl OA$ 5 +unqualified Vn'kw0lIfaId OA% 4 +unquestionable Vn'kwestS@n@bl OA% 5 +unquestionably Vn'kwestS@n@blI Pu% 5 +unquestioned Vn'kwestS@nd OA% 3 +unquestioning Vn'kwestS@nIN OA% 4 +unquiet Vn'kwaI@t OA% 3 +unquotable Vn'kw@Ut@bl OA% 4 +unquote Vn'kw@Ut Pu% 2 +unravel Vn'r&v@l J4% 32A,6A +unravelled Vn'r&v@ld Jc%,Jd% 32A,6A +unravelling Vn'r&v@lIN Jb% 42A,6A +unravels Vn'r&v@lz Ja% 32A,6A +unreached Vn'ritSt OA% 2 +unread Vn'red OA% 2 +unreadable Vn'rid@bl OA% 4 +unready Vn'redI OA% 3 +unreal Vn'rI@l OA% 3 +unrealistic ,VnrI@'lIstIk OA% 5 +unrealistically ,VnrI@'lIstIklI Pu% 6 +unreality ,VnrI'&lItI L@% 5 +unrealized Vn'rI@laIzd OA% 4 +unreasonable Vn'rizn@bl OA% 4 +unreasonably Vn'rizn@blI Pu% 4 +unreasoning Vn'riz@nIN OA% 4 +unreceptive ,VnrI'septIv OA% 4 +unreciprocated ,VnrI'sIpr@keItId OA% 6 +unrecognizable Vn'rek@gnaIz@bl OA% 6 +unrecognizably ,Vnrek@g'naIz@blI Pu% 6 +unrecognized Vn'rek@gnaIzd OA% 4 +unreconciled Vn'rek@nsaIld OA% 4 +unrecorded ,VnrI'kOdId OA% 4 +unredeemable ,VnrI'dim@bl OA% 5 +unrefined ,VnrI'faInd OA% 3 +unreflective ,VnrI'flektIv OA% 4 +unregenerate ,VnrI'dZen@r@t OA% 5 +unregistered Vn'redZIst@d OA% 4 +unrehearsed ,VnrI'h3st OA% 3 +unrelated ,VnrI'leItId OA% 4 +unrelaxed ,VnrI'l&kst OA% 3 +unrelenting ,VnrI'lentIN OA% 4 +unreliable ,VnrI'laI@bl OA% 5 +unreliably ,VnrI'laI@blI Pu% 5 +unrelieved ,VnrI'livd OA% 3 +unremarkable ,VnrI'mAk@bl OA% 5 +unremarkably ,VnrI'mAk@blI Pu% 5 +unremitting ,VnrI'mItIN OA% 4 +unrepeatable ,VnrI'pit@bl OA% 5 +unrepentant ,VnrI'pent@nt OA% 4 +unrepresentative ,VnreprI'zent@tIv OA% 6 +unrequested ,VnrI'kwestId OA% 4 +unrequited ,VnrI'kwaItId OA% 4 +unreserved ,VnrI'z3vd OA% 3 +unreservedly ,VnrI'z3vIdlI Pu% 5 +unresisting ,VnrI'zIstIN OA% 4 +unresolved ,VnrI'z0lvd OA% 3 +unrest Vn'rest L@% 2 +unrestrained ,VnrI'streInd OA% 3 +unrestricted ,VnrI'strIktId OA% 4 +unrevised ,VnrI'vaIzd OA% 3 +unrewarded ,VnrI'wOdId OA% 4 +unrewarding ,VnrI'wOdIN OA% 4 +unrhythmical Vn'rIDmIkl OA% 4 +unrighteous Vn'raItS@s OA% 3 +unrighteously Vn'raItS@slI Pu% 4 +unripe Vn'raIp OA% 2 +unripened Vn'raIp@nd OA% 3 +unrivalled Vn'raIv@ld OA% 3 +unroll Vn'r@Ul J0% 22A,6A +unrolled Vn'r@Uld Jc%,Jd% 22A,6A +unrolling Vn'r@UlIN Jb% 32A,6A +unrolls Vn'r@Ulz Ja% 22A,6A +unromantic ,Vnr@'m&ntIk OA% 4 +unromantically ,Vnr@'m&ntIklI Pu% 5 +unruffled Vn'rVfld OA% 3 +unrulier Vn'rulI@R Or$ 4 +unruliest Vn'rulIIst Os% 4 +unruly Vn'rulI OD% 3 +unsaddle Vn's&dl H2% 36A +unsaddled Vn's&dld Hc%,Hd%,OA% 36A +unsaddles Vn's&dlz Ha% 36A +unsaddling Vn's&dlIN Hb% 36A +unsafe Vn'seIf OA% 2 +unsaid ,Vn'sed Hc$,Hd%,OA% 26A +unsaleable Vn'seIl@bl OA% 4 +unsalted Vn'sOltId OA% 3 +unsatisfactorily ,Vns&tIs'f&kt@rIlI Pu% 7 +unsatisfactory ,Vns&tIs'f&kt@rI OA% 6 +unsatisfied Vn's&tIsfaId OA% 4 +unsatisfying Vn's&tIsfaIIN OA% 5 +unsaturated Vn's&tS@reItId OA% 5 +unsavoury Vn'seIv@rI OA% 4 +unsay ,Vn'seI H5$ 26A +unsaying ,Vn'seIIN Hb$ 36A +unsays ,Vn'seIz Ha$ 26A +unscathed Vn'skeIDd OA% 2 +unscheduled Vn'Sedjuld OA% 3 +unscientific ,VnsaI@n'tIfIk OA% 5 +unscientifically ,VnsaI@n'tIfIklI Pu% 6 +unscramble ,Vn'skr&mbl H2% 3 +unscrambled ,Vn'skr&mbld Hc%,Hd% 3 +unscrambles ,Vn'skr&mblz Ha% 3 +unscrambling ,Vn'skr&mblIN Hb% 3 +unscrew Vn'skru J0% 22A,6A,15A,15B +unscrewed Vn'skrud Jc%,Jd% 22A,6A,15A,15B +unscrewing Vn'skruIN Jb% 32A,6A,15A,15B +unscrews Vn'skruz Ja% 22A,6A,15A,15B +unscripted Vn'skrIptId OA% 3 +unscrupulous Vn'skrupjUl@s OA% 4 +unscrupulously Vn'skrupjUl@slI Pu% 5 +unsealed Vn'sild OA% 2 +unseasonable Vn'sizn@bl OA% 4 +unseasonably Vn'siz@n@blI Pu% 5 +unseasoned ,Vn'siznd OA% 3 +unseat ,Vn'sit H0$ 26A +unseated ,Vn'sitId Hc%,Hd% 36A +unseating ,Vn'sitIN Hb$ 36A +unseats ,Vn'sits Ha$ 26A +unseaworthy Vn'siw3DI OA% 4 +unsecured VnsI'kjU@d OA% 3 +unseeded Vn'sidId OA% 3 +unseeing Vn'siIN OA% 3 +unseemly Vn'simlI OA% 3 +unseen Vn'sin K6%,OA% 2 +unseens Vn'sinz Kj% 2 +unselected VnsI'lektId OA% 4 +unselective VnsI'lektIv OA% 4 +unselfconscious ,Vnself'k0nS@s OA% 4 +unselfconsciously ,Vnself'k0nS@slI Pu% 5 +unselfish Vn'selfIS OA% 3 +unselfishly Vn'selfISlI Pu% 4 +unselfishness Vn'selfISn@s L@% 4 +unsettle ,Vn'setl H2% 36A +unsettled ,Vn'setld Hc%,Hd% 36A +unsettles ,Vn'setlz Ha% 36A +unsettling ,Vn'setlIN Hb% 36A +unsex ,Vn'seks H1$ 26A +unsexed ,Vn'sekst Hc$,Hd$,OA$ 26A +unsexes ,Vn'seksIz Ha$ 36A +unsexing ,Vn'seksIN Hb$ 36A +unshakable Vn'SeIk@bl OA% 4 +unshakably Vn'SeIk@blI Pu% 4 +unshaved Vn'SeIvd OA% 2 +unshaven Vn'SeIvn OA% 3 +unsheathe Vn'SiD H2% 26A +unsheathed Vn'SiDd Hc%,Hd% 26A +unsheathes Vn'SiDz Ha% 26A +unsheathing Vn'SiDIN Hb% 36A +unshielded Vn'SildId OA% 3 +unshrinkable Vn'SrInk@bl OA% 4 +unshrinking Vn'SrINkIN OA% 3 +unshuttered Vn'SVt@d OA% 3 +unsighted Vn'saItId OA% 3 +unsightliness Vn'saItlIn@s L@% 4 +unsightly Vn'saItlI OA% 3 +unsigned Vn'saInd OA% 2 +unsilenced Vn'saIl@nst OA% 3 +unsinkable Vn'sINk@bl OA% 4 +unskilled ,Vn'skIld OA% 2 +unsmiling Vn'smaIlIN OA% 3 +unsociable Vn's@US@bl OA% 4 +unsociably Vn's@US@blI Pu% 4 +unsocial Vn's@USl OA% 3 +unsold Vn's@Uld OA% 2 +unsolicited ,Vns@'lIsItId OA% 5 +unsolved Vn's0lvd OA% 2 +unsophisticated ,Vns@'fIstIkeItId OA% 6 +unsound ,Vn'saUnd OA% 2 +unsparing Vn'spe@rIN OA% 3 +unsparingly Vn'spe@rINlI Pu% 4 +unspeakable Vn'spik@bl OA% 4 +unspeakably Vn'spik@blI Pu% 4 +unspecialized Vn'speS@laIzd OA% 4 +unspecific ,Vnsp@'sIfIk OA% 4 +unspecifically ,Vnsp@'sIfIklI Pu% 5 +unspecified Vn'spesIfaId OA% 4 +unspectacular ,Vnspek't&kjUl@R OA% 5 +unspoiled Vn'spoIld OA% 2 +unspoilt Vn'spoIlt OA% 2 +unspoken Vn'sp@Uk@n OA% 3 +unsporting Vn'spOtIN OA% 3 +unsportingly Vn'spOtINlI Pu% 4 +unsportsmanlike Vn'spOtsm@nlaIk OA% 4 +unspotted Vn'sp0tId OA% 3 +unstable Vn'steIbl OA% 3 +unstartling Vn'stAtlIN OA% 3 +unstated Vn'steItId OA% 3 +unstatesmanlike Vn'steItsm@nlaIk OA% 4 +unsteadily Vn'stedIlI Pu% 4 +unsteady Vn'stedI Op% 3 +unstoppable Vn'st0p@bl OA% 4 +unstrained Vn'streInd OA% 2 +unstressed Vn'strest OA% 2 +unstructured Vn'strVktS@d OA% 3 +unstrung ,Vn'strVN OA$ 2 +unstuck ,Vn'stVk OA% 2 +unstudied ,Vn'stVdId OA% 3 +unsubtle Vn'sVtl OA% 3 +unsuccessful ,Vns@k'sesf@l OA% 4 +unsuccessfully ,Vns@k'sesf@lI Pu% 5 +unsuitability Vn,sut@'bIlItI L@% 6 +unsuitable Vn'sut@bl OA% 4 +unsuitably Vn'sut@blI Pu% 4 +unsuited Vn'sutId OA% 3 +unsullied Vn'sVlId OA% 3 +unsung ,Vn'sVN OA% 2 +unsupervised Vn'sup@vaIzd OA% 4 +unsupported ,Vns@'pOtId OA% 4 +unsure Vn'SU@R OA% 2 +unsurpassed ,Vns@'pAst OA% 3 +unsuspected ,Vns@'spektId OA% 4 +unsuspecting ,Vns@'spektIN OA% 4 +unsuspectingly ,Vns@'spektINlI Pu% 5 +unsuspicious ,Vns@'spIS@s OA% 4 +unswayed Vn'sweId OA% 2 +unsweetened Vn'switnd OA% 3 +unswept Vn'swept OA% 2 +unswerving Vn'sw3vIN OA% 3 +unswervingly Vn'sw3vINlI Pu% 4 +unsyllabic ,VnsI'l&bIk OA$ 4 +unsympathetic ,VnsImp@'TetIk OA% 5 +unsympathetically ,VnsImp@'TetIklI Pu% 6 +unsystematic ,VnsIst@'m&tIk OA% 5 +unsystematically ,VnsIst@'m&tIklI Pu% 6 +untainted Vn'teIntId OA% 3 +untamed Vn'teImd OA% 2 +untapped Vn't&pt OA% 2 +untarnished Vn'tAnISt OA% 3 +untaxed Vn't&kst OA% 2 +untenable Vn'ten@bl OA% 4 +untenanted Vn'ten@ntId OA% 4 +untended Vn'tendId OA% 3 +untested Vn'testId OA% 3 +untethered Vn'teD@d OA% 3 +unthinkable Vn'TINk@bl OA% 4 +unthinking Vn'TINkIN OA% 3 +unthinkingly Vn'TINkINlI Pu% 4 +unthought-of Vn'TOt-0v OA% 3 +untidier Vn'taIdI@R Or% 4 +untidiest Vn'taIdIIst Os% 4 +untidily Vn'taIdIlI Pu% 4 +untidiness Vn'taIdIn@s L@% 4 +untidy Vn'taIdI OD% 3 +untie Vn'taI J5% 22A,3A,6A,15A,15B +untied Vn'taId Jc%,Jd% 22A,3A,6A,15A,15B +unties Vn'taIz Ja% 22A,3A,6A,15A,15B +until Vn'tIl T-*,V-* 2 +untimely Vn'taImlI OA% 3 +untiring Vn'taI@rIN OA% 3 +untitled Vn'taItld OA% 3 +unto 'Vntu T-% 2 +untold ,Vn't@Uld OA% 2 +untouchable Vn'tVtS@bl K6%,OA% 4 +untouchables Vn'tVtS@blz Kj% 4 +untouched Vn'tVtSt OA% 2 +untoward ,Vnt@'wOd OA% 3 +untrained Vn'treInd OA% 2 +untrammelled Vn'tr&m@ld OA% 3 +untranslatable ,Vntr&ns'leIt@bl OA% 5 +untreated Vn'tritId OA% 3 +untried Vn'traId OA% 2 +untroubled Vn'trVbld OA% 3 +untrue Vn'tru OA% 2 +untruly Vn'trulI Pu% 3 +untrustworthy Vn'trVstw3DI OA% 4 +untruth Vn'truT M6% 2 +untruthful Vn'truTf@l OA% 3 +untruthfully Vn'truTf@lI Pu% 4 +untruths Vn'truDz Mj% 2 +untucked Vn'tVkt OA% 2 +unturned Vn't3nd OA% 2 +untutored Vn'tjut@d OA% 3 +untwisted Vn'twIstId OA% 3 +untying Vn'taIIN Jb% 32A,3A,6A,15A,15B +untypical Vn'tIpIkl OA% 4 +untypically Vn'tIpIklI Pu% 4 +unused Vn'just OA% 2 +unused Vn'juzd OA% 2 +unusual Vn'juZU@l OA% 4 +unusually Vn'juZU@lI Pu% 5 +unutterable Vn'Vt@r@bl OA% 5 +unutterably Vn'Vt@r@blI Pu% 5 +unvaried Vn've@rId OA% 3 +unvarnished Vn'vAnISt OA% 3 +unvarying Vn've@rIIN OA% 4 +unveil ,Vn'veIl J0% 22A,6A +unveiled ,Vn'veIld Jc%,Jd% 22A,6A +unveiling ,Vn'veIlIN Jb% 32A,6A +unveils ,Vn'veIlz Ja% 22A,6A +unverified Vn'verIfaId OA% 4 +unversed Vn'v3st OA% 2 +unvigilant Vn'vIdZIl@nt OA% 4 +unvoiced ,Vn'voIst OA% 2 +unwanted Vn'w0ntId OA% 3 +unwarily Vn'we@rIlI Pu% 4 +unwarrantably Vn'w0r@nt@blI Pu% 5 +unwarranted Vn'w0r@ntId OA% 4 +unwary Vn'we@rI OA% 3 +unwashed Vn'w0St OA% 2 +unwavering Vn'weIv@rIN OA% 4 +unwaveringly Vn'weIv@rINlI Pu% 5 +unweaned Vn'wind OA% 2 +unwearied Vn'wI@rId OA% 3 +unwed Vn'wed OA% 2 +unwelcome Vn'welk@m OA% 3 +unwell Vn'wel Op% 2 +unwholesome Vn'h@Uls@m OA% 3 +unwieldiness Vn'wildIn@s L@% 4 +unwieldy Vn'wildI OA% 3 +unwilling Vn'wIlIN OA% 3 +unwillingly Vn'wIlINlI Pu% 4 +unwillingness Vn'wIlINnIs L@% 4 +unwind ,Vn'waInd J5% 22A,6A,21 +unwinding ,Vn'waIndIN Jb% 32A,6A,21 +unwinds ,Vn'waIndz Ja% 22A,6A,21 +unwise Vn'waIz OA% 2 +unwisely Vn'waIzlI Pu% 3 +unwitnessed Vn'wItn@st OA% 3 +unwitting Vn'wItIN OA% 3 +unwittingly Vn'wItINlI Pu% 4 +unwonted Vn'w@UntId Oq% 3 +unwontedly Vn'w@UntIdlI Pu% 4 +unworkable Vn'w3k@bl OA% 4 +unworkmanlike Vn'w3km@nlaIk OA% 4 +unworldly Vn'w3ldlI OA% 3 +unworn Vn'wOn OA% 2 +unworried Vn'wVrId OA% 3 +unworthily Vn'w3DIlI Pu% 4 +unworthiness Vn'w3DIn@s L@% 4 +unworthy Vn'w3DI OA% 3 +unwound ,Vn'waUnd Jc%,Jd% 22A,6A,21 +unwrap Vn'r&p J4% 26A,14,15A,15B +unwrapped Vn'r&pt Jc%,Jd% 26A,14,15A,15B +unwrapping Vn'r&pIN Jb% 36A,14,15A,15B +unwraps Vn'r&ps Ja% 26A,14,15A,15B +unwritten ,Vn'rItn OA% 3 +unyielding Vn'jildIN OA% 3 +unzip ,Vn'zIp H4% 2 +unzipped ,Vn'zIpt Hc%,Hd% 2 +unzipping ,Vn'zIpIN Hb% 3 +unzips ,Vn'zIps Ha% 2 +up Vp J4%,P+*,T-* 12A,6A +up- Vp- U-% 1 +up-and-coming ,Vp-@n-'kVmIN OA% 4 +up-beat 'Vp-bit K6% 2 +up-beats 'Vp-bits Kj% 2 +up-market 'Vp-mAkIt OA% 3 +up-to-date ,Vp-t@-'deIt OA% 3 +up-to-the-minute ,Vp-t@-D@-'mInIt Oq% 5 +upbraid ,Vp'breId H0% 26A,14 +upbraided ,Vp'breIdId Hc%,Hd% 36A,14 +upbraiding ,Vp'breIdIN Hb%,K6$ 36A,14 +upbraidings ,Vp'breIdINz Kj% 3 +upbraids ,Vp'breIdz Ha% 26A,14 +upbringing 'VpbrININ L@% 3 +upcountry ,Vp'kVntrI OA%,Pu% 3 +update ,Vp'deIt H2% 26A +updated ,Vp'deItId Hc%,Hd% 36A +updates ,Vp'deIts Ha% 26A +updating ,Vp'deItIN Hb% 36A +upgrade 'VpgreId K6% 2 +upgrade ,Vp'greId H2% 26A +upgraded ,Vp'greIdId Hc%,Hd% 36A +upgrades 'VpgreIdz Kj% 2 +upgrades ,Vp'greIdz Ha% 26A +upgrading ,Vp'greIdIN Hb% 36A +upheaval ,Vp'hiv@l K6% 3 +upheavals ,Vp'hiv@lz Kj% 3 +upheld ,Vp'held Hc%,Hd% 26A +uphill ,Vp'hIl OA%,Pu% 2 +uphold ,Vp'h@Uld H5% 26A +upholding ,Vp'h@UldIN Hb% 36A +upholds ,Vp'h@Uldz Ha% 26A +upholster ,Vp'h@Ulst@R H0% 36A +upholstered ,Vp'h@Ulst@d Hc%,Hd% 36A +upholsterer ,Vp'h@Ulst@r@R K6% 4 +upholsterers ,Vp'h@Ulst@r@z Kj% 4 +upholstering ,Vp'h@Ulst@rIN Hb% 46A +upholsters ,Vp'h@Ulst@z Ha% 36A +upholstery ,Vp'h@Ulst@rI L@% 4 +upkeep 'Vpkip L@% 2 +upland 'Vpl@nd K6% 2 +uplands 'Vpl@ndz Kj% 2 +uplift 'VplIft L@% 2 +uplift ,Vp'lIft H0% 26A +uplifted ,Vp'lIftId Hc%,Hd% 36A +uplifting ,Vp'lIftIN Hb% 36A +uplifts ,Vp'lIfts Ha% 26A +upmost 'Vpm@Ust OA% 2 +upon @'p0n T-* 2 +upped Vpt Jc$,Jd$ 12A,6A +upper 'Vp@R K6%,OA% 2 +upper-cuts 'Vp@-kVts Kj% 3 +uppercut 'Vp@kVt K6% 3 +uppermost 'Vp@m@Ust OA%,Pu% 3 +uppers 'Vp@z Kj% 2 +upping 'VpIN Jb$ 22A,6A +uppish 'VpIS OA$ 2 +uppishly 'VpISlI Pu$ 3 +uppishness 'VpISn@s L@$ 3 +uppity 'VpItI OA% 3 +upright 'VpraIt K6%,OA% 2 +uprightly 'VpraItlI Pu% 3 +uprightness 'VpraItn@s L@% 3 +uprights 'VpraIts Kj% 2 +uprising 'VpraIzIN K6% 3 +uprisings 'VpraIzINz Kj% 3 +uproar 'VprOR M6% 2 +uproarious Vp'rOrI@s OA% 4 +uproariously Vp'rOrI@slI Pu% 5 +uproars 'VprOz Mj% 2 +uproot ,Vp'rut H0% 26A +uprooted ,Vp'rutId Hc%,Hd% 36A +uprooting ,Vp'rutIN Hb% 36A +uproots ,Vp'ruts Ha% 26A +ups Vps Ja$,Kj$ 12A,6A +upset 'Vpset K6% 2 +upset ,Vp'set J5%,Jc%,Jd% 22A,6A +upsets 'Vpsets Kj% 2 +upsets ,Vp'sets Ja% 22A,6A +upsetting ,Vp'setIN Jb% 32A,6A +upshot 'VpS0t K6% 2 +upshots 'VpS0ts Kj$ 2 +upside-down ,VpsaId-'daUn Pu% 3 +upstage ,Vp'steIdZ H2%,OA%,Pu% 26A +upstaged ,Vp'steIdZd Hc%,Hd% 26A +upstages ,Vp'steIdZIz Ha% 36A +upstaging ,Vp'steIdZIN Hb% 36A +upstairs ,Vp'ste@z Oq%,Pu% 2 +upstanding ,Vp'st&ndIN OA% 3 +upstart 'VpstAt K6%,OA% 2 +upstarts 'VpstAts Kj% 2 +upstream ,Vp'strim Pu% 2 +upsurge 'Vps3dZ K6% 2 +upsurges 'Vps3dZIz Kj% 3 +uptake 'VpteIk M6% 2 +uptakes 'VpteIks Mj$ 2 +uptight ,Vp'taIt OA% 2 +uptown ,Vp'taUn OA%,Pu% 2 +upturn 'Vpt3n K6% 2 +upturned 'Vpt3nd OA% 2 +upturns 'Vpt3nz Kj% 2 +upward 'Vpw@d OA%,Pu% 2 +upwards 'Vpw@dz Pu% 2 +uranium jU'reInI@m L@% 4 +urban '3b@n OA% 2 +urbane 3'beIn OA% 2 +urbanely 3'beInlI Pu% 3 +urbanity 3'b&nItI L@% 4 +urbanization ,3b@naI'zeISn L@% 5 +urbanize '3b@naIz H2% 36A +urbanized '3b@naIzd Hc%,Hd% 36A +urbanizes '3b@naIzIz Ha% 46A +urbanizing '3b@naIzIN Hb% 46A +urchin '3tSIn K6% 2 +urchins '3tSInz Kj% 2 +urge 3dZ H2%,M6% 16A,6D,9,14,15B,17,19C +urged 3dZd Hc%,Hd% 16A,6D,9,14,15B,17,19C +urgency '3dZ@nsI L@% 3 +urgent '3dZ@nt OA% 2 +urgently '3dZ@ntlI Pu% 3 +urges '3dZIz Ha%,Mj% 26A,6D,9,14,15B,17,19C +urging '3dZIN Hb%,K6$ 26A,6D,9,14,15B,17,19C +urgings '3dZINz Kj% 2 +uric 'jU@rIk OA$ 2 +urinal jU'raIn@l K6% 3 +urinals jU'raIn@lz Kj% 3 +urinary 'jU@rInrI OA% 4 +urinate 'jU@rIneIt I2% 3 +urinated 'jU@rIneItId Ic%,Id% 4 +urinates 'jU@rIneIts Ia% 3 +urinating 'jU@rIneItIN Ib% 4 +urine 'jU@rIn L@% 2 +urn 3n K6% 1 +urns 3nz Kj% 1 +us Vz Qx* 1 +usable 'juz@bl OA% 3 +usage 'jusIdZ M6% 2 +usages 'jusIdZIz Mj% 3 +use jus M6% 1 +use juz H2* 16A,14,15A,15B,16A +used just Gc*,OA% 1 +used juzd Hc*,Hd*,OA% 16A,14,15A,15B,16A +useful 'jusf@l OA% 2 +usefully 'jusf@lI Pu% 3 +usefulness 'jusf@ln@s L@% 3 +useless 'jusl@s OA% 2 +uselessly 'jusl@slI Pu% 3 +uselessness 'jusl@sn@s L@% 3 +user 'juz@R K6% 2 +users 'juz@z Kj% 2 +uses 'jusIz Mj% 2 +uses 'juzIz Ha% 26A,14,15A,15B,16A +usher 'VS@R H0%,K6% 214,15B +ushered 'VS@d Hc%,Hd% 214,15B +usherette ,VS@'ret K6% 3 +usherettes ,VS@'rets Kj% 3 +ushering 'VS@rIN Hb% 314,15B +ushers 'VS@z Ha%,Kj% 214,15B +using 'juzIN Hb% 26A,14,15A,15B,16A +usual 'juZU@l OA% 3 +usually 'juZ@lI Pu* 3 +usurer 'juZ@r@R K6$ 3 +usurers 'juZ@r@z Kj$ 3 +usurious ju'zjU@rI@s OA$ 4 +usurp ju'z3p H0% 26A +usurpation ,juz3'peISn M6% 4 +usurpations ,juz3'peISnz Mj$ 4 +usurped ju'z3pt Hc%,Hd% 26A +usurper ju'z3p@R K6% 3 +usurpers ju'z3p@z Kj% 3 +usurping ju'z3pIN Hb% 36A +usurps ju'z3ps Ha% 26A +usury 'juZ@rI L@$ 3 +utensil ju'tensIl K6% 3 +utensils ju'tensIlz Kj% 3 +uterine 'jut@raIn OA% 3 +uterus 'jut@r@s K7% 3 +uteruses 'jut@r@sIz Kj$ 4 +utilitarian ju,tIlI'te@rI@n K6%,OA% 6 +utilitarianism ju,tIlI'te@rI@nIz@m L@% 8 +utilitarians ju,tIlI'te@rI@nz Kj% 6 +utilities ju'tIlItIz Mj% 4 +utility ju'tIlItI M8% 4 +utilizable ,jutI'laIz@bl OA% 5 +utilization ,jutIlaI'zeISn L@% 5 +utilize 'jutIlaIz H2% 36A +utilized 'jutIlaIzd Hc%,Hd% 36A +utilizes 'jutIlaIzIz Ha% 46A +utilizing 'jutIlaIzIN Hb% 46A +utmost 'Vtm@Ust K6%,OA% 2 +utmosts 'Vtm@Usts Kj$ 2 +utter 'Vt@R H0%,OA% 26A +utterance 'Vt@r@ns M6% 3 +utterances 'Vt@r@nsIz Mj% 4 +uttered 'Vt@d Hc%,Hd% 26A +uttering 'Vt@rIN Hb% 36A +utterly 'Vt@lI Pu% 3 +uttermost 'Vt@m@Ust K6%,OA% 3 +uttermosts 'Vt@m@Usts Kj$ 3 +utters 'Vt@z Ha% 26A +uvula 'juvjUl@ K6$ 3 +uvular 'juvjUl@R OA$ 3 +uvulas 'juvjUl@z Kj$ 3 +uxorious ,Vk'sOrI@s OA% 4 +uxoriously ,Vk'sOrI@slI Pu$ 5 +uxoriousness ,Vk'sOrI@sn@s L@$ 5 +v vi Ki$ 1 +v's viz Kj$ 1 +vac v&k K6$ 1 +vacancies 'veIk@nsIz Mj% 3 +vacancy 'veIk@nsI M8% 3 +vacant 'veIk@nt OA% 2 +vacantly 'veIk@ntlI Pu% 3 +vacate v@'keIt H2% 26A +vacated v@'keItId Hc%,Hd% 36A +vacates v@'keIts Ha% 26A +vacating v@'keItIN Hb% 36A +vacation v@'keISn I0$,M6% 33A +vacationed v@'keISnd Ic$,Id$ 33A +vacationing v@'keISnIN Ib$ 43A +vacationist v@'keIS@nIst K6$ 4 +vacationists v@'keIS@nIsts Kj$ 4 +vacations v@'keISnz Ia$,Mj% 33A +vaccinate 'v&ksIneIt H2% 36A,14 +vaccinated 'v&ksIneItId Hc%,Hd% 46A,14 +vaccinates 'v&ksIneIts Ha% 36A,14 +vaccinating 'v&ksIneItIN Hb% 46A,14 +vaccination ,v&ksI'neISn M6% 4 +vaccinations ,v&ksI'neISnz Mj% 4 +vaccine 'v&ksin M6% 2 +vaccines 'v&ksinz Mj% 2 +vacillate 'v&sIleIt I2% 32A,3A +vacillated 'v&sIleItId Ic%,Id% 42A,3A +vacillates 'v&sIleIts Ia% 32A,3A +vacillating 'v&sIleItIN Ib% 42A,3A +vacillation ,v&sI'leISn M6% 4 +vacillations ,v&sI'leISnz Mj% 4 +vacs v&ks Kj$ 1 +vacua 'v&kjU@ Kj$ 3 +vacuities v@'kjuItIz Mj$ 4 +vacuity v@'kjuItI M8% 4 +vacuous 'v&kjU@s OA% 3 +vacuously 'v&kjU@slI Pu% 4 +vacuum 'v&kjU@m K6% 3 +vacuums 'v&kjU@mz Kj% 3 +vade-mecum ,veIdI-'mik@m K6$ 4 +vade-mecums ,veIdI-'mik@mz Kj$ 4 +vagabond 'v&g@b0nd K6%,OA% 3 +vagabonds 'v&g@b0ndz Kj% 3 +vagaries 'veIg@rIz Kj% 3 +vagary 'veIg@rI K8% 3 +vagina v@'dZaIn@ K6% 3 +vaginal v@'dZaInl OA% 3 +vaginas v@'dZaIn@z Kj% 3 +vagrancy 'veIgr@nsI L@% 3 +vagrant 'veIgr@nt K6%,OA% 2 +vagrants 'veIgr@nts Kj% 2 +vague veIg OB% 1 +vaguely 'veIglI Pu% 2 +vagueness 'veIgn@s L@% 2 +vaguer 'veIg@R Or% 2 +vaguest 'veIgIst Os% 2 +vain veIn OC% 1 +vainer 'veIn@R Or% 2 +vainest 'veInIst Os% 2 +vainglorious veIn'glOrI@s OA% 4 +vainglory veIn'glOrI L@% 3 +vainly 'veInlI Pu% 2 +valance 'v&l@ns K6$ 2 +valances 'v&l@nsIz Kj$ 3 +vale veIl K6% 1 +valediction ,v&lI'dIkSn K6% 4 +valedictions ,v&lI'dIkSnz Kj% 4 +valedictory ,v&lI'dIkt@rI OA% 5 +valence 'v&l@ns K6$ 2 +valence 'veIl@ns M6$ 2 +valences 'v&l@nsIz Kj$ 3 +valences 'veIl@nsIz Mj$ 3 +valencies 'veIl@nsIz Kj$ 3 +valency 'veIl@nsI K8$ 3 +valentine 'v&l@ntaIn K6% 3 +valentines 'v&l@ntaInz Kj% 3 +valerian v@'lI@rI@n L@$ 4 +vales veIlz Kj% 1 +valet 'v&leI H0$,K6% 26A +valeted 'v&leId Hc$,Hd$ 26A +valeting 'v&leIIN Hb$ 36A +valets 'v&leIz Ha$,Kj$ 26A +valetudinarian ,v&lItjudI'ne@rI@n K6$,OA$ 7 +valetudinarians ,v&lItjudI'ne@rI@nz Kj$ 7 +valiant 'v&lI@nt OA% 3 +valiantly 'v&lI@ntlI Pu% 4 +valid 'v&lId OA% 2 +validate 'v&lIdeIt H2% 36A +validated 'v&lIdeItId Hc%,Hd% 46A +validates 'v&lIdeIts Ha% 36A +validating 'v&lIdeItIN Hb% 46A +validity v@'lIdItI L@% 4 +validly 'v&lIdlI Pu% 3 +valise v@'liz K6% 2 +valises v@'lizIz Kj$ 3 +valley 'v&lI K6% 2 +valleys 'v&lIz Kj% 2 +valorous 'v&l@r@s OA% 3 +valour 'v&l@R L@% 2 +valuable 'v&ljU@bl K6%,OA% 4 +valuables 'v&ljU@blz Kj% 4 +valuation ,v&ljU'eISn M6% 4 +valuations ,v&ljU'eISnz Mj% 4 +value 'v&lju H2%,M6% 26A,15A,16B +value-added ,v&lju-'&dId Oq% 4 +valued 'v&ljud Hc%,Hd% 26A,15A,16B +valueless 'v&ljul@s OA% 3 +valuer 'v&lju@R K6% 3 +valuers 'v&lju@z Kj% 3 +values 'v&ljuz Ha%,Mj% 26A,15A,16B +valuing 'v&ljuIN Hb% 36A,15A,16B +valve v&lv K6% 1 +valves v&lvz Kj% 1 +valvular 'v&lvjUl@R OA$ 3 +vamoose ,v&'mus I2$ 2 +vamoosed ,v&'must Ic$,Id$ 2 +vamooses ,v&'musIz Ia$ 3 +vamoosing ,v&'musIN Ib$ 3 +vamp v&mp J0%,K6% 12A,6A,15B +vamped v&mpt Jc%,Jd% 12A,6A,15B +vamping 'v&mpIN Jb% 22A,6A,15B +vampire 'v&mpaI@R K6% 2 +vampires 'v&mpaI@z Kj% 2 +vamps v&mps Ja%,Kj% 12A,6A,15B +van v&n K6% 1 +vandal 'v&nd@l K6% 2 +vandalism 'v&nd@lIz@m L@% 4 +vandals 'v&nd@lz Kj% 2 +vane veIn K6$ 1 +vanes veInz Kj$ 1 +vanguard 'v&ngAd K6% 2 +vanguards 'v&ngAdz Kj$ 2 +vanilla v@'nIl@ M6% 3 +vanillas v@'nIl@z Mj$ 3 +vanish 'v&nIS I1% 22A +vanished 'v&nISt Ic%,Id% 22A +vanishes 'v&nISIz Ia% 32A +vanishing 'v&nISIN Ib% 32A +vanities 'v&nItIz Mj% 3 +vanity 'v&nItI M8% 3 +vanquish 'v&NkwIS H1% 26A +vanquished 'v&NkwISt Hc%,Hd% 26A +vanquishes 'v&NkwISIz Ha% 36A +vanquishing 'v&NkwISIN Hb% 36A +vans v&nz Kj% 1 +vantage 'vAntIdZ M6% 2 +vantage-point 'vAntIdZ-poInt K6% 3 +vantage-points 'vAntIdZ-poInts Kj% 3 +vantages 'vAntIdZIz Mj$ 3 +vapid 'v&pId OA% 2 +vapidity v@'pIdItI L@$ 4 +vapidly 'v&pIdlI Pu% 3 +vapidness 'v&pIdn@s L@$ 3 +vaporization ,veIp@raI'zeISn M6% 5 +vaporizations ,veIp@raI'zeISnz Mj$ 5 +vaporize 'veIp@raIz J2% 32A,6A +vaporized 'veIp@raIzd Jc%,Jd% 32A,6A +vaporizes 'veIp@raIzIz Ja% 42A,6A +vaporizing 'veIp@raIzIN Jb% 42A,6A +vaporous 'veIp@r@s OA% 3 +vapour 'veIp@R M6% 2 +vapour-bath 'veIp@-bAT K6$ 3 +vapour-baths 'veIp@-bADz Kj$ 3 +vapours 'veIp@z Mj% 2 +variability ,ve@rI@'bIlItI L@% 6 +variable 've@rI@bl K6%,OA% 4 +variableness 've@rI@bln@s L@% 5 +variables 've@rI@blz Kj% 4 +variably 've@rI@blI Pu% 4 +variance 've@rI@ns M6% 3 +variances 've@rI@nsIz Mj$ 4 +variant 've@rI@nt K6%,OA% 3 +variants 've@rI@nts Kj% 3 +variation ,ve@rI'eISn M6% 4 +variations ,ve@rI'eISnz Mj% 4 +varicoloured 've@rIkVl@d OA$ 4 +varicose 'v&rIk@Us OA% 3 +varied 've@rId Jc%,Jd%,OA% 22A,6A +variegated 've@rIgeItId OA% 4 +variegation ,ve@rI'geISn M6% 4 +variegations ,ve@rI'geISnz Mj$ 4 +varies 've@rIz Ja% 22A,6A +varieties v@'raI@tIz Mj% 4 +variety v@'raI@tI M8% 4 +variform ,ve@rI'fOm OA$ 3 +variorum 've@rIOr@m OA$ 4 +various 've@rI@s OA% 3 +variously 've@rI@slI Pu% 4 +varlet 'vAlIt K6$ 2 +varlets 'vAlIts Kj$ 2 +varnish 'vAnIS H1%,M7% 26A +varnished 'vAnISt Hc%,Hd% 26A +varnishes 'vAnISIz Ha%,Mj% 36A +varnishing 'vAnISIN Hb% 36A +varsities 'vAsItIz Kj$ 3 +varsity 'vAsItI K8% 3 +vary 've@rI J3% 22A,6A +varying 've@rIIN Jb% 32A,6A +vascular 'v&skjUl@R OA% 3 +vase vAz K6% 1 +vasectomies v@'sekt@mIz Kj% 4 +vasectomy v@'sekt@mI K8% 4 +vaseline 'v&s@lin L@% 3 +vases 'vAzIz Kj% 2 +vassal 'v&s@l K6$ 2 +vassalage 'v&s@lIdZ L@$ 3 +vassals 'v&s@lz Kj$ 2 +vast vAst OA% 1 +vastly 'vAstlI Pu% 2 +vastness 'vAstn@s L@% 2 +vat v&t K6% 1 +vats v&ts Kj% 1 +vaudeville 'vOd@vIl L@% 3 +vault vOlt J0%,K6% 12A,2B,2C,6A +vaulted 'vOltId Jc%,Jd%,OA% 22A,2B,2C,6A +vaulter 'vOlt@R K6% 2 +vaulters 'vOlt@z Kj% 2 +vaulting 'vOltIN Jb% 22A,2B,2C,6A +vaulting-horse 'vOltIN-hOs K6% 3 +vaulting-horses 'vOltIN-hOsIz Kj% 4 +vaults vOlts Ja%,Kj% 12A,2B,2C,6A +vaunt vOnt J0$,K6$ 1 +vaunted 'vOntId Jc$,Jd% 2 +vaunter 'vOnt@R K6$ 2 +vaunters 'vOnt@z Kj$ 2 +vaunting 'vOntIN Jb$ 2 +vauntingly 'vOntINlI Pu$ 3 +vaunts vOnts Ja$,Kj$ 1 +veal vil L@% 1 +vector 'vekt@R K6$ 2 +vectors 'vekt@z Kj$ 2 +veer vI@R I0% 12A,2C +veered vI@d Ic%,Id% 12A,2C +veering 'vI@rIN Ib% 22A,2C +veers vI@z Ia% 12A,2C +vegetable 'vedZIt@bl K6%,OA% 4 +vegetables 'vedZIt@blz Kj% 4 +vegetarian ,vedZI'te@rI@n K6% 5 +vegetarians ,vedZI'te@rI@nz Kj% 5 +vegetate 'vedZIteIt I2% 32A +vegetated 'vedZIteItId Ic%,Id% 42A +vegetates 'vedZIteIts Ia% 32A +vegetating 'vedZIteItIN Ib% 42A +vegetation ,vedZI'teISn L@% 4 +vehemence 'vi@m@ns L@% 3 +vehement 'vi@m@nt OA% 3 +vehemently 'vi@m@ntlI Pu% 4 +vehicle 'viIkl K6% 3 +vehicles 'viIklz Kj% 3 +vehicular vI'IkjUl@R OA% 4 +veil veIl H0%,K6% 16A +veiled veIld Hc%,Hd% 16A +veiling 'veIlIN Hb%,L@% 26A +veils veIlz Ha%,Kj% 16A +vein veIn K6% 1 +veined veInd OA% 1 +veins veInz Kj% 1 +veld velt L@$ 1 +vellum 'vel@m L@% 2 +velocipede v@'l0sIpid K6$ 4 +velocipedes v@'l0sIpidz Kj$ 4 +velocities v@'l0sItIz Mj% 4 +velocity v@'l0sItI M8% 4 +velour v@'lU@R L@% 2 +velvet 'velvIt L@% 2 +velveteen ,velvI'tin L@% 3 +velvety 'velvItI OA% 3 +venal 'vin@l OA% 2 +venality vI'n&lItI L@$ 4 +venally 'vin@lI Pu% 3 +vend vend H0$ 16A +vended 'vendId Hc$,Hd$ 26A +vendee ven'di K6$ 2 +vendees ven'diz Kj$ 2 +vender 'vend@R K6$ 2 +venders 'vend@z Kj$ 2 +vendetta ven'det@ K6% 3 +vendettas ven'det@z Kj% 3 +vending 'vendIN Hb% 26A +vendor 'vend@R K6% 2 +vendors 'vend@z Kj% 2 +vends vendz Ha$ 16A +veneer v@'nI@R H0%,M6% 26A +veneered v@'nI@d Hc%,Hd% 26A +veneering v@'nI@rIN Hb% 36A +veneers v@'nI@z Ha%,Mj% 26A +venerable 'ven@r@bl OA% 4 +venerate 'ven@reIt H2% 36A +venerated 'ven@reItId Hc%,Hd% 46A +venerates 'ven@reIts Ha% 36A +venerating 'ven@reItIN Hb% 46A +veneration ,ven@'reISn M6% 4 +venerations ,ven@'reISnz Mj$ 4 +venereal v@'nI@rI@l OA% 4 +vengeance 'vendZ@ns L@% 2 +vengeful 'vendZf@l OA% 2 +venial 'vinI@l OA% 3 +venison 'venIsn L@% 3 +venom 'ven@m L@% 2 +venomed 'ven@md OA% 2 +venomous 'ven@m@s OA% 3 +venomously 'ven@m@slI Pu% 4 +venous 'vin@s OA$ 2 +vent vent H0%,K6% 16A,14 +vent-hole 'vent-h@Ul K6% 2 +vent-holes 'vent-h@Ulz Kj% 2 +vented 'ventId Hc%,Hd% 26A,14 +ventilate 'ventIleIt H2% 36A +ventilated 'ventIleItId Hc%,Hd% 46A +ventilates 'ventIleIts Ha% 36A +ventilating 'ventIleItIN Hb% 46A +ventilation ,ventI'leISn L@% 4 +ventilator 'ventIleIt@R K6% 4 +ventilators 'ventIleIt@z Kj% 4 +venting 'ventIN Hb% 26A,14 +ventral 'ventr@l OA$ 2 +ventricle 'ventrIkl K6% 3 +ventricles 'ventrIklz Kj% 3 +ventricular ven'trIkjUl@ OA$ 4 +ventriloquism ven'trIl@kwIz@m L@% 5 +ventriloquist vent'rIl@kwIst K6% 4 +ventriloquists vent'rIl@kwIsts Kj% 4 +vents vents Ha%,Kj% 16A,14 +venture 'ventS@R J2%,M6% 23A,6A,7A,15A,16A +ventured 'ventS@d Jc%,Jd% 23A,6A,7A,15A,16A +ventures 'ventS@z Ja%,Mj% 23A,6A,7A,15A,16A +venturesome 'ventS@s@m OA% 3 +venturing 'ventS@rIN Jb% 33A,6A,7A,15A,16A +venturous 'ventS@r@s OA% 3 +venue 'venju K6% 2 +venues 'venjuz Kj% 2 +veracious v@'reIS@s OA$ 3 +veraciously v@'reIS@slI Pu$ 4 +veracity v@'r&sItI L@% 4 +veranda v@'r&nd@ K6% 3 +verandah v@'r&nd@ K6% 3 +verandahs v@'r&nd@z Kj% 3 +verandas v@'r&nd@z Kj% 3 +verb v3b K6% 1 +verbal 'v3bl OA% 2 +verbalize 'v3b@laIz H2% 3 +verbalized 'v3b@laIzd Hc%,Hd% 3 +verbalizes 'v3b@laIzIz Ha% 4 +verbalizing 'v3b@laIzIN Hb% 4 +verbally 'v3b@lI Pu% 3 +verbatim v3'beItIm OA%,Pu% 3 +verbena v3'bin@ K6$ 3 +verbenas v3'bin@z Kj$ 3 +verbiage 'v3bIIdZ L@% 3 +verbose v3'b@Us OA% 2 +verbosely v3'b@UslI Pu% 3 +verboseness v3'b@Usn@s L@$ 3 +verbosity v3'b0sItI L@% 4 +verbs v3bz Kj% 1 +verdancy 'v3dnsI L@$ 3 +verdant 'v3dnt OA% 2 +verdict 'v3dIkt K6% 2 +verdicts 'v3dIkts Kj% 2 +verdigris 'v3dIgrIs L@% 3 +verdure 'v3dj@R L@% 2 +verge v3dZ I2%,K6% 13A +verged v3dZd Ic%,Id% 13A +verger 'v3dZ@R K6% 2 +vergers 'v3dZ@z Kj% 2 +verges 'v3dZIz Ia%,Kj% 23A +verging 'v3dZIN Ib% 23A +verifiable 'verIfaI@bl OA% 5 +verification ,verIfI'keISn M6% 5 +verifications ,verIfI'keISnz Mj% 5 +verified 'verIfaId Hc%,Hd% 36A +verifies 'verIfaIz Ha% 36A +verify 'verIfaI H3% 36A +verifying 'verIfaIIN Hb% 46A +verily 'ver@lI Pu% 3 +verisimilitude ,verIsI'mIlItjud M6% 6 +verisimilitudes ,verIsI'mIlItjudz Mj% 6 +veritable 'verIt@bl OA% 4 +verities 'verItIz Mj$ 3 +verity 'verItI M8$ 3 +vermicelli ,v3mI'selI L@$ 4 +vermiform 'v3mIfOm OA$ 3 +vermilion v@'mIlI@n M6%,OA% 4 +vermilions v@'mIlI@nz Mj$ 4 +vermin 'v3mIn L@% 2 +verminous 'v3mIn@s OA$ 3 +vermouth 'v3m@T M6% 2 +vermouths 'v3m@Ts Mj$ 2 +vernacular v@'n&kjUl@R K6%,OA% 4 +vernaculars v@'n&kjUl@z Kj$ 4 +vernal 'v3n@l OA% 2 +veronica v@'r0nIk@ K6$ 4 +veronicas v@'r0nIk@z Kj$ 4 +verruca v@'ruk@ K6$ 3 +verrucas v@'ruk@z Kj$ 3 +versatile 'v3s@taIl OA% 3 +versatility ,v3s@'tIlItI L@% 5 +verse v3s M6% 1 +versed v3st OA% 1 +verses 'v3sIz Mj% 2 +versification ,v3sIfI'keISn L@$ 5 +versified 'v3sIfaId Jc$,Jd$ 32A,6A +versifier 'v3sIfaI@R K6$ 4 +versifiers 'v3sIfaI@z Kj$ 4 +versifies 'v3sIfaIz Ja$ 32A,6A +versify 'v3sIfaI J3$ 32A,6A +versifying 'v3sIfaIIN Jb$ 42A,6A +version 'v3Sn K6% 2 +versions 'v3Snz Kj% 2 +verso 'v3s@U K6$ 2 +versos 'v3s@Uz Kj$ 2 +versus 'v3s@s T-% 2 +vertebra 'v3tIbr@ Ki% 3 +vertebrae 'v3tIbri Kj% 3 +vertebrate 'v3tIbreIt K6%,OA% 3 +vertebrates 'v3tIbreIts Kj% 3 +vertex 'v3teks Ki% 2 +vertical 'v3tIkl K6$,OA% 3 +vertically 'v3tIklI Pu% 3 +verticals 'v3tIklz Kj$ 3 +vertices 'v3tIsiz Kj$ 3 +vertiginous v3'tIdZIn@s OA$ 4 +vertigo 'v3tIg@U L@% 3 +verve v3v L@% 1 +very 'verI Oq%,Pu* 2 +vesicle 'vesIkl K6$ 3 +vesicles 'vesIklz Kj$ 3 +vesicular v@'sIkjUl@R OA$ 4 +vespers 'vesp@z Kj$ 2 +vessel 'ves@l K6% 2 +vessels 'ves@lz Kj% 2 +vest vest J0$,K6% 13A,6A,14 +vestal 'vest@l K6$,OA$ 2 +vestals 'vest@lz Kj$ 2 +vested 'vestId Jc$,Jd% 23A,6A,14 +vestibule 'vestIbjul K6% 3 +vestibules 'vestIbjulz Kj% 3 +vestige 'vestIdZ M6% 2 +vestiges 'vestIdZIz Mj% 3 +vestigial ve'stIdZI@l OA% 3 +vesting 'vestIN Jb$ 23A,6A,14 +vestment 'vestm@nt K6% 2 +vestments 'vestm@nts Kj% 2 +vestries 'vestrIz Kj% 2 +vestry 'vestrI K8% 2 +vestryman 'vestrIm@n Ki% 3 +vestrymen 'vestrIm@n Kj% 3 +vests vests Ja$,Kj% 13A,6A,14 +vesture 'vestS@R H2$,K6$ 2 +vestured 'vestS@d Hc$,Hd$ 2 +vestures 'vestS@z Ha$,Kj$ 2 +vesturing 'vestS@rIN Hb$ 3 +vet vet H4%,K6% 16A +vetch vetS M7$ 1 +vetches 'vetSIz Mj$ 2 +veteran 'vet@r@n K6% 3 +veterans 'vet@r@nz Kj% 3 +veterinary 'vetrInrI OA% 3 +veto 'vit@U H0%,K7% 26A +vetoed 'vit@Ud Hc%,Hd% 26A +vetoes 'vit@Uz Kj% 2 +vetoing 'vit@UIN Hb% 36A +vetos 'vit@Uz Ha% 26A +vets vets Ha%,Kj% 16A +vetted 'vetId Hc%,Hd% 26A +vetting 'vetIN Hb% 26A +vex veks H1% 16A +vexation vek'seISn M6% 3 +vexations vek'seISnz Mj% 3 +vexatious vek'seIS@s OA% 3 +vexed vekst Hc%,Hd% 16A +vexes 'veksIz Ha% 26A +vexing 'veksIN Hb% 26A +via 'vaI@ T-% 2 +via media ,vaI@ 'midI@ Ki$ 5 +viability ,vaI@'bIlItI L@% 5 +viable 'vaI@bl OA% 3 +viaduct 'vaI@dVkt K6% 3 +viaducts 'vaI@dVkts Kj% 3 +vial 'vaI@l K6$ 2 +vials 'vaI@lz Kj$ 2 +vibes vaIbz Kj% 1 +vibrant 'vaIbr@nt OA% 2 +vibraphone 'vaIbr@f@Un K6% 3 +vibraphones 'vaIbr@f@Unz Kj% 3 +vibrate vaI'breIt J2% 22A,2C,6A +vibrated vaI'breItId Jc%,Jd% 32A,2C,6A +vibrates vaI'breIts Ja% 22A,2C,6A +vibrating vaI'breItIN Jb% 32A,2C,6A +vibration vaI'breISn M6% 3 +vibrations vaI'breISnz Mj% 3 +vibrato vI'brAt@U M6% 3 +vibrator vaI'breIt@R K6% 3 +vibrators vaI'breIt@z Kj% 3 +vibratos vI'brAt@Uz Mj$ 3 +vicar 'vIk@R K6% 2 +vicarage 'vIk@rIdZ K6% 3 +vicarages 'vIk@rIdZIz Kj% 4 +vicarious vI'ke@rI@s OA% 4 +vicariously vI'ke@rI@slI Pu% 5 +vicars 'vIk@z Kj% 2 +vice vaIs M6%,T-% 1 +vice versa ,vaIsI 'v3s@ Pu% 4 +vice- vaIs- U-% 1 +viceregal vaIs'rig@l OA$ 3 +vicereine vaIs'reIn K6$ 2 +vicereines vaIs'reInz Kj$ 2 +viceroy 'vaIsroI K6% 2 +viceroys 'vaIsroIz Kj% 2 +vices 'vaIsIz Mj% 2 +vicinities vI'sInItIz Mj$ 4 +vicinity vI'sInItI M8% 4 +vicious 'vIS@s OA% 2 +viciously 'vIS@slI Pu% 3 +viciousness 'vIS@sn@s L@% 3 +vicissitude vI'sIsItjud K6% 4 +vicissitudes vI'sIsItjudz Kj% 4 +victim 'vIktIm K6% 2 +victimization ,vIktImaI'zeISn M6% 5 +victimizations ,vIktImaI'zeISnz Mj$ 5 +victimize 'vIktImaIz H2% 36A +victimized 'vIktImaIzd Hc%,Hd% 36A +victimizes 'vIktImaIzIz Ha% 46A +victimizing 'vIktImaIzIN Hb% 46A +victims 'vIktImz Kj% 2 +victor 'vIkt@R K6% 2 +victoria vIk'tOrI@ K6$ 4 +victorias vIk'tOrI@z Kj$ 4 +victories 'vIkt@rIz Mj% 3 +victorious vIk'tOrI@s OA% 4 +victoriously vIk'tOrI@slI Pu% 5 +victors 'vIkt@z Kj% 2 +victory 'vIkt@rI M8% 3 +victual 'vItl J4$,K6$ 22A,6A +victualled 'vItld Jc$,Jd$ 22A,6A +victualler 'vItl@R K6$ 2 +victuallers 'vItl@z Kj$ 2 +victualling 'vIt@lIN Jb$ 32A,6A +victuals 'vItlz Ja$,Kj% 22A,6A +vicu~na vI'kjun@ K6$ 3 +vicu~nas vI'kjun@z Kj$ 3 +vide 'vaIdI Z-$ 2 +videlicet vI'dilIset Pu$ 4 +video 'vIdI@U K6% 3 +videos 'vIdI@Uz Kj% 3 +videotape 'vIdI@UteIp H2%,L@% 46A +videotaped 'vIdI@UteIpt Hc%,Hd% 46A +videotapes 'vIdI@UteIps Ha% 46A +videotaping 'vIdI@UteIpIN Hb% 56A +vie vaI I5% 13A +vied vaId Ic%,Id% 13A +vies vaIz Ia% 13A +view vju H0%,M6% 16A +viewed vjud Hc%,Hd% 16A +viewer 'vju@R K6% 2 +viewers 'vju@z Kj% 2 +viewfinder 'vjufaInd@R K6% 3 +viewfinders 'vjufaInd@z Kj% 3 +viewing 'vjuIN Hb% 26A +viewless 'vjul@s OA$ 2 +viewpoint 'vjupoInt K6% 2 +viewpoints 'vjupoInts Kj% 2 +views vjuz Ha%,Mj% 16A +vigil 'vIdZIl M6% 2 +vigilance 'vIdZIl@ns L@% 3 +vigilant 'vIdZIl@nt OA% 3 +vigilante ,vIdZI'l&ntI K6% 4 +vigilantes ,vIdZI'l&ntIz Kj% 4 +vigilantly 'vIdZIl@ntlI Pu% 4 +vigils 'vIdZIlz Mj% 2 +vignette vi'njet K6% 2 +vignettes vi'njets Kj% 2 +vigorous 'vIg@r@s OA% 3 +vigorously 'vIg@r@slI Pu% 4 +vigour 'vIg@R L@% 2 +vile vaIl OB% 1 +vilely 'vaIl+lI Pu% 2 +vileness 'vaIln@s L@% 2 +viler 'vaIl@R Or% 2 +vilest 'vaIlIst Os% 2 +vilification ,vIlIfI'keISn M6% 5 +vilifications ,vIlIfI'keISnz Mj$ 5 +vilified 'vIlIfaId Hc%,Hd% 36A +vilifies 'vIlIfaIz Ha% 36A +vilify 'vIlIfaI H3% 36A +vilifying 'vIlIfaIIN Hb% 46A +villa 'vIl@ K6% 2 +village 'vIlIdZ K6% 2 +villager 'vIlIdZ@R K6% 3 +villagers 'vIlIdZ@z Kj% 3 +villages 'vIlIdZIz Kj% 3 +villain 'vIl@n K6% 2 +villainess 'vIl@nes K6% 3 +villainesses 'vIl@nesIz Kj$ 4 +villainies 'vIl@nIz Mj% 3 +villainous 'vIl@n@s OA% 3 +villains 'vIl@nz Kj% 2 +villainy 'vIl@nI M8% 3 +villas 'vIl@z Kj% 2 +villein 'vIleIn K6$ 2 +villeinage 'vIlInIdZ L@$ 3 +villeins 'vIleInz Kj$ 2 +vim vIm L@% 1 +vinaigrette ,vInI'gret L@% 3 +vindicate 'vIndIkeIt H2% 36A +vindicated 'vIndIkeItId Hc%,Hd% 46A +vindicates 'vIndIkeIts Ha% 36A +vindicating 'vIndIkeItIN Hb% 46A +vindication ,vIndI'keISn M6% 4 +vindications ,vIndI'keISnz Mj% 4 +vindictive vIn'dIktIv OA% 3 +vindictively vIn'dIktIvlI Pu% 4 +vindictiveness vIn'dIktIvn@s L@% 4 +vine vaIn K6% 1 +vinegar 'vInIg@R M6% 3 +vinegars 'vInIg@z Mj$ 3 +vinegary 'vInIg@rI OA% 4 +vineries 'vaIn@rIz Kj$ 3 +vinery 'vaIn@rI K8$ 3 +vines vaInz Kj% 1 +vineyard 'vInj@d K6% 2 +vineyards 'vInj@dz Kj% 2 +vino 'vin@U M7$ 2 +vinoes 'vin@Uz Mj$ 2 +vinous 'vaIn@s OA$ 2 +vintage 'vIntIdZ M6% 2 +vintages 'vIntIdZIz Mj% 3 +vintner 'vIntn@R K6% 2 +vintners 'vIntn@z Kj% 2 +vinyl 'vaInIl M6% 2 +vinyls 'vaInIlz Mj$ 2 +viol 'vaI@l K6$ 2 +viola 'vaI@l@ K6$ 3 +viola vI'@Ul@ K6% 3 +violas 'vaI@l@z Kj$ 3 +violas vI'@Ul@z Kj% 3 +violate 'vaI@leIt H2% 36A +violated 'vaI@leItId Hc%,Hd% 46A +violates 'vaI@leIts Ha% 36A +violating 'vaI@leItIN Hb% 46A +violation ,vaI@'leISn M6% 4 +violations ,vaI@'leISnz Mj% 4 +violence 'vaI@l@ns L@% 3 +violent 'vaI@l@nt OA% 3 +violently 'vaI@l@ntlI Pu% 4 +violet 'vaI@l@t M6% 3 +violets 'vaI@l@ts Mj% 3 +violin ,vaI@'lIn K6% 3 +violinist ,vaI@'lInIst K6% 4 +violinists ,vaI@'lInIsts Kj% 4 +violins ,vaI@'lInz Kj% 3 +viols 'vaI@lz Kj$ 2 +viper 'vaIp@R K6% 2 +vipers 'vaIp@z Kj% 2 +virago vI'rAg@U K6$ 3 +viragoes vI'rAg@Uz Kj$ 3 +viragos vI'rAg@Uz Kj$ 3 +virgin 'v3dZIn K6%,OA% 2 +virginal 'v3dZInl K6%,OA% 3 +virginals 'v3dZInlz Kj% 3 +virginity v@'dZInItI L@% 4 +virgins 'v3dZInz Kj% 2 +virgule 'v3gjul K6$ 2 +virgules 'v3gjulz Kj$ 2 +virile 'vIraIl OA% 2 +virility vI'rIlItI L@% 4 +virology vaI@'r0l@dZI L@% 4 +virtu v3'tu L@$ 2 +virtual 'v3tSU@l OA% 3 +virtually 'v3tSU@lI Pu% 4 +virtue 'v3tSu M6% 2 +virtues 'v3tSuz Mj% 2 +virtuosi ,v3tSU'@Uzi Kj% 4 +virtuosity ,v3tSU'0sItI L@% 5 +virtuoso ,v3tSU'@Uz@U K6% 4 +virtuosos ,v3tSU'@Uz@Uz Kj% 4 +virtuous 'v3tSU@s OA% 3 +virtuously 'v3tSU@slI Pu% 4 +virulence 'vIrUl@ns L@% 3 +virulent 'vIrUl@nt OA% 3 +virulently 'vIrUl@ntlI Pu% 4 +virus 'vaI@r@s K7% 2 +viruses 'vaI@r@sIz Kj% 3 +vis-`a-vis ,viz-A-'vi Pu%,T-% 3 +visa 'viz@ H0$,K6% 26A +visaed 'viz@d Hc$,Hd$ 26A +visage 'vIzIdZ K6% 2 +visaged 'vIzIdZd Ot% 2 +visages 'vIzIdZIz Kj% 3 +visaing 'viz@rIN Hb$ 36A +visas 'viz@z Ha$,Kj% 26A +viscera 'vIs@r@ Kj$ 3 +visceral 'vIs@r@l OA% 3 +viscid 'vIsId OA$ 2 +viscosity vIs'k0sItI L@% 4 +viscount 'vaIkaUnt K6% 2 +viscountcies 'vaIkaUntsIz Kj$ 3 +viscountcy 'vaIkaUntsI K8$ 3 +viscountess 'vaIkaUntIs K7% 3 +viscountesses 'vaIkaUntIsIz Kj$ 4 +viscounts 'vaIkaUnts Kj% 2 +viscous 'vIsk@s OA% 2 +visibility ,vIz@'bIlItI L@% 5 +visible 'vIz@bl OA% 3 +visibly 'vIz@blI Pu% 3 +vision 'vIZn M6% 2 +visionaries 'vIZ@nrIz Kj% 3 +visionary 'vIZ@nrI K8%,OA% 3 +visions 'vIZnz Mj% 2 +visit 'vIzIt J0%,K6% 22C,3A,6A,14 +visitant 'vIzIt@nt K6$ 3 +visitants 'vIzIt@nts Kj$ 3 +visitation ,vIzI'teISn K6% 4 +visitations ,vIzI'teISnz Kj% 4 +visited 'vIzItId Jc%,Jd% 32C,3A,6A,14 +visiting 'vIzItIN Jb%,L@% 32C,3A,6A,14 +visitor 'vIzIt@R K6% 3 +visitors 'vIzIt@z Kj% 3 +visits 'vIzIts Ja%,Kj% 22C,3A,6A,14 +visor 'vaIz@R K6% 2 +visors 'vaIz@z Kj% 2 +vista 'vIst@ K6% 2 +vistas 'vIst@z Kj% 2 +visual 'vIZU@l OA% 3 +visualization ,vIZU@laI'zeISn M6% 6 +visualizations ,vIZU@laI'zeISnz Mj$ 6 +visualize 'vIZU@laIz H2% 46A +visualized 'vIZU@laIzd Hc%,Hd% 46A +visualizes 'vIZU@laIzIz Ha% 56A +visualizing 'vIZU@laIzIN Hb% 56A +visually 'vIZU@lI Pu% 4 +vital 'vaItl OA% 2 +vitalism 'vaIt@lIz@m L@$ 4 +vitalist 'vaIt@lIst K6$ 3 +vitalists 'vaIt@lIsts Kj$ 3 +vitality vaI't&lItI L@% 4 +vitalize 'vaIt@laIz H2% 36A +vitalized 'vaIt@laIzd Hc%,Hd% 36A +vitalizes 'vaIt@laIzIz Ha% 46A +vitalizing 'vaIt@laIzIN Hb% 46A +vitally 'vaIt@lI Pu% 3 +vitals 'vaItlz Kj$ 2 +vitamin 'vIt@mIn K6% 3 +vitamins 'vIt@mInz Kj% 3 +vitiate 'vISIeIt H2$ 36A +vitiated 'vISIeItId Hc$,Hd% 46A +vitiates 'vISIeIts Ha$ 36A +vitiating 'vISIeItIN Hb$ 46A +vitreous 'vItrI@s OA% 3 +vitrified 'vItrIfaId Jc$,Jd$ 32A,6A +vitrifies 'vItrIfaIz Ja$ 32A,6A +vitrify 'vItrIfaI J3$ 32A,6A +vitrifying 'vItrIfaIIN Jb$ 42A,6A +vitriol 'vItrI@l L@% 3 +vitriolic ,vItrI'0lIk OA% 4 +vituperate vI'tjup@reIt H2$ 46A +vituperated vI'tjup@reItId Hc$,Hd$ 56A +vituperates vI'tjup@reIts Ha$ 46A +vituperating vI'tjup@reItIN Hb$ 56A +vituperation vI,tjup@'reISn L@$ 5 +vituperative vI'tjup@r@tIv OA% 5 +viva 'vaIv@ K6$ 2 +viva voce ,vaIv@ 'v@UsI K6$,OA$,Pu$ 4 +viva voces ,vaIv@ 'v@UsIz Kj$ 4 +vivace vI'vAtSeI Pu$ 3 +vivacious vI'veIS@s OA% 3 +vivaciously vI'veIS@slI Pu% 4 +vivacity vI'v&sItI L@% 4 +vivas 'vaIv@z Kj$ 2 +vivid 'vIvId OA% 2 +vividly 'vIvIdlI Pu% 3 +vividness 'vIvIdn@s L@% 3 +viviparous vI'vIp@r@s OA$ 4 +vivisect ,vIvI'sekt H0$ 36A +vivisected ,vIvI'sektId Hc$,Hd$ 46A +vivisecting ,vIvI'sektIN Hb$ 46A +vivisection ,vIvI'sekSn M6% 4 +vivisectionist ,vIvI'sekS@nIst K6$ 5 +vivisectionists ,vIvI'sekS@nIsts Kj$ 5 +vivisections ,vIvI'sekSnz Mj$ 4 +vivisects ,vIvI'sekts Ha$ 36A +vixen 'vIksn K6% 2 +vixenish 'vIks@nIS OA$ 3 +vixens 'vIksnz Kj% 2 +viz vIz Y~% 1 +vizier vI'zI@R K6$ 3 +viziers vI'zI@z Kj$ 3 +vocabularies v@'k&bjUl@rIz Mj% 5 +vocabulary v@'k&bjUl@rI M8% 5 +vocal 'v@Ukl OA% 2 +vocalist 'v@Uk@lIst K6% 3 +vocalists 'v@Uk@lIsts Kj% 3 +vocalize 'v@Uk@laIz H2% 3 +vocalized 'v@Uk@laIzd Hc%,Hd% 3 +vocalizes 'v@Uk@laIzIz Ha% 4 +vocalizing 'v@Uk@laIzIN Hb% 4 +vocally 'v@Uk@lI Pu% 3 +vocation v@U'keISn M6% 3 +vocational v@U'keISn@l OA% 4 +vocations v@U'keISnz Mj% 3 +vocative 'v0k@tIv K6$,OA$ 3 +vocatives 'v0k@tIvz Kj$ 3 +vociferate v@'sIf@reIt J2$ 42A,6A +vociferated v@'sIf@reItId Jc$,Jd$ 52A,6A +vociferates v@'sIf@reIts Ja$ 42A,6A +vociferating v@'sIf@reItIN Jb$ 52A,6A +vociferation v@,sIf@'reISn L@$ 5 +vociferous v@'sIf@r@s OA% 4 +vodka 'v0dk@ M6% 2 +vodkas 'v0dk@z Mj% 2 +vogue v@Ug K6% 1 +vogues v@Ugz Kj$ 1 +voice voIs H2%,M6* 16A +voiced voIst Hc%,Hd%,Ot% 16A +voiceless 'voIsl@s OA% 2 +voices 'voIsIz Ha%,Mj% 26A +voicing 'voIsIN Hb% 26A +void voId H0$,K6%,OA% 16A +voided 'voIdId Hc$,Hd$ 26A +voiding 'voIdIN Hb$ 26A +voids voIdz Ha$,Kj$ 16A +voile voIl L@$ 1 +vol v0l Y>% 1 +volatile 'v0l@taIl OA% 3 +volatilities ,v0l@'tIlItIz Mj$ 5 +volatility ,v0l@'tIlItI M8% 5 +volcanic v0l'k&nIk OA% 3 +volcano v0l'keIn@U K6% 3 +volcanoes v0l'keIn@Uz Kj% 3 +volcanos v0l'keIn@Uz Kj% 3 +vole v@Ul K6% 1 +voles v@Ulz Kj% 1 +volition v@'lISn L@% 3 +volitional v@'lISn@l OA$ 4 +volley 'v0lI J0%,K6% 22A,2C,6A +volleyball 'v0lIbOl M6% 3 +volleyballs 'v0lIbOlz Mj$ 3 +volleyed 'v0lId Jc%,Jd% 22A,2C,6A +volleying 'v0lIIN Jb% 32A,2C,6A +volleys 'v0lIz Ja%,Kj% 22A,2C,6A +vols v0lz Y)% 1 +volt v@Ult K6% 1 +voltage 'v@UltIdZ M6% 2 +voltages 'v@UltIdZIz Mj% 3 +volte-face ,v0lt-'fAs Ki$ 2 +volts v@Ults Kj% 1 +volubility ,v0ljU'bIlItI L@% 5 +voluble 'v0ljUbl OA% 3 +volubly 'v0ljUblI Pu% 3 +volume 'v0ljum M6% 2 +volumes 'v0ljumz Mj% 2 +voluminous v@'ljumIn@s OA% 4 +voluntaries 'v0l@ntrIz Kj$ 3 +voluntarily 'v0l@ntr@lI Pu% 4 +voluntary 'v0l@ntrI K8$,OA% 3 +volunteer ,v0l@n'tI@R J0%,K6% 32A,3A,6A,7A +volunteered ,v0l@n'tI@d Jc%,Jd% 32A,3A,6A,7A +volunteering ,v0l@n'tI@rIN Jb% 42A,3A,6A,7A +volunteers ,v0l@n'tI@z Ja%,Kj% 32A,3A,6A,7A +voluptuaries v@'lVptSU@rIz Kj$ 5 +voluptuary v@'lVptSU@rI K8$ 5 +voluptuous v@'lVptSU@s OA% 4 +voluptuously v@'lVptSU@slI Pu% 5 +voluptuousness v@'lVptSU@sn@s L@% 5 +volute v@'ljut K6$ 2 +voluted v@'ljutId OA$ 3 +volutes v@'ljuts Kj$ 2 +vomit 'v0mIt J0%,L@% 22A,6A,15B +vomited 'v0mItId Jc%,Jd% 32A,6A,15B +vomiting 'v0mItIN Jb% 32A,6A,15B +vomits 'v0mIts Ja% 22A,6A,15B +voodoo 'vudu L@% 2 +voodooism 'vuduIz@m L@$ 4 +voracious v@'reIS@s OA% 3 +voraciously v@'reIS@slI Pu% 4 +voracity v@'r&sItI L@$ 4 +vortex 'vOteks K7% 2 +vortexes 'vOteksIz Kj% 3 +vortices 'vOtIsiz Kj% 3 +votaries 'v@Ut@rIz Kj$ 3 +votary 'v@Ut@rI K8$ 3 +vote v@Ut J2%,K6% 13A,6A,9,12B,13B,15B,25 +voted 'v@UtId Jc%,Jd% 23A,6A,9,12B,13B,15B,25 +voteless 'v@Utl@s OA$ 2 +voter 'v@Ut@R K6% 2 +voters 'v@Ut@z Kj% 2 +votes v@Uts Ja%,Kj% 13A,6A,9,12B,13B,15B,25 +voting 'v@UtIN Jb% 23A,6A,9,12B,13B,15B,25 +votive 'v@UtIv OA$ 2 +vouch vaUtS I1% 1 +vouched vaUtSt Ic%,Id% 1 +voucher 'vaUtS@R K6% 2 +vouchers 'vaUtS@z Kj% 2 +vouches 'vaUtSIz Ia% 2 +vouching 'vaUtSIN Ib% 2 +vouchsafe vaUtS'seIf H2% 26A,7A,12C +vouchsafed vaUtS'seIft Hc%,Hd% 26A,7A,12C +vouchsafes vaUtS'seIfs Ha% 26A,7A,12C +vouchsafing vaUtS'seIfIN Hb% 36A,7A,12C +vow vaU H0%,K6% 16A,7A,9 +vowed vaUd Hc%,Hd% 16A,7A,9 +vowel 'vaU@l K6% 2 +vowels 'vaU@lz Kj% 2 +vowing 'vaUIN Hb% 26A,7A,9 +vows vaUz Ha%,Kj% 16A,7A,9 +vox v0ks Ki$ 1 +vox populi ,v0ks 'p0pjUlaI Ki$ 4 +voyage 'voIIdZ I2%,K6% 22A,2C +voyaged 'voIIdZd Ic%,Id% 22A,2C +voyager 'voI@dZ@R K6% 3 +voyagers 'voI@dZ@z Kj% 3 +voyages 'voIIdZIz Ia%,Kj% 32A,2C +voyaging 'voIIdZIN Ib% 32A,2C +voyeur vwA'j3R K6% 2 +voyeurism vwA'j3rIzm L@% 4 +voyeuristic ,vwAj@'rIstIk OA% 4 +voyeuristically ,vwAj@'rIstIklI Pu% 5 +voyeurs vwA'j3z Kj% 2 +vs 'v3s@s Y~% 2 +vulcanite 'vVlk@naIt L@$ 3 +vulcanization ,vVlk@naI'zeISn M6$ 5 +vulcanizations ,vVlk@naI'zeISnz Mj$ 5 +vulcanize 'vVlk@naIz H2$ 36A +vulcanized 'vVlk@naIzd Hc$,Hd$ 36A +vulcanizes 'vVlk@naIzIz Ha$ 46A +vulcanizing 'vVlk@naIzIN Hb$ 46A +vulgar 'vVlg@R OA% 2 +vulgarian vVl'ge@rI@n K6$ 4 +vulgarians vVl'ge@rI@nz Kj$ 4 +vulgarism 'vVlg@rIz@m M6$ 4 +vulgarisms 'vVlg@rIz@mz Mj$ 4 +vulgarities vVl'g&rItIz Mj% 4 +vulgarity vVl'g&rItI M8% 4 +vulgarization ,vVlg@raI'zeISn L@% 5 +vulgarize 'vVlg@raIz H2% 36A +vulgarized 'vVlg@raIzd Hc%,Hd% 36A +vulgarizes 'vVlg@raIzIz Ha% 46A +vulgarizing 'vVlg@raIzIN Hb% 46A +vulgarly 'vVlg@lI Pu% 3 +vulnerabilities ,vVln@r@'bIlItIz Mj% 6 +vulnerability ,vVln@r@'bIlItI M8% 6 +vulnerable 'vVln@r@bl OA% 4 +vulpine 'vVlpaIn OA$ 2 +vulture 'vVltS@R K6% 2 +vultures 'vVltS@z Kj% 2 +vulva 'vVlv@ K6$ 2 +vulvas 'vVlv@z Kj$ 2 +vying 'vaIIN Ib% 23A +w 'dVblju Ki$ 3 +w's 'dVbljuz Kj$ 3 +wad w0d H4$,K6% 1 +wadded 'w0dId Hc$,Hd$ 2 +wadding 'w0dIN Hb$,L@% 2 +waddle 'w0dl I2%,Ki% 22A,2C +waddled 'w0dld Ic%,Id% 22A,2C +waddles 'w0dlz Ia% 22A,2C +waddling 'w0dlIN Ib% 22A,2C +wade weId J2% 12A,2C,6A +waded 'weIdId Jc%,Jd% 22A,2C,6A +wader 'weId@R K6% 2 +waders 'weId@z Kj% 2 +wades weIdz Ja% 12A,2C,6A +wadi 'w0dI K6$ 2 +wading 'weIdIN Jb% 22A,2C,6A +wadis 'w0dIz Kj$ 2 +wads w0dz Ha$,Kj% 1 +wafer 'weIf@R K6% 2 +wafers 'weIf@z Kj% 2 +waffle 'w0fl I2%,M6% 22A,2C +waffled 'w0fld Ic%,Id% 22A,2C +waffles 'w0flz Ia%,Mj% 22A,2C +waffling 'w0flIN Ib% 22A,2C +waft w0ft H0%,K6% 16A +wafted 'w0ftId Hc%,Hd% 26A +wafting 'w0ftIN Hb% 26A +wafts w0fts Ha%,Kj% 16A +wag w&g J4%,K6% 12A,2C,6A +wage weIdZ H2%,K6% 16A +wage-claim 'weIdZ-kleIm K6% 2 +wage-claims 'weIdZ-kleImz Kj% 2 +wage-earner 'weIdZ-3n@R K6% 3 +wage-earners 'weIdZ-3n@z Kj% 3 +wage-freeze 'weIdZ-friz K6% 2 +wage-freezes 'weIdZ-frizIz Kj% 3 +waged weIdZd Hc%,Hd% 16A +wager 'weIdZ@R J0%,K6% 22A,6A,11,12C,14 +wagered 'weIdZ@d Jc%,Jd% 22A,6A,11,12C,14 +wagering 'weIdZ@rIN Jb% 32A,6A,11,12C,14 +wagers 'weIdZ@z Ja%,Kj% 22A,6A,11,12C,14 +wages 'weIdZIz Ha%,Kj% 26A +wagged w&gd Jc%,Jd% 12A,2C,6A +waggeries 'w&g@rIz Mj$ 3 +waggery 'w&g@rI M8$ 3 +wagging 'w&gIN Jb% 22A,2C,6A +waggish 'w&gIS OA$ 2 +waggishly 'w&gISlI Pu$ 3 +waggishness 'w&gISn@s L@$ 3 +waggle 'w&gl J2% 2 +waggled 'w&gld Jc%,Jd% 2 +waggles 'w&glz Ja% 2 +waggling 'w&glIN Jb% 2 +waggon 'w&g@n K6% 2 +waggoner 'w&g@n@R K6% 3 +waggoners 'w&g@n@z Kj% 3 +waggons 'w&g@nz Kj% 2 +waging 'weIdZIN Hb% 26A +wagon-lit ,v&g0n-'li Ki$ 3 +wagons-lit ,v&g0n-'li Kj$ 3 +wags w&gz Ja%,Kj% 12A,2C,6A +wagtail 'w>eIl K6% 2 +wagtails 'w>eIlz Kj% 2 +waif weIf K6% 1 +waifs weIfs Kj% 1 +wail weIl J0%,K6% 12A,2B,2C,6A +wailed weIld Jc%,Jd% 12A,2B,2C,6A +wailing 'weIlIN Jb% 22A,2B,2C,6A +wails weIlz Ja%,Kj% 12A,2B,2C,6A +wain weIn K6$ 1 +wains weInz Kj$ 1 +wainscot 'weInsk@t K6% 2 +wainscoted 'weInsk@tId OA$ 3 +wainscots 'weInsk@ts Kj$ 2 +waist weIst K6% 1 +waist-deep weIst-'dip OA%,Pu% 2 +waist-high weIst-'haI OA%,Pu% 2 +waistband 'weIstb&nd K6% 2 +waistbands 'weIstb&ndz Kj% 2 +waistcoat 'weIsk@Ut K6% 2 +waistcoats 'weIsk@Uts Kj% 2 +waistline 'weIstlaIn K6% 2 +waistlines 'weIstlaInz Kj% 2 +waists weIsts Kj% 1 +wait weIt J0%,M6% 12A,2B,2C,3A,4A,6A,14 +waited 'weItId Jc%,Jd% 22A,2B,2C,3A,4A,6A,14 +waiter 'weIt@R K6% 2 +waiters 'weIt@z Kj% 2 +waiting 'weItIN Jb% 22A,2B,2C,3A,4A,6A,14 +waiting-list 'weItIN-lIst K6% 3 +waiting-lists 'weItIN-lIsts Kj% 3 +waiting-room 'weItIN-rum K6% 3 +waiting-rooms 'weItIN-rumz Kj% 3 +waitress 'weItrIs K7% 2 +waitresses 'weItrIsIz Kj% 3 +waits weIts Ja%,Mj% 12A,2B,2C,3A,4A,6A,14 +waive weIv H2% 16A +waived weIvd Hc%,Hd% 16A +waiver 'weIv@R K6% 2 +waivers 'weIv@z Kj% 2 +waives weIvz Ha% 16A +waiving 'weIvIN Hb% 26A +wake weIk J2%,K6% 12A,2C,4B,6A,15B +waked weIkt Jc%,Jd% 12A,2C,4B,6A,15B +wakeful 'weIkf@l OA% 2 +wakefulness 'weIkf@ln@s L@% 3 +waken 'weIk@n J0% 22A,6A +wakened 'weIk@nd Jc%,Jd% 22A,6A +wakening 'weIk@nIN Jb% 32A,6A +wakens 'weIk@nz Ja% 22A,6A +wakes weIks Ja%,Kj% 12A,2C,4B,6A,15B +waking 'weIkIN Jb%,OA% 22A,2C,4B,6A,15B +wale weIl K6$ 1 +wales weIlz Kj$ 1 +walk wOk J0%,K6% 12A,2B,2C,6A,15A,15B +walkabout 'wOk@baUt K6% 3 +walkabouts 'wOk@baUts Kj$ 3 +walkaway 'wOk@weI K6$ 3 +walkaways 'wOk@weIz Kj$ 3 +walked wOkt Jc%,Jd% 12A,2B,2C,6A,15A,15B +walker 'wOk@R K6% 2 +walkers 'wOk@z Kj% 2 +walkie-talkie ,wOkI-'tOkI K6% 4 +walkie-talkies ,wOkI-'tOkIz Kj% 4 +walking 'wOkIN Jb%,L@% 22A,2B,2C,6A,15A,15B +walkout 'wOkaUt K6% 2 +walkouts 'wOkaUts Kj% 2 +walkover 'wOk@Uv@R K6% 3 +walkovers 'wOk@Uv@z Kj% 3 +walks wOks Ja%,Kj% 12A,2B,2C,6A,15A,15B +wall wOl H0%,K6% 115B +wall-eyed ,wOl-'aId OA$ 2 +wall-painting 'wOl-peIntIN K6% 3 +wall-paintings 'wOl-peIntINz Kj% 3 +wallabies 'w0l@bIz Kj% 3 +wallaby 'w0l@bI K8% 3 +wallah 'w0l@ K6$ 2 +wallahs 'w0l@z Kj$ 2 +walled wOld Hc%,Hd% 115B +wallet 'w0lIt K6% 2 +wallets 'w0lIts Kj% 2 +wallflower 'wOlflaU@R K6% 3 +wallflowers 'wOlflaU@z Kj% 3 +walling 'wOlIN Hb% 215B +wallop 'w0l@p H0%,K6% 2 +walloped 'w0l@pt Hc%,Hd% 2 +walloping 'w0l@pIN Hb%,OA% 3 +wallops 'w0l@ps Ha%,Kj% 2 +wallow 'w0l@U I0%,K6% 22A,2C +wallowed 'w0l@Ud Ic%,Id% 22A,2C +wallowing 'w0l@UIN Ib% 32A,2C +wallows 'w0l@Uz Ia%,Kj% 22A,2C +wallpaper 'wOlpeIp@R L@% 3 +walls wOlz Ha%,Kj% 115B +walnut 'wOlnVt M6% 2 +walnuts 'wOlnVts Mj% 2 +walrus 'wOlr@s K7% 2 +walruses 'wOlr@sIz Kj% 3 +waltz wOls J1%,K7% 12A,2C,15A +waltzed wOlst Jc%,Jd% 12A,2C,15A +waltzes 'wOlsIz Ja%,Kj% 22A,2C,15A +waltzing 'wOlsIN Jb% 22A,2C,15A +wampum 'w0mp@m L@$ 2 +wan w0n OE% 1 +wand w0nd K6% 1 +wander 'w0nd@R J0% 22A,2B,2C,6A +wandered 'w0nd@d Jc%,Jd% 22A,2B,2C,6A +wanderer 'w0nd@r@R K6% 3 +wanderers 'w0nd@r@z Kj% 3 +wandering 'w0nd@rIN Jb% 32A,2B,2C,6A +wanderings 'w0nd@rINz Kj% 3 +wanderlust 'w0nd@lVst L@% 3 +wanders 'w0nd@z Ja% 22A,2B,2C,6A +wands w0ndz Kj% 1 +wane weIn I2%,K6% 12A +waned weInd Ic%,Id% 12A +wanes weInz Ia%,Kj$ 12A +wangle 'w&Ngl H2%,K6% 26A +wangled 'w&Ngld Hc%,Hd% 26A +wangles 'w&Nglz Ha%,Kj% 26A +wangling 'w&NglIN Hb% 26A +waning 'weInIN Ib% 22A +wank w&Nk I0%,K6% 12A +wanked w&Nkt Ic%,Id% 12A +wanking 'w&NkIN Ib% 22A +wanks w&Nks Ia%,Kj% 12A +wanly 'w0nlI Pu% 2 +wanna 'w0n@ Gh$ 2 +wanner 'w0n@R Or$ 2 +wanness 'w0n+n@s L@$ 2 +wannest 'w0nIst Os$ 2 +want w0nt J0*,M6% 12A,3A,6A,6E,7A,17,19B,24A +want-ad 'w0nt-&d K6$ 2 +want-ads 'w0nt-&dz Kj$ 2 +wanted 'w0ntId Jc*,Jd* 22A,3A,6A,6E,7A,17,19B,24A +wanting 'w0ntIN Jb%,T-% 22A,3A,6A,6E,7A,17,19B,24A +wanton 'w0nt@n I0$,K6%,OA% 22A,2C +wantoned 'w0nt@nd Ic$,Id$ 22A,2C +wantoning 'w0nt@nIN Ib$ 32A,2C +wantonly 'w0nt@nlI Pu% 3 +wantonness 'w0nt@n+n@s L@% 3 +wantons 'w0nt@nz Ia$,Kj% 22A,2C +wants w0nts Ja%,Mj% 12A,3A,6A,6E,7A,17,19B,24A +war wOR I4%,M6* 1 +war-babies 'wO-beIbIz Kj% 3 +war-baby 'wO-beIbI K8% 3 +war-bride 'wO-braId K6% 2 +war-brides 'wO-braIdz Kj% 2 +war-cloud 'wO-klaUd K6% 2 +war-clouds 'wO-klaUdz Kj% 2 +war-cries 'wO-kraIz Kj% 2 +war-cry 'wO-kraI K8% 2 +war-dance 'wO-dAns K6% 2 +war-dances 'wO-dAnsIz Kj% 3 +war-god 'wO-g0d K6% 2 +war-gods 'wO-g0dz Kj% 2 +war-torn 'wO-tOn OA% 2 +war-widow 'wO-wId@U K6% 3 +war-widows 'wO-wId@Uz Kj% 3 +warble 'wObl J2%,K6% 22A,2C,6A +warbled 'wObld Jc%,Jd% 22A,2C,6A +warbler 'wObl@R K6% 2 +warblers 'wObl@z Kj% 2 +warbles 'wOblz Ja%,Kj% 22A,2C,6A +warbling 'wOblIN Jb% 22A,2C,6A +ward wOd H0%,M6% 115B +warded 'wOdId Hc%,Hd% 215B +warden 'wOdn K6% 2 +wardens 'wOdnz Kj% 2 +warder 'wOd@R K6% 2 +warders 'wOd@z Kj% 2 +warding 'wOdIN Hb% 215B +wardress 'wOdrIs K7$ 2 +wardresses 'wOdrIsIz Kj$ 3 +wardrobe 'wOdr@Ub K6% 2 +wardrobes 'wOdr@Ubz Kj% 2 +wardroom 'wOdrUm K6% 2 +wardrooms 'wOdrUmz Kj% 2 +wards wOdz Ha%,Mj% 115B +ware we@R H2$,K6% 16A +wared we@d Hc$,Hd$ 16A +warehouse 'we@haUs K6% 2 +warehouses 'we@haUzIz Kj% 3 +warehousing 'we@haUzIN L@% 3 +wares we@z Ha$,Kj% 16A +warfare 'wOfe@R L@% 2 +warhead 'wOhed K6% 2 +warheads 'wOhedz Kj% 2 +warhorse 'wOhOs K6% 2 +warhorses 'wOhOsIz Kj% 3 +warier 'we@rI@R Or% 3 +wariest 'we@rIIst Os% 3 +warily 'we@rIlI Pu% 3 +wariness 'we@rIn@s L@% 3 +waring 'we@rIN Hb$ 26A +warlike 'wOlaIk OA% 2 +warlord 'wOlOd K6% 2 +warlords 'wOlOdz Kj% 2 +warm wOm J0%,OC% 12A,2C,6A,15B +warm-blooded wOm-'blVdId OA% 3 +warm-hearted wOm-'hAtId OA% 3 +warmed wOmd Jc%,Jd% 12A,2C,6A,15B +warmer 'wOm@R K6%,Or% 2 +warmers 'wOm@z Kj% 2 +warmest 'wOmIst Os% 2 +warming 'wOmIN Jb% 22A,2C,6A,15B +warming-pan 'wOmIN-p&n K6% 3 +warming-pans 'wOmIN-p&nz Kj% 3 +warmly 'wOmlI Pu% 2 +warmonger 'wOmVNg@R K6% 3 +warmongers 'wOmVNg@z Kj% 3 +warms wOmz Ja% 12A,2C,6A,15B +warmth wOmT L@% 1 +warn wOn H0% 16A,11,14,15B,17 +warned wOnd Hc%,Hd% 16A,11,14,15B,17 +warning 'wOnIN Hb%,M6%,OA% 26A,11,14,15B,17 +warnings 'wOnINz Mj% 2 +warns wOnz Ha% 16A,11,14,15B,17 +warp wOp J0%,K6% 12A,6A +warpaint 'wOpeInt L@% 2 +warpath 'wOpAT K6% 2 +warpaths 'wOpADz Kj% 2 +warped wOpt Jc%,Jd% 12A,6A +warping 'wOpIN Jb% 22A,6A +warps wOps Ja%,Kj% 12A,6A +warrant 'w0r@nt H0%,M6% 26A,9,25 +warranted 'w0r@ntId Hc%,Hd% 36A,9,25 +warrantee ,w0r@n'ti K6$ 3 +warrantees ,w0r@n'tiz Kj$ 3 +warranties 'w0r@ntIz Kj% 3 +warranting 'w0r@ntIN Hb% 36A,9,25 +warrantor 'w0r@ntOR K6$ 3 +warrantors 'w0r@ntOz Kj$ 3 +warrants 'w0r@nts Ha%,Mj% 26A,9,25 +warranty 'w0r@ntI K8% 3 +warred wOd Ic%,Id% 1 +warren 'w0r@n K6% 2 +warrens 'w0r@nz Kj% 2 +warring 'wOrIN Ib% 2 +warrior 'w0rI@R K6% 3 +warriors 'w0rI@z Kj% 3 +wars wOz Ia%,Mj% 1 +warship 'wOSIp K6% 2 +warships 'wOSIps Kj% 2 +wart wOt K6% 1 +warthog 'wOth0g K6% 2 +warthogs 'wOth0gz Kj% 2 +wartime 'wOtaIm L@% 2 +warts wOts Kj% 1 +wary 'we@rI OD% 2 +was w0z Gc*,Ic% 11 +wash w0S J1%,M7% 12A,2C,6A,15A,15B,22 +wash- w0S- U-% 1 +wash-drawing 'w0S-drOIN K6$ 3 +wash-drawings 'w0S-drOINz Kj$ 3 +wash-hand-basin 'w0S-h&nd-beIsn K6$ 4 +wash-hand-basins 'w0S-h&nd-beIsnz Kj$ 4 +wash-hand-stand 'w0S-h&nd-st&nd K6$ 3 +wash-hand-stands 'w0S-h&nd-st&ndz Kj$ 3 +wash-house 'w0S-haUs K6% 2 +wash-houses 'w0S-haUzIz Kj% 3 +wash-leather 'w0S-leD@R M6% 3 +wash-leathers 'w0S-leD@z Mj% 3 +washable 'w0S@bl OA% 3 +washbasin 'w0SbeIsn K6% 3 +washbasins 'w0SbeIsnz Kj% 3 +washboard 'w0SbOd K6% 2 +washboards 'w0SbOdz Kj% 2 +washbowl 'w0Sb@Ul K6% 2 +washbowls 'w0Sb@Ulz Kj% 2 +washcloth 'w0Skl0T K6% 2 +washcloths 'w0Skl0Ts Kj% 2 +washday 'w0SdeI K6% 2 +washdays 'w0SdeIz Kj% 2 +washed w0St Jc%,Jd% 12A,2C,6A,15A,15B,22 +washer 'w0S@R K6% 2 +washers 'w0S@z Kj% 2 +washerwoman 'w0S@wUm@n Ki% 4 +washerwomen 'w0S@wImIn Kj% 4 +washes 'w0SIz Ja%,Mj% 22A,2C,6A,15A,15B,22 +washing 'w0SIN Jb%,L@% 22A,2C,6A,15A,15B,22 +washing-day 'w0SIN-deI K6% 3 +washing-days 'w0SIN-deIz Kj% 3 +washing-machine 'w0SIN-m@Sin K6% 4 +washing-machines 'w0SIN-m@Sinz Kj% 4 +washing-up ,w0SIN-'Vp M6% 3 +washing-ups ,w0SIN-'Vps Mj$ 3 +washout 'w0SaUt K6% 2 +washouts 'w0SaUts Kj$ 2 +washroom 'w0Srum K6% 2 +washrooms 'w0Srumz Kj% 2 +washstand 'w0S+st&nd K6% 2 +washstands 'w0S+st&ndz Kj% 2 +washtub 'w0StVb K6% 2 +washtubs 'w0StVbz Kj% 2 +washy 'w0SI OA$ 2 +wasn't 'w0znt Gg% 2 +wasp w0sp K6% 1 +wasp-waisted w0sp-'weIstId OA% 3 +waspish 'w0spIS OA% 2 +wasps w0sps Kj% 1 +wassail 'w0seIl K6$ 2 +wassails 'w0seIlz Kj$ 2 +wastage 'weIstIdZ L@% 2 +waste weIst J2%,M6%,OA% 12A,2C,6A,14 +waste-paper-basket weIst-'peIp@-b&skIt K6% 5 +waste-paper-baskets weIst-'peIp@-b&skIts Kj% 5 +waste-pipe 'weIst-paIp K6% 2 +waste-pipes 'weIst-paIps Kj% 2 +wastebasket 'weIstbAskIt K6% 3 +wastebaskets 'weIstbAskIts Kj% 3 +wastebin 'weIstbIn K6% 2 +wastebins 'weIstbInz Kj% 2 +wasted 'weIstId Jc%,Jd% 22A,2C,6A,14 +wasteful 'weIstf@l OA% 2 +wastefully 'weIstf@lI Pu% 3 +wasteland 'weIstl&nd K6% 2 +wastelands 'weIstl&ndz Kj$ 2 +waster 'weIst@R K6$ 2 +wasters 'weIst@z Kj$ 2 +wastes weIsts Ja%,Mj% 12A,2C,6A,14 +wasting 'weIstIN Jb% 22A,2C,6A,14 +wastrel 'weIstr@l K6$ 2 +wastrels 'weIstr@lz Kj$ 2 +watch w0tS J1%,M7% 12A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watch-chain 'w0tS-tSeIn K6% 2 +watch-chains 'w0tS-tSeInz Kj% 2 +watch-glass 'w0tS-glAs K7% 2 +watch-glasses 'w0tS-glAsIz Kj$ 3 +watch-guard 'w0tS-gAd K6$ 2 +watch-guards 'w0tS-gAdz Kj$ 2 +watch-key 'w0tS-ki K6$ 2 +watch-keys 'w0tS-kiz Kj$ 2 +watchdog 'w0tSd0g K6% 2 +watchdogs 'w0tSd0gz Kj% 2 +watched w0tSt Jc%,Jd% 12A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watcher 'w0tS@R K6% 2 +watchers 'w0tS@z Kj% 2 +watches 'w0tSIz Ja%,Mj% 22A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watchful 'w0tSf@l OA% 2 +watchfully 'w0tSf@lI Pu% 3 +watchfulness 'w0tSf@ln@s L@% 3 +watching 'w0tSIN Jb% 22A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watchmaker 'w0tSmeIk@R K6% 3 +watchmakers 'w0tSmeIk@z Kj% 3 +watchman 'w0tSm@n Ki% 2 +watchmen 'w0tSm@n Kj% 2 +watchtower 'w0tStaU@R K6% 3 +watchtowers 'w0tStaU@z Kj% 3 +watchword 'w0tSw3d K6% 2 +watchwords 'w0tSw3dz Kj% 2 +water 'wOt@R J0%,M6* 22A,6A,15B +water-biscuit 'wOt@-bIskIt K6% 4 +water-biscuits 'wOt@-bIskIts Kj% 4 +water-blister 'wOt@-blIst@R K6$ 4 +water-blisters 'wOt@-blIst@z Kj$ 4 +water-bottle 'wOt@-b0tl K6% 4 +water-bottles 'wOt@-b0tlz Kj% 4 +water-buffalo 'wOt@-bVf@l@U K6% 5 +water-buffalos 'wOt@-bVf@l@Uz Kj$ 5 +water-butt 'wOt@-bVt K6% 3 +water-butts 'wOt@-bVts Kj% 3 +water-cart 'wOt@-kAt K6% 3 +water-carts 'wOt@-kAts Kj% 3 +water-closet 'wOt@-kl0zIt K6% 4 +water-closets 'wOt@-kl0zIts Kj% 4 +water-finder 'wOt@-faInd@R K6$ 4 +water-finders 'wOt@-faInd@z Kj$ 4 +water-glass 'wOt@-glAs L@$ 3 +water-hole 'wOt@-h@Ul K6% 3 +water-holes 'wOt@-h@Ulz Kj% 3 +water-ice 'wOt@r-aIs M6% 3 +water-ices 'wOt@r-aIsIz Mj% 4 +water-jacket 'wOt@-dZ&kIt K6$ 4 +water-jackets 'wOt@-dZ&kIts Kj$ 4 +water-level 'wOt@-levl K6% 4 +water-levels 'wOt@-levlz Kj% 4 +water-lilies 'wOt@-lIlIz Kj% 4 +water-lily 'wOt@-lIlI K8% 4 +water-line 'wOt@-laIn K6% 3 +water-lines 'wOt@-laInz Kj$ 3 +water-main 'wOt@-meIn K6% 3 +water-mains 'wOt@-meInz Kj% 3 +water-nymph 'wOt@-nImf K6% 3 +water-nymphs 'wOt@-nImfs Kj% 3 +water-polo 'wOt@-p@Ul@U L@% 4 +water-power 'wOt@-paU@R L@% 4 +water-rat 'wOt@-r&t K6% 3 +water-rate 'wOt@-reIt K6% 3 +water-rates 'wOt@-reIts Kj% 3 +water-rats 'wOt@-r&ts Kj% 3 +water-skiing 'wOt@-skiIN L@% 4 +water-skin 'wOt@-skIn K6$ 3 +water-skins 'wOt@-skInz Kj$ 3 +water-softener 'wOt@-s0fn@R M6% 4 +water-softeners 'wOt@-s0fn@z Mj% 4 +water-spaniel 'wOt@-sp&nI@l K6$ 5 +water-spaniels 'wOt@-sp&nI@lz Kj$ 5 +water-supplies 'wOt@-s@plaIz Kj% 4 +water-supply 'wOt@-s@plaI K8% 4 +water-tower 'wOt@-taU@R K6% 4 +water-towers 'wOt@-taU@z Kj% 4 +water-vole 'wOt@-v@Ul K6% 3 +water-voles 'wOt@-v@Ulz Kj% 3 +water-waggon 'wOt@-w&g@n K6% 4 +water-waggons 'wOt@-w&g@nz Kj% 4 +water-wagon 'wOt@-w&g@n K6$ 4 +water-wagons 'wOt@-w&g@nz Kj$ 4 +water-wheel 'wOt@-wil K6% 3 +water-wheels 'wOt@-wilz Kj% 3 +water-wings 'wOt@-wINz Kj% 3 +water-worn 'wOt@-wOn OA% 3 +waterbird 'wOt@b3d K6% 3 +waterbirds 'wOt@b3dz Kj% 3 +waterborne 'wOt@bOn OA% 3 +watercannon 'wOt@k&n@n K6% 4 +watercannons 'wOt@k&n@nz Kj$ 4 +waterchute 'wOt@Sut K6% 3 +waterchutes 'wOt@Suts Kj% 3 +watercolour 'wOt@kVl@R M6% 4 +watercolourist 'wOt@kVl@rIst K6% 5 +watercolourists 'wOt@kVl@rIsts Kj% 5 +watercolours 'wOt@kVl@z Mj% 4 +watercourse 'wOt@kOs K6% 3 +watercourses 'wOt@kOsIz Kj% 4 +watercress 'wOt@kres L@% 3 +watered 'wOt@d Jc%,Jd% 22A,6A,15B +waterfall 'wOt@fOl K6% 3 +waterfalls 'wOt@fOlz Kj% 3 +waterfowl 'wOt@faUl K6% 3 +waterfowls 'wOt@faUlz Kj$ 3 +waterfront 'wOt@frVnt K6% 3 +waterfronts 'wOt@frVnts Kj$ 3 +waterhen 'wOt@hen K6% 3 +waterhens 'wOt@henz Kj% 3 +waterhyacinth 'wOt@haI@sInT K6$ 5 +waterhyacinths 'wOt@haI@sInTs Kj$ 5 +waterier 'wOt@rI@R Or$ 4 +wateriest 'wOt@rIIst Os$ 4 +watering 'wOt@rIN Jb% 32A,6A,15B +watering-can 'wOt@rIN-k&n K6% 4 +watering-cans 'wOt@rIN-k&nz Kj% 4 +watering-cart 'wOt@rIN-kAt K6% 4 +watering-carts 'wOt@rIN-kAts Kj% 4 +waterless 'wOt@lIs OA% 3 +waterlogged 'wOt@l0gd OA% 3 +waterman 'wOt@m@n Ki% 3 +watermark 'wOt@mAk K6% 3 +watermarks 'wOt@mAks Kj% 3 +watermelon 'wOt@mel@n K6% 4 +watermelons 'wOt@mel@nz Kj% 4 +watermen 'wOt@m@n Kj% 3 +watermill 'wOt@mIl K6% 3 +watermills 'wOt@mIlz Kj% 3 +waterproof 'wOt@pruf H0%,K6%,OA% 3 +waterproofed 'wOt@pruft Hc%,Hd% 3 +waterproofing 'wOt@prufIN Hb% 4 +waterproofs 'wOt@prufs Ha%,Kj% 3 +waters 'wOt@z Ja%,Mj% 22A,6A,15B +watershed 'wOt@Sed K6% 3 +watersheds 'wOt@Sedz Kj% 3 +waterside 'wOt@saId K6% 3 +watersides 'wOt@saIdz Kj$ 3 +waterspout 'wOt@spaUt K6% 3 +waterspouts 'wOt@spaUts Kj% 3 +watertable 'wOt@teIbl K6% 4 +watertables 'wOt@teIblz Kj$ 4 +watertight 'wOt@taIt OA% 3 +waterway 'wOt@weI K6% 3 +waterways 'wOt@weIz Kj% 3 +waterworks 'wOt@w3ks K9% 3 +watery 'wOt@rI OD% 3 +watt w0t K6% 1 +wattage 'w0tIdZ M6% 2 +wattages 'w0tIdZIz Mj$ 3 +wattle 'w0tl M6% 2 +wattles 'w0tlz Mj$ 2 +watts w0ts Kj% 1 +wave weIv J2%,K6% 12A,3A,6A,12A,13A,15A,15B,16A +waved weIvd Jc%,Jd% 12A,3A,6A,12A,13A,15A,15B,16A +wavelength 'weIvleNT K6% 2 +wavelengths 'weIvleNTs Kj% 2 +waver 'weIv@R I0% 22A,2C +wavered 'weIv@d Ic%,Id% 22A,2C +waverer 'weIv@r@R K6$ 3 +waverers 'weIv@r@z Kj$ 3 +wavering 'weIv@rIN Ib% 32A,2C +wavers 'weIv@z Ia% 22A,2C +waves weIvz Ja%,Kj% 12A,3A,6A,12A,13A,15A,15B,16A +wavier 'weIvI@R Or$ 3 +waviest 'weIvIIst Os$ 3 +waving 'weIvIN Jb% 22A,3A,6A,12A,13A,15A,15B,16A +wavy 'weIvI OD% 2 +wax w&ks J1%,M7% 12A,2D,6A +wax-chandler 'w&ks-tSAndl@R K6$ 3 +wax-chandlers 'w&ks-tSAndl@z Kj$ 3 +wax-paper 'w&ks-peIp@R K6% 3 +wax-papers 'w&ks-peIp@z Kj$ 3 +waxed w&kst Jc%,Jd% 12A,2D,6A +waxen 'w&ks@n OA% 2 +waxes 'w&ksIz Ja%,Mj% 22A,2D,6A +waxier 'w&ksI@R Or$ 3 +waxiest 'w&ksIIst Os$ 3 +waxing 'w&ksIN Jb% 22A,2D,6A +waxwork 'w&ksw3k K6% 2 +waxworks 'w&ksw3ks Kj% 2 +waxy 'w&ksI OD% 2 +way weI M6*,Pu* 1 +way-out 'weI-aUt OA% 2 +waybill 'weIbIl K6% 2 +waybills 'weIbIlz Kj$ 2 +wayfarer 'weIfe@r@R K6% 3 +wayfarers 'weIfe@r@z Kj% 3 +wayfaring 'weIfe@rIN OA% 3 +waylaid ,weI'leId Hc%,Hd% 26A +waylay ,weI'leI H5% 26A +waylaying ,weI'leIIN Hb% 36A +waylays ,weI'leIz Ha% 26A +ways weIz Mj% 1 +wayside 'weIsaId K6% 2 +waysides 'weIsaIdz Kj% 2 +wayward 'weIw@d OA% 2 +we wi Qx* 1 +we'd wid Gf% 1 +we'll wil Gf% 1 +we're wI@R Gf% 1 +we've wiv Gf% 1 +weak wik OC% 1 +weak-kneed wik-'nid OA% 2 +weaken 'wik@n J0% 22A,6A +weakened 'wik@nd Jc%,Jd% 22A,6A +weakening 'wik@nIN Jb% 32A,6A +weakens 'wik@nz Ja% 22A,6A +weaker 'wik@R Or% 2 +weakest 'wikIst Os% 2 +weaklier 'wiklI@R Or$ 3 +weakliest 'wiklIIst Os$ 3 +weakling 'wiklIN K6% 2 +weaklings 'wiklINz Kj% 2 +weakly 'wiklI OD%,Pu% 2 +weakness 'wikn@s M7% 2 +weaknesses 'wikn@sIz Mj% 3 +weal wil M6$ 1 +weald wild K6$ 1 +wealds wildz Kj$ 1 +weals wilz Mj$ 1 +wealth welT L@% 1 +wealthier 'welTI@R Or% 3 +wealthiest 'welTIIst Os% 3 +wealthily 'welTIlI Pu% 3 +wealthy 'welTI OD% 2 +wean win H0% 16A,14 +weaned wind Hc%,Hd% 16A,14 +weaning 'winIN Hb% 26A,14 +weans winz Ha% 16A,14 +weapon 'wep@n K6% 2 +weaponless 'wep@nl@s OA$ 3 +weapons 'wep@nz Kj% 2 +wear we@R J5%,L@% 12A,2B,2C,2D,6A,15A,15B,22 +wearable 'we@r@bl OA% 3 +wearer 'we@r@R K6% 2 +wearers 'we@r@z Kj% 2 +wearied 'wI@rId Jc%,Jd% 22A,3A,6A,14 +wearier 'wI@rI@R Or% 3 +wearies 'wI@rIz Ja% 22A,3A,6A,14 +weariest 'wI@rIIst Os% 3 +wearily 'wI@rIlI Pu% 3 +weariness 'wI@rIn@s L@% 3 +wearing 'we@rIN Jb%,OA% 22A,2B,2C,2D,6A,15A,15B,22 +wearisome 'wI@rIs@m OA% 3 +wears we@z Ja% 12A,2B,2C,2D,6A,15A,15B,22 +weary 'wI@rI J3%,OD% 22A,3A,6A,14 +wearying 'wI@rIIN Jb% 32A,3A,6A,14 +weasel 'wizl K6% 2 +weasels 'wizlz Kj% 2 +weather 'weD@R J0%,M6% 22A,6A +weather-beaten 'weD@-bitn OA% 4 +weather-bound 'weD@-baUnd OA% 3 +weather-bureau 'weD@-bjU@r@U K6% 4 +weather-bureaus 'weD@-bjU@r@Uz Kj$ 4 +weather-chart 'weD@-tSAt K6% 3 +weather-charts 'weD@-tSAts Kj% 3 +weather-glass 'weD@-glAs K7$ 3 +weather-glasses 'weD@-glAsIz Kj$ 4 +weather-map 'weD@-m&p K6% 3 +weather-maps 'weD@-m&ps Kj% 3 +weather-ship 'weD@-SIp K6$ 3 +weather-ships 'weD@-SIps Kj$ 3 +weather-station 'weD@-steISn K6% 4 +weather-stations 'weD@-steISnz Kj% 4 +weather-vane 'weD@-veIn K6% 3 +weather-vanes 'weD@-veInz Kj% 3 +weatherboarding 'weD@bOdIN L@% 4 +weatherboards 'weD@bOdz Kj% 3 +weathercock 'weD@k0k K6% 3 +weathercocks 'weD@k0ks Kj% 3 +weathered 'weD@d Jc%,Jd% 22A,6A +weathering 'weD@rIN Jb% 32A,6A +weatherman 'weD@m&n Ki% 3 +weathermen 'weD@men Kj% 3 +weatherproof 'weD@pruf OA% 3 +weathers 'weD@z Ja%,Mj% 22A,6A +weave wiv J5%,K6% 12A,2C,6A,15A,15B +weaver 'wiv@R K6% 2 +weaverbird 'wiv@b3d K6% 3 +weaverbirds 'wiv@b3dz Kj% 3 +weavers 'wiv@z Kj% 2 +weaves wivz Ja%,Kj% 12A,2C,6A,15A,15B +weaving 'wivIN Jb% 22A,2C,6A,15A,15B +web web K6% 1 +web-footed web-'fUtId OA% 3 +web-toed 'web-t@Ud OA% 2 +webbed webd OA% 1 +webbing 'webIN L@% 2 +webs webz Kj% 1 +wed wed J4%,Jc%,Jd% 12A,6A,14 +wedded 'wedId Jc%,Jd% 22A,6A,14 +wedding 'wedIN Jb%,K6% 22A,6A,14 +wedding-cake 'wedIN-keIk M6% 3 +wedding-cakes 'wedIN-keIks Mj% 3 +wedding-ring 'wedIN-rIN K6% 3 +wedding-rings 'wedIN-rINz Kj% 3 +weddings 'wedINz Kj% 2 +wedge wedZ H2%,K6% 16A,15A,22 +wedged wedZd Hc%,Hd% 16A,15A,22 +wedges 'wedZIz Ha%,Kj% 26A,15A,22 +wedging 'wedZIN Hb% 26A,15A,22 +wedlock 'wedl0k L@% 2 +weds wedz Ja% 12A,6A,14 +wee wi I5%,M6%,OA% 1 +wee-wee 'wi-wi M6% 2 +wee-wees 'wi-wiz Mj% 2 +weed wid Ic%,Id%,J0%,K6% 12A,6A,15B +weeded 'widId Jc%,Jd% 22A,6A,15B +weedier 'widI@R Or% 3 +weediest 'widIIst Os% 3 +weeding 'widIN Jb% 22A,6A,15B +weedkiller 'widkIl@R M6% 3 +weedkillers 'widkIl@z Mj% 3 +weeds widz Ja%,Kj% 12A,6A,15B +weedy 'widI OD% 2 +weeing 'wiIN Ib% 2 +week wik K6* 1 +weekday 'wikdeI K6% 2 +weekdays 'wikdeIz Kj% 2 +weekend wik'end I0$,K6% 2 +weekended wik'endId Ic$,Id$ 3 +weekender wik'end@R K6$ 3 +weekenders wik'end@z Kj$ 3 +weekending wik'endIN Ib$ 3 +weekends wik'endz Ia$,Kj% 2 +weeklies 'wiklIz Kj% 2 +weekly 'wiklI K8%,OA%,Pu% 2 +weeks wiks Kj% 1 +weenier 'winI@R Or% 3 +weeniest 'winIIst Os% 3 +weeny 'winI OD% 2 +weep wip J5% 12A,2B,2C,3A,4B,6A +weeping 'wipIN Jb%,OA% 22A,2B,2C,3A,4B,6A +weeps wips Ja% 12A,2B,2C,3A,4B,6A +wees wiz Ia%,Mj$ 1 +weevil 'wivIl K6% 2 +weevils 'wivIlz Kj% 2 +weft weft K6% 1 +wefts wefts Kj$ 1 +weigh weI J0% 12B,2C,3A,6A,14,15B +weighbridge 'weIbrIdZ K6% 2 +weighbridges 'weIbrIdZIz Kj% 3 +weighed weId Jc%,Jd% 12B,2C,3A,6A,14,15B +weighing 'weIIN Jb% 22B,2C,3A,6A,14,15B +weighing-machine 'weIIN-m@Sin K6% 4 +weighing-machines 'weIIN-m@Sinz Kj% 4 +weighs weIz Ja% 12B,2C,3A,6A,14,15B +weight weIt H0$,M6% 16A +weighted 'weItId Hc$,Hd% 26A +weightier 'weItI@R Or% 3 +weightiest 'weItIIst Os% 3 +weightily 'weItIlI Pu% 3 +weightiness 'weItIn@s L@$ 3 +weighting 'weItIN Hb$ 26A +weightless 'weItl@s OA% 2 +weightlessness 'weItl@sn@s L@% 3 +weightlifting 'weItlIftIN L@% 3 +weights weIts Ha$,Mj% 16A +weighty 'weItI OD% 2 +weir wI@R K6% 1 +weird wI@d OC% 1 +weirder 'wI@d@R Or% 2 +weirdest 'wI@dIst Os% 2 +weirdie 'wI@dI K6$ 2 +weirdies 'wI@dIz Kj$ 2 +weirdly 'wI@dlI Pu% 2 +weirdness 'wI@dn@s L@% 2 +weirs wI@z Kj% 1 +welcome 'welk@m H2%,K6%,OA% 26A,15A +welcomed 'welk@md Hc%,Hd% 26A,15A +welcomes 'welk@mz Ha%,Kj% 26A,15A +welcoming 'welk@mIN Hb% 36A,15A +weld weld J0%,K6$ 12A,6A,15A,15B +welded 'weldId Jc%,Jd% 22A,6A,15A,15B +welder 'weld@R K6% 2 +welders 'weld@z Kj% 2 +welding 'weldIN Jb% 22A,6A,15A,15B +welds weldz Ja%,Kj$ 12A,6A,15A,15B +welfare 'welfe@R L@% 2 +welkin 'welkIn Ki$ 2 +well wel I0%,K6%,Op%,Pu*,W-% 12C +well- wel- U-% 1 +well-adjusted ,wel-@'dZVstId OA% 4 +well-advised ,wel-@d'vaIzd OA% 3 +well-appointed ,wel-@'poIntID OA% 4 +well-balanced wel-'b&l@nst OA% 3 +well-behaved ,wel-bI'heIvd OA% 3 +well-being wel-'biIN L@% 3 +well-born 'wel-bOn OA% 2 +well-bred 'wel-bred OA% 2 +well-conducted ,wel-k@n'dVktId OA% 4 +well-connected ,wel-k@'nektId OA% 4 +well-disposed ,wel-dIs'p@Uzd OA% 3 +well-doer 'wel-du@R K6% 3 +well-doers 'wel-du@z Kj% 3 +well-doing 'wel-duIN L@% 3 +well-favoured wel-'feIv@d OA% 3 +well-found 'wel-faUnd OA$ 2 +well-founded wel-'faUndId OA% 3 +well-groomed wel-'grumd OA% 2 +well-grounded wel-'graUndId OA% 3 +well-heeled wel-'hI@ld OA% 2 +well-informed ,wel-In'fOmd OA% 3 +well-intentioned ,wel-In'tenSnd OA% 4 +well-knit 'wel-nIt OA% 2 +well-known 'wel-n@Un OA% 2 +well-lined wel-'laInd OA% 2 +well-marked 'wel-mAkt OA% 2 +well-meaning 'wel-minIN OA% 3 +well-meant 'wel-ment OA% 2 +well-nigh 'wel-naI Pu% 2 +well-read 'wel-red OA% 2 +well-rounded wel-'raUndId OA% 3 +well-set 'wel-set OA% 2 +well-shaven 'wel-SeIvn OA% 3 +well-spoken 'wel-sp@Uk@n OA% 3 +well-timed wel-'taImd OA% 2 +well-to-do ,wel-t@-'du OA% 3 +well-tried wel-'traId OA% 2 +well-turned wel-'t3nd OA% 2 +well-water 'wel-wOt@R L@% 3 +well-wisher 'wel-wIS@R K6% 3 +well-wishers 'wel-wIS@z Kj% 3 +well-worn 'wel-wOn OA% 2 +welled weld Ic%,Id% 12C +wellhead 'welhed K6% 2 +wellheads 'welhedz Kj$ 2 +welling 'welIN Ib% 22C +wellington 'welINt@n K6% 3 +wellingtons 'welINt@nz Kj% 3 +wells welz Ia%,Kj% 12C +welsh welS I1$ 13A +welshed welSt Ic$,Id$ 13A +welsher 'welS@R K6$ 2 +welshers 'welS@z Kj$ 2 +welshes 'welSIz Ia$ 23A +welshing 'welSIN Ib$ 23A +welt welt K6$ 1 +welter 'welt@R I0$,Ki$,OA$ 22C +weltered 'welt@d Ic$,Id$ 22C +weltering 'welt@rIN Ib$ 32C +welters 'welt@z Ia$ 22C +welterweight 'welt@weIt K6% 3 +welterweights 'welt@weIts Kj% 3 +welts welts Kj$ 1 +wen wen K6$ 1 +wench wentS I1$,K7% 12A +wenched wentSt Ic$,Id$ 12A +wenches 'wentSIz Ia$,Kj% 22A +wenching 'wentSIN Ib$ 22A +wend wend H0% 1 +wended 'wendId Hc%,Hd% 2 +wending 'wendIN Hb% 2 +wends wendz Ha% 1 +wens wenz Kj$ 1 +went went Ic* 12A,2B,2C,2D,2E,3A,4A,6A,15B +wept wept Jc%,Jd% 12A,2B,2C,3A,4B,6A +were w3R Gc*,Ic% 11 +weren't w3nt Gg% 1 +werewolf 'wI@wUlf Ki% 3 +werewolves 'wI@wUlvz Kj% 3 +wert w3t Ge$ 1 +west west L@%,Pu% 1 +west-country 'west-kVntrI OA% 3 +west-end 'west-end OA% 2 +westerly 'west@lI Oq%,Pu% 3 +western 'west@n K6%,OA% 2 +westerner 'west@n@R K6% 3 +westerners 'west@n@z Kj% 3 +westernization ,west@naI'zeISn L@% 5 +westernize 'west@naIz H2% 36A +westernized 'west@naIzd Hc%,Hd% 36A +westernizes 'west@naIzIz Ha% 46A +westernizing 'west@naIzIN Hb% 46A +westernmost 'west@nm@Ust OA% 3 +westerns 'west@nz Kj% 2 +westward 'westw@d OA%,Pu% 2 +westwards 'westw@dz Pu% 2 +wet wet H4%,Hc%,Hd%,L@%,OE% 16A +wet-nurse 'wet-n3s K6% 2 +wet-nurses 'wet-n3sIz Kj% 3 +wether 'weD@R K6$ 2 +wethers 'weD@z Kj$ 2 +wets wets Ha% 16A +wetted 'wetId Hc%,Hd% 26A +wetter 'wet@R Or% 2 +wettest 'wetIst Os% 2 +wetting 'wetIN Hb%,K6% 26A +wettings 'wetINz Kj% 2 +whack w&k H0%,K6% 16A +whacked w&kt Hc%,Hd%,OA% 16A +whacker 'w&k@R K6$ 2 +whackers 'w&k@z Kj$ 2 +whacking 'w&kIN Hb%,K6%,OA%,Pu% 26A +whackings 'w&kINz Kj% 2 +whacks w&ks Ha%,Kj% 16A +whale weIl I2$,K6% 12A +whalebone 'weIlb@Un L@% 2 +whaled weIld Ic$,Id$ 12A +whaler 'weIl@R K6% 2 +whalers 'weIl@z Kj% 2 +whales weIlz Ia$,Kj$ 12A +whaling 'weIlIN Ib% 22A +whaling-gun 'weIlIN-gVn K6% 3 +whaling-guns 'weIlIN-gVnz Kj% 3 +whang w&N H0$,K6$,Pu$ 1 +whanged w&Nd Hc$,Hd$ 1 +whanging 'w&NIN Hb$ 2 +whangs w&Nz Ha$,Kj$ 1 +wharf wOf K6% 1 +wharfage 'wOfIdZ L@% 2 +wharfs wOfs Kj% 1 +wharves wOvz Kj% 1 +what w0t OA*,Qy*,Qz* 1 +what'll 'w0tl Gf% 2 +what's w0ts Gf% 1 +what-for w0t-'fOR L@% 2 +whate'er w0t'e@R OA% 2 +whatever w0t'ev@R OA%,Qx% 3 +whatnot 'w0tn0t L@% 2 +whatsoe'er ,w0ts@U'e@R OA% 3 +whatsoever ,w0ts@U'ev@R OA% 4 +wheat wit L@% 1 +wheaten 'witn OA% 2 +wheedle 'widl H2% 26A,14 +wheedled 'widld Hc%,Hd% 26A,14 +wheedles 'widlz Ha% 26A,14 +wheedling 'widlIN Hb% 26A,14 +wheel wil J0%,K6% 12A,2C,6A,15A,15B +wheelbarrow 'wilb&r@U K6% 3 +wheelbarrows 'wilb&r@Uz Kj% 3 +wheelbase 'wilbeIs K6% 2 +wheelbases 'wilbeIsIz Kj% 3 +wheelchair 'wiltSe@R K6% 2 +wheelchairs 'wiltSe@z Kj% 2 +wheeled wild Jc%,Jd% 12A,2C,6A,15A,15B +wheelhouse 'wilhaUs Ki% 2 +wheelhouses 'wilhaUzIz Kj% 3 +wheeling 'wilIN Jb% 22A,2C,6A,15A,15B +wheels wilz Ja%,Kj% 12A,2C,6A,15A,15B +wheelwright 'wilraIt K6% 2 +wheelwrights 'wilraIts Kj% 2 +wheeze wiz J2%,K6% 12A,2B,2C,15B +wheezed wizd Jc%,Jd% 12A,2B,2C,15B +wheezes 'wizIz Ja%,Kj% 22A,2B,2C,15B +wheezier 'wizI@R Or$ 3 +wheeziest 'wizIIst Os$ 3 +wheezily 'wizIlI Pu% 3 +wheeziness 'wizInIs L@% 3 +wheezing 'wizIN Jb% 22A,2B,2C,15B +wheezy 'wizI OD% 2 +whelk welk K6% 1 +whelks welks Kj% 1 +whelp welp I0$,K6$ 1 +whelped welpt Ic$,Id$ 1 +whelping 'welpIN Ib$ 2 +whelps welps Ia$,Kj$ 1 +when wen Pv*,Pw*,V-* 1 +when's wenz Gh% 1 +whence wens Pu% 1 +whencesoever ,wens@U'ev@R OA$,V-$ 4 +whenever wen'ev@R Pu%,V-% 3 +where we@R Pv*,Pw* 1 +where's we@z Gh% 1 +whereabouts 'we@r@baUts Kj%,Pu% 3 +whereas ,we@'r&z V-% 2 +whereat ,we@'r&t Pu$ 2 +whereby ,we@'baI Pu% 2 +wherefore 'we@fOR Pu% 2 +wherefores 'we@fOz Kj$ 2 +wherein ,we@'rIn Pu$ 2 +whereof ,we@'r0v Pu$ 2 +whereon ,we@'r0n Pu$ 2 +wheresoever ,we@s@U'ev@R Pu% 4 +whereto ,we@'tu Pu$ 2 +whereunto ,we@'rVntu Pu$ 3 +whereupon ,we@rV'p0n Pu% 3 +wherever ,we@'rev@R Pu% 3 +wherewith ,we@'wID Pu$ 2 +wherewithal 'we@wIDOl L@%,Pu% 3 +wherries 'werIz Kj$ 2 +wherry 'werI K8$ 2 +whet wet H4$ 16A +whether 'weD@R V-* 2 +whets wets Ha$ 16A +whetstone 'wetst@Un K6% 2 +whetstones 'wetst@Unz Kj% 2 +whetted 'wetId Hc$,Hd$ 26A +whetting 'wetIN Hb$ 26A +whew fju W-$ 1 +whey weI L@$ 1 +which wItS OA*,Qy*,Qz* 1 +whichever wItS'ev@R OA%,Qx% 3 +whichsoever ,wItS+s@U'ev@R OA$,Qx$ 4 +whiff wIf K6% 1 +whiffs wIfs Kj% 1 +while waIl H2%,Ki%,V-* 115B +whiled waIld Hc%,Hd% 115B +whiles waIlz Ha% 115B +whiling 'waIlIN Hb% 215B +whilst waIlst V-% 1 +whim wIm K6% 1 +whimper 'wImp@R J0%,K6% 22A,6A +whimpered 'wImp@d Jc%,Jd% 22A,6A +whimpering 'wImp@rIN Jb% 32A,6A +whimpers 'wImp@z Ja%,Kj% 22A,6A +whims wImz Kj% 1 +whimsey 'wImzI M6$ 2 +whimseys 'wImzIz Mj$ 2 +whimsical 'wImzIkl OA% 3 +whimsicalities ,wImzI'k&l@tIz Mj% 5 +whimsicality ,wImzI'k&l@tI M8% 5 +whimsically 'wImzIklI Pu% 3 +whimsies 'wImzIz Mj% 2 +whimsy 'wImzI M8% 2 +whin wIn L@$ 1 +whine waIn J2%,K6% 12A,2C,4A,6A,15B +whined waInd Jc%,Jd% 12A,2C,4A,6A,15B +whiner 'waIn@R K6$ 2 +whiners 'waIn@z Kj$ 2 +whines waInz Ja%,Kj% 12A,2C,4A,6A,15B +whining 'waInIN Jb% 22A,2C,4A,6A,15B +whinnied 'wInId Ic%,Id% 2 +whinnies 'wInIz Ia%,Kj% 2 +whinny 'wInI I3%,K8% 2 +whinnying 'wInIIN Ib% 3 +whip wIp J4%,K6% 12C,6A,15A,15B +whip-round 'wIp-raUnd K6% 2 +whip-rounds 'wIp-raUndz Kj$ 2 +whipcord 'wIpkOd L@% 2 +whipped wIpt Jc%,Jd% 12C,6A,15A,15B +whipper-in ,wIp@r-'In Ki$ 3 +whippers-in ,wIp@z-'In Kj$ 3 +whippersnapper 'wIp@sn&p@R K6% 4 +whippersnappers 'wIp@sn&p@z Kj% 4 +whippet 'wIpIt K6% 2 +whippets 'wIpIts Kj% 2 +whippier 'wIpI@R Or$ 3 +whippiest 'wIpIIst Os$ 3 +whipping 'wIpIN Jb%,M6% 22C,6A,15A,15B +whipping-boy 'wIpIN-boI K6% 3 +whipping-boys 'wIpIN-boIz Kj% 3 +whipping-post 'wIpIN-p@Ust K6% 3 +whipping-posts 'wIpIN-p@Usts Kj% 3 +whipping-top 'wIpIN-t0p K6% 3 +whipping-tops 'wIpIN-t0ps Kj% 3 +whippings 'wIpINz Mj% 2 +whippoorwill 'wIp@wIl K6$ 3 +whippoorwills 'wIp@wIlz Kj$ 3 +whippy 'wIpI OD% 2 +whips wIps Ja%,Kj% 12C,6A,15A,15B +whir w3R I4$,Ki$ 12A,2C +whirl w3l J0%,Ki% 12A,2C,15A,15B +whirled w3ld Jc%,Jd% 12A,2C,15A,15B +whirligig 'w3lIgIg K6% 3 +whirligigs 'w3lIgIgz Kj% 3 +whirling 'w3lIN Jb% 22A,2C,15A,15B +whirlpool 'w3lpul K6% 2 +whirlpools 'w3lpulz Kj% 2 +whirls w3lz Ja% 12A,2C,15A,15B +whirlwind 'w3lwInd K6% 2 +whirlwinds 'w3lwIndz Kj% 2 +whirr w3R I0%,Ki% 12A,2C +whirred w3d Ic%,Id% 12A,2C +whirring 'w3rIN Ib% 22A,2C +whirrs w3z Ia% 12A,2C +whirs w3z Ia$ 12A,2C +whisk wIsk J0%,K6% 16A,15B +whisked wIskt Jc%,Jd% 16A,15B +whisker 'wIsk@R K6% 2 +whiskered 'wIsk@d OA% 2 +whiskers 'wIsk@z Kj% 2 +whiskey 'wIskI M6% 2 +whiskeys 'wIskIz Mj% 2 +whiskies 'wIskIz Mj% 2 +whisking 'wIskIN Jb% 26A,15B +whisks wIsks Ja%,Kj% 16A,15B +whisky 'wIskI M8% 2 +whisper 'wIsp@R J0%,K6% 22A,2C,3A,6A,14,15B +whispered 'wIsp@d Jc%,Jd% 22A,2C,3A,6A,14,15B +whisperer 'wIsp@r@R K6% 3 +whisperers 'wIsp@r@z Kj% 3 +whispering 'wIsp@rIN Jb%,K6% 32A,2C,3A,6A,14,15B +whispering-galleries ,wIsp@rIN-'g&l@rIz Kj$ 6 +whispering-gallery ,wIsp@rIN-'g&l@rI K8$ 6 +whisperings 'wIsp@rINz Kj% 3 +whispers 'wIsp@z Ja%,Kj% 22A,2C,3A,6A,14,15B +whist wIst L@% 1 +whist-drive 'wIst-draIv K6% 2 +whist-drives 'wIst-draIvz Kj% 2 +whistle 'wIsl J2%,K6% 22A,2C,6A,15B,16A +whistle-stop 'wIsl-st0p K6% 3 +whistle-stops 'wIsl-st0ps Kj$ 3 +whistled 'wIsld Jc%,Jd% 22A,2C,6A,15B,16A +whistles 'wIslz Ja%,Kj% 22A,2C,6A,15B,16A +whistling 'wIslIN Jb% 22A,2C,6A,15B,16A +whit wIt Ki$ 1 +white waIt M6%,OB* 1 +white-collar ,waIt-'k0l@R OA% 3 +white-hot ,waIt-'h0t OA% 2 +white-lipped ,waIt-'lIpt OA$ 2 +white-livered ,waIt-'lIv@d OA$ 3 +whitebait 'waItbeIt L@% 2 +whitecaps 'waItk&ps Kj$ 2 +whiten 'waItn J0% 22A,6A +whitened 'waItnd Jc%,Jd% 22A,6A +whiteness 'waItnIs L@% 2 +whitening 'waItnIN Jb%,L@% 22A,6A +whitens 'waItnz Ja% 22A,6A +whiter 'waIt@R Or% 2 +whites waIts Mj% 1 +whitest 'waItIst Os% 2 +whitethorn 'waItTOn M6$ 2 +whitethorns 'waItTOnz Mj$ 2 +whitewash 'waItw0S H1%,L@% 2 +whitewashed 'waItw0St Hc%,Hd% 2 +whitewashes 'waItw0SIz Ha% 3 +whitewashing 'waItw0SIN Hb% 3 +whither 'wID@R Pu% 2 +whithersoever ,wID@s@U'ev@R Pu$ 5 +whiting 'waItIN M9% 2 +whitish 'waItIS OA% 2 +whitlow 'wItl@U K6$ 2 +whitlows 'wItl@Uz Kj$ 2 +whittle 'wItl J2% 22C,3A,6A,15A,15B +whittled 'wItld Jc%,Jd% 22C,3A,6A,15A,15B +whittles 'wItlz Ja% 22C,3A,6A,15A,15B +whittling 'wItlIN Jb% 22C,3A,6A,15A,15B +whiz wIz I5%,L@% 12C +whizz-kid 'wIz-kId K6% 2 +whizz-kids 'wIz-kIdz Kj% 2 +whizzed wIzd Ic%,Id% 12C +whizzes 'wIzIz Ia% 22C +whizzing 'wIzIN Ib% 22C +who hu Qy*,Qz* 1 +who'd hud Gf% 1 +who'll hul Gf% 1 +who're 'hu@R Gf% 2 +who's huz Gf% 1 +whoa w@U W-$ 1 +whodunit ,hu'dVnIt K6% 3 +whodunits ,hu'dVnIts Kj% 3 +whoever hu'ev@R Qx% 3 +whole h@Ul K6*,OA* 1 +whole-wheat 'h@Ul-wit L@% 2 +wholehearted ,h@Ul'hAtId OA% 3 +wholeheartedly ,h@Ul'hAtIdlI Pu% 4 +wholeheartedness ,h@Ul'hAtIdnIs L@% 4 +wholemeal 'h@Ulmil L@% 2 +wholes h@Ulz Kj$ 1 +wholesale 'h@UlseIl L@%,OA%,Pu% 2 +wholesaler 'h@UlseIl@R K6% 3 +wholesalers 'h@UlseIl@z Kj% 3 +wholesome 'h@Uls@m OA% 2 +wholesomely 'h@Uls@mlI Pu% 3 +wholly 'h@Ul+lI Pu% 2 +whom hum Qy%,Qz% 1 +whoop hup J0$,K6$ 1 +whooped hupt Jc$,Jd$ 1 +whoopee 'wUpI K6$ 2 +whoopees 'wUpIz Kj$ 2 +whooping 'hupIN Jb% 2 +whooping-cough 'hupIN-k0f L@% 3 +whoops hups Ja$,Kj$ 1 +whop w0p H4$ 16A +whopped w0pt Hc$,Hd$ 16A +whopper 'w0p@R K6% 2 +whoppers 'w0p@z Kj% 2 +whopping 'w0pIN Hb$,OA%,Pu% 26A +whops w0ps Ha$ 16A +whore hOR K6% 1 +whoremonger 'hOmVNg@R K6% 3 +whoremongers 'hOmVNg@z Kj% 3 +whores hOz Kj% 1 +whorl w3l K6$ 1 +whorled w3ld OA$ 1 +whorls w3lz Kj$ 1 +whose huz Qx% 1 +whoso 'hus@U Qx$ 2 +whosoever ,hus@U'ev@R Qx% 4 +why waI K6%,Pv*,Pw*,W-% 1 +whys waIz Kj% 1 +wich- wItS- U-$ 1 +wick wIk M6% 1 +wicked 'wIkId OA% 2 +wickedly 'wIkIdlI Pu% 3 +wickedness 'wIkIdnIs L@% 3 +wicker 'wIk@R L@% 2 +wickerwork 'wIk@w3k L@% 3 +wicket 'wIkIt K6% 2 +wicket-door ,wIkIt-'dOR K6$ 3 +wicket-doors ,wIkIt-'dOz Kj$ 3 +wicket-gate ,wIkIt-'geIt K6% 3 +wicket-gates ,wIkIt-'geIts Kj% 3 +wicket-keeper 'wIkIt-kip@R K6% 4 +wicket-keepers 'wIkIt-kip@z Kj% 4 +wickets 'wIkIts Kj% 2 +wicks wIks Mj% 1 +wide waId OB%,Pu% 1 +wide-awake ,waId-@'weIk OA% 3 +widely 'waIdlI Pu% 2 +widen 'waIdn J0% 22A,6A +widened 'waIdnd Jc%,Jd% 22A,6A +widening 'waIdnIN Jb% 32A,6A +widens 'waIdnz Ja% 22A,6A +wider 'waId@R Or% 2 +widespread 'waIdspred OA% 2 +widest 'waIdIst Os% 2 +widgeon 'wIdZ@n K6$ 2 +widgeons 'wIdZ@nz Kj$ 2 +widow 'wId@U K6% 2 +widowed 'wId@Ud OA% 2 +widower 'wId@U@R K6% 3 +widowers 'wId@U@z Kj% 3 +widowhood 'wId@UhUd L@% 3 +widows 'wId@Uz Kj% 2 +width wItT M6% 1 +widths wItTs Mj% 1 +wield wild H0% 16A +wielded 'wildId Hc%,Hd% 26A +wielding 'wildIN Hb% 26A +wields wildz Ha% 16A +wife waIf Ki* 1 +wifelier 'waIflI@R Or$ 3 +wifeliest 'waIflIIst Os$ 3 +wifelike 'waIflaIk OA% 2 +wifely 'waIflI OD% 2 +wig wIg K6% 1 +wigged wIgd OA% 1 +wigging 'wIgIN K6% 2 +wiggings 'wIgINz Kj$ 2 +wiggle 'wIgl J2%,K6% 22A,6A +wiggled 'wIgld Jc%,Jd% 22A,6A +wiggles 'wIglz Ja%,Kj% 22A,6A +wiggling 'wIglIN Jb% 22A,6A +wight waIt K6$ 1 +wights waIts Kj$ 1 +wigs wIgz Kj% 1 +wigwam 'wIgw&m K6% 2 +wigwams 'wIgw&mz Kj% 2 +wild waIld Kj%,OC%,Pu% 1 +wildcat 'waIldk&t Oq% 2 +wildebeest 'wIldIbist K6$ 3 +wildebeests 'wIldIbists Kj$ 3 +wilder 'waIld@R Or% 2 +wilderness 'wIld@n@s K7% 3 +wildernesses 'wIld@n@sIz Kj% 4 +wildest 'waIldIst Os% 2 +wildfire 'waIldfaI@R L@% 2 +wildfowl 'waIldfaUl Kj% 2 +wildly 'waIldlI Pu% 2 +wildness 'waIldnIs L@% 2 +wile waIl K6$ 1 +wiles waIlz Kj% 1 +wilful 'wIlf@l OA% 2 +wilfully 'wIlf@lI Pu% 3 +wilfulness 'wIlf@lnIs L@% 3 +wilier 'waIlI@R Or% 3 +wiliest 'waIlIIst Os% 3 +will wIl G5*,J0%,M6% 12A,5,6A,9,12A,13A,14,15A,17 +will-o'-the-wisp ,wil-@-D@-'wIsp K6% 4 +will-o'-the-wisps ,wil-@-D@-'wIsps Kj$ 4 +willed wIld Jc%,Jd%,Ot% 12A,5,6A,9,12A,13A,14,15A,17 +willful 'wIlf@l OA% 2 +willies 'wIlIz Kj% 2 +willing 'wIlIN Jb%,OA% 22A,5,6A,9,12A,13A,14,15A,17 +willingly 'wIlINlI Pu% 3 +willingness 'wIlINnIs L@% 3 +willow 'wIl@U M6% 2 +willow-pattern 'wIl@U-p&t@n L@% 4 +willow-tree 'wIl@U-tri K6% 3 +willow-trees 'wIl@U-triz Kj% 3 +willows 'wIl@Uz Mj% 2 +willowy 'wIl@UI OA% 3 +willpower 'wIlpaU@R L@% 3 +wills wIlz Ja%,Mj% 12A,5,6A,9,12A,13A,14,15A,17 +willy-nilly ,wIlI-'nIlI Pu% 4 +wilt wIlt He$,J0% 12A,5,6A,9 +wilted 'wIltId Jc%,Jd% 22A,5,6A,9 +wilting 'wIltIN Jb% 22A,5,6A,9 +wilts wIlts Ja% 12A,5,6A,9 +wily 'waIlI OD% 2 +wimple 'wImpl K6$ 2 +wimples 'wImplz Kj$ 2 +win wIn J5%,K6% 12A,6A,12B,13B,15A,15B,17 +wince wIns H2%,K6% 12A,2C +winced wInst Hc%,Hd% 12A,2C +winces 'wInsIz Ha%,Kj% 22A,2C +winceyette ,wInsI'et L@% 3 +winch wIntS H1%,K7% 16A,15B +winched wIntSt Hc%,Hd% 16A,15B +winches 'wIntSIz Ha%,Kj% 26A,15B +winching 'wIntSIN Hb% 26A,15B +wincing 'wInsIN Hb% 22A,2C +wind wInd H0%,M6% 16A +wind waInd J5%,K6% 12A,2B,2C,6A,14,15A,15B +wind-gauge 'wInd-geIdZ K6% 2 +wind-gauges 'wInd-geIdZIz Kj% 3 +wind-tunnel 'wInd-tVn@l K6% 3 +wind-tunnels 'wInd-tVn@lz Kj% 3 +windbag 'wIndb&g K6% 2 +windbags 'wIndb&gz Kj% 2 +windblown 'wIndbl@Un OA% 2 +windbreak 'wIndbreIk K6% 2 +windbreaker 'wIndbreIk@R K6% 3 +windbreakers 'wIndbreIk@z Kj% 3 +windbreaks 'wIndbreIks Kj% 2 +windcheater 'wIndtSit@R K6% 3 +windcheaters 'wIndtSit@z Kj% 3 +winded 'wIndId Hc%,Hd% 26A +windfall 'wIndfOl K6% 2 +windfalls 'wIndfOlz Kj% 2 +windflower 'wIndflaU@R K6% 3 +windflowers 'wIndflaU@z Kj% 3 +windier 'wIndI@R Or% 3 +windiest 'wIndIIst Os% 3 +windily 'wIndIlI Pu% 3 +windiness 'wIndInIs L@$ 3 +winding 'wIndIN Hb% 26A +winding 'waIndIN Jb% 22A,2B,2C,6A,14,15A,15B +winding-sheet 'waIndIN-Sit K6% 3 +winding-sheets 'waIndIN-Sits Kj% 3 +windjammer 'wIndZ&m@R K6% 3 +windjammers 'wIndZ&m@z Kj% 3 +windlass 'wIndl@s K7$ 2 +windlasses 'wIndl@sIz Kj$ 3 +windless 'wIndl@s OA% 2 +windmill 'wIndmIl K6% 2 +windmills 'wIndmIlz Kj% 2 +window 'wInd@U K6% 2 +window-box 'wInd@U-b0ks K7% 3 +window-boxes 'wInd@U-b0ksIz Kj% 4 +window-dressing 'wInd@U-,dresIN L@% 4 +windowpane 'wInd@UpeIn K6% 3 +windowpanes 'wInd@UpeInz Kj% 3 +windows 'wInd@Uz Kj% 2 +windowsill 'wInd@UsIl K6% 3 +windowsills 'wInd@UsIlz Kj% 3 +windpipe 'wIndpaIp K6% 2 +windpipes 'wIndpaIps Kj% 2 +winds wIndz Ha$,Mj% 16A +winds waIndz Ja%,Kj$ 12A,2B,2C,6A,14,15A,15B +windscreen 'wIndskrin K6% 2 +windscreen-wiper 'wIndskrin-,waIp@R K6% 4 +windscreen-wipers 'wIndskrin-,waIp@z Kj% 4 +windscreens 'wIndskrinz Kj% 2 +windshield 'wIndSild K6% 2 +windshields 'wIndSildz Kj% 2 +windsock 'wInds0k K6% 2 +windsocks 'wInds0ks Kj% 2 +windswept 'wIndswept OA% 2 +windward 'wIndw@d L@%,OA% 2 +windy 'wIndI OD% 2 +wine waIn H2%,M6% 1 +wined waInd Hc%,Hd% 1 +wineglass 'waIn-glAs K7% 2 +wineglasses 'waIn-glAsIz Kj% 3 +winepress 'waInpres K7% 2 +winepresses 'waInpresIz Kj% 3 +wines waInz Ha%,Mj% 1 +wineskin 'waInskIn K6% 2 +wineskins 'waInskInz Kj% 2 +wing wIN J0%,K6% 12C,6A,15A +wing-commander 'wIN-k@,mAnd@R K6% 4 +wing-commanders 'wIN-k@,mAnd@z Kj% 4 +wing-nut 'wIN-nVt K6% 2 +wing-nuts 'wIN-nVts Kj% 2 +wing-screw 'wIN-skru K6% 2 +wing-screws 'wIN-skruz Kj% 2 +winged wINd Jc%,Jd%,OA% 12C,6A,15A +winger 'wIN@R K6% 2 +wingers 'wIN@z Kj% 2 +winging 'wININ Jb% 22C,6A,15A +wingless 'wINl@s OA% 2 +wings wINz Ja%,Kj% 12C,6A,15A +wingspan 'wINsp&n K6% 2 +wingspans 'wINsp&nz Kj% 2 +wingspread 'wINspred K6% 2 +wingspreads 'wINspredz Kj% 2 +wining 'waInIN Hb% 2 +wink wINk J0%,K6% 12A,2C,3A,15B +winked wINkt Jc%,Jd% 12A,2C,3A,15B +winking 'wINkIN Jb% 22A,2C,3A,15B +winkle 'wINkl H2%,K6% 215B +winkled 'wINkld Hc%,Hd% 215B +winkles 'wINklz Ha%,Kj% 215B +winkling 'wINklIN Hb% 215B +winks wINks Ja%,Kj% 12A,2C,3A,15B +winner 'wIn@R K6% 2 +winners 'wIn@z Kj% 2 +winning 'wInIN Jb% 22A,6A,12B,13B,15A,15B,17 +winning-post 'wInIN-p@Ust K6% 3 +winning-posts 'wInIN-p@Usts Kj% 3 +winnings 'wInINz Kj% 2 +winnow 'wIn@U H0$ 26A,14,15A,15B +winnowed 'wIn@Ud Hc$,Hd$ 26A,14,15A,15B +winnowing 'wIn@UIN Hb$ 36A,14,15A,15B +winnows 'wIn@Uz Ha$ 26A,14,15A,15B +wins wInz Ja%,Kj% 12A,6A,12B,13B,15A,15B,17 +winsome 'wIns@m OA$ 2 +winsomely 'wIns@mlI Pu$ 3 +winsomeness 'wIns@mnIs L@$ 3 +winter 'wInt@R I0%,M6% 22C +wintered 'wInt@d Ic%,Id% 22C +winterier 'wIntrI@R Or% 3 +winteriest 'wIntrIIst Os% 3 +wintering 'wInt@rIN Ib% 32C +winters 'wInt@z Ia%,Mj% 22C +wintery 'wIntrI OD% 2 +wintrier 'wIntrI@R Or$ 3 +wintriest 'wIntrIIst Os$ 3 +wintry 'wIntrI OD$ 2 +wipe waIp J2%,K6% 16A,15A,15B,22 +wiped waIpt Jc%,Jd% 16A,15A,15B,22 +wiper 'waIp@R K6% 2 +wipers 'waIp@z Kj% 2 +wipes waIps Ja%,Kj% 16A,15A,15B,22 +wiping 'waIpIN Jb% 26A,15A,15B,22 +wire 'waI@R J2%,M6% 16A,11,12A,13A,15A,15B,16A +wire-cutters 'waI@-,kVt@z Kj% 3 +wire-haired ,waI@-'he@d OA% 2 +wired 'waI@d Jc%,Jd% 16A,11,12A,13A,15A,15B,16A +wireless 'waI@lIs M7%,OA% 2 +wirelesses 'waI@lIsIz Mj% 3 +wirepuller 'waI@,pUl@R K6% 3 +wirepullers 'waI@,pUl@z Kj% 3 +wires 'waI@z Ja%,Mj% 16A,11,12A,13A,15A,15B,16A +wireworm 'waI@w3m K6% 2 +wireworms 'waI@w3mz Kj% 2 +wirier 'waI@rI@R Or$ 3 +wiriest 'waI@rIIst Os$ 3 +wiring 'waI@rIN Jb%,L@% 26A,11,12A,13A,15A,15B,16A +wiry 'waI@rI OD% 2 +wisdom 'wIzd@m L@% 2 +wisdom-teeth 'wIzd@m-tiT Kj% 3 +wisdom-tooth 'wIzd@m-tuT Ki% 3 +wise waIz Ki%,OB% 1 +wiseacre 'waIzeIk@R K6% 3 +wiseacres 'waIzeIk@z Kj% 3 +wisecrack 'waIzkr&k I0%,K6% 2 +wisecracked 'waIzkr&kt Ic%,Id% 2 +wisecracking 'waIzkr&kIN Ib% 3 +wisecracks 'waIzkr&ks Ia%,Kj% 2 +wisely 'waIzlI Pu% 2 +wiser 'waIz@R Or% 2 +wisest 'waIzIst Os% 2 +wish wIS J1%,M7% 12A,3A,6A,7A,9,12A,13A,15A,17,22 +wishbone 'wISb@Un K6% 2 +wishbones 'wISb@Unz Kj% 2 +wished wISt Jc%,Jd% 12A,3A,6A,7A,9,12A,13A,15A,17,22 +wishes 'wISIz Ja%,Mj% 22A,3A,6A,7A,9,12A,13A,15A,17,22 +wishful 'wISf@l OA% 2 +wishfully 'wISf@lI Pu% 3 +wishing 'wISIN Jb% 22A,3A,6A,7A,9,12A,13A,15A,17,22 +wishing-cap 'wISIN-k&p K6$ 3 +wishing-caps 'wISIN-k&ps Kj$ 3 +wishy-washy 'wISI-w0SI OA% 4 +wisp wIsp K6% 1 +wispier 'wIspI@R Or% 3 +wispiest 'wIspIIst Os% 3 +wisps wIsps Kj% 1 +wispy 'wIspI OD% 2 +wisteria wI'stI@rI@ M6% 4 +wisterias wI'stI@rI@z Mj$ 4 +wistful 'wIstf@l OA% 2 +wistfully 'wIstf@lI Pu% 3 +wit wIt M6% 1 +witch wItS K7% 1 +witch- wItS- U-$ 1 +witch-doctor 'wItS-d0kt@R K6% 3 +witch-doctors 'wItS-d0kt@z Kj% 3 +witch-elm 'wItS-elm K6$ 2 +witch-elms 'wItS-elmz Kj$ 2 +witch-hazel 'wItS-heIzl M6% 3 +witch-hazels 'wItS-heIzlz Mj$ 3 +witch-hunt 'wItS-hVnt K6% 2 +witch-hunts 'wItS-hVnts Kj% 2 +witchcraft 'wItSkrAft L@% 2 +witchery 'wItS@rI L@% 3 +witches 'wItSIz Kj% 2 +witching 'wItSIN OA% 2 +with wID T-* 1 +withal wID'Ol Pu% 2 +withdraw wID'drO J5% 22A,2C,6A,14 +withdrawal wID'drO@l M6% 3 +withdrawals wID'drO@lz Mj% 3 +withdrawing wID'drOIN Jb% 32A,2C,6A,14 +withdrawn wID'drOn Jd% 22A,2C,6A,14 +withdraws wID'drOz Ja% 22A,2C,6A,14 +withdrew wID'dru Jc% 22A,2C,6A,14 +withe wIT K6$ 1 +wither 'wID@R J0% 22A,2C,6A,15B +withered 'wID@d Jc%,Jd% 22A,2C,6A,15B +withering 'wID@rIN Jb% 32A,2C,6A,15B +witheringly 'wID@rINlI Pu% 4 +withers 'wID@z Ja%,Kj$ 22A,2C,6A,15B +withes wITs Kj$ 1 +withheld wID'held Hc%,Hd% 26A,14 +withhold wID'h@Uld H5% 26A,14 +withholding wID'h@UldIN Hb% 36A,14 +withholds wID'h@Uldz Ha% 26A,14 +withies 'wIDIz Kj$ 2 +within wID'in Pu*,T-* 2 +without wID'aUt Pu*,T-* 2 +withstand wID'st&nd H5% 26A +withstanding wID'st&ndIN Hb% 36A +withstands wID'st&ndz Ha% 26A +withstood wID'stUd Hc%,Hd% 26A +withy 'wIDI K8$ 2 +witless 'wItlIs OA% 2 +witness 'wItn@s J1%,M7% 23A,6A +witness-box 'wItnIs-b0ks K7% 3 +witness-boxes 'wItnIs-b0ksIz Kj$ 4 +witness-stand 'wItnIs-st&nd K6% 3 +witness-stands 'wItnIs-st&ndz Kj$ 3 +witnessed 'wItn@st Jc%,Jd% 23A,6A +witnesses 'wItn@sIz Ja%,Mj% 33A,6A +witnessing 'wItn@sIN Jb% 33A,6A +wits wIts Mj% 1 +witticism 'wItIsIz@m K6% 4 +witticisms 'wItIsIz@mz Kj% 4 +wittier 'wItI@R Or% 3 +wittiest 'wItIIst Os% 3 +wittily 'wItIlI Pu% 3 +wittingly 'wItINlI Pu% 3 +witty 'wItI OD% 2 +wive waIv J2$ 12A,6A +wived waIvd Jc$,Jd$ 12A,6A +wives waIvz Ja$,Kj% 12A,6A +wiving 'waIvIN Jb$ 22A,6A +wizard 'wIz@d K6%,OA% 2 +wizardry 'wIz@drI L@% 3 +wizards 'wIz@dz Kj% 2 +wizened 'wIznd OA% 2 +wk wik Y]% 1 +wo w@U W-$ 1 +woad w@Ud L@$ 1 +wobble 'w0bl J2% 22A,2C,6A +wobbled 'w0bld Jc%,Jd% 22A,2C,6A +wobbler 'w0bl@R K6$ 2 +wobblers 'w0bl@z Kj$ 2 +wobbles 'w0blz Ja% 22A,2C,6A +wobblier 'w0blI@R Or$ 3 +wobbliest 'w0blIIst Os$ 3 +wobbling 'w0blIN Jb% 22A,2C,6A +wobbly 'w0blI OD% 2 +woe w@U M6% 1 +woebegone 'w@UbIg0n OA% 3 +woeful 'w@Uf@l OA% 2 +woefully 'w@Uf@lI Pu% 3 +woes w@Uz Kj% 1 +woke w@Uk Jc% 12A,2C,4B,6A,15B +woken 'w@Uk@n Jd% 22A,2C,4B,6A,15B +wold w@Uld M6$ 1 +wolds w@Uldz Mj$ 1 +wolf wUlf H0%,Ki% 16A,15A +wolf's-bane 'wUlfs-beIn L@% 2 +wolf-cub 'wUlf-kVb K6% 2 +wolf-cubs 'wUlf-kVbz Kj% 2 +wolfed wUlft Hc%,Hd% 16A,15A +wolfhound 'wUlfhaUnd K6% 2 +wolfhounds 'wUlfhaUndz Kj% 2 +wolfing 'wUlfIN Hb% 26A,15A +wolfish 'wUlfIS OA% 2 +wolfram 'wUlfr@m L@$ 2 +wolfs wUlfs Ha% 16A,15A +wolves wUlvz Kj% 1 +woman 'wUm@n Ki* 2 +womanhood 'wUm@nhUd L@% 3 +womanish 'wUm@nIS OA% 3 +womanize 'wUm@naIz I2% 3 +womanized 'wUm@naIzd Ic%,Id% 3 +womanizer 'wUm@naIz@R K6% 4 +womanizers 'wUm@naIz@z Kj% 4 +womanizes 'wUm@naIzIz Ia% 4 +womanizing 'wUm@naIzIN Ib% 4 +womankind 'wUm@nkaInd L@% 3 +womanlier 'wUm@nlI@R Or$ 4 +womanliest 'wUm@nlIIst Os$ 4 +womanlike 'wUm@nlaIk OA$ 3 +womanly 'wUm@nlI OD% 3 +womb wum K6% 1 +wombat 'w0mb&t K6$ 2 +wombats 'w0mb&ts Kj$ 2 +wombs wumz Kj% 1 +women 'wImIn Kj* 2 +womenfolk 'wImInf@Uk Kj% 3 +won wVn Jc%,Jd% 12A,6A,12B,13B,15A,15B,17 +won't w@Unt Gg% 1 +wonder 'wVnd@R J0%,M6% 22A,3A,3B,4B,8,10 +wonder-struck 'wVnd@-strVk OA% 3 +wondered 'wVnd@d Jc%,Jd% 22A,3A,3B,4B,8,10 +wonderful 'wVnd@f@l OA% 3 +wonderfully 'wVnd@f@lI Pu% 4 +wondering 'wVnd@rIN Jb% 32A,3A,3B,4B,8,10 +wonderingly 'wVndrINlI Pu% 3 +wonderland 'wVnd@l&nd K6% 3 +wonderlands 'wVnd@l&ndz Kj$ 3 +wonderment 'wVnd@m@nt L@% 3 +wonders 'wVnd@z Ja%,Mj% 22A,3A,3B,4B,8,10 +wondrous 'wVndr@s OA%,Pu% 2 +wonky 'w0NkI OA% 2 +wont w@Unt L@%,Op% 1 +wonted 'w@UntId Oq% 2 +woo wu H0% 16A +wood wUd M6% 1 +wood-block 'wUd-bl0k K6% 2 +wood-blocks 'wUd-bl0ks Kj% 2 +wood-pulp 'wUd-pVlp L@% 2 +woodbine 'wUdbaIn M6% 2 +woodbines 'wUdbaInz Mj% 2 +woodcock 'wUdk0k K6% 2 +woodcocks 'wUdk0ks Kj% 2 +woodcraft 'wUdkrAft M6% 2 +woodcrafts 'wUdkrAfts Mj$ 2 +woodcut 'wUdkVt K6% 2 +woodcuts 'wUdkVts Kj% 2 +woodcutter 'wUdkVt@R K6% 3 +woodcutters 'wUdkVt@z Kj% 3 +wooded 'wUdId OA% 2 +wooden 'wUdn OA% 2 +woodenheaded ,wUdn'hedId OA% 4 +woodier 'wUdI@R Or% 3 +woodiest 'wUdIIst Os% 3 +woodland 'wUdl@nd M6% 2 +woodlands 'wUdl@ndz Mj% 2 +woodlice 'wUdlaIs Kj% 2 +woodlouse 'wUdlaUs Ki% 2 +woodman 'wUdm@n Ki% 2 +woodmen 'wUdmen Kj% 2 +woodpecker 'wUdpek@R K6% 3 +woodpeckers 'wUdpek@z Kj% 3 +woodpile 'wUdpaIl K6% 2 +woodpiles 'wUdpaIlz Kj% 2 +woods wUdz Mj% 1 +woodshed 'wUdSed K6% 2 +woodsheds 'wUdSedz Kj% 2 +woodsman 'wUdzm@n Ki% 2 +woodsmen 'wUdzmen Kj% 2 +woodwind 'wUdwInd L@% 2 +woodwork 'wUdw3k L@% 2 +woodworm 'wUdw3m L@% 2 +woody 'wUdI OD% 2 +wooed wud Hc%,Hd% 16A +wooer 'wu@R K6% 2 +wooers 'wu@z Kj% 2 +woof wuf K6$ 1 +woofer 'wUf@R K6$ 2 +woofers 'wUf@z Kj$ 2 +woofs wufs Kj$ 1 +wooing 'wuIN Hb% 26A +wool wUl M6% 1 +woolen 'wUl@n OA% 2 +woolens 'wUl@nz Kj% 2 +woolgathering 'wUlg&D@rIN L@%,OA% 4 +woolier 'wUlI@R Or$ 3 +woolies 'wUlIz Kj% 2 +wooliest 'wUlIIst Os$ 3 +woollen 'wUl@n OA% 2 +woollens 'wUl@nz Kj% 2 +woollier 'wUlI@R Or% 3 +woolliest 'wUlIIst Os% 3 +woolly 'wUlI OD% 2 +wools wUlz Mj% 1 +wooly 'wUlI K8$,OD$ 2 +woos wuz Ha% 16A +word w3d H0%,K6* 16A +word-division 'w3d-dIvIZ@n L@% 4 +word-painter 'w3d-peInt@R K6$ 3 +word-painters 'w3d-peInt@z Kj$ 3 +word-perfect ,w3d-'p3fekt OA% 3 +word-picture 'w3d-pIktS@R K6% 3 +word-pictures 'w3d-pIktS@z Kj% 3 +word-splitting 'w3d-splItIN L@% 3 +wordbook 'w3dbUk K6% 2 +wordbooks 'w3dbUks Kj% 2 +worded 'w3dId Hc%,Hd% 26A +wordier 'w3dI@R Or% 3 +wordiest 'w3dIIst Os% 3 +wordily 'w3dIlI Pu% 3 +wordiness 'w3dInIs L@% 3 +wording 'w3dIN Hb%,Ki% 26A +wordless 'w3dl@s OA% 2 +words w3dz Ha%,Kj* 16A +wordy 'w3dI OD% 2 +wore wOR Jc% 12A,2B,2C,2D,6A,15A,15B,22 +work w3k J0*,M6% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +work-in 'w3k-In K6% 2 +work-ins 'w3k-Inz Kj$ 2 +work-out 'w3k-aUt K6% 2 +work-outs 'w3k-aUts Kj$ 2 +work-studies 'w3k-stVdIz Kj% 3 +work-study 'w3k-stVdI K8% 3 +workable 'w3k@bl OA% 3 +workaday 'w3k@deI OA% 3 +workbag 'w3kb&g K6% 2 +workbags 'w3kb&gz Kj% 2 +workbasket 'w3kbAskIt K6% 3 +workbaskets 'w3kbAskIts Kj% 3 +workbench 'w3kbentS K7% 2 +workbenches 'w3kbentSIz Kj% 3 +workbook 'w3kbUk K6% 2 +workbooks 'w3kbUks Kj% 2 +workbox 'w3kb0ks K7% 2 +workboxes 'w3kb0ksIz Kj% 3 +workday 'w3kdeI K6% 2 +workdays 'w3kdeIz Kj% 2 +worked w3kt Jc%,Jd% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +worker 'w3k@R K6% 2 +workers 'w3k@z Kj% 2 +workhouse 'w3khaUs Ki% 2 +workhouses 'w3khaUzIz Kj% 3 +working 'w3kIN Jb%,K6%,OA% 22A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +working-class 'w3kIN-klAs OA% 3 +working-out ,w3kIN-'aUt L@% 3 +workings 'w3kINz Kj% 2 +workman 'w3km@n Ki% 2 +workmanlike 'w3km@nlaIk OA% 3 +workmanship 'w3km@nSIp L@% 3 +workmate 'w3kmeIt K6% 2 +workmates 'w3kmeIts Kj% 2 +workmen 'w3kmen Kj% 2 +workroom 'w3krum K6% 2 +workrooms 'w3krumz Kj% 2 +works w3ks Ja%,Mj% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +workshop 'w3kS0p K6% 2 +workshops 'w3kS0ps Kj% 2 +workshy 'w3kSaI OA% 2 +worktable 'w3kteIbl K6% 3 +worktables 'w3kteIblz Kj% 3 +world w3ld K6* 1 +world-weary 'w3ld-wI@rI OA% 3 +worldlier 'w3ldlI@R Or% 3 +worldliest 'w3ldlIIst Os% 3 +worldliness 'w3ldlInIs L@% 3 +worldly 'w3ldlI OD% 2 +worlds w3ldz Kj% 1 +worldwide 'w3ldwaId OA% 2 +worm w3m H0%,K6% 16A,15A,15B +worm-eaten 'w3m-itn OA% 3 +worm-gear 'w3m-gI@R K6% 2 +worm-gears 'w3m-gI@z Kj% 2 +wormcast 'w3mkAst K6% 2 +wormcasts 'w3mkAsts Kj% 2 +wormed w3md Hc%,Hd% 16A,15A,15B +wormhole 'w3mh@Ul K6% 2 +wormholes 'w3mh@Ulz Kj% 2 +wormier 'w3mI@R Or$ 3 +wormiest 'w3mIIst Os$ 3 +worming 'w3mIN Hb% 26A,15A,15B +worms w3mz Ha%,Kj% 16A,15A,15B +wormwood 'w3mwUd L@% 2 +wormy 'w3mI OD% 2 +worn wOn Jd% 12A,2B,2C,2D,6A,15A,15B,22 +worried 'wVrId Jc%,Jd%,OA% 22A,2B,2C,3A,6A,14,15A,15B,17,22 +worries 'wVrIz Ja%,Mj% 22A,2B,2C,3A,6A,14,15A,15B,17,22 +worrisome 'wVrIs@m OA% 3 +worry 'wVrI J3%,M8% 22A,2B,2C,3A,6A,14,15A,15B,17,22 +worrying 'wVrIIN Jb%,OA% 32A,2B,2C,3A,6A,14,15A,15B,17,22 +worryingly 'wVrIINlI Pu% 4 +worse w3s L@%,Or%,Pu% 1 +worsen 'w3s@n J0% 22A,6A +worsened 'w3s@nd Jc%,Jd% 22A,6A +worsening 'w3s@nIN Jb% 32A,6A +worsens 'w3s@nz Ja% 22A,6A +worship 'w3SIp J4%,L@% 22A,2B,6A +worshipful 'w3SIpf@l OA% 3 +worshipped 'w3SIpt Jc%,Jd% 22A,2B,6A +worshipper 'w3SIp@R K6% 3 +worshippers 'w3SIp@z Kj% 3 +worshipping 'w3SIpIN Jb% 32A,2B,6A +worships 'w3SIps Ja% 22A,2B,6A +worst w3st H0$,L@%,Os%,Pu% 16A +worsted 'w3stId Hc$,Hd$ 26A +worsted 'wUstId L@$ 2 +worsting 'w3stIN Hb$ 26A +worsts w3sts Ha$ 16A +worth w3T L@%,Op% 1 +worthier 'w3DI@R Or% 3 +worthies 'w3DIz Kj% 2 +worthiest 'w3DIIst Os% 3 +worthily 'w3DIlI Pu% 3 +worthiness 'w3DIn@s L@% 3 +worthless 'w3Tl@s OA% 2 +worthlessly 'w3Tl@slI Pu% 3 +worthlessness 'w3Tl@sn@s L@% 3 +worthwhile 'w3TwaIl OA% 2 +worthy 'w3DI K8%,OD% 2 +wot w0t He$ 1 +wotcher 'w0tS@R W-$ 2 +would wUd Gc*,Hc% 15,6A,9 +would-be 'wUd-bI Oq% 2 +wouldn't 'wUdnt Gg% 2 +wouldst wUdst Ge$ 1 +wound waUnd Jc%,Jd% 12A,2B,2C,6A,14,15A,15B +wound wund H0%,K6% 16A +wounded 'wundId Hc%,Hd% 26A +wounding 'wundIN Hb% 26A +wounds wundz Ha%,Kj% 16A +wove w@Uv Jc% 12A,2C,6A,15A,15B +woven 'w@Uv@n Jd% 22A,2C,6A,15A,15B +wow waU M6$,W-$ 1 +wows waUz Mj$ 1 +wpb ,dVblju,pi'bi Y>% 5 +wpm ,dVblju,pi'em Y]% 5 +wrack r&k L@% 1 +wraith reIT K6% 1 +wraiths reITs Kj% 1 +wrangle 'r&Ngl I2%,K6% 22A,3A +wrangled 'r&Ngld Ic%,Id% 22A,3A +wrangles 'r&Nglz Ia%,Kj% 22A,3A +wrangling 'r&NglIN Ib% 22A,3A +wrap r&p J4%,K6% 16A,14,15A,15B +wrapped r&pt Jc%,Jd% 16A,14,15A,15B +wrapper 'r&p@R K6% 2 +wrappers 'r&p@z Kj% 2 +wrapping 'r&pIN Jb%,M6% 26A,14,15A,15B +wrappings 'r&pINz Mj% 2 +wraps r&ps Ja%,Kj% 16A,14,15A,15B +wrath r0T L@% 1 +wrathful 'r0Tf@l OA% 2 +wrathfully 'r0Tf@lI Pu% 3 +wreak rik H0% 16A,14 +wreaked rikt Hc%,Hd% 16A,14 +wreaking 'rikIN Hb% 26A,14 +wreaks riks Ha% 16A,14 +wreath riT K6% 1 +wreathe riD J2% 12A,2C,6A,14 +wreathed riDd Jc%,Jd% 12A,2C,6A,14 +wreathes riDz Ja% 12A,2C,6A,14 +wreathing 'riDIN Jb% 22A,2C,6A,14 +wreaths riDz Kj% 1 +wreck rek H0%,M6% 16A +wreckage 'rekIdZ L@% 2 +wrecked rekt Hc%,Hd% 16A +wrecker 'rek@R K6% 2 +wreckers 'rek@z Kj% 2 +wrecking 'rekIN Hb% 26A +wrecks reks Ha%,Mj% 16A +wren ren K6% 1 +wrench rentS H1%,K7% 16A,15A,22 +wrenched rentSt Hc%,Hd% 16A,15A,22 +wrenches 'rentSIz Ha%,Kj% 26A,15A,22 +wrenching 'rentSIN Hb% 26A,15A,22 +wrens renz Kj% 1 +wrest rest H0$ 114 +wrested 'restId Hc$,Hd$ 214 +wresting 'restIN Hb$ 214 +wrestle 'resl I2%,K6% 22A,2C,3A +wrestled 'resld Ic%,Id% 22A,2C,3A +wrestler 'resl@R K6% 2 +wrestlers 'resl@z Kj% 2 +wrestles 'reslz Ia%,Kj% 22A,2C,3A +wrestling 'reslIN Ib% 22A,2C,3A +wrests rests Ha$ 114 +wretch retS K7% 1 +wretched 'retSId OA% 2 +wretchedly 'retSIdlI Pu% 3 +wretchedness 'retSIdn@s L@% 3 +wretches 'retSIz Kj% 2 +wrick rIk H0$,K6$ 16A +wricked rIkt Hc$,Hd$ 16A +wricking 'rIkIN Hb$ 26A +wricks rIks Ha$,Kj$ 16A +wrier 'raI@R Or$ 2 +wriest 'raIIst Os$ 2 +wriggle 'rIgl J2%,K6% 22A,2C,3A,6A,15B,22 +wriggled 'rIgld Jc%,Jd% 22A,2C,3A,6A,15B,22 +wriggler 'rIgl@R K6% 2 +wrigglers 'rIgl@z Kj% 2 +wriggles 'rIglz Ja%,Kj% 22A,2C,3A,6A,15B,22 +wriggling 'rIglIN Jb% 22A,2C,3A,6A,15B,22 +wright raIt K6$ 1 +wrights raIts Kj$ 1 +wring rIN H5$,K6$ 16A,14,15B +wringer 'rIN@R K6$ 2 +wringers 'rIN@z Kj$ 2 +wringing 'rININ Hb$ 26A,14,15B +wrings rINz Ha$,Kj$ 16A,14,15B +wrinkle 'rINkl J2%,K6% 22A,2C,6A,15B +wrinkled 'rINkld Jc%,Jd% 22A,2C,6A,15B +wrinkles 'rINklz Ja%,Kj% 22A,2C,6A,15B +wrinklier 'rINklI@R Or$ 3 +wrinkliest 'rINklIIst Os$ 3 +wrinkling 'rINklIN Jb% 22A,2C,6A,15B +wrinkly 'rINklI OD% 2 +wrist rIst K6% 1 +wristband 'rIstb&nd K6% 2 +wristbands 'rIstb&ndz Kj% 2 +wristlet 'rIstlIt K6$ 2 +wristlets 'rIstlIts Kj$ 2 +wrists rIsts Kj% 1 +wristwatch 'rIstw0tS K7% 2 +wristwatches 'rIstw0tSIz Kj% 3 +writ rIt K6% 1 +writ large rIt 'lAdZ OA% 2 +write raIt J5% 12A,2B,2C,4A,6A,12A,13A,15B +write-off 'raIt-0f K6% 2 +write-offs 'raIt-0fs Kj% 2 +write-up 'raIt-Vp K6% 2 +write-ups 'raIt-Vps Kj% 2 +writer 'raIt@R K6% 2 +writers 'raIt@z Kj% 2 +writes raIts Ja% 12A,2B,2C,4A,6A,12A,13A,15B +writhe raID I2% 12A,2C +writhed raIDd Ic%,Id% 12A,2C +writhes raIDz Ia% 12A,2C +writhing 'raIDIN Ib% 22A,2C +writing 'raItIN Jb%,M6% 22A,2B,2C,4A,6A,12A,13A,15B +writing-desk 'raItIN-desk K6% 3 +writing-desks 'raItIN-desks Kj% 3 +writing-ink 'raItIN-INk K6% 3 +writing-inks 'raItIN-INks Kj% 3 +writing-paper 'raItIN-peIp@R L@% 4 +writings 'raItINz Mj% 2 +writs rIts Kj$ 1 +written 'rItn Jd% 22A,2B,2C,4A,6A,12A,13A,15B +wrong r0N H0%,M6%,OA%,Pu% 16A +wrong-headed r0n-'hedId OA% 3 +wrong-headedly r0n-'hedIdlI Pu% 4 +wrongdoer 'r0Ndu@R K6% 3 +wrongdoers 'r0Ndu@z Kj% 3 +wrongdoing 'r0NduIN M6% 3 +wrongdoings 'r0NduINz Mj% 3 +wronged r0Nd Hc%,Hd% 16A +wrongful 'r0Nf@l OA% 2 +wrongfully 'r0Nf@lI Pu% 3 +wronging 'r0NIN Hb% 26A +wrongly 'r0NlI Pu% 2 +wrongs r0Nz Ha%,Mj% 16A +wrote r@Ut Jc% 12A,2B,2C,4A,6A,12A,13A,15B +wroth r@UT OA$ 1 +wrought rOt Jc%,Jd% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +wrung rVN Hc$,Hd$ 16A,14,15B +wry raI OD% 1 +wryly 'raIlI Pu% 2 +wt weIt Y}% 1 +wych- wItS- U-$ 1 +x eks Ki$ 1 +x's 'eksIz Kj$ 2 +xenophobia ,zen@'f@UbI@ L@% 5 +xylophone 'zaIl@f@Un K6% 3 +xylophones 'zaIl@f@Unz Kj% 3 +y waI Ki$ 1 +y's waIz Kj$ 1 +yacht j0t I0$,K6% 12A +yacht-club 'j0t-klVb K6% 2 +yacht-clubs 'j0t-klVbz Kj% 2 +yachted 'j0tId Ic$,Id$ 22A +yachting 'j0tIN Ib$,L@% 22A +yachts j0ts Ia$,Kj% 12A +yachtsman 'j0tsm@n Ki% 2 +yachtsmen 'j0tsm@n Kj% 2 +yah jA W-$ 1 +yahoo jA'hu K6$ 2 +yahoos jA'huz Kj$ 2 +yak j&k K6$ 1 +yaks j&ks Kj$ 1 +yam j&m K6$ 1 +yammer 'j&m@R I0$ 2 +yammered 'j&m@d Ic$,Id$ 2 +yammering 'j&m@rIN Ib$ 3 +yammers 'j&m@z Ia$ 2 +yams j&mz Kj$ 1 +yank j&Nk H0%,K6% 16A,15A,15B +yanked j&Nkt Hc%,Hd% 16A,15A,15B +yanking 'j&NkIN Hb% 26A,15A,15B +yanks j&Nks Ha%,Kj% 16A,15A,15B +yap j&p I4%,K6% 12A +yapped j&pt Ic%,Id% 12A +yapping 'j&pIN Ib% 22A +yaps j&ps Ia%,Kj% 12A +yard jAd K6% 1 +yard-measure 'jAd-meZ@R K6$ 3 +yard-measures 'jAd-meZ@z Kj$ 3 +yardarm 'jAdAm K6% 2 +yardarms 'jAdAmz Kj% 2 +yards jAdz Kj% 1 +yardstick 'jAdstIk K6% 2 +yardsticks 'jAdstIks Kj% 2 +yarn jAn I0$,M6% 12A,2C +yarned jAnd Ic$,Id$ 12A,2C +yarning 'jAnIN Ib$ 22A,2C +yarns jAnz Ia$,Mj% 12A,2C +yarrow 'j&r@U L@$ 2 +yashmak 'j&Sm&k K6$ 2 +yashmaks 'j&Sm&ks Kj$ 2 +yaw jO I0$,K6$ 1 +yawed jOd Ic$,Id$ 1 +yawing 'jOIN Ib$ 2 +yawl jOl K6$ 1 +yawls jOlz Kj$ 1 +yawn jOn I0%,K6% 12A,2C +yawned jOnd Ic%,Id% 12A,2C +yawning 'jOnIN Ib% 22A,2C +yawns jOnz Ia%,Kj% 12A,2C +yaws jOz Ia$,Kj$ 1 +ye ji Qx$,R-$ 1 +yea jeI K6$,Pu$,W-$ 1 +yeah je@ Pu$ 1 +year j3R K6* 1 +yearbook 'j3bUk K6% 2 +yearbooks 'j3bUks Kj% 2 +yearling 'j3lIN K6% 2 +yearlings 'j3lINz Kj% 2 +yearlong 'j3l0N OA% 2 +yearly 'j3lI OA%,Pu% 2 +yearn j3n I0% 13A,4A +yearned j3nd Ic%,Id% 13A,4A +yearning 'j3nIN Ib%,K6% 23A,4A +yearningly 'j3nINlI Pu% 3 +yearnings 'j3nINz Kj% 2 +yearns j3nz Ia% 13A,4A +years j3z Kj* 1 +yeas jeIz Kj$ 1 +yeast jist L@% 1 +yeastier 'jistI@R Or$ 3 +yeastiest 'jistIIst Os$ 3 +yeasty 'jistI OD% 2 +yell jel J0%,K6% 12A,2C,6A,15B +yelled jeld Jc%,Jd% 12A,2C,6A,15B +yelling 'jelIN Jb% 22A,2C,6A,15B +yellow 'jel@U J0$,M6%,OC% 22A,6A +yellow-bellied ,jel@U-'belId OA% 4 +yellow-flag 'jel@U-fl&g K6$ 3 +yellow-flags 'jel@U-fl&gz Kj$ 3 +yellowed 'jel@Ud Jc$,Jd% 22A,6A +yellower 'jel@U@R Or% 3 +yellowest 'jel@UIst Os% 3 +yellowing 'jel@UIN Jb% 32A,6A +yellowish 'jel@UIS OA% 3 +yellowness 'jel@Un@s L@% 3 +yellows 'jel@Uz Ja$,Mj% 22A,6A +yells jelz Ja%,Kj% 12A,2C,6A,15B +yelp jelp I0% 12A +yelped jelpt Ic%,Id% 12A +yelping 'jelpIN Ib% 22A +yelps jelps Ia% 12A +yen jen I4$,K9% 1 +yenned jend Ic$,Id$ 1 +yenning 'jenIN Ib$ 2 +yens jenz Ia$ 1 +yeoman 'j@Um@n Ki% 2 +yeomanries 'j@Um@nrIz Kj$ 3 +yeomanry 'j@Um@nrI K8% 3 +yeomen 'j@Um@n Kj% 2 +yes jes K7%,W-* 1 +yeses 'jesIz Kj$ 2 +yester- 'jest@R- U-% 2 +yesterday 'jest@dI K6%,Pu% 3 +yesterdays 'jest@dIz Kj% 3 +yet jet Pu*,V-* 1 +yeti 'jetI K6$ 2 +yetis 'jetIz Kj$ 2 +yew ju M6% 1 +yew-tree 'ju-tri K6% 2 +yew-trees 'ju-triz Kj% 2 +yews juz Mj% 1 +yield jild J0%,M6% 12A,3A,6A,15A,15B +yielded 'jildId Jc%,Jd% 22A,3A,6A,15A,15B +yielding 'jildIN Jb%,OA% 22A,3A,6A,15A,15B +yieldingly 'jI@ldINlI Pu% 3 +yields jildz Ja%,Mj% 12A,3A,6A,15A,15B +yippee 'jIpI W-$ 2 +yo-heave-ho ,j@U-'hiv-h@U W-$ 3 +yo-yo 'j@U-j@U K6% 2 +yo-yos 'j@U-j@Uz Kj% 2 +yob j0b K6% 1 +yobo 'j0b@U K6$ 2 +yobos 'j0b@Uz Kj$ 2 +yobs j0bz Kj% 1 +yodel 'j@Udl J4%,K6% 2 +yodelled 'j@Udld Jc%,Jd% 2 +yodeller 'j@Udl@R K6% 3 +yodellers 'j@Udl@z Kj% 3 +yodelling 'j@Ud@lIN Jb% 3 +yodels 'j@Udlz Ja%,Kj% 2 +yoga 'j@Ug@ L@% 2 +yoghourt 'j0g@t M6% 2 +yoghourts 'j0g@ts Mj% 2 +yoghurt 'j0g@t M6% 2 +yoghurts 'j0g@ts Mj% 2 +yogi 'j@UgI K6% 2 +yogis 'j@UgIz Kj% 2 +yogurt 'j0g@t M6% 2 +yogurts 'j0g@ts Mj% 2 +yoke j@Uk J2%,K6% 16A,15A +yoked j@Ukt Jc%,Jd% 16A,15A +yokel 'j@Ukl K6% 2 +yokels 'j@Uklz Kj% 2 +yokes j@Uks Ja%,Kj% 16A,15A +yoking 'j@UkIN Jb% 26A,15A +yolk j@Uk M6% 1 +yolks j@Uks Mj% 1 +yon j0n OA$,Pu$ 1 +yonder 'j0nd@R OA%,Pu% 2 +yore jOR L@$ 1 +you ju Qx* 1 +you'd jud Gf% 1 +you'll jul Gf% 1 +you're jU@R Gf% 1 +you've juv Gf% 1 +young jVN L@%,OC* 1 +younger 'jVNg@R Or% 2 +youngest 'jVNgIst Os% 2 +youngish 'jVNIS OA% 2 +youngster 'jVNst@R K6% 2 +youngsters 'jVNst@z Kj% 2 +your jOR OA* 1 +yours jOz Op%,Qx% 1 +yourself jO'self Qx% 2 +yourselves jO'selvz Qx% 2 +youth juT M6% 1 +youthful 'juTf@l OA% 2 +youthfully 'juTf@lI Pu% 3 +youthfulness 'juTf@ln@s L@% 3 +youths juDz Mj% 1 +yowl jaUl I0$ 1 +yowled jaUld Ic$,Id$ 1 +yowling 'jaUlIN Ib$ 2 +yowls jaUlz Ia$ 1 +yr jI@R Y>% 2 +yule jul L@% 1 +yule-log 'jul-l0g K6% 2 +yule-logs 'jul-l0gz Kj% 2 +yuletide 'jultaId M6% 2 +yuletides 'jultaIdz Mj$ 2 +z zed Ki$ 1 +z's zedz Kj$ 1 +zanier 'zeInI@R Or% 3 +zanies 'zeInIz Kj$ 2 +zaniest 'zeInIIst Os% 3 +zany 'zeInI K8$,OD% 2 +zap z&p H4% 16A +zapped z&pt Hc%,Hd% 16A +zapping 'z&pIN Hb% 26A +zaps z&ps Ha% 16A +zeal zil L@% 1 +zealot 'zel@t K6% 2 +zealotry 'zel@trI L@$ 3 +zealots 'zel@ts Kj% 2 +zealous 'zel@s OA% 2 +zealously 'zel@slI Pu% 3 +zebra 'zebr@ K6% 2 +zebras 'zebr@z Kj% 2 +zebu 'zibju K6$ 2 +zebus 'zibjuz Kj$ 2 +zee zi K6$ 1 +zees ziz Kj$ 1 +zenith 'zenIT K6% 2 +zenithal 'zenIT@l OA$ 3 +zeniths 'zenITs Kj$ 2 +zephyr 'zef@R K6% 2 +zephyrs 'zef@z Kj% 2 +zeppelin 'zep@lIn K6% 3 +zeppelins 'zep@lInz Kj% 3 +zero 'zI@r@U I0$,K6% 22C +zeroed 'zI@r@Ud Ic$,Id$ 22C +zeroing 'zI@r@UIN Ib$ 32C +zeros 'zI@r@Uz Ia$,Kj% 22C +zest zest L@% 1 +zestful 'zestf@l OA% 2 +zestfully 'zestf@lI Pu% 3 +zigzag 'zIgz&g I4%,K6%,Pu% 2 +zigzagged 'zIgz&gd Ic%,Id% 2 +zigzagging 'zIgz&gIN Ib% 3 +zigzags 'zIgz&gz Ia%,Kj% 2 +zinc zINk L@% 1 +zing zIN L@% 1 +zinnia 'zInI@ K6$ 3 +zinnias 'zInI@z Kj$ 3 +zip zIp H4%,K6% 16A,15B,22 +zip code 'zIp k@Ud K6% 2 +zip codes 'zIp k@Udz Kj% 2 +zip-fastener 'zIp-f&sn@R K6% 3 +zip-fasteners 'zIp-f&sn@z Kj% 3 +zipped zIpt Hc%,Hd% 16A,15B,22 +zipper 'zIp@R K6% 2 +zippers 'zIp@z Kj% 2 +zipping 'zIpIN Hb% 26A,15B,22 +zips zIps Ha%,Kj% 16A,15B,22 +zither 'zID@R K6% 2 +zithers 'zID@z Kj% 2 +zloty 'zl0tI K6$ 2 +zlotys 'zl0tIz Kj$ 2 +zodiac 'z@UdI&k K6% 3 +zodiacs 'z@UdI&ks Kj$ 3 +zombie 'z0mbI K6% 2 +zombies 'z0mbIz Kj% 2 +zonal 'z@Unl OA% 2 +zone z@Un H2%,K6% 16A +zoned z@Und Hc%,Hd% 16A +zones z@Unz Ha%,Kj% 16A +zoning 'z@UnIN Hb%,L@% 26A +zoo zu K6% 1 +zoological ,zu@'l0dZIkl OA% 5 +zoologist zu'0l@dZIst K6% 4 +zoologists zu'0l@dZIsts Kj% 4 +zoology zu'0l@dZI L@% 4 +zoom zum I0%,L@% 12A,2C +zoomed zumd Ic%,Id% 12A,2C +zooming 'zumIN Ib% 22A,2C +zooms zumz Ia% 12A,2C +zoophyte 'z@U@faIt K6$ 3 +zoophytes 'z@U@faIts Kj$ 3 +zoos zuz Kj% 1 +zoot suit 'zut sut K6$ 2 +zoot suits 'zut suts Kj$ 2 +zucchini zU'kinI M9% 3 +zucchinis zU'kinIz Kj$ 3 +
\ No newline at end of file diff --git a/next-lib/src/parse/oald/src/ascii_0710-2.txt b/next-lib/src/parse/oald/src/ascii_0710-2.txt new file mode 100644 index 000000000..6963c3498 --- /dev/null +++ b/next-lib/src/parse/oald/src/ascii_0710-2.txt @@ -0,0 +1,1662 @@ + Oxford advanced learner's dictionary of current English : expanded "computer usable" version / compiled by Roger MittonA machine readable editionunspecifiedHornby, Albert SydneyunspecifiedCowie, Anthony PaulunspecifiedLewis, John Windsor, 1926-com (Compiler)Mitton, RogerText datagreater than 5 Mb Contains markup charactersofflineOxford Text ArchiveOxford
Oxford University Computing Services13 Banbury RoadOxfordOX2 6NNinfo@ota.ahds.ac.uk
dict0710

Freely available for non-commercial use provided that this header is included in its entirety with any copy distributed

[198-?]In EnglishTitle from title page of source text"[Entries have] all inflected forms included in full - but ... no definitions or examples"--Compiler, in OTA recordsPublication based on this text: Literary and Linguistic Computing. -- Vol. 1, No. 4, 1986. Transcribed from: Oxford advanced learner's dictionary of current English / A.S. Hornby ; with the assistance of A.P. Cowie [and] J. Windsor Lewis. -- 3rd. ed. -- London : Oxford University Press, 1974.

Editorial practices unknown

Reference system unknown

Oxford Text Archive Subject HeadingsLibrary of Congress Subject Headings
UnspecifiedEnglishDictionariesEnglish language -- DictionariesDictionaries -- 20th century14 Jan 1998Burnard, Loucvt (converter)Header auto-generated from TOMES1990-1991Day, Michaeledt (Editor)The following information was at the beginning of a MARC record used to to generate this TEI header, and may contain useful information:"computer usable" version
+ + + + + + +A DESCRIPTION OF A COMPUTER-USABLE DICTIONARY FILE BASED ON + +THE OXFORD ADVANCED LEARNER'S DICTIONARY OF CURRENT ENGLISH + + + +Roger Mitton, + +Department of Computer Science, + +Birkbeck College, + +University of London, + +Malet Street, + +London WC1E 7HX + + + +June 1992 (supersedes the versions of March and Nov 1986) + + + + + + In 1985-86 I produced a dictionary file called CUVOALD (Computer + +Usable Version of the Oxford Advanced Learner's Dictionary). This was + +a partial dictionary of English in computer-usable form - "partial" + +because each entry contained only some of the information from the + +original dictionary, and "computer-usable" (rather than merely + +"computer-readable") because it was in a form that made it easy for + +programs to access it. A second file, called CUV2, was produced at + +the same time. This was derived from CUVOALD and was the same except + +that it also contained all inflected forms explicitly, eg it contained + +"added", "adding" and "adds" as well as "add". I have now added some + +information to each entry and some more entries to CUV2, to produce a + +new version of CUV2. This document describes this new file. + + + + These files were derived originally from the Oxford Advanced + +Learner's Dictionary of Current English [1], third edition, published + +by the Oxford University Press, 1974, the machine-readable version of + +which is available to researchers from the Oxford Text Archive. The + +task of deriving them from the machine-readable OALDCE was carried out + +as part of a research project, funded by the Leverhulme Trust, into + +spelling correction. The more recent additions have been carried out + +as part of my research as a lecturer in Computer Science at Birkbeck + +College. + + + +THE FILE FORMAT + + + + CUV2 contains 70646 entries. Each entry occupies one line. + +Samples are given at the end of this document. The longest spelling + +is 23 characters; the longest pronunciation is also 23; the longest + +syntactic-tag field is also (coincidentally) 23; the number of + +syllables is just one character ('1' to '9'), and the longest + +verb-pattern field is 58. The fields are padded with spaces to the + +lengths of the longest, ie 23, 23, 23, 1 and 58, making the record + +length 128. The spelling begins at position 1, the pronunciation at + +position 24, the syntactic-tag field at position 47, the number of + +syllables is character 70, and the verb-pattern field begins at + +position 71. The file is sorted in ASCII sequence; this means, of + +course, that the entries are not in the same order as in the OALDCE. + + + Page 2 + + + + + + + +WHAT THE DICTIONARY CONTAINS + + + + Each entry consists of a spelling, a pronunciation, one or more + +syntactic tags (parts-of-speech) with rarity flags, a syllable count, + +and a set of verb patterns for verbs. + + + + The first file derived from the OALDCE (CUVOALD) contained all + +the headwords and subentries from the original dictionary - subentries + +are words like "abandonment" which comes under the headword "abandon" + +- except for a handful that contained funny characters (such as "Lsd" + +where the "L" was a pound sign). Subentries were not included if they + +consisted of two or three separate words that occurred individually + +elsewhere in the dictionary, such as "division bell" which comes under + +the headword "division", except when the combination formed a + +syntactic unit not immediately predictable from its constituents, eg + +"above board", which is listed as an adverb. To this list of about + +35,000 entries, I added about 2,500 proper names - common forenames, + +British towns with a population of over 5,000, countries, + +nationalities, states, counties and major cities of the world. I + +would like to have added many more proper names, but I didn't have the + +time. + + + + The second version of the file (CUV2) contained all these entries + +plus inflected forms making a total of about 68,000 entries. Since + +1986 I have made a number of corrections, added the rarity flags and + +the syllable counts and inserted about 2,000 new entries. The new + +entries, nearly all of which were derived forms of words already in + +the dictionary, were selected from a list of several thousand words + +that occurred in the LOB Corpus[3] but were not in CUV2. I also made + +changes to existing entries where these were implied by the new + +entries; for example, when adding a plural form of a word whose + +existing tag was "uncountable", it was necessary to change the tag of + +the singular form. I also added about 300 reasonably common + +abbreviations (see note below). + + + + A number of words (ie spellings) have more than one entry in the + +OALDCE, eg "water 1" (noun) and "water 2" (verb). In CUV2, each word + +has only one entry unless it has two different pronunciations, eg + +"abuse" (noun and verb). I have departed from this rule in the case + +of compound adjectives, such as "hard-working", which have a slightly + +different stress pattern depending on whether they are used + +attributively ("she's a hard-working girl") or predicatively ("she's + +very hard-working"). These are entered only once; they generally have + +the attributive stress pattern except when the predicative one seemed + +the more natural. (See also the note below on abbreviations.) I have + +also given only one entry to those words that have strong and weak + +forms of pronunciation, such as "am" (which can be pronounced &m, @m + +or m). Generally it is the strong form that is entered. + + + + As regards the coverage of the dictionary, readers might be + +interested in a paper by Geoffrey Sampson [4] in which he analyses a + +set of words from a sample of the LOB Corpus[3] that were not in CUV2. + +The recent additions should have gone some way to plugging the gaps + +that his study identified. + + + Page 3 + + + + + + + +THE SPELLINGS + + + + The spelling contains the characters "A" to "Z", "a" to "z", + +hyphen, apostrophe, space, umlaut or diaeresis (HEX 22), cedilla (3C), + +circumflex (5E), acute (5F), grave (60) and tilde (7E). These + +diacritic characters precede the letter that they mark, eg "se~nor". + +(There are also the characters "5" and "6" in "MI5" and "MI6".) + + + +THE PRONUNCIATIONS + + + + The pronunciation uses a set of characters very like the one + +adopted by the Alvey Speech Club for representing IPA in ASCII [2]. + +The system is as follows: + + + + i as in bead N as in sing + + I bid T thin + + e bed D then + + & (ampsnd) bad S shed + + A bard Z beige + + 0 (zero) cod tS etch + + O (cap O) cord dZ edge + + U good + + u food p t k b d g + + V bud m n f v s z + + 3 (three) bird r l w h j + + @ "a" in about + + + +eI as in day R-linking (the sounding + +@U go of a /r/ at the end of a + +aI eye word when it is + +aU cow followed by a vowel) + +oI boy is marked R + +I@ beer eg fAR for "far" + +e@ bare (compare "far away" + +U@ tour with "far beyond"). + + + +Primary stress: apostrophe eg @'baUt ("about") + +Secondary stress : comma eg ,&ntI'septIk + +Plus-sign as in "courtship" and "bookclub" + +'kOt+Sip 'bUk+klVb + + + +When the spelling contains a space and/or a + +hyphen, the pronunciation has one also, eg + +above board @,bVv 'bOd air-raid 'e@-reId + + + +THE SYNTACTIC TAGS + + + + Every entry in the dictionary has at least one syntactic tag + +(part-of-speech code). If an entry has more than one (eg "report" + +noun and verb), they are in ASCII order and separated by commas. A + +code consists of three characters, the first two being the syntactic + +tag and the third a frequency class. The first is one of the capital + +letters "G" to "Z" (inclusive), which have the following meanings: + + + + + Page 4 + + + + + +G Anomalous verb + +H Transitive verb + +I Intransitive verb + +J Both transitive and intransitive verb + + + +K Countable noun + +L Uncountable noun + +M Both countable and uncountable noun + +N Proper noun + + + +O Adjective + +P Adverb + +Q Pronoun + +R Definite article + +S Indefinite article + +T Preposition + +U Prefix + +V Conjunction + +W Interjection + +X Particle + +Y Abbreviation + +Z Not classified + + + + Into the M class go nouns used frequently in both ways, such as + +"coffee" ("a pot of coffee", "two coffees please"), and also nouns + +that are predominantly one or the other; they may be mainly + +uncountable with an occasional countable use, such as "waste" and + +"understanding" ("the barren wastes", "reach an understanding"), or + +mainly countable with an occasional uncountable use, like "ceremony" + +and "line" ("too much ceremony", "stand in line"). + + + + The second character in the tag code is either in the group "0" + +(zero) to "9", "@", or "A" to "E", in which case it indicates how to + +form inflexions, or it is one of the characters "a" to "z", "+" or + +"-", in which case it gives some extra information about the word. + +(Abbreviations have the following extra code symbols, not used by + +other entries: ">", ")", "]", "}", ":", "=" and "~".) + + + + The inflexion codes "0" to "5" are for verbs and have the + +following meanings: + + + +0 stem+s, stem+ing, stem+ed (like "work") + +1 stem+es, stem+ing, stem+ed (like "wish") + +2 replace final "e" by es, ing or ed (like "love") + +3 replace final "y" by ies, ying or ied (like "apply") + +4 stem+s; double final letter +ing or +ed (like "abet") + +5 all inflexions are given in full since at least one of them + + is irregular + + + + The inflexion codes "6" to "@" are for nouns: + + + +6 add s to form the plural (like "cat") + +7 add es (like "fox") + +8 replace final y by ies (like "pony") + +9 plural is the same as the singular (like "sheep") + + + Page 5 + + + + + + (if there is another plural form, this is entered + + separately, eg "herring" - "shoals of herring/ + + we'll have the herrings for tea") + +@ no plural + + + + The remaining inflexion codes "A" to "E" are for adjectives: + + + +A No -r or -st form + +B Comp is +r, Sup is +st (like "subtle") + +C +er, +est (like "light") + +D Change final y to ier, iest (like "heavy") + +E Comp or Sup irregular - given in full + + + + The letters "a" to "z" give extra information about the word. + +The letters "a" to "h" follow verbs, with the following meaning: + + + +a 3rd person sing present tense + +b present participle (-ing form) + +c past tense + +d past participle + +e some other part of the verb + + + +f to h follow anomalous verbs only: + + + +f contraction of pronoun with verb + +g contraction of verb with "not" + +h other contraction + + + + The letters "i" to "o" follow nouns: + + + +i singular form (pl is irregular or non-existent) + +j plural form + +k plural in form but behaves like a singular, + + eg "economics" (may be used as a plural also, + + eg "acoustics is a modern science/ the acoustics + + of this hall are dreadful") + + + +l to o follow proper nouns only: + + + +l forenames of people + +m countries, states, counties + +n towns and cities + +o other + + + + The letters "p" to "t" follow adjectives: + + + +p only used predicatively + +q only used attributively + +r comparative + +s superlative + +t can be attached to a preceding word by a hyphen + + + + The remaining small letters (and "+") are as follows: + + + +u adverb (not interrog or relative) + + + Page 6 + + + + + +v interrogative adverb + +w relative adverb + ++ adverbial particle + + + +x pronoun (not interrog or relative) + +y interrogative pronoun + +z relative pronoun + + + + If the first character of the tag code is "R" to "X" or "Z", the + +second character is always "-", ie there is never any extra + +information about words in these classes. + + + + The following characters are used only after "Y" (the + +abbreviation code): + +> singular noun (see notes below) + +) plural noun + +] both sing and plur + +} uncountable noun + +: title + += proper noun + +~ other + + + + Examples of tags are: K7, countable noun that forms its plural + +by adding es; H3, transitive verb that forms its inflexions like + +"apply"; Ic, past tense of an intransitive verb; Qz, relative pronoun; + +T-, preposition. The syntactic tags are presented in tabular form + +later in this document. + + + + There is, intentionally, some redundancy in this coding system. + +With the exception of "-", any given character in the second position + +only occurs with a particular wordclass; a "6", for example, can only + +qualify a noun, an "r" can only qualify an adjective, and so on. This + +makes the programming a bit easier. There is, obviously, no mnemonic + +significance to the codes; it is not intended that people should have + +to read these codes directly. + + + +THE RARITY FLAGS + + + + The third character of the syntactic tag is either "*", "%" or + +"$". This is a marker of word-frequency. "*" means that the word + +occurs in the most frequent 500 words of the LOB Corpus[3], the Brown + +Corpus[5], the Thorndike-Lorge word count[6] and the American Heritage + +Word Frequency Book[7], ie it occurs in the most frequent 500 of all + +four lists. + + + + The "$" code means that the word is, in my opinion, rare, with my + +opinions being combined to some extent with those of two friends of + +mine. I realise that this definition of rarity seems highly + +unscientific, but there is no appreciably better way of doing it. I + +could perhaps have taken the opinions of many more people, but this + +would have been a long job and I doubt if the resulting list would + +have been much different. The problem is that today's + +computer-readable corpora, while certainly large enough to provide + +data about common words, are nowhere near large enough to provide data + +about rare words. A word that fails to appear in a corpus of several + + + Page 7 + + + + + +million words is not necessarily rare; conversely, a word that appears + +several times in one sample might still be rare in general use. My + +spelling corrector needed to know something about the frequency of + +words in its dictionary and, in the absence of hard data, it was + +better for it to have my estimates than none at all. + + + + The third code "%" is by far the commonest in the dictionary and + +denotes words that are neither "*" nor "$". + + + + The rarity codes are attached to tags rather than to words + +because a word can be common in one use but rare in another. "Go", + +for example, is very common as a verb, but less common as a noun. The + +OALDCE lists "aneroid" as adjective and noun. While I am reasonably + +familiar with this word in the phrase "aneroid barometer", I can't + +remember ever coming across it as a noun. + + + +THE VERB PATTERNS + + + + The final string of letters and numbers, separated by commas, is + +for verbs only, and shows the "verb patterns" - the sentence + +structures - in which the verbs can occur. If an entry has more than + +one verb pattern, they are entered in number order and then in letter + +order within numbers. This (fairly complicated) system is taken + +straight from the OALDCE, and is explained in the book's introduction. + + + +THE SYLLABLE COUNTS + + + + The number of syllables was computed for each word by separate + +algorithms applied to the spelling and the pronunciation. If they + +produced the same number, as they did in the great majority of cases, + +this was entered in the dictionary. The remaining three thousand or + +so I did by hand. + + + + For the great majority of words, the number of syllables is + +obvious. There are a few, however, for which this is not the case. + +The problems generally concern the "@" phoneme. + + + + The sounds "I@" ("pier"), "U@" ("tour") and "aI@" ("hire") seem + +sometimes to be one syllable and sometimes two. I find that my own + +feelings - and those of others I have spoken to - are influenced by + +the spelling of the word. Whereas I am happy to count "higher" as + +having two syllables, I am not so sure about "hire". Similarly with + +"sear" (one) and "seer" (two). The sounds that follow the "@" also + +seem to have an effect. While I might be persuaded that "fire" has + +two syllables, I would be not happy about "fire-alarm" having four. + +Similarly, if "acquire" has three, does "acquiring" have four? + + + + The problem is that the "@" is such a small part of the sound + +that it hardly qualifies as a syllable. If, on the one hand, it + +signifies the presence of a morpheme, its status seems raised and I am + +happy to accept it as a syllable. If, on the other hand, it has no + +special status and, furthermore, the adjacent sounds cause it almost + +to disappear, then I can't bring myself to call it a syllable at all. + +If it is in-between, then I am simply not sure. Being forced to make + +a decision, I have generally counted "fire/hire/wire/pier/tour" and + + + Page 8 + + + + + +the like as one syllable, but, on another day, I might easily have + +counted them as two. + + + + There is another continuum of "@" sounds in the middle of words + +like "labelling". Some seem fairly clear, such as "enamelling"; + +others not so, like "gambling" and "peddling" (and are "gambolling" + +and "pedalling" any different?). I suspect my decisions on these have + +been somewhat arbitrary, depending on whether a pronunciation with + +more "@" or less "@" seemed more natural at the time. + + + + One more group of problematic words are those ending "ion" + +pronounced sometimes "I@n" and sometimes "j@n". I can imagine a vicar + +intoning the word "communion" in church so as to give it a full four + +syllables, but then ordering a case of communion wine over the phone + +and giving it only three. "Champion" in "Champion the Wonder Horse" + +had three but in "We are the champions" it has two. Some of these + +have only one regular pronunciation - "companion", for example, + +clearly has three syllables - but, for the others, I suspect my + +decisions depended on which pronunciation came to mind when I was + +considering them. + + + +THE ABBREVIATION ENTRIES + + + + Largely because of the paper by Geoffrey Sampson referred to + +above, I have included many more abbreviations in the 1992 version of + +the dictionary, but I have done so with some reluctance since they do + +not fit easily into the existing scheme. + + + + There were about 50 abbreviations (examples include "eg", "ie", + +"OAP" and "TNT") in the previous version, because they were listed in + +the main body of the OALDCE. They were not given any distinctive tags + +in the 1986 version of CUV2. This was a nuisance since, for example, + +any algorithm attempting to match spelling and pronunciation would be + +puzzled by an entry such as "etc" pronounced It'set@r@. I have now + +added about 300 abbreviations that seemed to me to be reasonably + +common, and given all abbreviations their own tag. + + + + Some abbreviations, such as "amp" and "rev", seem to behave + +pretty much like ordinary words and I have not marked them as + +abbreviations. The rest now have their own tag - "Y". (The Y tag in + +the previous version was used for adverbial particles; these are now + +tagged P+.) + + + + Some abbreviations clearly have their own pronunciation, eg + +UNESCO, and others clearly don't, eg cwt (hundredweight). I have + +given them their own pronunciation when it seemed to me that the + +abbreviation was sometimes pronounced on its own. For example, I can + +imagine someone saying that some event takes place in dZ&n @n feb (Jan + +and Feb), but I can't imagine them saying it takes place in mAr @n &pr + + _ +(Mar and Apr), so "Jan" gets dZn whereas "Apr" gets 'eIprIl. But this + +is often pretty arbitrary. + + + + It is not uncommon for two words to share the same abbreviation, + +eg "Dr" for "Doctor" and "Drive" or "St" for "Saint" and "Street". It + +would have been a possibility to put in two (or sometimes more) + + + Page 9 + + + + + +entries for such items, along the lines of "convert" (noun and verb), + +but I did not feel that 'd0kt@R (or draIv) was the pronunciation of + +"Dr" in the way that 'k0nv3t (or k@n'v3t) was the pronunciation of + +"convert", so I was unwilling to give such abbreviations two or more + +entries, but at the same time I wanted to put something in the + +pronunciation field, so I just put one of the pronunciations in. + + + + There is also an unsatisfactorily arbitrary quality to some of + +the tags. Abbreviations that can go after an article or possessive + +("my PhD", "an FRS", "the MCC") were tagged singular noun ("Y>"), and + +a few can be plural ("GCSEs") ("Y)"). Some, mostly units of + +measurement ("cc", "rpm"), can be both ("Y]"). Uncountable noun + +abbreviations ("LSD", "TB") get "Y}". Titles ("Mr", "Col") get "Y:" + +while proper names ("Mon", "Aug") or abbreviations likely to form part + +of a proper name ("Ave", "Rd") get "Y=". Others ("asap", "viz") get + +"Y~". Oddly, some organization names seem to be proper names ("RADA", + +"UNESCO") while others don't ("the BBC", "the UN"). + + + + In short, then, I am uneasy about many of the decisions I have + +had to make in order to get these abbreviation entries into the same + +form as the rest of the dictionary, but the important thing is that + +they are now in the dictionary, so a piece of software using the + +dictionary will recognize them, and they are distinctively tagged for + +anyone who wants to take them out. + + + +ACKNOWLEDGEMENTS + + + + Most of the work of extracting the required information from the + +machine-readable OALDCE, putting it into a standard form in CUVOALD + +and generating CUV2 was carried out by me between January 1985 and + +March 1986. I added the rarity flags in 1988 and the syllable counts + +in 1990 and inserted the new entries in March-June 1992. Susan Drew + +keyed in the pronunciations of some of the entries, and the file was + +proofread by Philip Baker, Sylvia Davidson, Ann Jones, Ed Hastings, + +Kate Murray and Diana Whitaker. Deepa Dougal, as part of her MSc + +project, carried out the task of looking up all the words from the LOB + +Corpus in CUV2. + + + +COPYRIGHT + + + + I am making the file available to others, via the Oxford Text + +Archive, so that researchers who need a reasonably large + +computer-usable dictionary do not need to spend months, as I did, + +putting one together. Anyone contemplating commercial use of the file + +should contact the Oxford University Press. + + + +REFERENCES + + + +[1] Hornby A.S., Oxford Advanced Learner's Dictionary of + + Current English, Third Edition, Oxford University + + Press, 1974 + + + +[2] Wells J.W., "A standardised machine-readable phonetic + + notation", IEE conference "Speech input/output: + + techniques and applications" London, Easter 1986 + + + Page 10 + + + + + + + +[3] Hofland K, and S. Johansson, Word Frequencies in British + + and American English, Norwegian Computing Centre for the + + Humanities/ Longman, 1982 + + + +[4] Sampson G., "How fully does a machine-usable dictionary + + cover English text?" Literary and Linguistic Computing, + + Vol 4, No 1, 1989, pp 29-35 + + + +[5] Kucera H. and W.N. Francis, Computational Analysis of + + Present-day American English, Brown University Press, + + 1967 + + + +[6] Thorndike E.L. and I. Lorge, The Teacher's Word Book of + + 30,000 Words, Teachers College, Columbia University, + + 1944 + + + +[7] Carroll J.B., P. Davies and B. Richman, Word Frequency + + Book, American Heritage, 1971 + + + Page 11 + + + + + + + +SYNTACTIC TAGS + + + + FIRST CHARACTER SECOND CHARACTER + + + +VERBS: G Anomalous 0 inflects like "work" + + H Transitive 1 "wish" + + I Intransitive 2 "love" + + J Trans & Intrans 3 "apply" + + 4 "abet" + + 5 irregular + + + + a 3rd pers sing pres tense + + b present participle (-ing) + + c past tense + + d past participle + + e other part of verb + + f contraction pronoun+anom vb + + g contraction anom vb+not + + h contraction anom vb, other + + + +NOUNS: K Countable 6 plural like "cat" + + L Uncountable 7 "fox" + + M C & U 8 "pony" + + N Proper noun 9 pl same as sg, like "salmon" + + @ no plural + + + + i sing form + + j plural form + + k pl but acts sg, like "economics" + + l proper, forename eg "Sandra" + + m proper, country etc, eg "Scotland" + + n proper, town eg "Scunthorpe" + + o other, eg "Saturn" + + + +ADJS: O A no -er or -est form + + B +r, +st like "subtle" + + C +er, +est like "light" + + D y to ier, iest like "heavy" + + E irregular comp &/or sup + + + + p predicative + + q attributive + + r comparative form + + s superlative form + + t can be attached by hyphen eg "bellied" + + + +OTHER: P Adverb u not interrog or relative + + v interrogative + + w relative + + + adverbial particle + + + + Q Pronoun x not interrog or relative + + y interrogative + + z relative + + + Page 12 + + + + + + + + R Definite article - + + S Indefinite article - + + T Preposition - + + U Prefix - + + V Conjunction - + + W Interjection - + + X Particle - + + Y Abbreviation > sing noun + + ) plur noun + + ] both sing and plur + + } uncountable noun + + : title + + = proper noun + + ~ other abbreviation + + Z Not classified - + + + Page 13 + + + + + + + +Samples from CUV2 + +First 50 lines, then 10 lines every 10000, then the last 50. + + + + + +Line 1 + +'em @m Qx$ 1 + +'neath niT T-$ 1 + +'shun SVn W-$ 1 + +'twas tw0z Gf$ 1 + +'tween twin Pu$,T-$ 1 + +'tween-decks 'twin-deks Pu$ 2 + +'twere tw3R Gf$ 1 + +'twill twIl Gf$ 1 + +'twixt twIkst T-$ 1 + +'twould twUd Gf$ 1 + +'un @n Qx$ 1 + +A eI Ki$ 1 + +A's eIz Kj$ 1 + +A-bomb 'eI-b0m K6$ 2 + +A-bombs 'eI-b0mz Kj$ 2 + +A-level 'eI-levl K6% 3 + +A-levels 'eI-levlz Kj% 3 + +AA ,eI'eI Y>% 2 + +ABC ,eI,bi'si Y>% 3 + +ABCs ,eI,bi'siz Y)$ 3 + +AD ,eI'di Y~% 2 + +AGM ,eIdZI'em Y>% 2 + +AIDS eIdz Y}% 1 + +AWOL 'eIw0l Y~% 2 + +Aachen 'Ak@n Nn$ 2 + +Aarhus 'Ahus Nn$ 2 + +Abe eIb Nl$ 1 + +Abercarn '&b@kAn Nn$ 3 + +Aberdare ,&b@'de@R Nn$ 3 + +Aberdeen ,&b@'din Nn% 3 + +Abergavenny ,&b@g@'venI Nn% 5 + +Abergele ,&b@'gelI Nn$ 4 + +Abertillery ,&b@tI'le@rI Nn% 5 + +Aberystwyth ,&b@'rIstwIT Nn% 4 + +Abingdon '&bINd@n Nn% 3 + +Abo '&b@U K6$ 2 + +Aborigine ,&b@'rIdZ@nI K6% 5 + +Aborigines ,&b@'rIdZ@nIz Kj% 5 + +Abos '&b@Uz Kj$ 2 + +Abraham 'eIbr@h&m Nl% 3 + +Accra @'krA Nn% 2 + +Accrington '&krINt@n Nn% 3 + +Achilles @'kIliz Nl% 3 + +Ada 'eId@ Nl% 2 + +Adam '&d@m Nl% 2 + +Addis Ababa ,&dIs '&b@b@ Nn% 5 + +Addressograph @'dres@UgrAf K6$ 4 + +Addressographs @'dres@UgrAfs Kj$ 4 + +Adelaide '&d@leId Nn% 3 + + + Page 14 + + + + + +Adrian 'eIdrI@n Nl% 3 + + + +Line 10001 + +boggling 'b0glIN Ib% 22A,3A + +boggy 'b0gI OD% 2 + +bogie 'b@UgI K6$ 2 + +bogies 'b@UgIz Kj$ 2 + +bogs b0gz Ja%,Kj% 12E,15B + +bogus 'b@Ug@s OA% 2 + +bogy 'b@UgI K8$ 2 + +boh b@U W-% 1 + +bohemian b@U'himI@n K6%,OA% 4 + +bohemians b@U'himI@nz Kj% 4 + + + +Line 20001 + +dins dInz Ja$ 12C + +dint dInt K6% 1 + +dints dInts Kj$ 1 + +diocesan daI'0sIsn K6$,OA% 4 + +diocesans daI'0sIsnz Kj$ 4 + +diocese 'daI@sIs K6% 3 + +dioceses 'daI@sIsIz Kj$ 4 + +dioxide daI'0ksaId K6% 3 + +dioxides daI'0ksaIdz Kj% 3 + +dip dIp J4%,M6% 12A,2C,3A,6A,14 + + + +Line 30001 + +half-tracks 'hAf-tr&ks Kj$ 2 + +half-truth 'hAf-truT K6% 2 + +half-truths 'hAf-truDz Kj% 2 + +half-volley hAf-'v0lI K6% 3 + +half-volleys hAf-'v0lIz Kj% 3 + +half-yearly hAf-'j3lI OA%,Pu% 3 + +halfback 'hAfb&k K6% 2 + +halfbacks 'hAfb&ks Kj% 2 + +halfpennies 'heIpnIz Kj% 2 + +halfpenny 'heIpnI K8% 2 + + + +Line 40001 + +misdealt ,mIs'delt Jc$,Jd$ 22A,6A + +misdeed ,mIs'did K6% 2 + +misdeeds ,mIs'didz Kj% 2 + +misdemeanour ,mIsdI'min@R K6% 4 + +misdemeanours ,mIsdI'min@z Kj% 4 + +misdirect ,mIsdI'rekt H0% 36A + +misdirected ,mIsdI'rektId Hc%,Hd% 46A + +misdirecting ,mIsdI'rektIN Hb% 46A + +misdirection ,mIsdI'rekSn K6$ 4 + +misdirections ,mIsdI'rekSnz Kj$ 4 + + + +Line 50001 + +question-master 'kwestS@n-mAst@R K6% 4 + +question-masters 'kwestS@n-mAst@z Kj% 4 + +questionable 'kwestS@n@bl OA% 4 + +questionably 'kwestS@n@blI Pu% 4 + + + Page 15 + + + + + +questioned 'kwestS@nd Hc%,Hd% 26A,10 + +questioner 'kwestS@n@R K6% 3 + +questioners 'kwestS@n@z Kj% 3 + +questioning 'kwestS@nIN Hb% 36A,10 + +questioningly 'kwestS@nINlI Pu% 4 + +questionnaire ,kwestS@'ne@R K6% 3 + + + +Line 60001 + +statuesque ,st&tSU'esk OA% 3 + +statuette ,st&tSU'et K6% 3 + +statuettes ,st&tSU'ets Kj% 3 + +stature 'st&tS@R L@% 2 + +status 'steIt@s L@% 2 + +status quo ,steIt@s 'kw@U Ki% 3 + +statute 'st&tSut K6% 2 + +statute-book 'st&tSut-bUk K6% 3 + +statute-books 'st&tSut-bUks Kj$ 3 + +statutes 'st&tSuts Kj% 2 + + + +Line 70001 + +wolfram 'wUlfr@m L@$ 2 + +wolfs wUlfs Ha% 16A,15A + +wolves wUlvz Kj% 1 + +woman 'wUm@n Ki* 2 + +womanhood 'wUm@nhUd L@% 3 + +womanish 'wUm@nIS OA% 3 + +womanize 'wUm@naIz I2% 3 + +womanized 'wUm@naIzd Ic%,Id% 3 + +womanizer 'wUm@naIz@R K6% 4 + +womanizers 'wUm@naIz@z Kj% 4 + + + +Line 70597 + +zest zest L@% 1 + +zestful 'zestf@l OA% 2 + +zestfully 'zestf@lI Pu% 3 + +zigzag 'zIgz&g I4%,K6%,Pu% 2 + +zigzagged 'zIgz&gd Ic%,Id% 2 + +zigzagging 'zIgz&gIN Ib% 3 + +zigzags 'zIgz&gz Ia%,Kj% 2 + +zinc zINk L@% 1 + +zing zIN L@% 1 + +zinnia 'zInI@ K6$ 3 + +zinnias 'zInI@z Kj$ 3 + +zip zIp H4%,K6% 16A,15B,22 + +zip code 'zIp k@Ud K6% 2 + +zip codes 'zIp k@Udz Kj% 2 + +zip-fastener 'zIp-f&sn@R K6% 3 + +zip-fasteners 'zIp-f&sn@z Kj% 3 + +zipped zIpt Hc%,Hd% 16A,15B,22 + +zipper 'zIp@R K6% 2 + +zippers 'zIp@z Kj% 2 + +zipping 'zIpIN Hb% 26A,15B,22 + +zips zIps Ha%,Kj% 16A,15B,22 + +zither 'zID@R K6% 2 + +zithers 'zID@z Kj% 2 + + + Page 16 + + + + + +zloty 'zl0tI K6$ 2 + +zlotys 'zl0tIz Kj$ 2 + +zodiac 'z@UdI&k K6% 3 + +zodiacs 'z@UdI&ks Kj$ 3 + +zombie 'z0mbI K6% 2 + +zombies 'z0mbIz Kj% 2 + +zonal 'z@Unl OA% 2 + +zone z@Un H2%,K6% 16A + +zoned z@Und Hc%,Hd% 16A + +zones z@Unz Ha%,Kj% 16A + +zoning 'z@UnIN Hb%,L@% 26A + +zoo zu K6% 1 + +zoological ,zu@'l0dZIkl OA% 5 + +zoologist zu'0l@dZIst K6% 4 + +zoologists zu'0l@dZIsts Kj% 4 + +zoology zu'0l@dZI L@% 4 + +zoom zum I0%,L@% 12A,2C + +zoomed zumd Ic%,Id% 12A,2C + +zooming 'zumIN Ib% 22A,2C + +zooms zumz Ia% 12A,2C + +zoophyte 'z@U@faIt K6$ 3 + +zoophytes 'z@U@faIts Kj$ 3 + +zoos zuz Kj% 1 + +zoot suit 'zut sut K6$ 2 + +zoot suits 'zut suts Kj$ 2 + +zucchini zU'kinI M9% 3 + +zucchinis zU'kinIz Kj$ 3 + + + +End of input file after line 70646. + +
\ No newline at end of file diff --git a/next-lib/src/parse/oald/src/lexicon2.pl b/next-lib/src/parse/oald/src/lexicon2.pl new file mode 100644 index 000000000..e31be8520 --- /dev/null +++ b/next-lib/src/parse/oald/src/lexicon2.pl @@ -0,0 +1,42757 @@ +% Prolog lexicon for SHARDS, from OALD machine-readable dictionary +% Produced by asc2lex, Matthew Purver 19/04/2001 +% +% Manually edited for irregulars, CMTs, determiners etc. +% +% As this material is obtained from the OALD, it is freely available +% for RESEARCH PURPOSES ONLY. See the OTA's TEI header in +% ascii_0710-2.txt for more details. + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Morphological interface predicates +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% noun/6 +% noun( ?Stem, ?Word, ?Type, ?Number, ?Gender, ?Case ) +% +% Morphological interface to noun/4 - relates word stem +% Stem to surface word Word. +% Number will be 'sing' or 'plur' +% Gender currently undefined +% Case currently always 'case' (i.e. any) +% Type will be 'mass' or 'count' (both may succeed) +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +noun( Word, Word, Type, sing, _Gender, case ) :- + noun( Word, _Plural, RawType, _SemClass ), + noun_type( RawType, Type ). + +noun( Stem, Word, Type, plur, _Gender, case ) :- + noun( Stem, Word, RawType, _SemClass ), + noun_type( RawType, Type ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% noun_type( +RawType, ?Type ) +% +% Returns type as defined in lexicon, except for 'both' +% which gets converted to 'mass' or 'count' +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +noun_type( Type, Type ) :- + \+ Type = both. +noun_type( both, mass ). +noun_type( both, count ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% verb/5 +% verb( ?Stem, ?Word, ?VForm, ?Number, ?Type ) +% +% Morphological interface to verb/7 - relates word stem +% Stem to surface word Word. +% VForm currently 'inf', 'pres' or 'past' +% Number currently 's3', 'nons3' or 'person' (i.e. undefined) +% Type will be 'intran', 'tran', 'ditran', etc. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +verb( Word, Word, inf, person, Type ) :- + verb( Word, _, _, _, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +verb( Word, Word, pres, nons3, Type ) :- + verb( Word, _, _, _, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +verb( Stem, Word, pres, s3, Type ) :- + verb( Stem, Word, _, _, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +verb( Stem, Word, past, person, Type ) :- + verb( Stem, _, _, Word, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% verb_type( +RawType, +CatList, ?Type ) +% +% Type is a verb subcategory type determined from the +% RawType atom and CatList list of numbers defined in +% the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +verb_type( intran, _, intran ). % VP -> V +verb_type( tran, _, tran ). % VP -> V NP +verb_type( _, CatList, ditran ) :- % VP -> V NP NP + memberchk( '12A', CatList ); + memberchk( '12B', CatList ); + memberchk( '12C', CatList ). +verb_type( _, CatList, stran ) :- % VP -> V [question] + memberchk( '10', CatList ). +verb_type( _, CatList, pp_to ) :- % VP -> V PP + memberchk( '3A', CatList ). +verb_type( _, CatList, pp_for ) :- % VP -> V PP + memberchk( '3A', CatList ). +verb_type( _, CatList, subjraise ) :- % VP -> V [to+inf] (subject raising) + memberchk( '4E', CatList ). +verb_type( _, CatList, subjcon ) :- % VP -> V [to+inf] (subject control) + memberchk( '7A', CatList ). +verb_type( _, CatList, aux ) :- % VP -> V [inf] (auxiliary) + memberchk( '5', CatList ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% adj/3 +% adj( ?Stem, ?Word, ?Type ) +% +% Morphological interface to adj/4 - relates word stem +% Stem to surface word Word. +% Type will be 'simple', 'comparative' or 'superlative' +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +adj( Word, Word, simple ) :- + adj( Word, _, _, _ ). + +adj( Stem, Word, comparative ) :- + adj( Stem, Word, _, _ ). + +adj( Stem, Word, superlative ) :- + adj( Stem, _, Word, _ ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% General predicates +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% word( ?Word ) +% +% Succeeds if Word is a word defined in the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +word( Word ) :- + noun( _, Word, _, _, _, _ ); + pron( Word, _, _, _ ); + verb( _, Word, _, _, _ ); + adj( _, Word, _ ); + adv( Word, _ ); + prep( Word, _ ); + conj( Word, _ ); + det( Word, _, _ ); + misc( Word, _, _ ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% open_class_word( ?Word ) +% +% Succeeds if Word is a noun/verb/adj/adv in the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +open_class_word( Word ) :- + noun( _, Word, _, _, _, _ ); + verb( _, Word, _, _, _ ); + adj( _, Word, _ ); + adv( Word, _ ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% unknown_word( +Word ) +% +% Succeeds if Word is NOT defined in the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +unknown_word( Word ) :- + \+ word( Word ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +verb( 'hoover', 'hoovers', 'hoovering', 'hoovered', 'hoovered', tran, ['6A'] ). +verb( 'latinize', 'latinizes', 'latinizing', 'latinized', 'latinized', tran, [] ). +verb( 'roneo', 'roneos', 'roneoing', 'roneoed', 'roneoed', tran, [] ). +verb( 'x-ray', 'x-rays', 'x-raying', 'x-rayed', 'x-rayed', tran, ['6A'] ). +verb( 'xerox', 'xeroxes', 'xeroxing', 'xeroxed', 'xeroxed', tran, [] ). +verb( 'abandon', 'abandons', 'abandoning', 'abandoned', 'abandoned', tran, ['6A','14'] ). +verb( 'abase', 'abases', 'abasing', 'abased', 'abased', tran, ['6B'] ). +verb( 'abash', 'abashes', 'abashing', 'abashed', 'abashed', tran, ['6A'] ). +verb( 'abate', 'abates', 'abating', 'abated', 'abated', _, ['2A','6A'] ). +verb( 'abbreviate', 'abbreviates', 'abbreviating', 'abbreviated', 'abbreviated', tran, ['6A','14'] ). +verb( 'abdicate', 'abdicates', 'abdicating', 'abdicated', 'abdicated', _, ['2A','6A'] ). +verb( 'abduct', 'abducts', 'abducting', 'abducted', 'abducted', tran, ['6A'] ). +verb( 'abet', 'abets', 'abetting', 'abetted', 'abetted', tran, ['6A','14'] ). +verb( 'abhor', 'abhors', 'abhorring', 'abhorred', 'abhorred', tran, ['6A'] ). +verb( 'abide', 'abides', 'abiding', 'abided', 'abided', _, ['2C','3A','6A'] ). +verb( 'abjure', 'abjures', 'abjuring', 'abjured', 'abjured', tran, ['6A'] ). +verb( 'abolish', 'abolishes', 'abolishing', 'abolished', 'abolished', tran, ['6A'] ). +verb( 'abominate', 'abominates', 'abominating', 'abominated', 'abominated', tran, ['6A','6C'] ). +verb( 'abort', 'aborts', 'aborting', 'aborted', 'aborted', _, ['2A','6A'] ). +verb( 'abound', 'abounds', 'abounding', 'abounded', 'abounded', intran, ['3A'] ). +verb( 'about-face', 'about-faces', 'about-facing', 'about-faced', 'about-faced', intran, [] ). +verb( 'abrade', 'abrades', 'abrading', 'abraded', 'abraded', tran, ['6A'] ). +verb( 'abridge', 'abridges', 'abridging', 'abridged', 'abridged', tran, ['6A'] ). +verb( 'abrogate', 'abrogates', 'abrogating', 'abrogated', 'abrogated', tran, ['6A'] ). +verb( 'abscond', 'absconds', 'absconding', 'absconded', 'absconded', intran, ['2A','3A'] ). +verb( 'absent', 'absents', 'absenting', 'absented', 'absented', tran, ['6B','14'] ). +verb( 'absolve', 'absolves', 'absolving', 'absolved', 'absolved', tran, ['6A','14'] ). +verb( 'absorb', 'absorbs', 'absorbing', 'absorbed', 'absorbed', tran, ['6A'] ). +verb( 'abstain', 'abstains', 'abstaining', 'abstained', 'abstained', intran, ['2A','3A'] ). +verb( 'abstract', 'abstracts', 'abstracting', 'abstracted', 'abstracted', tran, ['6A','14'] ). +verb( 'abuse', 'abuses', 'abusing', 'abused', 'abused', tran, ['6A'] ). +verb( 'abut', 'abuts', 'abutting', 'abutted', 'abutted', intran, ['3A'] ). +verb( 'accede', 'accedes', 'acceding', 'acceded', 'acceded', intran, ['2A','3A'] ). +verb( 'accelerate', 'accelerates', 'accelerating', 'accelerated', 'accelerated', _, ['2A','6A'] ). +verb( 'accent', 'accents', 'accenting', 'accented', 'accented', tran, ['6A'] ). +verb( 'accentuate', 'accentuates', 'accentuating', 'accentuated', 'accentuated', tran, ['6A'] ). +verb( 'accept', 'accepts', 'accepting', 'accepted', 'accepted', _, ['2A','6A','9','16B'] ). +verb( 'acclaim', 'acclaims', 'acclaiming', 'acclaimed', 'acclaimed', tran, ['6A','16B','23'] ). +verb( 'acclimate', 'acclimates', 'acclimating', 'acclimated', 'acclimated', _, [] ). +verb( 'acclimatize', 'acclimatizes', 'acclimatizing', 'acclimatized', 'acclimatized', _, ['2A','14'] ). +verb( 'accommodate', 'accommodates', 'accommodating', 'accommodated', 'accommodated', tran, ['6A','14'] ). +verb( 'accompany', 'accompanies', 'accompanying', 'accompanied', 'accompanied', tran, ['6A','14'] ). +verb( 'accomplish', 'accomplishes', 'accomplishing', 'accomplished', 'accomplished', tran, ['6A'] ). +verb( 'accord', 'accords', 'according', 'accorded', 'accorded', _, ['2A','2C','3A','12A','13A'] ). +verb( 'accost', 'accosts', 'accosting', 'accosted', 'accosted', tran, ['6A'] ). +verb( 'account', 'accounts', 'accounting', 'accounted', 'accounted', _, ['3A','25'] ). +verb( 'accredit', 'accredits', 'accrediting', 'accredited', 'accredited', tran, ['14'] ). +verb( 'accrue', 'accrues', 'accruing', 'accrued', 'accrued', intran, ['2A','3A'] ). +verb( 'accumulate', 'accumulates', 'accumulating', 'accumulated', 'accumulated', _, ['2A','6A'] ). +verb( 'accuse', 'accuses', 'accusing', 'accused', 'accused', tran, ['6A','14'] ). +verb( 'accustom', 'accustoms', 'accustoming', 'accustomed', 'accustomed', tran, ['14'] ). +verb( 'ache', 'aches', 'aching', 'ached', 'ached', intran, ['2A','3A','4A'] ). +verb( 'achieve', 'achieves', 'achieving', 'achieved', 'achieved', tran, ['6A'] ). +verb( 'acidify', 'acidifies', 'acidifying', 'acidified', 'acidified', _, ['2A','6A'] ). +verb( 'acknowledge', 'acknowledges', 'acknowledging', 'acknowledged', 'acknowledged', tran, ['6A','6C','9','16B','24A','25'] ). +verb( 'acquaint', 'acquaints', 'acquainting', 'acquainted', 'acquainted', tran, ['14'] ). +verb( 'acquiesce', 'acquiesces', 'acquiescing', 'acquiesced', 'acquiesced', intran, ['2A','3A'] ). +verb( 'acquire', 'acquires', 'acquiring', 'acquired', 'acquired', tran, ['6A'] ). +verb( 'acquit', 'acquits', 'acquitting', 'acquitted', 'acquitted', tran, ['6A','14','16B'] ). +verb( 'act', 'acts', 'acting', 'acted', 'acted', _, ['2A','2C','3A','6A','15B'] ). +verb( 'activate', 'activates', 'activating', 'activated', 'activated', tran, ['6A'] ). +verb( 'actuate', 'actuates', 'actuating', 'actuated', 'actuated', tran, ['6A'] ). +verb( 'ad-lib', 'ad-libs', 'ad-libbing', 'ad-libbed', 'ad-libbed', intran, ['2A'] ). +verb( 'adapt', 'adapts', 'adapting', 'adapted', 'adapted', tran, ['6A','14'] ). +verb( 'add', 'adds', 'adding', 'added', 'added', _, ['2C','3A','6A','9','14','15B'] ). +verb( 'addict', 'addicts', 'addicting', 'addicted', 'addicted', tran, [] ). +verb( 'addle', 'addles', 'addling', 'addled', 'addled', _, ['2A','6A'] ). +verb( 'address', 'addresses', 'addressing', 'addressed', 'addressed', tran, ['6A','14','16B'] ). +verb( 'adduce', 'adduces', 'adducing', 'adduced', 'adduced', tran, ['6A'] ). +verb( 'adhere', 'adheres', 'adhering', 'adhered', 'adhered', intran, ['2A','3A'] ). +verb( 'adjoin', 'adjoins', 'adjoining', 'adjoined', 'adjoined', _, ['2A','6A'] ). +verb( 'adjourn', 'adjourns', 'adjourning', 'adjourned', 'adjourned', _, ['2A','2C','6A'] ). +verb( 'adjudge', 'adjudges', 'adjudging', 'adjudged', 'adjudged', tran, ['9','14','25'] ). +verb( 'adjudicate', 'adjudicates', 'adjudicating', 'adjudicated', 'adjudicated', _, ['2A','3A','6A','14','25'] ). +verb( 'adjure', 'adjures', 'adjuring', 'adjured', 'adjured', tran, ['17'] ). +verb( 'adjust', 'adjusts', 'adjusting', 'adjusted', 'adjusted', tran, ['6A','14'] ). +verb( 'administer', 'administers', 'administering', 'administered', 'administered', _, ['6A','14'] ). +verb( 'admire', 'admires', 'admiring', 'admired', 'admired', tran, ['6A'] ). +verb( 'admit', 'admits', 'admitting', 'admitted', 'admitted', _, ['3A','6A','6C','9','14','25'] ). +verb( 'admix', 'admixes', 'admixing', 'admixed', 'admixed', _, ['2A','6A'] ). +verb( 'admonish', 'admonishes', 'admonishing', 'admonished', 'admonished', tran, ['6A','14'] ). +verb( 'adopt', 'adopts', 'adopting', 'adopted', 'adopted', tran, ['6A'] ). +verb( 'adore', 'adores', 'adoring', 'adored', 'adored', tran, ['6A','6C'] ). +verb( 'adorn', 'adorns', 'adorning', 'adorned', 'adorned', tran, ['6A','14'] ). +verb( 'adulterate', 'adulterates', 'adulterating', 'adulterated', 'adulterated', tran, ['6A','14'] ). +verb( 'adumbrate', 'adumbrates', 'adumbrating', 'adumbrated', 'adumbrated', tran, ['6A'] ). +verb( 'advance', 'advances', 'advancing', 'advanced', 'advanced', _, ['2A','2B','3A','6A','12A','13A','14'] ). +verb( 'advantage', 'advantages', 'advantaging', 'advantaged', 'advantaged', tran, ['6A'] ). +verb( 'adventure', 'adventures', 'adventuring', 'adventured', 'adventured', tran, [] ). +verb( 'advert', 'adverts', 'adverting', 'adverted', 'adverted', intran, ['3A'] ). +verb( 'advertise', 'advertises', 'advertising', 'advertised', 'advertised', _, ['2A','3A','6A'] ). +verb( 'advise', 'advises', 'advising', 'advised', 'advised', _, ['3A','6A','6C','14','17','20','21'] ). +verb( 'advocate', 'advocates', 'advocating', 'advocated', 'advocated', tran, ['6A','6C'] ). +verb( 'aerate', 'aerates', 'aerating', 'aerated', 'aerated', tran, ['6A'] ). +verb( 'affect', 'affects', 'affecting', 'affected', 'affected', tran, ['6A','7A'] ). +verb( 'affiance', 'affiances', 'affiancing', 'affianced', 'affianced', tran, ['6A'] ). +verb( 'affiliate', 'affiliates', 'affiliating', 'affiliated', 'affiliated', _, ['2A','6A','14'] ). +verb( 'affirm', 'affirms', 'affirming', 'affirmed', 'affirmed', _, ['2A','6A','9','14'] ). +verb( 'affix', 'affixes', 'affixing', 'affixed', 'affixed', tran, ['6A','14'] ). +verb( 'afflict', 'afflicts', 'afflicting', 'afflicted', 'afflicted', tran, ['6A','14'] ). +verb( 'afford', 'affords', 'affording', 'afforded', 'afforded', tran, ['6A','7A','12A','13A'] ). +verb( 'afforest', 'afforests', 'afforesting', 'afforested', 'afforested', tran, ['6A'] ). +verb( 'affranchise', 'affranchises', 'affranchising', 'affranchised', 'affranchised', tran, ['6A'] ). +verb( 'affront', 'affronts', 'affronting', 'affronted', 'affronted', tran, ['6A'] ). +verb( 'age', 'ages', 'aging', 'aged', 'aged', _, ['2A','6A'] ). +verb( 'agglomerate', 'agglomerates', 'agglomerating', 'agglomerated', 'agglomerated', _, ['2A','6A'] ). +verb( 'agglutinate', 'agglutinates', 'agglutinating', 'agglutinated', 'agglutinated', tran, ['2A','6A'] ). +verb( 'aggrandize', 'aggrandizes', 'aggrandizing', 'aggrandized', 'aggrandized', tran, ['6A'] ). +verb( 'aggravate', 'aggravates', 'aggravating', 'aggravated', 'aggravated', tran, ['6A'] ). +verb( 'aggregate', 'aggregates', 'aggregating', 'aggregated', 'aggregated', _, ['2A','2E','6A'] ). +verb( 'aggrieve', 'aggrieves', 'aggrieving', 'aggrieved', 'aggrieved', tran, [] ). +verb( 'agitate', 'agitates', 'agitating', 'agitated', 'agitated', _, ['3A','6A'] ). +verb( 'agree', 'agrees', 'agreeing', 'agreed', 'agreed', _, ['2A','2C','3A','3B','4C','6A','7A'] ). +verb( 'aid', 'aids', 'aiding', 'aided', 'aided', tran, ['6A','14','17'] ). +verb( 'ail', 'ails', 'ailing', 'ailed', 'ailed', _, ['2A','2B','6A'] ). +verb( 'aim', 'aims', 'aiming', 'aimed', 'aimed', _, ['2A','3A','4A','6A','14'] ). +verb( 'air', 'airs', 'airing', 'aired', 'aired', tran, ['6A'] ). +verb( 'alarm', 'alarms', 'alarming', 'alarmed', 'alarmed', tran, ['6A'] ). +verb( 'alert', 'alerts', 'alerting', 'alerted', 'alerted', tran, ['6A'] ). +verb( 'alienate', 'alienates', 'alienating', 'alienated', 'alienated', tran, ['6A','14'] ). +verb( 'alight', 'alights', 'alighting', 'alighted', 'alighted', intran, ['2A','3A'] ). +verb( 'align', 'aligns', 'aligning', 'aligned', 'aligned', _, ['2A','3A','6A','14'] ). +verb( 'allay', 'allays', 'allaying', 'allayed', 'allayed', tran, ['6A'] ). +verb( 'allege', 'alleges', 'alleging', 'alleged', 'alleged', tran, ['6A','9'] ). +verb( 'alleviate', 'alleviates', 'alleviating', 'alleviated', 'alleviated', tran, ['6A'] ). +verb( 'allocate', 'allocates', 'allocating', 'allocated', 'allocated', tran, ['6A','14'] ). +verb( 'allot', 'allots', 'allotting', 'allotted', 'allotted', tran, ['6A','12A','13A','14'] ). +verb( 'allow', 'allows', 'allowing', 'allowed', 'allowed', _, ['3A','6A','6C','9','12A','13A','14','15B','17','25'] ). +verb( 'alloy', 'alloys', 'alloying', 'alloyed', 'alloyed', tran, ['6A'] ). +verb( 'allude', 'alludes', 'alluding', 'alluded', 'alluded', intran, ['3A'] ). +verb( 'allure', 'allures', 'alluring', 'allured', 'allured', tran, ['6A','14','17'] ). +verb( 'ally', 'allies', 'allying', 'allied', 'allied', tran, ['14'] ). +verb( 'alter', 'alters', 'altering', 'altered', 'altered', _, ['2A','6A'] ). +verb( 'alternate', 'alternates', 'alternating', 'alternated', 'alternated', _, ['3A','6A','14'] ). +verb( 'amalgamate', 'amalgamates', 'amalgamating', 'amalgamated', 'amalgamated', _, ['2A','6A'] ). +verb( 'amass', 'amasses', 'amassing', 'amassed', 'amassed', tran, ['6A'] ). +verb( 'amaze', 'amazes', 'amazing', 'amazed', 'amazed', tran, ['6A'] ). +verb( 'amble', 'ambles', 'ambling', 'ambled', 'ambled', intran, ['2A','2C'] ). +verb( 'ambuscade', 'ambuscades', 'ambuscading', 'ambuscaded', 'ambuscaded', tran, [] ). +verb( 'ambush', 'ambushes', 'ambushing', 'ambushed', 'ambushed', tran, ['6A'] ). +verb( 'ameliorate', 'ameliorates', 'ameliorating', 'ameliorated', 'ameliorated', _, ['2A','6A'] ). +verb( 'amend', 'amends', 'amending', 'amended', 'amended', _, ['2A','6A'] ). +verb( 'amortize', 'amortizes', 'amortizing', 'amortized', 'amortized', tran, ['6A'] ). +verb( 'amount', 'amounts', 'amounting', 'amounted', 'amounted', intran, ['3A'] ). +verb( 'amplify', 'amplifies', 'amplifying', 'amplified', 'amplified', tran, ['6A'] ). +verb( 'amputate', 'amputates', 'amputating', 'amputated', 'amputated', tran, ['6A'] ). +verb( 'amuse', 'amuses', 'amusing', 'amused', 'amused', tran, ['6A'] ). +verb( 'anaesthetize', 'anaesthetizes', 'anaesthetizing', 'anaesthetized', 'anaesthetized', tran, ['6A'] ). +verb( 'analyse', 'analyses', 'analysing', 'analysed', 'analysed', tran, ['6A'] ). +verb( 'analyze', 'analyzes', 'analyzing', 'analyzed', 'analyzed', tran, ['6A'] ). +verb( 'anathematize', 'anathematizes', 'anathematizing', 'anathematized', 'anathematized', _, [] ). +verb( 'anchor', 'anchors', 'anchoring', 'anchored', 'anchored', _, ['2A','6A'] ). +verb( 'anesthetize', 'anesthetizes', 'anesthetizing', 'anesthetized', 'anesthetized', tran, ['6A'] ). +verb( 'anger', 'angers', 'angering', 'angered', 'angered', tran, ['6A'] ). +verb( 'angle', 'angles', 'angling', 'angled', 'angled', _, ['2A','3A','6A'] ). +verb( 'angle-park', 'angle-parks', 'angle-parking', 'angle-parked', 'angle-parked', _, [] ). +verb( 'anglicize', 'anglicizes', 'anglicizing', 'anglicized', 'anglicized', tran, ['6A'] ). +verb( 'animadvert', 'animadverts', 'animadverting', 'animadverted', 'animadverted', intran, ['3A'] ). +verb( 'animate', 'animates', 'animating', 'animated', 'animated', tran, ['6A','14'] ). +verb( 'anneal', 'anneals', 'annealing', 'annealed', 'annealed', tran, ['6A'] ). +verb( 'annex', 'annexes', 'annexing', 'annexed', 'annexed', tran, ['6A','14'] ). +verb( 'annihilate', 'annihilates', 'annihilating', 'annihilated', 'annihilated', tran, ['6A'] ). +verb( 'annotate', 'annotates', 'annotating', 'annotated', 'annotated', tran, ['6A'] ). +verb( 'announce', 'announces', 'announcing', 'announced', 'announced', tran, ['6A','9','14'] ). +verb( 'annoy', 'annoys', 'annoying', 'annoyed', 'annoyed', tran, ['6A'] ). +verb( 'annul', 'annuls', 'annulling', 'annulled', 'annulled', tran, ['6A'] ). +verb( 'annunciate', 'annunciates', 'annunciating', 'annunciated', 'annunciated', tran, ['6A'] ). +verb( 'anoint', 'anoints', 'anointing', 'anointed', 'anointed', tran, ['6A','14','23'] ). +verb( 'answer', 'answers', 'answering', 'answered', 'answered', _, ['2A','2C','3A','6A','9','12A','15B'] ). +verb( 'antagonize', 'antagonizes', 'antagonizing', 'antagonized', 'antagonized', tran, ['6A'] ). +verb( 'antedate', 'antedates', 'antedating', 'antedated', 'antedated', tran, ['6A'] ). +verb( 'anticipate', 'anticipates', 'anticipating', 'anticipated', 'anticipated', tran, ['6A','6C','9'] ). +verb( 'ape', 'apes', 'aping', 'aped', 'aped', tran, [] ). +verb( 'apologize', 'apologizes', 'apologizing', 'apologized', 'apologized', intran, ['2A','3A'] ). +verb( 'apostrophize', 'apostrophizes', 'apostrophizing', 'apostrophized', 'apostrophized', tran, [] ). +verb( 'appal', 'appals', 'appalling', 'appalled', 'appalled', tran, ['6A'] ). +verb( 'apparel', 'apparels', 'apparelling', 'apparelled', 'apparelled', tran, [] ). +verb( 'appeal', 'appeals', 'appealing', 'appealed', 'appealed', intran, ['2A','3A'] ). +verb( 'appear', 'appears', 'appearing', 'appeared', 'appeared', intran, ['2A','2C','4D','4E'] ). +verb( 'appease', 'appeases', 'appeasing', 'appeased', 'appeased', tran, ['6A'] ). +verb( 'append', 'appends', 'appending', 'appended', 'appended', tran, ['6A','14'] ). +verb( 'appertain', 'appertains', 'appertaining', 'appertained', 'appertained', intran, ['3A'] ). +verb( 'applaud', 'applauds', 'applauding', 'applauded', 'applauded', _, ['2A','2B','6A'] ). +verb( 'appliqu_e', 'appliqu_es', 'appliqu_eing', 'appliqu_eed', 'appliqu_eed', tran, [] ). +verb( 'apply', 'applies', 'applying', 'applied', 'applied', _, ['2C','3A','6A','14'] ). +verb( 'appoint', 'appoints', 'appointing', 'appointed', 'appointed', tran, ['6A','9','14','16A','23','25'] ). +verb( 'apportion', 'apportions', 'apportioning', 'apportioned', 'apportioned', tran, ['6A','12B','13B','14'] ). +verb( 'appraise', 'appraises', 'appraising', 'appraised', 'appraised', tran, ['6A'] ). +verb( 'appreciate', 'appreciates', 'appreciating', 'appreciated', 'appreciated', _, ['2B','6A','9','10'] ). +verb( 'apprehend', 'apprehends', 'apprehending', 'apprehended', 'apprehended', tran, ['6A','9'] ). +verb( 'apprentice', 'apprentices', 'apprenticing', 'apprenticed', 'apprenticed', tran, ['6A','14'] ). +verb( 'apprise', 'apprises', 'apprising', 'apprised', 'apprised', tran, ['14'] ). +verb( 'approach', 'approaches', 'approaching', 'approached', 'approached', _, ['2A','6A'] ). +verb( 'appropriate', 'appropriates', 'appropriating', 'appropriated', 'appropriated', tran, ['6A','14'] ). +verb( 'approve', 'approves', 'approving', 'approved', 'approved', _, ['3A','6A'] ). +verb( 'approximate', 'approximates', 'approximating', 'approximated', 'approximated', _, ['3A','6A'] ). +verb( 'aquaplane', 'aquaplanes', 'aquaplaning', 'aquaplaned', 'aquaplaned', intran, [] ). +verb( 'arbitrate', 'arbitrates', 'arbitrating', 'arbitrated', 'arbitrated', _, ['2A','6A'] ). +verb( 'arch', 'arches', 'arching', 'arched', 'arched', _, ['2C','6A'] ). +verb( 'argue', 'argues', 'arguing', 'argued', 'argued', _, ['2A','2C','3A','6A','9','14'] ). +verb( 'arise', 'arises', 'arising', 'arose', 'arisen', intran, ['2A','3A'] ). +verb( 'arm', 'arms', 'arming', 'armed', 'armed', _, ['2A','6A','14'] ). +verb( 'arouse', 'arouses', 'arousing', 'aroused', 'aroused', tran, ['6A','14'] ). +verb( 'arraign', 'arraigns', 'arraigning', 'arraigned', 'arraigned', tran, ['6A','14'] ). +verb( 'arrange', 'arranges', 'arranging', 'arranged', 'arranged', _, ['3A','4C','6A','14','15A'] ). +verb( 'array', 'arrays', 'arraying', 'arrayed', 'arrayed', tran, ['6A','15A'] ). +verb( 'arrest', 'arrests', 'arresting', 'arrested', 'arrested', tran, ['6A'] ). +verb( 'arrive', 'arrives', 'arriving', 'arrived', 'arrived', intran, ['2A','2C','3A'] ). +verb( 'arrogate', 'arrogates', 'arrogating', 'arrogated', 'arrogated', tran, ['14'] ). +verb( 'article', 'articles', 'articling', 'articled', 'articled', tran, [] ). +verb( 'articulate', 'articulates', 'articulating', 'articulated', 'articulated', _, ['2C','6A','15A'] ). +verb( 'ascend', 'ascends', 'ascending', 'ascended', 'ascended', _, ['2A','2C','6A'] ). +verb( 'ascertain', 'ascertains', 'ascertaining', 'ascertained', 'ascertained', tran, ['6A','8','9','10','17'] ). +verb( 'ascribe', 'ascribes', 'ascribing', 'ascribed', 'ascribed', tran, ['14'] ). +verb( 'ask', 'asks', 'asking', 'asked', 'asked', _, ['3A','6A','7A','8','9','10','12C','14','15B','17','20','21'] ). +verb( 'asperse', 'asperses', 'aspersing', 'aspersed', 'aspersed', tran, ['6A'] ). +verb( 'asphalt', 'asphalts', 'asphalting', 'asphalted', 'asphalted', tran, ['6A'] ). +verb( 'asphyxiate', 'asphyxiates', 'asphyxiating', 'asphyxiated', 'asphyxiated', tran, ['6A'] ). +verb( 'aspirate', 'aspirates', 'aspirating', 'aspirated', 'aspirated', tran, [] ). +verb( 'aspire', 'aspires', 'aspiring', 'aspired', 'aspired', intran, ['3A','4A'] ). +verb( 'assail', 'assails', 'assailing', 'assailed', 'assailed', tran, ['6A','14'] ). +verb( 'assassinate', 'assassinates', 'assassinating', 'assassinated', 'assassinated', tran, ['6A'] ). +verb( 'assault', 'assaults', 'assaulting', 'assaulted', 'assaulted', tran, ['6A'] ). +verb( 'assay', 'assays', 'assaying', 'assayed', 'assayed', tran, ['6A','7A'] ). +verb( 'assemble', 'assembles', 'assembling', 'assembled', 'assembled', _, ['2A','6A'] ). +verb( 'assent', 'assents', 'assenting', 'assented', 'assented', intran, ['2A','3A'] ). +verb( 'assert', 'asserts', 'asserting', 'asserted', 'asserted', tran, ['6A','9','25'] ). +verb( 'assess', 'assesses', 'assessing', 'assessed', 'assessed', tran, ['6A','14'] ). +verb( 'asseverate', 'asseverates', 'asseverating', 'asseverated', 'asseverated', tran, ['6A','9'] ). +verb( 'assign', 'assigns', 'assigning', 'assigned', 'assigned', tran, ['12A','13A','13B','14','17'] ). +verb( 'assimilate', 'assimilates', 'assimilating', 'assimilated', 'assimilated', _, ['2A','3A','6A'] ). +verb( 'assist', 'assists', 'assisting', 'assisted', 'assisted', _, ['2A','3A','6A','14','17'] ). +verb( 'associate', 'associates', 'associating', 'associated', 'associated', _, ['3A','14'] ). +verb( 'assuage', 'assuages', 'assuaging', 'assuaged', 'assuaged', tran, ['6A'] ). +verb( 'assume', 'assumes', 'assuming', 'assumed', 'assumed', tran, ['6A','9','25'] ). +verb( 'assure', 'assures', 'assuring', 'assured', 'assured', tran, ['6A','11','14'] ). +verb( 'astonish', 'astonishes', 'astonishing', 'astonished', 'astonished', tran, ['6A'] ). +verb( 'astound', 'astounds', 'astounding', 'astounded', 'astounded', tran, ['6A'] ). +verb( 'atomize', 'atomizes', 'atomizing', 'atomized', 'atomized', tran, [] ). +verb( 'atone', 'atones', 'atoning', 'atoned', 'atoned', intran, ['2A','3A'] ). +verb( 'atrophy', 'atrophies', 'atrophying', 'atrophied', 'atrophied', _, ['2A','2B','6A'] ). +verb( 'attach', 'attaches', 'attaching', 'attached', 'attached', _, ['3A','6A','14'] ). +verb( 'attack', 'attacks', 'attacking', 'attacked', 'attacked', tran, ['6A'] ). +verb( 'attain', 'attains', 'attaining', 'attained', 'attained', _, ['3A','6A'] ). +verb( 'attempt', 'attempts', 'attempting', 'attempted', 'attempted', tran, ['6A','7A'] ). +verb( 'attend', 'attends', 'attending', 'attended', 'attended', _, ['2A','3A','6A'] ). +verb( 'attenuate', 'attenuates', 'attenuating', 'attenuated', 'attenuated', tran, ['6A'] ). +verb( 'attest', 'attests', 'attesting', 'attested', 'attested', _, ['2A','3A','6A'] ). +verb( 'attire', 'attires', 'attiring', 'attired', 'attired', tran, ['6A'] ). +verb( 'attitudinize', 'attitudinizes', 'attitudinizing', 'attitudinized', 'attitudinized', intran, ['2A'] ). +verb( 'attract', 'attracts', 'attracting', 'attracted', 'attracted', tran, ['6A'] ). +verb( 'attribute', 'attributes', 'attributing', 'attributed', 'attributed', tran, ['14'] ). +verb( 'attune', 'attunes', 'attuning', 'attuned', 'attuned', tran, ['14'] ). +verb( 'auction', 'auctions', 'auctioning', 'auctioned', 'auctioned', tran, ['6A','15B'] ). +verb( 'audit', 'audits', 'auditing', 'audited', 'audited', tran, ['6A'] ). +verb( 'audition', 'auditions', 'auditioning', 'auditioned', 'auditioned', tran, ['6A'] ). +verb( 'augment', 'augments', 'augmenting', 'augmented', 'augmented', _, ['2A','6A'] ). +verb( 'augur', 'augurs', 'auguring', 'augured', 'augured', _, ['2A','6A'] ). +verb( 'authenticate', 'authenticates', 'authenticating', 'authenticated', 'authenticated', tran, ['6A'] ). +verb( 'authorize', 'authorizes', 'authorizing', 'authorized', 'authorized', tran, ['6A','17'] ). +verb( 'autograph', 'autographs', 'autographing', 'autographed', 'autographed', tran, ['6A'] ). +verb( 'automate', 'automates', 'automating', 'automated', 'automated', tran, [] ). +verb( 'avail', 'avails', 'availing', 'availed', 'availed', _, ['2A','3A','14'] ). +verb( 'avenge', 'avenges', 'avenging', 'avenged', 'avenged', tran, ['6A','14'] ). +verb( 'aver', 'avers', 'averring', 'averred', 'averred', tran, ['6A','9'] ). +verb( 'average', 'averages', 'averaging', 'averaged', 'averaged', _, ['2B','6A'] ). +verb( 'avert', 'averts', 'averting', 'averted', 'averted', tran, ['6A','14'] ). +verb( 'avoid', 'avoids', 'avoiding', 'avoided', 'avoided', tran, ['6A','6C'] ). +verb( 'avouch', 'avouches', 'avouching', 'avouched', 'avouched', _, ['3A','6A','9'] ). +verb( 'avow', 'avows', 'avowing', 'avowed', 'avowed', tran, ['6A','25'] ). +verb( 'await', 'awaits', 'awaiting', 'awaited', 'awaited', tran, ['6A'] ). +verb( 'awake', 'awakes', 'awaking', 'awoke', 'awoken', intran, ['2A','3A','4B'] ). +verb( 'awaken', 'awakens', 'awakening', 'awakened', 'awakened', tran, ['6A','14'] ). +verb( 'award', 'awards', 'awarding', 'awarded', 'awarded', tran, ['6A','12A','13A'] ). +verb( 'awe', 'awes', 'awing', 'awed', 'awed', tran, ['6A','14'] ). +verb( 'ax', 'axes', 'axing', 'axed', 'axed', tran, ['6A'] ). +verb( 'axe', 'axes', 'axing', 'axed', 'axed', tran, ['6A'] ). +verb( 'baa', 'baas', 'baaing', 'baaed', 'baaed', intran, [] ). +verb( 'babble', 'babbles', 'babbling', 'babbled', 'babbled', _, ['2A','2B','2C','6A','15B'] ). +verb( 'baby', 'babies', 'babying', 'babied', 'babied', tran, ['6A'] ). +verb( 'babysit', 'babysits', 'babysitting', 'babysat', 'babysat', intran, [] ). +verb( 'back', 'backs', 'backing', 'backed', 'backed', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'backbite', 'backbites', 'backbiting', 'backbit', 'backbitten', _, [] ). +verb( 'backdate', 'backdates', 'backdating', 'backdated', 'backdated', tran, [] ). +verb( 'backfire', 'backfires', 'backfiring', 'backfired', 'backfired', intran, [] ). +verb( 'backpedal', 'backpedals', 'backpedalling', 'backpedalled', 'backpedalled', intran, [] ). +verb( 'backslide', 'backslides', 'backsliding', 'backslid', 'backslid', intran, ['2A'] ). +verb( 'backspace', 'backspaces', 'backspacing', 'backspaced', 'backspaced', intran, [] ). +verb( 'badger', 'badgers', 'badgering', 'badgered', 'badgered', tran, ['6A','14','16A'] ). +verb( 'baffle', 'baffles', 'baffling', 'baffled', 'baffled', tran, ['6A'] ). +verb( 'bag', 'bags', 'bagging', 'bagged', 'bagged', _, ['2A','2C','6A','15B'] ). +verb( 'bail', 'bails', 'bailing', 'bailed', 'bailed', _, ['2A','2C','6A','15B'] ). +verb( 'bait', 'baits', 'baiting', 'baited', 'baited', _, ['2A','6A'] ). +verb( 'bake', 'bakes', 'baking', 'baked', 'baked', _, ['2A','2C','6A','22'] ). +verb( 'balance', 'balances', 'balancing', 'balanced', 'balanced', _, ['2A','6A','14','15A'] ). +verb( 'bale', 'bales', 'baling', 'baled', 'baled', tran, ['6A'] ). +verb( 'balk', 'balks', 'balking', 'balked', 'balked', _, ['2A','3A','6A','14'] ). +verb( 'ball', 'balls', 'balling', 'balled', 'balled', _, [] ). +verb( 'ballast', 'ballasts', 'ballasting', 'ballasted', 'ballasted', tran, ['6A'] ). +verb( 'balloon', 'balloons', 'ballooning', 'ballooned', 'ballooned', intran, ['2A','2C'] ). +verb( 'ballot', 'ballots', 'balloting', 'balloted', 'balloted', intran, ['2A','3A'] ). +verb( 'bamboozle', 'bamboozles', 'bamboozling', 'bamboozled', 'bamboozled', tran, ['6A','14'] ). +verb( 'ban', 'bans', 'banning', 'banned', 'banned', tran, ['6A','14'] ). +verb( 'band', 'bands', 'banding', 'banded', 'banded', _, ['2C','6A','14','15B'] ). +verb( 'bandage', 'bandages', 'bandaging', 'bandaged', 'bandaged', tran, ['6A','15B'] ). +verb( 'bandy', 'bandies', 'bandying', 'bandied', 'bandied', tran, ['6A','14','15B'] ). +verb( 'bang', 'bangs', 'banging', 'banged', 'banged', _, ['2A','2C','6A','15B'] ). +verb( 'banish', 'banishes', 'banishing', 'banished', 'banished', tran, ['6A','14'] ). +verb( 'bank', 'banks', 'banking', 'banked', 'banked', _, ['2A','2C','3A','6A','15B'] ). +verb( 'bankrupt', 'bankrupts', 'bankrupting', 'bankrupted', 'bankrupted', tran, ['6A'] ). +verb( 'banquet', 'banquets', 'banqueting', 'banqueted', 'banqueted', _, ['2A','6A'] ). +verb( 'bant', 'bants', 'banting', 'banted', 'banted', intran, ['2A'] ). +verb( 'banter', 'banters', 'bantering', 'bantered', 'bantered', _, ['2A','6A'] ). +verb( 'baptize', 'baptizes', 'baptizing', 'baptized', 'baptized', tran, ['6A','23'] ). +verb( 'bar', 'bars', 'barring', 'barred', 'barred', tran, ['6A','6C','12C','14','15B'] ). +verb( 'barbarize', 'barbarizes', 'barbarizing', 'barbarized', 'barbarized', tran, ['6A'] ). +verb( 'barbecue', 'barbecues', 'barbecuing', 'barbecued', 'barbecued', tran, [] ). +verb( 'bare', 'bares', 'baring', 'bared', 'bared', tran, ['6A'] ). +verb( 'bargain', 'bargains', 'bargaining', 'bargained', 'bargained', _, ['2A','3A','9','15B'] ). +verb( 'barge', 'barges', 'barging', 'barged', 'barged', intran, ['2C','3A'] ). +verb( 'bark', 'barks', 'barking', 'barked', 'barked', _, ['2A','2C','3A','6A','15B'] ). +verb( 'barnstorm', 'barnstorms', 'barnstorming', 'barnstormed', 'barnstormed', intran, [] ). +verb( 'barrack', 'barracks', 'barracking', 'barracked', 'barracked', _, ['2A','6A'] ). +verb( 'barrel', 'barrels', 'barrelling', 'barrelled', 'barrelled', tran, [] ). +verb( 'barricade', 'barricades', 'barricading', 'barricaded', 'barricaded', tran, ['6A','15B'] ). +verb( 'barter', 'barters', 'bartering', 'bartered', 'bartered', _, ['2A','14','15B'] ). +verb( 'base', 'bases', 'basing', 'based', 'based', tran, ['14'] ). +verb( 'bash', 'bashes', 'bashing', 'bashed', 'bashed', tran, ['6A','15A','15B'] ). +verb( 'bask', 'basks', 'basking', 'basked', 'basked', intran, ['2C'] ). +verb( 'bastardize', 'bastardizes', 'bastardizing', 'bastardized', 'bastardized', tran, [] ). +verb( 'baste', 'bastes', 'basting', 'basted', 'basted', tran, ['6A','15B'] ). +verb( 'bastinado', 'bastinados', 'bastinadoing', 'bastinadoed', 'bastinadoed', tran, ['6A'] ). +verb( 'bat', 'bats', 'batting', 'batted', 'batted', _, ['2A','2B','2C','6A'] ). +verb( 'bate', 'bates', 'bating', 'bated', 'bated', tran, [] ). +verb( 'bath', 'baths', 'bathing', 'bathed', 'bathed', _, ['2A','6A'] ). +verb( 'bathe', 'bathes', 'bathing', 'bathed', 'bathed', _, ['2A','6A'] ). +verb( 'batten', 'battens', 'battening', 'battened', 'battened', _, ['3A','6A','15B'] ). +verb( 'batter', 'batters', 'battering', 'battered', 'battered', _, ['2C','6A','15A','15B'] ). +verb( 'battle', 'battles', 'battling', 'battled', 'battled', intran, ['3A'] ). +verb( 'baulk', 'baulks', 'baulking', 'baulked', 'baulked', _, ['2A','3A','6A','14'] ). +verb( 'bawl', 'bawls', 'bawling', 'bawled', 'bawled', _, ['2C','3A','6A','15A'] ). +verb( 'bay', 'bays', 'baying', 'bayed', 'bayed', intran, ['2A'] ). +verb( 'bayonet', 'bayonets', 'bayoneting', 'bayoneted', 'bayoneted', tran, ['6A'] ). +verb( 'be', 'is', 'being', 'was', 'been', unknown, ['1','4F'] ). +verb( 'be', 'is', 'being', 'was', 'been', intran, ['1','4F'] ). +verb( 'beach', 'beaches', 'beaching', 'beached', 'beached', tran, ['6A'] ). +verb( 'beam', 'beams', 'beaming', 'beamed', 'beamed', _, ['2C','6A','15A'] ). +verb( 'bear', 'bears', 'bearing', 'bore', 'borne', _, ['2A','2C','3A','6A','6D','6E','7A','11','12C','14','15B','16B','17'] ). +verb( 'beard', 'beards', 'bearding', 'bearded', 'bearded', tran, ['6A'] ). +verb( 'beat', 'beats', 'beating', 'beat', 'beaten', _, ['2A','2C','6A','14','15A','15B','22'] ). +verb( 'beatify', 'beatifies', 'beatifying', 'beatified', 'beatified', tran, ['6A'] ). +verb( 'beautify', 'beautifies', 'beautifying', 'beautified', 'beautified', tran, ['6A'] ). +verb( 'beaver', 'beavers', 'beavering', 'beavered', 'beavered', intran, ['2A','2C'] ). +verb( 'beckon', 'beckons', 'beckoning', 'beckoned', 'beckoned', _, ['2A','6A','15B','16A'] ). +verb( 'become', 'becomes', 'becoming', 'became', 'become', _, ['2D','3A','6A'] ). +verb( 'bed', 'beds', 'bedding', 'bedded', 'bedded', tran, ['6A','15A','15B'] ). +verb( 'bedevil', 'bedevils', 'bedevilling', 'bedevilled', 'bedevilled', tran, [] ). +verb( 'beef', 'beefs', 'beefing', 'beefed', 'beefed', intran, [] ). +verb( 'beeswax', 'beeswaxes', 'beeswaxing', 'beeswaxed', 'beeswaxed', tran, [] ). +verb( 'beetle', 'beetles', 'beetling', 'beetled', 'beetled', intran, ['2A'] ). +verb( 'befall', 'befalls', 'befalling', 'befell', 'befallen', _, ['6A'] ). +verb( 'befit', 'befits', 'befitting', 'befitted', 'befitted', tran, ['6A'] ). +verb( 'befoul', 'befouls', 'befouling', 'befouled', 'befouled', tran, [] ). +verb( 'befriend', 'befriends', 'befriending', 'befriended', 'befriended', tran, ['6A'] ). +verb( 'beg', 'begs', 'begging', 'begged', 'begged', _, ['2A','2C','3A','6A','7A','9','14','17'] ). +verb( 'beget', 'begets', 'begetting', 'begat', 'begotten', tran, ['6A'] ). +verb( 'beggar', 'beggars', 'beggaring', 'beggared', 'beggared', tran, ['6A'] ). +verb( 'begin', 'begins', 'beginning', 'began', 'begun', _, ['2A','3A','6A','6D','7A'] ). +verb( 'begrudge', 'begrudges', 'begrudging', 'begrudged', 'begrudged', tran, ['6C','12A','13A'] ). +verb( 'beguile', 'beguiles', 'beguiling', 'beguiled', 'beguiled', tran, ['6A','14'] ). +verb( 'behave', 'behaves', 'behaving', 'behaved', 'behaved', intran, ['2A','2C','6B'] ). +verb( 'behead', 'beheads', 'beheading', 'beheaded', 'beheaded', tran, ['6A'] ). +verb( 'behold', 'beholds', 'beholding', 'beheld', 'beheld', tran, ['6A'] ). +verb( 'behove', 'behoves', 'behoving', 'behoved', 'behoved', tran, [] ). +verb( 'belabour', 'belabours', 'belabouring', 'belaboured', 'belaboured', tran, ['6A'] ). +verb( 'belay', 'belays', 'belaying', 'belayed', 'belayed', tran, ['6A'] ). +verb( 'belch', 'belches', 'belching', 'belched', 'belched', _, ['2A','6A','15B'] ). +verb( 'beleaguer', 'beleaguers', 'beleaguering', 'beleaguered', 'beleaguered', tran, ['6A'] ). +verb( 'belie', 'belies', 'belying', 'belied', 'belied', tran, ['6A'] ). +verb( 'believe', 'believes', 'believing', 'believed', 'believed', _, ['3A','6A','9','10','25'] ). +verb( 'belittle', 'belittles', 'belittling', 'belittled', 'belittled', tran, ['6A'] ). +verb( 'bell', 'bells', 'belling', 'belled', 'belled', tran, [] ). +verb( 'bellow', 'bellows', 'bellowing', 'bellowed', 'bellowed', _, ['2A','6A','15B'] ). +verb( 'belly', 'bellies', 'bellying', 'bellied', 'bellied', _, ['2A','2C','6A','15B'] ). +verb( 'bellyache', 'bellyaches', 'bellyaching', 'bellyached', 'bellyached', intran, [] ). +verb( 'bellyland', 'bellylands', 'bellylanding', 'bellylanded', 'bellylanded', intran, [] ). +verb( 'bellylaugh', 'bellylaughs', 'bellylaughing', 'bellylaughed', 'bellylaughed', intran, [] ). +verb( 'belong', 'belongs', 'belonging', 'belonged', 'belonged', intran, ['2C','3A'] ). +verb( 'belt', 'belts', 'belting', 'belted', 'belted', tran, ['2C','3A','6A','15B'] ). +verb( 'bemoan', 'bemoans', 'bemoaning', 'bemoaned', 'bemoaned', tran, ['6A'] ). +verb( 'bend', 'bends', 'bending', 'bended', 'bended', _, ['2A','2C','6A','15A','15B'] ). +verb( 'benefit', 'benefits', 'benefiting', 'benefited', 'benefited', _, ['3A','6A'] ). +verb( 'bequeath', 'bequeaths', 'bequeathing', 'bequeathed', 'bequeathed', tran, ['6A','12A','13A'] ). +verb( 'berate', 'berates', 'berating', 'berated', 'berated', tran, ['6A'] ). +verb( 'bereave', 'bereaves', 'bereaving', 'bereaved', 'bereaved', tran, ['14'] ). +verb( 'berth', 'berths', 'berthing', 'berthed', 'berthed', _, ['2C','6A','15A'] ). +verb( 'beseech', 'beseeches', 'beseeching', 'beseeched', 'beseeched', tran, ['6A','11','13B','17'] ). +verb( 'beseem', 'beseems', 'beseeming', 'beseemed', 'beseemed', tran, [] ). +verb( 'beset', 'besets', 'besetting', 'beset', 'beset', tran, ['6A'] ). +verb( 'beshrew', 'beshrews', 'beshrewing', 'beshrewed', 'beshrewed', tran, [] ). +verb( 'besiege', 'besieges', 'besieging', 'besieged', 'besieged', tran, ['6A','14'] ). +verb( 'besmear', 'besmears', 'besmearing', 'besmeared', 'besmeared', tran, [] ). +verb( 'besmirch', 'besmirches', 'besmirching', 'besmirched', 'besmirched', tran, [] ). +verb( 'bespeak', 'bespeaks', 'bespeaking', 'bespoke', 'bespoken', tran, ['6A','25'] ). +verb( 'best', 'bests', 'besting', 'bested', 'bested', tran, ['6A'] ). +verb( 'bestir', 'bestirs', 'bestirring', 'bestirred', 'bestirred', tran, ['6A','17'] ). +verb( 'bestow', 'bestows', 'bestowing', 'bestowed', 'bestowed', tran, ['6A','14'] ). +verb( 'bestrew', 'bestrews', 'bestrewing', 'bestrewed', 'bestrewed', tran, ['6A','14'] ). +verb( 'bestride', 'bestrides', 'bestriding', 'bestrode', 'bestridden', tran, ['6A'] ). +verb( 'bet', 'bets', 'betting', 'betted', 'betted', _, ['2A','3A','9','11','12C'] ). +verb( 'betake', 'betakes', 'betaking', 'betook', 'betaken', tran, ['14'] ). +verb( 'bethink', 'bethinks', 'bethinking', 'bethought', 'bethought', tran, ['11','14','17','20','21'] ). +verb( 'betide', 'betides', 'betiding', 'betided', 'betided', tran, [] ). +verb( 'betoken', 'betokens', 'betokening', 'betokened', 'betokened', tran, ['6A'] ). +verb( 'betray', 'betrays', 'betraying', 'betrayed', 'betrayed', tran, ['6A','14','25'] ). +verb( 'betroth', 'betroths', 'betrothing', 'betrothed', 'betrothed', tran, ['6A','14'] ). +verb( 'better', 'betters', 'bettering', 'bettered', 'bettered', tran, ['6A'] ). +verb( 'bevel', 'bevels', 'bevelling', 'bevelled', 'bevelled', tran, [] ). +verb( 'bewail', 'bewails', 'bewailing', 'bewailed', 'bewailed', tran, ['6A'] ). +verb( 'beware', '-', '-', '-', '-', _, ['2A','3A','10'] ). +verb( 'bewilder', 'bewilders', 'bewildering', 'bewildered', 'bewildered', tran, ['6A'] ). +verb( 'bewitch', 'bewitches', 'bewitching', 'bewitched', 'bewitched', tran, ['6A'] ). +verb( 'bias', 'biases', 'biasing', 'biased', 'biased', tran, ['6A','14'] ). +verb( 'bib', 'bibs', 'bibbing', 'bibbed', 'bibbed', intran, [] ). +verb( 'bicker', 'bickers', 'bickering', 'bickered', 'bickered', intran, ['2A','2C','3A'] ). +verb( 'bicycle', 'bicycles', 'bicycling', 'bicycled', 'bicycled', intran, ['2A','2C'] ). +verb( 'bid', 'bids', 'bidding', 'bid', 'bid', _, ['2A','3A','6A','12A','13A','14','15B','17','18B'] ). +verb( 'bide', 'bides', 'biding', 'bided', 'bided', tran, [] ). +verb( 'biff', 'biffs', 'biffing', 'biffed', 'biffed', tran, [] ). +verb( 'bifurcate', 'bifurcates', 'bifurcating', 'bifurcated', 'bifurcated', _, ['2A','6A'] ). +verb( 'bike', 'bikes', 'biking', 'biked', 'biked', intran, [] ). +verb( 'bilk', 'bilks', 'bilking', 'bilked', 'bilked', tran, ['6A','14'] ). +verb( 'bill', 'bills', 'billing', 'billed', 'billed', _, ['6A','14'] ). +verb( 'billet', 'billets', 'billeting', 'billeted', 'billeted', tran, ['6A','14'] ). +verb( 'billow', 'billows', 'billowing', 'billowed', 'billowed', intran, ['2C'] ). +verb( 'bind', 'binds', 'binding', 'bound', 'bound', _, ['2A','6A','14','15A','15B','16B','17'] ). +verb( 'birch', 'birches', 'birching', 'birched', 'birched', tran, ['6A'] ). +verb( 'bisect', 'bisects', 'bisecting', 'bisected', 'bisected', tran, ['6A'] ). +verb( 'bitch', 'bitches', 'bitching', 'bitched', 'bitched', intran, ['2A'] ). +verb( 'bite', 'bites', 'biting', 'bit', 'bitten', _, ['2A','3A','6A','15B'] ). +verb( 'bivouac', 'bivouacs', 'bivouacking', 'bivouacked', 'bivouacked', intran, ['2A'] ). +verb( 'blab', 'blabs', 'blabbing', 'blabbed', 'blabbed', _, ['2A','6A','15B'] ). +verb( 'blabber', 'blabbers', 'blabbering', 'blabbered', 'blabbered', _, [] ). +verb( 'black', 'blacks', 'blacking', 'blacked', 'blacked', tran, ['6A'] ). +verb( 'black-lead', 'black-leads', 'black-leading', 'black-leaded', 'black-leaded', tran, [] ). +verb( 'blackball', 'blackballs', 'blackballing', 'blackballed', 'blackballed', tran, [] ). +verb( 'blacken', 'blackens', 'blackening', 'blackened', 'blackened', _, ['2A','6A'] ). +verb( 'blackguard', 'blackguards', 'blackguarding', 'blackguarded', 'blackguarded', tran, [] ). +verb( 'blackleg', 'blacklegs', 'blacklegging', 'blacklegged', 'blacklegged', _, [] ). +verb( 'blacklist', 'blacklists', 'blacklisting', 'blacklisted', 'blacklisted', tran, [] ). +verb( 'blackmail', 'blackmails', 'blackmailing', 'blackmailed', 'blackmailed', tran, [] ). +verb( 'blame', 'blames', 'blaming', 'blamed', 'blamed', tran, ['6A','14'] ). +verb( 'blanch', 'blanches', 'blanching', 'blanched', 'blanched', _, ['2A','6A'] ). +verb( 'blanket', 'blankets', 'blanketing', 'blanketed', 'blanketed', tran, ['6A','14'] ). +verb( 'blare', 'blares', 'blaring', 'blared', 'blared', _, ['2A','2C','15B'] ). +verb( 'blaspheme', 'blasphemes', 'blaspheming', 'blasphemed', 'blasphemed', _, ['2A','6A'] ). +verb( 'blast', 'blasts', 'blasting', 'blasted', 'blasted', tran, ['2A','2C','6A','15B'] ). +verb( 'blather', 'blathers', 'blathering', 'blathered', 'blathered', intran, [] ). +verb( 'blaze', 'blazes', 'blazing', 'blazed', 'blazed', _, ['2A','2C','6A','15B'] ). +verb( 'blazon', 'blazons', 'blazoning', 'blazoned', 'blazoned', tran, [] ). +verb( 'bleach', 'bleaches', 'bleaching', 'bleached', 'bleached', _, ['2A','6A'] ). +verb( 'bleat', 'bleats', 'bleating', 'bleated', 'bleated', _, ['2A','6A','15B'] ). +verb( 'bleed', 'bleeds', 'bleeding', 'bled', 'bled', _, ['2A','2C','3A','6A','14'] ). +verb( 'bleep', 'bleeps', 'bleeping', 'bleeped', 'bleeped', intran, [] ). +verb( 'blemish', 'blemishes', 'blemishing', 'blemished', 'blemished', tran, ['6A'] ). +verb( 'blench', 'blenches', 'blenching', 'blenched', 'blenched', intran, ['2A'] ). +verb( 'blend', 'blends', 'blending', 'blended', 'blended', _, ['2A','3A','6A'] ). +verb( 'bless', 'blesses', 'blessing', 'blessed', 'blessed', tran, ['6A'] ). +verb( 'blether', 'blethers', 'blethering', 'blethered', 'blethered', intran, ['2A','2C'] ). +verb( 'blight', 'blights', 'blighting', 'blighted', 'blighted', tran, ['6A'] ). +verb( 'blind', 'blinds', 'blinding', 'blinded', 'blinded', tran, ['6A','14'] ). +verb( 'blindfold', 'blindfolds', 'blindfolding', 'blindfolded', 'blindfolded', tran, ['6A'] ). +verb( 'blink', 'blinks', 'blinking', 'blinked', 'blinked', _, ['2A','2C','6A','15B'] ). +verb( 'blister', 'blisters', 'blistering', 'blistered', 'blistered', _, ['2A','6A'] ). +verb( 'blitz', 'blitzes', 'blitzing', 'blitzed', 'blitzed', tran, ['6A'] ). +verb( 'block', 'blocks', 'blocking', 'blocked', 'blocked', tran, ['6A','15B'] ). +verb( 'blockade', 'blockades', 'blockading', 'blockaded', 'blockaded', tran, ['6A'] ). +verb( 'blood', 'bloods', 'blooding', 'blooded', 'blooded', tran, ['6A'] ). +verb( 'bloom', 'blooms', 'blooming', 'bloomed', 'bloomed', intran, ['2A','2C'] ). +verb( 'blossom', 'blossoms', 'blossoming', 'blossomed', 'blossomed', intran, ['2A','2C'] ). +verb( 'blot', 'blots', 'blotting', 'blotted', 'blotted', tran, ['6A','15B'] ). +verb( 'blow', 'blows', 'blowing', 'blew', 'blown', _, ['2A','2B','2C','2E','3A','6A','12A','15A','15B'] ). +verb( 'blow-dry', 'blow-dries', 'blow-drying', 'blow-dried', 'blow-dried', tran, ['6A'] ). +verb( 'blubber', 'blubbers', 'blubbering', 'blubbered', 'blubbered', _, ['2A','15B'] ). +verb( 'bludgeon', 'bludgeons', 'bludgeoning', 'bludgeoned', 'bludgeoned', tran, ['6A','14'] ). +verb( 'blue', 'blues', 'bluing', 'blued', 'blued', tran, [] ). +verb( 'blue-pencil', 'blue-pencils', 'blue-pencilling', 'blue-pencilled', 'blue-pencilled', tran, [] ). +verb( 'bluff', 'bluffs', 'bluffing', 'bluffed', 'bluffed', _, ['2A','6A','14','15B'] ). +verb( 'blunder', 'blunders', 'blundering', 'blundered', 'blundered', _, ['2A','2C','3A'] ). +verb( 'blunt', 'blunts', 'blunting', 'blunted', 'blunted', tran, ['6A'] ). +verb( 'blur', 'blurs', 'blurring', 'blurred', 'blurred', _, ['2A','6A'] ). +verb( 'blurt', 'blurts', 'blurting', 'blurted', 'blurted', tran, ['15B'] ). +verb( 'blush', 'blushes', 'blushing', 'blushed', 'blushed', intran, ['2A','2C','3A','4B'] ). +verb( 'bluster', 'blusters', 'blustering', 'blustered', 'blustered', _, ['2A','2C','15B'] ). +verb( 'board', 'boards', 'boarding', 'boarded', 'boarded', _, ['3A','6A','15B'] ). +verb( 'boast', 'boasts', 'boasting', 'boasted', 'boasted', _, ['2A','3A','3B','6A'] ). +verb( 'boat', 'boats', 'boating', 'boated', 'boated', intran, ['2A','2C'] ). +verb( 'bob', 'bobs', 'bobbing', 'bobbed', 'bobbed', _, ['2C','6A'] ). +verb( 'bode', 'bodes', 'boding', 'boded', 'boded', _, ['12B','13B'] ). +verb( 'bog', 'bogs', 'bogging', 'bogged', 'bogged', _, ['2E','15B'] ). +verb( 'boggle', 'boggles', 'boggling', 'boggled', 'boggled', intran, ['2A','3A'] ). +verb( 'boil', 'boils', 'boiling', 'boiled', 'boiled', _, ['2A','2B','2C','2D','6A','15B','22'] ). +verb( 'bolster', 'bolsters', 'bolstering', 'bolstered', 'bolstered', tran, ['6A','15B'] ). +verb( 'bolt', 'bolts', 'bolting', 'bolted', 'bolted', _, ['2A','2C','6A','15B'] ). +verb( 'bomb', 'bombs', 'bombing', 'bombed', 'bombed', _, ['2C','6A','15B'] ). +verb( 'bombard', 'bombards', 'bombarding', 'bombarded', 'bombarded', tran, ['6A','14'] ). +verb( 'bond', 'bonds', 'bonding', 'bonded', 'bonded', tran, ['6A'] ). +verb( 'bone', 'bones', 'boning', 'boned', 'boned', tran, ['6A'] ). +verb( 'boo', 'boos', 'booing', 'booed', 'booed', _, ['2A','6A','15B'] ). +verb( 'boob', 'boobs', 'boobing', 'boobed', 'boobed', intran, [] ). +verb( 'book', 'books', 'booking', 'booked', 'booked', tran, ['6A'] ). +verb( 'boom', 'booms', 'booming', 'boomed', 'boomed', _, ['2A','2C','15B'] ). +verb( 'boost', 'boosts', 'boosting', 'boosted', 'boosted', tran, ['6A'] ). +verb( 'boot', 'boots', 'booting', 'booted', 'booted', tran, ['6A','15A','15B'] ). +verb( 'bootleg', 'bootlegs', 'bootlegging', 'bootlegged', 'bootlegged', tran, [] ). +verb( 'booze', 'boozes', 'boozing', 'boozed', 'boozed', intran, ['2A','2C'] ). +verb( 'border', 'borders', 'bordering', 'bordered', 'bordered', _, ['3A','6A'] ). +verb( 'bore', 'bores', 'boring', 'bored', 'bored', _, ['2A','2C','3A','6A','6D','6E','7A','11','12C','14','15A','15B','16B','17'] ). +verb( 'borrow', 'borrows', 'borrowing', 'borrowed', 'borrowed', tran, ['6A','14'] ). +verb( 'boss', 'bosses', 'bossing', 'bossed', 'bossed', tran, ['6A','15B'] ). +verb( 'botanize', 'botanizes', 'botanizing', 'botanized', 'botanized', intran, [] ). +verb( 'botch', 'botches', 'botching', 'botched', 'botched', tran, ['6A','15B'] ). +verb( 'bother', 'bothers', 'bothering', 'bothered', 'bothered', _, ['2A','3A','4C','6A','14','16A'] ). +verb( 'bottle', 'bottles', 'bottling', 'bottled', 'bottled', tran, ['6A','15B'] ). +verb( 'bottom', 'bottoms', 'bottoming', 'bottomed', 'bottomed', intran, [] ). +verb( 'bounce', 'bounces', 'bouncing', 'bounced', 'bounced', _, ['2A','2C','6A'] ). +verb( 'bound', 'bounds', 'bounding', 'bounded', 'bounded', _, ['2A','2C','4A','6A','14','15A','15B','16B','17'] ). +verb( 'bow', 'bows', 'bowing', 'bowed', 'bowed', tran, [] ). +verb( 'bow', 'bows', 'bowing', 'bowed', 'bowed', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'bowdlerize', 'bowdlerizes', 'bowdlerizing', 'bowdlerized', 'bowdlerized', tran, [] ). +verb( 'bowl', 'bowls', 'bowling', 'bowled', 'bowled', _, ['2A','2C','6A','15B'] ). +verb( 'box', 'boxes', 'boxing', 'boxed', 'boxed', _, ['2A','3A','6A','15B'] ). +verb( 'boycott', 'boycotts', 'boycotting', 'boycotted', 'boycotted', tran, ['6A'] ). +verb( 'brace', 'braces', 'bracing', 'braced', 'braced', _, ['6A','15B','16A'] ). +verb( 'bracket', 'brackets', 'bracketing', 'bracketed', 'bracketed', tran, ['6A','15B'] ). +verb( 'brag', 'brags', 'bragging', 'bragged', 'bragged', intran, ['2A','3A'] ). +verb( 'braid', 'braids', 'braiding', 'braided', 'braided', tran, ['6A'] ). +verb( 'brain', 'brains', 'braining', 'brained', 'brained', tran, ['6A'] ). +verb( 'brainwash', 'brainwashes', 'brainwashing', 'brainwashed', 'brainwashed', tran, ['6A'] ). +verb( 'braise', 'braises', 'braising', 'braised', 'braised', tran, ['6A'] ). +verb( 'brake', 'brakes', 'braking', 'braked', 'braked', _, ['2A','2C','2D','3A','6A','15A','15B','22'] ). +verb( 'branch', 'branches', 'branching', 'branched', 'branched', intran, ['2A','2C'] ). +verb( 'brand', 'brands', 'branding', 'branded', 'branded', tran, ['6A','16B'] ). +verb( 'brandish', 'brandishes', 'brandishing', 'brandished', 'brandished', tran, ['6A'] ). +verb( 'brave', 'braves', 'braving', 'braved', 'braved', tran, ['6A','15B'] ). +verb( 'brawl', 'brawls', 'brawling', 'brawled', 'brawled', intran, ['2A'] ). +verb( 'bray', 'brays', 'braying', 'brayed', 'brayed', tran, ['2A'] ). +verb( 'braze', 'brazes', 'brazing', 'brazed', 'brazed', tran, ['6A'] ). +verb( 'brazen', 'brazens', 'brazening', 'brazened', 'brazened', tran, [] ). +verb( 'breach', 'breaches', 'breaching', 'breached', 'breached', tran, ['6A'] ). +verb( 'break', 'breaks', 'breaking', 'broke', 'broken', _, ['2A','2C','2D','3A','6A','15A','15B','22'] ). +verb( 'breakfast', 'breakfasts', 'breakfasting', 'breakfasted', 'breakfasted', intran, [] ). +verb( 'breast', 'breasts', 'breasting', 'breasted', 'breasted', tran, ['6A'] ). +verb( 'breastfeed', 'breastfeeds', 'breastfeeding', 'breastfed', 'breastfed', _, [] ). +verb( 'breathe', 'breathes', 'breathing', 'breathed', 'breathed', _, ['2A','2C','6A','15B'] ). +verb( 'breed', 'breeds', 'breeding', 'bred', 'bred', _, ['2A','6A'] ). +verb( 'breeze', 'breezes', 'breezing', 'breezed', 'breezed', intran, ['2C'] ). +verb( 'brew', 'brews', 'brewing', 'brewed', 'brewed', _, ['2A','2C','6A'] ). +verb( 'bribe', 'bribes', 'bribing', 'bribed', 'bribed', tran, ['6A','15A','17'] ). +verb( 'brick', 'bricks', 'bricking', 'bricked', 'bricked', tran, ['15B'] ). +verb( 'bridge', 'bridges', 'bridging', 'bridged', 'bridged', tran, ['6A','15B'] ). +verb( 'bridle', 'bridles', 'bridling', 'bridled', 'bridled', _, ['2A','2C','6A'] ). +verb( 'brief', 'briefs', 'briefing', 'briefed', 'briefed', tran, ['6A'] ). +verb( 'brighten', 'brightens', 'brightening', 'brightened', 'brightened', _, ['2A','2C','6A','15B'] ). +verb( 'brim', 'brims', 'brimming', 'brimmed', 'brimmed', intran, ['2A','2C'] ). +verb( 'bring', 'brings', 'bringing', 'brought', 'brought', tran, ['6A','12A','12C','13A','14','15B','17','19B'] ). +verb( 'bristle', 'bristles', 'bristling', 'bristled', 'bristled', intran, ['2A','2C'] ). +verb( 'broach', 'broaches', 'broaching', 'broached', 'broached', _, ['2C','6A','15B'] ). +verb( 'broadcast', 'broadcasts', 'broadcasting', 'broadcasted', 'broadcasted', _, ['2A','6A'] ). +verb( 'broaden', 'broadens', 'broadening', 'broadened', 'broadened', _, ['2A','2C','6A','15B'] ). +verb( 'brocade', 'brocades', 'brocading', 'brocaded', 'brocaded', tran, ['6A'] ). +verb( 'broil', 'broils', 'broiling', 'broiled', 'broiled', _, ['2A','6A'] ). +verb( 'bronze', 'bronzes', 'bronzing', 'bronzed', 'bronzed', _, ['2A','6A'] ). +verb( 'brood', 'broods', 'brooding', 'brooded', 'brooded', intran, ['2A','2C','3A'] ). +verb( 'brook', 'brooks', 'brooking', 'brooked', 'brooked', tran, ['6A','6B'] ). +verb( 'browbeat', 'browbeats', 'browbeating', 'browbeat', 'browbeaten', tran, ['6A','14'] ). +verb( 'brown', 'browns', 'browning', 'browned', 'browned', _, ['2A','6A'] ). +verb( 'browse', 'browses', 'browsing', 'browsed', 'browsed', intran, ['2A','2C'] ). +verb( 'bruise', 'bruises', 'bruising', 'bruised', 'bruised', _, ['2A','6A'] ). +verb( 'bruit', 'bruits', 'bruiting', 'bruited', 'bruited', tran, ['15B'] ). +verb( 'brush', 'brushes', 'brushing', 'brushed', 'brushed', _, ['2A','2C','6A','15B','22'] ). +verb( 'brutalize', 'brutalizes', 'brutalizing', 'brutalized', 'brutalized', tran, ['6A'] ). +verb( 'bubble', 'bubbles', 'bubbling', 'bubbled', 'bubbled', intran, ['2A','2C'] ). +verb( 'buck', 'bucks', 'bucking', 'bucked', 'bucked', _, ['2A','2C','6A','15B'] ). +verb( 'bucket', 'buckets', 'bucketing', 'bucketed', 'bucketed', intran, [] ). +verb( 'buckle', 'buckles', 'buckling', 'buckled', 'buckled', _, ['2A','2C','6A','15B'] ). +verb( 'bud', 'buds', 'budding', 'budded', 'budded', intran, [] ). +verb( 'budge', 'budges', 'budging', 'budged', 'budged', _, ['2A','2C','6A'] ). +verb( 'budget', 'budgets', 'budgeting', 'budgeted', 'budgeted', intran, ['3A'] ). +verb( 'buff', 'buffs', 'buffing', 'buffed', 'buffed', tran, [] ). +verb( 'buffet', 'buffets', 'buffeting', 'buffeted', 'buffeted', _, ['3A','6A'] ). +verb( 'bug', 'bugs', 'bugging', 'bugged', 'bugged', tran, ['6A'] ). +verb( 'bugger', 'buggers', 'buggering', 'buggered', 'buggered', _, ['6A'] ). +verb( 'build', 'builds', 'building', 'built', 'built', _, ['2C','3A','6A','12B','13B','14','15B'] ). +verb( 'bulge', 'bulges', 'bulging', 'bulged', 'bulged', _, ['2A','2C','6A'] ). +verb( 'bulk', 'bulks', 'bulking', 'bulked', 'bulked', intran, [] ). +verb( 'bulldoze', 'bulldozes', 'bulldozing', 'bulldozed', 'bulldozed', tran, ['6A','14'] ). +verb( 'bullshit', 'bullshits', 'bullshitting', 'bullshitted', 'bullshitted', intran, [] ). +verb( 'bully', 'bullies', 'bullying', 'bullied', 'bullied', _, ['2C','6A','14'] ). +verb( 'bum', 'bums', 'bumming', 'bummed', 'bummed', _, ['2C','6A','14'] ). +verb( 'bump', 'bumps', 'bumping', 'bumped', 'bumped', _, ['2C','3A','6A','14','15B'] ). +verb( 'bunch', 'bunches', 'bunching', 'bunched', 'bunched', _, ['2A','2C','15B'] ). +verb( 'bundle', 'bundles', 'bundling', 'bundled', 'bundled', _, ['2C','15A','15B'] ). +verb( 'bung', 'bungs', 'bunging', 'bunged', 'bunged', tran, ['6A','15B'] ). +verb( 'bungle', 'bungles', 'bungling', 'bungled', 'bungled', _, ['2A','6A'] ). +verb( 'bunk', 'bunks', 'bunking', 'bunked', 'bunked', intran, [] ). +verb( 'bunker', 'bunkers', 'bunkering', 'bunkered', 'bunkered', _, ['2A','6A'] ). +verb( 'buoy', 'buoys', 'buoying', 'buoyed', 'buoyed', intran, ['6A','15B'] ). +verb( 'burble', 'burbles', 'burbling', 'burbled', 'burbled', intran, [] ). +verb( 'burden', 'burdens', 'burdening', 'burdened', 'burdened', tran, ['6A','14'] ). +verb( 'burgeon', 'burgeons', 'burgeoning', 'burgeoned', 'burgeoned', intran, [] ). +verb( 'burgle', 'burgles', 'burgling', 'burgled', 'burgled', _, ['2A','6A'] ). +verb( 'burke', 'burkes', 'burking', 'burked', 'burked', tran, ['6A'] ). +verb( 'burlesque', 'burlesques', 'burlesquing', 'burlesqued', 'burlesqued', tran, ['6A'] ). +verb( 'burn', 'burns', 'burning', 'burned', 'burned', _, ['2A','2B','2C','4A','6A','14','15B'] ). +verb( 'burnish', 'burnishes', 'burnishing', 'burnished', 'burnished', _, ['2A','6A'] ). +verb( 'burp', 'burps', 'burping', 'burped', 'burped', _, ['2A','6A'] ). +verb( 'burrow', 'burrows', 'burrowing', 'burrowed', 'burrowed', _, ['2A','2C','6A'] ). +verb( 'burst', 'bursts', 'bursting', 'burst', 'burst', _, ['2A','2C','3A','6A','22'] ). +verb( 'burthen', 'burthens', 'burthening', 'burthened', 'burthened', tran, [] ). +verb( 'bury', 'buries', 'burying', 'buried', 'buried', tran, ['6A','15A','22'] ). +verb( 'bus', 'buses', 'busing', 'bused', 'bused', _, ['2A','6A'] ). +verb( 'bust', 'busts', 'busting', 'busted', 'busted', _, [] ). +verb( 'bustle', 'bustles', 'bustling', 'bustled', 'bustled', _, ['2A','2C','15B'] ). +verb( 'busy', 'busies', 'busying', 'busied', 'busied', tran, ['6A','14'] ). +verb( 'butcher', 'butchers', 'butchering', 'butchered', 'butchered', tran, ['6A'] ). +verb( 'butt', 'butts', 'butting', 'butted', 'butted', _, ['2C','3A','6A','15A'] ). +verb( 'butter', 'butters', 'buttering', 'buttered', 'buttered', tran, ['6A','15B'] ). +verb( 'button', 'buttons', 'buttoning', 'buttoned', 'buttoned', _, ['2A','6A','15B'] ). +verb( 'buttonhole', 'buttonholes', 'buttonholing', 'buttonholed', 'buttonholed', tran, ['6A'] ). +verb( 'buttress', 'buttresses', 'buttressing', 'buttressed', 'buttressed', tran, ['6A','15B'] ). +verb( 'buy', 'buys', 'buying', 'bought', 'bought', _, ['2A','2C','6A','12B','13B','15B'] ). +verb( 'buzz', 'buzzes', 'buzzing', 'buzzed', 'buzzed', _, ['2A','2C','6A'] ). +verb( 'bypass', 'bypasses', 'bypassing', 'bypassed', 'bypassed', tran, ['6A'] ). +verb( 'cable', 'cables', 'cabling', 'cabled', 'cabled', _, ['2A','6A'] ). +verb( 'cache', 'caches', 'caching', 'cached', 'cached', tran, [] ). +verb( 'cackle', 'cackles', 'cackling', 'cackled', 'cackled', intran, [] ). +verb( 'cadge', 'cadges', 'cadging', 'cadged', 'cadged', _, ['2A','6A','14'] ). +verb( 'cage', 'cages', 'caging', 'caged', 'caged', tran, ['6A'] ). +verb( 'cajole', 'cajoles', 'cajoling', 'cajoled', 'cajoled', tran, ['6A','14'] ). +verb( 'cake', 'cakes', 'caking', 'caked', 'caked', _, ['2A','6A'] ). +verb( 'calcify', 'calcifies', 'calcifying', 'calcified', 'calcified', _, ['2A','6A'] ). +verb( 'calcine', 'calcines', 'calcining', 'calcined', 'calcined', _, ['2A','6A'] ). +verb( 'calculate', 'calculates', 'calculating', 'calculated', 'calculated', _, ['2A','3A','6A','8','9','10'] ). +verb( 'calender', 'calenders', 'calendering', 'calendered', 'calendered', tran, ['6A'] ). +verb( 'calibrate', 'calibrates', 'calibrating', 'calibrated', 'calibrated', tran, ['6A'] ). +verb( 'calk', 'calks', 'calking', 'calked', 'calked', tran, [] ). +verb( 'call', 'calls', 'calling', 'called', 'called', _, ['2A','2B','2C','3A','4A','6A','12B','13B','15B','22','23'] ). +verb( 'calm', 'calms', 'calming', 'calmed', 'calmed', _, ['2C','6A','15B'] ). +verb( 'calumniate', 'calumniates', 'calumniating', 'calumniated', 'calumniated', tran, ['6A'] ). +verb( 'calve', 'calves', 'calving', 'calved', 'calved', intran, [] ). +verb( 'camber', 'cambers', 'cambering', 'cambered', 'cambered', _, [] ). +verb( 'camouflage', 'camouflages', 'camouflaging', 'camouflaged', 'camouflaged', tran, ['6A'] ). +verb( 'camp', 'camps', 'camping', 'camped', 'camped', _, ['2A','2C'] ). +verb( 'campaign', 'campaigns', 'campaigning', 'campaigned', 'campaigned', intran, ['2A','3A'] ). +verb( 'can', 'can', '-', 'could', '-', unknown, ['5','6A'] ). +verb( 'can', 'cans', 'canning', 'canned', 'canned', tran, ['5','6A'] ). +verb( 'canalize', 'canalizes', 'canalizing', 'canalized', 'canalized', tran, ['6A','14'] ). +verb( 'cancel', 'cancels', 'cancelling', 'cancelled', 'cancelled', _, ['2C','6A','15B'] ). +verb( 'candy', 'candies', 'candying', 'candied', 'candied', _, ['2A','6A'] ). +verb( 'cane', 'canes', 'caning', 'caned', 'caned', tran, ['6A'] ). +verb( 'canker', 'cankers', 'cankering', 'cankered', 'cankered', tran, [] ). +verb( 'cannibalize', 'cannibalizes', 'cannibalizing', 'cannibalized', 'cannibalized', tran, [] ). +verb( 'canoe', 'canoes', 'canoeing', 'canoed', 'canoed', tran, ['2A','2C'] ). +verb( 'canonize', 'canonizes', 'canonizing', 'canonized', 'canonized', tran, ['6A'] ). +verb( 'cant', 'cants', 'canting', 'canted', 'canted', _, ['2A','2C','6A','15B'] ). +verb( 'canter', 'canters', 'cantering', 'cantered', 'cantered', _, [] ). +verb( 'canvass', 'canvasses', 'canvassing', 'canvassed', 'canvassed', _, ['2A','3A','6A'] ). +verb( 'cap', 'caps', 'capping', 'capped', 'capped', tran, ['6A'] ). +verb( 'caparison', 'caparisons', 'caparisoning', 'caparisoned', 'caparisoned', tran, [] ). +verb( 'caper', 'capers', 'capering', 'capered', 'capered', intran, [] ). +verb( 'capitalize', 'capitalizes', 'capitalizing', 'capitalized', 'capitalized', _, ['3A','6A'] ). +verb( 'capitulate', 'capitulates', 'capitulating', 'capitulated', 'capitulated', tran, ['2A'] ). +verb( 'capsize', 'capsizes', 'capsizing', 'capsized', 'capsized', _, ['2A','6A'] ). +verb( 'captain', 'captains', 'captaining', 'captained', 'captained', tran, ['6A'] ). +verb( 'captivate', 'captivates', 'captivating', 'captivated', 'captivated', tran, ['6A'] ). +verb( 'capture', 'captures', 'capturing', 'captured', 'captured', tran, ['6A'] ). +verb( 'carbonize', 'carbonizes', 'carbonizing', 'carbonized', 'carbonized', tran, ['6A'] ). +verb( 'card', 'cards', 'carding', 'carded', 'carded', tran, [] ). +verb( 'care', 'cares', 'caring', 'cared', 'cared', intran, ['2A','3A','3B','4C'] ). +verb( 'careen', 'careens', 'careening', 'careened', 'careened', _, ['2A','6A'] ). +verb( 'career', 'careers', 'careering', 'careered', 'careered', intran, ['2C','3A'] ). +verb( 'caress', 'caresses', 'caressing', 'caressed', 'caressed', tran, ['6A'] ). +verb( 'caricature', 'caricatures', 'caricaturing', 'caricatured', 'caricatured', tran, ['6A'] ). +verb( 'carol', 'carols', 'carolling', 'carolled', 'carolled', tran, [] ). +verb( 'carouse', 'carouses', 'carousing', 'caroused', 'caroused', tran, ['2A'] ). +verb( 'carp', 'carps', 'carping', 'carped', 'carped', tran, ['2A','3A'] ). +verb( 'carpet', 'carpets', 'carpeting', 'carpeted', 'carpeted', tran, ['6A'] ). +verb( 'carry', 'carries', 'carrying', 'carried', 'carried', _, ['2B','2C','6A','15A','15B','16B'] ). +verb( 'cart', 'carts', 'carting', 'carted', 'carted', tran, ['6A','15B'] ). +verb( 'cartoon', 'cartoons', 'cartooning', 'cartooned', 'cartooned', tran, [] ). +verb( 'carve', 'carves', 'carving', 'carved', 'carved', _, ['6A','14','15A','15B'] ). +verb( 'cascade', 'cascades', 'cascading', 'cascaded', 'cascaded', intran, [] ). +verb( 'case', 'cases', 'casing', 'cased', 'cased', tran, ['6A'] ). +verb( 'cash', 'cashes', 'cashing', 'cashed', 'cashed', _, ['2C','6A','12B','13B'] ). +verb( 'cashier', 'cashiers', 'cashiering', 'cashiered', 'cashiered', tran, ['6A'] ). +verb( 'cast', 'casts', 'casting', 'cast', 'cast', _, ['2C','6A','15A','15B'] ). +verb( 'castigate', 'castigates', 'castigating', 'castigated', 'castigated', tran, ['6A'] ). +verb( 'castle', 'castles', 'castling', 'castled', 'castled', intran, [] ). +verb( 'castrate', 'castrates', 'castrating', 'castrated', 'castrated', tran, ['6A'] ). +verb( 'catalogue', 'catalogues', 'cataloguing', 'catalogued', 'catalogued', tran, ['6A'] ). +verb( 'catapult', 'catapults', 'catapulting', 'catapulted', 'catapulted', tran, [] ). +verb( 'catcall', 'catcalls', 'catcalling', 'catcalled', 'catcalled', intran, [] ). +verb( 'catch', 'catches', 'catching', 'caught', 'caught', _, ['2C','3A','6A','12C','14','15A','15B','19B','22'] ). +verb( 'catechize', 'catechizes', 'catechizing', 'catechized', 'catechized', tran, ['6A'] ). +verb( 'categorize', 'categorizes', 'categorizing', 'categorized', 'categorized', tran, ['6A'] ). +verb( 'cater', 'caters', 'catering', 'catered', 'catered', intran, ['3A'] ). +verb( 'caterwaul', 'caterwauls', 'caterwauling', 'caterwauled', 'caterwauled', intran, [] ). +verb( 'caulk', 'caulks', 'caulking', 'caulked', 'caulked', tran, ['6A'] ). +verb( 'cause', 'causes', 'causing', 'caused', 'caused', tran, ['6A','12A','13A','17'] ). +verb( 'cauterize', 'cauterizes', 'cauterizing', 'cauterized', 'cauterized', tran, ['6A'] ). +verb( 'caution', 'cautions', 'cautioning', 'cautioned', 'cautioned', tran, ['6A','14','17'] ). +verb( 'cave', 'caves', 'caving', 'caved', 'caved', _, ['2C','15B'] ). +verb( 'cavil', 'cavils', 'cavilling', 'cavilled', 'cavilled', intran, ['2A','3A'] ). +verb( 'cavort', 'cavorts', 'cavorting', 'cavorted', 'cavorted', intran, [] ). +verb( 'caw', 'caws', 'cawing', 'cawed', 'cawed', _, ['2A','15B'] ). +verb( 'cease', 'ceases', 'ceasing', 'ceased', 'ceased', _, ['2A','3A','6A','6D','7A'] ). +verb( 'cede', 'cedes', 'ceding', 'ceded', 'ceded', tran, ['6A','14'] ). +verb( 'celebrate', 'celebrates', 'celebrating', 'celebrated', 'celebrated', tran, ['6A'] ). +verb( 'cement', 'cements', 'cementing', 'cemented', 'cemented', tran, ['6A','15B'] ). +verb( 'censor', 'censors', 'censoring', 'censored', 'censored', tran, ['6A'] ). +verb( 'censure', 'censures', 'censuring', 'censured', 'censured', tran, ['6A','14'] ). +verb( 'centralize', 'centralizes', 'centralizing', 'centralized', 'centralized', _, ['2A','6A'] ). +verb( 'centre', 'centres', 'centring', 'centred', 'centred', _, ['3A','6A','14','15A'] ). +verb( 'certificate', 'certificates', 'certificating', 'certificated', 'certificated', tran, [] ). +verb( 'certify', 'certifies', 'certifying', 'certified', 'certified', _, ['3A','6A','9','16B','25'] ). +verb( 'chafe', 'chafes', 'chafing', 'chafed', 'chafed', _, ['2A','3A','6A'] ). +verb( 'chaff', 'chaffs', 'chaffing', 'chaffed', 'chaffed', tran, ['2A','2C','6A','15A'] ). +verb( 'chagrin', 'chagrins', 'chagrining', 'chagrined', 'chagrined', tran, ['6A'] ). +verb( 'chain', 'chains', 'chaining', 'chained', 'chained', tran, ['6A','15A','15B'] ). +verb( 'chair', 'chairs', 'chairing', 'chaired', 'chaired', tran, ['6A'] ). +verb( 'chalk', 'chalks', 'chalking', 'chalked', 'chalked', tran, ['15B'] ). +verb( 'challenge', 'challenges', 'challenging', 'challenged', 'challenged', tran, ['6A','14','17'] ). +verb( 'champ', 'champs', 'champing', 'champed', 'champed', _, ['2A','2C','4A','6A'] ). +verb( 'champion', 'champions', 'championing', 'championed', 'championed', tran, ['6A'] ). +verb( 'chance', 'chances', 'chancing', 'chanced', 'chanced', _, ['2A','3A','4E','6A','6C'] ). +verb( 'change', 'changes', 'changing', 'changed', 'changed', _, ['2A','2C','6A','14'] ). +verb( 'channel', 'channels', 'channelling', 'channelled', 'channelled', tran, ['6A','14'] ). +verb( 'chant', 'chants', 'chanting', 'chanted', 'chanted', _, ['2A','6A'] ). +verb( 'chap', 'chaps', 'chapping', 'chapped', 'chapped', _, ['2A','6A'] ). +verb( 'chaperon', 'chaperons', 'chaperoning', 'chaperoned', 'chaperoned', tran, ['6A'] ). +verb( 'char', 'chars', 'charring', 'charred', 'charred', _, ['2A','6A'] ). +verb( 'characterize', 'characterizes', 'characterizing', 'characterized', 'characterized', tran, ['6A'] ). +verb( 'charge', 'charges', 'charging', 'charged', 'charged', _, ['2A','2B','2C','6A','14','15A','15B','17'] ). +verb( 'charm', 'charms', 'charming', 'charmed', 'charmed', _, ['2A','6A','15A'] ). +verb( 'chart', 'charts', 'charting', 'charted', 'charted', tran, ['6A'] ). +verb( 'charter', 'charters', 'chartering', 'chartered', 'chartered', tran, ['6A'] ). +verb( 'chase', 'chases', 'chasing', 'chased', 'chased', _, ['2C','3A','6A','15A','15B'] ). +verb( 'chasten', 'chastens', 'chastening', 'chastened', 'chastened', tran, ['6A'] ). +verb( 'chastise', 'chastises', 'chastising', 'chastised', 'chastised', tran, ['6A'] ). +verb( 'chat', 'chats', 'chatting', 'chatted', 'chatted', _, ['2A','2C','15B'] ). +verb( 'chatter', 'chatters', 'chattering', 'chattered', 'chattered', intran, ['2A','2C'] ). +verb( 'chaw', 'chaws', 'chawing', 'chawed', 'chawed', tran, [] ). +verb( 'cheapen', 'cheapens', 'cheapening', 'cheapened', 'cheapened', _, ['2A','6A'] ). +verb( 'cheat', 'cheats', 'cheating', 'cheated', 'cheated', _, ['2A','2C','6A','14'] ). +verb( 'check', 'checks', 'checking', 'checked', 'checked', _, ['2C','6A','15B'] ). +verb( 'checker', 'checkers', 'checkering', 'checkered', 'checkered', tran, [] ). +verb( 'checkmate', 'checkmates', 'checkmating', 'checkmated', 'checkmated', tran, ['6A'] ). +verb( 'cheek', 'cheeks', 'cheeking', 'cheeked', 'cheeked', tran, ['6A'] ). +verb( 'cheep', 'cheeps', 'cheeping', 'cheeped', 'cheeped', intran, [] ). +verb( 'cheer', 'cheers', 'cheering', 'cheered', 'cheered', _, ['2A','2C','6A','15B'] ). +verb( 'chequer', 'chequers', 'chequering', 'chequered', 'chequered', tran, [] ). +verb( 'cherish', 'cherishes', 'cherishing', 'cherished', 'cherished', tran, ['6A'] ). +verb( 'chew', 'chews', 'chewing', 'chewed', 'chewed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'chide', 'chides', 'chiding', 'chided', 'chided', _, ['6A','14'] ). +verb( 'chill', 'chills', 'chilling', 'chilled', 'chilled', _, ['2A','2C','6A'] ). +verb( 'chime', 'chimes', 'chiming', 'chimed', 'chimed', _, ['2A','2C','6A','15A'] ). +verb( 'chink', 'chinks', 'chinking', 'chinked', 'chinked', _, ['2A','2C','6A','15B'] ). +verb( 'chip', 'chips', 'chipping', 'chipped', 'chipped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'chirp', 'chirps', 'chirping', 'chirped', 'chirped', _, [] ). +verb( 'chirrup', 'chirrups', 'chirruping', 'chirruped', 'chirruped', _, [] ). +verb( 'chisel', 'chisels', 'chiselling', 'chiselled', 'chiselled', tran, ['6A','14','15B'] ). +verb( 'chivvy', 'chivvies', 'chivvying', 'chivvied', 'chivvied', tran, ['15B'] ). +verb( 'chivy', 'chivies', 'chivying', 'chivied', 'chivied', tran, ['15B'] ). +verb( 'chlorinate', 'chlorinates', 'chlorinating', 'chlorinated', 'chlorinated', tran, [] ). +verb( 'chock', 'chocks', 'chocking', 'chocked', 'chocked', tran, ['6A','15B'] ). +verb( 'choke', 'chokes', 'choking', 'choked', 'choked', _, ['2A','3A','6A','14','15B'] ). +verb( 'choose', 'chooses', 'choosing', 'chose', 'chosen', _, ['2A','2C','3A','6A','7A','16A','16B','23'] ). +verb( 'chop', 'chops', 'chopping', 'chopped', 'chopped', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'chortle', 'chortles', 'chortling', 'chortled', 'chortled', intran, [] ). +verb( 'chorus', 'choruses', 'chorusing', 'chorused', 'chorused', tran, [] ). +verb( 'christen', 'christens', 'christening', 'christened', 'christened', tran, ['6A','23'] ). +verb( 'chronicle', 'chronicles', 'chronicling', 'chronicled', 'chronicled', tran, ['6A'] ). +verb( 'chuck', 'chucks', 'chucking', 'chucked', 'chucked', tran, ['6A','12A','13A','15A','15B'] ). +verb( 'chuckle', 'chuckles', 'chuckling', 'chuckled', 'chuckled', intran, ['2A','2C'] ). +verb( 'chug', 'chugs', 'chugging', 'chugged', 'chugged', intran, ['2C'] ). +verb( 'chum', 'chums', 'chumming', 'chummed', 'chummed', intran, ['2C'] ). +verb( 'churn', 'churns', 'churning', 'churned', 'churned', _, ['2A','2C','6A','15B'] ). +verb( 'cipher', 'ciphers', 'ciphering', 'ciphered', 'ciphered', _, ['2A','6A'] ). +verb( 'circle', 'circles', 'circling', 'circled', 'circled', _, ['2A','2C','6A'] ). +verb( 'circularize', 'circularizes', 'circularizing', 'circularized', 'circularized', tran, ['6A'] ). +verb( 'circulate', 'circulates', 'circulating', 'circulated', 'circulated', _, ['2A','2C','6A'] ). +verb( 'circumcise', 'circumcises', 'circumcising', 'circumcised', 'circumcised', tran, [] ). +verb( 'circumnavigate', 'circumnavigates', 'circumnavigating', 'circumnavigated', 'circumnavigated', tran, ['6A'] ). +verb( 'circumscribe', 'circumscribes', 'circumscribing', 'circumscribed', 'circumscribed', tran, ['6A'] ). +verb( 'circumvent', 'circumvents', 'circumventing', 'circumvented', 'circumvented', tran, ['6A'] ). +verb( 'cite', 'cites', 'citing', 'cited', 'cited', tran, ['6A'] ). +verb( 'civilize', 'civilizes', 'civilizing', 'civilized', 'civilized', tran, ['6A'] ). +verb( 'clack', 'clacks', 'clacking', 'clacked', 'clacked', intran, [] ). +verb( 'claim', 'claims', 'claiming', 'claimed', 'claimed', _, ['2A','4A','7A','9'] ). +verb( 'clam', 'clams', 'clamming', 'clammed', 'clammed', intran, ['2A','2C'] ). +verb( 'clamber', 'clambers', 'clambering', 'clambered', 'clambered', intran, ['2C'] ). +verb( 'clamour', 'clamours', 'clamouring', 'clamoured', 'clamoured', _, ['2A','2C','4A'] ). +verb( 'clamp', 'clamps', 'clamping', 'clamped', 'clamped', _, ['2C','6A','15B'] ). +verb( 'clang', 'clangs', 'clanging', 'clanged', 'clanged', _, [] ). +verb( 'clank', 'clanks', 'clanking', 'clanked', 'clanked', _, [] ). +verb( 'clap', 'claps', 'clapping', 'clapped', 'clapped', _, ['2A','2B','6A','14','15A','15B'] ). +verb( 'clarify', 'clarifies', 'clarifying', 'clarified', 'clarified', _, ['2A','6A'] ). +verb( 'clash', 'clashes', 'clashing', 'clashed', 'clashed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'clasp', 'clasps', 'clasping', 'clasped', 'clasped', _, ['2A','6A','15A'] ). +verb( 'class', 'classes', 'classing', 'classed', 'classed', tran, ['6A','14'] ). +verb( 'classify', 'classifies', 'classifying', 'classified', 'classified', tran, ['6A'] ). +verb( 'clatter', 'clatters', 'clattering', 'clattered', 'clattered', _, ['2A','2C','6A'] ). +verb( 'claw', 'claws', 'clawing', 'clawed', 'clawed', tran, ['3A','6A','15B'] ). +verb( 'clean', 'cleans', 'cleaning', 'cleaned', 'cleaned', _, ['2A','2C','6A','15B'] ). +verb( 'cleanse', 'cleanses', 'cleansing', 'cleansed', 'cleansed', tran, ['6A'] ). +verb( 'clear', 'clears', 'clearing', 'cleared', 'cleared', _, ['2C','6A','14','15B'] ). +verb( 'cleave', 'cleaves', 'cleaving', 'cleaved', 'cleaved', _, ['2A','3A','6A','14','15A','15B','22'] ). +verb( 'clench', 'clenches', 'clenching', 'clenched', 'clenched', tran, ['6A','14'] ). +verb( 'clerk', 'clerks', 'clerking', 'clerked', 'clerked', intran, [] ). +verb( 'clew', 'clews', 'clewing', 'clewed', 'clewed', tran, [] ). +verb( 'click', 'clicks', 'clicking', 'clicked', 'clicked', intran, ['2A'] ). +verb( 'climax', 'climaxes', 'climaxing', 'climaxed', 'climaxed', _, [] ). +verb( 'climb', 'climbs', 'climbing', 'climbed', 'climbed', _, ['2A','2C','6A'] ). +verb( 'clinch', 'clinches', 'clinching', 'clinched', 'clinched', _, ['2A','6A'] ). +verb( 'cling', 'clings', 'clinging', 'clung', 'clung', intran, ['2C','3A'] ). +verb( 'clink', 'clinks', 'clinking', 'clinked', 'clinked', _, [] ). +verb( 'clip', 'clips', 'clipping', 'clipped', 'clipped', tran, ['2C','6A','15A','15B','22'] ). +verb( 'cloak', 'cloaks', 'cloaking', 'cloaked', 'cloaked', tran, ['6A'] ). +verb( 'clobber', 'clobbers', 'clobbering', 'clobbered', 'clobbered', tran, ['6A'] ). +verb( 'clock', 'clocks', 'clocking', 'clocked', 'clocked', _, ['2C','6A','15B'] ). +verb( 'clog', 'clogs', 'clogging', 'clogged', 'clogged', _, ['2A','2C','6A','15B'] ). +verb( 'cloister', 'cloisters', 'cloistering', 'cloistered', 'cloistered', tran, ['6A'] ). +verb( 'close', 'closes', 'closing', 'closed', 'closed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'closet', 'closets', 'closeting', 'closeted', 'closeted', tran, [] ). +verb( 'clot', 'clots', 'clotting', 'clotted', 'clotted', _, ['2A','6A'] ). +verb( 'clothe', 'clothes', 'clothing', 'clothed', 'clothed', tran, ['6A'] ). +verb( 'cloud', 'clouds', 'clouding', 'clouded', 'clouded', _, ['2A','2C','3A','6A'] ). +verb( 'clout', 'clouts', 'clouting', 'clouted', 'clouted', tran, [] ). +verb( 'clown', 'clowns', 'clowning', 'clowned', 'clowned', intran, ['2A'] ). +verb( 'cloy', 'cloys', 'cloying', 'cloyed', 'cloyed', _, ['2A','6A'] ). +verb( 'club', 'clubs', 'clubbing', 'clubbed', 'clubbed', _, ['2C','6A','16A'] ). +verb( 'cluck', 'clucks', 'clucking', 'clucked', 'clucked', intran, [] ). +verb( 'clump', 'clumps', 'clumping', 'clumped', 'clumped', _, ['2A','2C'] ). +verb( 'clunk', 'clunks', 'clunking', 'clunked', 'clunked', intran, [] ). +verb( 'cluster', 'clusters', 'clustering', 'clustered', 'clustered', intran, ['2A','2C','3A'] ). +verb( 'clutch', 'clutches', 'clutching', 'clutched', 'clutched', _, ['2A','3A','15A'] ). +verb( 'clutter', 'clutters', 'cluttering', 'cluttered', 'cluttered', tran, ['6A','15B'] ). +verb( 'co-opt', 'co-opts', 'co-opting', 'co-opted', 'co-opted', tran, ['6A','14'] ). +verb( 'co-star', 'co-stars', 'co-starring', 'co-starred', 'co-starred', _, ['6A','14'] ). +verb( 'coach', 'coaches', 'coaching', 'coached', 'coached', _, ['2A','6A','14'] ). +verb( 'coagulate', 'coagulates', 'coagulating', 'coagulated', 'coagulated', _, ['2A','6A'] ). +verb( 'coal', 'coals', 'coaling', 'coaled', 'coaled', _, ['2A','6A'] ). +verb( 'coalesce', 'coalesces', 'coalescing', 'coalesced', 'coalesced', intran, [] ). +verb( 'coarsen', 'coarsens', 'coarsening', 'coarsened', 'coarsened', _, ['2A','6A'] ). +verb( 'coast', 'coasts', 'coasting', 'coasted', 'coasted', _, ['2A','2C','3A','6A'] ). +verb( 'coat', 'coats', 'coating', 'coated', 'coated', tran, ['6A','14'] ). +verb( 'coax', 'coaxes', 'coaxing', 'coaxed', 'coaxed', _, ['2A','6A','14','15B','17'] ). +verb( 'cobble', 'cobbles', 'cobbling', 'cobbled', 'cobbled', tran, ['6A'] ). +verb( 'cock', 'cocks', 'cocking', 'cocked', 'cocked', tran, ['6A','15B'] ). +verb( 'cocoon', 'cocoons', 'cocooning', 'cocooned', 'cocooned', tran, ['6A'] ). +verb( 'cod', 'cods', 'codding', 'codded', 'codded', _, ['2A','6A'] ). +verb( 'coddle', 'coddles', 'coddling', 'coddled', 'coddled', tran, ['6A'] ). +verb( 'code', 'codes', 'coding', 'coded', 'coded', tran, [] ). +verb( 'codify', 'codifies', 'codifying', 'codified', 'codified', tran, ['6A'] ). +verb( 'coerce', 'coerces', 'coercing', 'coerced', 'coerced', tran, ['6A','14'] ). +verb( 'coexist', 'coexists', 'coexisting', 'coexisted', 'coexisted', intran, ['2A','3A'] ). +verb( 'cogitate', 'cogitates', 'cogitating', 'cogitated', 'cogitated', _, ['2A','3A','6A','14'] ). +verb( 'cohabit', 'cohabits', 'cohabiting', 'cohabited', 'cohabited', intran, [] ). +verb( 'cohere', 'coheres', 'cohering', 'cohered', 'cohered', intran, ['2A'] ). +verb( 'coil', 'coils', 'coiling', 'coiled', 'coiled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'coin', 'coins', 'coining', 'coined', 'coined', tran, ['6A'] ). +verb( 'coincide', 'coincides', 'coinciding', 'coincided', 'coincided', intran, ['2A','3A'] ). +verb( 'coke', 'cokes', 'coking', 'coked', 'coked', tran, [] ). +verb( 'cold-shoulder', 'cold-shoulders', 'cold-shouldering', 'cold-shouldered', 'cold-shouldered', tran, ['6A'] ). +verb( 'collaborate', 'collaborates', 'collaborating', 'collaborated', 'collaborated', intran, ['2A','3A'] ). +verb( 'collapse', 'collapses', 'collapsing', 'collapsed', 'collapsed', intran, ['2A','6A'] ). +verb( 'collar', 'collars', 'collaring', 'collared', 'collared', tran, ['6A'] ). +verb( 'collate', 'collates', 'collating', 'collated', 'collated', tran, ['6A'] ). +verb( 'collect', 'collects', 'collecting', 'collected', 'collected', _, ['2A','2C','6A','15B'] ). +verb( 'collectivize', 'collectivizes', 'collectivizing', 'collectivized', 'collectivized', tran, ['6A'] ). +verb( 'collide', 'collides', 'colliding', 'collided', 'collided', intran, ['2A','2C','3A'] ). +verb( 'collocate', 'collocates', 'collocating', 'collocated', 'collocated', intran, ['2A','3A'] ). +verb( 'colonize', 'colonizes', 'colonizing', 'colonized', 'colonized', tran, ['6A'] ). +verb( 'colour', 'colours', 'colouring', 'coloured', 'coloured', _, ['2A','2C','6A','22'] ). +verb( 'comb', 'combs', 'combing', 'combed', 'combed', _, ['2C','3A','6A','15B'] ). +verb( 'combat', 'combats', 'combating', 'combated', 'combated', _, ['3A','6A'] ). +verb( 'combine', 'combines', 'combining', 'combined', 'combined', _, ['2A','3A','4A','6A','14'] ). +verb( 'come', 'comes', 'coming', 'came', 'come', intran, ['2A','2B','2C','2D','2E','3A','4A'] ). +verb( 'comfort', 'comforts', 'comforting', 'comforted', 'comforted', tran, ['6A'] ). +verb( 'command', 'commands', 'commanding', 'commanded', 'commanded', _, ['2A','6A','9','17'] ). +verb( 'commandeer', 'commandeers', 'commandeering', 'commandeered', 'commandeered', tran, ['6A'] ). +verb( 'commemorate', 'commemorates', 'commemorating', 'commemorated', 'commemorated', tran, ['6A'] ). +verb( 'commence', 'commences', 'commencing', 'commenced', 'commenced', _, ['2A','3A','6A','6C'] ). +verb( 'commend', 'commends', 'commending', 'commended', 'commended', tran, ['6A','14'] ). +verb( 'comment', 'comments', 'commenting', 'commented', 'commented', intran, ['2A','3A'] ). +verb( 'commentate', 'commentates', 'commentating', 'commentated', 'commentated', intran, ['3A'] ). +verb( 'commercialize', 'commercializes', 'commercializing', 'commercialized', 'commercialized', tran, ['6A'] ). +verb( 'commingle', 'commingles', 'commingling', 'commingled', 'commingled', _, ['2A','6A'] ). +verb( 'commiserate', 'commiserates', 'commiserating', 'commiserated', 'commiserated', intran, ['3A'] ). +verb( 'commission', 'commissions', 'commissioning', 'commissioned', 'commissioned', tran, ['6A','17'] ). +verb( 'commit', 'commits', 'committing', 'committed', 'committed', tran, ['6A','14','16A'] ). +verb( 'commune', 'communes', 'communing', 'communed', 'communed', intran, ['2C','3A'] ). +verb( 'communicate', 'communicates', 'communicating', 'communicated', 'communicated', _, ['2A','3A','6A','14'] ). +verb( 'commute', 'commutes', 'commuting', 'commuted', 'commuted', _, ['2A','6A','14'] ). +verb( 'comp`ere', 'comp`eres', 'comp`ering', 'comp`ered', 'comp`ered', tran, [] ). +verb( 'compact', 'compacts', 'compacting', 'compacted', 'compacted', tran, [] ). +verb( 'compare', 'compares', 'comparing', 'compared', 'compared', _, ['3A','6A','14'] ). +verb( 'compartmentalize', 'compartmentalizes', 'compartmentalizing', 'compartmentalized', 'compartmentalized', tran, [] ). +verb( 'compass', 'compasses', 'compassing', 'compassed', 'compassed', tran, [] ). +verb( 'compel', 'compels', 'compelling', 'compelled', 'compelled', tran, ['6A','14','17'] ). +verb( 'compensate', 'compensates', 'compensating', 'compensated', 'compensated', _, ['3A','6A','14'] ). +verb( 'compete', 'competes', 'competing', 'competed', 'competed', intran, ['2A','3A'] ). +verb( 'compile', 'compiles', 'compiling', 'compiled', 'compiled', tran, ['6A'] ). +verb( 'complain', 'complains', 'complaining', 'complained', 'complained', intran, ['2A','3A','3B'] ). +verb( 'complement', 'complements', 'complementing', 'complemented', 'complemented', tran, ['6A'] ). +verb( 'complete', 'completes', 'completing', 'completed', 'completed', tran, ['6A'] ). +verb( 'complicate', 'complicates', 'complicating', 'complicated', 'complicated', tran, ['6A'] ). +verb( 'compliment', 'compliments', 'complimenting', 'complimented', 'complimented', tran, ['6A','14'] ). +verb( 'comply', 'complies', 'complying', 'complied', 'complied', tran, ['2A','3A'] ). +verb( 'comport', 'comports', 'comporting', 'comported', 'comported', _, ['3A','15A'] ). +verb( 'compose', 'composes', 'composing', 'composed', 'composed', _, ['2A','6A','16A'] ). +verb( 'compost', 'composts', 'composting', 'composted', 'composted', tran, ['6A'] ). +verb( 'compound', 'compounds', 'compounding', 'compounded', 'compounded', _, ['2A','3A','6A'] ). +verb( 'comprehend', 'comprehends', 'comprehending', 'comprehended', 'comprehended', tran, ['6A'] ). +verb( 'compress', 'compresses', 'compressing', 'compressed', 'compressed', tran, ['6A','14'] ). +verb( 'comprise', 'comprises', 'comprising', 'comprised', 'comprised', tran, ['6A'] ). +verb( 'compromise', 'compromises', 'compromising', 'compromised', 'compromised', _, ['2A','6A'] ). +verb( 'compute', 'computes', 'computing', 'computed', 'computed', _, ['2A','6A','14'] ). +verb( 'computerize', 'computerizes', 'computerizing', 'computerized', 'computerized', tran, ['6A'] ). +verb( 'con', 'cons', 'conning', 'conned', 'conned', tran, ['6A','14'] ). +verb( 'conceal', 'conceals', 'concealing', 'concealed', 'concealed', tran, ['6A','14'] ). +verb( 'concede', 'concedes', 'conceding', 'conceded', 'conceded', tran, ['6A','9','12A','13A'] ). +verb( 'conceive', 'conceives', 'conceiving', 'conceived', 'conceived', _, ['2A','3A','6A','9','10','14'] ). +verb( 'concentrate', 'concentrates', 'concentrating', 'concentrated', 'concentrated', _, ['2A','3A','6A','14'] ). +verb( 'concern', 'concerns', 'concerning', 'concerned', 'concerned', tran, ['6A','14'] ). +verb( 'concert', 'concerts', 'concerting', 'concerted', 'concerted', tran, [] ). +verb( 'conciliate', 'conciliates', 'conciliating', 'conciliated', 'conciliated', tran, ['6A'] ). +verb( 'conclude', 'concludes', 'concluding', 'concluded', 'concluded', _, ['2A','3A','6A','7A','9','14'] ). +verb( 'concoct', 'concocts', 'concocting', 'concocted', 'concocted', tran, ['6A'] ). +verb( 'concrete', 'concretes', 'concreting', 'concreted', 'concreted', _, ['2A','6A'] ). +verb( 'concur', 'concurs', 'concurring', 'concurred', 'concurred', intran, ['2A','3A','4A'] ). +verb( 'concuss', 'concusses', 'concussing', 'concussed', 'concussed', tran, ['6A'] ). +verb( 'condemn', 'condemns', 'condemning', 'condemned', 'condemned', tran, ['6A','14','16B','17'] ). +verb( 'condense', 'condenses', 'condensing', 'condensed', 'condensed', _, ['2A','3A','6A','14'] ). +verb( 'condescend', 'condescends', 'condescending', 'condescended', 'condescended', intran, ['2A','3A','4A'] ). +verb( 'condition', 'conditions', 'conditioning', 'conditioned', 'conditioned', tran, ['6A'] ). +verb( 'condole', 'condoles', 'condoling', 'condoled', 'condoled', intran, ['3A'] ). +verb( 'condone', 'condones', 'condoning', 'condoned', 'condoned', tran, ['6A','6C'] ). +verb( 'conduce', 'conduces', 'conducing', 'conduced', 'conduced', intran, ['3A'] ). +verb( 'conduct', 'conducts', 'conducting', 'conducted', 'conducted', _, ['2A','6A','14','15A','15B','16A'] ). +verb( 'cone', 'cones', 'coning', 'coned', 'coned', tran, ['15B'] ). +verb( 'confab', 'confabs', 'confabbing', 'confabbed', 'confabbed', intran, [] ). +verb( 'confabulate', 'confabulates', 'confabulating', 'confabulated', 'confabulated', intran, ['2A','3A'] ). +verb( 'confederate', 'confederates', 'confederating', 'confederated', 'confederated', _, ['2A','3A','6A','14'] ). +verb( 'confer', 'confers', 'conferring', 'conferred', 'conferred', _, ['2A','3A','14'] ). +verb( 'confess', 'confesses', 'confessing', 'confessed', 'confessed', _, ['2A','3A','3B','6A','9','14','25'] ). +verb( 'confide', 'confides', 'confiding', 'confided', 'confided', _, ['3A','14'] ). +verb( 'configure', 'configures', 'configuring', 'configured', 'configured', tran, ['6A'] ). +verb( 'confine', 'confines', 'confining', 'confined', 'confined', tran, ['6A','14'] ). +verb( 'confirm', 'confirms', 'confirming', 'confirmed', 'confirmed', tran, ['6A','9'] ). +verb( 'confiscate', 'confiscates', 'confiscating', 'confiscated', 'confiscated', tran, ['6A'] ). +verb( 'conflict', 'conflicts', 'conflicting', 'conflicted', 'conflicted', intran, ['2A','3A'] ). +verb( 'conform', 'conforms', 'conforming', 'conformed', 'conformed', _, ['2A','3A','14'] ). +verb( 'confound', 'confounds', 'confounding', 'confounded', 'confounded', tran, ['6A','14'] ). +verb( 'confront', 'confronts', 'confronting', 'confronted', 'confronted', tran, ['6A','14'] ). +verb( 'confuse', 'confuses', 'confusing', 'confused', 'confused', tran, ['6A','14'] ). +verb( 'confute', 'confutes', 'confuting', 'confuted', 'confuted', tran, ['6A'] ). +verb( 'congeal', 'congeals', 'congealing', 'congealed', 'congealed', _, ['2A','6A'] ). +verb( 'conglomerate', 'conglomerates', 'conglomerating', 'conglomerated', 'conglomerated', _, ['2A','6A'] ). +verb( 'congratulate', 'congratulates', 'congratulating', 'congratulated', 'congratulated', tran, ['6A','14'] ). +verb( 'congregate', 'congregates', 'congregating', 'congregated', 'congregated', _, ['2A','2C','6A'] ). +verb( 'conjecture', 'conjectures', 'conjecturing', 'conjectured', 'conjectured', _, ['2A','6A','9','25'] ). +verb( 'conjoin', 'conjoins', 'conjoining', 'conjoined', 'conjoined', _, ['2A','6A'] ). +verb( 'conjugate', 'conjugates', 'conjugating', 'conjugated', 'conjugated', _, ['2A','6A'] ). +verb( 'conjure', 'conjures', 'conjuring', 'conjured', 'conjured', _, ['2A','15A','15B','17'] ). +verb( 'conk', 'conks', 'conking', 'conked', 'conked', intran, [] ). +verb( 'connect', 'connects', 'connecting', 'connected', 'connected', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'connive', 'connives', 'conniving', 'connived', 'connived', intran, ['3A'] ). +verb( 'connote', 'connotes', 'connoting', 'connoted', 'connoted', tran, ['6A'] ). +verb( 'conquer', 'conquers', 'conquering', 'conquered', 'conquered', tran, ['6A'] ). +verb( 'conscript', 'conscripts', 'conscripting', 'conscripted', 'conscripted', tran, ['6A','14'] ). +verb( 'consecrate', 'consecrates', 'consecrating', 'consecrated', 'consecrated', tran, ['6A','14','23'] ). +verb( 'consent', 'consents', 'consenting', 'consented', 'consented', intran, ['2A','3A','7A'] ). +verb( 'conserve', 'conserves', 'conserving', 'conserved', 'conserved', tran, ['6A'] ). +verb( 'consider', 'considers', 'considering', 'considered', 'considered', tran, ['6A','6C','8','9','10','25'] ). +verb( 'consign', 'consigns', 'consigning', 'consigned', 'consigned', tran, ['6A','14'] ). +verb( 'consist', 'consists', 'consisting', 'consisted', 'consisted', intran, ['3A'] ). +verb( 'console', 'consoles', 'consoling', 'consoled', 'consoled', tran, ['6A','14'] ). +verb( 'consolidate', 'consolidates', 'consolidating', 'consolidated', 'consolidated', _, ['2A','6A'] ). +verb( 'consort', 'consorts', 'consorting', 'consorted', 'consorted', intran, ['2C','3A'] ). +verb( 'conspire', 'conspires', 'conspiring', 'conspired', 'conspired', _, ['2A','3A','4A','6A'] ). +verb( 'constipate', 'constipates', 'constipating', 'constipated', 'constipated', tran, ['6A'] ). +verb( 'constitute', 'constitutes', 'constituting', 'constituted', 'constituted', tran, ['6A','23'] ). +verb( 'constitutionalize', 'constitutionalizes', 'constitutionalizing', 'constitutionalized', 'constitutionalized', tran, [] ). +verb( 'constrain', 'constrains', 'constraining', 'constrained', 'constrained', tran, ['6A','17'] ). +verb( 'constrict', 'constricts', 'constricting', 'constricted', 'constricted', tran, ['6A'] ). +verb( 'construct', 'constructs', 'constructing', 'constructed', 'constructed', tran, ['6A'] ). +verb( 'construe', 'construes', 'construing', 'construed', 'construed', _, ['2A','6A'] ). +verb( 'consult', 'consults', 'consulting', 'consulted', 'consulted', _, ['3A','6A','14'] ). +verb( 'consume', 'consumes', 'consuming', 'consumed', 'consumed', _, ['6A'] ). +verb( 'consummate', 'consummates', 'consummating', 'consummated', 'consummated', tran, ['6A'] ). +verb( 'contact', 'contacts', 'contacting', 'contacted', 'contacted', tran, ['6A'] ). +verb( 'contain', 'contains', 'containing', 'contained', 'contained', tran, ['6A'] ). +verb( 'contaminate', 'contaminates', 'contaminating', 'contaminated', 'contaminated', tran, ['6A'] ). +verb( 'contemn', 'contemns', 'contemning', 'contemned', 'contemned', tran, ['6A'] ). +verb( 'contemplate', 'contemplates', 'contemplating', 'contemplated', 'contemplated', _, ['2A','6A','6C','19C'] ). +verb( 'contend', 'contends', 'contending', 'contended', 'contended', _, ['3A','9'] ). +verb( 'content', 'contents', 'contenting', 'contented', 'contented', tran, ['6A','14'] ). +verb( 'contest', 'contests', 'contesting', 'contested', 'contested', _, ['3A','6A','9'] ). +verb( 'continue', 'continues', 'continuing', 'continued', 'continued', _, ['2A','2B','2D','2E','6A','6D','7A','14'] ). +verb( 'contort', 'contorts', 'contorting', 'contorted', 'contorted', tran, ['6A','14'] ). +verb( 'contour', 'contours', 'contouring', 'contoured', 'contoured', tran, ['6A'] ). +verb( 'contract', 'contracts', 'contracting', 'contracted', 'contracted', _, ['2A','2C','4A','6A','14'] ). +verb( 'contradict', 'contradicts', 'contradicting', 'contradicted', 'contradicted', tran, ['6A'] ). +verb( 'contradistinguish', 'contradistinguishes', 'contradistinguishing', 'contradistinguished', 'contradistinguished', tran, ['14'] ). +verb( 'contrast', 'contrasts', 'contrasting', 'contrasted', 'contrasted', _, ['2C','3A','6A','14'] ). +verb( 'contravene', 'contravenes', 'contravening', 'contravened', 'contravened', tran, ['6A'] ). +verb( 'contribute', 'contributes', 'contributing', 'contributed', 'contributed', _, ['2A','3A','6A','14'] ). +verb( 'contrive', 'contrives', 'contriving', 'contrived', 'contrived', _, ['2A','6A','7A'] ). +verb( 'control', 'controls', 'controlling', 'controlled', 'controlled', tran, ['6A'] ). +verb( 'controvert', 'controverts', 'controverting', 'controverted', 'controverted', tran, ['6A'] ). +verb( 'contuse', 'contuses', 'contusing', 'contused', 'contused', tran, ['6A'] ). +verb( 'convalesce', 'convalesces', 'convalescing', 'convalesced', 'convalesced', intran, ['2A'] ). +verb( 'convene', 'convenes', 'convening', 'convened', 'convened', _, ['2A','6A'] ). +verb( 'converge', 'converges', 'converging', 'converged', 'converged', intran, ['2A','2C','3A'] ). +verb( 'converse', 'converses', 'conversing', 'conversed', 'conversed', intran, ['2A','2C','3A'] ). +verb( 'convert', 'converts', 'converting', 'converted', 'converted', tran, ['6A','14'] ). +verb( 'convey', 'conveys', 'conveying', 'conveyed', 'conveyed', tran, ['6A','14'] ). +verb( 'convict', 'convicts', 'convicting', 'convicted', 'convicted', tran, ['6A','14'] ). +verb( 'convince', 'convinces', 'convincing', 'convinced', 'convinced', tran, ['6A','11','14'] ). +verb( 'convoke', 'convokes', 'convoking', 'convoked', 'convoked', tran, ['6A'] ). +verb( 'convoy', 'convoys', 'convoying', 'convoyed', 'convoyed', tran, ['6A'] ). +verb( 'convulse', 'convulses', 'convulsing', 'convulsed', 'convulsed', tran, ['6A'] ). +verb( 'coo', 'coos', 'cooing', 'cooed', 'cooed', _, [] ). +verb( 'cook', 'cooks', 'cooking', 'cooked', 'cooked', _, ['2A','6A','12B','13B','15B'] ). +verb( 'cool', 'cools', 'cooling', 'cooled', 'cooled', _, ['2A','2C','6A'] ). +verb( 'coop', 'coops', 'cooping', 'cooped', 'cooped', tran, ['6A','15B'] ). +verb( 'cooperate', 'cooperates', 'cooperating', 'cooperated', 'cooperated', intran, ['2A','3A','4A'] ). +verb( 'coordinate', 'coordinates', 'coordinating', 'coordinated', 'coordinated', tran, ['6A'] ). +verb( 'cop', 'cops', 'copping', 'copped', 'copped', _, ['2C'] ). +verb( 'cope', 'copes', 'coping', 'coped', 'coped', intran, ['2A','3A'] ). +verb( 'copper', 'coppers', 'coppering', 'coppered', 'coppered', tran, [] ). +verb( 'copper-bottom', 'copper-bottoms', 'copper-bottoming', 'copper-bottomed', 'copper-bottomed', tran, [] ). +verb( 'copulate', 'copulates', 'copulating', 'copulated', 'copulated', intran, ['2A','3A'] ). +verb( 'copy', 'copies', 'copying', 'copied', 'copied', _, ['2A','6A','15A','15B'] ). +verb( 'copyright', 'copyrights', 'copyrighting', 'copyrighted', 'copyrighted', tran, [] ). +verb( 'cord', 'cords', 'cording', 'corded', 'corded', tran, [] ). +verb( 'cordon', 'cordons', 'cordoning', 'cordoned', 'cordoned', tran, ['15B'] ). +verb( 'core', 'cores', 'coring', 'cored', 'cored', tran, ['6A'] ). +verb( 'cork', 'corks', 'corking', 'corked', 'corked', tran, ['6A','15A'] ). +verb( 'corn', 'corns', 'corning', 'corned', 'corned', tran, [] ). +verb( 'corner', 'corners', 'cornering', 'cornered', 'cornered', _, ['2A','6A'] ). +verb( 'corral', 'corrals', 'corralling', 'corralled', 'corralled', tran, ['6A'] ). +verb( 'correct', 'corrects', 'correcting', 'corrected', 'corrected', tran, ['6A','14'] ). +verb( 'correlate', 'correlates', 'correlating', 'correlated', 'correlated', _, ['2A','3A','6A','14'] ). +verb( 'correspond', 'corresponds', 'corresponding', 'corresponded', 'corresponded', intran, ['2A','3A'] ). +verb( 'corroborate', 'corroborates', 'corroborating', 'corroborated', 'corroborated', tran, ['6A'] ). +verb( 'corrode', 'corrodes', 'corroding', 'corroded', 'corroded', _, ['2A','6A'] ). +verb( 'corrugate', 'corrugates', 'corrugating', 'corrugated', 'corrugated', _, ['2A','6A'] ). +verb( 'corrupt', 'corrupts', 'corrupting', 'corrupted', 'corrupted', _, ['2A','6A'] ). +verb( 'coruscate', 'coruscates', 'coruscating', 'coruscated', 'coruscated', intran, ['2A'] ). +verb( 'cosh', 'coshes', 'coshing', 'coshed', 'coshed', tran, [] ). +verb( 'cosset', 'cossets', 'cosseting', 'cosseted', 'cosseted', tran, [] ). +verb( 'cost', 'costs', 'costing', 'costed', 'costed', _, ['2B','6A'] ). +verb( 'cotton', 'cottons', 'cottoning', 'cottoned', 'cottoned', intran, [] ). +verb( 'couch', 'couches', 'couching', 'couched', 'couched', _, ['2A','6A','14'] ). +verb( 'cough', 'coughs', 'coughing', 'coughed', 'coughed', _, ['2A','15B'] ). +verb( 'counsel', 'counsels', 'counselling', 'counselled', 'counselled', tran, ['6A','6B','17'] ). +verb( 'count', 'counts', 'counting', 'counted', 'counted', _, ['2A','2C','3A','6A','14','16B','25'] ). +verb( 'countenance', 'countenances', 'countenancing', 'countenanced', 'countenanced', tran, ['6A'] ). +verb( 'counter', 'counters', 'countering', 'countered', 'countered', _, ['2A','3A','6A','14'] ). +verb( 'counteract', 'counteracts', 'counteracting', 'counteracted', 'counteracted', tran, ['6A'] ). +verb( 'counterattack', 'counterattacks', 'counterattacking', 'counterattacked', 'counterattacked', _, [] ). +verb( 'counterbalance', 'counterbalances', 'counterbalancing', 'counterbalanced', 'counterbalanced', tran, ['6A'] ). +verb( 'counterfeit', 'counterfeits', 'counterfeiting', 'counterfeited', 'counterfeited', tran, ['6A'] ). +verb( 'countermand', 'countermands', 'countermanding', 'countermanded', 'countermanded', tran, ['6A'] ). +verb( 'countermine', 'countermines', 'countermining', 'countermined', 'countermined', _, [] ). +verb( 'counterplot', 'counterplots', 'counterplotting', 'counterplotted', 'counterplotted', _, [] ). +verb( 'counterpoise', 'counterpoises', 'counterpoising', 'counterpoised', 'counterpoised', tran, [] ). +verb( 'countersign', 'countersigns', 'countersigning', 'countersigned', 'countersigned', tran, ['6A'] ). +verb( 'countersink', 'countersinks', 'countersinking', 'countersunk', 'countersunk', tran, [] ). +verb( 'countervail', 'countervails', 'countervailing', 'countervailed', 'countervailed', _, ['2A','6A'] ). +verb( 'couple', 'couples', 'coupling', 'coupled', 'coupled', _, ['2A','6A','14'] ). +verb( 'course', 'courses', 'coursing', 'coursed', 'coursed', _, ['2A','2C','6A'] ). +verb( 'court', 'courts', 'courting', 'courted', 'courted', _, ['2A','6A'] ). +verb( 'court-martial', 'court-martials', 'court-martialing', 'court-martialed', 'court-martialed', tran, ['6A'] ). +verb( 'covenant', 'covenants', 'covenanting', 'covenanted', 'covenanted', _, ['3A','6A','7A','9','14'] ). +verb( 'cover', 'covers', 'covering', 'covered', 'covered', tran, ['6A','15A','15B'] ). +verb( 'covet', 'covets', 'coveting', 'coveted', 'coveted', tran, ['6A'] ). +verb( 'cow', 'cows', 'cowing', 'cowed', 'cowed', tran, ['6A'] ). +verb( 'cower', 'cowers', 'cowering', 'cowered', 'cowered', intran, ['2A','2C'] ). +verb( 'cox', 'coxes', 'coxing', 'coxed', 'coxed', _, ['2A','6A'] ). +verb( 'cozen', 'cozens', 'cozening', 'cozened', 'cozened', tran, ['6A','14'] ). +verb( 'crab', 'crabs', 'crabbing', 'crabbed', 'crabbed', _, [] ). +verb( 'crack', 'cracks', 'cracking', 'cracked', 'cracked', _, ['2A','2C','6A','14'] ). +verb( 'crackle', 'crackles', 'crackling', 'crackled', 'crackled', intran, ['2A','2C'] ). +verb( 'cradle', 'cradles', 'cradling', 'cradled', 'cradled', tran, ['6A','14'] ). +verb( 'cram', 'crams', 'cramming', 'crammed', 'crammed', _, ['2A','6A','14','15B'] ). +verb( 'cramp', 'cramps', 'cramping', 'cramped', 'cramped', tran, ['6A'] ). +verb( 'crane', 'cranes', 'craning', 'craned', 'craned', _, ['2A','2C','6A','16A'] ). +verb( 'crank', 'cranks', 'cranking', 'cranked', 'cranked', tran, ['6A','15B'] ). +verb( 'crap', 'craps', 'crapping', 'crapped', 'crapped', intran, [] ). +verb( 'crash', 'crashes', 'crashing', 'crashed', 'crashed', _, ['2A','2C','6A'] ). +verb( 'crash-dive', 'crash-dives', 'crash-diving', 'crash-dived', 'crash-dived', intran, [] ). +verb( 'crash-land', 'crash-lands', 'crash-landing', 'crash-landed', 'crash-landed', _, [] ). +verb( 'crate', 'crates', 'crating', 'crated', 'crated', tran, [] ). +verb( 'crave', 'craves', 'craving', 'craved', 'craved', _, ['2A','3A'] ). +verb( 'crawl', 'crawls', 'crawling', 'crawled', 'crawled', intran, ['2A','2C'] ). +verb( 'crayon', 'crayons', 'crayoning', 'crayoned', 'crayoned', tran, [] ). +verb( 'creak', 'creaks', 'creaking', 'creaked', 'creaked', intran, [] ). +verb( 'cream', 'creams', 'creaming', 'creamed', 'creamed', tran, [] ). +verb( 'crease', 'creases', 'creasing', 'creased', 'creased', _, ['2A','6A'] ). +verb( 'create', 'creates', 'creating', 'created', 'created', tran, ['6A','23'] ). +verb( 'credit', 'credits', 'crediting', 'credited', 'credited', tran, ['6A','14'] ). +verb( 'creep', 'creeps', 'creeping', 'crept', 'crept', intran, ['2A','2B','2C'] ). +verb( 'cremate', 'cremates', 'cremating', 'cremated', 'cremated', tran, ['6A'] ). +verb( 'crepitate', 'crepitates', 'crepitating', 'crepitated', 'crepitated', intran, ['2A'] ). +verb( 'crest', 'crests', 'cresting', 'crested', 'crested', _, [] ). +verb( 'crew', 'crews', 'crewing', 'crewed', 'crewed', intran, ['3A','6A'] ). +verb( 'crib', 'cribs', 'cribbing', 'cribbed', 'cribbed', _, [] ). +verb( 'crick', 'cricks', 'cricking', 'cricked', 'cricked', tran, [] ). +verb( 'crime', 'crimes', 'criming', 'crimed', 'crimed', tran, [] ). +verb( 'crimp', 'crimps', 'crimping', 'crimped', 'crimped', tran, [] ). +verb( 'crimson', 'crimsons', 'crimsoning', 'crimsoned', 'crimsoned', _, [] ). +verb( 'cringe', 'cringes', 'cringing', 'cringed', 'cringed', intran, ['2A','2C'] ). +verb( 'crinkle', 'crinkles', 'crinkling', 'crinkled', 'crinkled', _, ['2A','2C','6A','15B'] ). +verb( 'cripple', 'cripples', 'crippling', 'crippled', 'crippled', tran, ['6A'] ). +verb( 'crisp', 'crisps', 'crisping', 'crisped', 'crisped', _, [] ). +verb( 'crisscross', 'crisscrosses', 'crisscrossing', 'crisscrossed', 'crisscrossed', _, [] ). +verb( 'criticize', 'criticizes', 'criticizing', 'criticized', 'criticized', _, ['2A','6A','14'] ). +verb( 'croak', 'croaks', 'croaking', 'croaked', 'croaked', _, ['2A','6A','15B'] ). +verb( 'crochet', 'crochets', 'crocheting', 'crocheted', 'crocheted', _, ['2A','6A'] ). +verb( 'crock', 'crocks', 'crocking', 'crocked', 'crocked', _, ['2C','15B'] ). +verb( 'crook', 'crooks', 'crooking', 'crooked', 'crooked', _, ['2A','6A'] ). +verb( 'croon', 'croons', 'crooning', 'crooned', 'crooned', _, ['2C','6A','13A','15A'] ). +verb( 'crop', 'crops', 'cropping', 'cropped', 'cropped', _, ['2A','2C','6A','14','22'] ). +verb( 'cross', 'crosses', 'crossing', 'crossed', 'crossed', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'cross-examine', 'cross-examines', 'cross-examining', 'cross-examined', 'cross-examined', tran, ['6A'] ). +verb( 'cross-fertilize', 'cross-fertilizes', 'cross-fertilizing', 'cross-fertilized', 'cross-fertilized', tran, [] ). +verb( 'cross-index', 'cross-indexes', 'cross-indexing', 'cross-indexed', 'cross-indexed', tran, [] ). +verb( 'cross-question', 'cross-questions', 'cross-questioning', 'cross-questioned', 'cross-questioned', tran, ['6A'] ). +verb( 'crossbreed', 'crossbreeds', 'crossbreeding', 'crossbred', 'crossbred', tran, ['2A','6A'] ). +verb( 'crosscheck', 'crosschecks', 'crosschecking', 'crosschecked', 'crosschecked', _, ['2A','6A'] ). +verb( 'crouch', 'crouches', 'crouching', 'crouched', 'crouched', intran, ['2A','2C','4A'] ). +verb( 'crow', 'crows', 'crowing', 'crowed', 'crowed', intran, ['3A','6A'] ). +verb( 'crowd', 'crowds', 'crowding', 'crowded', 'crowded', _, ['2B','2C','6A','14','15A','15B'] ). +verb( 'crown', 'crowns', 'crowning', 'crowned', 'crowned', tran, ['6A','14','23'] ). +verb( 'crucify', 'crucifies', 'crucifying', 'crucified', 'crucified', tran, [] ). +verb( 'cruise', 'cruises', 'cruising', 'cruised', 'cruised', intran, ['2A','2C'] ). +verb( 'crumble', 'crumbles', 'crumbling', 'crumbled', 'crumbled', _, ['2A','2C','6A'] ). +verb( 'crumple', 'crumples', 'crumpling', 'crumpled', 'crumpled', _, ['2A','2C','6A','15B'] ). +verb( 'crunch', 'crunches', 'crunching', 'crunched', 'crunched', _, ['2A','2C','6A'] ). +verb( 'crusade', 'crusades', 'crusading', 'crusaded', 'crusaded', intran, ['2A','3A'] ). +verb( 'crush', 'crushes', 'crushing', 'crushed', 'crushed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'crust', 'crusts', 'crusting', 'crusted', 'crusted', _, ['2A','2C','6A'] ). +verb( 'cry', 'cries', 'crying', 'cried', 'cried', _, ['2A','2B','2C','3A','4A','6A','9','14','15A','15B'] ). +verb( 'crystallize', 'crystallizes', 'crystallizing', 'crystallized', 'crystallized', _, ['2A','6A'] ). +verb( 'cube', 'cubes', 'cubing', 'cubed', 'cubed', tran, ['6A'] ). +verb( 'cuckold', 'cuckolds', 'cuckolding', 'cuckolded', 'cuckolded', tran, ['6A'] ). +verb( 'cuddle', 'cuddles', 'cuddling', 'cuddled', 'cuddled', _, ['2C','6A','15B'] ). +verb( 'cudgel', 'cudgels', 'cudgeling', 'cudgeled', 'cudgeled', tran, [] ). +verb( 'cuff', 'cuffs', 'cuffing', 'cuffed', 'cuffed', tran, [] ). +verb( 'cull', 'culls', 'culling', 'culled', 'culled', tran, ['6A'] ). +verb( 'culminate', 'culminates', 'culminating', 'culminated', 'culminated', tran, ['3A'] ). +verb( 'cultivate', 'cultivates', 'cultivating', 'cultivated', 'cultivated', tran, ['6A'] ). +verb( 'cumber', 'cumbers', 'cumbering', 'cumbered', 'cumbered', tran, ['6A','14'] ). +verb( 'cup', 'cups', 'cupping', 'cupped', 'cupped', tran, ['6A'] ). +verb( 'curb', 'curbs', 'curbing', 'curbed', 'curbed', tran, ['6A'] ). +verb( 'curdle', 'curdles', 'curdling', 'curdled', 'curdled', _, ['2A','6A'] ). +verb( 'cure', 'cures', 'curing', 'cured', 'cured', _, ['6A','14'] ). +verb( 'curl', 'curls', 'curling', 'curled', 'curled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'curry', 'curries', 'currying', 'curried', 'curried', tran, ['6A'] ). +verb( 'curse', 'curses', 'cursing', 'cursed', 'cursed', _, ['2A','3A','6A'] ). +verb( 'curtail', 'curtails', 'curtailing', 'curtailed', 'curtailed', tran, ['6A'] ). +verb( 'curtain', 'curtains', 'curtaining', 'curtained', 'curtained', tran, ['6A','15B'] ). +verb( 'curtsey', 'curtseys', 'curtseying', 'curtseyed', 'curtseyed', intran, [] ). +verb( 'curtsy', 'curtsies', 'curtsying', 'curtsied', 'curtsied', intran, [] ). +verb( 'curve', 'curves', 'curving', 'curved', 'curved', _, ['2A','6A'] ). +verb( 'cushion', 'cushions', 'cushioning', 'cushioned', 'cushioned', tran, ['6A','14'] ). +verb( 'cut', 'cuts', 'cutting', 'cut', 'cut', _, ['2A','2C','3A','6A','12B','13B','15A','15B','22'] ). +verb( 'cycle', 'cycles', 'cycling', 'cycled', 'cycled', intran, ['2A','2B','2C'] ). +verb( 'cyclostyle', 'cyclostyles', 'cyclostyling', 'cyclostyled', 'cyclostyled', tran, [] ). +verb( 'cypher', 'cyphers', 'cyphering', 'cyphered', 'cyphered', _, ['2A','6A'] ). +verb( 'dab', 'dabs', 'dabbing', 'dabbed', 'dabbed', _, ['2C','3A','6A','14','15A','15B'] ). +verb( 'dabble', 'dabbles', 'dabbling', 'dabbled', 'dabbled', _, ['2C','3A','6A','15A','15B'] ). +verb( 'dally', 'dallies', 'dallying', 'dallied', 'dallied', intran, ['2A','3A'] ). +verb( 'dam', 'dams', 'damming', 'dammed', 'dammed', tran, ['6A','15B'] ). +verb( 'damage', 'damages', 'damaging', 'damaged', 'damaged', tran, ['6A'] ). +verb( 'damascene', 'damascenes', 'damascening', 'damascened', 'damascened', tran, [] ). +verb( 'damn', 'damns', 'damning', 'damned', 'damned', tran, ['6A'] ). +verb( 'damp', 'damps', 'damping', 'damped', 'damped', _, ['2C','6A','15B'] ). +verb( 'dampen', 'dampens', 'dampening', 'dampened', 'dampened', _, [] ). +verb( 'dance', 'dances', 'dancing', 'danced', 'danced', _, ['2A','2C','6A','15A'] ). +verb( 'dandle', 'dandles', 'dandling', 'dandled', 'dandled', tran, ['6A','15A','15B'] ). +verb( 'dangle', 'dangles', 'dangling', 'dangled', 'dangled', _, ['2A','2C','6A','15A'] ). +verb( 'dapple', 'dapples', 'dappling', 'dappled', 'dappled', tran, ['6A'] ). +verb( 'dare', 'dares', 'daring', 'dared', 'dared', unknown, ['4A','5','6A','17'] ). +verb( 'dare', 'dares', 'daring', 'dared', 'dared', _, ['4A','5','6A','17'] ). +verb( 'darken', 'darkens', 'darkening', 'darkened', 'darkened', _, ['2A','6A'] ). +verb( 'darn', 'darns', 'darning', 'darned', 'darned', _, ['2A','6A'] ). +verb( 'dart', 'darts', 'darting', 'darted', 'darted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'dash', 'dashes', 'dashing', 'dashed', 'dashed', _, ['2C','6A','15A','15B'] ). +verb( 'date', 'dates', 'dating', 'dated', 'dated', _, ['2A','2C','3A','6A'] ). +verb( 'daub', 'daubs', 'daubing', 'daubed', 'daubed', _, ['2A','6A','14','15A','15B'] ). +verb( 'daunt', 'daunts', 'daunting', 'daunted', 'daunted', tran, ['6A'] ). +verb( 'dawdle', 'dawdles', 'dawdling', 'dawdled', 'dawdled', _, ['2A','2C','15B'] ). +verb( 'dawn', 'dawns', 'dawning', 'dawned', 'dawned', intran, ['2A','3A'] ). +verb( 'daydream', 'daydreams', 'daydreaming', 'daydreamed', 'daydreamed', intran, [] ). +verb( 'daze', 'dazes', 'dazing', 'dazed', 'dazed', tran, ['6A'] ). +verb( 'dazzle', 'dazzles', 'dazzling', 'dazzled', 'dazzled', tran, ['6A'] ). +verb( 'de-escalate', 'de-escalates', 'de-escalating', 'de-escalated', 'de-escalated', tran, ['6A'] ). +verb( 'de-ice', 'de-ices', 'de-icing', 'de-iced', 'de-iced', tran, ['6A'] ). +verb( 'deaden', 'deadens', 'deadening', 'deadened', 'deadened', tran, ['6A'] ). +verb( 'deafen', 'deafens', 'deafening', 'deafened', 'deafened', tran, ['6A'] ). +verb( 'deal', 'deals', 'dealing', 'dealt', 'dealt', _, ['2A','3A','6A','12A','13A','15B'] ). +verb( 'debag', 'debags', 'debagging', 'debagged', 'debagged', tran, ['6A'] ). +verb( 'debar', 'debars', 'debarring', 'debarred', 'debarred', tran, ['14'] ). +verb( 'debark', 'debarks', 'debarking', 'debarked', 'debarked', _, [] ). +verb( 'debase', 'debases', 'debasing', 'debased', 'debased', tran, ['6A'] ). +verb( 'debate', 'debates', 'debating', 'debated', 'debated', _, ['2A','2C','6A','8','10'] ). +verb( 'debauch', 'debauches', 'debauching', 'debauched', 'debauched', tran, ['6A'] ). +verb( 'debilitate', 'debilitates', 'debilitating', 'debilitated', 'debilitated', tran, ['6A'] ). +verb( 'debit', 'debits', 'debiting', 'debited', 'debited', tran, ['6A','14'] ). +verb( 'debouch', 'debouches', 'debouching', 'debouched', 'debouched', _, ['2A','6A'] ). +verb( 'debrief', 'debriefs', 'debriefing', 'debriefed', 'debriefed', tran, ['6A'] ). +verb( 'debug', 'debugs', 'debugging', 'debugged', 'debugged', tran, ['6A'] ). +verb( 'debunk', 'debunks', 'debunking', 'debunked', 'debunked', tran, ['6A'] ). +verb( 'decamp', 'decamps', 'decamping', 'decamped', 'decamped', intran, ['2A','3A'] ). +verb( 'decant', 'decants', 'decanting', 'decanted', 'decanted', tran, ['6A'] ). +verb( 'decapitate', 'decapitates', 'decapitating', 'decapitated', 'decapitated', tran, ['6A'] ). +verb( 'decarbonize', 'decarbonizes', 'decarbonizing', 'decarbonized', 'decarbonized', tran, [] ). +verb( 'decay', 'decays', 'decaying', 'decayed', 'decayed', intran, ['2A'] ). +verb( 'decease', 'deceases', 'deceasing', 'deceased', 'deceased', intran, [] ). +verb( 'deceive', 'deceives', 'deceiving', 'deceived', 'deceived', tran, ['6A','14'] ). +verb( 'decelerate', 'decelerates', 'decelerating', 'decelerated', 'decelerated', _, [] ). +verb( 'decentralize', 'decentralizes', 'decentralizing', 'decentralized', 'decentralized', tran, ['6A'] ). +verb( 'decide', 'decides', 'deciding', 'decided', 'decided', _, ['2A','3A','6A','7A','8','9','10','14','17'] ). +verb( 'decimalize', 'decimalizes', 'decimalizing', 'decimalized', 'decimalized', tran, ['6A'] ). +verb( 'decimate', 'decimates', 'decimating', 'decimated', 'decimated', tran, ['6A'] ). +verb( 'decipher', 'deciphers', 'deciphering', 'deciphered', 'deciphered', tran, ['6A'] ). +verb( 'deck', 'decks', 'decking', 'decked', 'decked', tran, ['6A','14','15A'] ). +verb( 'declaim', 'declaims', 'declaiming', 'declaimed', 'declaimed', _, ['2A','3A','6A'] ). +verb( 'declare', 'declares', 'declaring', 'declared', 'declared', _, ['3A','6A','9','14','25'] ). +verb( 'declassify', 'declassifies', 'declassifying', 'declassified', 'declassified', tran, ['6A'] ). +verb( 'decline', 'declines', 'declining', 'declined', 'declined', _, ['2A','2C','6A','7A'] ). +verb( 'declutch', 'declutches', 'declutching', 'declutched', 'declutched', intran, ['2A'] ). +verb( 'decode', 'decodes', 'decoding', 'decoded', 'decoded', tran, ['6A'] ). +verb( 'decoke', 'decokes', 'decoking', 'decoked', 'decoked', tran, [] ). +verb( 'decolonize', 'decolonizes', 'decolonizing', 'decolonized', 'decolonized', tran, ['6A'] ). +verb( 'decompose', 'decomposes', 'decomposing', 'decomposed', 'decomposed', _, ['2A','6A'] ). +verb( 'decompress', 'decompresses', 'decompressing', 'decompressed', 'decompressed', tran, ['6A'] ). +verb( 'decontaminate', 'decontaminates', 'decontaminating', 'decontaminated', 'decontaminated', tran, ['6A'] ). +verb( 'decontrol', 'decontrols', 'decontrolling', 'decontrolled', 'decontrolled', tran, ['6A'] ). +verb( 'decorate', 'decorates', 'decorating', 'decorated', 'decorated', tran, ['6A','14'] ). +verb( 'decoy', 'decoys', 'decoying', 'decoyed', 'decoyed', tran, ['6A','14'] ). +verb( 'decrease', 'decreases', 'decreasing', 'decreased', 'decreased', _, ['2A','6A'] ). +verb( 'decree', 'decrees', 'decreeing', 'decreed', 'decreed', tran, ['6A','9'] ). +verb( 'decry', 'decries', 'decrying', 'decried', 'decried', tran, ['6A'] ). +verb( 'dedicate', 'dedicates', 'dedicating', 'dedicated', 'dedicated', tran, ['6A','14'] ). +verb( 'deduce', 'deduces', 'deducing', 'deduced', 'deduced', tran, ['6A','9','14'] ). +verb( 'deduct', 'deducts', 'deducting', 'deducted', 'deducted', tran, ['6A','14'] ). +verb( 'deem', 'deems', 'deeming', 'deemed', 'deemed', tran, ['9','25'] ). +verb( 'deep-freeze', 'deep-freezes', 'deep-freezing', 'deep-froze', 'deep-frozen', tran, [] ). +verb( 'deepen', 'deepens', 'deepening', 'deepened', 'deepened', _, [] ). +verb( 'deface', 'defaces', 'defacing', 'defaced', 'defaced', tran, ['6A'] ). +verb( 'defame', 'defames', 'defaming', 'defamed', 'defamed', tran, ['6A'] ). +verb( 'default', 'defaults', 'defaulting', 'defaulted', 'defaulted', intran, ['2A'] ). +verb( 'defeat', 'defeats', 'defeating', 'defeated', 'defeated', tran, ['6A'] ). +verb( 'defecate', 'defecates', 'defecating', 'defecated', 'defecated', intran, ['2A'] ). +verb( 'defect', 'defects', 'defecting', 'defected', 'defected', intran, ['2A','2C','3A'] ). +verb( 'defend', 'defends', 'defending', 'defended', 'defended', tran, ['6A','14'] ). +verb( 'defer', 'defers', 'deferring', 'deferred', 'deferred', _, ['3A','6A','6C'] ). +verb( 'defile', 'defiles', 'defiling', 'defiled', 'defiled', _, ['6A'] ). +verb( 'define', 'defines', 'defining', 'defined', 'defined', tran, ['6A'] ). +verb( 'deflate', 'deflates', 'deflating', 'deflated', 'deflated', tran, ['6A'] ). +verb( 'deflect', 'deflects', 'deflecting', 'deflected', 'deflected', _, ['2A','3A','6A','14'] ). +verb( 'deflower', 'deflowers', 'deflowering', 'deflowered', 'deflowered', tran, [] ). +verb( 'defoliate', 'defoliates', 'defoliating', 'defoliated', 'defoliated', tran, ['6A'] ). +verb( 'deforest', 'deforests', 'deforesting', 'deforested', 'deforested', tran, [] ). +verb( 'deform', 'deforms', 'deforming', 'deformed', 'deformed', tran, ['6A'] ). +verb( 'defraud', 'defrauds', 'defrauding', 'defrauded', 'defrauded', tran, ['6A','14'] ). +verb( 'defray', 'defrays', 'defraying', 'defrayed', 'defrayed', tran, ['6A'] ). +verb( 'defrock', 'defrocks', 'defrocking', 'defrocked', 'defrocked', tran, [] ). +verb( 'defrost', 'defrosts', 'defrosting', 'defrosted', 'defrosted', tran, ['6A'] ). +verb( 'defuse', 'defuses', 'defusing', 'defused', 'defused', tran, ['6A'] ). +verb( 'defy', 'defies', 'defying', 'defied', 'defied', tran, ['6A','17'] ). +verb( 'degauss', 'degausses', 'degaussing', 'degaussed', 'degaussed', tran, ['6A'] ). +verb( 'degenerate', 'degenerates', 'degenerating', 'degenerated', 'degenerated', intran, ['2A','3A'] ). +verb( 'degrade', 'degrades', 'degrading', 'degraded', 'degraded', tran, ['6A'] ). +verb( 'dehorn', 'dehorns', 'dehorning', 'dehorned', 'dehorned', tran, ['6A'] ). +verb( 'dehumanize', 'dehumanizes', 'dehumanizing', 'dehumanized', 'dehumanized', tran, ['6A'] ). +verb( 'dehydrate', 'dehydrates', 'dehydrating', 'dehydrated', 'dehydrated', tran, ['6A'] ). +verb( 'deify', 'deifies', 'deifying', 'deified', 'deified', tran, ['6A'] ). +verb( 'deign', 'deigns', 'deigning', 'deigned', 'deigned', intran, ['4A'] ). +verb( 'deject', 'dejects', 'dejecting', 'dejected', 'dejected', tran, [] ). +verb( 'delay', 'delays', 'delaying', 'delayed', 'delayed', _, ['2A','2B','6A','6C'] ). +verb( 'delegate', 'delegates', 'delegating', 'delegated', 'delegated', tran, ['14','17'] ). +verb( 'delete', 'deletes', 'deleting', 'deleted', 'deleted', tran, ['6A','14'] ). +verb( 'deliberate', 'deliberates', 'deliberating', 'deliberated', 'deliberated', _, ['2A','3A','6A','8','10'] ). +verb( 'delight', 'delights', 'delighting', 'delighted', 'delighted', _, ['3A','4C','6A'] ). +verb( 'delimit', 'delimits', 'delimiting', 'delimited', 'delimited', tran, ['6A'] ). +verb( 'delimitate', 'delimitates', 'delimitating', 'delimitated', 'delimitated', tran, ['6A'] ). +verb( 'delineate', 'delineates', 'delineating', 'delineated', 'delineated', tran, ['6A'] ). +verb( 'deliver', 'delivers', 'delivering', 'delivered', 'delivered', tran, ['6A','14','15B'] ). +verb( 'delouse', 'delouses', 'delousing', 'deloused', 'deloused', tran, [] ). +verb( 'delude', 'deludes', 'deluding', 'deluded', 'deluded', tran, ['6A','14'] ). +verb( 'deluge', 'deluges', 'deluging', 'deluged', 'deluged', tran, ['6A','14'] ). +verb( 'delve', 'delves', 'delving', 'delved', 'delved', _, ['2A','3A','6A'] ). +verb( 'demagnetize', 'demagnetizes', 'demagnetizing', 'demagnetized', 'demagnetized', tran, ['6A'] ). +verb( 'demand', 'demands', 'demanding', 'demanded', 'demanded', tran, ['6A','7A','9'] ). +verb( 'demarcate', 'demarcates', 'demarcating', 'demarcated', 'demarcated', tran, ['6A'] ). +verb( 'demean', 'demeans', 'demeaning', 'demeaned', 'demeaned', tran, ['6A'] ). +verb( 'demilitarize', 'demilitarizes', 'demilitarizing', 'demilitarized', 'demilitarized', tran, ['6A'] ). +verb( 'demist', 'demists', 'demisting', 'demisted', 'demisted', tran, [] ). +verb( 'demob', 'demobs', 'demobbing', 'demobbed', 'demobbed', tran, [] ). +verb( 'demobilize', 'demobilizes', 'demobilizing', 'demobilized', 'demobilized', tran, ['6A'] ). +verb( 'democratize', 'democratizes', 'democratizing', 'democratized', 'democratized', tran, ['6A'] ). +verb( 'demolish', 'demolishes', 'demolishing', 'demolished', 'demolished', tran, ['6A'] ). +verb( 'demonetize', 'demonetizes', 'demonetizing', 'demonetized', 'demonetized', tran, [] ). +verb( 'demonstrate', 'demonstrates', 'demonstrating', 'demonstrated', 'demonstrated', _, ['2A','3A','6A','9'] ). +verb( 'demoralize', 'demoralizes', 'demoralizing', 'demoralized', 'demoralized', tran, ['6A'] ). +verb( 'demote', 'demotes', 'demoting', 'demoted', 'demoted', tran, ['6A'] ). +verb( 'demur', 'demurs', 'demurring', 'demurred', 'demurred', intran, ['2A','3A'] ). +verb( 'denationalize', 'denationalizes', 'denationalizing', 'denationalized', 'denationalized', tran, ['6A'] ). +verb( 'denigrate', 'denigrates', 'denigrating', 'denigrated', 'denigrated', tran, ['6A'] ). +verb( 'denominate', 'denominates', 'denominating', 'denominated', 'denominated', tran, ['23'] ). +verb( 'denote', 'denotes', 'denoting', 'denoted', 'denoted', tran, ['6A','9'] ). +verb( 'denounce', 'denounces', 'denouncing', 'denounced', 'denounced', tran, ['6A','16B'] ). +verb( 'dent', 'dents', 'denting', 'dented', 'dented', _, ['2A','6A'] ). +verb( 'denude', 'denudes', 'denuding', 'denuded', 'denuded', tran, ['6A','14'] ). +verb( 'deny', 'denies', 'denying', 'denied', 'denied', tran, ['6A','6C','9','12A','13A','25'] ). +verb( 'deodorize', 'deodorizes', 'deodorizing', 'deodorized', 'deodorized', tran, ['6A'] ). +verb( 'depart', 'departs', 'departing', 'departed', 'departed', intran, ['2A','3A'] ). +verb( 'depend', 'depends', 'depending', 'depended', 'depended', intran, ['3A'] ). +verb( 'depict', 'depicts', 'depicting', 'depicted', 'depicted', tran, ['6A'] ). +verb( 'deplane', 'deplanes', 'deplaning', 'deplaned', 'deplaned', intran, [] ). +verb( 'deplete', 'depletes', 'depleting', 'depleted', 'depleted', tran, ['6A','14'] ). +verb( 'deplore', 'deplores', 'deploring', 'deplored', 'deplored', tran, ['6A'] ). +verb( 'deploy', 'deploys', 'deploying', 'deployed', 'deployed', _, ['2A','6A'] ). +verb( 'depopulate', 'depopulates', 'depopulating', 'depopulated', 'depopulated', tran, ['6A'] ). +verb( 'deport', 'deports', 'deporting', 'deported', 'deported', tran, ['6A','16B'] ). +verb( 'depose', 'deposes', 'deposing', 'deposed', 'deposed', _, ['3A','6A','9'] ). +verb( 'deposit', 'deposits', 'depositing', 'deposited', 'deposited', tran, ['6A'] ). +verb( 'deprave', 'depraves', 'depraving', 'depraved', 'depraved', tran, ['6A'] ). +verb( 'deprecate', 'deprecates', 'deprecating', 'deprecated', 'deprecated', tran, ['6A','6C'] ). +verb( 'depreciate', 'depreciates', 'depreciating', 'depreciated', 'depreciated', _, ['2A','6A'] ). +verb( 'depress', 'depresses', 'depressing', 'depressed', 'depressed', tran, ['6A'] ). +verb( 'deprive', 'deprives', 'depriving', 'deprived', 'deprived', tran, ['14'] ). +verb( 'depute', 'deputes', 'deputing', 'deputed', 'deputed', tran, ['14','17'] ). +verb( 'deputize', 'deputizes', 'deputizing', 'deputized', 'deputized', intran, ['2A','3A'] ). +verb( 'derail', 'derails', 'derailing', 'derailed', 'derailed', tran, ['6A'] ). +verb( 'derange', 'deranges', 'deranging', 'deranged', 'deranged', tran, ['6A'] ). +verb( 'derate', 'derates', 'derating', 'derated', 'derated', tran, ['6A'] ). +verb( 'derequisition', 'derequisitions', 'derequisitioning', 'derequisitioned', 'derequisitioned', tran, ['6A'] ). +verb( 'derestrict', 'derestricts', 'derestricting', 'derestricted', 'derestricted', tran, ['6A'] ). +verb( 'deride', 'derides', 'deriding', 'derided', 'derided', tran, ['6A','16B'] ). +verb( 'derive', 'derives', 'deriving', 'derived', 'derived', _, ['3A','14'] ). +verb( 'derogate', 'derogates', 'derogating', 'derogated', 'derogated', intran, ['3A'] ). +verb( 'desalinate', 'desalinates', 'desalinating', 'desalinated', 'desalinated', tran, ['6A'] ). +verb( 'desalinize', 'desalinizes', 'desalinizing', 'desalinized', 'desalinized', tran, ['6A'] ). +verb( 'desalt', 'desalts', 'desalting', 'desalted', 'desalted', tran, [] ). +verb( 'descale', 'descales', 'descaling', 'descaled', 'descaled', tran, ['6A'] ). +verb( 'descant', 'descants', 'descanting', 'descanted', 'descanted', intran, ['3A'] ). +verb( 'descend', 'descends', 'descending', 'descended', 'descended', _, ['2A','2C','3A','6A'] ). +verb( 'describe', 'describes', 'describing', 'described', 'described', tran, ['6A','10','14','16B'] ). +verb( 'descry', 'descries', 'descrying', 'descried', 'descried', tran, ['6A'] ). +verb( 'desecrate', 'desecrates', 'desecrating', 'desecrated', 'desecrated', tran, ['6A'] ). +verb( 'desegregate', 'desegregates', 'desegregating', 'desegregated', 'desegregated', tran, ['6A'] ). +verb( 'desensitize', 'desensitizes', 'desensitizing', 'desensitized', 'desensitized', tran, ['6A'] ). +verb( 'desert', 'deserts', 'deserting', 'deserted', 'deserted', _, ['2A','6A'] ). +verb( 'deserve', 'deserves', 'deserving', 'deserved', 'deserved', _, ['6A','7A'] ). +verb( 'desiccate', 'desiccates', 'desiccating', 'desiccated', 'desiccated', tran, ['6A'] ). +verb( 'design', 'designs', 'designing', 'designed', 'designed', _, ['2A','2C','6A','14','16A','16B'] ). +verb( 'designate', 'designates', 'designating', 'designated', 'designated', tran, ['6A','16B','17'] ). +verb( 'desire', 'desires', 'desiring', 'desired', 'desired', tran, ['6A','7A','9','17'] ). +verb( 'desist', 'desists', 'desisting', 'desisted', 'desisted', intran, ['2A','3A'] ). +verb( 'desolate', 'desolates', 'desolating', 'desolated', 'desolated', tran, ['6A'] ). +verb( 'despair', 'despairs', 'despairing', 'despaired', 'despaired', intran, ['2A','3A'] ). +verb( 'despatch', 'despatches', 'despatching', 'despatched', 'despatched', tran, ['6A','14'] ). +verb( 'despise', 'despises', 'despising', 'despised', 'despised', tran, ['6A'] ). +verb( 'despoil', 'despoils', 'despoiling', 'despoiled', 'despoiled', tran, ['6A','14'] ). +verb( 'destine', 'destines', 'destining', 'destined', 'destined', tran, ['14','17'] ). +verb( 'destroy', 'destroys', 'destroying', 'destroyed', 'destroyed', tran, ['6A'] ). +verb( 'detach', 'detaches', 'detaching', 'detached', 'detached', tran, ['6A','14','16A'] ). +verb( 'detail', 'details', 'detailing', 'detailed', 'detailed', tran, ['6A','14','16A'] ). +verb( 'detain', 'detains', 'detaining', 'detained', 'detained', tran, ['6A','16A'] ). +verb( 'detect', 'detects', 'detecting', 'detected', 'detected', tran, ['6A'] ). +verb( 'deter', 'deters', 'deterring', 'deterred', 'deterred', tran, ['6A','14'] ). +verb( 'deteriorate', 'deteriorates', 'deteriorating', 'deteriorated', 'deteriorated', _, ['2A','6A'] ). +verb( 'determine', 'determines', 'determining', 'determined', 'determined', _, ['3A','6A','7A','8','9','10','14','17'] ). +verb( 'detest', 'detests', 'detesting', 'detested', 'detested', tran, ['6A','6C'] ). +verb( 'dethrone', 'dethrones', 'dethroning', 'dethroned', 'dethroned', tran, ['6A'] ). +verb( 'detonate', 'detonates', 'detonating', 'detonated', 'detonated', _, ['2A','6A'] ). +verb( 'detour', 'detours', 'detouring', 'detoured', 'detoured', tran, ['6A'] ). +verb( 'detract', 'detracts', 'detracting', 'detracted', 'detracted', intran, ['3A'] ). +verb( 'detrain', 'detrains', 'detraining', 'detrained', 'detrained', _, ['2A','6A'] ). +verb( 'detribalize', 'detribalizes', 'detribalizing', 'detribalized', 'detribalized', tran, ['6A'] ). +verb( 'devaluate', 'devaluates', 'devaluating', 'devaluated', 'devaluated', tran, ['6A'] ). +verb( 'devalue', 'devalues', 'devaluing', 'devalued', 'devalued', tran, ['6A'] ). +verb( 'devastate', 'devastates', 'devastating', 'devastated', 'devastated', tran, ['6A'] ). +verb( 'develop', 'develops', 'developing', 'developed', 'developed', _, ['2A','2C','3A','6A'] ). +verb( 'deviate', 'deviates', 'deviating', 'deviated', 'deviated', intran, ['3A'] ). +verb( 'devil', 'devils', 'devilling', 'devilled', 'devilled', _, ['2A','3A','6A'] ). +verb( 'devise', 'devises', 'devising', 'devised', 'devised', tran, ['6A','8','14'] ). +verb( 'devitalize', 'devitalizes', 'devitalizing', 'devitalized', 'devitalized', tran, ['6A'] ). +verb( 'devolve', 'devolves', 'devolving', 'devolved', 'devolved', _, ['3A','6A','14'] ). +verb( 'devote', 'devotes', 'devoting', 'devoted', 'devoted', tran, ['14'] ). +verb( 'devour', 'devours', 'devouring', 'devoured', 'devoured', tran, ['6A'] ). +verb( 'diagnose', 'diagnoses', 'diagnosing', 'diagnosed', 'diagnosed', tran, ['6A','16B'] ). +verb( 'dial', 'dials', 'dialling', 'dialled', 'dialled', tran, ['6A'] ). +verb( 'dibble', 'dibbles', 'dibbling', 'dibbled', 'dibbled', tran, ['15B'] ). +verb( 'dice', 'dices', 'dicing', 'diced', 'diced', _, ['2A','6A'] ). +verb( 'dicker', 'dickers', 'dickering', 'dickered', 'dickered', intran, ['2A','3A'] ). +verb( 'dictate', 'dictates', 'dictating', 'dictated', 'dictated', _, ['2A','3A','6A','14'] ). +verb( 'diddle', 'diddles', 'diddling', 'diddled', 'diddled', tran, ['6A','14'] ). +verb( 'die', 'dies', 'dying', 'died', 'died', intran, ['2A','2C','2D','3A','4C'] ). +verb( 'diet', 'diets', 'dieting', 'dieted', 'dieted', _, ['2A','6A'] ). +verb( 'differ', 'differs', 'differing', 'differed', 'differed', intran, ['2A','2C','3A'] ). +verb( 'differentiate', 'differentiates', 'differentiating', 'differentiated', 'differentiated', tran, ['3A','6A','14'] ). +verb( 'diffract', 'diffracts', 'diffracting', 'diffracted', 'diffracted', tran, ['6A'] ). +verb( 'diffuse', 'diffuses', 'diffusing', 'diffused', 'diffused', _, ['2A','6A'] ). +verb( 'dig', 'digs', 'digging', 'dug', 'dug', _, ['2C','3A','6A','15B'] ). +verb( 'digest', 'digests', 'digesting', 'digested', 'digested', _, ['2A','6A'] ). +verb( 'dignify', 'dignifies', 'dignifying', 'dignified', 'dignified', tran, ['6A','14'] ). +verb( 'digress', 'digresses', 'digressing', 'digressed', 'digressed', intran, ['2A','3A'] ). +verb( 'dike', 'dikes', 'diking', 'diked', 'diked', _, [] ). +verb( 'dilate', 'dilates', 'dilating', 'dilated', 'dilated', _, ['2A','3A','6A'] ). +verb( 'dilly-dally', 'dilly-dallies', 'dilly-dallying', 'dilly-dallied', 'dilly-dallied', intran, ['2A'] ). +verb( 'dilute', 'dilutes', 'diluting', 'diluted', 'diluted', tran, ['6A','14'] ). +verb( 'dim', 'dims', 'dimming', 'dimmed', 'dimmed', _, ['2A','6A'] ). +verb( 'diminish', 'diminishes', 'diminishing', 'diminished', 'diminished', _, ['2A','6A'] ). +verb( 'dimple', 'dimples', 'dimpling', 'dimpled', 'dimpled', _, ['2A','6A'] ). +verb( 'din', 'dins', 'dinning', 'dinned', 'dinned', _, ['2C'] ). +verb( 'dine', 'dines', 'dining', 'dined', 'dined', _, ['2A','6A'] ). +verb( 'dip', 'dips', 'dipping', 'dipped', 'dipped', _, ['2A','2C','3A','6A','14'] ). +verb( 'direct', 'directs', 'directing', 'directed', 'directed', _, ['2A','6A','9','14','17'] ). +verb( 'dirty', 'dirties', 'dirtying', 'dirtied', 'dirtied', _, ['2A','6A'] ). +verb( 'disable', 'disables', 'disabling', 'disabled', 'disabled', tran, ['6A'] ). +verb( 'disabuse', 'disabuses', 'disabusing', 'disabused', 'disabused', tran, ['6A','14'] ). +verb( 'disafforest', 'disafforests', 'disafforesting', 'disafforested', 'disafforested', tran, [] ). +verb( 'disagree', 'disagrees', 'disagreeing', 'disagreed', 'disagreed', tran, ['2A','3A'] ). +verb( 'disallow', 'disallows', 'disallowing', 'disallowed', 'disallowed', tran, ['6A'] ). +verb( 'disappear', 'disappears', 'disappearing', 'disappeared', 'disappeared', intran, ['2A'] ). +verb( 'disappoint', 'disappoints', 'disappointing', 'disappointed', 'disappointed', tran, ['6A'] ). +verb( 'disapprove', 'disapproves', 'disapproving', 'disapproved', 'disapproved', _, ['2A','3A','6A'] ). +verb( 'disarm', 'disarms', 'disarming', 'disarmed', 'disarmed', _, ['2A','6A'] ). +verb( 'disarrange', 'disarranges', 'disarranging', 'disarranged', 'disarranged', tran, ['6A'] ). +verb( 'disarray', 'disarrays', 'disarraying', 'disarrayed', 'disarrayed', tran, [] ). +verb( 'disassociate', 'disassociates', 'disassociating', 'disassociated', 'disassociated', tran, ['14'] ). +verb( 'disavow', 'disavows', 'disavowing', 'disavowed', 'disavowed', tran, ['6A'] ). +verb( 'disband', 'disbands', 'disbanding', 'disbanded', 'disbanded', _, ['2A','6A'] ). +verb( 'disbelieve', 'disbelieves', 'disbelieving', 'disbelieved', 'disbelieved', _, ['2A','3A','6A'] ). +verb( 'disbud', 'disbuds', 'disbudding', 'disbudded', 'disbudded', tran, ['6A'] ). +verb( 'disburden', 'disburdens', 'disburdening', 'disburdened', 'disburdened', tran, ['6A','14'] ). +verb( 'disburse', 'disburses', 'disbursing', 'disbursed', 'disbursed', _, ['2A','6A'] ). +verb( 'discard', 'discards', 'discarding', 'discarded', 'discarded', tran, ['6A'] ). +verb( 'discern', 'discerns', 'discerning', 'discerned', 'discerned', tran, ['6A'] ). +verb( 'discharge', 'discharges', 'discharging', 'discharged', 'discharged', _, ['6A','14'] ). +verb( 'discipline', 'disciplines', 'disciplining', 'disciplined', 'disciplined', tran, ['6A'] ). +verb( 'disclaim', 'disclaims', 'disclaiming', 'disclaimed', 'disclaimed', tran, ['6A','6C'] ). +verb( 'disclose', 'discloses', 'disclosing', 'disclosed', 'disclosed', tran, ['6A','14'] ). +verb( 'discolour', 'discolours', 'discolouring', 'discoloured', 'discoloured', _, ['2A','6A'] ). +verb( 'discomfit', 'discomfits', 'discomfiting', 'discomfited', 'discomfited', tran, ['6A'] ). +verb( 'discommode', 'discommodes', 'discommoding', 'discommoded', 'discommoded', tran, ['6A'] ). +verb( 'discompose', 'discomposes', 'discomposing', 'discomposed', 'discomposed', tran, ['6A'] ). +verb( 'disconcert', 'disconcerts', 'disconcerting', 'disconcerted', 'disconcerted', tran, ['6A'] ). +verb( 'disconnect', 'disconnects', 'disconnecting', 'disconnected', 'disconnected', tran, ['6A','14'] ). +verb( 'discontent', 'discontents', 'discontenting', 'discontented', 'discontented', tran, ['6A'] ). +verb( 'discontinue', 'discontinues', 'discontinuing', 'discontinued', 'discontinued', _, ['2A','6A','6C'] ). +verb( 'discount', 'discounts', 'discounting', 'discounted', 'discounted', tran, ['6A'] ). +verb( 'discountenance', 'discountenances', 'discountenancing', 'discountenanced', 'discountenanced', tran, ['6A'] ). +verb( 'discourage', 'discourages', 'discouraging', 'discouraged', 'discouraged', tran, ['6A','14'] ). +verb( 'discourse', 'discourses', 'discoursing', 'discoursed', 'discoursed', intran, [] ). +verb( 'discover', 'discovers', 'discovering', 'discovered', 'discovered', tran, ['6A','8','9','10','25'] ). +verb( 'discredit', 'discredits', 'discrediting', 'discredited', 'discredited', tran, ['6A'] ). +verb( 'discriminate', 'discriminates', 'discriminating', 'discriminated', 'discriminated', _, ['2A','3A','14'] ). +verb( 'discuss', 'discusses', 'discussing', 'discussed', 'discussed', tran, ['6A','8','10','14'] ). +verb( 'disdain', 'disdains', 'disdaining', 'disdained', 'disdained', tran, ['6A','6C','7A'] ). +verb( 'disembark', 'disembarks', 'disembarking', 'disembarked', 'disembarked', _, ['2A','2C','6A','14'] ). +verb( 'disembarrass', 'disembarrasses', 'disembarrassing', 'disembarrassed', 'disembarrassed', tran, ['14'] ). +verb( 'disembody', 'disembodies', 'disembodying', 'disembodied', 'disembodied', tran, ['6A'] ). +verb( 'disembowel', 'disembowels', 'disembowelling', 'disembowelled', 'disembowelled', tran, ['6A'] ). +verb( 'disenchant', 'disenchants', 'disenchanting', 'disenchanted', 'disenchanted', tran, ['6A'] ). +verb( 'disencumber', 'disencumbers', 'disencumbering', 'disencumbered', 'disencumbered', tran, ['6A','14'] ). +verb( 'disenfranchise', 'disenfranchises', 'disenfranchising', 'disenfranchised', 'disenfranchised', tran, [] ). +verb( 'disengage', 'disengages', 'disengaging', 'disengaged', 'disengaged', _, ['2A','2C','6A','14'] ). +verb( 'disentangle', 'disentangles', 'disentangling', 'disentangled', 'disentangled', _, ['2A','6A','14'] ). +verb( 'disestablish', 'disestablishes', 'disestablishing', 'disestablished', 'disestablished', tran, ['6A'] ). +verb( 'disfavour', 'disfavours', 'disfavouring', 'disfavoured', 'disfavoured', tran, ['6A'] ). +verb( 'disfigure', 'disfigures', 'disfiguring', 'disfigured', 'disfigured', tran, ['6A'] ). +verb( 'disforest', 'disforests', 'disforesting', 'disforested', 'disforested', tran, ['6A'] ). +verb( 'disfranchise', 'disfranchises', 'disfranchising', 'disfranchised', 'disfranchised', tran, ['6A'] ). +verb( 'disgorge', 'disgorges', 'disgorging', 'disgorged', 'disgorged', tran, ['6A'] ). +verb( 'disgrace', 'disgraces', 'disgracing', 'disgraced', 'disgraced', tran, ['6A'] ). +verb( 'disguise', 'disguises', 'disguising', 'disguised', 'disguised', tran, ['6A','16B'] ). +verb( 'disgust', 'disgusts', 'disgusting', 'disgusted', 'disgusted', tran, ['6A'] ). +verb( 'dish', 'dishes', 'dishing', 'dished', 'dished', tran, ['6A','15B'] ). +verb( 'dishearten', 'disheartens', 'disheartening', 'disheartened', 'disheartened', tran, ['6A'] ). +verb( 'dishonour', 'dishonours', 'dishonouring', 'dishonoured', 'dishonoured', tran, ['6A'] ). +verb( 'disillusion', 'disillusions', 'disillusioning', 'disillusioned', 'disillusioned', tran, ['6A'] ). +verb( 'disincline', 'disinclines', 'disinclining', 'disinclined', 'disinclined', tran, ['14','17'] ). +verb( 'disinfect', 'disinfects', 'disinfecting', 'disinfected', 'disinfected', tran, ['6A'] ). +verb( 'disinfest', 'disinfests', 'disinfesting', 'disinfested', 'disinfested', tran, ['6A'] ). +verb( 'disinherit', 'disinherits', 'disinheriting', 'disinherited', 'disinherited', tran, ['6A'] ). +verb( 'disintegrate', 'disintegrates', 'disintegrating', 'disintegrated', 'disintegrated', _, ['2A','6A'] ). +verb( 'disinter', 'disinters', 'disinterring', 'disinterred', 'disinterred', tran, ['6A'] ). +verb( 'disjoint', 'disjoints', 'disjointing', 'disjointed', 'disjointed', tran, ['6A'] ). +verb( 'dislike', 'dislikes', 'disliking', 'disliked', 'disliked', tran, ['6A','6C'] ). +verb( 'dislocate', 'dislocates', 'dislocating', 'dislocated', 'dislocated', tran, ['6A'] ). +verb( 'dislodge', 'dislodges', 'dislodging', 'dislodged', 'dislodged', tran, ['6A','14'] ). +verb( 'dismantle', 'dismantles', 'dismantling', 'dismantled', 'dismantled', tran, ['6A'] ). +verb( 'dismay', 'dismays', 'dismaying', 'dismayed', 'dismayed', tran, ['6A'] ). +verb( 'dismember', 'dismembers', 'dismembering', 'dismembered', 'dismembered', tran, ['6A'] ). +verb( 'dismiss', 'dismisses', 'dismissing', 'dismissed', 'dismissed', tran, ['6A','14'] ). +verb( 'dismount', 'dismounts', 'dismounting', 'dismounted', 'dismounted', _, ['2A','3A','6A'] ). +verb( 'disobey', 'disobeys', 'disobeying', 'disobeyed', 'disobeyed', tran, ['2A','6A'] ). +verb( 'disoblige', 'disobliges', 'disobliging', 'disobliged', 'disobliged', tran, ['6A'] ). +verb( 'disorder', 'disorders', 'disordering', 'disordered', 'disordered', tran, ['6A'] ). +verb( 'disorganize', 'disorganizes', 'disorganizing', 'disorganized', 'disorganized', tran, ['6A'] ). +verb( 'disorient', 'disorients', 'disorienting', 'disoriented', 'disoriented', tran, ['6A'] ). +verb( 'disorientate', 'disorientates', 'disorientating', 'disorientated', 'disorientated', tran, ['6A'] ). +verb( 'disown', 'disowns', 'disowning', 'disowned', 'disowned', tran, ['6A'] ). +verb( 'disparage', 'disparages', 'disparaging', 'disparaged', 'disparaged', tran, ['6A'] ). +verb( 'dispatch', 'dispatches', 'dispatching', 'dispatched', 'dispatched', tran, ['6A','14'] ). +verb( 'dispel', 'dispels', 'dispelling', 'dispelled', 'dispelled', tran, ['6A'] ). +verb( 'dispense', 'dispenses', 'dispensing', 'dispensed', 'dispensed', _, ['3A','6A','14'] ). +verb( 'disperse', 'disperses', 'dispersing', 'dispersed', 'dispersed', _, ['2A','6A'] ). +verb( 'dispirit', 'dispirits', 'dispiriting', 'dispirited', 'dispirited', tran, ['6A'] ). +verb( 'displace', 'displaces', 'displacing', 'displaced', 'displaced', tran, ['6A'] ). +verb( 'display', 'displays', 'displaying', 'displayed', 'displayed', tran, ['6A'] ). +verb( 'displease', 'displeases', 'displeasing', 'displeased', 'displeased', tran, ['6A'] ). +verb( 'disport', 'disports', 'disporting', 'disported', 'disported', tran, ['6A'] ). +verb( 'dispose', 'disposes', 'disposing', 'disposed', 'disposed', _, ['2A','3A','6A','17'] ). +verb( 'dispossess', 'dispossesses', 'dispossessing', 'dispossessed', 'dispossessed', tran, ['14'] ). +verb( 'disprove', 'disproves', 'disproving', 'disproved', 'disproved', tran, ['6A'] ). +verb( 'dispute', 'disputes', 'disputing', 'disputed', 'disputed', _, ['2A','3A','6A','8','10'] ). +verb( 'disqualify', 'disqualifies', 'disqualifying', 'disqualified', 'disqualified', tran, ['6A','14'] ). +verb( 'disquiet', 'disquiets', 'disquieting', 'disquieted', 'disquieted', tran, ['6A'] ). +verb( 'disregard', 'disregards', 'disregarding', 'disregarded', 'disregarded', tran, ['6A'] ). +verb( 'disrobe', 'disrobes', 'disrobing', 'disrobed', 'disrobed', _, ['2A','6A'] ). +verb( 'disrupt', 'disrupts', 'disrupting', 'disrupted', 'disrupted', tran, ['6A'] ). +verb( 'dissatisfy', 'dissatisfies', 'dissatisfying', 'dissatisfied', 'dissatisfied', tran, ['6A'] ). +verb( 'dissect', 'dissects', 'dissecting', 'dissected', 'dissected', tran, ['6A'] ). +verb( 'dissemble', 'dissembles', 'dissembling', 'dissembled', 'dissembled', _, ['2A','6A'] ). +verb( 'disseminate', 'disseminates', 'disseminating', 'disseminated', 'disseminated', tran, ['6A'] ). +verb( 'dissent', 'dissents', 'dissenting', 'dissented', 'dissented', intran, ['2A','3A'] ). +verb( 'dissever', 'dissevers', 'dissevering', 'dissevered', 'dissevered', tran, ['6A'] ). +verb( 'dissimulate', 'dissimulates', 'dissimulating', 'dissimulated', 'dissimulated', _, ['2A','6A'] ). +verb( 'dissipate', 'dissipates', 'dissipating', 'dissipated', 'dissipated', _, ['2A','6A'] ). +verb( 'dissociate', 'dissociates', 'dissociating', 'dissociated', 'dissociated', tran, ['6A','14'] ). +verb( 'dissolve', 'dissolves', 'dissolving', 'dissolved', 'dissolved', _, ['2A','2C','3A','6A','14'] ). +verb( 'dissuade', 'dissuades', 'dissuading', 'dissuaded', 'dissuaded', tran, ['6A','14'] ). +verb( 'distance', 'distances', 'distancing', 'distanced', 'distanced', tran, ['6A','14'] ). +verb( 'distemper', 'distempers', 'distempering', 'distempered', 'distempered', tran, ['6A','22'] ). +verb( 'distend', 'distends', 'distending', 'distended', 'distended', _, ['2A','6A'] ). +verb( 'distil', 'distils', 'distilling', 'distilled', 'distilled', _, ['2A','6A','14','15B'] ). +verb( 'distinguish', 'distinguishes', 'distinguishing', 'distinguished', 'distinguished', _, ['3A','6A','14'] ). +verb( 'distort', 'distorts', 'distorting', 'distorted', 'distorted', tran, ['6A'] ). +verb( 'distract', 'distracts', 'distracting', 'distracted', 'distracted', tran, ['6A','14'] ). +verb( 'distrain', 'distrains', 'distraining', 'distrained', 'distrained', intran, ['2A','3A'] ). +verb( 'distress', 'distresses', 'distressing', 'distressed', 'distressed', tran, ['6A'] ). +verb( 'distribute', 'distributes', 'distributing', 'distributed', 'distributed', tran, ['6A','14'] ). +verb( 'distrust', 'distrusts', 'distrusting', 'distrusted', 'distrusted', tran, ['6A'] ). +verb( 'disturb', 'disturbs', 'disturbing', 'disturbed', 'disturbed', tran, ['6A'] ). +verb( 'disunite', 'disunites', 'disuniting', 'disunited', 'disunited', _, ['2A','6A'] ). +verb( 'ditch', 'ditches', 'ditching', 'ditched', 'ditched', _, ['2A','6A'] ). +verb( 'dither', 'dithers', 'dithering', 'dithered', 'dithered', intran, ['2A','2C'] ). +verb( 'divagate', 'divagates', 'divagating', 'divagated', 'divagated', intran, ['2A','3A'] ). +verb( 'dive', 'dives', 'diving', 'dived', 'dived', intran, ['2A','2C'] ). +verb( 'dive-bomb', 'dive-bombs', 'dive-bombing', 'dive-bombed', 'dive-bombed', _, [] ). +verb( 'diverge', 'diverges', 'diverging', 'diverged', 'diverged', intran, ['2A','3A'] ). +verb( 'diversify', 'diversifies', 'diversifying', 'diversified', 'diversified', tran, ['6A'] ). +verb( 'divert', 'diverts', 'diverting', 'diverted', 'diverted', tran, ['6A','14'] ). +verb( 'divest', 'divests', 'divesting', 'divested', 'divested', tran, ['14'] ). +verb( 'divide', 'divides', 'dividing', 'divided', 'divided', _, ['2A','2C','6A','14','15B'] ). +verb( 'divine', 'divines', 'divining', 'divined', 'divined', _, ['2A','6A','10'] ). +verb( 'divorce', 'divorces', 'divorcing', 'divorced', 'divorced', tran, ['6A','14'] ). +verb( 'divulge', 'divulges', 'divulging', 'divulged', 'divulged', tran, ['6A','14'] ). +verb( 'dizzy', 'dizzies', 'dizzying', 'dizzied', 'dizzied', tran, [] ). +verb( 'do', 'does', 'doing', 'did', 'done', unknown, ['2A','2B','2C','3A','6A','6C','7B','12B','13B','15A','15B'] ). +verb( 'do', 'does', 'doing', 'did', 'done', _, ['2A','2B','2C','3A','6A','6C','7B','12B','13B','15A','15B'] ). +verb( 'dock', 'docks', 'docking', 'docked', 'docked', _, ['2A','6A','14'] ). +verb( 'docket', 'dockets', 'docketing', 'docketed', 'docketed', tran, ['6A'] ). +verb( 'doctor', 'doctors', 'doctoring', 'doctored', 'doctored', tran, ['6A'] ). +verb( 'document', 'documents', 'documenting', 'documented', 'documented', tran, ['6A'] ). +verb( 'dodder', 'dodders', 'doddering', 'doddered', 'doddered', intran, ['2A','2C'] ). +verb( 'dodge', 'dodges', 'dodging', 'dodged', 'dodged', _, ['2A','3A','6A'] ). +verb( 'doff', 'doffs', 'doffing', 'doffed', 'doffed', tran, ['6A'] ). +verb( 'dog', 'dogs', 'dogging', 'dogged', 'dogged', tran, ['6A'] ). +verb( 'dogmatize', 'dogmatizes', 'dogmatizing', 'dogmatized', 'dogmatized', _, ['2A','6A'] ). +verb( 'dole', 'doles', 'doling', 'doled', 'doled', tran, ['15B'] ). +verb( 'doll', 'dolls', 'dolling', 'dolled', 'dolled', _, ['2C','15B'] ). +verb( 'domesticate', 'domesticates', 'domesticating', 'domesticated', 'domesticated', tran, ['6A'] ). +verb( 'dominate', 'dominates', 'dominating', 'dominated', 'dominated', _, ['2A','3A','6A'] ). +verb( 'domineer', 'domineers', 'domineering', 'domineered', 'domineered', intran, ['2A','3A'] ). +verb( 'don', 'dons', 'donning', 'donned', 'donned', tran, ['6A'] ). +verb( 'donate', 'donates', 'donating', 'donated', 'donated', tran, ['6A','14'] ). +verb( 'doodle', 'doodles', 'doodling', 'doodled', 'doodled', intran, ['2A'] ). +verb( 'doom', 'dooms', 'dooming', 'doomed', 'doomed', tran, ['6A','14','17'] ). +verb( 'dope', 'dopes', 'doping', 'doped', 'doped', tran, ['6A'] ). +verb( 'dose', 'doses', 'dosing', 'dosed', 'dosed', tran, ['6A','14','15B'] ). +verb( 'doss', 'dosses', 'dossing', 'dossed', 'dossed', intran, ['2C'] ). +verb( 'dot', 'dots', 'dotting', 'dotted', 'dotted', tran, [] ). +verb( 'dote', 'dotes', 'doting', 'doted', 'doted', intran, ['3A'] ). +verb( 'double', 'doubles', 'doubling', 'doubled', 'doubled', _, ['2A','2C','6A','15B'] ). +verb( 'double-check', 'double-checks', 'double-checking', 'double-checked', 'double-checked', tran, [] ). +verb( 'double-cross', 'double-crosses', 'double-crossing', 'double-crossed', 'double-crossed', tran, ['6A'] ). +verb( 'double-park', 'double-parks', 'double-parking', 'double-parked', 'double-parked', _, [] ). +verb( 'doubt', 'doubts', 'doubting', 'doubted', 'doubted', tran, ['6A','9','10'] ). +verb( 'douse', 'douses', 'dousing', 'doused', 'doused', tran, ['6A'] ). +verb( 'dovetail', 'dovetails', 'dovetailing', 'dovetailed', 'dovetailed', _, ['2A','3A','6A'] ). +verb( 'dower', 'dowers', 'dowering', 'dowered', 'dowered', tran, [] ). +verb( 'down', 'downs', 'downing', 'downed', 'downed', tran, ['6A'] ). +verb( 'downgrade', 'downgrades', 'downgrading', 'downgraded', 'downgraded', tran, ['6A'] ). +verb( 'dowse', 'dowses', 'dowsing', 'dowsed', 'dowsed', tran, ['6A'] ). +verb( 'doze', 'dozes', 'dozing', 'dozed', 'dozed', intran, ['2A','2C'] ). +verb( 'draft', 'drafts', 'drafting', 'drafted', 'drafted', tran, ['6A'] ). +verb( 'drag', 'drags', 'dragging', 'dragged', 'dragged', _, ['2A','2C','6A','14','15B'] ). +verb( 'dragoon', 'dragoons', 'dragooning', 'dragooned', 'dragooned', tran, ['6A','14'] ). +verb( 'drain', 'drains', 'draining', 'drained', 'drained', _, ['2A','2C','6A','14','15B','22'] ). +verb( 'dramatize', 'dramatizes', 'dramatizing', 'dramatized', 'dramatized', tran, ['6A'] ). +verb( 'drape', 'drapes', 'draping', 'draped', 'draped', tran, ['6A','14'] ). +verb( 'drat', 'drats', 'dratting', 'dratted', 'dratted', tran, [] ). +verb( 'draught', 'draughts', 'draughting', 'draughted', 'draughted', tran, [] ). +verb( 'draw', 'draws', 'drawing', 'drew', 'drawn', _, ['2A','2B','2C','2D','3A','6A','14','15B'] ). +verb( 'drawl', 'drawls', 'drawling', 'drawled', 'drawled', _, ['2A','2C','6A','15B'] ). +verb( 'dread', 'dreads', 'dreading', 'dreaded', 'dreaded', _, ['6A','6C','7A'] ). +verb( 'dream', 'dreams', 'dreaming', 'dreamed', 'dreamed', _, ['2A','3A','6A','8','9','10','15B'] ). +verb( 'dredge', 'dredges', 'dredging', 'dredged', 'dredged', _, ['2A','3A','6A','14','15B'] ). +verb( 'drench', 'drenches', 'drenching', 'drenched', 'drenched', tran, ['6A'] ). +verb( 'dress', 'dresses', 'dressing', 'dressed', 'dressed', _, ['2A','2C','6A','15B'] ). +verb( 'dribble', 'dribbles', 'dribbling', 'dribbled', 'dribbled', _, ['2A','6A'] ). +verb( 'drift', 'drifts', 'drifting', 'drifted', 'drifted', _, ['2A','2C','6A','14','15B'] ). +verb( 'drill', 'drills', 'drilling', 'drilled', 'drilled', _, ['2A','6A','14'] ). +verb( 'drink', 'drinks', 'drinking', 'drank', 'drunk', _, ['2A','3A','6A','15B'] ). +verb( 'drip', 'drips', 'dripping', 'dripped', 'dripped', _, ['2A','2C','6A'] ). +verb( 'drip-dry', 'drip-dries', 'drip-drying', 'drip-dried', 'drip-dried', tran, [] ). +verb( 'drive', 'drives', 'driving', 'drove', 'driven', _, ['2A','2C','3A','6A','14','15B','17','22'] ). +verb( 'drivel', 'drivels', 'drivelling', 'drivelled', 'drivelled', intran, ['2A','2C'] ). +verb( 'drizzle', 'drizzles', 'drizzling', 'drizzled', 'drizzled', intran, ['2A'] ). +verb( 'drone', 'drones', 'droning', 'droned', 'droned', _, ['2C','15B'] ). +verb( 'drool', 'drools', 'drooling', 'drooled', 'drooled', intran, [] ). +verb( 'droop', 'droops', 'drooping', 'drooped', 'drooped', _, ['2A','2C','6A'] ). +verb( 'drop', 'drops', 'dropping', 'dropped', 'dropped', _, ['2A','2C','3B','6A','12A','13A','14','15A','15B'] ). +verb( 'drown', 'drowns', 'drowning', 'drowned', 'drowned', _, ['2A','6A','15B'] ). +verb( 'drowse', 'drowses', 'drowsing', 'drowsed', 'drowsed', _, ['2A','2C','15B'] ). +verb( 'drub', 'drubs', 'drubbing', 'drubbed', 'drubbed', tran, ['6A','14'] ). +verb( 'drudge', 'drudges', 'drudging', 'drudged', 'drudged', intran, ['2A','2C','3A'] ). +verb( 'drug', 'drugs', 'drugging', 'drugged', 'drugged', tran, ['6A'] ). +verb( 'drum', 'drums', 'drumming', 'drummed', 'drummed', _, ['2A','2C','3A','6A','14','15B'] ). +verb( 'dry', 'dries', 'drying', 'dried', 'dried', _, ['2A','2C','6A','15B'] ). +verb( 'dry-clean', 'dry-cleans', 'dry-cleaning', 'dry-cleaned', 'dry-cleaned', tran, [] ). +verb( 'dub', 'dubs', 'dubbing', 'dubbed', 'dubbed', tran, ['6A','22','23'] ). +verb( 'duck', 'ducks', 'ducking', 'ducked', 'ducked', _, ['2A','6A'] ). +verb( 'duel', 'duels', 'duelling', 'duelled', 'duelled', intran, [] ). +verb( 'dull', 'dulls', 'dulling', 'dulled', 'dulled', _, ['2A','6A'] ). +verb( 'dumbfound', 'dumbfounds', 'dumbfounding', 'dumbfounded', 'dumbfounded', tran, ['6A'] ). +verb( 'dump', 'dumps', 'dumping', 'dumped', 'dumped', tran, ['6A','15A'] ). +verb( 'dun', 'duns', 'dunning', 'dunned', 'dunned', tran, [] ). +verb( 'dunk', 'dunks', 'dunking', 'dunked', 'dunked', tran, ['6A','14'] ). +verb( 'dupe', 'dupes', 'duping', 'duped', 'duped', tran, ['6A'] ). +verb( 'duplicate', 'duplicates', 'duplicating', 'duplicated', 'duplicated', tran, ['6A'] ). +verb( 'dust', 'dusts', 'dusting', 'dusted', 'dusted', tran, ['6A'] ). +verb( 'dwarf', 'dwarfs', 'dwarfing', 'dwarfed', 'dwarfed', tran, ['6A'] ). +verb( 'dwell', 'dwells', 'dwelling', 'dwelt', 'dwelt', intran, ['3A'] ). +verb( 'dwindle', 'dwindles', 'dwindling', 'dwindled', 'dwindled', intran, ['2A'] ). +verb( 'dye', 'dyes', 'dying', 'dyed', 'dyed', _, ['2A','6A','22'] ). +verb( 'dyke', 'dykes', 'dyking', 'dyked', 'dyked', _, [] ). +verb( 'dynamite', 'dynamites', 'dynamiting', 'dynamited', 'dynamited', tran, ['6A'] ). +verb( 'earmark', 'earmarks', 'earmarking', 'earmarked', 'earmarked', tran, ['6A','14'] ). +verb( 'earn', 'earns', 'earning', 'earned', 'earned', tran, ['6A','12B','13B'] ). +verb( 'earth', 'earths', 'earthing', 'earthed', 'earthed', tran, ['6A','15B'] ). +verb( 'ease', 'eases', 'easing', 'eased', 'eased', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'eat', 'eats', 'eating', 'ate', 'eaten', _, ['2A','2C','3A','4A','6A','15B'] ). +verb( 'eavesdrop', 'eavesdrops', 'eavesdropping', 'eavesdropped', 'eavesdropped', intran, ['2A','3A'] ). +verb( 'ebb', 'ebbs', 'ebbing', 'ebbed', 'ebbed', intran, ['2A','2C'] ). +verb( 'echo', 'echos', 'echoing', 'echoed', 'echoed', _, ['2A','2C','6A','15B'] ). +verb( 'eclipse', 'eclipses', 'eclipsing', 'eclipsed', 'eclipsed', tran, ['6A'] ). +verb( 'economize', 'economizes', 'economizing', 'economized', 'economized', _, ['2A','3A','6A'] ). +verb( 'eddy', 'eddies', 'eddying', 'eddied', 'eddied', intran, ['2A','2C'] ). +verb( 'edge', 'edges', 'edging', 'edged', 'edged', _, ['2C','6A','14','15A','15B'] ). +verb( 'edify', 'edifies', 'edifying', 'edified', 'edified', tran, ['6A'] ). +verb( 'edit', 'edits', 'editing', 'edited', 'edited', tran, ['6A'] ). +verb( 'educate', 'educates', 'educating', 'educated', 'educated', tran, ['6A','15A','16A'] ). +verb( 'educe', 'educes', 'educing', 'educed', 'educed', tran, ['6A'] ). +verb( 'eff', 'effs', 'effing', 'effed', 'effed', intran, [] ). +verb( 'efface', 'effaces', 'effacing', 'effaced', 'effaced', tran, ['6A'] ). +verb( 'effect', 'effects', 'effecting', 'effected', 'effected', tran, ['6A'] ). +verb( 'effervesce', 'effervesces', 'effervescing', 'effervesced', 'effervesced', intran, ['2A'] ). +verb( 'egg', 'eggs', 'egging', 'egged', 'egged', tran, ['15B'] ). +verb( 'egotrip', 'egotrips', 'egotripping', 'egotripped', 'egotripped', intran, [] ). +verb( 'ejaculate', 'ejaculates', 'ejaculating', 'ejaculated', 'ejaculated', tran, ['6A'] ). +verb( 'eject', 'ejects', 'ejecting', 'ejected', 'ejected', _, ['2A','6A','14'] ). +verb( 'eke', 'ekes', 'eking', 'eked', 'eked', tran, ['15B'] ). +verb( 'elaborate', 'elaborates', 'elaborating', 'elaborated', 'elaborated', tran, ['6A'] ). +verb( 'elapse', 'elapses', 'elapsing', 'elapsed', 'elapsed', intran, ['2A'] ). +verb( 'elate', 'elates', 'elating', 'elated', 'elated', tran, ['6A'] ). +verb( 'elbow', 'elbows', 'elbowing', 'elbowed', 'elbowed', tran, ['6A','14','15B'] ). +verb( 'elect', 'elects', 'electing', 'elected', 'elected', tran, ['6A','7A','14','23','25'] ). +verb( 'electrify', 'electrifies', 'electrifying', 'electrified', 'electrified', tran, ['6A'] ). +verb( 'electrocute', 'electrocutes', 'electrocuting', 'electrocuted', 'electrocuted', tran, ['6A'] ). +verb( 'electroplate', 'electroplates', 'electroplating', 'electroplated', 'electroplated', tran, [] ). +verb( 'elevate', 'elevates', 'elevating', 'elevated', 'elevated', tran, ['6A','14'] ). +verb( 'elicit', 'elicits', 'eliciting', 'elicited', 'elicited', tran, ['6A','14'] ). +verb( 'elide', 'elides', 'eliding', 'elided', 'elided', tran, ['6A'] ). +verb( 'eliminate', 'eliminates', 'eliminating', 'eliminated', 'eliminated', tran, ['6A','14'] ). +verb( 'elongate', 'elongates', 'elongating', 'elongated', 'elongated', _, ['2A','6A'] ). +verb( 'elope', 'elopes', 'eloping', 'eloped', 'eloped', intran, ['2A','2C','3A'] ). +verb( 'elucidate', 'elucidates', 'elucidating', 'elucidated', 'elucidated', tran, ['6A'] ). +verb( 'elude', 'eludes', 'eluding', 'eluded', 'eluded', tran, ['6A'] ). +verb( 'emaciate', 'emaciates', 'emaciating', 'emaciated', 'emaciated', tran, ['6A'] ). +verb( 'emanate', 'emanates', 'emanating', 'emanated', 'emanated', intran, ['3A'] ). +verb( 'emancipate', 'emancipates', 'emancipating', 'emancipated', 'emancipated', tran, ['6A','14'] ). +verb( 'emasculate', 'emasculates', 'emasculating', 'emasculated', 'emasculated', tran, ['6A'] ). +verb( 'embalm', 'embalms', 'embalming', 'embalmed', 'embalmed', tran, ['6A'] ). +verb( 'embargo', 'embargos', 'embargoing', 'embargoed', 'embargoed', tran, ['6A'] ). +verb( 'embark', 'embarks', 'embarking', 'embarked', 'embarked', _, ['2A','2C','3A','6A'] ). +verb( 'embarrass', 'embarrasses', 'embarrassing', 'embarrassed', 'embarrassed', tran, ['6A'] ). +verb( 'embed', 'embeds', 'embedding', 'embedded', 'embedded', tran, ['6A','14'] ). +verb( 'embellish', 'embellishes', 'embellishing', 'embellished', 'embellished', tran, ['6A','14'] ). +verb( 'embezzle', 'embezzles', 'embezzling', 'embezzled', 'embezzled', tran, ['6A'] ). +verb( 'embitter', 'embitters', 'embittering', 'embittered', 'embittered', tran, ['6A'] ). +verb( 'emblazon', 'emblazons', 'emblazoning', 'emblazoned', 'emblazoned', tran, ['6A','14'] ). +verb( 'embody', 'embodies', 'embodying', 'embodied', 'embodied', tran, ['6A','14'] ). +verb( 'embolden', 'emboldens', 'emboldening', 'emboldened', 'emboldened', tran, ['6A','17'] ). +verb( 'emboss', 'embosses', 'embossing', 'embossed', 'embossed', tran, ['6A','14'] ). +verb( 'embrace', 'embraces', 'embracing', 'embraced', 'embraced', _, ['2A','6A'] ). +verb( 'embroider', 'embroiders', 'embroidering', 'embroidered', 'embroidered', _, ['2A','6A'] ). +verb( 'embroil', 'embroils', 'embroiling', 'embroiled', 'embroiled', tran, ['6A','14'] ). +verb( 'emend', 'emends', 'emending', 'emended', 'emended', tran, ['6A'] ). +verb( 'emerge', 'emerges', 'emerging', 'emerged', 'emerged', intran, ['2A','3A'] ). +verb( 'emigrate', 'emigrates', 'emigrating', 'emigrated', 'emigrated', intran, ['2A','3A'] ). +verb( 'emit', 'emits', 'emitting', 'emitted', 'emitted', tran, ['6A'] ). +verb( 'empale', 'empales', 'empaling', 'empaled', 'empaled', tran, [] ). +verb( 'empanel', 'empanels', 'empanelling', 'empanelled', 'empanelled', tran, ['6A'] ). +verb( 'emphasize', 'emphasizes', 'emphasizing', 'emphasized', 'emphasized', tran, ['6A'] ). +verb( 'emplane', 'emplanes', 'emplaning', 'emplaned', 'emplaned', _, ['2A','6A'] ). +verb( 'employ', 'employs', 'employing', 'employed', 'employed', tran, ['6A','14','16B'] ). +verb( 'empower', 'empowers', 'empowering', 'empowered', 'empowered', tran, ['17'] ). +verb( 'empty', 'empties', 'emptying', 'emptied', 'emptied', _, ['2A','2C','3A','6A','15B'] ). +verb( 'emulate', 'emulates', 'emulating', 'emulated', 'emulated', tran, ['6A'] ). +verb( 'emulsify', 'emulsifies', 'emulsifying', 'emulsified', 'emulsified', tran, ['6A'] ). +verb( 'enable', 'enables', 'enabling', 'enabled', 'enabled', tran, ['17'] ). +verb( 'enact', 'enacts', 'enacting', 'enacted', 'enacted', tran, ['6A','9'] ). +verb( 'enamel', 'enamels', 'enamelling', 'enamelled', 'enamelled', tran, [] ). +verb( 'enamour', 'enamours', 'enamouring', 'enamoured', 'enamoured', tran, ['6A'] ). +verb( 'encamp', 'encamps', 'encamping', 'encamped', 'encamped', _, ['2A','6A'] ). +verb( 'encase', 'encases', 'encasing', 'encased', 'encased', tran, ['6A','14'] ). +verb( 'enchain', 'enchains', 'enchaining', 'enchained', 'enchained', tran, ['6A'] ). +verb( 'enchant', 'enchants', 'enchanting', 'enchanted', 'enchanted', tran, ['6A'] ). +verb( 'encircle', 'encircles', 'encircling', 'encircled', 'encircled', tran, ['6A'] ). +verb( 'enclose', 'encloses', 'enclosing', 'enclosed', 'enclosed', tran, ['6A','14'] ). +verb( 'encode', 'encodes', 'encoding', 'encoded', 'encoded', tran, ['6A'] ). +verb( 'encompass', 'encompasses', 'encompassing', 'encompassed', 'encompassed', tran, ['6A'] ). +verb( 'encore', 'encores', 'encoring', 'encored', 'encored', tran, [] ). +verb( 'encounter', 'encounters', 'encountering', 'encountered', 'encountered', tran, ['6A'] ). +verb( 'encourage', 'encourages', 'encouraging', 'encouraged', 'encouraged', tran, ['6A','14','17'] ). +verb( 'encroach', 'encroaches', 'encroaching', 'encroached', 'encroached', intran, ['3A'] ). +verb( 'encrust', 'encrusts', 'encrusting', 'encrusted', 'encrusted', _, ['2A','6A','14'] ). +verb( 'encumber', 'encumbers', 'encumbering', 'encumbered', 'encumbered', tran, ['6A','14'] ). +verb( 'end', 'ends', 'ending', 'ended', 'ended', _, ['2A','2C','3A','6A','15B'] ). +verb( 'endanger', 'endangers', 'endangering', 'endangered', 'endangered', tran, ['6A'] ). +verb( 'endear', 'endears', 'endearing', 'endeared', 'endeared', tran, ['14'] ). +verb( 'endeavour', 'endeavours', 'endeavouring', 'endeavoured', 'endeavoured', intran, ['4A'] ). +verb( 'endorse', 'endorses', 'endorsing', 'endorsed', 'endorsed', tran, ['6A'] ). +verb( 'endow', 'endows', 'endowing', 'endowed', 'endowed', tran, ['6A','14'] ). +verb( 'endue', 'endues', 'enduing', 'endued', 'endued', tran, ['14'] ). +verb( 'endure', 'endures', 'enduring', 'endured', 'endured', _, ['2A','2C','6A','6D','17'] ). +verb( 'enervate', 'enervates', 'enervating', 'enervated', 'enervated', tran, ['6A'] ). +verb( 'enfeeble', 'enfeebles', 'enfeebling', 'enfeebled', 'enfeebled', tran, ['6A'] ). +verb( 'enfold', 'enfolds', 'enfolding', 'enfolded', 'enfolded', tran, ['6A','14'] ). +verb( 'enforce', 'enforces', 'enforcing', 'enforced', 'enforced', tran, ['6A','14'] ). +verb( 'enfranchise', 'enfranchises', 'enfranchising', 'enfranchised', 'enfranchised', tran, ['6A'] ). +verb( 'engage', 'engages', 'engaging', 'engaged', 'engaged', _, ['2A','3A','6A','7A','9','14','16B','17'] ). +verb( 'engender', 'engenders', 'engendering', 'engendered', 'engendered', tran, ['6A'] ). +verb( 'engineer', 'engineers', 'engineering', 'engineered', 'engineered', _, ['2A','6A'] ). +verb( 'engraft', 'engrafts', 'engrafting', 'engrafted', 'engrafted', tran, ['6A','14'] ). +verb( 'engrave', 'engraves', 'engraving', 'engraved', 'engraved', tran, ['6A','14'] ). +verb( 'engross', 'engrosses', 'engrossing', 'engrossed', 'engrossed', tran, ['6A'] ). +verb( 'engulf', 'engulfs', 'engulfing', 'engulfed', 'engulfed', tran, ['6A'] ). +verb( 'enhance', 'enhances', 'enhancing', 'enhanced', 'enhanced', tran, ['6A'] ). +verb( 'enjoin', 'enjoins', 'enjoining', 'enjoined', 'enjoined', tran, ['6A','9','14','17'] ). +verb( 'enjoy', 'enjoys', 'enjoying', 'enjoyed', 'enjoyed', tran, ['6A','6C'] ). +verb( 'enkindle', 'enkindles', 'enkindling', 'enkindled', 'enkindled', tran, ['6A'] ). +verb( 'enlarge', 'enlarges', 'enlarging', 'enlarged', 'enlarged', _, ['2A','3A','6A'] ). +verb( 'enlighten', 'enlightens', 'enlightening', 'enlightened', 'enlightened', tran, ['6A','14'] ). +verb( 'enlist', 'enlists', 'enlisting', 'enlisted', 'enlisted', _, ['2A','2C','6A','14','16B'] ). +verb( 'enliven', 'enlivens', 'enlivening', 'enlivened', 'enlivened', tran, ['6A'] ). +verb( 'enmesh', 'enmeshes', 'enmeshing', 'enmeshed', 'enmeshed', tran, ['6A','14'] ). +verb( 'ennoble', 'ennobles', 'ennobling', 'ennobled', 'ennobled', tran, ['6A'] ). +verb( 'enplane', 'enplanes', 'enplaning', 'enplaned', 'enplaned', _, [] ). +verb( 'enquire', 'enquires', 'enquiring', 'enquired', 'enquired', _, ['2A','3A','6A','8','10','14'] ). +verb( 'enrage', 'enrages', 'enraging', 'enraged', 'enraged', tran, ['6A'] ). +verb( 'enrapture', 'enraptures', 'enrapturing', 'enraptured', 'enraptured', tran, ['6A'] ). +verb( 'enrich', 'enriches', 'enriching', 'enriched', 'enriched', tran, ['6A','14'] ). +verb( 'enrol', 'enrols', 'enroling', 'enroled', 'enroled', _, ['2A','2C','6A','14','16B'] ). +verb( 'enroll', 'enrolls', 'enrolling', 'enrolled', 'enrolled', _, ['2A','2C','6A','14','16B'] ). +verb( 'ensconce', 'ensconces', 'ensconcing', 'ensconced', 'ensconced', tran, ['14'] ). +verb( 'enshrine', 'enshrines', 'enshrining', 'enshrined', 'enshrined', tran, ['6A','14'] ). +verb( 'enshroud', 'enshrouds', 'enshrouding', 'enshrouded', 'enshrouded', tran, ['6A'] ). +verb( 'enslave', 'enslaves', 'enslaving', 'enslaved', 'enslaved', tran, ['6A'] ). +verb( 'ensnare', 'ensnares', 'ensnaring', 'ensnared', 'ensnared', tran, ['6A','14'] ). +verb( 'ensue', 'ensues', 'ensuing', 'ensued', 'ensued', intran, ['2A','3A'] ). +verb( 'ensure', 'ensures', 'ensuring', 'ensured', 'ensured', _, ['3A','9','12A','13A','14'] ). +verb( 'entail', 'entails', 'entailing', 'entailed', 'entailed', tran, ['6A','14'] ). +verb( 'entangle', 'entangles', 'entangling', 'entangled', 'entangled', tran, ['6A','14','15A'] ). +verb( 'enter', 'enters', 'entering', 'entered', 'entered', _, ['2A','3A','6A','14','15B'] ). +verb( 'entertain', 'entertains', 'entertaining', 'entertained', 'entertained', tran, ['2A','6A','14'] ). +verb( 'enthral', 'enthrals', 'enthralling', 'enthralled', 'enthralled', tran, ['6A'] ). +verb( 'enthrall', 'enthralls', 'enthralling', 'enthralled', 'enthralled', tran, ['6A'] ). +verb( 'enthrone', 'enthrones', 'enthroning', 'enthroned', 'enthroned', tran, ['6A'] ). +verb( 'enthuse', 'enthuses', 'enthusing', 'enthused', 'enthused', intran, ['3A'] ). +verb( 'entice', 'entices', 'enticing', 'enticed', 'enticed', tran, ['6A','15A','17'] ). +verb( 'entitle', 'entitles', 'entitling', 'entitled', 'entitled', tran, ['14','17'] ). +verb( 'entomb', 'entombs', 'entombing', 'entombed', 'entombed', tran, ['6A'] ). +verb( 'entrain', 'entrains', 'entraining', 'entrained', 'entrained', _, ['2A','6A'] ). +verb( 'entrance', 'entrances', 'entrancing', 'entranced', 'entranced', tran, ['6A'] ). +verb( 'entrap', 'entraps', 'entrapping', 'entrapped', 'entrapped', tran, ['6A'] ). +verb( 'entreat', 'entreats', 'entreating', 'entreated', 'entreated', tran, ['6A','14','17'] ). +verb( 'entrench', 'entrenches', 'entrenching', 'entrenched', 'entrenched', tran, ['6A'] ). +verb( 'entrust', 'entrusts', 'entrusting', 'entrusted', 'entrusted', tran, ['14'] ). +verb( 'entwine', 'entwines', 'entwining', 'entwined', 'entwined', tran, ['6A','14'] ). +verb( 'enumerate', 'enumerates', 'enumerating', 'enumerated', 'enumerated', tran, ['6A'] ). +verb( 'enunciate', 'enunciates', 'enunciating', 'enunciated', 'enunciated', _, ['2A','6A'] ). +verb( 'envelop', 'envelops', 'enveloping', 'enveloped', 'enveloped', tran, ['6A','14'] ). +verb( 'envenom', 'envenoms', 'envenoming', 'envenomed', 'envenomed', tran, ['6A'] ). +verb( 'environ', 'environs', 'environing', 'environed', 'environed', tran, ['6A'] ). +verb( 'envisage', 'envisages', 'envisaging', 'envisaged', 'envisaged', tran, ['6A'] ). +verb( 'envy', 'envies', 'envying', 'envied', 'envied', tran, ['6A','12C'] ). +verb( 'enwrap', 'enwraps', 'enwrapping', 'enwrapped', 'enwrapped', tran, [] ). +verb( 'epitomize', 'epitomizes', 'epitomizing', 'epitomized', 'epitomized', tran, ['6A'] ). +verb( 'equal', 'equals', 'equalling', 'equalled', 'equalled', tran, ['6A','15A'] ). +verb( 'equalize', 'equalizes', 'equalizing', 'equalized', 'equalized', tran, ['6A'] ). +verb( 'equate', 'equates', 'equating', 'equated', 'equated', tran, ['6A','14'] ). +verb( 'equip', 'equips', 'equipping', 'equipped', 'equipped', tran, ['6A','14'] ). +verb( 'eradicate', 'eradicates', 'eradicating', 'eradicated', 'eradicated', tran, ['6A'] ). +verb( 'erase', 'erases', 'erasing', 'erased', 'erased', tran, ['6A'] ). +verb( 'erect', 'erects', 'erecting', 'erected', 'erected', tran, ['6A'] ). +verb( 'erode', 'erodes', 'eroding', 'eroded', 'eroded', tran, ['6A'] ). +verb( 'err', 'errs', 'erring', 'erred', 'erred', intran, ['2A','2C'] ). +verb( 'erupt', 'erupts', 'erupting', 'erupted', 'erupted', intran, ['2A'] ). +verb( 'escalate', 'escalates', 'escalating', 'escalated', 'escalated', _, ['2A','6A'] ). +verb( 'escape', 'escapes', 'escaping', 'escaped', 'escaped', _, ['2A','3A','6A','6C'] ). +verb( 'eschew', 'eschews', 'eschewing', 'eschewed', 'eschewed', tran, ['6A'] ). +verb( 'escort', 'escorts', 'escorting', 'escorted', 'escorted', tran, ['6A','15B'] ). +verb( 'espouse', 'espouses', 'espousing', 'espoused', 'espoused', tran, ['6A'] ). +verb( 'espy', 'espies', 'espying', 'espied', 'espied', tran, ['6A'] ). +verb( 'essay', 'essays', 'essaying', 'essayed', 'essayed', _, ['4A','6A'] ). +verb( 'establish', 'establishes', 'establishing', 'established', 'established', tran, ['6A','14','16B'] ). +verb( 'esteem', 'esteems', 'esteeming', 'esteemed', 'esteemed', tran, ['6A','25'] ). +verb( 'estimate', 'estimates', 'estimating', 'estimated', 'estimated', _, ['3A','9','14'] ). +verb( 'estrange', 'estranges', 'estranging', 'estranged', 'estranged', tran, ['6A','14'] ). +verb( 'etch', 'etches', 'etching', 'etched', 'etched', _, ['2A','6A'] ). +verb( 'eulogize', 'eulogizes', 'eulogizing', 'eulogized', 'eulogized', tran, ['6A'] ). +verb( 'evacuate', 'evacuates', 'evacuating', 'evacuated', 'evacuated', tran, ['6A','14'] ). +verb( 'evade', 'evades', 'evading', 'evaded', 'evaded', tran, ['6A','6C'] ). +verb( 'evaluate', 'evaluates', 'evaluating', 'evaluated', 'evaluated', tran, ['6A'] ). +verb( 'evaporate', 'evaporates', 'evaporating', 'evaporated', 'evaporated', _, ['2A','6A'] ). +verb( 'even', 'evens', 'evening', 'evened', 'evened', tran, ['6A','15B'] ). +verb( 'evict', 'evicts', 'evicting', 'evicted', 'evicted', tran, ['14'] ). +verb( 'evidence', 'evidences', 'evidencing', 'evidenced', 'evidenced', tran, ['6A'] ). +verb( 'evince', 'evinces', 'evincing', 'evinced', 'evinced', tran, ['6A','9'] ). +verb( 'eviscerate', 'eviscerates', 'eviscerating', 'eviscerated', 'eviscerated', tran, ['6A'] ). +verb( 'evoke', 'evokes', 'evoking', 'evoked', 'evoked', tran, ['6A'] ). +verb( 'evolve', 'evolves', 'evolving', 'evolved', 'evolved', _, ['2A','6A'] ). +verb( 'exacerbate', 'exacerbates', 'exacerbating', 'exacerbated', 'exacerbated', tran, ['6A'] ). +verb( 'exact', 'exacts', 'exacting', 'exacted', 'exacted', tran, ['6A','14'] ). +verb( 'exaggerate', 'exaggerates', 'exaggerating', 'exaggerated', 'exaggerated', _, ['2A','6A'] ). +verb( 'exalt', 'exalts', 'exalting', 'exalted', 'exalted', tran, ['6A'] ). +verb( 'examine', 'examines', 'examining', 'examined', 'examined', tran, ['6A','14'] ). +verb( 'exasperate', 'exasperates', 'exasperating', 'exasperated', 'exasperated', tran, ['6A'] ). +verb( 'excavate', 'excavates', 'excavating', 'excavated', 'excavated', tran, ['6A'] ). +verb( 'exceed', 'exceeds', 'exceeding', 'exceeded', 'exceeded', tran, ['6A'] ). +verb( 'excel', 'excels', 'excelling', 'excelled', 'excelled', _, ['2C','3A','6A','15A'] ). +verb( 'except', 'excepts', 'excepting', 'excepted', 'excepted', tran, ['6A','14'] ). +verb( 'exchange', 'exchanges', 'exchanging', 'exchanged', 'exchanged', tran, ['6A','14'] ). +verb( 'excise', 'excises', 'excising', 'excised', 'excised', tran, ['6A'] ). +verb( 'excite', 'excites', 'exciting', 'excited', 'excited', tran, ['6A','14','17'] ). +verb( 'exclaim', 'exclaims', 'exclaiming', 'exclaimed', 'exclaimed', _, ['2A','9'] ). +verb( 'exclude', 'excludes', 'excluding', 'excluded', 'excluded', tran, ['6A','14'] ). +verb( 'excogitate', 'excogitates', 'excogitating', 'excogitated', 'excogitated', tran, ['6A'] ). +verb( 'excommunicate', 'excommunicates', 'excommunicating', 'excommunicated', 'excommunicated', tran, ['6A'] ). +verb( 'excoriate', 'excoriates', 'excoriating', 'excoriated', 'excoriated', tran, ['6A'] ). +verb( 'excrete', 'excretes', 'excreting', 'excreted', 'excreted', tran, ['6A'] ). +verb( 'exculpate', 'exculpates', 'exculpating', 'exculpated', 'exculpated', tran, ['6A','14'] ). +verb( 'excuse', 'excuses', 'excusing', 'excused', 'excused', tran, ['6A','6C','12B','13B','14','19C'] ). +verb( 'execrate', 'execrates', 'execrating', 'execrated', 'execrated', tran, ['6A'] ). +verb( 'execute', 'executes', 'executing', 'executed', 'executed', tran, ['6A'] ). +verb( 'exemplify', 'exemplifies', 'exemplifying', 'exemplified', 'exemplified', tran, ['6A'] ). +verb( 'exempt', 'exempts', 'exempting', 'exempted', 'exempted', tran, ['6A','14'] ). +verb( 'exercise', 'exercises', 'exercising', 'exercised', 'exercised', _, ['2A','6A','15A'] ). +verb( 'exert', 'exerts', 'exerting', 'exerted', 'exerted', tran, ['6A','14','16A'] ). +verb( 'exhale', 'exhales', 'exhaling', 'exhaled', 'exhaled', _, ['2A','6A'] ). +verb( 'exhaust', 'exhausts', 'exhausting', 'exhausted', 'exhausted', tran, ['6A'] ). +verb( 'exhibit', 'exhibits', 'exhibiting', 'exhibited', 'exhibited', tran, ['2A','6A'] ). +verb( 'exhilarate', 'exhilarates', 'exhilarating', 'exhilarated', 'exhilarated', tran, ['6A'] ). +verb( 'exhort', 'exhorts', 'exhorting', 'exhorted', 'exhorted', tran, ['6A','14','17'] ). +verb( 'exhume', 'exhumes', 'exhuming', 'exhumed', 'exhumed', tran, ['6A'] ). +verb( 'exile', 'exiles', 'exiling', 'exiled', 'exiled', tran, ['6A','15A'] ). +verb( 'exist', 'exists', 'existing', 'existed', 'existed', intran, ['2A','2C','3A'] ). +verb( 'exit', 'exits', 'exiting', 'exited', 'exited', intran, [] ). +verb( 'exonerate', 'exonerates', 'exonerating', 'exonerated', 'exonerated', tran, ['6A','14'] ). +verb( 'exorcize', 'exorcizes', 'exorcizing', 'exorcized', 'exorcized', tran, ['6A','14'] ). +verb( 'expand', 'expands', 'expanding', 'expanded', 'expanded', _, ['2A','2C','6A','14'] ). +verb( 'expatiate', 'expatiates', 'expatiating', 'expatiated', 'expatiated', intran, ['3A'] ). +verb( 'expatriate', 'expatriates', 'expatriating', 'expatriated', 'expatriated', tran, ['6A'] ). +verb( 'expect', 'expects', 'expecting', 'expected', 'expected', tran, ['6A','7A','9','14','17'] ). +verb( 'expectorate', 'expectorates', 'expectorating', 'expectorated', 'expectorated', _, ['2A','6A'] ). +verb( 'expedite', 'expedites', 'expediting', 'expedited', 'expedited', tran, ['6A'] ). +verb( 'expel', 'expels', 'expelling', 'expelled', 'expelled', tran, ['6A','14'] ). +verb( 'expend', 'expends', 'expending', 'expended', 'expended', tran, ['6A','14'] ). +verb( 'experience', 'experiences', 'experiencing', 'experienced', 'experienced', tran, ['6A'] ). +verb( 'experiment', 'experiments', 'experimenting', 'experimented', 'experimented', intran, ['2A','2C','3A'] ). +verb( 'expiate', 'expiates', 'expiating', 'expiated', 'expiated', tran, ['6A'] ). +verb( 'expire', 'expires', 'expiring', 'expired', 'expired', intran, ['2A'] ). +verb( 'explain', 'explains', 'explaining', 'explained', 'explained', tran, ['6A','8','9','10','14','15B'] ). +verb( 'explicate', 'explicates', 'explicating', 'explicated', 'explicated', tran, ['6A'] ). +verb( 'explode', 'explodes', 'exploding', 'exploded', 'exploded', _, ['2A','2C','6A'] ). +verb( 'exploit', 'exploits', 'exploiting', 'exploited', 'exploited', tran, ['6A'] ). +verb( 'explore', 'explores', 'exploring', 'explored', 'explored', tran, ['6A'] ). +verb( 'export', 'exports', 'exporting', 'exported', 'exported', tran, ['6A'] ). +verb( 'expose', 'exposes', 'exposing', 'exposed', 'exposed', tran, ['6A','14','15A'] ). +verb( 'expostulate', 'expostulates', 'expostulating', 'expostulated', 'expostulated', intran, ['2A','3A'] ). +verb( 'expound', 'expounds', 'expounding', 'expounded', 'expounded', tran, ['6A','14'] ). +verb( 'express', 'expresses', 'expressing', 'expressed', 'expressed', tran, ['6A','10','14','15A'] ). +verb( 'expropriate', 'expropriates', 'expropriating', 'expropriated', 'expropriated', tran, ['6A','14'] ). +verb( 'expunge', 'expunges', 'expunging', 'expunged', 'expunged', tran, ['6A','14'] ). +verb( 'expurgate', 'expurgates', 'expurgating', 'expurgated', 'expurgated', tran, ['6A'] ). +verb( 'extemporize', 'extemporize', 'extemporize', 'extemporize', 'extemporize', _, ['2A','6A'] ). +verb( 'extend', 'extends', 'extending', 'extended', 'extended', _, ['2B','2C','6A','14','15A'] ). +verb( 'extenuate', 'extenuates', 'extenuating', 'extenuated', 'extenuated', tran, ['6A'] ). +verb( 'exteriorize', 'exteriorizes', 'exteriorizing', 'exteriorized', 'exteriorized', tran, [] ). +verb( 'exterminate', 'exterminates', 'exterminating', 'exterminated', 'exterminated', tran, ['6A'] ). +verb( 'externalize', 'externalizes', 'externalizing', 'externalized', 'externalized', tran, ['6A'] ). +verb( 'extinguish', 'extinguishes', 'extinguishing', 'extinguished', 'extinguished', tran, ['6A'] ). +verb( 'extirpate', 'extirpates', 'extirpating', 'extirpated', 'extirpated', tran, ['6A'] ). +verb( 'extol', 'extols', 'extolling', 'extolled', 'extolled', tran, ['6A','15A'] ). +verb( 'extort', 'extorts', 'extorting', 'extorted', 'extorted', tran, ['6A','14'] ). +verb( 'extract', 'extracts', 'extracting', 'extracted', 'extracted', tran, ['6A','14'] ). +verb( 'extradite', 'extradites', 'extraditing', 'extradited', 'extradited', tran, ['6A'] ). +verb( 'extrapolate', 'extrapolate', 'extrapolate', 'extrapolate', 'extrapolate', _, ['6A'] ). +verb( 'extricate', 'extricates', 'extricating', 'extricated', 'extricated', tran, ['6A','14'] ). +verb( 'extrude', 'extrudes', 'extruding', 'extruded', 'extruded', tran, ['6A','14'] ). +verb( 'exude', 'exudes', 'exuding', 'exuded', 'exuded', _, ['2A','2C','6A'] ). +verb( 'exult', 'exults', 'exulting', 'exulted', 'exulted', intran, ['2A','3A','4C'] ). +verb( 'eye', 'eyes', 'eying', 'eyed', 'eyed', tran, ['6A','15A'] ). +verb( 'f^ete', 'f^etes', 'f^eting', 'f^eted', 'f^eted', tran, ['6A'] ). +verb( 'fabricate', 'fabricates', 'fabricating', 'fabricated', 'fabricated', tran, ['6A'] ). +verb( 'face', 'faces', 'facing', 'faced', 'faced', _, ['2C','6A','6C','14','15B'] ). +verb( 'facilitate', 'facilitates', 'facilitating', 'facilitated', 'facilitated', tran, ['6A'] ). +verb( 'factorize', 'factorizes', 'factorizing', 'factorized', 'factorized', tran, ['6A'] ). +verb( 'fade', 'fades', 'fading', 'faded', 'faded', _, ['2A','2C','3A','6A','15B'] ). +verb( 'fag', 'fags', 'fagging', 'fagged', 'fagged', _, ['2A','2C','3A','6A','15B'] ). +verb( 'fail', 'fails', 'failing', 'failed', 'failed', _, ['2A','2C','3A','4A','6A'] ). +verb( 'faint', 'faints', 'fainting', 'fainted', 'fainted', intran, ['2A','2C'] ). +verb( 'fake', 'fakes', 'faking', 'faked', 'faked', tran, ['6A','15B'] ). +verb( 'fall', 'falls', 'falling', 'fell', 'fallen', intran, ['2A','2B','2C','2D','3A'] ). +verb( 'falsify', 'falsifies', 'falsifying', 'falsified', 'falsified', tran, ['6A'] ). +verb( 'falter', 'falters', 'faltering', 'faltered', 'faltered', _, ['2A','2C','15B'] ). +verb( 'familiarize', 'familiarizes', 'familiarizing', 'familiarized', 'familiarized', tran, ['6A','14'] ). +verb( 'famish', 'famishes', 'famishing', 'famished', 'famished', _, ['2A','3A','6A'] ). +verb( 'fan', 'fans', 'fanning', 'fanned', 'fanned', _, ['2C','6A'] ). +verb( 'fancy', 'fancies', 'fancying', 'fancied', 'fancied', tran, ['6A','6C','9','16B','19C','25'] ). +verb( 'fare', 'fares', 'faring', 'fared', 'fared', intran, ['2C'] ). +verb( 'farm', 'farms', 'farming', 'farmed', 'farmed', _, ['2A','6A','15B'] ). +verb( 'farrow', 'farrows', 'farrowing', 'farrowed', 'farrowed', intran, [] ). +verb( 'fart', 'farts', 'farting', 'farted', 'farted', intran, [] ). +verb( 'fascinate', 'fascinates', 'fascinating', 'fascinated', 'fascinated', tran, ['6A'] ). +verb( 'fashion', 'fashions', 'fashioning', 'fashioned', 'fashioned', tran, ['6A','15A'] ). +verb( 'fast', 'fasts', 'fasting', 'fasted', 'fasted', intran, ['2A','2B'] ). +verb( 'fasten', 'fastens', 'fastening', 'fastened', 'fastened', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'fat', 'fats', 'fatting', 'fatted', 'fatted', tran, [] ). +verb( 'fate', 'fates', 'fating', 'fated', 'fated', tran, ['17'] ). +verb( 'father', 'fathers', 'fathering', 'fathered', 'fathered', tran, ['6A','14'] ). +verb( 'fathom', 'fathoms', 'fathoming', 'fathomed', 'fathomed', tran, ['6A'] ). +verb( 'fatigue', 'fatigues', 'fatiguing', 'fatigued', 'fatigued', tran, ['6A'] ). +verb( 'fatten', 'fattens', 'fattening', 'fattened', 'fattened', _, ['2A','2C','6A','15B'] ). +verb( 'fault', 'faults', 'faulting', 'faulted', 'faulted', tran, ['6A'] ). +verb( 'favour', 'favours', 'favouring', 'favoured', 'favoured', tran, ['6A','14'] ). +verb( 'fawn', 'fawns', 'fawning', 'fawned', 'fawned', intran, ['2A','3A'] ). +verb( 'fear', 'fears', 'fearing', 'feared', 'feared', _, ['2A','3A','4A','6A','6C','9'] ). +verb( 'feast', 'feasts', 'feasting', 'feasted', 'feasted', _, ['2A','2B','6A','14'] ). +verb( 'feather', 'feathers', 'feathering', 'feathered', 'feathered', tran, ['6A'] ). +verb( 'featherbed', 'featherbeds', 'featherbedding', 'featherbedded', 'featherbedded', tran, [] ). +verb( 'feature', 'features', 'featuring', 'featured', 'featured', tran, ['6A'] ). +verb( 'federate', 'federates', 'federating', 'federated', 'federated', _, ['2A','6A'] ). +verb( 'fee', 'fees', 'feeing', 'feed', 'feed', tran, ['6A'] ). +verb( 'feed', 'feeds', 'feeding', 'fed', 'fed', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'feel', 'feels', 'feeling', 'felt', 'felt', _, ['2A','2C','2D','3A','6A','6C','9','10','15B','18A','19A','25'] ). +verb( 'feign', 'feigns', 'feigning', 'feigned', 'feigned', tran, ['6A','9'] ). +verb( 'feint', 'feints', 'feinting', 'feinted', 'feinted', intran, ['2A','3A'] ). +verb( 'felicitate', 'felicitates', 'felicitating', 'felicitated', 'felicitated', tran, ['6A','14'] ). +verb( 'fell', 'fells', 'felling', 'felled', 'felled', tran, ['2A','2B','2C','2D','3A','6A'] ). +verb( 'fence', 'fences', 'fencing', 'fenced', 'fenced', tran, ['2A','2C','3A','6A','15B'] ). +verb( 'fend', 'fends', 'fending', 'fended', 'fended', _, ['15B'] ). +verb( 'ferment', 'ferments', 'fermenting', 'fermented', 'fermented', _, ['2A','6A'] ). +verb( 'ferret', 'ferrets', 'ferreting', 'ferreted', 'ferreted', _, ['2A','2C','15B'] ). +verb( 'ferry', 'ferries', 'ferrying', 'ferried', 'ferried', _, ['2A','2C','6A','15A','15B'] ). +verb( 'fertilize', 'fertilizes', 'fertilizing', 'fertilized', 'fertilized', tran, ['6A'] ). +verb( 'fester', 'festers', 'festering', 'festered', 'festered', intran, ['2A'] ). +verb( 'festoon', 'festoons', 'festooning', 'festooned', 'festooned', tran, ['6A'] ). +verb( 'fetch', 'fetches', 'fetching', 'fetched', 'fetched', _, ['6A','12B','12C','13B','15A','15B'] ). +verb( 'fetter', 'fetters', 'fettering', 'fettered', 'fettered', tran, ['6A'] ). +verb( 'fib', 'fibs', 'fibbing', 'fibbed', 'fibbed', intran, ['2A'] ). +verb( 'fiddle', 'fiddles', 'fiddling', 'fiddled', 'fiddled', tran, ['2A','2C','6A'] ). +verb( 'fidget', 'fidgets', 'fidgeting', 'fidgeted', 'fidgeted', _, ['2A','2C','6A'] ). +verb( 'field', 'fields', 'fielding', 'fielded', 'fielded', _, ['2A','6A'] ). +verb( 'fight', 'fights', 'fighting', 'fought', 'fought', _, ['2A','2B','2C','3A','4A','6A','15A','15B'] ). +verb( 'figure', 'figures', 'figuring', 'figured', 'figured', _, ['2C','3A','9','15A','15B','25'] ). +verb( 'filch', 'filches', 'filching', 'filched', 'filched', tran, ['6A'] ). +verb( 'file', 'files', 'filing', 'filed', 'filed', _, ['2C','6A','15A','15B','22'] ). +verb( 'filibuster', 'filibusters', 'filibustering', 'filibustered', 'filibustered', intran, [] ). +verb( 'fill', 'fills', 'filling', 'filled', 'filled', _, ['2A','2C','6A','12B','13B','14','15B'] ). +verb( 'fillet', 'fillets', 'filleting', 'filleted', 'filleted', tran, ['6A'] ). +verb( 'film', 'films', 'filming', 'filmed', 'filmed', _, ['2A','2C','6A'] ). +verb( 'filter', 'filters', 'filtering', 'filtered', 'filtered', _, ['2A','2C','6A','14','15B'] ). +verb( 'filtrate', 'filtrates', 'filtrating', 'filtrated', 'filtrated', _, [] ). +verb( 'finalize', 'finalizes', 'finalizing', 'finalized', 'finalized', tran, ['6A'] ). +verb( 'finance', 'finances', 'financing', 'financed', 'financed', tran, ['6A'] ). +verb( 'find', 'finds', 'finding', 'found', 'found', tran, ['6A','8','9','10','12A','12B','13A','13B','15A','15B','19B','22','25'] ). +verb( 'fine', 'fines', 'fining', 'fined', 'fined', tran, ['6A','14'] ). +verb( 'finger', 'fingers', 'fingering', 'fingered', 'fingered', tran, ['6A'] ). +verb( 'finish', 'finishes', 'finishing', 'finished', 'finished', _, ['2A','2C','6A','6C','15B','24B'] ). +verb( 'fire', 'fires', 'firing', 'fired', 'fired', _, ['2A','2C','3A','6A','15B'] ). +verb( 'firm', 'firms', 'firming', 'firmed', 'firmed', _, [] ). +verb( 'fish', 'fishes', 'fishing', 'fished', 'fished', _, ['2A','2C','6A','15A','15B'] ). +verb( 'fit', 'fits', 'fitting', 'fitted', 'fitted', _, ['2A','2C','6A','14','15A','15B','16A'] ). +verb( 'fix', 'fixes', 'fixing', 'fixed', 'fixed', _, ['3A','6A','14','15A','15B'] ). +verb( 'fixate', 'fixates', 'fixating', 'fixated', 'fixated', tran, ['6A'] ). +verb( 'fizz', 'fizzes', 'fizzing', 'fizzed', 'fizzed', intran, ['2A','2C'] ). +verb( 'fizzle', 'fizzles', 'fizzling', 'fizzled', 'fizzled', intran, ['2A','2C'] ). +verb( 'flabbergast', 'flabbergasts', 'flabbergasting', 'flabbergasted', 'flabbergasted', tran, ['6A'] ). +verb( 'flag', 'flags', 'flagging', 'flagged', 'flagged', _, ['2A','6A','15B'] ). +verb( 'flagellate', 'flagellates', 'flagellating', 'flagellated', 'flagellated', tran, ['6A'] ). +verb( 'flail', 'flails', 'flailing', 'flailed', 'flailed', tran, ['6A'] ). +verb( 'flake', 'flakes', 'flaking', 'flaked', 'flaked', intran, ['2A','2C'] ). +verb( 'flame', 'flames', 'flaming', 'flamed', 'flamed', intran, ['2A','2C'] ). +verb( 'flank', 'flanks', 'flanking', 'flanked', 'flanked', tran, ['6A'] ). +verb( 'flap', 'flaps', 'flapping', 'flapped', 'flapped', _, ['2A','2C','6A','15B'] ). +verb( 'flare', 'flares', 'flaring', 'flared', 'flared', _, ['2A','2C','6A'] ). +verb( 'flash', 'flashes', 'flashing', 'flashed', 'flashed', _, ['2A','2C','6A','12C','15A'] ). +verb( 'flatten', 'flattens', 'flattening', 'flattened', 'flattened', _, ['2A','2C','6A','15A','15B'] ). +verb( 'flatter', 'flatters', 'flattering', 'flattered', 'flattered', tran, ['6A'] ). +verb( 'flaunt', 'flaunts', 'flaunting', 'flaunted', 'flaunted', _, ['2A','2C','6A'] ). +verb( 'flavour', 'flavours', 'flavouring', 'flavoured', 'flavoured', tran, ['6A'] ). +verb( 'flay', 'flays', 'flaying', 'flayed', 'flayed', tran, ['6A'] ). +verb( 'fleck', 'flecks', 'flecking', 'flecked', 'flecked', tran, ['6A'] ). +verb( 'flee', 'flees', 'fleeing', 'fled', 'flown', _, ['2A','2C','6A'] ). +verb( 'fleece', 'fleeces', 'fleecing', 'fleeced', 'fleeced', tran, ['6A','14'] ). +verb( 'flex', 'flexes', 'flexing', 'flexed', 'flexed', tran, ['6A'] ). +verb( 'flick', 'flicks', 'flicking', 'flicked', 'flicked', tran, ['6A','15A','15B','22'] ). +verb( 'flicker', 'flickers', 'flickering', 'flickered', 'flickered', intran, ['2A','2C'] ). +verb( 'flight', 'flights', 'flighting', 'flighted', 'flighted', tran, ['6A'] ). +verb( 'flinch', 'flinches', 'flinching', 'flinched', 'flinched', intran, ['2A','3A'] ). +verb( 'fling', 'flings', 'flinging', 'flung', 'flung', _, ['2C','6A','12A','13A','15A','15B','22'] ). +verb( 'flip', 'flips', 'flipping', 'flipped', 'flipped', _, ['6A','15A','15B'] ). +verb( 'flirt', 'flirts', 'flirting', 'flirted', 'flirted', intran, ['2A','3A'] ). +verb( 'flit', 'flits', 'flitting', 'flitted', 'flitted', intran, ['2C'] ). +verb( 'float', 'floats', 'floating', 'floated', 'floated', _, ['2A','2C','6A','15A','15B'] ). +verb( 'flock', 'flocks', 'flocking', 'flocked', 'flocked', intran, ['2C','4A'] ). +verb( 'flog', 'flogs', 'flogging', 'flogged', 'flogged', tran, ['6A'] ). +verb( 'flood', 'floods', 'flooding', 'flooded', 'flooded', _, ['3A','6A','14','15B','16A'] ). +verb( 'floodlight', 'floodlights', 'floodlighting', 'floodlighted', 'floodlighted', tran, [] ). +verb( 'floor', 'floors', 'flooring', 'floored', 'floored', tran, ['6A'] ). +verb( 'flop', 'flops', 'flopping', 'flopped', 'flopped', _, ['2A','2C','15A','15B'] ). +verb( 'flounce', 'flounces', 'flouncing', 'flounced', 'flounced', _, ['2C','6A'] ). +verb( 'flounder', 'flounders', 'floundering', 'floundered', 'floundered', intran, ['2A','2C'] ). +verb( 'flour', 'flours', 'flouring', 'floured', 'floured', tran, ['6A'] ). +verb( 'flourish', 'flourishes', 'flourishing', 'flourished', 'flourished', _, ['2A','6A'] ). +verb( 'flout', 'flouts', 'flouting', 'flouted', 'flouted', tran, ['6A'] ). +verb( 'flow', 'flows', 'flowing', 'flowed', 'flowed', intran, ['2A','2C'] ). +verb( 'flower', 'flowers', 'flowering', 'flowered', 'flowered', intran, ['2A','2C'] ). +verb( 'fluctuate', 'fluctuates', 'fluctuating', 'fluctuated', 'fluctuated', intran, ['2A','2C'] ). +verb( 'fluff', 'fluffs', 'fluffing', 'fluffed', 'fluffed', tran, ['6A','15B'] ). +verb( 'flummox', 'flummoxes', 'flummoxing', 'flummoxed', 'flummoxed', tran, ['6A'] ). +verb( 'flunk', 'flunks', 'flunking', 'flunked', 'flunked', _, ['2A','2C','6A','15B'] ). +verb( 'fluoridate', 'fluoridates', 'fluoridating', 'fluoridated', 'fluoridated', tran, ['6A'] ). +verb( 'fluoridize', 'fluoridizes', 'fluoridizing', 'fluoridized', 'fluoridized', tran, [] ). +verb( 'flurry', 'flurries', 'flurrying', 'flurried', 'flurried', tran, ['6A'] ). +verb( 'flush', 'flushes', 'flushing', 'flushed', 'flushed', _, ['2A','2C','2D','6A','14'] ). +verb( 'fluster', 'flusters', 'flustering', 'flustered', 'flustered', tran, ['6A'] ). +verb( 'flute', 'flutes', 'fluting', 'fluted', 'fluted', _, ['6A'] ). +verb( 'flutter', 'flutters', 'fluttering', 'fluttered', 'fluttered', _, ['2A','2C','6A','15A','15B'] ). +verb( 'fly', 'flies', 'flying', 'flew', 'flew', _, ['2A','2B','2C','2D','4A','6A','15A','15B'] ). +verb( 'fly-fish', 'fly-fishes', 'fly-fishing', 'fly-fished', 'fly-fished', intran, ['2A'] ). +verb( 'foal', 'foals', 'foaling', 'foaled', 'foaled', intran, ['2A'] ). +verb( 'foam', 'foams', 'foaming', 'foamed', 'foamed', intran, ['2A','2C'] ). +verb( 'fob', 'fobs', 'fobbing', 'fobbed', 'fobbed', tran, ['15B'] ). +verb( 'focus', 'focuses', 'focusing', 'focused', 'focused', _, ['2A','2C','6A','14'] ). +verb( 'fog', 'fogs', 'fogging', 'fogged', 'fogged', tran, [] ). +verb( 'foil', 'foils', 'foiling', 'foiled', 'foiled', tran, ['6A'] ). +verb( 'foist', 'foists', 'foisting', 'foisted', 'foisted', tran, ['14','15A'] ). +verb( 'fold', 'folds', 'folding', 'folded', 'folded', _, ['2A','2C','6A','15A','15B'] ). +verb( 'follow', 'follows', 'following', 'followed', 'followed', _, ['2A','2B','2C','6A','15B'] ). +verb( 'foment', 'foments', 'fomenting', 'fomented', 'fomented', tran, ['6A'] ). +verb( 'fondle', 'fondles', 'fondling', 'fondled', 'fondled', tran, ['6A'] ). +verb( 'fool', 'fools', 'fooling', 'fooled', 'fooled', _, ['2A','2C','6A','14','15B'] ). +verb( 'foot', 'foots', 'footing', 'footed', 'footed', _, ['6A'] ). +verb( 'footle', 'footles', 'footling', 'footled', 'footled', _, [] ). +verb( 'footslog', 'footslogs', 'footslogging', 'footslogged', 'footslogged', intran, [] ). +verb( 'forage', 'forages', 'foraging', 'foraged', 'foraged', intran, ['2A','3A'] ). +verb( 'foray', 'forays', 'foraying', 'forayed', 'forayed', intran, ['2A'] ). +verb( 'forbear', 'forbears', 'forbearing', 'forbore', 'forborne', _, ['2A','3A','6C','7A'] ). +verb( 'forbid', 'forbids', 'forbidding', 'forbad', 'forbidden', tran, ['6A','12C','17'] ). +verb( 'force', 'forces', 'forcing', 'forced', 'forced', tran, ['6A','15A','15B','17','22'] ). +verb( 'force-feed', 'force-feeds', 'force-feeding', 'force-fed', 'force-fed', tran, ['6A'] ). +verb( 'force-land', 'force-lands', 'force-landing', 'force-landed', 'force-landed', _, [] ). +verb( 'ford', 'fords', 'fording', 'forded', 'forded', tran, ['6A'] ). +verb( 'forearm', 'forearms', 'forearming', 'forearmed', 'forearmed', tran, ['6A'] ). +verb( 'forebode', 'forebodes', 'foreboding', 'foreboded', 'foreboded', tran, ['6A','9'] ). +verb( 'forecast', 'forecasts', 'forecasting', 'forecasted', 'forecasted', tran, ['6A'] ). +verb( 'foreclose', 'forecloses', 'foreclosing', 'foreclosed', 'foreclosed', _, ['2A','3A','6A'] ). +verb( 'foredoom', 'foredooms', 'foredooming', 'foredoomed', 'foredoomed', tran, ['6A','14'] ). +verb( 'foregather', 'foregathers', 'foregathering', 'foregathered', 'foregathered', intran, ['2A','2C'] ). +verb( 'forego', 'foregoes', 'foregoing', 'forewent', 'foregone', _, [] ). +verb( 'foreknow', 'foreknows', 'foreknowing', 'foreknew', 'foreknown', _, ['2A','3A','6A','8','9','10','17','18B','25'] ). +verb( 'foreordain', 'foreordains', 'foreordaining', 'foreordained', 'foreordained', tran, ['6A','14','17'] ). +verb( 'foresee', 'foresees', 'foreseeing', 'foresaw', 'foreseen', tran, ['6A','9','10'] ). +verb( 'foreshadow', 'foreshadows', 'foreshadowing', 'foreshadowed', 'foreshadowed', tran, ['6A'] ). +verb( 'foreshorten', 'foreshortens', 'foreshortening', 'foreshortened', 'foreshortened', tran, ['6A'] ). +verb( 'forestall', 'forestalls', 'forestalling', 'forestalled', 'forestalled', tran, ['6A'] ). +verb( 'foreswear', 'foreswears', 'foreswearing', 'foreswore', 'foresworn', tran, ['6A'] ). +verb( 'foretell', 'foretells', 'foretelling', 'foretold', 'foretold', tran, ['6A','9','10','12A','13A'] ). +verb( 'forewarn', 'forewarns', 'forewarning', 'forewarned', 'forewarned', tran, ['6A'] ). +verb( 'forfeit', 'forfeits', 'forfeiting', 'forfeited', 'forfeited', tran, ['6A'] ). +verb( 'forgather', 'forgathers', 'forgathering', 'forgathered', 'forgathered', intran, ['2A','2C'] ). +verb( 'forge', 'forges', 'forging', 'forged', 'forged', _, ['2C','6A'] ). +verb( 'forget', 'forgets', 'forgetting', 'forgot', 'forgotten', _, ['2A','3A','6A','6C','6D','7A','8','9','10'] ). +verb( 'forgive', 'forgives', 'forgiving', 'forgave', 'forgiven', _, ['2A','6A','12C','14'] ). +verb( 'forgo', 'forgoes', 'forgoing', 'forwent', 'forgone', tran, [] ). +verb( 'fork', 'forks', 'forking', 'forked', 'forked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'form', 'forms', 'forming', 'formed', 'formed', _, ['2A','2C','6A','14','15A'] ). +verb( 'formalize', 'formalizes', 'formalizing', 'formalized', 'formalized', tran, ['6A'] ). +verb( 'formulate', 'formulates', 'formulating', 'formulated', 'formulated', tran, ['6A'] ). +verb( 'fornicate', 'fornicates', 'fornicating', 'fornicated', 'fornicated', intran, ['21'] ). +verb( 'forsake', 'forsakes', 'forsaking', 'forsook', 'forsaken', tran, ['6A'] ). +verb( 'forswear', 'forswears', 'forswearing', 'forswore', 'forsworn', tran, ['6A'] ). +verb( 'fortify', 'fortifies', 'fortifying', 'fortified', 'fortified', tran, ['6A','14'] ). +verb( 'forward', 'forwards', 'forwarding', 'forwarded', 'forwarded', tran, ['6A','12A','13A','15A'] ). +verb( 'fossilize', 'fossilizes', 'fossilizing', 'fossilized', 'fossilized', _, ['2A','6A'] ). +verb( 'foster', 'fosters', 'fostering', 'fostered', 'fostered', tran, ['6A'] ). +verb( 'foul', 'fouls', 'fouling', 'fouled', 'fouled', _, ['2A','2C','6A'] ). +verb( 'found', 'founds', 'founding', 'founded', 'founded', tran, ['6A','8','9','10','12A','12B','13A','13B','14','15A','15B','19B','22','25'] ). +verb( 'founder', 'founders', 'foundering', 'foundered', 'foundered', _, ['2A','6A'] ). +verb( 'fowl', 'fowls', 'fowling', 'fowled', 'fowled', intran, [] ). +verb( 'fox', 'foxes', 'foxing', 'foxed', 'foxed', tran, ['6A'] ). +verb( 'foxhunt', 'foxhunts', 'foxhunting', 'foxhunted', 'foxhunted', intran, [] ). +verb( 'fracture', 'fractures', 'fracturing', 'fractured', 'fractured', _, ['2A','6A'] ). +verb( 'fragment', 'fragments', 'fragmenting', 'fragmented', 'fragmented', intran, ['2A'] ). +verb( 'frame', 'frames', 'framing', 'framed', 'framed', _, ['2A','2C','6A'] ). +verb( 'frank', 'franks', 'franking', 'franked', 'franked', tran, ['6A'] ). +verb( 'fraternize', 'fraternizes', 'fraternizing', 'fraternized', 'fraternized', intran, ['2A','2C','3A'] ). +verb( 'fray', 'frays', 'fraying', 'frayed', 'frayed', _, ['2A','2C','6A'] ). +verb( 'freak', 'freaks', 'freaking', 'freaked', 'freaked', _, ['2C','15B'] ). +verb( 'freckle', 'freckles', 'freckling', 'freckled', 'freckled', _, ['2A','6A'] ). +verb( 'free', 'frees', 'freeing', 'freed', 'freed', tran, ['6A','14'] ). +verb( 'freelance', 'freelances', 'freelancing', 'freelanced', 'freelanced', intran, [] ). +verb( 'freewheel', 'freewheels', 'freewheeling', 'freewheeled', 'freewheeled', intran, ['2A','2C'] ). +verb( 'freeze', 'freezes', 'freezing', 'froze', 'frozen', _, ['2A','2C','3A','6A','15B'] ). +verb( 'freight', 'freights', 'freighting', 'freighted', 'freighted', tran, ['6A','14'] ). +verb( 'frequent', 'frequents', 'frequenting', 'frequented', 'frequented', tran, ['6A'] ). +verb( 'fresco', 'frescos', 'frescoing', 'frescoed', 'frescoed', tran, [] ). +verb( 'freshen', 'freshens', 'freshening', 'freshened', 'freshened', _, ['2A','2C','6A','15B'] ). +verb( 'fret', 'frets', 'fretting', 'fretted', 'fretted', _, ['2A','2C','3A','6A','15A'] ). +verb( 'fricassee', 'fricassees', 'fricasseeing', 'fricasseed', 'fricasseed', tran, [] ). +verb( 'fright', 'frights', 'frighting', 'frighted', 'frighted', tran, [] ). +verb( 'frighten', 'frightens', 'frightening', 'frightened', 'frightened', tran, ['6A','14','15B'] ). +verb( 'fringe', 'fringes', 'fringing', 'fringed', 'fringed', tran, ['6A'] ). +verb( 'frisk', 'frisks', 'frisking', 'frisked', 'frisked', _, ['2A','2C','6A'] ). +verb( 'fritter', 'fritters', 'frittering', 'frittered', 'frittered', tran, ['15B'] ). +verb( 'frivol', 'frivols', 'frivolling', 'frivolled', 'frivolled', _, ['2A','15B'] ). +verb( 'frizz', 'frizzes', 'frizzing', 'frizzed', 'frizzed', tran, ['6A'] ). +verb( 'frizzle', 'frizzles', 'frizzling', 'frizzled', 'frizzled', _, ['2A','2C','6A','15B'] ). +verb( 'frogmarch', 'frogmarches', 'frogmarching', 'frogmarched', 'frogmarched', tran, ['6A'] ). +verb( 'frolic', 'frolics', 'frolicking', 'frolicked', 'frolicked', intran, ['2A','2C'] ). +verb( 'front', 'fronts', 'fronting', 'fronted', 'fronted', _, ['2A','2C','6A'] ). +verb( 'frost', 'frosts', 'frosting', 'frosted', 'frosted', _, ['2A','2C','6A'] ). +verb( 'froth', 'froths', 'frothing', 'frothed', 'frothed', intran, ['2A','2C'] ). +verb( 'frown', 'frowns', 'frowning', 'frowned', 'frowned', intran, ['2A','3A'] ). +verb( 'fructify', 'fructifies', 'fructifying', 'fructified', 'fructified', _, ['2A','6A'] ). +verb( 'fruit', 'fruits', 'fruiting', 'fruited', 'fruited', intran, [] ). +verb( 'frustrate', 'frustrates', 'frustrating', 'frustrated', 'frustrated', tran, ['6A','15A'] ). +verb( 'fry', 'fries', 'frying', 'fried', 'fried', _, ['2A','6A'] ). +verb( 'fuck', 'fucks', 'fucking', 'fucked', 'fucked', _, ['2A','6A'] ). +verb( 'fuddle', 'fuddles', 'fuddling', 'fuddled', 'fuddled', tran, ['6A','15A'] ). +verb( 'fuel', 'fuels', 'fuelling', 'fuelled', 'fuelled', _, ['2A','6A'] ). +verb( 'fulfil', 'fulfils', 'fulfilling', 'fulfilled', 'fulfilled', tran, ['6A'] ). +verb( 'fulminate', 'fulminates', 'fulminating', 'fulminated', 'fulminated', intran, ['2A','3A'] ). +verb( 'fumble', 'fumbles', 'fumbling', 'fumbled', 'fumbled', _, ['2A','2C','6A'] ). +verb( 'fume', 'fumes', 'fuming', 'fumed', 'fumed', _, ['2A','2C','3A','6A'] ). +verb( 'fumigate', 'fumigates', 'fumigating', 'fumigated', 'fumigated', tran, ['6A'] ). +verb( 'function', 'functions', 'functioning', 'functioned', 'functioned', intran, ['2A','2C'] ). +verb( 'fund', 'funds', 'funding', 'funded', 'funded', tran, ['6A'] ). +verb( 'funk', 'funks', 'funking', 'funked', 'funked', _, ['2A','6A'] ). +verb( 'funnel', 'funnels', 'funnelling', 'funnelled', 'funnelled', _, ['2A','6A'] ). +verb( 'furbish', 'furbishes', 'furbishing', 'furbished', 'furbished', tran, ['6A'] ). +verb( 'furl', 'furls', 'furling', 'furled', 'furled', _, ['2A','6A'] ). +verb( 'furnish', 'furnishes', 'furnishing', 'furnished', 'furnished', tran, ['6A','14'] ). +verb( 'furrow', 'furrows', 'furrowing', 'furrowed', 'furrowed', tran, ['6A'] ). +verb( 'further', 'furthers', 'furthering', 'furthered', 'furthered', tran, ['6A'] ). +verb( 'fuse', 'fuses', 'fusing', 'fused', 'fused', _, ['2A','6A','15A','15B'] ). +verb( 'fuss', 'fusses', 'fussing', 'fussed', 'fussed', _, ['2A','2C','6A'] ). +verb( 'gabble', 'gabbles', 'gabbling', 'gabbled', 'gabbled', _, ['2A','2C','6A','15B'] ). +verb( 'gad', 'gads', 'gadding', 'gadded', 'gadded', intran, ['2C'] ). +verb( 'gag', 'gags', 'gagging', 'gagged', 'gagged', _, ['2A','6A'] ). +verb( 'gage', 'gages', 'gaging', 'gaged', 'gaged', tran, ['6A'] ). +verb( 'gain', 'gains', 'gaining', 'gained', 'gained', _, ['2A','2B','2C','3A','6A','12B','13B','14'] ). +verb( 'gainsay', 'gainsays', 'gainsaying', 'gainsaid', 'gainsaid', tran, ['6A'] ). +verb( 'gall', 'galls', 'galling', 'galled', 'galled', tran, ['6A'] ). +verb( 'gallivant', 'gallivants', 'gallivanting', 'gallivanted', 'gallivanted', intran, ['2C'] ). +verb( 'gallop', 'gallops', 'galloping', 'galloped', 'galloped', _, ['2A','2B','2C','6A'] ). +verb( 'galumph', 'galumphs', 'galumphing', 'galumphed', 'galumphed', intran, [] ). +verb( 'galvanize', 'galvanizes', 'galvanizing', 'galvanized', 'galvanized', tran, ['6A','14'] ). +verb( 'gamble', 'gambles', 'gambling', 'gambled', 'gambled', _, ['2A','2B','2C','15B'] ). +verb( 'gambol', 'gambols', 'gambolling', 'gambolled', 'gambolled', intran, ['2A','2C'] ). +verb( 'game', 'games', 'gaming', 'gamed', 'gamed', _, ['2A','2C','15B'] ). +verb( 'gang', 'gangs', 'ganging', 'ganged', 'ganged', intran, ['2C'] ). +verb( 'gangrene', 'gangrenes', 'gangrening', 'gangrened', 'gangrened', _, ['2A','6A'] ). +verb( 'gaol', 'gaols', 'gaoling', 'gaoled', 'gaoled', tran, ['6A'] ). +verb( 'gape', 'gapes', 'gaping', 'gaped', 'gaped', intran, ['2A','2C'] ). +verb( 'garage', 'garages', 'garaging', 'garaged', 'garaged', tran, ['6A'] ). +verb( 'garb', 'garbs', 'garbing', 'garbed', 'garbed', tran, ['6A'] ). +verb( 'garble', 'garbles', 'garbling', 'garbled', 'garbled', tran, ['6A'] ). +verb( 'garden', 'gardens', 'gardening', 'gardened', 'gardened', intran, ['2A'] ). +verb( 'gargle', 'gargles', 'gargling', 'gargled', 'gargled', _, ['2A','6A'] ). +verb( 'garland', 'garlands', 'garlanding', 'garlanded', 'garlanded', tran, ['6A'] ). +verb( 'garner', 'garners', 'garnering', 'garnered', 'garnered', tran, ['6A','15B'] ). +verb( 'garnish', 'garnishes', 'garnishing', 'garnished', 'garnished', tran, ['6A','14'] ). +verb( 'garotte', 'garottes', 'garotting', 'garotted', 'garotted', tran, ['6A'] ). +verb( 'garrison', 'garrisons', 'garrisoning', 'garrisoned', 'garrisoned', tran, ['6A'] ). +verb( 'garrotte', 'garrottes', 'garrotting', 'garrotted', 'garrotted', tran, ['6A'] ). +verb( 'gas', 'gasses', 'gassing', 'gassed', 'gassed', _, ['2A','2C','6A'] ). +verb( 'gash', 'gashes', 'gashing', 'gashed', 'gashed', tran, ['6A'] ). +verb( 'gasify', 'gasifies', 'gasifying', 'gasified', 'gasified', _, ['2A','6A'] ). +verb( 'gasp', 'gasps', 'gasping', 'gasped', 'gasped', _, ['2A','2C','6A','15B'] ). +verb( 'gate', 'gates', 'gating', 'gated', 'gated', tran, ['6A'] ). +verb( 'gatecrash', 'gatecrashes', 'gatecrashing', 'gatecrashed', 'gatecrashed', tran, ['6A'] ). +verb( 'gather', 'gathers', 'gathering', 'gathered', 'gathered', _, ['2A','2C','6A','9','12B','13B','15A','15B'] ). +verb( 'gauge', 'gauges', 'gauging', 'gauged', 'gauged', tran, ['6A'] ). +verb( 'gawp', 'gawps', 'gawping', 'gawped', 'gawped', intran, ['2A','3A'] ). +verb( 'gaze', 'gazes', 'gazing', 'gazed', 'gazed', intran, ['2A','2C','3A'] ). +verb( 'gazette', 'gazettes', 'gazetting', 'gazetted', 'gazetted', tran, [] ). +verb( 'gazump', 'gazumps', 'gazumping', 'gazumped', 'gazumped', _, ['2A','6A'] ). +verb( 'gear', 'gears', 'gearing', 'geared', 'geared', _, ['2A','2C','3A','14','15A'] ). +verb( 'gel', 'gels', 'gelling', 'gelled', 'gelled', intran, [] ). +verb( 'geld', 'gelds', 'gelding', 'gelded', 'gelded', tran, ['6A'] ). +verb( 'gen', 'gens', 'genning', 'genned', 'genned', tran, ['15B'] ). +verb( 'generalize', 'generalizes', 'generalizing', 'generalized', 'generalized', _, ['2A','3A','6A','14'] ). +verb( 'generate', 'generates', 'generating', 'generated', 'generated', tran, ['6A'] ). +verb( 'genuflect', 'genuflects', 'genuflecting', 'genuflected', 'genuflected', intran, ['2A'] ). +verb( 'germinate', 'germinates', 'germinating', 'germinated', 'germinated', _, ['2A','6A'] ). +verb( 'gerrymander', 'gerrymanders', 'gerrymandering', 'gerrymandered', 'gerrymandered', tran, ['6A'] ). +verb( 'gesticulate', 'gesticulates', 'gesticulating', 'gesticulated', 'gesticulated', intran, ['2A'] ). +verb( 'gesture', 'gestures', 'gesturing', 'gestured', 'gestured', intran, ['2A'] ). +verb( 'get', 'gets', 'getting', 'got', 'got', _, ['2C','2D','2E','3A','4A','6A','7A','7B','12B','13B','14','15A','15B','17','19B','22','24C'] ). +verb( 'ghost', 'ghosts', 'ghosting', 'ghosted', 'ghosted', _, [] ). +verb( 'gibber', 'gibbers', 'gibbering', 'gibbered', 'gibbered', intran, ['2A','2C'] ). +verb( 'gibbet', 'gibbets', 'gibbeting', 'gibbeted', 'gibbeted', tran, [] ). +verb( 'gibe', 'gibes', 'gibing', 'gibed', 'gibed', intran, ['2A','3A'] ). +verb( 'gift', 'gifts', 'gifting', 'gifted', 'gifted', tran, ['6A'] ). +verb( 'giggle', 'giggles', 'giggling', 'giggled', 'giggled', intran, ['2A','6A'] ). +verb( 'gild', 'gilds', 'gilding', 'gilded', 'gilded', tran, ['6A'] ). +verb( 'gin', 'gins', 'ginning', 'ginned', 'ginned', tran, ['6A'] ). +verb( 'ginger', 'gingers', 'gingering', 'gingered', 'gingered', tran, ['6A','15B'] ). +verb( 'gird', 'girds', 'girding', 'girded', 'girded', tran, ['15B'] ). +verb( 'girdle', 'girdles', 'girdling', 'girdled', 'girdled', tran, ['15A','15B'] ). +verb( 'give', 'gives', 'giving', 'gave', 'given', _, ['2A','2C','3A','6A','12A','12B','13A','15B','16A'] ). +verb( 'gladden', 'gladdens', 'gladdening', 'gladdened', 'gladdened', tran, ['6A'] ). +verb( 'glamorize', 'glamorizes', 'glamorizing', 'glamorized', 'glamorized', tran, ['6A'] ). +verb( 'glance', 'glances', 'glancing', 'glanced', 'glanced', _, ['2C','3A','15A'] ). +verb( 'glare', 'glares', 'glaring', 'glared', 'glared', _, ['2A','2C','3A','6A','14'] ). +verb( 'glass', 'glasses', 'glassing', 'glassed', 'glassed', tran, ['6A','15B'] ). +verb( 'glaze', 'glazes', 'glazing', 'glazed', 'glazed', _, ['2A','2C','6A','15B'] ). +verb( 'gleam', 'gleams', 'gleaming', 'gleamed', 'gleamed', intran, ['2A','2C'] ). +verb( 'glean', 'gleans', 'gleaning', 'gleaned', 'gleaned', _, ['2A','6A'] ). +verb( 'glide', 'glides', 'gliding', 'glided', 'glided', intran, ['2A','2C'] ). +verb( 'glimmer', 'glimmers', 'glimmering', 'glimmered', 'glimmered', intran, ['2A','2C'] ). +verb( 'glimpse', 'glimpses', 'glimpsing', 'glimpsed', 'glimpsed', tran, ['6A','19A'] ). +verb( 'glint', 'glints', 'glinting', 'glinted', 'glinted', intran, [] ). +verb( 'glissade', 'glissades', 'glissading', 'glissaded', 'glissaded', intran, [] ). +verb( 'glisten', 'glistens', 'glistening', 'glistened', 'glistened', intran, ['2A','2C'] ). +verb( 'glister', 'glisters', 'glistering', 'glistered', 'glistered', intran, [] ). +verb( 'glitter', 'glitters', 'glittering', 'glittered', 'glittered', intran, ['2A','2C'] ). +verb( 'gloat', 'gloats', 'gloating', 'gloated', 'gloated', intran, ['2A','3A'] ). +verb( 'globetrot', 'globetrots', 'globetrotting', 'globetrotted', 'globetrotted', intran, ['2A'] ). +verb( 'glorify', 'glorifies', 'glorifying', 'glorified', 'glorified', tran, ['6A'] ). +verb( 'glory', 'glories', 'glorying', 'gloried', 'gloried', intran, ['3A'] ). +verb( 'gloss', 'glosses', 'glossing', 'glossed', 'glossed', tran, ['6A','15A'] ). +verb( 'glow', 'glows', 'glowing', 'glowed', 'glowed', intran, ['2A','2C'] ). +verb( 'glower', 'glowers', 'glowering', 'glowered', 'glowered', intran, ['2A','3A'] ). +verb( 'glue', 'glues', 'gluing', 'glued', 'glued', tran, ['6A','15A','15B'] ). +verb( 'glut', 'gluts', 'glutting', 'glutted', 'glutted', tran, ['6A','14'] ). +verb( 'gnash', 'gnashes', 'gnashing', 'gnashed', 'gnashed', _, ['2A','6A'] ). +verb( 'gnaw', 'gnaws', 'gnawing', 'gnawed', 'gnawed', _, ['3A','6A','15B'] ). +verb( 'go', 'goes', 'going', 'went', 'gone', intran, ['2A','2B','2C','2D','2E','3A','4A','6A','15B'] ). +verb( 'goad', 'goads', 'goading', 'goaded', 'goaded', tran, ['6A','14','15B','17'] ). +verb( 'gobble', 'gobbles', 'gobbling', 'gobbled', 'gobbled', _, ['2A','2C','6A','15B'] ). +verb( 'goggle', 'goggles', 'goggling', 'goggled', 'goggled', intran, ['2A','3A'] ). +verb( 'golf', 'golfs', 'golfing', 'golfed', 'golfed', intran, [] ). +verb( 'gong', 'gongs', 'gonging', 'gonged', 'gonged', tran, [] ). +verb( 'goof', 'goofs', 'goofing', 'goofed', 'goofed', _, ['2A','6A'] ). +verb( 'gore', 'gores', 'goring', 'gored', 'gored', tran, ['6A'] ). +verb( 'gorge', 'gorges', 'gorging', 'gorged', 'gorged', _, ['2A','2C','6A','14'] ). +verb( 'gormandize', 'gormandizes', 'gormandizing', 'gormandized', 'gormandized', intran, [] ). +verb( 'gossip', 'gossips', 'gossiping', 'gossiped', 'gossiped', intran, ['2A','2C'] ). +verb( 'gouge', 'gouges', 'gouging', 'gouged', 'gouged', tran, ['6A','15B'] ). +verb( 'govern', 'governs', 'governing', 'governed', 'governed', _, ['2A','6A'] ). +verb( 'gown', 'gowns', 'gowning', 'gowned', 'gowned', tran, [] ). +verb( 'grab', 'grabs', 'grabbing', 'grabbed', 'grabbed', _, ['3A','6A'] ). +verb( 'grace', 'graces', 'gracing', 'graced', 'graced', tran, ['6A'] ). +verb( 'grade', 'grades', 'grading', 'graded', 'graded', tran, ['6A','15B'] ). +verb( 'graduate', 'graduates', 'graduating', 'graduated', 'graduated', _, ['2A','2C','6A'] ). +verb( 'graft', 'grafts', 'grafting', 'grafted', 'grafted', _, ['2A','6A','15A','15B'] ). +verb( 'grant', 'grants', 'granting', 'granted', 'granted', tran, ['6A','9','12A','13A','25'] ). +verb( 'granulate', 'granulates', 'granulating', 'granulated', 'granulated', _, ['2A','6A'] ). +verb( 'grapple', 'grapples', 'grappling', 'grappled', 'grappled', intran, ['2A','2C','3A'] ). +verb( 'grasp', 'grasps', 'grasping', 'grasped', 'grasped', _, ['3A','6A'] ). +verb( 'grass', 'grasses', 'grassing', 'grassed', 'grassed', _, ['2A','3A','6A','15B'] ). +verb( 'grate', 'grates', 'grating', 'grated', 'grated', _, ['2A','3A','6A','15A'] ). +verb( 'gratify', 'gratifies', 'gratifying', 'gratified', 'gratified', tran, ['6A'] ). +verb( 'grave', 'graves', 'graving', 'graved', 'graven', tran, [] ). +verb( 'gravel', 'gravels', 'gravelling', 'gravelled', 'gravelled', tran, ['6A'] ). +verb( 'gravitate', 'gravitates', 'gravitating', 'gravitated', 'gravitated', intran, ['3A'] ). +verb( 'gray', 'grays', 'graying', 'grayed', 'grayed', _, ['2A','6A'] ). +verb( 'graze', 'grazes', 'grazing', 'grazed', 'grazed', _, ['2A','2C','6A'] ). +verb( 'grease', 'greases', 'greasing', 'greased', 'greased', tran, [] ). +verb( 'greet', 'greets', 'greeting', 'greeted', 'greeted', tran, ['6A','14'] ). +verb( 'grey', 'greys', 'greying', 'greyed', 'greyed', _, ['2A','6A'] ). +verb( 'grieve', 'grieves', 'grieving', 'grieved', 'grieved', _, ['2A','2C','6A'] ). +verb( 'grill', 'grills', 'grilling', 'grilled', 'grilled', _, ['2A','2C','6A'] ). +verb( 'grimace', 'grimaces', 'grimacing', 'grimaced', 'grimaced', intran, ['2A'] ). +verb( 'grime', 'grimes', 'griming', 'grimed', 'grimed', tran, ['6A'] ). +verb( 'grin', 'grins', 'grinning', 'grinned', 'grinned', _, ['2A','2C','6A'] ). +verb( 'grind', 'grinds', 'grinding', 'ground', 'ground', _, ['2A','2C','6A','15A','15B'] ). +verb( 'grip', 'grips', 'gripping', 'gripped', 'gripped', _, ['2A','6A'] ). +verb( 'grit', 'grits', 'gritting', 'gritted', 'gritted', tran, [] ). +verb( 'grizzle', 'grizzles', 'grizzling', 'grizzled', 'grizzled', intran, [] ). +verb( 'groan', 'groans', 'groaning', 'groaned', 'groaned', _, ['2A','2C','6A','15B'] ). +verb( 'groin', 'groins', 'groining', 'groined', 'groined', tran, [] ). +verb( 'groom', 'grooms', 'grooming', 'groomed', 'groomed', tran, ['6A'] ). +verb( 'groove', 'grooves', 'grooving', 'grooved', 'grooved', tran, [] ). +verb( 'grope', 'gropes', 'groping', 'groped', 'groped', _, ['2A','2C','3A','15A'] ). +verb( 'gross', 'grosses', 'grossing', 'grossed', 'grossed', tran, ['6A'] ). +verb( 'grouch', 'grouches', 'grouching', 'grouched', 'grouched', intran, [] ). +verb( 'ground', 'grounds', 'grounding', 'grounded', 'grounded', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'group', 'groups', 'grouping', 'grouped', 'grouped', _, ['2C','6A','15A','15B'] ). +verb( 'grouse', 'grouses', 'grousing', 'groused', 'groused', intran, ['2A','2C'] ). +verb( 'grovel', 'grovels', 'grovelling', 'grovelled', 'grovelled', intran, ['2A','2C'] ). +verb( 'grow', 'grows', 'growing', 'grew', 'grown', _, ['2A','2C','2D','3A','4A','6A','12B','13B'] ). +verb( 'growl', 'growls', 'growling', 'growled', 'growled', _, ['2A','2C','6A','15B'] ). +verb( 'grub', 'grubs', 'grubbing', 'grubbed', 'grubbed', _, ['2C','6A','15B'] ). +verb( 'grudge', 'grudges', 'grudging', 'grudged', 'grudged', tran, ['6C','12A','13A'] ). +verb( 'grumble', 'grumbles', 'grumbling', 'grumbled', 'grumbled', _, ['2A','2C','3A','6A','15B'] ). +verb( 'grunt', 'grunts', 'grunting', 'grunted', 'grunted', _, ['2A','6A','15B'] ). +verb( 'guarantee', 'guarantees', 'guaranteeing', 'guaranteed', 'guaranteed', tran, ['6A','7A','9','12A','13A','25'] ). +verb( 'guard', 'guards', 'guarding', 'guarded', 'guarded', _, ['3A','6A','15A'] ). +verb( 'guess', 'guesses', 'guessing', 'guessed', 'guessed', _, ['2A','2C','3A','6A','8','9','10','25'] ). +verb( 'guffaw', 'guffaws', 'guffawing', 'guffawed', 'guffawed', intran, [] ). +verb( 'guide', 'guides', 'guiding', 'guided', 'guided', tran, ['6A','15A','15B'] ). +verb( 'guillotine', 'guillotines', 'guillotining', 'guillotined', 'guillotined', tran, ['6A'] ). +verb( 'gull', 'gulls', 'gulling', 'gulled', 'gulled', tran, ['6A','15A'] ). +verb( 'gulp', 'gulps', 'gulping', 'gulped', 'gulped', _, ['2A','6A','15B'] ). +verb( 'gum', 'gums', 'gumming', 'gummed', 'gummed', tran, ['6A','15A','15B'] ). +verb( 'gun', 'guns', 'gunning', 'gunned', 'gunned', tran, ['6A','15B'] ). +verb( 'gurgle', 'gurgles', 'gurgling', 'gurgled', 'gurgled', intran, [] ). +verb( 'gush', 'gushes', 'gushing', 'gushed', 'gushed', intran, ['2A','2C','3A'] ). +verb( 'gut', 'guts', 'gutting', 'gutted', 'gutted', tran, ['6A'] ). +verb( 'gutter', 'gutters', 'guttering', 'guttered', 'guttered', intran, ['2A'] ). +verb( 'guy', 'guys', 'guying', 'guyed', 'guyed', tran, ['6A'] ). +verb( 'guzzle', 'guzzles', 'guzzling', 'guzzled', 'guzzled', _, ['2A','6A','15B'] ). +verb( 'gybe', 'gybes', 'gybing', 'gybed', 'gybed', _, ['2A','6A'] ). +verb( 'gyp', 'gyps', 'gypping', 'gypped', 'gypped', tran, ['6A'] ). +verb( 'gyrate', 'gyrates', 'gyrating', 'gyrated', 'gyrated', intran, [] ). +verb( 'h\'m', 'h\'ms', 'h\'mming', 'h\'mmed', 'h\'mmed', intran, [] ). +verb( 'habituate', 'habituates', 'habituating', 'habituated', 'habituated', tran, ['14'] ). +verb( 'hack', 'hacks', 'hacking', 'hacked', 'hacked', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'haggle', 'haggles', 'haggling', 'haggled', 'haggled', intran, ['2A','3A'] ). +verb( 'hail', 'hails', 'hailing', 'hailed', 'hailed', _, ['2C','3A','6A','15B','16B','23'] ). +verb( 'halloo', 'halloos', 'hallooing', 'hallooed', 'hallooed', intran, [] ). +verb( 'hallow', 'hallows', 'hallowing', 'hallowed', 'hallowed', tran, ['6A'] ). +verb( 'halt', 'halts', 'halting', 'halted', 'halted', _, ['2A','2C','6A'] ). +verb( 'halve', 'halves', 'halving', 'halved', 'halved', tran, ['6A'] ). +verb( 'ham', 'hams', 'hamming', 'hammed', 'hammed', _, ['2A','6A','15B'] ). +verb( 'hammer', 'hammers', 'hammering', 'hammered', 'hammered', _, ['2A','2C','3A','6A','15B','22'] ). +verb( 'hamper', 'hampers', 'hampering', 'hampered', 'hampered', tran, ['6A'] ). +verb( 'hamstring', 'hamstrings', 'hamstringing', 'hamstrung', 'hamstrung', tran, ['6A'] ). +verb( 'hand', 'hands', 'handing', 'handed', 'handed', tran, ['12A','13A','15A','15B'] ). +verb( 'handcuff', 'handcuffs', 'handcuffing', 'handcuffed', 'handcuffed', tran, [] ). +verb( 'handicap', 'handicaps', 'handicapping', 'handicapped', 'handicapped', tran, ['6A'] ). +verb( 'handle', 'handles', 'handling', 'handled', 'handled', tran, ['6A'] ). +verb( 'hang', 'hangs', 'hanging', 'hanged', 'hanged', _, ['2A','2B','2C','3A','6A','15A','15B'] ). +verb( 'hanker', 'hankers', 'hankering', 'hankered', 'hankered', intran, ['3A'] ). +verb( 'hap', 'haps', 'happing', 'happed', 'happed', intran, [] ). +verb( 'happen', 'happens', 'happening', 'happened', 'happened', intran, ['2A','3A','4E'] ). +verb( 'harangue', 'harangues', 'haranguing', 'harangued', 'harangued', _, ['2A','6A'] ). +verb( 'harass', 'harasses', 'harassing', 'harassed', 'harassed', tran, ['6A'] ). +verb( 'harbour', 'harbours', 'harbouring', 'harboured', 'harboured', _, ['2A','6A'] ). +verb( 'harden', 'hardens', 'hardening', 'hardened', 'hardened', _, ['2A','2C','6A','15B'] ). +verb( 'hare', 'hares', 'haring', 'hared', 'hared', intran, ['2C'] ). +verb( 'hark', 'harks', 'harking', 'harked', 'harked', intran, [] ). +verb( 'harm', 'harms', 'harming', 'harmed', 'harmed', tran, ['6A'] ). +verb( 'harmonize', 'harmonizes', 'harmonizing', 'harmonized', 'harmonized', _, ['2A','2C','6A','14'] ). +verb( 'harness', 'harnesses', 'harnessing', 'harnessed', 'harnessed', tran, ['6A'] ). +verb( 'harp', 'harps', 'harping', 'harped', 'harped', intran, [] ). +verb( 'harpoon', 'harpoons', 'harpooning', 'harpooned', 'harpooned', tran, [] ). +verb( 'harrow', 'harrows', 'harrowing', 'harrowed', 'harrowed', tran, ['6A'] ). +verb( 'harry', 'harries', 'harrying', 'harried', 'harried', tran, ['6A'] ). +verb( 'harvest', 'harvests', 'harvesting', 'harvested', 'harvested', tran, ['6A'] ). +verb( 'hash', 'hashes', 'hashing', 'hashed', 'hashed', tran, ['6A','15B'] ). +verb( 'hassle', 'hassles', 'hassling', 'hassled', 'hassled', _, ['2A','3A','6A'] ). +verb( 'hasten', 'hastens', 'hastening', 'hastened', 'hastened', _, ['2A','2C','4A','6A'] ). +verb( 'hatch', 'hatches', 'hatching', 'hatched', 'hatched', _, ['2A','6A'] ). +verb( 'hate', 'hates', 'hating', 'hated', 'hated', tran, ['6A','6D','7A','17','19C'] ). +verb( 'haul', 'hauls', 'hauling', 'hauled', 'hauled', _, ['2C','3A','6A','15A','15B'] ). +verb( 'haunt', 'haunts', 'haunting', 'haunted', 'haunted', tran, ['6A'] ). +verb( 'have', 'has', 'having', 'had', 'had', unknown, ['6A','6B','7B','15B','18C','19B','24B','24C'] ). +verb( 'have', 'has', 'having', 'had', 'had', _, ['6A','6B','7B','15B','18C','19B','24B','24C'] ). +verb( 'haw', 'haws', 'hawing', 'hawed', 'hawed', intran, [] ). +verb( 'hawk', 'hawks', 'hawking', 'hawked', 'hawked', tran, ['6A','15B'] ). +verb( 'hazard', 'hazards', 'hazarding', 'hazarded', 'hazarded', tran, ['6A'] ). +verb( 'haze', 'hazes', 'hazing', 'hazed', 'hazed', tran, [] ). +verb( 'head', 'heads', 'heading', 'headed', 'headed', _, ['2C','6A','15B'] ). +verb( 'heal', 'heals', 'healing', 'healed', 'healed', _, ['2A','2C','6A'] ). +verb( 'heap', 'heaps', 'heaping', 'heaped', 'heaped', tran, ['6A','14','15A','15B'] ). +verb( 'hear', 'hears', 'hearing', 'heard', 'heard', _, ['2A','3A','6A','9','10','15A','18A','19A','24A'] ). +verb( 'hearken', 'hearkens', 'hearkening', 'hearkened', 'hearkened', intran, [] ). +verb( 'hearten', 'heartens', 'heartening', 'heartened', 'heartened', tran, ['6A'] ). +verb( 'heat', 'heats', 'heating', 'heated', 'heated', _, ['2C','6A','15B'] ). +verb( 'heave', 'heaves', 'heaving', 'heaved', 'heaved', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'heckle', 'heckles', 'heckling', 'heckled', 'heckled', tran, ['6A'] ). +verb( 'hector', 'hectors', 'hectoring', 'hectored', 'hectored', _, [] ). +verb( 'hedge', 'hedges', 'hedging', 'hedged', 'hedged', _, ['2A','6A','15A','15B'] ). +verb( 'hedgehop', 'hedgehops', 'hedgehopping', 'hedgehopped', 'hedgehopped', intran, [] ). +verb( 'heed', 'heeds', 'heeding', 'heeded', 'heeded', tran, ['6A'] ). +verb( 'heel', 'heels', 'heeling', 'heeled', 'heeled', _, ['2A','2C','6A','15B'] ). +verb( 'heighten', 'heightens', 'heightening', 'heightened', 'heightened', _, ['2A','6A'] ). +verb( 'heliograph', 'heliographs', 'heliographing', 'heliographed', 'heliographed', tran, [] ). +verb( 'help', 'helps', 'helping', 'helped', 'helped', _, ['2A','2C','6A','6C','14','15A','15B','17','18B'] ). +verb( 'hem', 'hems', 'hemming', 'hemmed', 'hemmed', _, ['6A','15B'] ). +verb( 'hemstitch', 'hemstitches', 'hemstitching', 'hemstitched', 'hemstitched', tran, [] ). +verb( 'herald', 'heralds', 'heralding', 'heralded', 'heralded', tran, ['6A'] ). +verb( 'herd', 'herds', 'herding', 'herded', 'herded', _, ['2C','15A','15B'] ). +verb( 'hesitate', 'hesitates', 'hesitating', 'hesitated', 'hesitated', intran, ['2A','3A','3B','4C'] ). +verb( 'hew', 'hews', 'hewing', 'hewed', 'hewed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hibernate', 'hibernates', 'hibernating', 'hibernated', 'hibernated', intran, ['2A'] ). +verb( 'hiccough', 'hiccoughs', 'hiccoughing', 'hiccoughed', 'hiccoughed', intran, [] ). +verb( 'hiccup', 'hiccups', 'hiccupping', 'hiccupped', 'hiccupped', intran, [] ). +verb( 'hide', 'hides', 'hiding', 'hid', 'hidden', _, ['2A','6A','14'] ). +verb( 'hie', 'hies', 'hieing', 'hied', 'hied', intran, [] ). +verb( 'highjack', 'highjacks', 'highjacking', 'highjacked', 'highjacked', tran, ['6A'] ). +verb( 'highlight', 'highlights', 'highlighting', 'highlighted', 'highlighted', tran, [] ). +verb( 'hijack', 'hijacks', 'hijacking', 'hijacked', 'hijacked', tran, ['6A'] ). +verb( 'hike', 'hikes', 'hiking', 'hiked', 'hiked', intran, [] ). +verb( 'hinder', 'hinders', 'hindering', 'hindered', 'hindered', tran, ['6A','6C','15A'] ). +verb( 'hinge', 'hinges', 'hinging', 'hinged', 'hinged', _, ['3A','6A'] ). +verb( 'hint', 'hints', 'hinting', 'hinted', 'hinted', _, ['3A','6A','9'] ). +verb( 'hire', 'hires', 'hiring', 'hired', 'hired', tran, ['6A','15B'] ). +verb( 'hiss', 'hisses', 'hissing', 'hissed', 'hissed', _, ['2A','3A','6A','15A'] ). +verb( 'hit', 'hits', 'hitting', 'hit', 'hit', _, ['2C','3A','6A','12C','15A','15B'] ). +verb( 'hitch', 'hitches', 'hitching', 'hitched', 'hitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hitchhike', 'hitchhikes', 'hitchhiking', 'hitchhiked', 'hitchhiked', intran, ['2A'] ). +verb( 'hive', 'hives', 'hiving', 'hived', 'hived', _, ['2C','6A'] ). +verb( 'hoard', 'hoards', 'hoarding', 'hoarded', 'hoarded', _, ['6A','15B'] ). +verb( 'hoax', 'hoaxes', 'hoaxing', 'hoaxed', 'hoaxed', tran, ['6A','14'] ). +verb( 'hobble', 'hobbles', 'hobbling', 'hobbled', 'hobbled', _, ['2A','2C','6A'] ). +verb( 'hobnob', 'hobnobs', 'hobnobbing', 'hobnobbed', 'hobnobbed', intran, ['2A','2C','3A'] ). +verb( 'hock', 'hocks', 'hocking', 'hocked', 'hocked', tran, ['6A'] ). +verb( 'hoe', 'hoes', 'hoeing', 'hoed', 'hoed', _, ['2A','6A','15B'] ). +verb( 'hog', 'hogs', 'hogging', 'hogged', 'hogged', tran, ['6A'] ). +verb( 'hoist', 'hoists', 'hoisting', 'hoisted', 'hoisted', tran, ['6A','15B'] ). +verb( 'hold', 'holds', 'holding', 'held', 'held', _, ['2A','2C','2D','3A','6A','9','14','15A','15B','22','25'] ). +verb( 'hole', 'holes', 'holing', 'holed', 'holed', _, ['2C','6A','15B'] ). +verb( 'holiday', 'holidays', 'holidaying', 'holidayed', 'holidayed', intran, [] ). +verb( 'holler', 'hollers', 'hollering', 'hollered', 'hollered', _, [] ). +verb( 'hollow', 'hollows', 'hollowing', 'hollowed', 'hollowed', tran, ['6A','15A','15B'] ). +verb( 'holystone', 'holystones', 'holystoning', 'holystoned', 'holystoned', tran, [] ). +verb( 'homogenize', 'homogenizes', 'homogenizing', 'homogenized', 'homogenized', tran, ['6A'] ). +verb( 'hone', 'hones', 'honing', 'honed', 'honed', tran, ['6A'] ). +verb( 'honeycomb', 'honeycombs', 'honeycombing', 'honeycombed', 'honeycombed', tran, ['6A'] ). +verb( 'honeymoon', 'honeymoons', 'honeymooning', 'honeymooned', 'honeymooned', intran, [] ). +verb( 'honk', 'honks', 'honking', 'honked', 'honked', intran, [] ). +verb( 'honour', 'honours', 'honouring', 'honoured', 'honoured', tran, ['6A'] ). +verb( 'hood', 'hoods', 'hooding', 'hooded', 'hooded', tran, [] ). +verb( 'hoodoo', 'hoodoos', 'hoodooing', 'hoodooed', 'hoodooed', tran, [] ). +verb( 'hoodwink', 'hoodwinks', 'hoodwinking', 'hoodwinked', 'hoodwinked', tran, ['6A','14'] ). +verb( 'hook', 'hooks', 'hooking', 'hooked', 'hooked', _, ['2C','6A','15A','15B'] ). +verb( 'hoop', 'hoops', 'hooping', 'hooped', 'hooped', tran, [] ). +verb( 'hoot', 'hoots', 'hooting', 'hooted', 'hooted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hop', 'hops', 'hopping', 'hopped', 'hopped', _, ['2A','2C','6A'] ). +verb( 'hope', 'hopes', 'hoping', 'hoped', 'hoped', _, ['2A','3A','7A','9'] ). +verb( 'horn', 'horns', 'horning', 'horned', 'horned', intran, [] ). +verb( 'horrify', 'horrifies', 'horrifying', 'horrified', 'horrified', tran, ['6A'] ). +verb( 'horsewhip', 'horsewhips', 'horsewhipping', 'horsewhipped', 'horsewhipped', tran, [] ). +verb( 'hose', 'hoses', 'hosing', 'hosed', 'hosed', tran, ['6A','15B'] ). +verb( 'hospitalize', 'hospitalizes', 'hospitalizing', 'hospitalized', 'hospitalized', tran, [] ). +verb( 'host', 'hosts', 'hosting', 'hosted', 'hosted', tran, ['6A'] ). +verb( 'hot', 'hots', 'hotting', 'hotted', 'hotted', _, ['2C','15B'] ). +verb( 'hotfoot', 'hotfoots', 'hotfooting', 'hotfooted', 'hotfooted', intran, [] ). +verb( 'hound', 'hounds', 'hounding', 'hounded', 'hounded', tran, ['6A'] ). +verb( 'house', 'houses', 'housing', 'housed', 'housed', tran, ['6A'] ). +verb( 'hover', 'hovers', 'hovering', 'hovered', 'hovered', intran, ['2A','2C'] ). +verb( 'howl', 'howls', 'howling', 'howled', 'howled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'huddle', 'huddles', 'huddling', 'huddled', 'huddled', _, ['2C','15A','15B'] ). +verb( 'huff', 'huffs', 'huffing', 'huffed', 'huffed', intran, [] ). +verb( 'hug', 'hugs', 'hugging', 'hugged', 'hugged', tran, ['6A'] ). +verb( 'hull', 'hulls', 'hulling', 'hulled', 'hulled', tran, [] ). +verb( 'hum', 'hums', 'humming', 'hummed', 'hummed', _, ['2A','2C','6A'] ). +verb( 'humanize', 'humanizes', 'humanizing', 'humanized', 'humanized', _, ['2A','6A'] ). +verb( 'humble', 'humbles', 'humbling', 'humbled', 'humbled', tran, ['6A'] ). +verb( 'humbug', 'humbugs', 'humbugging', 'humbugged', 'humbugged', tran, ['6A','14'] ). +verb( 'humidify', 'humidifies', 'humidifying', 'humidified', 'humidified', tran, [] ). +verb( 'humiliate', 'humiliates', 'humiliating', 'humiliated', 'humiliated', tran, ['6A'] ). +verb( 'humour', 'humours', 'humouring', 'humoured', 'humoured', tran, ['6A'] ). +verb( 'hump', 'humps', 'humping', 'humped', 'humped', tran, ['6A','15B'] ). +verb( 'hunch', 'hunches', 'hunching', 'hunched', 'hunched', tran, ['6A','15B'] ). +verb( 'hunger', 'hungers', 'hungering', 'hungered', 'hungered', intran, ['2A','3A','4C'] ). +verb( 'hunt', 'hunts', 'hunting', 'hunted', 'hunted', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'hurdle', 'hurdles', 'hurdling', 'hurdled', 'hurdled', _, ['2A','15B'] ). +verb( 'hurl', 'hurls', 'hurling', 'hurled', 'hurled', tran, ['6A','15A','15B'] ). +verb( 'hurrah', 'hurrahs', 'hurrahing', 'hurrahed', 'hurrahed', intran, [] ). +verb( 'hurry', 'hurries', 'hurrying', 'hurried', 'hurried', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hurt', 'hurts', 'hurting', 'hurt', 'hurt', _, ['2A','6A','6B'] ). +verb( 'hurtle', 'hurtles', 'hurtling', 'hurtled', 'hurtled', intran, ['2C'] ). +verb( 'husband', 'husbands', 'husbanding', 'husbanded', 'husbanded', tran, ['1','6A'] ). +verb( 'hush', 'hushes', 'hushing', 'hushed', 'hushed', _, ['2A','15A','15B'] ). +verb( 'husk', 'husks', 'husking', 'husked', 'husked', tran, [] ). +verb( 'hustle', 'hustles', 'hustling', 'hustled', 'hustled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hybridize', 'hybridizes', 'hybridizing', 'hybridized', 'hybridized', _, ['2A','6A'] ). +verb( 'hydrate', 'hydrates', 'hydrating', 'hydrated', 'hydrated', _, [] ). +verb( 'hymn', 'hymns', 'hymning', 'hymned', 'hymned', tran, [] ). +verb( 'hyphen', 'hyphens', 'hyphening', 'hyphened', 'hyphened', tran, [] ). +verb( 'hyphenate', 'hyphenates', 'hyphenating', 'hyphenated', 'hyphenated', tran, [] ). +verb( 'hypnotize', 'hypnotizes', 'hypnotizing', 'hypnotized', 'hypnotized', tran, ['6A'] ). +verb( 'hypothecate', 'hypothecates', 'hypothecating', 'hypothecated', 'hypothecated', tran, [] ). +verb( 'ice', 'ices', 'icing', 'iced', 'iced', _, ['2C','6A','15B'] ). +verb( 'ice-skate', 'ice-skates', 'ice-skating', 'ice-skated', 'ice-skated', intran, [] ). +verb( 'idealize', 'idealizes', 'idealizing', 'idealized', 'idealized', tran, ['6A'] ). +verb( 'identify', 'identifies', 'identifying', 'identified', 'identified', tran, ['3A','6A','14'] ). +verb( 'idle', 'idles', 'idling', 'idled', 'idled', _, ['2A','2C','15B'] ). +verb( 'idolize', 'idolizes', 'idolizing', 'idolized', 'idolized', tran, ['6A'] ). +verb( 'ignite', 'ignites', 'igniting', 'ignited', 'ignited', _, ['2A','6A'] ). +verb( 'ignore', 'ignores', 'ignoring', 'ignored', 'ignored', tran, ['6A'] ). +verb( 'ill-treat', 'ill-treats', 'ill-treating', 'ill-treated', 'ill-treated', tran, [] ). +verb( 'ill-use', 'ill-uses', 'ill-using', 'ill-used', 'ill-used', tran, [] ). +verb( 'illume', 'illumes', 'illuming', 'illumed', 'illumed', tran, [] ). +verb( 'illuminate', 'illuminates', 'illuminating', 'illuminated', 'illuminated', tran, ['6A'] ). +verb( 'illumine', 'illumines', 'illumining', 'illumined', 'illumined', tran, ['6A'] ). +verb( 'illustrate', 'illustrates', 'illustrating', 'illustrated', 'illustrated', tran, ['6A'] ). +verb( 'image', 'images', 'imaging', 'imaged', 'imaged', tran, ['6A'] ). +verb( 'imagine', 'imagines', 'imagining', 'imagined', 'imagined', tran, ['6A','6C','9','10','16B','19A','19C','25'] ). +verb( 'imbed', 'imbeds', 'imbedding', 'imbedded', 'imbedded', tran, [] ). +verb( 'imbibe', 'imbibes', 'imbibing', 'imbibed', 'imbibed', tran, [] ). +verb( 'imbue', 'imbues', 'imbuing', 'imbued', 'imbued', tran, ['14'] ). +verb( 'imitate', 'imitates', 'imitating', 'imitated', 'imitated', tran, ['6A'] ). +verb( 'immerse', 'immerses', 'immersing', 'immersed', 'immersed', tran, ['6A','14'] ). +verb( 'immigrate', 'immigrates', 'immigrating', 'immigrated', 'immigrated', intran, ['2A','3A'] ). +verb( 'immobilize', 'immobilizes', 'immobilizing', 'immobilized', 'immobilized', tran, ['6A'] ). +verb( 'immolate', 'immolates', 'immolating', 'immolated', 'immolated', tran, ['6A','14'] ). +verb( 'immortalize', 'immortalizes', 'immortalizing', 'immortalized', 'immortalized', tran, ['6A'] ). +verb( 'immunize', 'immunizes', 'immunizing', 'immunized', 'immunized', tran, ['6A','14'] ). +verb( 'immure', 'immures', 'immuring', 'immured', 'immured', tran, ['6A'] ). +verb( 'impact', 'impacts', 'impacting', 'impacted', 'impacted', tran, [] ). +verb( 'impair', 'impairs', 'impairing', 'impaired', 'impaired', tran, ['6A'] ). +verb( 'impale', 'impales', 'impaling', 'impaled', 'impaled', tran, ['6A','15A'] ). +verb( 'impanel', 'impanels', 'impanelling', 'impanelled', 'impanelled', tran, ['6A'] ). +verb( 'impart', 'imparts', 'imparting', 'imparted', 'imparted', tran, ['6A','14'] ). +verb( 'impeach', 'impeaches', 'impeaching', 'impeached', 'impeached', tran, ['6A','14'] ). +verb( 'impede', 'impedes', 'impeding', 'impeded', 'impeded', tran, ['6A'] ). +verb( 'impel', 'impels', 'impelling', 'impelled', 'impelled', tran, ['14','17'] ). +verb( 'impend', 'impends', 'impending', 'impended', 'impended', intran, [] ). +verb( 'imperil', 'imperils', 'imperilling', 'imperilled', 'imperilled', tran, ['6A'] ). +verb( 'impersonate', 'impersonates', 'impersonating', 'impersonated', 'impersonated', tran, ['6A'] ). +verb( 'impinge', 'impinges', 'impinging', 'impinged', 'impinged', intran, ['3A'] ). +verb( 'implant', 'implants', 'implanting', 'implanted', 'implanted', tran, ['6A','14'] ). +verb( 'implement', 'implements', 'implementing', 'implemented', 'implemented', tran, ['6A'] ). +verb( 'implicate', 'implicates', 'implicating', 'implicated', 'implicated', tran, ['6A','14'] ). +verb( 'implore', 'implores', 'imploring', 'implored', 'implored', tran, ['6A','14','17'] ). +verb( 'imply', 'implies', 'implying', 'implied', 'implied', tran, ['6A','9'] ). +verb( 'import', 'imports', 'importing', 'imported', 'imported', tran, ['6A','9','14'] ). +verb( 'importune', 'importunes', 'importuning', 'importuned', 'importuned', tran, ['6A','9','14','17'] ). +verb( 'impose', 'imposes', 'imposing', 'imposed', 'imposed', _, ['3A','14'] ). +verb( 'impound', 'impounds', 'impounding', 'impounded', 'impounded', tran, ['6A'] ). +verb( 'impoverish', 'impoverishes', 'impoverishing', 'impoverished', 'impoverished', tran, ['6A'] ). +verb( 'imprecate', 'imprecates', 'imprecating', 'imprecated', 'imprecated', tran, ['14'] ). +verb( 'impregnate', 'impregnates', 'impregnating', 'impregnated', 'impregnated', tran, ['6A','14'] ). +verb( 'impress', 'impresses', 'impressing', 'impressed', 'impressed', tran, ['6A','14'] ). +verb( 'imprint', 'imprints', 'imprinting', 'imprinted', 'imprinted', tran, ['14'] ). +verb( 'imprison', 'imprisons', 'imprisoning', 'imprisoned', 'imprisoned', tran, ['6A'] ). +verb( 'improve', 'improves', 'improving', 'improved', 'improved', _, ['2A','3A','6A'] ). +verb( 'improvise', 'improvises', 'improvising', 'improvised', 'improvised', _, ['2A','6A'] ). +verb( 'impugn', 'impugns', 'impugning', 'impugned', 'impugned', tran, ['6A'] ). +verb( 'impulse-buy', 'impulse-buys', 'impulse-buying', 'impulse-bought', 'impulse-bought', _, [] ). +verb( 'impute', 'imputes', 'imputing', 'imputed', 'imputed', tran, ['14'] ). +verb( 'inactivate', 'inactivates', 'inactivating', 'inactivated', 'inactivated', tran, [] ). +verb( 'inaugurate', 'inaugurates', 'inaugurating', 'inaugurated', 'inaugurated', tran, ['6A'] ). +verb( 'incapacitate', 'incapacitates', 'incapacitating', 'incapacitated', 'incapacitated', tran, ['6A','14'] ). +verb( 'incarcerate', 'incarcerates', 'incarcerating', 'incarcerated', 'incarcerated', tran, ['6A'] ). +verb( 'incarnate', 'incarnates', 'incarnating', 'incarnated', 'incarnated', tran, ['6A'] ). +verb( 'incense', 'incenses', 'incensing', 'incensed', 'incensed', tran, ['6A'] ). +verb( 'inch', 'inches', 'inching', 'inched', 'inched', _, ['2C','15A','15B'] ). +verb( 'incinerate', 'incinerates', 'incinerating', 'incinerated', 'incinerated', tran, ['6A'] ). +verb( 'incise', 'incises', 'incising', 'incised', 'incised', tran, ['6A'] ). +verb( 'incite', 'incites', 'inciting', 'incited', 'incited', tran, ['6A','14','17'] ). +verb( 'incline', 'inclines', 'inclining', 'inclined', 'inclined', _, ['2A','3A','4C','6A','15A','17'] ). +verb( 'inclose', 'incloses', 'inclosing', 'inclosed', 'inclosed', tran, ['6A','14'] ). +verb( 'include', 'includes', 'including', 'included', 'included', tran, ['6A','6C'] ). +verb( 'incommode', 'incommodes', 'incommoding', 'incommoded', 'incommoded', tran, ['6A'] ). +verb( 'inconvenience', 'inconveniences', 'inconveniencing', 'inconvenienced', 'inconvenienced', tran, ['6A'] ). +verb( 'incorporate', 'incorporates', 'incorporating', 'incorporated', 'incorporated', _, ['2A','3A','6A','14','23'] ). +verb( 'increase', 'increases', 'increasing', 'increased', 'increased', _, ['2A','6A'] ). +verb( 'incriminate', 'incriminates', 'incriminating', 'incriminated', 'incriminated', tran, ['6A'] ). +verb( 'incubate', 'incubates', 'incubating', 'incubated', 'incubated', _, ['2A','6A'] ). +verb( 'inculcate', 'inculcates', 'inculcating', 'inculcated', 'inculcated', tran, ['6A','14'] ). +verb( 'inculpate', 'inculpates', 'inculpating', 'inculpated', 'inculpated', tran, ['6A'] ). +verb( 'incur', 'incurs', 'incurring', 'incurred', 'incurred', tran, ['6A'] ). +verb( 'indemnify', 'indemnifies', 'indemnifying', 'indemnified', 'indemnified', tran, ['6A','14'] ). +verb( 'indent', 'indents', 'indenting', 'indented', 'indented', _, ['3A','6A'] ). +verb( 'indenture', 'indentures', 'indenturing', 'indentured', 'indentured', tran, ['6A'] ). +verb( 'index', 'indexes', 'indexing', 'indexed', 'indexed', tran, ['6A'] ). +verb( 'indicate', 'indicates', 'indicating', 'indicated', 'indicated', tran, ['6A','9','14'] ). +verb( 'indict', 'indicts', 'indicting', 'indicted', 'indicted', tran, ['6A','14','16B'] ). +verb( 'indite', 'indites', 'inditing', 'indited', 'indited', tran, ['6A'] ). +verb( 'individualize', 'individualizes', 'individualizing', 'individualized', 'individualized', tran, ['6A'] ). +verb( 'indoctrinate', 'indoctrinates', 'indoctrinating', 'indoctrinated', 'indoctrinated', tran, ['6A','14'] ). +verb( 'indorse', 'indorses', 'indorsing', 'indorsed', 'indorsed', tran, ['6A'] ). +verb( 'induce', 'induces', 'inducing', 'induced', 'induced', tran, ['6A','14','17'] ). +verb( 'induct', 'inducts', 'inducting', 'inducted', 'inducted', tran, ['6A','14','16B'] ). +verb( 'indue', 'indues', 'induing', 'indued', 'indued', tran, ['14'] ). +verb( 'indulge', 'indulges', 'indulging', 'indulged', 'indulged', _, ['3A','6A'] ). +verb( 'inebriate', 'inebriates', 'inebriating', 'inebriated', 'inebriated', tran, ['6A'] ). +verb( 'infatuate', 'infatuates', 'infatuating', 'infatuated', 'infatuated', tran, [] ). +verb( 'infect', 'infects', 'infecting', 'infected', 'infected', tran, ['6A','14'] ). +verb( 'infer', 'infers', 'inferring', 'inferred', 'inferred', tran, ['6A','9','14'] ). +verb( 'infest', 'infests', 'infesting', 'infested', 'infested', tran, ['6A'] ). +verb( 'infiltrate', 'infiltrates', 'infiltrating', 'infiltrated', 'infiltrated', _, ['2A','3A','6A','14'] ). +verb( 'inflame', 'inflames', 'inflaming', 'inflamed', 'inflamed', _, ['2A','6A'] ). +verb( 'inflate', 'inflates', 'inflating', 'inflated', 'inflated', tran, ['6A','14'] ). +verb( 'inflect', 'inflects', 'inflecting', 'inflected', 'inflected', tran, ['6A'] ). +verb( 'inflict', 'inflicts', 'inflicting', 'inflicted', 'inflicted', tran, ['6A','14'] ). +verb( 'influence', 'influences', 'influencing', 'influenced', 'influenced', tran, ['6A'] ). +verb( 'inform', 'informs', 'informing', 'informed', 'informed', _, ['3A','6A','11','14','21'] ). +verb( 'infringe', 'infringes', 'infringing', 'infringed', 'infringed', _, ['3A','6A'] ). +verb( 'infuriate', 'infuriates', 'infuriating', 'infuriated', 'infuriated', tran, ['6A'] ). +verb( 'infuse', 'infuses', 'infusing', 'infused', 'infused', _, ['2A','6A','14'] ). +verb( 'ingest', 'ingests', 'ingesting', 'ingested', 'ingested', tran, ['6A'] ). +verb( 'ingraft', 'ingrafts', 'ingrafting', 'ingrafted', 'ingrafted', tran, ['6A','14'] ). +verb( 'ingratiate', 'ingratiates', 'ingratiating', 'ingratiated', 'ingratiated', tran, ['14'] ). +verb( 'inhabit', 'inhabits', 'inhabiting', 'inhabited', 'inhabited', tran, ['6A'] ). +verb( 'inhale', 'inhales', 'inhaling', 'inhaled', 'inhaled', _, ['2A','6A'] ). +verb( 'inherit', 'inherits', 'inheriting', 'inherited', 'inherited', _, ['2A','6A'] ). +verb( 'inhibit', 'inhibits', 'inhibiting', 'inhibited', 'inhibited', tran, ['6A','14'] ). +verb( 'initial', 'initials', 'initialling', 'initialled', 'initialled', tran, ['6A'] ). +verb( 'initiate', 'initiates', 'initiating', 'initiated', 'initiated', tran, ['6A','14'] ). +verb( 'inject', 'injects', 'injecting', 'injected', 'injected', tran, ['6A','14'] ). +verb( 'injure', 'injures', 'injuring', 'injured', 'injured', tran, ['6A'] ). +verb( 'ink', 'inks', 'inking', 'inked', 'inked', tran, ['6A','15B'] ). +verb( 'inlay', 'inlays', 'inlaying', 'inlaid', 'inlaid', tran, ['6A','14'] ). +verb( 'innovate', 'innovates', 'innovating', 'innovated', 'innovated', intran, ['2A'] ). +verb( 'inoculate', 'inoculates', 'inoculating', 'inoculated', 'inoculated', tran, ['6A','14'] ). +verb( 'inquire', 'inquires', 'inquiring', 'inquired', 'inquired', _, ['2A','3A','6A','8','10','14'] ). +verb( 'inscribe', 'inscribes', 'inscribing', 'inscribed', 'inscribed', tran, ['6A','15A'] ). +verb( 'inseminate', 'inseminates', 'inseminating', 'inseminated', 'inseminated', tran, ['6A'] ). +verb( 'insert', 'inserts', 'inserting', 'inserted', 'inserted', tran, ['6A','15A'] ). +verb( 'inset', 'insets', 'insetting', 'inset', 'inset', tran, [] ). +verb( 'insinuate', 'insinuates', 'insinuating', 'insinuated', 'insinuated', tran, ['6A','9','14'] ). +verb( 'insist', 'insists', 'insisting', 'insisted', 'insisted', _, ['3A','3B'] ). +verb( 'inspan', 'inspans', 'inspanning', 'inspanned', 'inspanned', tran, [] ). +verb( 'inspect', 'inspects', 'inspecting', 'inspected', 'inspected', tran, ['6A'] ). +verb( 'inspire', 'inspires', 'inspiring', 'inspired', 'inspired', tran, ['6A','14','17'] ). +verb( 'install', 'installs', 'installing', 'installed', 'installed', tran, ['6A','14'] ). +verb( 'instance', 'instances', 'instancing', 'instanced', 'instanced', tran, ['6A'] ). +verb( 'instigate', 'instigates', 'instigating', 'instigated', 'instigated', tran, ['6A','17'] ). +verb( 'instil', 'instils', 'instilling', 'instilled', 'instilled', tran, ['6A','14'] ). +verb( 'institute', 'institutes', 'instituting', 'instituted', 'instituted', tran, ['6A','14'] ). +verb( 'institutionalize', 'institutionalizes', 'institutionalizing', 'institutionalized', 'institutionalized', tran, ['6A'] ). +verb( 'instruct', 'instructs', 'instructing', 'instructed', 'instructed', tran, ['6A','11','15A','17','20','21'] ). +verb( 'insulate', 'insulates', 'insulating', 'insulated', 'insulated', tran, ['6A','14'] ). +verb( 'insult', 'insults', 'insulting', 'insulted', 'insulted', tran, ['6A'] ). +verb( 'insure', 'insures', 'insuring', 'insured', 'insured', tran, ['6A','14'] ). +verb( 'integrate', 'integrates', 'integrating', 'integrated', 'integrated', tran, ['2A','6A'] ). +verb( 'intend', 'intends', 'intending', 'intended', 'intended', tran, ['6A','6D','7A','9','14','17'] ). +verb( 'intensify', 'intensifies', 'intensifying', 'intensified', 'intensified', _, ['2A','6A'] ). +verb( 'inter', 'inters', 'interring', 'interred', 'interred', tran, [] ). +verb( 'interact', 'interacts', 'interacting', 'interacted', 'interacted', intran, [] ). +verb( 'interbreed', 'interbreeds', 'interbreeding', 'interbred', 'interbred', _, ['2A','6A'] ). +verb( 'intercede', 'intercedes', 'interceding', 'interceded', 'interceded', intran, ['3A'] ). +verb( 'intercept', 'intercepts', 'intercepting', 'intercepted', 'intercepted', tran, ['6A'] ). +verb( 'interchange', 'interchanges', 'interchanging', 'interchanged', 'interchanged', tran, ['2A','6A'] ). +verb( 'intercommunicate', 'intercommunicates', 'intercommunicating', 'intercommunicated', 'intercommunicated', intran, [] ). +verb( 'interconnect', 'interconnects', 'interconnecting', 'interconnected', 'interconnected', _, ['6A'] ). +verb( 'interdict', 'interdicts', 'interdicting', 'interdicted', 'interdicted', tran, ['6A'] ). +verb( 'interest', 'interests', 'interesting', 'interested', 'interested', tran, ['6A','14'] ). +verb( 'interfere', 'interferes', 'interfering', 'interfered', 'interfered', intran, ['2A','3A'] ). +verb( 'interject', 'interjects', 'interjecting', 'interjected', 'interjected', tran, ['6A'] ). +verb( 'interlace', 'interlaces', 'interlacing', 'interlaced', 'interlaced', _, ['2A','6A','14'] ). +verb( 'interlard', 'interlards', 'interlarding', 'interlarded', 'interlarded', tran, ['14'] ). +verb( 'interleave', 'interleaves', 'interleaving', 'interleaved', 'interleaved', tran, ['6A','14'] ). +verb( 'interlink', 'interlinks', 'interlinking', 'interlinked', 'interlinked', _, ['2A','6A'] ). +verb( 'interlock', 'interlocks', 'interlocking', 'interlocked', 'interlocked', _, ['2A','6A'] ). +verb( 'intermarry', 'intermarries', 'intermarrying', 'intermarried', 'intermarried', intran, ['2A','3A'] ). +verb( 'intermingle', 'intermingles', 'intermingling', 'intermingled', 'intermingled', _, ['6A','14'] ). +verb( 'intermix', 'intermixes', 'intermixing', 'intermixed', 'intermixed', _, [] ). +verb( 'intern', 'interns', 'interning', 'interned', 'interned', tran, ['6A'] ). +verb( 'internalize', 'internalizes', 'internalizing', 'internalized', 'internalized', tran, ['6A'] ). +verb( 'internationalize', 'internationalizes', 'internationalizing', 'internationalized', 'internationalized', tran, ['6A'] ). +verb( 'interpellate', 'interpellates', 'interpellating', 'interpellated', 'interpellated', tran, ['6A'] ). +verb( 'interpolate', 'interpolates', 'interpolating', 'interpolated', 'interpolated', tran, ['6A'] ). +verb( 'interpose', 'interposes', 'interposing', 'interposed', 'interposed', _, ['2A','3A','6A','14'] ). +verb( 'interpret', 'interprets', 'interpreting', 'interpreted', 'interpreted', _, ['2A','6A','16B'] ). +verb( 'interrelate', 'interrelates', 'interrelating', 'interrelated', 'interrelated', _, ['2A','6A'] ). +verb( 'interrogate', 'interrogates', 'interrogating', 'interrogated', 'interrogated', tran, ['6A'] ). +verb( 'interrupt', 'interrupts', 'interrupting', 'interrupted', 'interrupted', _, ['2A','6A'] ). +verb( 'intersect', 'intersects', 'intersecting', 'intersected', 'intersected', _, ['2A','6A'] ). +verb( 'intersperse', 'intersperses', 'interspersing', 'interspersed', 'interspersed', tran, ['14'] ). +verb( 'intertwine', 'intertwines', 'intertwining', 'intertwined', 'intertwined', _, ['2A','6A'] ). +verb( 'intervene', 'intervenes', 'intervening', 'intervened', 'intervened', intran, ['2A','3A'] ). +verb( 'interview', 'interviews', 'interviewing', 'interviewed', 'interviewed', tran, ['6A'] ). +verb( 'interweave', 'interweaves', 'interweaving', 'interwove', 'interwoven', tran, ['6A','14'] ). +verb( 'intimate', 'intimates', 'intimating', 'intimated', 'intimated', tran, ['6A','9','14'] ). +verb( 'intimidate', 'intimidates', 'intimidating', 'intimidated', 'intimidated', tran, ['6A','14'] ). +verb( 'intone', 'intones', 'intoning', 'intoned', 'intoned', _, ['2A','6A'] ). +verb( 'intoxicate', 'intoxicates', 'intoxicating', 'intoxicated', 'intoxicated', tran, ['6A'] ). +verb( 'intrench', 'intrenches', 'intrenching', 'intrenched', 'intrenched', tran, ['6A'] ). +verb( 'intrigue', 'intrigues', 'intriguing', 'intrigued', 'intrigued', _, ['2A','3A','6A'] ). +verb( 'introduce', 'introduces', 'introducing', 'introduced', 'introduced', tran, ['6A','14','15A'] ). +verb( 'introspect', 'introspects', 'introspecting', 'introspected', 'introspected', intran, ['2A'] ). +verb( 'introvert', 'introverts', 'introverting', 'introverted', 'introverted', tran, ['6A'] ). +verb( 'intrude', 'intrudes', 'intruding', 'intruded', 'intruded', _, ['2A','3A','14'] ). +verb( 'intrust', 'intrusts', 'intrusting', 'intrusted', 'intrusted', tran, ['14'] ). +verb( 'intuit', 'intuits', 'intuiting', 'intuited', 'intuited', _, ['2A','6A'] ). +verb( 'inundate', 'inundates', 'inundating', 'inundated', 'inundated', tran, ['6A','14'] ). +verb( 'inure', 'inures', 'inuring', 'inured', 'inured', tran, ['14'] ). +verb( 'invade', 'invades', 'invading', 'invaded', 'invaded', tran, ['6A'] ). +verb( 'invalid', 'invalids', 'invaliding', 'invalided', 'invalided', tran, ['15A'] ). +verb( 'invalidate', 'invalidates', 'invalidating', 'invalidated', 'invalidated', tran, ['6A'] ). +verb( 'inveigh', 'inveighs', 'inveighing', 'inveighed', 'inveighed', intran, ['3A'] ). +verb( 'inveigle', 'inveigles', 'inveigling', 'inveigled', 'inveigled', tran, ['14'] ). +verb( 'invent', 'invents', 'inventing', 'invented', 'invented', tran, ['6A'] ). +verb( 'invert', 'inverts', 'inverting', 'inverted', 'inverted', tran, ['6A'] ). +verb( 'invest', 'invests', 'investing', 'invested', 'invested', _, ['3A','6A','14'] ). +verb( 'investigate', 'investigates', 'investigating', 'investigated', 'investigated', tran, ['6A'] ). +verb( 'invigilate', 'invigilates', 'invigilating', 'invigilated', 'invigilated', intran, ['2A','6A'] ). +verb( 'invigorate', 'invigorates', 'invigorating', 'invigorated', 'invigorated', tran, ['6A'] ). +verb( 'invite', 'invites', 'inviting', 'invited', 'invited', tran, ['6A','15A','15B','17'] ). +verb( 'invoice', 'invoices', 'invoicing', 'invoiced', 'invoiced', tran, [] ). +verb( 'invoke', 'invokes', 'invoking', 'invoked', 'invoked', tran, ['6A','14'] ). +verb( 'involve', 'involves', 'involving', 'involved', 'involved', tran, ['6A','6B','14','19C'] ). +verb( 'ionize', 'ionizes', 'ionizing', 'ionized', 'ionized', _, ['2A','6A'] ). +verb( 'irk', 'irks', 'irking', 'irked', 'irked', tran, [] ). +verb( 'iron', 'irons', 'ironing', 'ironed', 'ironed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'irradiate', 'irradiates', 'irradiating', 'irradiated', 'irradiated', tran, ['6A'] ). +verb( 'irrigate', 'irrigates', 'irrigating', 'irrigated', 'irrigated', tran, ['6A'] ). +verb( 'irritate', 'irritates', 'irritating', 'irritated', 'irritated', tran, ['6A'] ). +verb( 'isolate', 'isolates', 'isolating', 'isolated', 'isolated', tran, ['6A','14'] ). +verb( 'issue', 'issues', 'issuing', 'issued', 'issued', _, ['2A','3A','6A','14'] ). +verb( 'italicize', 'italicizes', 'italicizing', 'italicized', 'italicized', tran, [] ). +verb( 'itch', 'itches', 'itching', 'itched', 'itched', intran, ['2A','3A','4A'] ). +verb( 'itemize', 'itemizes', 'itemizing', 'itemized', 'itemized', tran, ['6A'] ). +verb( 'iterate', 'iterates', 'iterating', 'iterated', 'iterated', tran, ['6A'] ). +verb( 'jab', 'jabs', 'jabbing', 'jabbed', 'jabbed', _, ['3A','14','15B'] ). +verb( 'jabber', 'jabbers', 'jabbering', 'jabbered', 'jabbered', _, ['2A','2C','6A','15B'] ). +verb( 'jack', 'jacks', 'jacking', 'jacked', 'jacked', tran, ['15B'] ). +verb( 'jack-knife', 'jack-knifes', 'jack-knifing', 'jack-knifed', 'jack-knifed', intran, ['2A'] ). +verb( 'jag', 'jags', 'jagging', 'jagged', 'jagged', tran, ['6A'] ). +verb( 'jail', 'jails', 'jailing', 'jailed', 'jailed', tran, ['6A'] ). +verb( 'jam', 'jams', 'jamming', 'jammed', 'jammed', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'jampack', 'jampacks', 'jampacking', 'jampacked', 'jampacked', tran, ['6A'] ). +verb( 'jangle', 'jangles', 'jangling', 'jangled', 'jangled', _, ['2A','6A'] ). +verb( 'japan', 'japans', 'japanning', 'japanned', 'japanned', tran, [] ). +verb( 'jar', 'jars', 'jarring', 'jarred', 'jarred', _, ['2A','3A','6A'] ). +verb( 'jaundice', 'jaundices', 'jaundicing', 'jaundiced', 'jaundiced', tran, [] ). +verb( 'jaunt', 'jaunts', 'jaunting', 'jaunted', 'jaunted', intran, ['2A','2C'] ). +verb( 'jaw', 'jaws', 'jawing', 'jawed', 'jawed', intran, ['2A','2C','3A'] ). +verb( 'jaywalk', 'jaywalks', 'jaywalking', 'jaywalked', 'jaywalked', intran, [] ). +verb( 'jazz', 'jazzes', 'jazzing', 'jazzed', 'jazzed', tran, ['6A','15B'] ). +verb( 'jeer', 'jeers', 'jeering', 'jeered', 'jeered', _, ['2A','3A','6A'] ). +verb( 'jell', 'jells', 'jelling', 'jelled', 'jelled', _, ['2A','6A'] ). +verb( 'jelly', 'jellies', 'jellying', 'jellied', 'jellied', _, ['2A','6A'] ). +verb( 'jeopardize', 'jeopardizes', 'jeopardizing', 'jeopardized', 'jeopardized', tran, ['6A'] ). +verb( 'jerk', 'jerks', 'jerking', 'jerked', 'jerked', _, ['2C','6A','15A','15B'] ). +verb( 'jest', 'jests', 'jesting', 'jested', 'jested', intran, ['2A','3A'] ). +verb( 'jet', 'jets', 'jetting', 'jetted', 'jetted', _, [] ). +verb( 'jettison', 'jettisons', 'jettisoning', 'jettisoned', 'jettisoned', tran, ['6A'] ). +verb( 'jewel', 'jewels', 'jewelling', 'jewelled', 'jewelled', tran, [] ). +verb( 'jib', 'jibs', 'jibbing', 'jibbed', 'jibbed', intran, ['2A','3A'] ). +verb( 'jibe', 'jibes', 'jibing', 'jibed', 'jibed', intran, ['2A','3A'] ). +verb( 'jig', 'jigs', 'jigging', 'jigged', 'jigged', _, ['2A','2C','15B'] ). +verb( 'jiggle', 'jiggles', 'jiggling', 'jiggled', 'jiggled', _, [] ). +verb( 'jilt', 'jilts', 'jilting', 'jilted', 'jilted', tran, ['6A'] ). +verb( 'jingle', 'jingles', 'jingling', 'jingled', 'jingled', _, ['2A','2C','6A','15B'] ). +verb( 'jive', 'jives', 'jiving', 'jived', 'jived', intran, [] ). +verb( 'job', 'jobs', 'jobbing', 'jobbed', 'jobbed', _, ['2A','6A','14'] ). +verb( 'jockey', 'jockeys', 'jockeying', 'jockeyed', 'jockeyed', _, ['3A','15A'] ). +verb( 'jog', 'jogs', 'jogging', 'jogged', 'jogged', _, ['2A','2C','6A','15B'] ). +verb( 'joggle', 'joggles', 'joggling', 'joggled', 'joggled', _, ['2A','6A'] ). +verb( 'join', 'joins', 'joining', 'joined', 'joined', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'joint', 'joints', 'jointing', 'jointed', 'jointed', tran, ['6A'] ). +verb( 'joke', 'jokes', 'joking', 'joked', 'joked', intran, ['2A','2C'] ). +verb( 'jolly', 'jollies', 'jollying', 'jollied', 'jollied', tran, ['6A','15A','15B'] ). +verb( 'jolt', 'jolts', 'jolting', 'jolted', 'jolted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'jostle', 'jostles', 'jostling', 'jostled', 'jostled', _, ['2C','6A'] ). +verb( 'jot', 'jots', 'jotting', 'jotted', 'jotted', tran, ['15B'] ). +verb( 'journey', 'journeys', 'journeying', 'journeyed', 'journeyed', intran, ['2A','2C'] ). +verb( 'joust', 'jousts', 'jousting', 'jousted', 'jousted', intran, [] ). +verb( 'joy', 'joys', 'joying', 'joyed', 'joyed', intran, [] ). +verb( 'judder', 'judders', 'juddering', 'juddered', 'juddered', intran, [] ). +verb( 'judge', 'judges', 'judging', 'judged', 'judged', _, ['2A','3A','6A','9','10','22','25'] ). +verb( 'jug', 'jugs', 'jugging', 'jugged', 'jugged', tran, ['6A'] ). +verb( 'juggle', 'juggles', 'juggling', 'juggled', 'juggled', _, ['2A','3A','6A','16A'] ). +verb( 'jumble', 'jumbles', 'jumbling', 'jumbled', 'jumbled', _, ['2C','15B'] ). +verb( 'jump', 'jumps', 'jumping', 'jumped', 'jumped', _, ['2A','2C','6A'] ). +verb( 'junket', 'junkets', 'junketing', 'junketed', 'junketed', intran, [] ). +verb( 'justify', 'justifies', 'justifying', 'justified', 'justified', tran, ['6A','19C'] ). +verb( 'jut', 'juts', 'jutting', 'jutted', 'jutted', intran, ['2C'] ). +verb( 'juxtapose', 'juxtaposes', 'juxtaposing', 'juxtaposed', 'juxtaposed', tran, ['6A'] ). +verb( 'keel', 'keels', 'keeling', 'keeled', 'keeled', _, ['2C','6A','15B'] ). +verb( 'keen', 'keens', 'keening', 'keened', 'keened', _, [] ). +verb( 'keep', 'keeps', 'keeping', 'kept', 'kept', _, ['2A','2C','2E','3A','6A','14','15A','15B','19B','22'] ). +verb( 'ken', 'kens', 'kenning', 'kenned', 'kenned', tran, ['6A','9'] ). +verb( 'kennel', 'kennels', 'kennelling', 'kennelled', 'kennelled', _, [] ). +verb( 'key', 'keys', 'keying', 'keyed', 'keyed', tran, ['6A'] ). +verb( 'kick', 'kicks', 'kicking', 'kicked', 'kicked', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'kid', 'kids', 'kidding', 'kidded', 'kidded', _, [] ). +verb( 'kidnap', 'kidnaps', 'kidnapping', 'kidnapped', 'kidnapped', tran, [] ). +verb( 'kill', 'kills', 'killing', 'killed', 'killed', _, ['2A','6A','15B'] ). +verb( 'kindle', 'kindles', 'kindling', 'kindled', 'kindled', _, ['2A','6A'] ). +verb( 'kink', 'kinks', 'kinking', 'kinked', 'kinked', _, [] ). +verb( 'kip', 'kips', 'kipping', 'kipped', 'kipped', intran, ['2A','2C'] ). +verb( 'kiss', 'kisses', 'kissing', 'kissed', 'kissed', _, ['2A','6A','15A','15B'] ). +verb( 'kit', 'kits', 'kitting', 'kitted', 'kitted', tran, ['15B'] ). +verb( 'knap', 'knaps', 'knapping', 'knapped', 'knapped', tran, [] ). +verb( 'knead', 'kneads', 'kneading', 'kneaded', 'kneaded', tran, ['6A'] ). +verb( 'kneel', 'kneels', 'kneeling', 'kneeled', 'kneeled', intran, ['2A','2C'] ). +verb( 'knife', 'knifes', 'knifing', 'knifed', 'knifed', tran, ['6A'] ). +verb( 'knight', 'knights', 'knighting', 'knighted', 'knighted', tran, ['6A'] ). +verb( 'knit', 'knits', 'knitting', 'knitted', 'knitted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'knock', 'knocks', 'knocking', 'knocked', 'knocked', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'knot', 'knots', 'knotting', 'knotted', 'knotted', _, ['2A','6A','15B'] ). +verb( 'know', 'knows', 'knowing', 'knew', 'known', _, ['2A','3A','6A','8','9','10','17','18B','25'] ). +verb( 'knuckle', 'knuckles', 'knuckling', 'knuckled', 'knuckled', intran, [] ). +verb( 'kotow', 'kotows', 'kotowing', 'kotowed', 'kotowed', intran, [] ). +verb( 'kowtow', 'kowtows', 'kowtowing', 'kowtowed', 'kowtowed', intran, [] ). +verb( 'label', 'labels', 'labelling', 'labelled', 'labelled', tran, ['6A'] ). +verb( 'labour', 'labours', 'labouring', 'laboured', 'laboured', _, ['2A','2C','3A','4A','6A'] ). +verb( 'lace', 'laces', 'lacing', 'laced', 'laced', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'lacerate', 'lacerates', 'lacerating', 'lacerated', 'lacerated', tran, ['6A'] ). +verb( 'lack', 'lacks', 'lacking', 'lacked', 'lacked', _, ['3A','6B'] ). +verb( 'lacquer', 'lacquers', 'lacquering', 'lacquered', 'lacquered', tran, ['6A'] ). +verb( 'ladder', 'ladders', 'laddering', 'laddered', 'laddered', intran, [] ). +verb( 'lade', 'lades', 'lading', 'laded', 'laden', tran, ['6A'] ). +verb( 'ladle', 'ladles', 'ladling', 'ladled', 'ladled', tran, ['6A','15B'] ). +verb( 'lag', 'lags', 'lagging', 'lagged', 'lagged', _, ['2A','2C','6A','14'] ). +verb( 'laicize', 'laicizes', 'laicizing', 'laicized', 'laicized', tran, ['6A'] ). +verb( 'lam', 'lams', 'lamming', 'lammed', 'lammed', _, ['3A','6A'] ). +verb( 'lamb', 'lambs', 'lambing', 'lambed', 'lambed', intran, [] ). +verb( 'lambaste', 'lambastes', 'lambasting', 'lambasted', 'lambasted', tran, [] ). +verb( 'lame', 'lames', 'laming', 'lamed', 'lamed', tran, [] ). +verb( 'lament', 'laments', 'lamenting', 'lamented', 'lamented', _, ['2A','3A','6A'] ). +verb( 'laminate', 'laminates', 'laminating', 'laminated', 'laminated', _, ['2A','6A'] ). +verb( 'lampoon', 'lampoons', 'lampooning', 'lampooned', 'lampooned', tran, ['6A'] ). +verb( 'lance', 'lances', 'lancing', 'lanced', 'lanced', tran, ['6A'] ). +verb( 'land', 'lands', 'landing', 'landed', 'landed', _, ['2A','2C','6A','12C'] ). +verb( 'landscape', 'landscapes', 'landscaping', 'landscaped', 'landscaped', tran, ['6A'] ). +verb( 'languish', 'languishes', 'languishing', 'languished', 'languished', intran, ['2A','2C'] ). +verb( 'lap', 'laps', 'lapping', 'lapped', 'lapped', _, ['2A','2C','6A','15B'] ). +verb( 'lapse', 'lapses', 'lapsing', 'lapsed', 'lapsed', intran, ['2A','3A'] ). +verb( 'lard', 'lards', 'larding', 'larded', 'larded', tran, ['6A'] ). +verb( 'lark', 'larks', 'larking', 'larked', 'larked', intran, ['2A','2C'] ). +verb( 'larn', 'larns', 'larning', 'larned', 'larned', _, [] ). +verb( 'lash', 'lashes', 'lashing', 'lashed', 'lashed', _, ['2C','6A','14','15A','15B'] ). +verb( 'lasso', 'lassos', 'lassoing', 'lassoed', 'lassoed', tran, [] ). +verb( 'last', 'lasts', 'lasting', 'lasted', 'lasted', intran, ['2A','2B','2C'] ). +verb( 'latch', 'latches', 'latching', 'latched', 'latched', _, ['2A','2C','3A','6A'] ). +verb( 'lather', 'lathers', 'lathering', 'lathered', 'lathered', _, ['2A','6A'] ). +verb( 'laud', 'lauds', 'lauding', 'lauded', 'lauded', tran, ['6A'] ). +verb( 'laugh', 'laughs', 'laughing', 'laughed', 'laughed', _, ['2A','2B','2C','3A','6B','15A','15B','22'] ). +verb( 'launch', 'launches', 'launching', 'launched', 'launched', _, ['2C','3A','6A','15A'] ). +verb( 'launder', 'launders', 'laundering', 'laundered', 'laundered', _, ['2A','6A'] ). +verb( 'lave', 'laves', 'laving', 'laved', 'laved', tran, [] ). +verb( 'lavish', 'lavishes', 'lavishing', 'lavished', 'lavished', tran, ['14'] ). +verb( 'lay', 'lays', 'laying', 'laid', 'laid', _, ['2A','2B','2C','2D','3A','6A','12C','14','15A','15B','22'] ). +verb( 'layer', 'layers', 'layering', 'layered', 'layered', tran, ['6A'] ). +verb( 'laze', 'lazes', 'lazing', 'lazed', 'lazed', _, ['2A','2C','15B'] ). +verb( 'leach', 'leaches', 'leaching', 'leached', 'leached', tran, ['6A','15B'] ). +verb( 'lead', 'leads', 'leading', 'leant', 'leant', _, ['2A','2C','3A','6A','12C','14','15A','15B','17'] ). +verb( 'leaf', 'leafs', 'leafing', 'leafed', 'leafed', intran, [] ). +verb( 'league', 'leagues', 'leaguing', 'leagued', 'leagued', _, ['2C','6A','15A','15B'] ). +verb( 'leak', 'leaks', 'leaking', 'leaked', 'leaked', _, ['2A','2C','6A','14'] ). +verb( 'lean', 'leans', 'leaning', 'leaned', 'leaned', _, ['2A','2C','3A','15A'] ). +verb( 'leap', 'leaps', 'leaping', 'leaped', 'leaped', _, ['2A','2C','3A','6A','15A'] ). +verb( 'leapfrog', 'leapfrogs', 'leapfrogging', 'leapfrogged', 'leapfrogged', tran, [] ). +verb( 'learn', 'learns', 'learning', 'learned', 'learned', _, ['2A','3A','6A','7A','8','9','10','15A','15B'] ). +verb( 'lease', 'leases', 'leasing', 'leased', 'leased', tran, ['6A'] ). +verb( 'leave', 'leaves', 'leavening', 'leavened', 'leavened', _, ['2A','2C','3A','6A','12B','13B','14','15A','15B','16A','19B','22','24B','25'] ). +verb( 'leaven', 'leavens', 'leavening', 'leavened', 'leavened', tran, ['6A'] ). +verb( 'lecture', 'lectures', 'lecturing', 'lectured', 'lectured', _, ['2A','3A','6A','14'] ). +verb( 'leer', 'leers', 'leering', 'leered', 'leered', intran, ['2A','3A'] ). +verb( 'legalize', 'legalizes', 'legalizing', 'legalized', 'legalized', tran, ['6A'] ). +verb( 'legislate', 'legislates', 'legislating', 'legislated', 'legislated', intran, ['2A','3A'] ). +verb( 'legitimatize', 'legitimatizes', 'legitimatizing', 'legitimatized', 'legitimatized', tran, [] ). +verb( 'lend', 'lends', 'lending', 'lent', 'lent', tran, ['6A','12A','13A','14'] ). +verb( 'lengthen', 'lengthens', 'lengthening', 'lengthened', 'lengthened', _, ['2A','6A'] ). +verb( 'lessen', 'lessens', 'lessening', 'lessened', 'lessened', _, ['2A','6A'] ). +verb( 'let', 'lets', 'letting', 'let', 'let', _, ['2C','6A','14','15A','15B','18B','22','24A'] ). +verb( 'levant', 'levants', 'levanting', 'levanted', 'levanted', intran, [] ). +verb( 'level', 'levels', 'levelling', 'levelled', 'levelled', _, ['2C','3A','6A','14','15A','15B'] ). +verb( 'lever', 'levers', 'levering', 'levered', 'levered', tran, ['6A','15B'] ). +verb( 'levitate', 'levitates', 'levitating', 'levitated', 'levitated', _, ['2A','6A'] ). +verb( 'levy', 'levies', 'levying', 'levied', 'levied', _, ['3A','6A','14'] ). +verb( 'liaise', 'liaises', 'liaising', 'liaised', 'liaised', intran, ['2A','3A'] ). +verb( 'libel', 'libels', 'libelling', 'libelled', 'libelled', tran, ['6A'] ). +verb( 'liberalize', 'liberalizes', 'liberalizing', 'liberalized', 'liberalized', tran, [] ). +verb( 'liberate', 'liberates', 'liberating', 'liberated', 'liberated', tran, ['6A','14'] ). +verb( 'licence', 'licences', 'licencing', 'licenced', 'licenced', tran, ['6A','17'] ). +verb( 'license', 'licenses', 'licensing', 'licensed', 'licensed', tran, ['6A','17'] ). +verb( 'lick', 'licks', 'licking', 'licked', 'licked', _, ['2A','6A','15A','15B','22'] ). +verb( 'lie', 'lies', 'lying', 'lay', 'lain', intran, ['2A','2C','2D','3A'] ). +verb( 'lie', 'lies', 'lying', 'lied', 'lied', intran, ['2A','2C','2D','3A'] ). +verb( 'lift', 'lifts', 'lifting', 'lifted', 'lifted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'light', 'lights', 'lighting', 'lighted', 'lighted', _, ['2C','3A','6A','15A','15B'] ). +verb( 'lighten', 'lightens', 'lightening', 'lightened', 'lightened', _, ['2A','6A'] ). +verb( 'lighter', 'lighters', 'lightering', 'lightered', 'lightered', tran, [] ). +verb( 'like', 'likes', 'liking', 'liked', 'liked', tran, ['6A','6D','7A','17','19B','19C','22'] ). +verb( 'liken', 'likens', 'likening', 'likened', 'likened', tran, ['14'] ). +verb( 'lilt', 'lilts', 'lilting', 'lilted', 'lilted', _, [] ). +verb( 'limber', 'limbers', 'limbering', 'limbered', 'limbered', _, ['2C','15B'] ). +verb( 'lime', 'limes', 'liming', 'limed', 'limed', tran, ['6A'] ). +verb( 'limit', 'limits', 'limiting', 'limited', 'limited', tran, ['6A','14'] ). +verb( 'limn', 'limns', 'limning', 'limned', 'limned', tran, [] ). +verb( 'limp', 'limps', 'limping', 'limped', 'limped', intran, ['2A','2C'] ). +verb( 'line', 'lines', 'lining', 'lined', 'lined', _, ['2C','6A','14','15B'] ). +verb( 'linger', 'lingers', 'lingering', 'lingered', 'lingered', intran, ['2A','2C'] ). +verb( 'link', 'links', 'linking', 'linked', 'linked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'lionize', 'lionizes', 'lionizing', 'lionized', 'lionized', tran, ['6A'] ). +verb( 'lip-read', 'lip-reads', 'lip-reading', 'lip-read', 'lip-read', tran, [] ). +verb( 'liquefy', 'liquefies', 'liquefying', 'liquefied', 'liquefied', _, ['2A','6A'] ). +verb( 'liquidate', 'liquidates', 'liquidating', 'liquidated', 'liquidated', _, ['2A','6A'] ). +verb( 'liquidize', 'liquidizes', 'liquidizing', 'liquidized', 'liquidized', tran, ['6A'] ). +verb( 'lisp', 'lisps', 'lisping', 'lisped', 'lisped', _, ['2A','6A','15B'] ). +verb( 'list', 'lists', 'listing', 'listed', 'listed', _, ['2A','2C','6A'] ). +verb( 'listen', 'listens', 'listening', 'listened', 'listened', intran, ['2A','2C','3A'] ). +verb( 'lithograph', 'lithographs', 'lithographing', 'lithographed', 'lithographed', _, [] ). +verb( 'litigate', 'litigates', 'litigating', 'litigated', 'litigated', _, ['2A','6A'] ). +verb( 'litter', 'litters', 'littering', 'littered', 'littered', _, ['2A','6A','14','15A','15B'] ). +verb( 'live', 'lives', 'living', 'lived', 'lived', _, ['2A','2B','2C','2D','3A','4A','6B','15B'] ). +verb( 'liven', 'livens', 'livening', 'livened', 'livened', _, ['2C','15B'] ). +verb( 'load', 'loads', 'loading', 'loaded', 'loaded', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'loaf', 'loafs', 'loafing', 'loafed', 'loafed', _, ['2A','2C','15A','15B'] ). +verb( 'loan', 'loans', 'loaning', 'loaned', 'loaned', tran, ['6A','14'] ). +verb( 'loathe', 'loathes', 'loathing', 'loathed', 'loathed', tran, ['6A','6C'] ). +verb( 'lob', 'lobs', 'lobbing', 'lobbed', 'lobbed', _, ['2C','6A','15A'] ). +verb( 'lobby', 'lobbies', 'lobbying', 'lobbied', 'lobbied', _, ['2A','2C','6A','15A'] ). +verb( 'localize', 'localizes', 'localizing', 'localized', 'localized', tran, ['6A'] ). +verb( 'locate', 'locates', 'locating', 'located', 'located', tran, ['6A','15A'] ). +verb( 'lock', 'locks', 'locking', 'locked', 'locked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'lodge', 'lodges', 'lodging', 'lodged', 'lodged', _, ['3A','6A','14','15A'] ). +verb( 'loft', 'lofts', 'lofting', 'lofted', 'lofted', tran, ['6A'] ). +verb( 'log', 'logs', 'logging', 'logged', 'logged', tran, ['6A'] ). +verb( 'loiter', 'loiters', 'loitering', 'loitered', 'loitered', _, ['2A','2C','15B'] ). +verb( 'loll', 'lolls', 'lolling', 'lolled', 'lolled', _, ['2A','2C','15B'] ). +verb( 'long', 'longs', 'longing', 'longed', 'longed', intran, ['3A','4C'] ). +verb( 'look', 'looks', 'looking', 'looked', 'looked', _, ['2A','2C','2D','3A','4A','4D','6A','8','15B'] ). +verb( 'loom', 'looms', 'looming', 'loomed', 'loomed', intran, ['2C','2D'] ). +verb( 'loop', 'loops', 'looping', 'looped', 'looped', _, ['2A','6A','15B'] ). +verb( 'loose', 'looses', 'loosing', 'loosed', 'loosed', tran, ['6A'] ). +verb( 'loosen', 'loosens', 'loosening', 'loosened', 'loosened', _, ['2A','6A','15B'] ). +verb( 'loot', 'loots', 'looting', 'looted', 'looted', _, ['2A','6A'] ). +verb( 'lop', 'lops', 'lopping', 'lopped', 'lopped', _, ['6A','15B'] ). +verb( 'lope', 'lopes', 'loping', 'loped', 'loped', intran, ['2A','2C'] ). +verb( 'lord', 'lords', 'lording', 'lorded', 'lorded', tran, [] ). +verb( 'lose', 'loses', 'losing', 'lost', 'lost', _, ['2A','2B','3A','6A','12C','15A'] ). +verb( 'lounge', 'lounges', 'lounging', 'lounged', 'lounged', intran, ['2A','2C'] ). +verb( 'lour', 'lours', 'louring', 'loured', 'loured', intran, ['2A','3A'] ). +verb( 'love', 'loves', 'loving', 'loved', 'loved', tran, ['6A','6D','7A','17'] ). +verb( 'low', 'lows', 'lowing', 'lowed', 'lowed', intran, [] ). +verb( 'lower', 'lowers', 'lowering', 'lowered', 'lowered', _, ['2A','6A','15A'] ). +verb( 'lower', 'lowers', 'lowering', 'lowered', 'lowered', intran, ['2A','3A'] ). +verb( 'lubricate', 'lubricates', 'lubricating', 'lubricated', 'lubricated', tran, ['6A'] ). +verb( 'luff', 'luffs', 'luffing', 'luffed', 'luffed', _, [] ). +verb( 'lug', 'lugs', 'lugging', 'lugged', 'lugged', tran, ['6A','15A','15B'] ). +verb( 'lull', 'lulls', 'lulling', 'lulled', 'lulled', _, ['2A','6A','15A'] ). +verb( 'lumber', 'lumbers', 'lumbering', 'lumbered', 'lumbered', _, ['2C','6A','14','15A','15B'] ). +verb( 'lump', 'lumps', 'lumping', 'lumped', 'lumped', tran, ['2A','6A','15B'] ). +verb( 'lunch', 'lunches', 'lunching', 'lunched', 'lunched', _, [] ). +verb( 'lunge', 'lunges', 'lunging', 'lunged', 'lunged', intran, ['2A','2C'] ). +verb( 'lurch', 'lurches', 'lurching', 'lurched', 'lurched', intran, ['2C'] ). +verb( 'lure', 'lures', 'luring', 'lured', 'lured', tran, ['6A','15B'] ). +verb( 'lurk', 'lurks', 'lurking', 'lurked', 'lurked', intran, ['2C'] ). +verb( 'lust', 'lusts', 'lusting', 'lusted', 'lusted', intran, ['3A'] ). +verb( 'luxuriate', 'luxuriates', 'luxuriating', 'luxuriated', 'luxuriated', intran, ['3A'] ). +verb( 'lynch', 'lynches', 'lynching', 'lynched', 'lynched', tran, ['6A'] ). +verb( 'macadamize', 'macadamizes', 'macadamizing', 'macadamized', 'macadamized', tran, [] ). +verb( 'macerate', 'macerates', 'macerating', 'macerated', 'macerated', _, ['2A','6A'] ). +verb( 'machine', 'machines', 'machining', 'machined', 'machined', tran, ['6A'] ). +verb( 'madden', 'maddens', 'maddening', 'maddened', 'maddened', tran, ['6A'] ). +verb( 'maffick', 'mafficks', 'mafficking', 'mafficked', 'mafficked', intran, [] ). +verb( 'magnetize', 'magnetizes', 'magnetizing', 'magnetized', 'magnetized', tran, ['6A'] ). +verb( 'magnify', 'magnifies', 'magnifying', 'magnified', 'magnified', tran, ['6A'] ). +verb( 'mail', 'mails', 'mailing', 'mailed', 'mailed', tran, ['6A'] ). +verb( 'maim', 'maims', 'maiming', 'maimed', 'maimed', tran, ['6A'] ). +verb( 'maintain', 'maintains', 'maintaining', 'maintained', 'maintained', tran, ['6A','9','25'] ). +verb( 'major', 'majors', 'majoring', 'majored', 'majored', intran, ['3A'] ). +verb( 'make', 'makes', 'making', 'made', 'made', _, ['2A','2C','2D','3A','6A','12A','12B','13A','13B','14','15B','16A','18B','22','23','24A','25'] ). +verb( 'malfunction', 'malfunctions', 'malfunctioning', 'malfunctioned', 'malfunctioned', intran, ['2A'] ). +verb( 'malign', 'maligns', 'maligning', 'maligned', 'maligned', tran, ['6A'] ). +verb( 'malinger', 'malingers', 'malingering', 'malingered', 'malingered', intran, ['2A'] ). +verb( 'malt', 'malts', 'malting', 'malted', 'malted', _, ['2A','6A'] ). +verb( 'maltreat', 'maltreats', 'maltreating', 'maltreated', 'maltreated', tran, ['6A'] ). +verb( 'man', 'mans', 'manning', 'manned', 'manned', tran, ['6A'] ). +verb( 'manacle', 'manacles', 'manacling', 'manacled', 'manacled', tran, ['6A'] ). +verb( 'manage', 'manages', 'managing', 'managed', 'managed', _, ['2A','2C','3A','4A','6A'] ). +verb( 'mandate', 'mandates', 'mandating', 'mandated', 'mandated', tran, ['6A'] ). +verb( 'mangle', 'mangles', 'mangling', 'mangled', 'mangled', tran, ['6A'] ). +verb( 'manhandle', 'manhandles', 'manhandling', 'manhandled', 'manhandled', tran, [] ). +verb( 'manicure', 'manicures', 'manicuring', 'manicured', 'manicured', tran, ['6A'] ). +verb( 'manifest', 'manifests', 'manifesting', 'manifested', 'manifested', tran, ['6A'] ). +verb( 'manifold', 'manifolds', 'manifolding', 'manifolded', 'manifolded', tran, ['6A'] ). +verb( 'manipulate', 'manipulates', 'manipulating', 'manipulated', 'manipulated', tran, ['6A'] ). +verb( 'manoeuvre', 'manoeuvres', 'manoeuvring', 'manoeuvred', 'manoeuvred', _, ['2A','2C','6A','15A'] ). +verb( 'mantle', 'mantles', 'mantling', 'mantled', 'mantled', _, ['2C','6A'] ). +verb( 'manufacture', 'manufactures', 'manufacturing', 'manufactured', 'manufactured', tran, ['6A'] ). +verb( 'manumit', 'manumits', 'manumitting', 'manumitted', 'manumitted', tran, [] ). +verb( 'manure', 'manures', 'manuring', 'manured', 'manured', tran, ['6A'] ). +verb( 'map', 'maps', 'mapping', 'mapped', 'mapped', tran, ['6A','15B'] ). +verb( 'mar', 'mars', 'marring', 'marred', 'marred', tran, ['6A'] ). +verb( 'maraud', 'marauds', 'marauding', 'marauded', 'marauded', intran, ['2A'] ). +verb( 'march', 'marches', 'marching', 'marched', 'marched', _, ['2A','2B','2C','3A','15A','15B'] ). +verb( 'marinade', 'marinades', 'marinading', 'marinaded', 'marinaded', tran, [] ). +verb( 'marinate', 'marinates', 'marinating', 'marinated', 'marinated', tran, [] ). +verb( 'mark', 'marks', 'marking', 'marked', 'marked', tran, ['2A','6A','8','10','15A','15B','22'] ). +verb( 'market', 'markets', 'marketing', 'marketed', 'marketed', _, ['2A','6A'] ). +verb( 'maroon', 'maroons', 'marooning', 'marooned', 'marooned', tran, ['6A'] ). +verb( 'marry', 'marries', 'marrying', 'married', 'married', _, ['2A','2D','4A','6A','15B'] ). +verb( 'marshal', 'marshals', 'marshalling', 'marshalled', 'marshalled', tran, ['6A','15A','15B'] ). +verb( 'martyr', 'martyrs', 'martyring', 'martyred', 'martyred', tran, ['6A'] ). +verb( 'marvel', 'marvels', 'marvelling', 'marvelled', 'marvelled', intran, ['3A','3B'] ). +verb( 'mash', 'mashes', 'mashing', 'mashed', 'mashed', tran, ['6A'] ). +verb( 'mask', 'masks', 'masking', 'masked', 'masked', tran, ['6A'] ). +verb( 'masquerade', 'masquerades', 'masquerading', 'masqueraded', 'masqueraded', intran, ['2A','2C'] ). +verb( 'mass', 'masses', 'massing', 'massed', 'massed', _, ['2A','6A'] ). +verb( 'mass-produce', 'mass-produces', 'mass-producing', 'mass-produced', 'mass-produced', tran, [] ). +verb( 'massacre', 'massacres', 'massacring', 'massacred', 'massacred', tran, ['6A'] ). +verb( 'massage', 'massages', 'massaging', 'massaged', 'massaged', tran, ['6A'] ). +verb( 'master', 'masters', 'mastering', 'mastered', 'mastered', tran, ['6A'] ). +verb( 'mastermind', 'masterminds', 'masterminding', 'masterminded', 'masterminded', tran, [] ). +verb( 'masticate', 'masticates', 'masticating', 'masticated', 'masticated', tran, ['6A'] ). +verb( 'masturbate', 'masturbates', 'masturbating', 'masturbated', 'masturbated', _, ['2A','6A'] ). +verb( 'mat', 'mats', 'matting', 'matted', 'matted', _, ['2A','2C','6A','15A'] ). +verb( 'match', 'matches', 'matching', 'matched', 'matched', _, ['2A','6A','12B','13B','14'] ). +verb( 'mate', 'mates', 'mating', 'mated', 'mated', _, ['2A','3A','6A','14'] ). +verb( 'materialize', 'materializes', 'materializing', 'materialized', 'materialized', intran, ['2A','6A'] ). +verb( 'matriculate', 'matriculates', 'matriculating', 'matriculated', 'matriculated', _, ['2A','2C','6A'] ). +verb( 'matter', 'matters', 'mattering', 'mattered', 'mattered', intran, ['2A','2C'] ). +verb( 'maturate', 'maturates', 'maturating', 'maturated', 'maturated', intran, ['2A'] ). +verb( 'mature', 'matures', 'maturing', 'matured', 'matured', _, ['2A','6A'] ). +verb( 'maul', 'mauls', 'mauling', 'mauled', 'mauled', tran, ['6A','15B'] ). +verb( 'maunder', 'maunders', 'maundering', 'maundered', 'maundered', intran, ['2A','2C'] ). +verb( 'maximize', 'maximizes', 'maximizing', 'maximized', 'maximized', tran, ['6A'] ). +verb( 'may', 'may', '-', '-', '-', unknown, ['5'] ). +verb( 'mean', 'means', 'meaning', 'meant', 'meant', tran, ['6A','6A','6C','7A','9','12A','13A','14','16B','17'] ). +verb( 'meander', 'meanders', 'meandering', 'meandered', 'meandered', intran, ['2A','2C'] ). +verb( 'measure', 'measures', 'measuring', 'measured', 'measured', _, ['2A','2B','6A','15A','15B'] ). +verb( 'mechanize', 'mechanizes', 'mechanizing', 'mechanized', 'mechanized', tran, ['6A'] ). +verb( 'meddle', 'meddles', 'meddling', 'meddled', 'meddled', intran, ['2A','3A'] ). +verb( 'mediate', 'mediates', 'mediating', 'mediated', 'mediated', _, ['2A','3A','6A'] ). +verb( 'medicate', 'medicates', 'medicating', 'medicated', 'medicated', tran, ['6A'] ). +verb( 'meditate', 'meditates', 'meditating', 'meditated', 'meditated', _, ['2A','3A','6A'] ). +verb( 'meet', 'meets', 'meeting', 'met', 'met', _, ['2A','2C','6A'] ). +verb( 'meliorate', 'meliorates', 'meliorating', 'meliorated', 'meliorated', _, ['2A','6A'] ). +verb( 'mellow', 'mellows', 'mellowing', 'mellowed', 'mellowed', _, ['2A','6A'] ). +verb( 'melt', 'melts', 'melting', 'melted', 'melted', _, ['2A','2C','6A','15B'] ). +verb( 'memorialize', 'memorializes', 'memorializing', 'memorialized', 'memorialized', tran, ['6A'] ). +verb( 'memorize', 'memorizes', 'memorizing', 'memorized', 'memorized', tran, ['6A'] ). +verb( 'menace', 'menaces', 'menacing', 'menaced', 'menaced', tran, ['6A'] ). +verb( 'mend', 'mends', 'mending', 'mended', 'mended', _, ['2A','6A'] ). +verb( 'menstruate', 'menstruates', 'menstruating', 'menstruated', 'menstruated', intran, ['2A'] ). +verb( 'mention', 'mentions', 'mentioning', 'mentioned', 'mentioned', tran, ['6A','6C','9','13A'] ). +verb( 'mercerize', 'mercerizes', 'mercerizing', 'mercerized', 'mercerized', tran, ['6A'] ). +verb( 'merge', 'merges', 'merging', 'merged', 'merged', _, ['2A','3A','6A','14'] ). +verb( 'merit', 'merits', 'meriting', 'merited', 'merited', tran, ['6A'] ). +verb( 'mesh', 'meshes', 'meshing', 'meshed', 'meshed', _, ['2A','3A','6A'] ). +verb( 'mesmerize', 'mesmerizes', 'mesmerizing', 'mesmerized', 'mesmerized', tran, ['6A'] ). +verb( 'mess', 'messes', 'messing', 'messed', 'messed', _, ['2C','6A','15B'] ). +verb( 'metal', 'metals', 'metalling', 'metalled', 'metalled', tran, ['6A'] ). +verb( 'metamorphose', 'metamorphoses', 'metamorphosing', 'metamorphosed', 'metamorphosed', _, ['3A','6A','14'] ). +verb( 'mete', 'metes', 'meting', 'meted', 'meted', tran, ['15B'] ). +verb( 'metricize', 'metricizes', 'metricizing', 'metricized', 'metricized', tran, [] ). +verb( 'mew', 'mews', 'mewing', 'mewed', 'mewed', intran, ['2A'] ). +verb( 'miaou', 'miaous', 'miaouing', 'miaoued', 'miaoued', intran, [] ). +verb( 'miaow', 'miaows', 'miaowing', 'miaowed', 'miaowed', intran, ['2A'] ). +verb( 'microfilm', 'microfilms', 'microfilming', 'microfilmed', 'microfilmed', tran, ['6A'] ). +verb( 'migrate', 'migrates', 'migrating', 'migrated', 'migrated', intran, ['2A','3A'] ). +verb( 'mildew', 'mildews', 'mildewing', 'mildewed', 'mildewed', _, ['2A','6A'] ). +verb( 'militate', 'militates', 'militating', 'militated', 'militated', intran, ['3A'] ). +verb( 'milk', 'milks', 'milking', 'milked', 'milked', _, ['2A','6A'] ). +verb( 'mill', 'mills', 'milling', 'milled', 'milled', _, ['2C','6A'] ). +verb( 'mime', 'mimes', 'miming', 'mimed', 'mimed', _, ['2A','6A'] ). +verb( 'mimeograph', 'mimeographs', 'mimeographing', 'mimeographed', 'mimeographed', tran, ['6A'] ). +verb( 'mimic', 'mimics', 'mimicking', 'mimicked', 'mimicked', tran, ['6A'] ). +verb( 'mince', 'minces', 'mincing', 'minced', 'minced', _, ['2A','6A'] ). +verb( 'mind', 'minds', 'minding', 'minded', 'minded', _, ['2A','6A','6C','9','19C'] ). +verb( 'mine', 'mines', 'mining', 'mined', 'mined', _, ['2A','3A','6A'] ). +verb( 'mingle', 'mingles', 'mingling', 'mingled', 'mingled', _, ['2A','2C','6A','14'] ). +verb( 'miniaturize', 'miniaturizes', 'miniaturizing', 'miniaturized', 'miniaturized', tran, ['6A'] ). +verb( 'minimize', 'minimizes', 'minimizing', 'minimized', 'minimized', tran, ['6A'] ). +verb( 'minister', 'ministers', 'ministering', 'ministered', 'ministered', intran, ['3A'] ). +verb( 'mint', 'mints', 'minting', 'minted', 'minted', tran, ['6A'] ). +verb( 'minute', 'minutes', 'minuting', 'minuted', 'minuted', tran, ['6A'] ). +verb( 'mire', 'mires', 'miring', 'mired', 'mired', _, ['2A','6A'] ). +verb( 'mirror', 'mirrors', 'mirroring', 'mirrored', 'mirrored', tran, ['6A'] ). +verb( 'misadvise', 'misadvises', 'misadvising', 'misadvised', 'misadvised', tran, ['6A'] ). +verb( 'misapply', 'misapplies', 'misapplying', 'misapplied', 'misapplied', tran, ['6A'] ). +verb( 'misapprehend', 'misapprehends', 'misapprehending', 'misapprehended', 'misapprehended', tran, ['6A'] ). +verb( 'misappropriate', 'misappropriates', 'misappropriating', 'misappropriated', 'misappropriated', tran, ['6A'] ). +verb( 'misbehave', 'misbehaves', 'misbehaving', 'misbehaved', 'misbehaved', _, ['2A','6B'] ). +verb( 'miscalculate', 'miscalculates', 'miscalculating', 'miscalculated', 'miscalculated', _, [] ). +verb( 'miscall', 'miscalls', 'miscalling', 'miscalled', 'miscalled', tran, [] ). +verb( 'miscarry', 'miscarries', 'miscarrying', 'miscarried', 'miscarried', tran, ['2A'] ). +verb( 'miscast', 'miscasts', 'miscasting', 'miscast', 'miscast', tran, ['6A'] ). +verb( 'misconceive', 'misconceives', 'misconceiving', 'misconceived', 'misconceived', _, ['3A','6A'] ). +verb( 'misconduct', 'misconducts', 'misconducting', 'misconducted', 'misconducted', tran, ['6A','6B','14'] ). +verb( 'misconstrue', 'misconstrues', 'misconstruing', 'misconstrued', 'misconstrued', tran, ['6A'] ). +verb( 'miscount', 'miscounts', 'miscounting', 'miscounted', 'miscounted', _, ['2A','6A'] ). +verb( 'misdate', 'misdates', 'misdating', 'misdated', 'misdated', tran, ['6A'] ). +verb( 'misdeal', 'misdeals', 'misdealing', 'misdealt', 'misdealt', _, ['2A','6A'] ). +verb( 'misdirect', 'misdirects', 'misdirecting', 'misdirected', 'misdirected', tran, ['6A'] ). +verb( 'misfire', 'misfires', 'misfiring', 'misfired', 'misfired', intran, ['2A'] ). +verb( 'misgive', 'misgives', 'misgiving', 'misgave', 'misgiven', tran, [] ). +verb( 'misgovern', 'misgoverns', 'misgoverning', 'misgoverned', 'misgoverned', tran, ['6A'] ). +verb( 'misguide', 'misguides', 'misguiding', 'misguided', 'misguided', tran, ['6A','14'] ). +verb( 'mishandle', 'mishandles', 'mishandling', 'mishandled', 'mishandled', tran, [] ). +verb( 'misinform', 'misinforms', 'misinforming', 'misinformed', 'misinformed', tran, ['6A'] ). +verb( 'misinterpret', 'misinterprets', 'misinterpreting', 'misinterpreted', 'misinterpreted', tran, ['6A'] ). +verb( 'misjudge', 'misjudges', 'misjudging', 'misjudged', 'misjudged', _, ['2A','6A'] ). +verb( 'mislay', 'mislays', 'mislaying', 'mislaid', 'mislaid', tran, ['6A'] ). +verb( 'mislead', 'misleads', 'misleading', 'misled', 'misled', tran, ['6A'] ). +verb( 'mismanage', 'mismanages', 'mismanaging', 'mismanaged', 'mismanaged', tran, ['6A'] ). +verb( 'misname', 'misnames', 'misnaming', 'misnamed', 'misnamed', tran, ['6A'] ). +verb( 'misplace', 'misplaces', 'misplacing', 'misplaced', 'misplaced', tran, ['6A'] ). +verb( 'misprint', 'misprints', 'misprinting', 'misprinted', 'misprinted', tran, ['6A'] ). +verb( 'mispronounce', 'mispronounces', 'mispronouncing', 'mispronounced', 'mispronounced', tran, ['6A'] ). +verb( 'misquote', 'misquotes', 'misquoting', 'misquoted', 'misquoted', tran, ['6A'] ). +verb( 'misread', 'misreads', 'misreading', 'misread', 'misread', tran, ['6A'] ). +verb( 'misrepresent', 'misrepresents', 'misrepresenting', 'misrepresented', 'misrepresented', tran, [] ). +verb( 'miss', 'misses', 'missing', 'missed', 'missed', _, ['2A','2C','6A','6B','6C','15B'] ). +verb( 'misspell', 'misspells', 'misspelling', 'misspelled', 'misspelled', tran, ['6A'] ). +verb( 'misspend', 'misspends', 'misspending', 'misspent', 'misspent', tran, ['6A'] ). +verb( 'misstate', 'misstates', 'misstating', 'misstated', 'misstated', tran, ['6A'] ). +verb( 'mist', 'mists', 'misting', 'misted', 'misted', _, ['2C','6A'] ). +verb( 'mistake', 'mistakes', 'mistaking', 'mistook', 'mistaken', _, ['6A','10','14'] ). +verb( 'mistime', 'mistimes', 'mistiming', 'mistimed', 'mistimed', tran, [] ). +verb( 'mistranslate', 'mistranslates', 'mistranslating', 'mistranslated', 'mistranslated', tran, ['6A'] ). +verb( 'mistrust', 'mistrusts', 'mistrusting', 'mistrusted', 'mistrusted', tran, ['6A'] ). +verb( 'misunderstand', 'misunderstands', 'misunderstanding', 'misunderstood', 'misunderstood', tran, ['6A'] ). +verb( 'misuse', 'misuses', 'misusing', 'misused', 'misused', tran, ['6A'] ). +verb( 'mitigate', 'mitigates', 'mitigating', 'mitigated', 'mitigated', tran, ['6A'] ). +verb( 'mix', 'mixes', 'mixing', 'mixed', 'mixed', _, ['2A','2C','3A','6A','12B','13B','14','15B'] ). +verb( 'mizzle', 'mizzles', 'mizzling', 'mizzled', 'mizzled', intran, ['2A'] ). +verb( 'moan', 'moans', 'moaning', 'moaned', 'moaned', _, ['2A','2C','15B'] ). +verb( 'mob', 'mobs', 'mobbing', 'mobbed', 'mobbed', tran, ['6A'] ). +verb( 'mobilize', 'mobilizes', 'mobilizing', 'mobilized', 'mobilized', _, ['2A','6A'] ). +verb( 'mock', 'mocks', 'mocking', 'mocked', 'mocked', _, ['3A','6A'] ). +verb( 'model', 'models', 'modelling', 'modelled', 'modelled', _, ['2A','6A','14','15A'] ). +verb( 'moderate', 'moderates', 'moderating', 'moderated', 'moderated', _, ['2A','6A'] ). +verb( 'modernize', 'modernizes', 'modernizing', 'modernized', 'modernized', tran, ['6A'] ). +verb( 'modify', 'modifies', 'modifying', 'modified', 'modified', tran, ['6A'] ). +verb( 'modulate', 'modulates', 'modulating', 'modulated', 'modulated', _, ['2C','6A'] ). +verb( 'moil', 'moils', 'moiling', 'moiled', 'moiled', intran, [] ). +verb( 'moisten', 'moistens', 'moistening', 'moistened', 'moistened', _, ['2A','6A'] ). +verb( 'molest', 'molests', 'molesting', 'molested', 'molested', tran, ['6A'] ). +verb( 'mollify', 'mollifies', 'mollifying', 'mollified', 'mollified', tran, ['6A'] ). +verb( 'mollycoddle', 'mollycoddles', 'mollycoddling', 'mollycoddled', 'mollycoddled', tran, ['6A'] ). +verb( 'monetize', 'monetizes', 'monetizing', 'monetized', 'monetized', tran, ['6A'] ). +verb( 'monitor', 'monitors', 'monitoring', 'monitored', 'monitored', _, [] ). +verb( 'monkey', 'monkeys', 'monkeying', 'monkeyed', 'monkeyed', intran, ['2C'] ). +verb( 'monopolize', 'monopolizes', 'monopolizing', 'monopolized', 'monopolized', tran, ['6A'] ). +verb( 'moo', 'moos', 'mooing', 'mooed', 'mooed', intran, [] ). +verb( 'mooch', 'mooches', 'mooching', 'mooched', 'mooched', intran, ['2C'] ). +verb( 'moon', 'moons', 'mooning', 'mooned', 'mooned', _, ['2C','15B'] ). +verb( 'moor', 'moors', 'mooring', 'moored', 'moored', tran, ['6A','15A'] ). +verb( 'moot', 'moots', 'mooting', 'mooted', 'mooted', tran, ['6A'] ). +verb( 'mop', 'mops', 'mopping', 'mopped', 'mopped', _, ['6A','15B'] ). +verb( 'mope', 'mopes', 'moping', 'moped', 'moped', intran, ['2A','2C'] ). +verb( 'moralize', 'moralizes', 'moralizing', 'moralized', 'moralized', _, ['2A','3A','6A'] ). +verb( 'mortar', 'mortars', 'mortaring', 'mortared', 'mortared', tran, ['6A'] ). +verb( 'mortgage', 'mortgages', 'mortgaging', 'mortgaged', 'mortgaged', tran, ['6A','14'] ). +verb( 'mortice', 'mortices', 'morticing', 'morticed', 'morticed', tran, ['15A','15B'] ). +verb( 'mortify', 'mortifies', 'mortifying', 'mortified', 'mortified', _, ['2A','6A'] ). +verb( 'mortise', 'mortises', 'mortising', 'mortised', 'mortised', tran, ['15A','15B'] ). +verb( 'mosey', 'moseys', 'moseying', 'moseyed', 'moseyed', intran, ['2A','2C'] ). +verb( 'mother', 'mothers', 'mothering', 'mothered', 'mothered', tran, ['6A'] ). +verb( 'mothproof', 'mothproofs', 'mothproofing', 'mothproofed', 'mothproofed', tran, [] ). +verb( 'motion', 'motions', 'motioning', 'motioned', 'motioned', _, ['3A','15A','15B','17'] ). +verb( 'motivate', 'motivates', 'motivating', 'motivated', 'motivated', tran, ['6A'] ). +verb( 'motor', 'motors', 'motoring', 'motored', 'motored', intran, ['2A','2C'] ). +verb( 'motorize', 'motorizes', 'motorizing', 'motorized', 'motorized', tran, ['6A'] ). +verb( 'mottle', 'mottles', 'mottling', 'mottled', 'mottled', tran, ['6A'] ). +verb( 'mould', 'moulds', 'moulding', 'moulded', 'moulded', _, ['2A','6A','14'] ). +verb( 'moulder', 'moulders', 'mouldering', 'mouldered', 'mouldered', intran, ['2A','2C'] ). +verb( 'moult', 'moults', 'moulting', 'moulted', 'moulted', _, ['2A','6A'] ). +verb( 'mount', 'mounts', 'mounting', 'mounted', 'mounted', _, ['2A','2C','6A'] ). +verb( 'mourn', 'mourns', 'mourning', 'mourned', 'mourned', _, ['3A','6A'] ). +verb( 'mouse', 'mouses', 'mousing', 'moused', 'moused', intran, ['2A'] ). +verb( 'mouth', 'mouths', 'mouthing', 'mouthed', 'mouthed', _, ['2A','6A'] ). +verb( 'move', 'moves', 'moving', 'moved', 'moved', _, ['2A','2C','3A','6A','9','15A','15B','17'] ). +verb( 'mow', 'mows', 'mowing', 'mowed', 'mowed', tran, ['2A','6A','15B'] ). +verb( 'mow', 'mows', 'mowing', 'mowed', 'mowed', intran, [] ). +verb( 'muck', 'mucks', 'mucking', 'mucked', 'mucked', _, ['2C','6A','15B'] ). +verb( 'mud', 'muds', 'mudding', 'mudded', 'mudded', tran, ['6A'] ). +verb( 'muddle', 'muddles', 'muddling', 'muddled', 'muddled', _, ['2C','6A','15B'] ). +verb( 'muddy', 'muddies', 'muddying', 'muddied', 'muddied', tran, ['6A'] ). +verb( 'muff', 'muffs', 'muffing', 'muffed', 'muffed', tran, ['6A'] ). +verb( 'muffle', 'muffles', 'muffling', 'muffled', 'muffled', tran, ['6A','15B'] ). +verb( 'mug', 'mugs', 'mugging', 'mugged', 'mugged', tran, ['6A','15B'] ). +verb( 'mulch', 'mulches', 'mulching', 'mulched', 'mulched', tran, [] ). +verb( 'mulct', 'mulcts', 'mulcting', 'mulcted', 'mulcted', tran, ['12C','14'] ). +verb( 'mull', 'mulls', 'mulling', 'mulled', 'mulled', tran, ['6A','15A'] ). +verb( 'multiply', 'multiplies', 'multiplying', 'multiplied', 'multiplied', _, ['2A','6A','14'] ). +verb( 'mumble', 'mumbles', 'mumbling', 'mumbled', 'mumbled', _, ['2A','2C','6A'] ). +verb( 'mummify', 'mummifies', 'mummifying', 'mummified', 'mummified', tran, ['6A'] ). +verb( 'munch', 'munches', 'munching', 'munched', 'munched', _, ['2A','2C','6A'] ). +verb( 'munition', 'munitions', 'munitioning', 'munitioned', 'munitioned', tran, ['6A'] ). +verb( 'murder', 'murders', 'murdering', 'murdered', 'murdered', tran, ['6A'] ). +verb( 'murmur', 'murmurs', 'murmuring', 'murmured', 'murmured', _, ['2A','2C','3A','6A'] ). +verb( 'muscle', 'muscles', 'muscling', 'muscled', 'muscled', intran, ['2C'] ). +verb( 'muse', 'muses', 'musing', 'mused', 'mused', intran, ['2A','3A'] ). +verb( 'mushroom', 'mushrooms', 'mushrooming', 'mushroomed', 'mushroomed', intran, ['2C'] ). +verb( 'muss', 'musses', 'mussing', 'mussed', 'mussed', tran, ['6A','15B'] ). +verb( 'must', 'must', '-', '-', '-', unknown, ['5'] ). +verb( 'muster', 'musters', 'mustering', 'mustered', 'mustered', _, ['2A','6A','15B'] ). +verb( 'mute', 'mutes', 'muting', 'muted', 'muted', tran, ['6A'] ). +verb( 'mutilate', 'mutilates', 'mutilating', 'mutilated', 'mutilated', tran, ['6A'] ). +verb( 'mutiny', 'mutinies', 'mutinying', 'mutinied', 'mutinied', intran, ['2A','3A'] ). +verb( 'mutter', 'mutters', 'muttering', 'muttered', 'muttered', _, ['2A','2C','6A','14'] ). +verb( 'muzzle', 'muzzles', 'muzzling', 'muzzled', 'muzzled', tran, ['6A'] ). +verb( 'mystify', 'mystifies', 'mystifying', 'mystified', 'mystified', tran, ['6A'] ). +verb( 'nab', 'nabs', 'nabbing', 'nabbed', 'nabbed', tran, [] ). +verb( 'nag', 'nags', 'nagging', 'nagged', 'nagged', _, ['2A','2C','3A','6A'] ). +verb( 'nail', 'nails', 'nailing', 'nailed', 'nailed', tran, ['15A','15B'] ). +verb( 'name', 'names', 'naming', 'named', 'named', tran, ['6A','14','23'] ). +verb( 'name-drop', 'name-drops', 'name-dropping', 'name-dropped', 'name-dropped', intran, ['2A'] ). +verb( 'nap', 'naps', 'napping', 'napped', 'napped', intran, [] ). +verb( 'nark', 'narks', 'narking', 'narked', 'narked', tran, [] ). +verb( 'narrate', 'narrates', 'narrating', 'narrated', 'narrated', tran, ['6A'] ). +verb( 'narrow', 'narrows', 'narrowing', 'narrowed', 'narrowed', _, ['2A','6A'] ). +verb( 'nasalize', 'nasalizes', 'nasalizing', 'nasalized', 'nasalized', tran, ['6A'] ). +verb( 'nationalize', 'nationalizes', 'nationalizing', 'nationalized', 'nationalized', tran, ['6A'] ). +verb( 'natter', 'natters', 'nattering', 'nattered', 'nattered', intran, ['2A','2C'] ). +verb( 'naturalize', 'naturalizes', 'naturalizing', 'naturalized', 'naturalized', _, ['2A','6A'] ). +verb( 'nauseate', 'nauseates', 'nauseating', 'nauseated', 'nauseated', tran, ['6A'] ). +verb( 'navigate', 'navigates', 'navigating', 'navigated', 'navigated', _, ['2A','6A'] ). +verb( 'near', 'nears', 'nearing', 'neared', 'neared', _, ['2A','6A'] ). +verb( 'necessitate', 'necessitates', 'necessitating', 'necessitated', 'necessitated', tran, ['6A','6C'] ). +verb( 'neck', 'necks', 'necking', 'necked', 'necked', intran, [] ). +verb( 'need', 'needs', 'needing', 'needed', 'needed', unknown, ['5','6A','6E','7A'] ). +verb( 'need', 'needs', 'needing', 'needed', 'needed', tran, ['5','6A','6E','7A'] ). +verb( 'needle', 'needles', 'needling', 'needled', 'needled', tran, ['6A','15A'] ). +verb( 'negate', 'negates', 'negating', 'negated', 'negated', tran, ['6A'] ). +verb( 'negative', 'negatives', 'negativing', 'negatived', 'negatived', tran, ['6A'] ). +verb( 'neglect', 'neglects', 'neglecting', 'neglected', 'neglected', tran, ['6A','6C','7A'] ). +verb( 'negotiate', 'negotiates', 'negotiating', 'negotiated', 'negotiated', _, ['2A','3A','6A','14'] ). +verb( 'neigh', 'neighs', 'neighing', 'neighed', 'neighed', intran, [] ). +verb( 'neighbour', 'neighbours', 'neighbouring', 'neighboured', 'neighboured', _, ['3A','6A'] ). +verb( 'nerve', 'nerves', 'nerving', 'nerved', 'nerved', tran, ['6A','14','16A'] ). +verb( 'nest', 'nests', 'nesting', 'nested', 'nested', intran, ['2A','2C'] ). +verb( 'nestle', 'nestles', 'nestling', 'nestled', 'nestled', _, ['2C','15A'] ). +verb( 'net', 'nets', 'netting', 'netted', 'netted', tran, ['6A'] ). +verb( 'nett', 'netts', 'netting', 'netted', 'netted', tran, ['6A'] ). +verb( 'nettle', 'nettles', 'nettling', 'nettled', 'nettled', tran, ['6A'] ). +verb( 'neuter', 'neuters', 'neutering', 'neutered', 'neutered', tran, [] ). +verb( 'neutralize', 'neutralizes', 'neutralizing', 'neutralized', 'neutralized', tran, ['6A'] ). +verb( 'nibble', 'nibbles', 'nibbling', 'nibbled', 'nibbled', _, ['2A','3A','6A'] ). +verb( 'nick', 'nicks', 'nicking', 'nicked', 'nicked', tran, [] ). +verb( 'nickel', 'nickels', 'nickelling', 'nickelled', 'nickelled', tran, [] ). +verb( 'nickname', 'nicknames', 'nicknaming', 'nicknamed', 'nicknamed', tran, ['6A','23'] ). +verb( 'niggle', 'niggles', 'niggling', 'niggled', 'niggled', intran, [] ). +verb( 'nip', 'nips', 'nipping', 'nipped', 'nipped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'nobble', 'nobbles', 'nobbling', 'nobbled', 'nobbled', tran, ['6A'] ). +verb( 'nod', 'nods', 'nodding', 'nodded', 'nodded', _, ['2A','2C','3A','4A','6A','12A','13A'] ). +verb( 'noise', 'noises', 'noising', 'noised', 'noised', tran, [] ). +verb( 'nominate', 'nominates', 'nominating', 'nominated', 'nominated', tran, ['6A','14','23'] ). +verb( 'nonplus', 'nonplusses', 'nonplussing', 'nonplussed', 'nonplussed', tran, ['6A'] ). +verb( 'noose', 'nooses', 'noosing', 'noosed', 'noosed', tran, [] ). +verb( 'normalize', 'normalizes', 'normalizing', 'normalized', 'normalized', tran, [] ). +verb( 'nose', 'noses', 'nosing', 'nosed', 'nosed', _, ['2C','3A','15A','15B'] ). +verb( 'nosedive', 'nosedives', 'nosediving', 'nosedived', 'nosedived', intran, [] ). +verb( 'nosh', 'noshes', 'noshing', 'noshed', 'noshed', intran, [] ). +verb( 'notch', 'notches', 'notching', 'notched', 'notched', tran, ['6A','15B'] ). +verb( 'note', 'notes', 'noting', 'noted', 'noted', tran, ['6A','8','9','10','15B'] ). +verb( 'notice', 'notices', 'noticing', 'noticed', 'noticed', _, ['2A','6A','8','9','10','18A','19A'] ). +verb( 'notify', 'notifies', 'notifying', 'notified', 'notified', tran, ['6A','11','14'] ). +verb( 'nourish', 'nourishes', 'nourishing', 'nourished', 'nourished', tran, ['6A'] ). +verb( 'nudge', 'nudges', 'nudging', 'nudged', 'nudged', tran, ['6A'] ). +verb( 'nullify', 'nullifies', 'nullifying', 'nullified', 'nullified', tran, ['6A'] ). +verb( 'numb', 'numbs', 'numbing', 'numbed', 'numbed', tran, ['6A'] ). +verb( 'number', 'numbers', 'numbering', 'numbered', 'numbered', tran, ['2C','6A','14'] ). +verb( 'nurse', 'nurses', 'nursing', 'nursed', 'nursed', tran, ['6A'] ). +verb( 'nurture', 'nurtures', 'nurturing', 'nurtured', 'nurtured', tran, [] ). +verb( 'nut', 'nuts', 'nutting', 'nutted', 'nutted', intran, [] ). +verb( 'nuzzle', 'nuzzles', 'nuzzling', 'nuzzled', 'nuzzled', _, ['2C','6A'] ). +verb( 'obey', 'obeys', 'obeying', 'obeyed', 'obeyed', _, ['2A','6A'] ). +verb( 'obfuscate', 'obfuscates', 'obfuscating', 'obfuscated', 'obfuscated', tran, ['6A'] ). +verb( 'object', 'objects', 'objecting', 'objected', 'objected', _, ['2A','3A','9'] ). +verb( 'objurgate', 'objurgates', 'objurgating', 'objurgated', 'objurgated', tran, ['6A'] ). +verb( 'obligate', 'obligates', 'obligating', 'obligated', 'obligated', tran, ['17'] ). +verb( 'oblige', 'obliges', 'obliging', 'obliged', 'obliged', tran, ['6A','14','17'] ). +verb( 'obliterate', 'obliterates', 'obliterating', 'obliterated', 'obliterated', tran, ['6A'] ). +verb( 'obscure', 'obscures', 'obscuring', 'obscured', 'obscured', tran, ['6A'] ). +verb( 'observe', 'observes', 'observing', 'observed', 'observed', _, ['2A','6A','8','9','10','18A','19A','25'] ). +verb( 'obsess', 'obsesses', 'obsessing', 'obsessed', 'obsessed', tran, ['6A'] ). +verb( 'obstruct', 'obstructs', 'obstructing', 'obstructed', 'obstructed', tran, ['6A'] ). +verb( 'obtain', 'obtains', 'obtaining', 'obtained', 'obtained', _, ['2A','6A'] ). +verb( 'obtrude', 'obtrudes', 'obtruding', 'obtruded', 'obtruded', _, ['2A','14'] ). +verb( 'obviate', 'obviates', 'obviating', 'obviated', 'obviated', tran, ['6A'] ). +verb( 'occasion', 'occasions', 'occasioning', 'occasioned', 'occasioned', tran, ['6A','12A','13A'] ). +verb( 'occupy', 'occupies', 'occupying', 'occupied', 'occupied', tran, ['6A'] ). +verb( 'occur', 'occurs', 'occurring', 'occurred', 'occurred', intran, ['2A','2C','3A'] ). +verb( 'offend', 'offends', 'offending', 'offended', 'offended', _, ['3A','6A'] ). +verb( 'offer', 'offers', 'offering', 'offered', 'offered', _, ['2A','6A','7A','12A','13A','14','15B'] ). +verb( 'officiate', 'officiates', 'officiating', 'officiated', 'officiated', intran, ['2A','2C','3A'] ). +verb( 'offset', 'offsets', 'offsetting', 'offset', 'offset', tran, ['6A','14'] ). +verb( 'ogle', 'ogles', 'ogling', 'ogled', 'ogled', _, ['3A','6A'] ). +verb( 'oil', 'oils', 'oiling', 'oiled', 'oiled', tran, ['6A'] ). +verb( 'okay', 'okays', 'okaying', 'okayed', 'okayed', tran, ['6A'] ). +verb( 'omen', 'omens', 'omening', 'omened', 'omened', tran, ['6A'] ). +verb( 'omit', 'omits', 'omitting', 'omitted', 'omitted', tran, ['6A','6C','7A'] ). +verb( 'ooze', 'oozes', 'oozing', 'oozed', 'oozed', _, ['2C','6A'] ). +verb( 'open', 'opens', 'opening', 'opened', 'opened', _, ['2A','2C','3A','6A','12C','14','15A','15B','16A'] ). +verb( 'operate', 'operates', 'operating', 'operated', 'operated', _, ['2A','2C','3A','4A','6A'] ). +verb( 'opine', 'opines', 'opining', 'opined', 'opined', tran, ['9'] ). +verb( 'oppose', 'opposes', 'opposing', 'opposed', 'opposed', tran, ['6A','14'] ). +verb( 'oppress', 'oppresses', 'oppressing', 'oppressed', 'oppressed', tran, ['6A'] ). +verb( 'oppugn', 'oppugns', 'oppugning', 'oppugned', 'oppugned', tran, ['6A'] ). +verb( 'opt', 'opts', 'opting', 'opted', 'opted', intran, ['3A'] ). +verb( 'orate', 'orates', 'orating', 'orated', 'orated', intran, ['2A'] ). +verb( 'orbit', 'orbits', 'orbiting', 'orbited', 'orbited', _, ['2A','2C','6A'] ). +verb( 'orchestrate', 'orchestrates', 'orchestrating', 'orchestrated', 'orchestrated', tran, ['6A'] ). +verb( 'ordain', 'ordains', 'ordaining', 'ordained', 'ordained', tran, ['6A','9','23'] ). +verb( 'order', 'orders', 'ordering', 'ordered', 'ordered', tran, ['6A','9','12B','13B','15A','15B','17'] ). +verb( 'organize', 'organizes', 'organizing', 'organized', 'organized', tran, ['6A'] ). +verb( 'orient', 'orients', 'orienting', 'oriented', 'oriented', tran, [] ). +verb( 'orientate', 'orientates', 'orientating', 'orientated', 'orientated', tran, ['6A'] ). +verb( 'originate', 'originates', 'originating', 'originated', 'originated', _, ['2C','3A','6A'] ). +verb( 'ornament', 'ornaments', 'ornamenting', 'ornamented', 'ornamented', tran, ['6A','14'] ). +verb( 'orphan', 'orphans', 'orphaning', 'orphaned', 'orphaned', tran, ['6A'] ). +verb( 'oscillate', 'oscillates', 'oscillating', 'oscillated', 'oscillated', _, ['2A','6A'] ). +verb( 'ossify', 'ossifies', 'ossifying', 'ossified', 'ossified', _, ['2A','6A'] ). +verb( 'ostracize', 'ostracizes', 'ostracizing', 'ostracized', 'ostracized', tran, ['6A'] ). +verb( 'ought', 'ought', '-', '-', '-', unknown, ['7B'] ). +verb( 'oust', 'ousts', 'ousting', 'ousted', 'ousted', tran, ['6A','14'] ). +verb( 'out', 'outs', 'outing', 'outed', 'outed', tran, [] ). +verb( 'out-herod', 'out-herods', 'out-heroding', 'out-heroded', 'out-heroded', tran, ['6A'] ). +verb( 'outbalance', 'outbalances', 'outbalancing', 'outbalanced', 'outbalanced', tran, ['6A'] ). +verb( 'outbid', 'outbids', 'outbidding', 'outbid', 'outbid', tran, ['6A'] ). +verb( 'outbrave', 'outbraves', 'outbraving', 'outbraved', 'outbraved', tran, ['6A'] ). +verb( 'outclass', 'outclasses', 'outclassing', 'outclassed', 'outclassed', tran, ['6A'] ). +verb( 'outdistance', 'outdistances', 'outdistancing', 'outdistanced', 'outdistanced', tran, ['6A'] ). +verb( 'outdo', 'outdoes', 'outdoing', 'outdid', 'outdone', tran, ['6A'] ). +verb( 'outface', 'outfaces', 'outfacing', 'outfaced', 'outfaced', tran, ['6A'] ). +verb( 'outfight', 'outfights', 'outfighting', 'outfought', 'outfought', tran, ['6A'] ). +verb( 'outfit', 'outfits', 'outfitting', 'outfitted', 'outfitted', tran, [] ). +verb( 'outflank', 'outflanks', 'outflanking', 'outflanked', 'outflanked', tran, ['6A'] ). +verb( 'outfox', 'outfoxes', 'outfoxing', 'outfoxed', 'outfoxed', tran, ['6A'] ). +verb( 'outgo', 'outgoes', 'outgoing', 'outwent', 'outgone', intran, [] ). +verb( 'outgrow', 'outgrows', 'outgrowing', 'outgrew', 'outgrown', tran, ['6A'] ). +verb( 'outlast', 'outlasts', 'outlasting', 'outlasted', 'outlasted', tran, ['6A'] ). +verb( 'outlaw', 'outlaws', 'outlawing', 'outlawed', 'outlawed', tran, ['6A'] ). +verb( 'outline', 'outlines', 'outlining', 'outlined', 'outlined', tran, ['6A'] ). +verb( 'outlive', 'outlives', 'outliving', 'outlived', 'outlived', tran, ['6A'] ). +verb( 'outmanoeuvre', 'outmanoeuvres', 'outmanoeuvring', 'outmanoeuvred', 'outmanoeuvred', tran, ['6A'] ). +verb( 'outmarch', 'outmarches', 'outmarching', 'outmarched', 'outmarched', tran, ['6A'] ). +verb( 'outmatch', 'outmatches', 'outmatching', 'outmatched', 'outmatched', tran, ['6A'] ). +verb( 'outnumber', 'outnumbers', 'outnumbering', 'outnumbered', 'outnumbered', tran, ['6A'] ). +verb( 'outplay', 'outplays', 'outplaying', 'outplayed', 'outplayed', tran, ['6A'] ). +verb( 'outpoint', 'outpoints', 'outpointing', 'outpointed', 'outpointed', tran, ['6A'] ). +verb( 'outrage', 'outrages', 'outraging', 'outraged', 'outraged', tran, ['6A'] ). +verb( 'outrange', 'outranges', 'outranging', 'outranged', 'outranged', tran, ['6A'] ). +verb( 'outrank', 'outranks', 'outranking', 'outranked', 'outranked', tran, ['6A'] ). +verb( 'outride', 'outrides', 'outriding', 'outrode', 'outridden', tran, ['6A'] ). +verb( 'outrival', 'outrivals', 'outrivalling', 'outrivalled', 'outrivalled', tran, ['6A'] ). +verb( 'outrun', 'outruns', 'outrunning', 'outran', 'outrun', tran, ['6A'] ). +verb( 'outsail', 'outsails', 'outsailing', 'outsailed', 'outsailed', tran, ['6A'] ). +verb( 'outshine', 'outshines', 'outshining', 'outshone', 'outshone', tran, ['6A'] ). +verb( 'outsmart', 'outsmarts', 'outsmarting', 'outsmarted', 'outsmarted', tran, ['6A'] ). +verb( 'outspan', 'outspans', 'outspanning', 'outspanned', 'outspanned', _, ['2A','6A'] ). +verb( 'outstay', 'outstays', 'outstaying', 'outstayed', 'outstayed', tran, ['6A'] ). +verb( 'outstrip', 'outstrips', 'outstripping', 'outstripped', 'outstripped', tran, ['6A'] ). +verb( 'outvie', 'outvies', 'outvying', 'outvied', 'outvied', tran, ['6A'] ). +verb( 'outvote', 'outvotes', 'outvoting', 'outvoted', 'outvoted', tran, ['6A'] ). +verb( 'outwear', 'outwears', 'outwearing', 'outwore', 'outworn', tran, ['6A'] ). +verb( 'outweigh', 'outweighs', 'outweighing', 'outweighed', 'outweighed', tran, ['6A'] ). +verb( 'outwit', 'outwits', 'outwitting', 'outwitted', 'outwitted', tran, ['6A'] ). +verb( 'overact', 'overacts', 'overacting', 'overacted', 'overacted', _, ['2A','6A'] ). +verb( 'overarch', 'overarches', 'overarching', 'overarched', 'overarched', _, ['2A','6A'] ). +verb( 'overawe', 'overawes', 'overawing', 'overawed', 'overawed', tran, ['6A'] ). +verb( 'overbalance', 'overbalances', 'overbalancing', 'overbalanced', 'overbalanced', _, ['2A','6A'] ). +verb( 'overbear', 'overbears', 'overbearing', 'overbore', 'overborne', tran, ['6A'] ). +verb( 'overbid', 'overbids', 'overbidding', 'overbid', 'overbid', _, ['2A','6A'] ). +verb( 'overburden', 'overburdens', 'overburdening', 'overburdened', 'overburdened', tran, ['6A'] ). +verb( 'overcall', 'overcalls', 'overcalling', 'overcalled', 'overcalled', _, [] ). +verb( 'overcapitalize', 'overcapitalizes', 'overcapitalizing', 'overcapitalized', 'overcapitalized', tran, [] ). +verb( 'overcharge', 'overcharges', 'overcharging', 'overcharged', 'overcharged', _, ['2A','6A'] ). +verb( 'overclothe', 'overclothes', 'overclothing', 'overclothed', 'overclothed', tran, ['6A'] ). +verb( 'overcloud', 'overclouds', 'overclouding', 'overclouded', 'overclouded', _, ['2A','6A'] ). +verb( 'overcome', 'overcomes', 'overcoming', 'overcame', 'overcome', tran, ['6A'] ). +verb( 'overcook', 'overcooks', 'overcooking', 'overcooked', 'overcooked', tran, [] ). +verb( 'overcrop', 'overcrops', 'overcropping', 'overcropped', 'overcropped', tran, ['6A'] ). +verb( 'overcrowd', 'overcrowds', 'overcrowding', 'overcrowded', 'overcrowded', tran, ['6A'] ). +verb( 'overdo', 'overdoes', 'overdoing', 'overdid', 'overdone', tran, ['6A'] ). +verb( 'overdraw', 'overdraws', 'overdrawing', 'overdrew', 'overdrawn', _, ['2A','6A'] ). +verb( 'overdress', 'overdresses', 'overdressing', 'overdressed', 'overdressed', _, ['2A','6A'] ). +verb( 'overeat', 'overeats', 'overeating', 'overate', 'overeaten', intran, [] ). +verb( 'overemphasize', 'overemphasizes', 'overemphasizing', 'overemphasized', 'overemphasized', tran, [] ). +verb( 'overestimate', 'overestimates', 'overestimating', 'overestimated', 'overestimated', tran, [] ). +verb( 'overexert', 'overexerts', 'overexerting', 'overexerted', 'overexerted', tran, [] ). +verb( 'overexpose', 'overexposes', 'overexposing', 'overexposed', 'overexposed', tran, [] ). +verb( 'overfeed', 'overfeeds', 'overfeeding', 'overfeeded', 'overfeeded', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'overflow', 'overflows', 'overflowing', 'overflowed', 'overflowed', _, ['2A','3A','6A'] ). +verb( 'overfly', 'overflies', 'overflying', 'overflew', 'overflown', tran, ['2A','2B','2C','2D','4A','6A','15A','15B'] ). +verb( 'overhang', 'overhangs', 'overhanging', 'overhung', 'overhung', _, ['2A','6A'] ). +verb( 'overhaul', 'overhauls', 'overhauling', 'overhauled', 'overhauled', tran, ['6A'] ). +verb( 'overhear', 'overhears', 'overhearing', 'overheard', 'overheard', tran, ['6A','18A','19A'] ). +verb( 'overheat', 'overheats', 'overheating', 'overheated', 'overheated', tran, [] ). +verb( 'overindulge', 'overindulges', 'overindulging', 'overindulged', 'overindulged', _, [] ). +verb( 'overlap', 'overlaps', 'overlapping', 'overlapped', 'overlapped', _, ['2A','6A'] ). +verb( 'overlay', 'overlays', 'overlaying', 'overlaid', 'overlain', tran, [] ). +verb( 'overleap', 'overleaps', 'overleaping', 'overleaped', 'overleaped', tran, ['6A'] ). +verb( 'overlie', 'overlies', 'overlying', 'overlaid', 'overlaid', intran, ['2A','2C','2D','3A'] ). +verb( 'overload', 'overloads', 'overloading', 'overloaded', 'overloaded', tran, ['6A'] ). +verb( 'overlook', 'overlooks', 'overlooking', 'overlooked', 'overlooked', tran, ['6A'] ). +verb( 'overmaster', 'overmasters', 'overmastering', 'overmastered', 'overmastered', tran, ['6A'] ). +verb( 'overpay', 'overpays', 'overpaying', 'overpaid', 'overpaid', tran, ['6A','14'] ). +verb( 'overplay', 'overplays', 'overplaying', 'overplayed', 'overplayed', tran, [] ). +verb( 'overpower', 'overpowers', 'overpowering', 'overpowered', 'overpowered', tran, ['6A'] ). +verb( 'overpraise', 'overpraises', 'overpraising', 'overpraised', 'overpraised', tran, [] ). +verb( 'overprint', 'overprints', 'overprinting', 'overprinted', 'overprinted', tran, ['6A'] ). +verb( 'overproduce', 'overproduces', 'overproducing', 'overproduced', 'overproduced', _, [] ). +verb( 'overrate', 'overrates', 'overrating', 'overrated', 'overrated', tran, ['6A'] ). +verb( 'overreach', 'overreaches', 'overreaching', 'overreached', 'overreached', tran, ['6A'] ). +verb( 'override', 'overrides', 'overriding', 'overrode', 'overridden', tran, ['6A'] ). +verb( 'overrule', 'overrules', 'overruling', 'overruled', 'overruled', tran, ['6A'] ). +verb( 'overrun', 'overruns', 'overrunning', 'overran', 'overrun', tran, ['6A'] ). +verb( 'oversee', 'oversees', 'overseeing', 'oversaw', 'overseen', tran, ['6A'] ). +verb( 'oversew', 'oversews', 'oversewing', 'oversewed', 'oversewn', tran, ['2A','2B','2C','6A','15B'] ). +verb( 'overshadow', 'overshadows', 'overshadowing', 'overshadowed', 'overshadowed', tran, ['6A'] ). +verb( 'overshoot', 'overshoots', 'overshooting', 'overshot', 'overshot', tran, ['6A'] ). +verb( 'oversimplify', 'oversimplifies', 'oversimplifying', 'oversimplified', 'oversimplified', tran, [] ). +verb( 'oversleep', 'oversleeps', 'oversleeping', 'overslept', 'overslept', intran, ['2A'] ). +verb( 'overspend', 'overspends', 'overspending', 'overspent', 'overspent', _, ['2A','6A','14','19B'] ). +verb( 'overstate', 'overstates', 'overstating', 'overstated', 'overstated', tran, ['6A'] ). +verb( 'overstay', 'overstays', 'overstaying', 'overstayed', 'overstayed', tran, ['6A'] ). +verb( 'overstep', 'oversteps', 'overstepping', 'overstepped', 'overstepped', tran, ['6A'] ). +verb( 'overstock', 'overstocks', 'overstocking', 'overstocked', 'overstocked', tran, ['6A'] ). +verb( 'overstrain', 'overstrains', 'overstraining', 'overstrained', 'overstrained', tran, [] ). +verb( 'overtake', 'overtakes', 'overtaking', 'overtook', 'overtaken', tran, ['6A'] ). +verb( 'overtax', 'overtaxes', 'overtaxing', 'overtaxed', 'overtaxed', tran, ['6A'] ). +verb( 'overthrow', 'overthrows', 'overthrowing', 'overthrew', 'overthrown', tran, ['6A'] ). +verb( 'overtop', 'overtops', 'overtopping', 'overtopped', 'overtopped', tran, ['6A'] ). +verb( 'overtrump', 'overtrumps', 'overtrumping', 'overtrumped', 'overtrumped', tran, ['6A'] ). +verb( 'overturn', 'overturns', 'overturning', 'overturned', 'overturned', _, ['2A','6A'] ). +verb( 'overvalue', 'overvalues', 'overvaluing', 'overvalued', 'overvalued', tran, [] ). +verb( 'overwhelm', 'overwhelms', 'overwhelming', 'overwhelmed', 'overwhelmed', tran, ['6A'] ). +verb( 'overwork', 'overworks', 'overworking', 'overworked', 'overworked', _, ['2A','6A'] ). +verb( 'owe', 'owes', 'owing', 'owed', 'owed', _, ['2A','3A','6A','12A','13A','14'] ). +verb( 'own', 'owns', 'owning', 'owned', 'owned', _, ['2C','3B','6A','9'] ). +verb( 'oxidize', 'oxidizes', 'oxidizing', 'oxidized', 'oxidized', _, ['2A','6A'] ). +verb( 'oxygenate', 'oxygenates', 'oxygenating', 'oxygenated', 'oxygenated', tran, [] ). +verb( 'oxygenize', 'oxygenizes', 'oxygenizing', 'oxygenized', 'oxygenized', tran, [] ). +verb( 'pace', 'paces', 'pacing', 'paced', 'paced', _, ['2A','2C','6A','15B'] ). +verb( 'pacify', 'pacifies', 'pacifying', 'pacified', 'pacified', tran, ['6A'] ). +verb( 'pack', 'packs', 'packing', 'packed', 'packed', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'package', 'packages', 'packaging', 'packaged', 'packaged', tran, [] ). +verb( 'pad', 'pads', 'padding', 'padded', 'padded', _, ['2A','2C','6A','15B'] ). +verb( 'paddle', 'paddles', 'paddling', 'paddled', 'paddled', _, ['2A','6A'] ). +verb( 'padlock', 'padlocks', 'padlocking', 'padlocked', 'padlocked', tran, ['6A'] ). +verb( 'page', 'pages', 'paging', 'paged', 'paged', tran, ['6A'] ). +verb( 'pain', 'pains', 'paining', 'pained', 'pained', tran, ['6A'] ). +verb( 'paint', 'paints', 'painting', 'painted', 'painted', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'pair', 'pairs', 'pairing', 'paired', 'paired', _, ['2A','2C','6A','15B'] ). +verb( 'pal', 'pals', 'palling', 'palled', 'palled', intran, [] ). +verb( 'palaver', 'palavers', 'palavering', 'palavered', 'palavered', intran, ['2A'] ). +verb( 'pale', 'pales', 'paling', 'paled', 'paled', intran, ['2A','2C'] ). +verb( 'palisade', 'palisades', 'palisading', 'palisaded', 'palisaded', tran, ['6A'] ). +verb( 'pall', 'palls', 'palling', 'palled', 'palled', intran, ['2A','3A'] ). +verb( 'palliate', 'palliates', 'palliating', 'palliated', 'palliated', tran, ['6A'] ). +verb( 'palm', 'palms', 'palming', 'palmed', 'palmed', tran, ['6A','15B'] ). +verb( 'palpitate', 'palpitates', 'palpitating', 'palpitated', 'palpitated', intran, ['2A','2C'] ). +verb( 'palsy', 'palsies', 'palsying', 'palsied', 'palsied', tran, [] ). +verb( 'palter', 'palters', 'paltering', 'paltered', 'paltered', intran, ['3A'] ). +verb( 'pamper', 'pampers', 'pampering', 'pampered', 'pampered', tran, ['6A'] ). +verb( 'pan', 'pans', 'panning', 'panned', 'panned', _, ['2C','3A','6A','15B'] ). +verb( 'pander', 'panders', 'pandering', 'pandered', 'pandered', intran, ['3A'] ). +verb( 'panel', 'panels', 'panelling', 'panelled', 'panelled', tran, [] ). +verb( 'panhandle', 'panhandles', 'panhandling', 'panhandled', 'panhandled', intran, [] ). +verb( 'panic', 'panics', 'panicking', 'panicked', 'panicked', intran, [] ). +verb( 'pant', 'pants', 'panting', 'panted', 'panted', _, ['2A','2C','3A','6A','15B'] ). +verb( 'paper', 'papers', 'papering', 'papered', 'papered', tran, ['6A','15B'] ). +verb( 'parachute', 'parachutes', 'parachuting', 'parachuted', 'parachuted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'parade', 'parades', 'parading', 'paraded', 'paraded', _, ['2A','6A'] ). +verb( 'paragraph', 'paragraphs', 'paragraphing', 'paragraphed', 'paragraphed', tran, [] ). +verb( 'parallel', 'parallels', 'parallelling', 'parallelled', 'parallelled', tran, ['6A'] ). +verb( 'paralyse', 'paralyses', 'paralysing', 'paralysed', 'paralysed', tran, ['6A'] ). +verb( 'paralyze', 'paralyzes', 'paralyzing', 'paralyzed', 'paralyzed', tran, ['6A'] ). +verb( 'paraphrase', 'paraphrases', 'paraphrasing', 'paraphrased', 'paraphrased', tran, ['6A'] ). +verb( 'parboil', 'parboils', 'parboiling', 'parboiled', 'parboiled', tran, ['6A'] ). +verb( 'parcel', 'parcels', 'parcelling', 'parcelled', 'parcelled', tran, ['6A','15B'] ). +verb( 'parch', 'parches', 'parching', 'parched', 'parched', tran, ['6A'] ). +verb( 'pardon', 'pardons', 'pardoning', 'pardoned', 'pardoned', tran, ['6A','12B','13B'] ). +verb( 'pare', 'pares', 'paring', 'pared', 'pared', tran, ['6A','15B'] ). +verb( 'park', 'parks', 'parking', 'parked', 'parked', _, ['2A','6A','15A'] ). +verb( 'parley', 'parleys', 'parleying', 'parleyed', 'parleyed', intran, ['2A','3A'] ). +verb( 'parody', 'parodies', 'parodying', 'parodied', 'parodied', tran, ['6A'] ). +verb( 'parole', 'paroles', 'paroling', 'paroled', 'paroled', tran, ['6A'] ). +verb( 'parry', 'parries', 'parrying', 'parried', 'parried', tran, ['6A'] ). +verb( 'parse', 'parses', 'parsing', 'parsed', 'parsed', tran, ['6A'] ). +verb( 'part', 'parts', 'parting', 'parted', 'parted', _, ['2A','2D','3A','6A'] ). +verb( 'partake', 'partakes', 'partaking', 'partook', 'partaken', _, ['3A'] ). +verb( 'participate', 'participates', 'participating', 'participated', 'participated', intran, ['2A','3A'] ). +verb( 'particularize', 'particularizes', 'particularizing', 'particularized', 'particularized', _, ['2A','6A'] ). +verb( 'partition', 'partitions', 'partitioning', 'partitioned', 'partitioned', tran, ['6A','15B'] ). +verb( 'partner', 'partners', 'partnering', 'partnered', 'partnered', tran, ['6A','15A'] ). +verb( 'pass', 'passes', 'passing', 'passed', 'passed', _, ['2A','2C','3A','6A','12A','13A','14','15A','15B'] ). +verb( 'paste', 'pastes', 'pasting', 'pasted', 'pasted', tran, ['6A','15A','15B'] ). +verb( 'pasteurize', 'pasteurizes', 'pasteurizing', 'pasteurized', 'pasteurized', tran, ['6A'] ). +verb( 'pasture', 'pastures', 'pasturing', 'pastured', 'pastured', _, ['2A','6A'] ). +verb( 'pat', 'pats', 'patting', 'patted', 'patted', _, ['2A','6A','15A'] ). +verb( 'patch', 'patches', 'patching', 'patched', 'patched', tran, ['6A','15B'] ). +verb( 'patent', 'patents', 'patenting', 'patented', 'patented', tran, ['6A'] ). +verb( 'patrol', 'patrols', 'patrolling', 'patrolled', 'patrolled', _, ['2A','6A'] ). +verb( 'patronize', 'patronizes', 'patronizing', 'patronized', 'patronized', tran, ['6A'] ). +verb( 'patter', 'patters', 'pattering', 'pattered', 'pattered', _, ['2A','2C','6A'] ). +verb( 'pattern', 'patterns', 'patterning', 'patterned', 'patterned', tran, ['14'] ). +verb( 'pauperize', 'pauperizes', 'pauperizing', 'pauperized', 'pauperized', tran, ['6A'] ). +verb( 'pause', 'pauses', 'pausing', 'paused', 'paused', intran, ['2A','4A'] ). +verb( 'pave', 'paves', 'paving', 'paved', 'paved', tran, ['6A'] ). +verb( 'paw', 'paws', 'pawing', 'pawed', 'pawed', tran, ['6A','15B'] ). +verb( 'pawn', 'pawns', 'pawning', 'pawned', 'pawned', tran, ['6A'] ). +verb( 'pay', 'pays', 'paying', 'paid', 'paid', _, ['2A','3A','6A','12A','12B','13A','13B','14','15B'] ). +verb( 'peach', 'peaches', 'peaching', 'peached', 'peached', _, ['2A','3A','6A'] ). +verb( 'peak', 'peaks', 'peaking', 'peaked', 'peaked', intran, ['2A'] ). +verb( 'peal', 'peals', 'pealing', 'pealed', 'pealed', _, ['2A','2C','6A'] ). +verb( 'pearl', 'pearls', 'pearling', 'pearled', 'pearled', intran, [] ). +verb( 'peck', 'pecks', 'pecking', 'pecked', 'pecked', _, ['2A','2C','3A','6A'] ). +verb( 'peculate', 'peculates', 'peculating', 'peculated', 'peculated', _, [] ). +verb( 'pedal', 'pedals', 'pedalling', 'pedalled', 'pedalled', _, ['2A','2C','6A'] ). +verb( 'peddle', 'peddles', 'peddling', 'peddled', 'peddled', _, ['2A','6A'] ). +verb( 'pee', 'pees', 'peeing', 'peed', 'peed', intran, ['2A'] ). +verb( 'peek', 'peeks', 'peeking', 'peeked', 'peeked', intran, [] ). +verb( 'peel', 'peels', 'peeling', 'peeled', 'peeled', _, ['2A','2C','6A','15B'] ). +verb( 'peep', 'peeps', 'peeping', 'peeped', 'peeped', intran, ['2A','2C'] ). +verb( 'peer', 'peers', 'peering', 'peered', 'peered', intran, ['2A','3A'] ). +verb( 'peeve', 'peeves', 'peeving', 'peeved', 'peeved', tran, [] ). +verb( 'peg', 'pegs', 'pegging', 'pegged', 'pegged', _, ['2C','6A','15B'] ). +verb( 'pelt', 'pelts', 'pelting', 'pelted', 'pelted', _, ['2C','6A','14'] ). +verb( 'pen', 'pens', 'penning', 'penned', 'penned', tran, ['15A','15B'] ). +verb( 'penalize', 'penalizes', 'penalizing', 'penalized', 'penalized', tran, ['6A','14'] ). +verb( 'pencil', 'pencils', 'pencilling', 'pencilled', 'pencilled', tran, ['6A'] ). +verb( 'penetrate', 'penetrates', 'penetrating', 'penetrated', 'penetrated', _, ['3A','6A'] ). +verb( 'pension', 'pensions', 'pensioning', 'pensioned', 'pensioned', tran, ['15B'] ). +verb( 'people', 'peoples', 'peopling', 'peopled', 'peopled', tran, ['6A'] ). +verb( 'pep', 'peps', 'pepping', 'pepped', 'pepped', tran, ['15B'] ). +verb( 'pepper', 'peppers', 'peppering', 'peppered', 'peppered', tran, ['6A'] ). +verb( 'perambulate', 'perambulates', 'perambulating', 'perambulated', 'perambulated', _, ['2A','6A'] ). +verb( 'perceive', 'perceives', 'perceiving', 'perceived', 'perceived', tran, ['6A','8','9','10','18A','19A','25'] ). +verb( 'perch', 'perches', 'perching', 'perched', 'perched', _, ['2C'] ). +verb( 'percolate', 'percolates', 'percolating', 'percolated', 'percolated', _, ['2A','3A','6A'] ). +verb( 'perfect', 'perfects', 'perfecting', 'perfected', 'perfected', tran, ['6A'] ). +verb( 'perforate', 'perforates', 'perforating', 'perforated', 'perforated', tran, ['6A'] ). +verb( 'perform', 'performs', 'performing', 'performed', 'performed', _, ['2A','6A'] ). +verb( 'perfume', 'perfumes', 'perfuming', 'perfumed', 'perfumed', tran, ['6A'] ). +verb( 'peril', 'perils', 'perilling', 'perilled', 'perilled', tran, [] ). +verb( 'perish', 'perishes', 'perishing', 'perished', 'perished', _, ['2A','2C','6A'] ). +verb( 'perjure', 'perjures', 'perjuring', 'perjured', 'perjured', tran, ['6A'] ). +verb( 'perk', 'perks', 'perking', 'perked', 'perked', _, ['2C','15B'] ). +verb( 'perm', 'perms', 'perming', 'permed', 'permed', tran, [] ). +verb( 'permeate', 'permeates', 'permeating', 'permeated', 'permeated', _, ['3A','6A'] ). +verb( 'permit', 'permits', 'permitting', 'permitted', 'permitted', _, ['3A','6A','6C','17','19C'] ). +verb( 'permute', 'permutes', 'permuting', 'permuted', 'permuted', tran, ['6A'] ). +verb( 'perpetrate', 'perpetrates', 'perpetrating', 'perpetrated', 'perpetrated', tran, ['6A'] ). +verb( 'perpetuate', 'perpetuates', 'perpetuating', 'perpetuated', 'perpetuated', tran, ['6A'] ). +verb( 'perplex', 'perplexes', 'perplexing', 'perplexed', 'perplexed', tran, ['6A','14'] ). +verb( 'persecute', 'persecutes', 'persecuting', 'persecuted', 'persecuted', tran, ['6A'] ). +verb( 'persevere', 'perseveres', 'persevering', 'persevered', 'persevered', intran, ['2A','3A'] ). +verb( 'persist', 'persists', 'persisting', 'persisted', 'persisted', intran, ['2A','3A'] ). +verb( 'personalize', 'personalizes', 'personalizing', 'personalized', 'personalized', tran, ['6A'] ). +verb( 'personate', 'personates', 'personating', 'personated', 'personated', tran, ['6A'] ). +verb( 'personify', 'personifies', 'personifying', 'personified', 'personified', tran, ['6A'] ). +verb( 'perspire', 'perspires', 'perspiring', 'perspired', 'perspired', intran, ['2A'] ). +verb( 'persuade', 'persuades', 'persuading', 'persuaded', 'persuaded', tran, ['11','14','17'] ). +verb( 'pertain', 'pertains', 'pertaining', 'pertained', 'pertained', intran, ['3A'] ). +verb( 'perturb', 'perturbs', 'perturbing', 'perturbed', 'perturbed', tran, ['6A'] ). +verb( 'peruse', 'peruses', 'perusing', 'perused', 'perused', tran, ['6A'] ). +verb( 'pervade', 'pervades', 'pervading', 'pervaded', 'pervaded', tran, ['6A'] ). +verb( 'pervert', 'perverts', 'perverting', 'perverted', 'perverted', tran, ['6A'] ). +verb( 'pester', 'pesters', 'pestering', 'pestered', 'pestered', tran, ['6A','14','17'] ). +verb( 'pestle', 'pestles', 'pestling', 'pestled', 'pestled', tran, [] ). +verb( 'pet', 'pets', 'petting', 'petted', 'petted', tran, [] ). +verb( 'peter', 'peters', 'petering', 'petered', 'petered', intran, ['2C'] ). +verb( 'petition', 'petitions', 'petitioning', 'petitioned', 'petitioned', _, ['3A','6A','11','14','17'] ). +verb( 'petrify', 'petrifies', 'petrifying', 'petrified', 'petrified', _, ['2A','6A'] ). +verb( 'phase', 'phases', 'phasing', 'phased', 'phased', tran, ['6A','15B'] ). +verb( 'philander', 'philanders', 'philandering', 'philandered', 'philandered', intran, ['2A'] ). +verb( 'philosophize', 'philosophizes', 'philosophizing', 'philosophized', 'philosophized', intran, ['2A'] ). +verb( 'phone', 'phones', 'phoning', 'phoned', 'phoned', _, ['2A','4A','6A','11','12A','13A'] ). +verb( 'photocopy', 'photocopies', 'photocopying', 'photocopied', 'photocopied', tran, ['6A'] ). +verb( 'photograph', 'photographs', 'photographing', 'photographed', 'photographed', tran, ['6A'] ). +verb( 'photosensitize', 'photosensitizes', 'photosensitizing', 'photosensitized', 'photosensitized', tran, [] ). +verb( 'photostat', 'photostats', 'photostatting', 'photostatted', 'photostatted', tran, [] ). +verb( 'phrase', 'phrases', 'phrasing', 'phrased', 'phrased', tran, ['6A'] ). +verb( 'pick', 'picks', 'picking', 'picked', 'picked', _, ['3A','6A','15B'] ). +verb( 'picket', 'pickets', 'picketing', 'picketed', 'picketed', _, ['2A','6A'] ). +verb( 'pickle', 'pickles', 'pickling', 'pickled', 'pickled', tran, ['6A'] ). +verb( 'picnic', 'picnics', 'picnicking', 'picnicked', 'picnicked', intran, [] ). +verb( 'picture', 'pictures', 'picturing', 'pictured', 'pictured', tran, ['6A','14'] ). +verb( 'piddle', 'piddles', 'piddling', 'piddled', 'piddled', intran, [] ). +verb( 'piece', 'pieces', 'piecing', 'pieced', 'pieced', tran, ['6A','15A','15B'] ). +verb( 'pierce', 'pierces', 'piercing', 'pierced', 'pierced', _, ['2C','6A'] ). +verb( 'piffle', 'piffles', 'piffling', 'piffled', 'piffled', intran, [] ). +verb( 'pig', 'pigs', 'pigging', 'pigged', 'pigged', intran, [] ). +verb( 'pigeonhole', 'pigeonholes', 'pigeonholing', 'pigeonholed', 'pigeonholed', tran, [] ). +verb( 'pile', 'piles', 'piling', 'piled', 'piled', _, ['2C','6A','15A','15B'] ). +verb( 'pilfer', 'pilfers', 'pilfering', 'pilfered', 'pilfered', _, ['2A','6A'] ). +verb( 'pillage', 'pillages', 'pillaging', 'pillaged', 'pillaged', tran, [] ). +verb( 'pillow', 'pillows', 'pillowing', 'pillowed', 'pillowed', tran, ['6A'] ). +verb( 'pilot', 'pilots', 'piloting', 'piloted', 'piloted', tran, ['6A','15A'] ). +verb( 'pimp', 'pimps', 'pimping', 'pimped', 'pimped', intran, ['2A','3A'] ). +verb( 'pin', 'pins', 'pinning', 'pinned', 'pinned', tran, ['15A','15B'] ). +verb( 'pinch', 'pinches', 'pinching', 'pinched', 'pinched', _, ['2A','6A','15A','15B'] ). +verb( 'pine', 'pines', 'pining', 'pined', 'pined', intran, ['2A','2C','3A','4C'] ). +verb( 'ping', 'pings', 'pinging', 'pinged', 'pinged', intran, [] ). +verb( 'pinion', 'pinions', 'pinioning', 'pinioned', 'pinioned', tran, ['6A','15A','15B'] ). +verb( 'pink', 'pinks', 'pinking', 'pinked', 'pinked', _, ['6A','15B'] ). +verb( 'pinnacle', 'pinnacles', 'pinnacling', 'pinnacled', 'pinnacled', tran, [] ). +verb( 'pinpoint', 'pinpoints', 'pinpointing', 'pinpointed', 'pinpointed', tran, [] ). +verb( 'pioneer', 'pioneers', 'pioneering', 'pioneered', 'pioneered', _, ['2A','6A'] ). +verb( 'pip', 'pips', 'pipping', 'pipped', 'pipped', tran, ['6A'] ). +verb( 'pipe', 'pipes', 'piping', 'piped', 'piped', _, ['2A','2C','6A','15A'] ). +verb( 'pique', 'piques', 'piquing', 'piqued', 'piqued', tran, ['6A'] ). +verb( 'pirate', 'pirates', 'pirating', 'pirated', 'pirated', tran, ['6A'] ). +verb( 'pirouette', 'pirouettes', 'pirouetting', 'pirouetted', 'pirouetted', intran, [] ). +verb( 'piss', 'pisses', 'pissing', 'pissed', 'pissed', _, [] ). +verb( 'pit', 'pits', 'pitting', 'pitted', 'pitted', tran, ['6A','14'] ). +verb( 'pitch', 'pitches', 'pitching', 'pitched', 'pitched', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'pitchfork', 'pitchforks', 'pitchforking', 'pitchforked', 'pitchforked', tran, [] ). +verb( 'pity', 'pities', 'pitying', 'pitied', 'pitied', tran, ['6A'] ). +verb( 'pivot', 'pivots', 'pivoting', 'pivoted', 'pivoted', _, ['3A','6A'] ). +verb( 'placard', 'placards', 'placarding', 'placarded', 'placarded', tran, ['6A'] ). +verb( 'placate', 'placates', 'placating', 'placated', 'placated', tran, ['6A'] ). +verb( 'place', 'places', 'placing', 'placed', 'placed', tran, ['6A','15A','15B'] ). +verb( 'plagiarize', 'plagiarizes', 'plagiarizing', 'plagiarized', 'plagiarized', tran, ['6A'] ). +verb( 'plague', 'plagues', 'plaguing', 'plagued', 'plagued', tran, ['6A','14'] ). +verb( 'plain', 'plains', 'plaining', 'plained', 'plained', _, [] ). +verb( 'plait', 'plaits', 'plaiting', 'plaited', 'plaited', tran, ['6A'] ). +verb( 'plan', 'plans', 'planning', 'planned', 'planned', tran, ['6A','7A','15B'] ). +verb( 'plane', 'planes', 'planing', 'planed', 'planed', _, ['2A','2D','15B','22'] ). +verb( 'plank', 'planks', 'planking', 'planked', 'planked', tran, ['6A','15B'] ). +verb( 'plant', 'plants', 'planting', 'planted', 'planted', tran, ['6A','15A','15B'] ). +verb( 'plash', 'plashes', 'plashing', 'plashed', 'plashed', _, ['6A'] ). +verb( 'plaster', 'plasters', 'plastering', 'plastered', 'plastered', tran, ['6A','14'] ). +verb( 'plate', 'plates', 'plating', 'plated', 'plated', tran, ['6A','14'] ). +verb( 'play', 'plays', 'playing', 'played', 'played', _, ['2A','2B','2C','3A','6A','12B','12C','13B','14','15A','15B','16B'] ). +verb( 'pleach', 'pleaches', 'pleaching', 'pleached', 'pleached', tran, ['6A'] ). +verb( 'plead', 'pleads', 'pleading', 'pleaded', 'pleaded', _, ['3A','6A'] ). +verb( 'please', 'pleases', 'pleasing', 'pleased', 'pleased', _, ['2A','6A'] ). +verb( 'pleat', 'pleats', 'pleating', 'pleated', 'pleated', tran, ['6A'] ). +verb( 'pledge', 'pledges', 'pledging', 'pledged', 'pledged', tran, ['6A'] ). +verb( 'plight', 'plights', 'plighting', 'plighted', 'plighted', tran, ['6A'] ). +verb( 'plod', 'plods', 'plodding', 'plodded', 'plodded', _, ['2C'] ). +verb( 'plonk', 'plonks', 'plonking', 'plonked', 'plonked', intran, [] ). +verb( 'plop', 'plops', 'plopping', 'plopped', 'plopped', intran, [] ). +verb( 'plot', 'plots', 'plotting', 'plotted', 'plotted', _, ['2A','3A','4A','6A','8','10','15B'] ). +verb( 'plough', 'ploughs', 'ploughing', 'ploughed', 'ploughed', _, ['3A','6A','15B'] ). +verb( 'pluck', 'plucks', 'plucking', 'plucked', 'plucked', _, ['3A','6A','15B'] ). +verb( 'plug', 'plugs', 'plugging', 'plugged', 'plugged', _, ['2C','6A','15B'] ). +verb( 'plumb', 'plumbs', 'plumbing', 'plumbed', 'plumbed', tran, ['6A'] ). +verb( 'plume', 'plumes', 'pluming', 'plumed', 'plumed', tran, ['6A'] ). +verb( 'plummet', 'plummets', 'plummetting', 'plummetted', 'plummetted', intran, ['2A'] ). +verb( 'plump', 'plumps', 'plumping', 'plumped', 'plumped', _, ['2A','2C','3A','6A','15B'] ). +verb( 'plunder', 'plunders', 'plundering', 'plundered', 'plundered', _, ['2A','6A','14'] ). +verb( 'plunge', 'plunges', 'plunging', 'plunged', 'plunged', _, ['2A','2C','6A','14'] ). +verb( 'ply', 'plies', 'plying', 'plied', 'plied', _, ['2C','6A'] ). +verb( 'poach', 'poaches', 'poaching', 'poached', 'poached', _, ['2A','3A','6A'] ). +verb( 'pocket', 'pockets', 'pocketing', 'pocketed', 'pocketed', tran, ['6A'] ). +verb( 'pod', 'pods', 'podding', 'podded', 'podded', _, ['2A','2C','6A'] ). +verb( 'point', 'points', 'pointing', 'pointed', 'pointed', _, ['2A','3A','6A','14','15B'] ). +verb( 'poise', 'poises', 'poising', 'poised', 'poised', _, ['2C','6A','15A'] ). +verb( 'poison', 'poisons', 'poisoning', 'poisoned', 'poisoned', tran, ['6A'] ). +verb( 'poke', 'pokes', 'poking', 'poked', 'poked', _, ['2C','6A','15A','15B'] ). +verb( 'polarize', 'polarizes', 'polarizing', 'polarized', 'polarized', tran, ['6A'] ). +verb( 'poleax', 'poleaxes', 'poleaxing', 'poleaxed', 'poleaxed', tran, ['6A'] ). +verb( 'poleaxe', 'poleaxes', 'poleaxing', 'poleaxed', 'poleaxed', tran, ['6A'] ). +verb( 'police', 'polices', 'policing', 'policed', 'policed', tran, ['6A'] ). +verb( 'polish', 'polishes', 'polishing', 'polished', 'polished', _, ['2A','6A','15B'] ). +verb( 'politicize', 'politicizes', 'politicizing', 'politicized', 'politicized', _, ['2A','6A'] ). +verb( 'politick', 'politicks', 'politicking', 'politicked', 'politicked', intran, ['2A'] ). +verb( 'poll', 'polls', 'polling', 'polled', 'polled', _, ['2A','2C','6A'] ). +verb( 'pollard', 'pollards', 'pollarding', 'pollarded', 'pollarded', tran, ['6A'] ). +verb( 'pollinate', 'pollinates', 'pollinating', 'pollinated', 'pollinated', tran, ['6A'] ). +verb( 'pollute', 'pollutes', 'polluting', 'polluted', 'polluted', tran, ['6A'] ). +verb( 'pomade', 'pomades', 'pomading', 'pomaded', 'pomaded', tran, [] ). +verb( 'pommel', 'pommels', 'pommelling', 'pommelled', 'pommelled', tran, [] ). +verb( 'ponder', 'ponders', 'pondering', 'pondered', 'pondered', _, ['2A','3A','6A','8','10'] ). +verb( 'poniard', 'poniards', 'poniarding', 'poniarded', 'poniarded', tran, ['6A'] ). +verb( 'pontificate', 'pontificates', 'pontificating', 'pontificated', 'pontificated', intran, ['2A'] ). +verb( 'pooh-pooh', 'pooh-poohs', 'pooh-poohing', 'pooh-poohed', 'pooh-poohed', tran, ['6A'] ). +verb( 'pool', 'pools', 'pooling', 'pooled', 'pooled', tran, ['6A'] ). +verb( 'pop', 'pops', 'popping', 'popped', 'popped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'popularize', 'popularizes', 'popularizing', 'popularized', 'popularized', tran, ['6A'] ). +verb( 'populate', 'populates', 'populating', 'populated', 'populated', tran, ['6A'] ). +verb( 'pore', 'pores', 'poring', 'pored', 'pored', intran, ['3A'] ). +verb( 'port', 'ports', 'porting', 'ported', 'ported', tran, ['6A'] ). +verb( 'portend', 'portends', 'portending', 'portended', 'portended', tran, ['6A'] ). +verb( 'portion', 'portions', 'portioning', 'portioned', 'portioned', tran, ['14','15B'] ). +verb( 'portray', 'portrays', 'portraying', 'portrayed', 'portrayed', tran, ['6A'] ). +verb( 'pose', 'poses', 'posing', 'posed', 'posed', _, ['2A','2C','3A','6A'] ). +verb( 'posh', 'poshes', 'poshing', 'poshed', 'poshed', tran, ['15B'] ). +verb( 'posit', 'posits', 'positing', 'posited', 'posited', tran, ['6A'] ). +verb( 'position', 'positions', 'positioning', 'positioned', 'positioned', tran, ['6A'] ). +verb( 'possess', 'possesses', 'possessing', 'possessed', 'possessed', tran, ['6A'] ). +verb( 'post', 'posts', 'posting', 'posted', 'posted', _, ['3A','6A','15A','15B'] ). +verb( 'postdate', 'postdates', 'postdating', 'postdated', 'postdated', tran, ['6A'] ). +verb( 'postmark', 'postmarks', 'postmarking', 'postmarked', 'postmarked', tran, [] ). +verb( 'postpone', 'postpones', 'postponing', 'postponed', 'postponed', tran, ['6A','6C'] ). +verb( 'postulate', 'postulates', 'postulating', 'postulated', 'postulated', tran, ['6A'] ). +verb( 'posture', 'postures', 'posturing', 'postured', 'postured', _, ['2A','6A'] ). +verb( 'pot', 'pots', 'potting', 'potted', 'potted', _, ['3A','6A','15B'] ). +verb( 'potter', 'potters', 'pottering', 'pottered', 'pottered', intran, ['2A','2C'] ). +verb( 'pouch', 'pouches', 'pouching', 'pouched', 'pouched', tran, ['2A','6A'] ). +verb( 'poultice', 'poultices', 'poulticing', 'poulticed', 'poulticed', tran, ['6A'] ). +verb( 'pounce', 'pounces', 'pouncing', 'pounced', 'pounced', intran, ['3A'] ). +verb( 'pound', 'pounds', 'pounding', 'pounded', 'pounded', _, ['2C','3A','6A','15A'] ). +verb( 'pour', 'pours', 'pouring', 'poured', 'poured', _, ['2C','6A','12B','13B','14','15A','15B'] ). +verb( 'pout', 'pouts', 'pouting', 'pouted', 'pouted', _, ['2A','6A'] ). +verb( 'powder', 'powders', 'powdering', 'powdered', 'powdered', _, ['2A','6A'] ). +verb( 'power', 'powers', 'powering', 'powered', 'powered', tran, ['6A'] ). +verb( 'power-dive', 'power-dives', 'power-diving', 'power-dived', 'power-dived', tran, [] ). +verb( 'powwow', 'powwows', 'powwowing', 'powwowed', 'powwowed', intran, [] ). +verb( 'pr_ecis', 'pr_ecises', 'pr_ecising', 'pr_ecised', 'pr_ecised', tran, [] ). +verb( 'practise', 'practises', 'practising', 'practised', 'practised', _, ['2A','2B','3A','4A','6A','6C'] ). +verb( 'praise', 'praises', 'praising', 'praised', 'praised', tran, ['6A'] ). +verb( 'prance', 'prances', 'prancing', 'pranced', 'pranced', intran, ['2A','2C'] ). +verb( 'prate', 'prates', 'prating', 'prated', 'prated', intran, ['2A','2C'] ). +verb( 'prattle', 'prattles', 'prattling', 'prattled', 'prattled', intran, ['2A','2C'] ). +verb( 'prawn', 'prawns', 'prawning', 'prawned', 'prawned', intran, [] ). +verb( 'pray', 'prays', 'praying', 'prayed', 'prayed', _, ['2A','3A','11','14','17'] ). +verb( 'pre-empt', 'pre-empts', 'pre-empting', 'pre-empted', 'pre-empted', tran, ['6A'] ). +verb( 'pre-exist', 'pre-exists', 'pre-existing', 'pre-existed', 'pre-existed', intran, ['2A'] ). +verb( 'preach', 'preaches', 'preaching', 'preached', 'preached', _, ['2A','2B','2C','3A','6A','12A','13A'] ). +verb( 'preachify', 'preachifies', 'preachifying', 'preachified', 'preachified', intran, [] ). +verb( 'prearrange', 'prearranges', 'prearranging', 'prearranged', 'prearranged', tran, [] ). +verb( 'precede', 'precedes', 'preceding', 'preceded', 'preceded', _, ['2A','6A'] ). +verb( 'precipitate', 'precipitates', 'precipitating', 'precipitated', 'precipitated', tran, ['6A','14'] ). +verb( 'preclude', 'precludes', 'precluding', 'precluded', 'precluded', tran, ['6A','6C','14'] ). +verb( 'preconceive', 'preconceives', 'preconceiving', 'preconceived', 'preconceived', tran, ['6A'] ). +verb( 'predecease', 'predeceases', 'predeceasing', 'predeceased', 'predeceased', tran, [] ). +verb( 'predestinate', 'predestinates', 'predestinating', 'predestinated', 'predestinated', tran, [] ). +verb( 'predestine', 'predestines', 'predestining', 'predestined', 'predestined', tran, ['14','17'] ). +verb( 'predetermine', 'predetermines', 'predetermining', 'predetermined', 'predetermined', tran, ['6A','17'] ). +verb( 'predicate', 'predicates', 'predicating', 'predicated', 'predicated', tran, ['6A','9','17'] ). +verb( 'predict', 'predicts', 'predicting', 'predicted', 'predicted', tran, ['6A','9','10'] ). +verb( 'predigest', 'predigests', 'predigesting', 'predigested', 'predigested', tran, [] ). +verb( 'predispose', 'predisposes', 'predisposing', 'predisposed', 'predisposed', tran, ['14','17'] ). +verb( 'predominate', 'predominates', 'predominating', 'predominated', 'predominated', intran, ['2A','3A'] ). +verb( 'preen', 'preens', 'preening', 'preened', 'preened', tran, ['6A','14'] ). +verb( 'prefabricate', 'prefabricates', 'prefabricating', 'prefabricated', 'prefabricated', tran, ['6A'] ). +verb( 'preface', 'prefaces', 'prefacing', 'prefaced', 'prefaced', tran, ['14'] ). +verb( 'prefer', 'prefers', 'preferring', 'preferred', 'preferred', tran, ['6A','6D','7A','9','14','17'] ). +verb( 'prefigure', 'prefigures', 'prefiguring', 'prefigured', 'prefigured', tran, ['6A','9','10'] ). +verb( 'prefix', 'prefixes', 'prefixing', 'prefixed', 'prefixed', tran, ['6A','14'] ). +verb( 'preheat', 'preheats', 'preheating', 'preheated', 'preheated', tran, ['6A'] ). +verb( 'prejudge', 'prejudges', 'prejudging', 'prejudged', 'prejudged', tran, ['6A'] ). +verb( 'prejudice', 'prejudices', 'prejudicing', 'prejudiced', 'prejudiced', tran, ['6A','15A'] ). +verb( 'prelude', 'preludes', 'preluding', 'preluded', 'preluded', tran, ['6A'] ). +verb( 'premeditate', 'premeditates', 'premeditating', 'premeditated', 'premeditated', tran, ['6A'] ). +verb( 'premise', 'premises', 'premising', 'premised', 'premised', tran, ['6A','9'] ). +verb( 'premiss', 'premisses', 'premissing', 'premissed', 'premissed', tran, ['6A','9'] ). +verb( 'preoccupy', 'preoccupies', 'preoccupying', 'preoccupied', 'preoccupied', tran, ['6A'] ). +verb( 'preordain', 'preordains', 'preordaining', 'preordained', 'preordained', tran, ['6A','9'] ). +verb( 'prepare', 'prepares', 'preparing', 'prepared', 'prepared', _, ['3A','6A','7A','14'] ). +verb( 'prepay', 'prepays', 'prepaying', 'prepaid', 'prepaid', tran, ['6A'] ). +verb( 'preponderate', 'preponderates', 'preponderating', 'preponderated', 'preponderated', intran, ['2A','2C'] ). +verb( 'prepossess', 'prepossesses', 'prepossessing', 'prepossessed', 'prepossessed', tran, ['6A','15A'] ). +verb( 'prerecord', 'prerecords', 'prerecording', 'prerecorded', 'prerecorded', tran, ['6A'] ). +verb( 'presage', 'presages', 'presaging', 'presaged', 'presaged', tran, ['6A'] ). +verb( 'prescribe', 'prescribes', 'prescribing', 'prescribed', 'prescribed', _, ['2A','3A','6A','8','10','14','21'] ). +verb( 'present', 'presents', 'presenting', 'presented', 'presented', tran, ['6A','14','15A'] ). +verb( 'preserve', 'preserves', 'preserving', 'preserved', 'preserved', tran, ['6A','14'] ). +verb( 'preside', 'presides', 'presiding', 'presided', 'presided', intran, ['2A','2C','3A'] ). +verb( 'press', 'presses', 'pressing', 'pressed', 'pressed', _, ['2A','2C','3A','4A','6A','14','15A','15B','17','22'] ). +verb( 'presume', 'presumes', 'presuming', 'presumed', 'presumed', _, ['3A','6A','7A','9','25'] ). +verb( 'presuppose', 'presupposes', 'presupposing', 'presupposed', 'presupposed', tran, ['6A','9'] ). +verb( 'pretend', 'pretends', 'pretending', 'pretended', 'pretended', _, ['3A','6A','7A','9'] ). +verb( 'prettify', 'prettifies', 'prettifying', 'prettified', 'prettified', tran, ['6A'] ). +verb( 'prevail', 'prevails', 'prevailing', 'prevailed', 'prevailed', intran, ['2A','3A'] ). +verb( 'prevaricate', 'prevaricates', 'prevaricating', 'prevaricated', 'prevaricated', intran, ['2A'] ). +verb( 'prevent', 'prevents', 'preventing', 'prevented', 'prevented', tran, ['6A','14','19C'] ). +verb( 'preview', 'previews', 'previewing', 'previewed', 'previewed', tran, [] ). +verb( 'prey', 'preys', 'preying', 'preyed', 'preyed', intran, ['3A'] ). +verb( 'price', 'prices', 'pricing', 'priced', 'priced', tran, ['6A'] ). +verb( 'prick', 'pricks', 'pricking', 'pricked', 'pricked', _, ['2A','6A','15B'] ). +verb( 'prickle', 'prickles', 'prickling', 'prickled', 'prickled', _, [] ). +verb( 'pride', 'prides', 'priding', 'prided', 'prided', tran, [] ). +verb( 'prim', 'prims', 'primming', 'primmed', 'primmed', tran, [] ). +verb( 'prime', 'primes', 'priming', 'primed', 'primed', tran, ['6A'] ). +verb( 'primp', 'primps', 'primping', 'primped', 'primped', tran, [] ). +verb( 'prink', 'prinks', 'prinking', 'prinked', 'prinked', tran, [] ). +verb( 'print', 'prints', 'printing', 'printed', 'printed', _, ['2A','6A','15B'] ). +verb( 'prise', 'prises', 'prising', 'prised', 'prised', tran, ['15A','15B'] ). +verb( 'prize', 'prizes', 'prizing', 'prized', 'prized', tran, ['15A','15B'] ). +verb( 'probate', 'probates', 'probating', 'probated', 'probated', tran, [] ). +verb( 'probe', 'probes', 'probing', 'probed', 'probed', tran, ['6A'] ). +verb( 'proceed', 'proceeds', 'proceeding', 'proceeded', 'proceeded', intran, ['2A','3A','4C'] ). +verb( 'process', 'processes', 'processing', 'processed', 'processed', tran, ['6A'] ). +verb( 'process', 'processes', 'processing', 'processed', 'processed', intran, [] ). +verb( 'proclaim', 'proclaims', 'proclaiming', 'proclaimed', 'proclaimed', tran, ['6A','9','23','25'] ). +verb( 'procrastinate', 'procrastinates', 'procrastinating', 'procrastinated', 'procrastinated', intran, ['2A'] ). +verb( 'procreate', 'procreates', 'procreating', 'procreated', 'procreated', tran, ['6A'] ). +verb( 'procure', 'procures', 'procuring', 'procured', 'procured', tran, ['6A','12B','13B'] ). +verb( 'prod', 'prods', 'prodding', 'prodded', 'prodded', _, ['3A','6A'] ). +verb( 'produce', 'produces', 'producing', 'produced', 'produced', _, ['2A','6A'] ). +verb( 'profane', 'profanes', 'profaning', 'profaned', 'profaned', tran, ['6A'] ). +verb( 'profess', 'professes', 'professing', 'professed', 'professed', _, ['6A','7A','9','25'] ). +verb( 'proffer', 'proffers', 'proffering', 'proffered', 'proffered', tran, ['6A','7A'] ). +verb( 'profile', 'profiles', 'profiling', 'profiled', 'profiled', tran, [] ). +verb( 'profit', 'profits', 'profiting', 'profited', 'profited', _, ['3A','6A','13A'] ). +verb( 'profiteer', 'profiteers', 'profiteering', 'profiteered', 'profiteered', intran, ['2A'] ). +verb( 'prognosticate', 'prognosticates', 'prognosticating', 'prognosticated', 'prognosticated', tran, ['6A','9'] ). +verb( 'program', 'programs', 'programming', 'programmed', 'programmed', tran, ['6A'] ). +verb( 'programme', 'programmes', 'programming', 'programmed', 'programmed', tran, ['6A'] ). +verb( 'progress', 'progresses', 'progressing', 'progressed', 'progressed', intran, ['2A','2C'] ). +verb( 'prohibit', 'prohibits', 'prohibiting', 'prohibited', 'prohibited', tran, ['6A','14'] ). +verb( 'project', 'projects', 'projecting', 'projected', 'projected', _, ['2A','2C','6A','14','15A'] ). +verb( 'prolapse', 'prolapses', 'prolapsing', 'prolapsed', 'prolapsed', intran, [] ). +verb( 'proliferate', 'proliferates', 'proliferating', 'proliferated', 'proliferated', _, ['2A','6A'] ). +verb( 'prolong', 'prolongs', 'prolonging', 'prolonged', 'prolonged', tran, ['6A'] ). +verb( 'promenade', 'promenades', 'promenading', 'promenaded', 'promenaded', _, ['2A','2C','6A','15A'] ). +verb( 'promise', 'promises', 'promising', 'promised', 'promised', _, ['2A','6A','7A','9','11','12A','13A','17'] ). +verb( 'promote', 'promotes', 'promoting', 'promoted', 'promoted', tran, ['6A','14'] ). +verb( 'prompt', 'prompts', 'prompting', 'prompted', 'prompted', tran, ['6A','17'] ). +verb( 'promulgate', 'promulgates', 'promulgating', 'promulgated', 'promulgated', tran, ['6A'] ). +verb( 'pronounce', 'pronounces', 'pronouncing', 'pronounced', 'pronounced', _, ['2A','3A','6A','9','22','25'] ). +verb( 'proof', 'proofs', 'proofing', 'proofed', 'proofed', tran, ['6A'] ). +verb( 'proofread', 'proofreads', 'proofreading', 'proofread', 'proofread', _, ['2A','6A'] ). +verb( 'prop', 'props', 'propping', 'propped', 'propped', tran, ['6A','15A','15B','22'] ). +verb( 'propagandize', 'propagandizes', 'propagandizing', 'propagandized', 'propagandized', intran, [] ). +verb( 'propagate', 'propagates', 'propagating', 'propagated', 'propagated', _, ['2A','6A'] ). +verb( 'propel', 'propels', 'propelling', 'propelled', 'propelled', tran, ['6A','15A'] ). +verb( 'prophesy', 'prophesies', 'prophesying', 'prophesied', 'prophesied', _, ['2A','2C','6A','9','10'] ). +verb( 'propitiate', 'propitiates', 'propitiating', 'propitiated', 'propitiated', tran, ['6A'] ). +verb( 'proportion', 'proportions', 'proportioning', 'proportioned', 'proportioned', tran, ['6A','14'] ). +verb( 'propose', 'proposes', 'proposing', 'proposed', 'proposed', _, ['2A','6A','6D','7A','9','14'] ). +verb( 'proposition', 'propositions', 'propositioning', 'propositioned', 'propositioned', tran, ['6A'] ). +verb( 'propound', 'propounds', 'propounding', 'propounded', 'propounded', tran, ['6A'] ). +verb( 'prorogue', 'prorogues', 'proroguing', 'prorogued', 'prorogued', tran, ['6A'] ). +verb( 'proscribe', 'proscribes', 'proscribing', 'proscribed', 'proscribed', tran, ['6A'] ). +verb( 'prosecute', 'prosecutes', 'prosecuting', 'prosecuted', 'prosecuted', tran, ['6A','14'] ). +verb( 'proselytize', 'proselytizes', 'proselytizing', 'proselytized', 'proselytized', _, ['2A','6A'] ). +verb( 'prospect', 'prospects', 'prospecting', 'prospected', 'prospected', intran, ['2A','3A'] ). +verb( 'prosper', 'prospers', 'prospering', 'prospered', 'prospered', _, ['2A','6A'] ). +verb( 'prostitute', 'prostitutes', 'prostituting', 'prostituted', 'prostituted', tran, ['6A'] ). +verb( 'prostrate', 'prostrates', 'prostrating', 'prostrated', 'prostrated', tran, ['6A'] ). +verb( 'protect', 'protects', 'protecting', 'protected', 'protected', tran, ['6A','14'] ). +verb( 'protest', 'protests', 'protesting', 'protested', 'protested', _, ['2A','3A','6A','9'] ). +verb( 'protract', 'protracts', 'protracting', 'protracted', 'protracted', tran, ['6A'] ). +verb( 'protrude', 'protrudes', 'protruding', 'protruded', 'protruded', _, ['2A','6A'] ). +verb( 'prove', 'proves', 'proving', 'proved', 'proved', _, ['4D','6A','9','14','25'] ). +verb( 'provide', 'provides', 'providing', 'provided', 'provided', _, ['3A','6A','9','14'] ). +verb( 'provision', 'provisions', 'provisioning', 'provisioned', 'provisioned', tran, ['6A'] ). +verb( 'provoke', 'provokes', 'provoking', 'provoked', 'provoked', tran, ['6A','14','17'] ). +verb( 'prowl', 'prowls', 'prowling', 'prowled', 'prowled', _, ['2A','2C','6A'] ). +verb( 'prune', 'prunes', 'pruning', 'pruned', 'pruned', tran, ['6A','14','15B'] ). +verb( 'pry', 'pries', 'prying', 'pried', 'pried', _, ['2A','2C','3A','15A','15B','22'] ). +verb( 'psychoanalyse', 'psychoanalyses', 'psychoanalysing', 'psychoanalysed', 'psychoanalysed', tran, [] ). +verb( 'psychoanalyze', 'psychoanalyzes', 'psychoanalyzing', 'psychoanalyzed', 'psychoanalyzed', tran, [] ). +verb( 'pub-crawl', 'pub-crawls', 'pub-crawling', 'pub-crawled', 'pub-crawled', intran, [] ). +verb( 'publicize', 'publicizes', 'publicizing', 'publicized', 'publicized', tran, ['6A'] ). +verb( 'publish', 'publishes', 'publishing', 'published', 'published', tran, ['6A'] ). +verb( 'pucker', 'puckers', 'puckering', 'puckered', 'puckered', _, ['2A','2C','6A','15B'] ). +verb( 'puddle', 'puddles', 'puddling', 'puddled', 'puddled', tran, [] ). +verb( 'puff', 'puffs', 'puffing', 'puffed', 'puffed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'puke', 'pukes', 'puking', 'puked', 'puked', _, [] ). +verb( 'pule', 'pules', 'puling', 'puled', 'puled', intran, ['2A'] ). +verb( 'pull', 'pulls', 'pulling', 'pulled', 'pulled', _, ['2A','2C','3A','6A','15A','15B','22'] ). +verb( 'pullulate', 'pullulates', 'pullulating', 'pullulated', 'pullulated', intran, [] ). +verb( 'pulp', 'pulps', 'pulping', 'pulped', 'pulped', _, ['2A','6A'] ). +verb( 'pulsate', 'pulsates', 'pulsating', 'pulsated', 'pulsated', _, ['2A','6A'] ). +verb( 'pulse', 'pulses', 'pulsing', 'pulsed', 'pulsed', intran, ['2C'] ). +verb( 'pulverize', 'pulverizes', 'pulverizing', 'pulverized', 'pulverized', _, ['2A','6A'] ). +verb( 'pummel', 'pummels', 'pummelling', 'pummelled', 'pummelled', tran, ['6A','15B'] ). +verb( 'pump', 'pumps', 'pumping', 'pumped', 'pumped', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'pun', 'puns', 'punning', 'punned', 'punned', intran, ['2A','3A'] ). +verb( 'punch', 'punches', 'punching', 'punched', 'punched', tran, ['6A','15A','15B'] ). +verb( 'punctuate', 'punctuates', 'punctuating', 'punctuated', 'punctuated', tran, ['6A','15A'] ). +verb( 'puncture', 'punctures', 'puncturing', 'punctured', 'punctured', _, ['2A','6A'] ). +verb( 'punish', 'punishes', 'punishing', 'punished', 'punished', tran, ['6A','14'] ). +verb( 'punt', 'punts', 'punting', 'punted', 'punted', _, ['2A','6A'] ). +verb( 'purchase', 'purchases', 'purchasing', 'purchased', 'purchased', tran, ['6A'] ). +verb( 'purge', 'purges', 'purging', 'purged', 'purged', tran, ['6A','14','15A','15B'] ). +verb( 'purify', 'purifies', 'purifying', 'purified', 'purified', tran, ['6A','14'] ). +verb( 'purl', 'purls', 'purling', 'purled', 'purled', _, [] ). +verb( 'purloin', 'purloins', 'purloining', 'purloined', 'purloined', tran, ['6A'] ). +verb( 'purport', 'purports', 'purporting', 'purported', 'purported', tran, ['6A','7A','9'] ). +verb( 'purpose', 'purposes', 'purposing', 'purposed', 'purposed', tran, ['6A','6D','7A','9'] ). +verb( 'purr', 'purrs', 'purring', 'purred', 'purred', _, ['2A','2C','6A'] ). +verb( 'purse', 'purses', 'pursing', 'pursed', 'pursed', tran, ['6A','15B'] ). +verb( 'pursue', 'pursues', 'pursuing', 'pursued', 'pursued', tran, ['6A'] ). +verb( 'purvey', 'purveys', 'purveying', 'purveyed', 'purveyed', _, ['3A','6A','14'] ). +verb( 'push', 'pushes', 'pushing', 'pushed', 'pushed', _, ['2A','2C','3A','6A','14','15A','15B','17','22'] ). +verb( 'pussyfoot', 'pussyfoots', 'pussyfooting', 'pussyfooted', 'pussyfooted', intran, ['2A','2C'] ). +verb( 'put', 'puts', 'putting', 'put', 'put', _, ['2C','6A','14','15A','15B','22'] ). +verb( 'put', 'puts', 'putting', 'putted', 'putted', _, [] ). +verb( 'putrefy', 'putrefies', 'putrefying', 'putrefied', 'putrefied', _, ['2A','6A'] ). +verb( 'putt', 'putts', 'putting', 'putted', 'putted', _, ['2A','6A'] ). +verb( 'putter', 'putters', 'puttering', 'puttered', 'puttered', _, [] ). +verb( 'putty', 'putties', 'puttying', 'puttied', 'puttied', tran, ['6A','15B'] ). +verb( 'puzzle', 'puzzles', 'puzzling', 'puzzled', 'puzzled', _, ['3A','6A','15B'] ). +verb( 'quack', 'quacks', 'quacking', 'quacked', 'quacked', intran, [] ). +verb( 'quadruple', 'quadruples', 'quadrupling', 'quadrupled', 'quadrupled', _, ['2A','6A'] ). +verb( 'quadruplicate', 'quadruplicates', 'quadruplicating', 'quadruplicated', 'quadruplicated', tran, ['6A'] ). +verb( 'quaff', 'quaffs', 'quaffing', 'quaffed', 'quaffed', _, ['2A','6A','15B'] ). +verb( 'quail', 'quails', 'quailing', 'quailed', 'quailed', intran, ['2A','3A'] ). +verb( 'quake', 'quakes', 'quaking', 'quaked', 'quaked', intran, ['2A','2C'] ). +verb( 'qualify', 'qualifies', 'qualifying', 'qualified', 'qualified', _, ['2C','3A','4A','6A','14','16B','17'] ). +verb( 'quantify', 'quantifies', 'quantifying', 'quantified', 'quantified', tran, ['6A'] ). +verb( 'quarantine', 'quarantines', 'quarantining', 'quarantined', 'quarantined', tran, ['6A'] ). +verb( 'quarrel', 'quarrels', 'quarrelling', 'quarrelled', 'quarrelled', intran, ['2A','2C','3A'] ). +verb( 'quarry', 'quarries', 'quarrying', 'quarried', 'quarried', _, ['2A','2C','6A','15A','15B'] ). +verb( 'quarter', 'quarters', 'quartering', 'quartered', 'quartered', tran, ['6A','15A'] ). +verb( 'quash', 'quashes', 'quashing', 'quashed', 'quashed', tran, ['6A'] ). +verb( 'quaver', 'quavers', 'quavering', 'quavered', 'quavered', _, ['2A','6A','15B'] ). +verb( 'queen', 'queens', 'queening', 'queened', 'queened', tran, [] ). +verb( 'queer', 'queers', 'queering', 'queered', 'queered', tran, ['6A'] ). +verb( 'quell', 'quells', 'quelling', 'quelled', 'quelled', tran, ['6A'] ). +verb( 'quench', 'quenches', 'quenching', 'quenched', 'quenched', tran, ['6A'] ). +verb( 'query', 'queries', 'querying', 'queried', 'queried', tran, ['6A','10'] ). +verb( 'quest', 'quests', 'questing', 'quested', 'quested', intran, ['3A'] ). +verb( 'question', 'questions', 'questioning', 'questioned', 'questioned', tran, ['6A','10'] ). +verb( 'queue', 'queues', 'queueing', 'queued', 'queued', intran, ['2A','2C','3A'] ). +verb( 'quibble', 'quibbles', 'quibbling', 'quibbled', 'quibbled', intran, [] ). +verb( 'quick-freeze', 'quick-freezes', 'quick-freezing', 'quick-froze', 'quick-frozen', tran, [] ). +verb( 'quicken', 'quickens', 'quickening', 'quickened', 'quickened', _, ['2A','6A'] ). +verb( 'quiet', 'quiets', 'quieting', 'quieted', 'quieted', _, [] ). +verb( 'quieten', 'quietens', 'quietening', 'quietened', 'quietened', _, ['2C','6A','15B'] ). +verb( 'quilt', 'quilts', 'quilting', 'quilted', 'quilted', tran, [] ). +verb( 'quip', 'quips', 'quipping', 'quipped', 'quipped', intran, [] ). +verb( 'quit', 'quits', 'quitting', 'quitted', 'quitted', tran, ['2A','6A','6D'] ). +verb( 'quiver', 'quivers', 'quivering', 'quivered', 'quivered', _, ['2A','6A'] ). +verb( 'quiz', 'quizzes', 'quizzing', 'quizzed', 'quizzed', tran, ['6A'] ). +verb( 'quote', 'quotes', 'quoting', 'quoted', 'quoted', tran, ['6A','13A','14'] ). +verb( 'rabbit', 'rabbits', 'rabbiting', 'rabbited', 'rabbited', intran, [] ). +verb( 'race', 'races', 'racing', 'raced', 'raced', _, ['2A','2C','3A','4A','6A','15A'] ). +verb( 'rack', 'racks', 'racking', 'racked', 'racked', tran, ['6A','15A'] ). +verb( 'racket', 'rackets', 'racketing', 'racketed', 'racketed', intran, ['2A','2C'] ). +verb( 'radiate', 'radiates', 'radiating', 'radiated', 'radiated', _, ['2A','3A','6A'] ). +verb( 'raffle', 'raffles', 'raffling', 'raffled', 'raffled', tran, ['6A','15B'] ). +verb( 'raft', 'rafts', 'rafting', 'rafted', 'rafted', _, ['2C','6A','15A','15B'] ). +verb( 'rag', 'rags', 'ragging', 'ragged', 'ragged', tran, ['6A'] ). +verb( 'rage', 'rages', 'raging', 'raged', 'raged', intran, ['2A','2C'] ). +verb( 'raid', 'raids', 'raiding', 'raided', 'raided', _, ['2A','6A'] ). +verb( 'rail', 'rails', 'railing', 'railed', 'railed', _, ['2A','3A','6A','15B'] ). +verb( 'railroad', 'railroads', 'railroading', 'railroaded', 'railroaded', tran, ['15A','15B'] ). +verb( 'rain', 'rains', 'raining', 'rained', 'rained', _, ['2C','14'] ). +verb( 'raise', 'raises', 'raising', 'raised', 'raised', tran, ['6A','15A','15B'] ). +verb( 'rake', 'rakes', 'raking', 'raked', 'raked', _, ['2A','2C','3A','6A','14','15A','15B','22'] ). +verb( 'rally', 'rallies', 'rallying', 'rallied', 'rallied', _, ['2A','2C','6A','15A'] ). +verb( 'ram', 'rams', 'ramming', 'rammed', 'rammed', tran, ['6A','15A','15B'] ). +verb( 'ramble', 'rambles', 'rambling', 'rambled', 'rambled', intran, ['2A','2C'] ). +verb( 'ramify', 'ramifies', 'ramifying', 'ramified', 'ramified', _, ['2A','6A'] ). +verb( 'ramp', 'ramps', 'ramping', 'ramped', 'ramped', tran, ['2C'] ). +verb( 'rampage', 'rampages', 'rampaging', 'rampaged', 'rampaged', intran, ['2A'] ). +verb( 'range', 'ranges', 'ranging', 'ranged', 'ranged', _, ['2C','3A','6A','15A'] ). +verb( 'rank', 'ranks', 'ranking', 'ranked', 'ranked', _, ['3A','6A','15A','16B'] ). +verb( 'rankle', 'rankles', 'rankling', 'rankled', 'rankled', intran, ['2A'] ). +verb( 'ransack', 'ransacks', 'ransacking', 'ransacked', 'ransacked', tran, ['6A','14','16A'] ). +verb( 'ransom', 'ransoms', 'ransoming', 'ransomed', 'ransomed', tran, ['6A'] ). +verb( 'rant', 'rants', 'ranting', 'ranted', 'ranted', _, ['2A','6A'] ). +verb( 'rap', 'raps', 'rapping', 'rapped', 'rapped', _, ['2A','2C','6A','15B'] ). +verb( 'rape', 'rapes', 'raping', 'raped', 'raped', tran, ['6A'] ). +verb( 'rarefy', 'rarefies', 'rarefying', 'rarefied', 'rarefied', _, ['2A','6A'] ). +verb( 'rase', 'rases', 'rasing', 'rased', 'rased', tran, ['6A'] ). +verb( 'rasp', 'rasps', 'rasping', 'rasped', 'rasped', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'rat', 'rats', 'ratting', 'ratted', 'ratted', tran, ['2A','3A'] ). +verb( 'rate', 'rates', 'rating', 'rated', 'rated', _, ['2C','2D','6A','14','15A','16B'] ). +verb( 'ratify', 'ratifies', 'ratifying', 'ratified', 'ratified', tran, ['6A'] ). +verb( 'ration', 'rations', 'rationing', 'rationed', 'rationed', tran, ['6A','15B'] ). +verb( 'rationalize', 'rationalizes', 'rationalizing', 'rationalized', 'rationalized', tran, ['6A'] ). +verb( 'rattle', 'rattles', 'rattling', 'rattled', 'rattled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'ravage', 'ravages', 'ravaging', 'ravaged', 'ravaged', _, ['6A'] ). +verb( 'rave', 'raves', 'raving', 'raved', 'raved', intran, ['2A','2C','3A','15B'] ). +verb( 'ravel', 'ravels', 'ravelling', 'ravelled', 'ravelled', _, ['2A','2C','6A','15B'] ). +verb( 'ravish', 'ravishes', 'ravishing', 'ravished', 'ravished', tran, ['6A'] ). +verb( 'ray', 'rays', 'raying', 'rayed', 'rayed', _, [] ). +verb( 'raze', 'razes', 'razing', 'razed', 'razed', tran, ['6A'] ). +verb( 'razor', 'razors', 'razoring', 'razored', 'razored', tran, [] ). +verb( 're-address', 're-addresses', 're-addressing', 're-addressed', 're-addressed', tran, ['6A'] ). +verb( 're-afforest', 're-afforests', 're-afforesting', 're-afforested', 're-afforested', tran, [] ). +verb( 're-count', 're-counts', 're-counting', 're-counted', 're-counted', tran, ['6A'] ). +verb( 're-cover', 're-covers', 're-covering', 're-covered', 're-covered', tran, ['6A'] ). +verb( 're-echo', 're-echos', 're-echoing', 're-echoed', 're-echoed', intran, ['2A'] ). +verb( 're-form', 're-forms', 're-forming', 're-formed', 're-formed', _, [] ). +verb( 're-join', 're-joins', 're-joining', 're-joined', 're-joined', tran, ['6A'] ). +verb( 'reach', 'reaches', 'reaching', 'reached', 'reached', _, ['2C','3A','6A','12B','13B','15B'] ). +verb( 'react', 'reacts', 'reacting', 'reacted', 'reacted', intran, ['2A','3A'] ). +verb( 'read', 'reads', 'reading', 'read', 'read', _, ['2A','2B','2C','6A','12A','13A','15A','15B','16B'] ). +verb( 'readjust', 'readjusts', 'readjusting', 'readjusted', 'readjusted', tran, ['3A','6A','15A'] ). +verb( 'readmit', 'readmits', 'readmitting', 'readmitted', 'readmitted', tran, ['3A','6A','6C','9','14','25'] ). +verb( 'reaffirm', 'reaffirms', 'reaffirming', 'reaffirmed', 'reaffirmed', tran, ['6A','9'] ). +verb( 'realize', 'realizes', 'realizing', 'realized', 'realized', tran, ['6A','9','10','14'] ). +verb( 'reanimate', 'reanimates', 'reanimating', 'reanimated', 'reanimated', tran, ['6A'] ). +verb( 'reap', 'reaps', 'reaping', 'reaped', 'reaped', _, ['2A','6A'] ). +verb( 'reappear', 'reappears', 'reappearing', 'reappeared', 'reappeared', intran, ['2A'] ). +verb( 'rear', 'rears', 'rearing', 'reared', 'reared', _, ['2A','2C','6A','15B'] ). +verb( 'rearm', 'rearms', 'rearming', 'rearmed', 'rearmed', _, ['2A','6A'] ). +verb( 'rearrange', 'rearranges', 'rearranging', 'rearranged', 'rearranged', tran, ['3A','4C','6A','14','15A'] ). +verb( 'reason', 'reasons', 'reasoning', 'reasoned', 'reasoned', _, ['2A','3A','6A','9','14'] ). +verb( 'reassemble', 'reassembles', 'reassembling', 'reassembled', 'reassembled', _, ['2A','6A'] ). +verb( 'reassess', 'reassesses', 'reassessing', 'reassessed', 'reassessed', tran, ['6A','14'] ). +verb( 'reassure', 'reassures', 'reassuring', 'reassured', 'reassured', tran, ['6A'] ). +verb( 'reattribute', 'reattributes', 'reattributing', 'reattributed', 'reattributed', tran, ['14'] ). +verb( 'rebel', 'rebels', 'rebelling', 'rebelled', 'rebelled', intran, ['2A','3A'] ). +verb( 'rebind', 'rebinds', 'rebinding', 'rebound', 'rebound', tran, ['6A'] ). +verb( 'rebound', 'rebounds', 'rebounding', 'rebounded', 'rebounded', intran, ['2A','3A'] ). +verb( 'rebuff', 'rebuffs', 'rebuffing', 'rebuffed', 'rebuffed', tran, ['6A'] ). +verb( 'rebuild', 'rebuilds', 'rebuilding', 'rebuilt', 'rebuilt', tran, ['6A'] ). +verb( 'rebuke', 'rebukes', 'rebuking', 'rebuked', 'rebuked', tran, ['6A','14'] ). +verb( 'rebut', 'rebuts', 'rebutting', 'rebutted', 'rebutted', tran, ['6A'] ). +verb( 'recall', 'recalls', 'recalling', 'recalled', 'recalled', tran, ['6A','6C','8','9','10','14','19C'] ). +verb( 'recant', 'recants', 'recanting', 'recanted', 'recanted', _, ['2A','6A'] ). +verb( 'recap', 'recaps', 'recapping', 'recapped', 'recapped', _, [] ). +verb( 'recap', 'recaps', 'recapping', 'recapped', 'recapped', tran, [] ). +verb( 'recapitulate', 'recapitulates', 'recapitulating', 'recapitulated', 'recapitulated', _, ['2A','6A'] ). +verb( 'recapture', 'recaptures', 'recapturing', 'recaptured', 'recaptured', tran, ['6A'] ). +verb( 'recast', 'recasts', 'recasting', 'recast', 'recast', tran, ['6A'] ). +verb( 'recede', 'recedes', 'receding', 'receded', 'receded', intran, ['2A','3A'] ). +verb( 'receipt', 'receipts', 'receipting', 'receipted', 'receipted', tran, ['6A'] ). +verb( 'receive', 'receives', 'receiving', 'received', 'received', _, ['2A','6A'] ). +verb( 'recess', 'recesses', 'recessing', 'recessed', 'recessed', tran, ['6A'] ). +verb( 'reciprocate', 'reciprocates', 'reciprocating', 'reciprocated', 'reciprocated', _, ['2A','6A'] ). +verb( 'recite', 'recites', 'reciting', 'recited', 'recited', _, ['2A','6A','15A'] ). +verb( 'reckon', 'reckons', 'reckoning', 'reckoned', 'reckoned', _, ['2A','6A','7A','9','15B','16B','25'] ). +verb( 'reclaim', 'reclaims', 'reclaiming', 'reclaimed', 'reclaimed', tran, ['6A'] ). +verb( 'recline', 'reclines', 'reclining', 'reclined', 'reclined', _, ['2A','2C','15A'] ). +verb( 'recognize', 'recognizes', 'recognizing', 'recognized', 'recognized', tran, ['6A','9','16A','25'] ). +verb( 'recoil', 'recoils', 'recoiling', 'recoiled', 'recoiled', intran, ['2A','3A'] ). +verb( 'recollect', 'recollects', 'recollecting', 'recollected', 'recollected', _, ['2A','6A','6C','8','9','10'] ). +verb( 'recommend', 'recommends', 'recommending', 'recommended', 'recommended', tran, ['6A','6C','9','12A','13A','14','16A','17'] ). +verb( 'recommit', 'recommits', 'recommitting', 'recommitted', 'recommitted', tran, ['6A','14','16A'] ). +verb( 'recompense', 'recompenses', 'recompensing', 'recompensed', 'recompensed', tran, ['6A','14'] ). +verb( 'reconcile', 'reconciles', 'reconciling', 'reconciled', 'reconciled', tran, ['6A','14'] ). +verb( 'recondition', 'reconditions', 'reconditioning', 'reconditioned', 'reconditioned', tran, ['6A'] ). +verb( 'reconnoitre', 'reconnoitres', 'reconnoitring', 'reconnoitred', 'reconnoitred', _, ['2A','6A'] ). +verb( 'reconsecrate', 'reconsecrates', 'reconsecrating', 'reconsecrated', 'reconsecrated', tran, ['6A','14','23'] ). +verb( 'reconsider', 'reconsiders', 'reconsidering', 'reconsidered', 'reconsidered', tran, ['6A','6C','8','9','10','25'] ). +verb( 'reconstruct', 'reconstructs', 'reconstructing', 'reconstructed', 'reconstructed', tran, ['6A'] ). +verb( 'reconvict', 'reconvicts', 'reconvicting', 'reconvicted', 'reconvicted', tran, ['6A','14'] ). +verb( 'record', 'records', 'recording', 'recorded', 'recorded', tran, ['6A'] ). +verb( 'recount', 'recounts', 'recounting', 'recounted', 'recounted', tran, ['6A'] ). +verb( 'recoup', 'recoups', 'recouping', 'recouped', 'recouped', tran, ['6A','14'] ). +verb( 'recover', 'recovers', 'recovering', 'recovered', 'recovered', _, ['2A','3A','6A'] ). +verb( 'recreate', 'recreates', 'recreating', 'recreated', 'recreated', tran, ['6A','23'] ). +verb( 'recriminate', 'recriminates', 'recriminating', 'recriminated', 'recriminated', intran, ['2A','3A'] ). +verb( 'recruit', 'recruits', 'recruiting', 'recruited', 'recruited', _, ['6A'] ). +verb( 'rectify', 'rectifies', 'rectifying', 'rectified', 'rectified', tran, ['6A'] ). +verb( 'recuperate', 'recuperates', 'recuperating', 'recuperated', 'recuperated', _, ['2A','6A'] ). +verb( 'recur', 'recurs', 'recurring', 'recurred', 'recurred', intran, ['2A','3A'] ). +verb( 'recurve', 'recurves', 'recurving', 'recurved', 'recurved', _, [] ). +verb( 'recycle', 'recycles', 'recycling', 'recycled', 'recycled', tran, ['6A'] ). +verb( 'redact', 'redacts', 'redacting', 'redacted', 'redacted', tran, ['6A'] ). +verb( 'redden', 'reddens', 'reddening', 'reddened', 'reddened', _, ['2A','6A'] ). +verb( 'redecorate', 'redecorates', 'redecorating', 'redecorated', 'redecorated', tran, ['6A','14'] ). +verb( 'redeem', 'redeems', 'redeeming', 'redeemed', 'redeemed', tran, ['6A','14'] ). +verb( 'redefine', 'redefines', 'redefining', 'redefined', 'redefined', tran, ['6A'] ). +verb( 'redeploy', 'redeploys', 'redeploying', 'redeployed', 'redeployed', tran, ['6A'] ). +verb( 'redesign', 'redesigns', 'redesigning', 'redesigned', 'redesigned', tran, ['2A','2C','6A','14','16A','16B'] ). +verb( 'redevelop', 'redevelops', 'redeveloping', 'redeveloped', 'redeveloped', tran, ['2A','2C','3A','6A'] ). +verb( 'rediscover', 'rediscovers', 'rediscovering', 'rediscovered', 'rediscovered', tran, ['6A','8','9','10','25'] ). +verb( 'redistribute', 'redistributes', 'redistributing', 'redistributed', 'redistributed', tran, ['6A','14'] ). +verb( 'redo', 'redoes', 'redoing', 'redid', 'redone', tran, ['6A'] ). +verb( 'redouble', 'redoubles', 'redoubling', 'redoubled', 'redoubled', _, ['2A','6A'] ). +verb( 'redound', 'redounds', 'redounding', 'redounded', 'redounded', intran, ['3A'] ). +verb( 'redress', 'redresses', 'redressing', 'redressed', 'redressed', tran, ['6A'] ). +verb( 'reduce', 'reduces', 'reducing', 'reduced', 'reduced', _, ['2A','2B','6A','14'] ). +verb( 'reduplicate', 'reduplicates', 'reduplicating', 'reduplicated', 'reduplicated', tran, ['6A'] ). +verb( 'reef', 'reefs', 'reefing', 'reefed', 'reefed', tran, ['6A'] ). +verb( 'reek', 'reeks', 'reeking', 'reeked', 'reeked', intran, ['3A'] ). +verb( 'reel', 'reels', 'reeling', 'reeled', 'reeled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'reface', 'refaces', 'refacing', 'refaced', 'refaced', tran, [] ). +verb( 'refashion', 'refashions', 'refashioning', 'refashioned', 'refashioned', tran, ['6A','15A'] ). +verb( 'refer', 'refers', 'referring', 'referred', 'referred', _, ['3A','14','15B'] ). +verb( 'referee', 'referees', 'refereeing', 'refereed', 'refereed', _, ['2A','6A'] ). +verb( 'refill', 'refills', 'refilling', 'refilled', 'refilled', tran, [] ). +verb( 'refine', 'refines', 'refining', 'refined', 'refined', _, ['2A','6A'] ). +verb( 'refit', 'refits', 'refitting', 'refitted', 'refitted', _, ['2A','6A'] ). +verb( 'reflate', 'reflates', 'reflating', 'reflated', 'reflated', tran, ['6A'] ). +verb( 'reflect', 'reflects', 'reflecting', 'reflected', 'reflected', _, ['2A','3A','6A','8','9','10','14'] ). +verb( 'refloat', 'refloats', 'refloating', 'refloated', 'refloated', _, ['2A','6A'] ). +verb( 'reforest', 'reforests', 'reforesting', 'reforested', 'reforested', tran, [] ). +verb( 'reform', 'reforms', 'reforming', 'reformed', 'reformed', _, ['2A','6A'] ). +verb( 'refract', 'refracts', 'refracting', 'refracted', 'refracted', tran, ['6A'] ). +verb( 'refrain', 'refrains', 'refraining', 'refrained', 'refrained', intran, ['2A','3A'] ). +verb( 'refresh', 'refreshes', 'refreshing', 'refreshed', 'refreshed', tran, ['6A'] ). +verb( 'refrigerate', 'refrigerates', 'refrigerating', 'refrigerated', 'refrigerated', tran, ['6A'] ). +verb( 'refuel', 'refuels', 'refuelling', 'refuelled', 'refuelled', _, ['2A','6A'] ). +verb( 'refund', 'refunds', 'refunding', 'refunded', 'refunded', tran, ['6A'] ). +verb( 'refurbish', 'refurbishes', 'refurbishing', 'refurbished', 'refurbished', tran, ['6A'] ). +verb( 'refurnish', 'refurnishes', 'refurnishing', 'refurnished', 'refurnished', tran, ['6A','14'] ). +verb( 'refuse', 'refuses', 'refusing', 'refused', 'refused', _, ['2A','6A','7A','12C'] ). +verb( 'refute', 'refutes', 'refuting', 'refuted', 'refuted', tran, ['6A'] ). +verb( 'regain', 'regains', 'regaining', 'regained', 'regained', tran, ['6A'] ). +verb( 'regale', 'regales', 'regaling', 'regaled', 'regaled', tran, ['6A','14'] ). +verb( 'regard', 'regards', 'regarding', 'regarded', 'regarded', tran, ['6A','14','16B'] ). +verb( 'regenerate', 'regenerates', 'regenerating', 'regenerated', 'regenerated', _, ['2A','6A'] ). +verb( 'regiment', 'regiments', 'regimenting', 'regimented', 'regimented', tran, ['6A'] ). +verb( 'register', 'registers', 'registering', 'registered', 'registered', _, ['2A','3A','6A','14'] ). +verb( 'regress', 'regresses', 'regressing', 'regressed', 'regressed', intran, ['2A'] ). +verb( 'regret', 'regrets', 'regretting', 'regretted', 'regretted', tran, ['6A','6D','7A','9'] ). +verb( 'regroup', 'regroups', 'regrouping', 'regrouped', 'regrouped', _, ['2A','6A'] ). +verb( 'regularize', 'regularizes', 'regularizing', 'regularized', 'regularized', tran, ['6A'] ). +verb( 'regulate', 'regulates', 'regulating', 'regulated', 'regulated', tran, ['6A'] ). +verb( 'regurgitate', 'regurgitates', 'regurgitating', 'regurgitated', 'regurgitated', _, ['2A','6A'] ). +verb( 'rehabilitate', 'rehabilitates', 'rehabilitating', 'rehabilitated', 'rehabilitated', tran, ['6A'] ). +verb( 'rehash', 'rehashes', 'rehashing', 'rehashed', 'rehashed', tran, [] ). +verb( 'rehear', 'rehears', 'rehearing', 'reheard', 'reheard', tran, ['6A'] ). +verb( 'rehearse', 'rehearses', 'rehearsing', 'rehearsed', 'rehearsed', _, ['2A','6A'] ). +verb( 'rehouse', 'rehouses', 'rehousing', 'rehoused', 'rehoused', tran, ['6A'] ). +verb( 'reign', 'reigns', 'reigning', 'reigned', 'reigned', intran, ['2A','3A'] ). +verb( 'reimburse', 'reimburses', 'reimbursing', 'reimbursed', 'reimbursed', tran, ['6A','12A','13A','14'] ). +verb( 'rein', 'reins', 'reining', 'reined', 'reined', tran, ['6A','15B'] ). +verb( 'reincarnate', 'reincarnates', 'reincarnating', 'reincarnated', 'reincarnated', tran, [] ). +verb( 'reinforce', 'reinforces', 'reinforcing', 'reinforced', 'reinforced', tran, ['6A'] ). +verb( 'reinstate', 'reinstates', 'reinstating', 'reinstated', 'reinstated', tran, ['6A','14'] ). +verb( 'reinsure', 'reinsures', 'reinsuring', 'reinsured', 'reinsured', tran, ['6A'] ). +verb( 'reintegrate', 'reintegrates', 'reintegrating', 'reintegrated', 'reintegrated', tran, ['2A','6A'] ). +verb( 'reinterpret', 'reinterprets', 'reinterpreting', 'reinterpreted', 'reinterpreted', tran, ['2A','6A','16B'] ). +verb( 'reissue', 'reissues', 'reissuing', 'reissued', 'reissued', tran, ['6A'] ). +verb( 'reiterate', 'reiterates', 'reiterating', 'reiterated', 'reiterated', tran, ['6A'] ). +verb( 'reject', 'rejects', 'rejecting', 'rejected', 'rejected', tran, ['6A'] ). +verb( 'rejig', 'rejigs', 'rejigging', 'rejigged', 'rejigged', tran, ['6A'] ). +verb( 'rejoice', 'rejoices', 'rejoicing', 'rejoiced', 'rejoiced', _, ['2A','2C','3B','4C','6A'] ). +verb( 'rejoin', 'rejoins', 'rejoining', 'rejoined', 'rejoined', tran, ['6A'] ). +verb( 'rejoin', 'rejoins', 'rejoining', 'rejoined', 'rejoined', _, ['2A','6A'] ). +verb( 'rejuvenate', 'rejuvenates', 'rejuvenating', 'rejuvenated', 'rejuvenated', _, ['2A','6A'] ). +verb( 'rekindle', 'rekindles', 'rekindling', 'rekindled', 'rekindled', _, ['2A','6A'] ). +verb( 'relapse', 'relapses', 'relapsing', 'relapsed', 'relapsed', intran, ['2A','3A'] ). +verb( 'relate', 'relates', 'relating', 'related', 'related', _, ['3A','6A','14'] ). +verb( 'relax', 'relaxes', 'relaxing', 'relaxed', 'relaxed', _, ['2A','2C','6A'] ). +verb( 'relay', 'relays', 'relaying', 'relayed', 'relayed', tran, [] ). +verb( 'relay', 'relays', 'relaying', 'relayed', 'relayed', tran, [] ). +verb( 'release', 'releases', 'releasing', 'released', 'released', tran, ['6A','14'] ). +verb( 'relegate', 'relegates', 'relegating', 'relegated', 'relegated', tran, ['14'] ). +verb( 'relent', 'relents', 'relenting', 'relented', 'relented', intran, ['2A'] ). +verb( 'relieve', 'relieves', 'relieving', 'relieved', 'relieved', tran, ['6A'] ). +verb( 'reline', 'relines', 'relining', 'relined', 'relined', tran, [] ). +verb( 'relinquish', 'relinquishes', 'relinquishing', 'relinquished', 'relinquished', tran, ['6A','14'] ). +verb( 'relish', 'relishes', 'relishing', 'relished', 'relished', tran, ['6A','6D'] ). +verb( 'relive', 'relives', 'reliving', 'relived', 'relived', tran, [] ). +verb( 'relocate', 'relocates', 'relocating', 'relocated', 'relocated', _, [] ). +verb( 'rely', 'relies', 'relying', 'relied', 'relied', intran, ['3A'] ). +verb( 'remain', 'remains', 'remaining', 'remained', 'remained', intran, ['2A','2B','2C','4A'] ). +verb( 'remake', 'remakes', 'remaking', 'remade', 'remade', tran, [] ). +verb( 'remand', 'remands', 'remanding', 'remanded', 'remanded', tran, ['6A'] ). +verb( 'remark', 'remarks', 'remarking', 'remarked', 'remarked', _, ['3A','6A','9','10'] ). +verb( 'remarry', 'remarries', 'remarrying', 'remarried', 'remarried', _, [] ). +verb( 'remedy', 'remedies', 'remedying', 'remedied', 'remedied', tran, ['6A'] ). +verb( 'remember', 'remembers', 'remembering', 'remembered', 'remembered', _, ['6A','6C','7A','8','9','10','14','16B','19C'] ). +verb( 'remilitarize', 'remilitarizes', 'remilitarizing', 'remilitarized', 'remilitarized', tran, ['6A'] ). +verb( 'remind', 'reminds', 'reminding', 'reminded', 'reminded', tran, ['6A','11','14','17','20','21'] ). +verb( 'reminisce', 'reminisces', 'reminiscing', 'reminisced', 'reminisced', intran, ['2A','3A'] ). +verb( 'remit', 'remits', 'remitting', 'remitted', 'remitted', _, ['2C','6A','12A','13A','14'] ). +verb( 'remodel', 'remodels', 'remodelling', 'remodelled', 'remodelled', tran, ['2A','6A','14','15A'] ). +verb( 'remonstrate', 'remonstrates', 'remonstrating', 'remonstrated', 'remonstrated', intran, ['2A','3A'] ). +verb( 'remould', 'remoulds', 'remoulding', 'remoulded', 'remoulded', tran, ['2A','6A','14'] ). +verb( 'remount', 'remounts', 'remounting', 'remounted', 'remounted', _, ['2A','6A'] ). +verb( 'remove', 'removes', 'removing', 'removed', 'removed', _, ['2A','2C','6A','14'] ). +verb( 'remunerate', 'remunerates', 'remunerating', 'remunerated', 'remunerated', tran, ['6A','14'] ). +verb( 'rename', 'renames', 'renaming', 'renamed', 'renamed', tran, ['6A'] ). +verb( 'rend', 'rends', 'rending', 'rent', 'rent', tran, ['6A','14','15A'] ). +verb( 'render', 'renders', 'rendering', 'rendered', 'rendered', tran, ['6A','12A','13A','14','15A','15B','22'] ). +verb( 'rendezvous', 'rendezvous', 'rendezvouing', 'rendezvoued', 'rendezvoued', intran, ['2A','2C'] ). +verb( 'renegade', 'renegades', 'renegading', 'renegaded', 'renegaded', intran, [] ). +verb( 'renege', 'reneges', 'reneging', 'reneged', 'reneged', intran, ['3A'] ). +verb( 'renegue', 'renegues', 'reneguing', 'renegued', 'renegued', intran, ['3A'] ). +verb( 'renew', 'renews', 'renewing', 'renewed', 'renewed', tran, ['6A'] ). +verb( 'renounce', 'renounces', 'renouncing', 'renounced', 'renounced', tran, ['6A'] ). +verb( 'renovate', 'renovates', 'renovating', 'renovated', 'renovated', tran, ['6A'] ). +verb( 'rent', 'rents', 'renting', 'rented', 'rented', _, ['2A','2C','6A','14','15A'] ). +verb( 'reopen', 'reopens', 'reopening', 'reopened', 'reopened', _, ['2A','6A'] ). +verb( 'reorganize', 'reorganizes', 'reorganizing', 'reorganized', 'reorganized', _, [] ). +verb( 'reorient', 'reorients', 'reorienting', 'reoriented', 'reoriented', _, [] ). +verb( 'reorientate', 'reorientates', 'reorientating', 'reorientated', 'reorientated', _, [] ). +verb( 'repaint', 'repaints', 'repainting', 'repainted', 'repainted', tran, ['2A','2C','6A','15A','15B','22'] ). +verb( 'repair', 'repairs', 'repairing', 'repaired', 'repaired', _, ['3A','6A'] ). +verb( 'repatriate', 'repatriates', 'repatriating', 'repatriated', 'repatriated', tran, ['6A'] ). +verb( 'repay', 'repays', 'repaying', 'repaid', 'repaid', _, ['2A','6A','14'] ). +verb( 'repeal', 'repeals', 'repealing', 'repealed', 'repealed', tran, ['6A'] ). +verb( 'repeat', 'repeats', 'repeating', 'repeated', 'repeated', _, ['2A','6A','9'] ). +verb( 'repel', 'repels', 'repelling', 'repelled', 'repelled', tran, ['6A'] ). +verb( 'repent', 'repents', 'repenting', 'repented', 'repented', _, ['2A','3A','6A','6D'] ). +verb( 'repine', 'repines', 'repining', 'repined', 'repined', intran, ['2A','3A'] ). +verb( 'replace', 'replaces', 'replacing', 'replaced', 'replaced', tran, ['6A','14','15A'] ). +verb( 'replant', 'replants', 'replanting', 'replanted', 'replanted', tran, ['6A','15A','15B'] ). +verb( 'replay', 'replays', 'replaying', 'replayed', 'replayed', tran, ['6A'] ). +verb( 'replenish', 'replenishes', 'replenishing', 'replenished', 'replenished', tran, ['6A','14'] ). +verb( 'reply', 'replies', 'replying', 'replied', 'replied', _, ['2A','3A','3B'] ). +verb( 'repoint', 'repoints', 'repointing', 'repointed', 'repointed', tran, ['6A'] ). +verb( 'report', 'reports', 'reporting', 'reported', 'reported', _, ['2A','3A','6A','6D','9','14','15A','15B','25'] ). +verb( 'repose', 'reposes', 'reposing', 'reposed', 'reposed', _, ['2A','2C','3A','6A','14','15A'] ). +verb( 'repot', 'repots', 'repotting', 'repotted', 'repotted', tran, [] ). +verb( 'reprehend', 'reprehends', 'reprehending', 'reprehended', 'reprehended', tran, ['6A'] ). +verb( 'represent', 'represents', 'representing', 'represented', 'represented', tran, ['6A','9','14','16A','25'] ). +verb( 'represent', 'represents', 'representing', 'represented', 'represented', tran, [] ). +verb( 'repress', 'represses', 'repressing', 'repressed', 'repressed', tran, ['6A'] ). +verb( 'reprieve', 'reprieves', 'reprieving', 'reprieved', 'reprieved', tran, ['6A'] ). +verb( 'reprimand', 'reprimands', 'reprimanding', 'reprimanded', 'reprimanded', tran, ['6A'] ). +verb( 'reprint', 'reprints', 'reprinting', 'reprinted', 'reprinted', tran, ['6A'] ). +verb( 'reproach', 'reproaches', 'reproaching', 'reproached', 'reproached', tran, ['6A','14'] ). +verb( 'reprobate', 'reprobates', 'reprobating', 'reprobated', 'reprobated', tran, ['6A'] ). +verb( 'reproduce', 'reproduces', 'reproducing', 'reproduced', 'reproduced', _, ['2A','6A'] ). +verb( 'reproof', 'reproofs', 'reproofing', 'reproofed', 'reproofed', tran, ['6A'] ). +verb( 'reprove', 'reproves', 'reproving', 'reproved', 'reproved', tran, ['6A','14'] ). +verb( 'repudiate', 'repudiates', 'repudiating', 'repudiated', 'repudiated', tran, ['6A'] ). +verb( 'repulse', 'repulses', 'repulsing', 'repulsed', 'repulsed', tran, ['6A'] ). +verb( 'repute', 'reputes', 'reputing', 'reputed', 'reputed', tran, ['25'] ). +verb( 'request', 'requests', 'requesting', 'requested', 'requested', tran, ['6A','9','17'] ). +verb( 'require', 'requires', 'requiring', 'required', 'required', tran, ['6A','6D','9','14','17'] ). +verb( 'requisition', 'requisitions', 'requisitioning', 'requisitioned', 'requisitioned', tran, ['6A','14'] ). +verb( 'requite', 'requites', 'requiting', 'requited', 'requited', tran, ['6A','14'] ). +verb( 'reread', 'rereads', 'rereading', 'reread', 'reread', tran, ['2A','2B','2C','6A','12A','13A','15A','15B','16B'] ). +verb( 'rerun', 'reruns', 'rerunning', 'reran', 'rerun', tran, [] ). +verb( 'rescind', 'rescinds', 'rescinding', 'rescinded', 'rescinded', tran, ['6A'] ). +verb( 'rescue', 'rescues', 'rescuing', 'rescued', 'rescued', tran, ['6A','14'] ). +verb( 'research', 'researches', 'researching', 'researched', 'researched', intran, ['2A','3A'] ). +verb( 'reseat', 'reseats', 'reseating', 'reseated', 'reseated', tran, ['6A'] ). +verb( 'reseed', 'reseeds', 'reseeding', 'reseeded', 'reseeded', tran, ['2A','6A'] ). +verb( 'resell', 'resells', 'reselling', 'resold', 'resold', tran, ['2A','2C','6A','12A','13A','15B'] ). +verb( 'resemble', 'resembles', 'resembling', 'resembled', 'resembled', tran, ['6B'] ). +verb( 'resent', 'resents', 'resenting', 'resented', 'resented', tran, ['6A','6C','19C'] ). +verb( 'reserve', 'reserves', 'reserving', 'reserved', 'reserved', tran, ['6A','14'] ). +verb( 'reset', 'resets', 'resetting', 'reset', 'reset', tran, ['6A'] ). +verb( 'resettle', 'resettles', 'resettling', 'resettled', 'resettled', _, ['2A','6A'] ). +verb( 'reshape', 'reshapes', 'reshaping', 'reshaped', 'reshaped', tran, ['2A','2C','6A','15A'] ). +verb( 'reshuffle', 'reshuffles', 'reshuffling', 'reshuffled', 'reshuffled', tran, ['6A'] ). +verb( 'reside', 'resides', 'residing', 'resided', 'resided', intran, ['2C','3A'] ). +verb( 'resign', 'resigns', 'resigning', 'resigned', 'resigned', _, ['2A','3A','6A','14'] ). +verb( 'resist', 'resists', 'resisting', 'resisted', 'resisted', _, ['2A','6A','6C'] ). +verb( 'resole', 'resoles', 'resoling', 'resoled', 'resoled', tran, ['6A'] ). +verb( 'resolve', 'resolves', 'resolving', 'resolved', 'resolved', _, ['3A','6A','7A','9','14'] ). +verb( 'resonate', 'resonates', 'resonating', 'resonated', 'resonated', _, [] ). +verb( 'resort', 'resorts', 'resorting', 'resorted', 'resorted', intran, ['3A'] ). +verb( 'resound', 'resounds', 'resounding', 'resounded', 'resounded', _, ['2A','2C','3A'] ). +verb( 'respect', 'respects', 'respecting', 'respected', 'respected', tran, ['6A'] ). +verb( 'respire', 'respires', 'respiring', 'respired', 'respired', intran, ['2A'] ). +verb( 'respite', 'respites', 'respiting', 'respited', 'respited', tran, ['6A'] ). +verb( 'respond', 'responds', 'responding', 'responded', 'responded', intran, ['2A','2C','3A','3B'] ). +verb( 'rest', 'rests', 'resting', 'rested', 'rested', _, ['2A','2B','2C','2D','3A','6A','14'] ). +verb( 'restart', 'restarts', 'restarting', 'restarted', 'restarted', _, ['2A','2C','3A','6A','6D','7A','15A','19B'] ). +verb( 'restate', 'restates', 'restating', 'restated', 'restated', tran, ['6A'] ). +verb( 'restock', 'restocks', 'restocking', 'restocked', 'restocked', tran, ['6A'] ). +verb( 'restore', 'restores', 'restoring', 'restored', 'restored', tran, ['6A','14'] ). +verb( 'restrain', 'restrains', 'restraining', 'restrained', 'restrained', tran, ['6A','14'] ). +verb( 'restrict', 'restricts', 'restricting', 'restricted', 'restricted', tran, ['6A','14'] ). +verb( 'restructure', 'restructures', 'restructuring', 'restructured', 'restructured', tran, ['6A'] ). +verb( 'result', 'results', 'resulting', 'resulted', 'resulted', intran, ['2A','3A'] ). +verb( 'resume', 'resumes', 'resuming', 'resumed', 'resumed', tran, ['6A','6D'] ). +verb( 'resurface', 'resurfaces', 'resurfacing', 'resurfaced', 'resurfaced', _, ['2A','6A'] ). +verb( 'resurrect', 'resurrects', 'resurrecting', 'resurrected', 'resurrected', _, ['2A','6A'] ). +verb( 'resuscitate', 'resuscitates', 'resuscitating', 'resuscitated', 'resuscitated', _, ['2A','6A'] ). +verb( 'ret', 'rets', 'retting', 'retted', 'retted', tran, ['6A'] ). +verb( 'retail', 'retails', 'retailing', 'retailed', 'retailed', _, ['3A','6A'] ). +verb( 'retain', 'retains', 'retaining', 'retained', 'retained', tran, ['6A'] ). +verb( 'retake', 'retakes', 'retaking', 'retook', 'retaken', tran, ['6A'] ). +verb( 'retaliate', 'retaliates', 'retaliating', 'retaliated', 'retaliated', intran, ['2A','3A'] ). +verb( 'retard', 'retards', 'retarding', 'retarded', 'retarded', tran, ['6A'] ). +verb( 'retch', 'retches', 'retching', 'retched', 'retched', intran, ['2A'] ). +verb( 'retell', 'retells', 'retelling', 'retold', 'retold', tran, ['6A'] ). +verb( 'rethink', 'rethinks', 'rethinking', 'rethought', 'rethought', _, ['2A','6A'] ). +verb( 'reticulate', 'reticulates', 'reticulating', 'reticulated', 'reticulated', _, ['2A','6A'] ). +verb( 'retire', 'retires', 'retiring', 'retired', 'retired', _, ['2A','2C','3A','6A'] ). +verb( 'retool', 'retools', 'retooling', 'retooled', 'retooled', tran, ['6A'] ). +verb( 'retort', 'retorts', 'retorting', 'retorted', 'retorted', _, ['2A','6A','9','14'] ). +verb( 'retouch', 'retouches', 'retouching', 'retouched', 'retouched', tran, ['6A'] ). +verb( 'retrace', 'retraces', 'retracing', 'retraced', 'retraced', tran, ['6A'] ). +verb( 'retract', 'retracts', 'retracting', 'retracted', 'retracted', _, ['2A','6A'] ). +verb( 'retransmit', 'retransmits', 'retransmitting', 'retransmitted', 'retransmitted', tran, ['6A','14'] ). +verb( 'retread', 'retreads', 'retreading', 'retreaded', 'retreaded', tran, [] ). +verb( 'retreat', 'retreats', 'retreating', 'retreated', 'retreated', intran, ['2A','2C','3A'] ). +verb( 'retrench', 'retrenches', 'retrenching', 'retrenched', 'retrenched', _, ['2A','6A'] ). +verb( 'retrieve', 'retrieves', 'retrieving', 'retrieved', 'retrieved', _, ['2A','6A','14'] ). +verb( 'retrograde', 'retrogrades', 'retrograding', 'retrograded', 'retrograded', intran, ['2A'] ). +verb( 'retrogress', 'retrogresses', 'retrogressing', 'retrogressed', 'retrogressed', intran, ['2A'] ). +verb( 'return', 'returns', 'returning', 'returned', 'returned', _, ['2A','2C','3A','4A','6A','12A','13A','15A','16A'] ). +verb( 'reunite', 'reunites', 'reuniting', 'reunited', 'reunited', _, ['2A','6A'] ). +verb( 'rev', 'revs', 'revving', 'revved', 'revved', _, ['2A','2C','6A','15B'] ). +verb( 'revalue', 'revalues', 'revaluing', 'revalued', 'revalued', tran, ['6A'] ). +verb( 'revamp', 'revamps', 'revamping', 'revamped', 'revamped', tran, ['6A'] ). +verb( 'reveal', 'reveals', 'revealing', 'revealed', 'revealed', tran, ['6A','9','14','25'] ). +verb( 'revel', 'revels', 'revelling', 'revelled', 'revelled', intran, ['2A','2B','2C','3A','15B'] ). +verb( 'revenge', 'revenges', 'revenging', 'revenged', 'revenged', tran, ['6A'] ). +verb( 'reverberate', 'reverberates', 'reverberating', 'reverberated', 'reverberated', _, ['2A','6A'] ). +verb( 'revere', 'reveres', 'revering', 'revered', 'revered', tran, ['6A'] ). +verb( 'reverence', 'reverences', 'reverencing', 'reverenced', 'reverenced', tran, ['6A'] ). +verb( 'reverse', 'reverses', 'reversing', 'reversed', 'reversed', _, ['2A','6A'] ). +verb( 'revert', 'reverts', 'reverting', 'reverted', 'reverted', intran, ['2A','3A'] ). +verb( 'review', 'reviews', 'reviewing', 'reviewed', 'reviewed', _, ['2A','2C','6A'] ). +verb( 'revile', 'reviles', 'reviling', 'reviled', 'reviled', _, ['3A','6A'] ). +verb( 'revise', 'revises', 'revising', 'revised', 'revised', tran, ['6A'] ). +verb( 'revisit', 'revisits', 'revisiting', 'revisited', 'revisited', tran, ['2C','3A','6A','14'] ). +verb( 'revitalize', 'revitalizes', 'revitalizing', 'revitalized', 'revitalized', tran, [] ). +verb( 'revive', 'revives', 'reviving', 'revived', 'revived', _, ['2A','6A'] ). +verb( 'revivify', 'revivifies', 'revivifying', 'revivified', 'revivified', tran, [] ). +verb( 'revoke', 'revokes', 'revoking', 'revoked', 'revoked', _, ['2A','6A'] ). +verb( 'revolt', 'revolts', 'revolting', 'revolted', 'revolted', _, ['2A','3A','6A'] ). +verb( 'revolutionize', 'revolutionizes', 'revolutionizing', 'revolutionized', 'revolutionized', tran, ['6A'] ). +verb( 'revolve', 'revolves', 'revolving', 'revolved', 'revolved', _, ['2A','3A','6A'] ). +verb( 'reward', 'rewards', 'rewarding', 'rewarded', 'rewarded', tran, ['6A','14'] ). +verb( 'rewire', 'rewires', 'rewiring', 'rewired', 'rewired', tran, [] ). +verb( 'reword', 'rewords', 'rewording', 'reworded', 'reworded', tran, ['6A'] ). +verb( 'rewrite', 'rewrites', 'rewriting', 'rewrote', 'rewritten', tran, ['6A'] ). +verb( 'rhapsodize', 'rhapsodizes', 'rhapsodizing', 'rhapsodized', 'rhapsodized', intran, ['2A','3A'] ). +verb( 'rhyme', 'rhymes', 'rhyming', 'rhymed', 'rhymed', _, ['2A','3A','6A'] ). +verb( 'rib', 'ribs', 'ribbing', 'ribbed', 'ribbed', tran, ['6A'] ). +verb( 'rick', 'ricks', 'ricking', 'ricked', 'ricked', tran, ['6A'] ). +verb( 'ricochet', 'ricochets', 'ricocheting', 'ricocheted', 'ricocheted', _, ['2A','6A'] ). +verb( 'rid', 'rids', 'riding', 'rid', 'rid', tran, ['14'] ). +verb( 'riddle', 'riddles', 'riddling', 'riddled', 'riddled', tran, ['6A','14'] ). +verb( 'ride', 'rides', 'riding', 'rode', 'ridden', _, ['2A','2B','2C','2D','3A','4A','6A','15A'] ). +verb( 'ridge', 'ridges', 'ridging', 'ridged', 'ridged', tran, ['6A'] ). +verb( 'ridicule', 'ridicules', 'ridiculing', 'ridiculed', 'ridiculed', tran, [] ). +verb( 'riffle', 'riffles', 'riffling', 'riffled', 'riffled', _, ['3A','6A'] ). +verb( 'rifle', 'rifles', 'rifling', 'rifled', 'rifled', tran, ['6A'] ). +verb( 'rig', 'rigs', 'rigging', 'rigged', 'rigged', _, ['2A','2C','6A','14','15B'] ). +verb( 'right', 'rights', 'righting', 'righted', 'righted', tran, ['6A'] ). +verb( 'rile', 'riles', 'riling', 'riled', 'riled', tran, ['6A'] ). +verb( 'rim', 'rims', 'rimming', 'rimmed', 'rimmed', tran, ['6A'] ). +verb( 'rime', 'rimes', 'riming', 'rimed', 'rimed', tran, ['6A'] ). +verb( 'ring', 'rings', 'ringing', 'ringed', 'ringed', _, ['2A','2B','2C','2D','3A','6A','15A','15B'] ). +verb( 'ring', 'rings', 'ringing', 'rang', 'rung', _, ['2A','2B','2C','2D','3A','6A','15A','15B'] ). +verb( 'rinse', 'rinses', 'rinsing', 'rinsed', 'rinsed', tran, ['6A','15A','15B'] ). +verb( 'riot', 'riots', 'rioting', 'rioted', 'rioted', intran, ['2A','2B','2C','3A'] ). +verb( 'rip', 'rips', 'ripping', 'ripped', 'ripped', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'ripen', 'ripens', 'ripening', 'ripened', 'ripened', _, ['2A','6A'] ). +verb( 'riposte', 'ripostes', 'riposting', 'riposted', 'riposted', intran, [] ). +verb( 'ripple', 'ripples', 'rippling', 'rippled', 'rippled', _, ['2A','6A'] ). +verb( 'rise', 'rises', 'rising', 'rose', 'risen', intran, ['2A','2B','2C','3A','4A'] ). +verb( 'risk', 'risks', 'risking', 'risked', 'risked', tran, ['6A','6D'] ). +verb( 'rival', 'rivals', 'rivalling', 'rivalled', 'rivalled', tran, ['6A','14'] ). +verb( 'rive', 'rives', 'riving', 'rived', 'rived', _, ['6A','15A','15B'] ). +verb( 'rivet', 'rivets', 'riveting', 'riveted', 'riveted', tran, ['6A','15A','15B'] ). +verb( 'roam', 'roams', 'roaming', 'roamed', 'roamed', _, ['2A','2C','6A'] ). +verb( 'roar', 'roars', 'roaring', 'roared', 'roared', _, ['2A','2C','3A','6A','15B','22'] ). +verb( 'roast', 'roasts', 'roasting', 'roasted', 'roasted', _, ['2A','6A'] ). +verb( 'rob', 'robs', 'robbing', 'robbed', 'robbed', tran, ['6A','14'] ). +verb( 'robe', 'robes', 'robing', 'robed', 'robed', _, ['2A','6A','14'] ). +verb( 'rock', 'rocks', 'rocking', 'rocked', 'rocked', _, ['2A','6A','15A'] ). +verb( 'rocket', 'rockets', 'rocketing', 'rocketed', 'rocketed', intran, ['2A'] ). +verb( 'roll', 'rolls', 'rolling', 'rolled', 'rolled', _, ['2A','2B','2C','6A','12B','13B','14','15A','15B','22'] ). +verb( 'romance', 'romances', 'romancing', 'romanced', 'romanced', intran, ['2A'] ). +verb( 'romanticize', 'romanticizes', 'romanticizing', 'romanticized', 'romanticized', _, ['2A','6A'] ). +verb( 'romp', 'romps', 'romping', 'romped', 'romped', intran, ['2A','2C'] ). +verb( 'roof', 'roofs', 'roofing', 'roofed', 'roofed', tran, ['6A','15A','15B'] ). +verb( 'rook', 'rooks', 'rooking', 'rooked', 'rooked', tran, ['6A'] ). +verb( 'room', 'rooms', 'rooming', 'roomed', 'roomed', intran, ['2C'] ). +verb( 'roost', 'roosts', 'roosting', 'roosted', 'roosted', intran, ['2A'] ). +verb( 'root', 'roots', 'rooting', 'rooted', 'rooted', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'rootle', 'rootles', 'rootling', 'rootled', 'rootled', intran, ['2C'] ). +verb( 'rope', 'ropes', 'roping', 'roped', 'roped', tran, ['15A','15B'] ). +verb( 'rosin', 'rosins', 'rosinning', 'rosinned', 'rosinned', tran, ['6A'] ). +verb( 'rot', 'rots', 'rotting', 'rotted', 'rotted', _, ['2A','2C','6A'] ). +verb( 'rotate', 'rotates', 'rotating', 'rotated', 'rotated', _, ['2A','6A'] ). +verb( 'rouge', 'rouges', 'rouging', 'rouged', 'rouged', _, ['2A','6A'] ). +verb( 'rough', 'roughs', 'roughing', 'roughed', 'roughed', tran, ['6A','15B'] ). +verb( 'rough-dry', 'rough-dries', 'rough-drying', 'rough-dried', 'rough-dried', tran, [] ). +verb( 'rough-house', 'rough-houses', 'rough-housing', 'rough-housed', 'rough-housed', _, ['2A','6A'] ). +verb( 'roughcast', 'roughcasts', 'roughcasting', 'roughcast', 'roughcast', tran, [] ). +verb( 'roughen', 'roughens', 'roughening', 'roughened', 'roughened', _, [] ). +verb( 'round', 'rounds', 'rounding', 'rounded', 'rounded', _, ['2C','3A','6A','15B'] ). +verb( 'rouse', 'rouses', 'rousing', 'roused', 'roused', _, ['2A','6A','15A'] ). +verb( 'rout', 'routs', 'routing', 'routed', 'routed', tran, ['6A','15B'] ). +verb( 'route', 'routes', 'routing', 'routed', 'routed', tran, [] ). +verb( 'rove', 'roves', 'roving', 'roved', 'roved', _, ['2A','2C','6A'] ). +verb( 'row', 'rows', 'rowing', 'rowed', 'rowed', _, ['2A','2B','2C','6A','15A','15B'] ). +verb( 'row', 'rows', 'rowing', 'rowed', 'rowed', _, ['2A','3A','6A'] ). +verb( 'rub', 'rubs', 'rubbing', 'rubbed', 'rubbed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'rubber', 'rubbers', 'rubbering', 'rubbered', 'rubbered', tran, ['6A'] ). +verb( 'rubber-stamp', 'rubber-stamps', 'rubber-stamping', 'rubber-stamped', 'rubber-stamped', tran, [] ). +verb( 'rubberize', 'rubberizes', 'rubberizing', 'rubberized', 'rubberized', tran, ['6A'] ). +verb( 'rubberneck', 'rubbernecks', 'rubbernecking', 'rubbernecked', 'rubbernecked', intran, [] ). +verb( 'rubbish', 'rubbishes', 'rubbishing', 'rubbished', 'rubbished', tran, ['6A'] ). +verb( 'ruck', 'rucks', 'rucking', 'rucked', 'rucked', _, ['2A','2C','6A','15B'] ). +verb( 'ruddle', 'ruddles', 'ruddling', 'ruddled', 'ruddled', tran, [] ). +verb( 'rue', 'rues', 'ruing', 'rued', 'rued', tran, ['6A'] ). +verb( 'ruff', 'ruffs', 'ruffing', 'ruffed', 'ruffed', _, [] ). +verb( 'ruffle', 'ruffles', 'ruffling', 'ruffled', 'ruffled', _, ['2A','6A','15B'] ). +verb( 'ruin', 'ruins', 'ruining', 'ruined', 'ruined', tran, ['6A'] ). +verb( 'rule', 'rules', 'ruling', 'ruled', 'ruled', _, ['2A','2B','2C','3A','6A','9','15A','15B','25'] ). +verb( 'rumble', 'rumbles', 'rumbling', 'rumbled', 'rumbled', _, ['2A','2C','15B'] ). +verb( 'ruminate', 'ruminates', 'ruminating', 'ruminated', 'ruminated', intran, ['2A','2B','2C'] ). +verb( 'rummage', 'rummages', 'rummaging', 'rummaged', 'rummaged', _, ['2A','2B','2C','3A','6A','15B'] ). +verb( 'rumour', 'rumours', 'rumouring', 'rumoured', 'rumoured', tran, [] ). +verb( 'rumple', 'rumples', 'rumpling', 'rumpled', 'rumpled', tran, ['6A'] ). +verb( 'run', 'runs', 'running', 'ran', 'run', _, ['2A','2B','2C','2D','2E','3A','4A','6A','14','15A','15B'] ). +verb( 'rupture', 'ruptures', 'rupturing', 'ruptured', 'ruptured', _, ['2A','6A'] ). +verb( 'rush', 'rushes', 'rushing', 'rushed', 'rushed', _, ['2A','2C','4A','6A','15A','15B'] ). +verb( 'rust', 'rusts', 'rusting', 'rusted', 'rusted', _, ['2A','2C','6A'] ). +verb( 'rusticate', 'rusticates', 'rusticating', 'rusticated', 'rusticated', _, ['2A','6A'] ). +verb( 'rustle', 'rustles', 'rustling', 'rustled', 'rustled', _, ['2A','2C','6A','15B'] ). +verb( 'rut', 'ruts', 'rutting', 'rutted', 'rutted', tran, ['2A'] ). +verb( 'sabotage', 'sabotages', 'sabotaging', 'sabotaged', 'sabotaged', tran, ['6A'] ). +verb( 'sabre', 'sabres', 'sabring', 'sabred', 'sabred', tran, [] ). +verb( 'sack', 'sacks', 'sacking', 'sacked', 'sacked', tran, ['6A'] ). +verb( 'sacrifice', 'sacrifices', 'sacrificing', 'sacrificed', 'sacrificed', _, ['3A','6A','14','16A'] ). +verb( 'sadden', 'saddens', 'saddening', 'saddened', 'saddened', _, ['2A','6A'] ). +verb( 'saddle', 'saddles', 'saddling', 'saddled', 'saddled', tran, ['6A','14'] ). +verb( 'safeguard', 'safeguards', 'safeguarding', 'safeguarded', 'safeguarded', tran, ['6A','14'] ). +verb( 'sag', 'sags', 'sagging', 'sagged', 'sagged', intran, ['2A'] ). +verb( 'sail', 'sails', 'sailing', 'sailed', 'sailed', _, ['2A','2B','2C','3A','6A'] ). +verb( 'salaam', 'salaams', 'salaaming', 'salaamed', 'salaamed', intran, [] ). +verb( 'salivate', 'salivates', 'salivating', 'salivated', 'salivated', intran, [] ). +verb( 'sallow', 'sallows', 'sallowing', 'sallowed', 'sallowed', _, [] ). +verb( 'sally', 'sallies', 'sallying', 'sallied', 'sallied', intran, ['2A','2C'] ). +verb( 'salt', 'salts', 'salting', 'salted', 'salted', tran, ['6A','15B'] ). +verb( 'salute', 'salutes', 'saluting', 'saluted', 'saluted', _, ['2A','6A'] ). +verb( 'salvage', 'salvages', 'salvaging', 'salvaged', 'salvaged', tran, ['6A'] ). +verb( 'salve', 'salves', 'salving', 'salved', 'salved', tran, ['6A'] ). +verb( 'sample', 'samples', 'sampling', 'sampled', 'sampled', tran, ['6A'] ). +verb( 'sanctify', 'sanctifies', 'sanctifying', 'sanctified', 'sanctified', tran, ['6A'] ). +verb( 'sanction', 'sanctions', 'sanctioning', 'sanctioned', 'sanctioned', tran, ['6A'] ). +verb( 'sand', 'sands', 'sanding', 'sanded', 'sanded', tran, ['6A'] ). +verb( 'sandblast', 'sandblasts', 'sandblasting', 'sandblasted', 'sandblasted', tran, ['6A'] ). +verb( 'sandpaper', 'sandpapers', 'sandpapering', 'sandpapered', 'sandpapered', tran, ['6A'] ). +verb( 'sandwich', 'sandwiches', 'sandwiching', 'sandwiched', 'sandwiched', tran, ['6A','14'] ). +verb( 'sap', 'saps', 'sapping', 'sapped', 'sapped', _, ['2A','6A'] ). +verb( 'sate', 'sates', 'sating', 'sated', 'sated', tran, ['6A'] ). +verb( 'satiate', 'satiates', 'satiating', 'satiated', 'satiated', tran, ['6A'] ). +verb( 'satirize', 'satirizes', 'satirizing', 'satirized', 'satirized', tran, ['6A'] ). +verb( 'satisfy', 'satisfies', 'satisfying', 'satisfied', 'satisfied', _, ['2A','6A','11','14'] ). +verb( 'saturate', 'saturates', 'saturating', 'saturated', 'saturated', tran, ['6A','14'] ). +verb( 'sauce', 'sauces', 'saucing', 'sauced', 'sauced', tran, ['6A'] ). +verb( 'saunter', 'saunters', 'sauntering', 'sauntered', 'sauntered', intran, ['2A','2C'] ). +verb( 'saut_e', 'saut_es', 'saut_eing', 'saut_eed', 'saut_eed', tran, [] ). +verb( 'savage', 'savages', 'savaging', 'savaged', 'savaged', tran, ['6A'] ). +verb( 'save', 'saves', 'saving', 'saved', 'saved', _, ['2A','2C','3A','6A','6D','12B','12C','13B','14','15B'] ). +verb( 'savour', 'savours', 'savouring', 'savoured', 'savoured', _, ['3A','6A'] ). +verb( 'savvy', 'savvies', 'savvying', 'savvyed', 'savvyed', intran, [] ). +verb( 'saw', 'saws', 'sawing', 'sawed', 'sawed', _, ['2A','2B','2C','4A','6A','8','9','10','15A','15B','16B','18A','19A','22','24A'] ). +verb( 'say', 'says', 'saying', 'said', 'said', _, ['6A','9','10','14'] ). +verb( 'scald', 'scalds', 'scalding', 'scalded', 'scalded', tran, ['6A'] ). +verb( 'scale', 'scales', 'scaling', 'scaled', 'scaled', _, ['2B','2C','6A','15A','15B'] ). +verb( 'scallop', 'scallops', 'scalloping', 'scalloped', 'scalloped', tran, ['6A'] ). +verb( 'scalp', 'scalps', 'scalping', 'scalped', 'scalped', tran, ['6A'] ). +verb( 'scamp', 'scamps', 'scamping', 'scamped', 'scamped', tran, ['6A'] ). +verb( 'scamper', 'scampers', 'scampering', 'scampered', 'scampered', intran, ['2A','2C'] ). +verb( 'scan', 'scans', 'scanning', 'scanned', 'scanned', _, ['2A','6A'] ). +verb( 'scandalize', 'scandalizes', 'scandalizing', 'scandalized', 'scandalized', tran, ['6A'] ). +verb( 'scant', 'scants', 'scanting', 'scanted', 'scanted', tran, ['6A'] ). +verb( 'scar', 'scars', 'scarring', 'scarred', 'scarred', _, ['2C','6A'] ). +verb( 'scare', 'scares', 'scaring', 'scared', 'scared', _, ['2A','6A','15A','15B'] ). +verb( 'scarify', 'scarifies', 'scarifying', 'scarified', 'scarified', tran, ['6A'] ). +verb( 'scarper', 'scarpers', 'scarpering', 'scarpered', 'scarpered', intran, ['2A'] ). +verb( 'scatter', 'scatters', 'scattering', 'scattered', 'scattered', _, ['2A','2C','6A','15A','15B'] ). +verb( 'scavenge', 'scavenges', 'scavenging', 'scavenged', 'scavenged', intran, ['2A','3A'] ). +verb( 'scent', 'scents', 'scenting', 'scented', 'scented', tran, ['6A'] ). +verb( 'schedule', 'schedules', 'scheduling', 'scheduled', 'scheduled', tran, ['6A','7A','14'] ). +verb( 'scheme', 'schemes', 'scheming', 'schemed', 'schemed', _, ['2A','3A','4A','6A'] ). +verb( 'school', 'schools', 'schooling', 'schooled', 'schooled', tran, ['6A','15A'] ). +verb( 'scintillate', 'scintillates', 'scintillating', 'scintillated', 'scintillated', intran, ['2A'] ). +verb( 'scoff', 'scoffs', 'scoffing', 'scoffed', 'scoffed', _, ['2A','3A'] ). +verb( 'scold', 'scolds', 'scolding', 'scolded', 'scolded', _, ['2A','6A','14'] ). +verb( 'scollop', 'scollops', 'scolloping', 'scolloped', 'scolloped', tran, [] ). +verb( 'scoop', 'scoops', 'scooping', 'scooped', 'scooped', tran, ['6A','15B'] ). +verb( 'scoot', 'scoots', 'scooting', 'scooted', 'scooted', intran, [] ). +verb( 'scorch', 'scorches', 'scorching', 'scorched', 'scorched', _, ['2A','2C','6A'] ). +verb( 'score', 'scores', 'scoring', 'scored', 'scored', _, ['2A','3A','6A','15A','15B'] ). +verb( 'scorn', 'scorns', 'scorning', 'scorned', 'scorned', tran, ['6A','6D','7A'] ). +verb( 'scotch', 'scotches', 'scotching', 'scotched', 'scotched', tran, ['6A'] ). +verb( 'scour', 'scours', 'scouring', 'scoured', 'scoured', _, ['2C','6A','15A','15B'] ). +verb( 'scourge', 'scourges', 'scourging', 'scourged', 'scourged', tran, ['6A'] ). +verb( 'scout', 'scouts', 'scouting', 'scouted', 'scouted', _, ['2C','6A'] ). +verb( 'scowl', 'scowls', 'scowling', 'scowled', 'scowled', intran, ['2A','3A'] ). +verb( 'scrabble', 'scrabbles', 'scrabbling', 'scrabbled', 'scrabbled', intran, ['2A','2C'] ). +verb( 'scrag', 'scrags', 'scragging', 'scragged', 'scragged', tran, [] ). +verb( 'scram', 'scrams', 'scramming', 'scrammed', 'scrammed', intran, [] ). +verb( 'scramble', 'scrambles', 'scrambling', 'scrambled', 'scrambled', _, ['2A','2C','3A','4A','6A'] ). +verb( 'scrap', 'scraps', 'scrapping', 'scrapped', 'scrapped', tran, ['6A'] ). +verb( 'scrape', 'scrapes', 'scraping', 'scraped', 'scraped', _, ['2C','3A','6A','14','15A','15B','22'] ). +verb( 'scratch', 'scratches', 'scratching', 'scratched', 'scratched', _, ['2A','2C','6A','15B'] ). +verb( 'scrawl', 'scrawls', 'scrawling', 'scrawled', 'scrawled', _, ['2A','2C','6A'] ). +verb( 'scream', 'screams', 'screaming', 'screamed', 'screamed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'screech', 'screeches', 'screeching', 'screeched', 'screeched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'screen', 'screens', 'screening', 'screened', 'screened', _, ['2C','6A','14','15A','15B'] ). +verb( 'screw', 'screws', 'screwing', 'screwed', 'screwed', _, ['2A','6A','15A','15B'] ). +verb( 'scribble', 'scribbles', 'scribbling', 'scribbled', 'scribbled', _, ['2A','6A'] ). +verb( 'scrimmage', 'scrimmages', 'scrimmaging', 'scrimmaged', 'scrimmaged', _, [] ). +verb( 'scrimp', 'scrimps', 'scrimping', 'scrimped', 'scrimped', _, [] ). +verb( 'scrimshank', 'scrimshanks', 'scrimshanking', 'scrimshanked', 'scrimshanked', intran, [] ). +verb( 'scrounge', 'scrounges', 'scrounging', 'scrounged', 'scrounged', _, ['2A','6A'] ). +verb( 'scrub', 'scrubs', 'scrubbing', 'scrubbed', 'scrubbed', _, ['2A','2C','6A','15B','22'] ). +verb( 'scrunch', 'scrunches', 'scrunching', 'scrunched', 'scrunched', tran, [] ). +verb( 'scruple', 'scruples', 'scrupling', 'scrupled', 'scrupled', intran, ['4C'] ). +verb( 'scrutinize', 'scrutinizes', 'scrutinizing', 'scrutinized', 'scrutinized', tran, ['6A'] ). +verb( 'scud', 'scuds', 'scudding', 'scudded', 'scudded', intran, ['2A','2C'] ). +verb( 'scuff', 'scuffs', 'scuffing', 'scuffed', 'scuffed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'scuffle', 'scuffles', 'scuffling', 'scuffled', 'scuffled', intran, ['2A','2C'] ). +verb( 'scull', 'sculls', 'sculling', 'sculled', 'sculled', _, ['2A','6A'] ). +verb( 'sculpt', 'sculpts', 'sculpting', 'sculpted', 'sculpted', _, [] ). +verb( 'sculpture', 'sculptures', 'sculpturing', 'sculptured', 'sculptured', _, ['2A','6A'] ). +verb( 'scupper', 'scuppers', 'scuppering', 'scuppered', 'scuppered', tran, [] ). +verb( 'scurry', 'scurries', 'scurrying', 'scurried', 'scurried', intran, ['2A','2C','3A'] ). +verb( 'scuttle', 'scuttles', 'scuttling', 'scuttled', 'scuttled', _, ['2A','2C','6A'] ). +verb( 'scythe', 'scythes', 'scything', 'scythed', 'scythed', tran, ['6A','15A'] ). +verb( 'seal', 'seals', 'sealing', 'sealed', 'sealed', _, ['2A','6A','15A','15B'] ). +verb( 'seam', 'seams', 'seaming', 'seamed', 'seamed', tran, [] ). +verb( 'sear', 'sears', 'searing', 'seared', 'seared', tran, ['6A'] ). +verb( 'search', 'searches', 'searching', 'searched', 'searched', _, ['2A','3A','6A','14','15A','15B'] ). +verb( 'season', 'seasons', 'seasoning', 'seasoned', 'seasoned', _, ['2A','6A','14'] ). +verb( 'seat', 'seats', 'seating', 'seated', 'seated', tran, ['6A'] ). +verb( 'secede', 'secedes', 'seceding', 'seceded', 'seceded', intran, ['2A','3A'] ). +verb( 'seclude', 'secludes', 'secluding', 'secluded', 'secluded', tran, ['6A','14','15A'] ). +verb( 'second', 'seconds', 'seconding', 'seconded', 'seconded', tran, ['6A'] ). +verb( 'second', 'seconds', 'seconding', 'seconded', 'seconded', tran, ['6A','15A'] ). +verb( 'secrete', 'secretes', 'secreting', 'secreted', 'secreted', tran, ['6A'] ). +verb( 'secularize', 'secularizes', 'secularizing', 'secularized', 'secularized', tran, ['6A'] ). +verb( 'secure', 'secures', 'securing', 'secured', 'secured', tran, ['6A','12B','13B','14'] ). +verb( 'sedate', 'sedates', 'sedating', 'sedated', 'sedated', tran, ['6A'] ). +verb( 'seduce', 'seduces', 'seducing', 'seduced', 'seduced', tran, ['6A','14'] ). +verb( 'see', 'sees', 'seeing', 'saw', 'seen', _, ['2A','2B','2C','4A','6A','8','9','10','15A','16B','18A','19A','22','24A'] ). +verb( 'seed', 'seeds', 'seeding', 'seeded', 'seeded', _, ['2A','6A'] ). +verb( 'seek', 'seeks', 'seeking', 'sought', 'sought', tran, ['2A','3A','6A','7A','15A'] ). +verb( 'seem', 'seems', 'seeming', 'seemed', 'seemed', intran, ['2A','4D','4E'] ). +verb( 'seep', 'seeps', 'seeping', 'seeped', 'seeped', intran, ['2C'] ). +verb( 'seesaw', 'seesaws', 'seesawing', 'seesawed', 'seesawed', intran, [] ). +verb( 'seethe', 'seethes', 'seething', 'seethed', 'seethed', _, ['2A','3A','6A'] ). +verb( 'segment', 'segments', 'segmenting', 'segmented', 'segmented', _, [] ). +verb( 'segregate', 'segregates', 'segregating', 'segregated', 'segregated', tran, ['6A'] ). +verb( 'seine', 'seines', 'seining', 'seined', 'seined', _, [] ). +verb( 'seize', 'seizes', 'seizing', 'seized', 'seized', _, ['2A','2C','3A','6A','15A'] ). +verb( 'select', 'selects', 'selecting', 'selected', 'selected', tran, ['6A','15A','16A'] ). +verb( 'sell', 'sells', 'selling', 'sold', 'sold', _, ['2A','2C','6A','12A','13A','15B'] ). +verb( 'semaphore', 'semaphores', 'semaphoring', 'semaphored', 'semaphored', _, ['2A','6A'] ). +verb( 'send', 'sends', 'sending', 'sent', 'sent', _, ['2C','3A','6A','12A','13A','15A','15B','19B','22'] ). +verb( 'sense', 'senses', 'sensing', 'sensed', 'sensed', tran, ['6A','9'] ). +verb( 'sensitize', 'sensitizes', 'sensitizing', 'sensitized', 'sensitized', tran, ['6A'] ). +verb( 'sentence', 'sentences', 'sentencing', 'sentenced', 'sentenced', tran, ['6A','14','17'] ). +verb( 'sentimentalize', 'sentimentalizes', 'sentimentalizing', 'sentimentalized', 'sentimentalized', _, ['2A','6A'] ). +verb( 'separate', 'separates', 'separating', 'separated', 'separated', _, ['2A','6A','14','15B'] ). +verb( 'sequester', 'sequesters', 'sequestering', 'sequestered', 'sequestered', tran, ['6A'] ). +verb( 'sequestrate', 'sequestrates', 'sequestrating', 'sequestrated', 'sequestrated', tran, ['6A'] ). +verb( 'serenade', 'serenades', 'serenading', 'serenaded', 'serenaded', tran, ['6A'] ). +verb( 'serialize', 'serializes', 'serializing', 'serialized', 'serialized', tran, ['6A'] ). +verb( 'sermonize', 'sermonizes', 'sermonizing', 'sermonized', 'sermonized', _, ['2A','6A'] ). +verb( 'serve', 'serves', 'serving', 'served', 'served', _, ['2A','2B','2C','3A','4A','6A','14','15A','15B'] ). +verb( 'service', 'services', 'servicing', 'serviced', 'serviced', tran, ['6A'] ). +verb( 'set', 'sets', 'setting', 'set', 'set', _, ['2A','2C','3A','6A','12C','14','15A','16A','17','19B','22'] ). +verb( 'settle', 'settles', 'settling', 'settled', 'settled', _, ['2A','2C','3A','6A','7A','8','10','14','15A','15B'] ). +verb( 'sever', 'severs', 'severing', 'severed', 'severed', _, ['2A','6A','15A'] ). +verb( 'sew', 'sews', 'sewing', 'sewed', 'sewn', _, ['2A','2B','2C','6A','15B'] ). +verb( 'sex', 'sexes', 'sexing', 'sexed', 'sexed', tran, ['6A'] ). +verb( 'shack', 'shacks', 'shacking', 'shacked', 'shacked', intran, ['2C'] ). +verb( 'shackle', 'shackles', 'shackling', 'shackled', 'shackled', tran, ['6A'] ). +verb( 'shade', 'shades', 'shading', 'shaded', 'shaded', _, ['2C','6A','15A'] ). +verb( 'shadow', 'shadows', 'shadowing', 'shadowed', 'shadowed', tran, ['6A'] ). +verb( 'shag', 'shags', 'shagging', 'shagged', 'shagged', _, ['6A'] ). +verb( 'shake', 'shakes', 'shaking', 'shook', 'shaken', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'shall', 'shall', '-', '-', '-', unknown, [] ). +verb( 'shallow', 'shallows', 'shallowing', 'shallowed', 'shallowed', intran, [] ). +verb( 'sham', 'shams', 'shamming', 'shammed', 'shammed', _, ['2A','2D','6A'] ). +verb( 'shamble', 'shambles', 'shambling', 'shambled', 'shambled', intran, ['2A','2C'] ). +verb( 'shame', 'shames', 'shaming', 'shamed', 'shamed', tran, ['6A','14'] ). +verb( 'shampoo', 'shampoos', 'shampooing', 'shampooed', 'shampooed', tran, ['6A'] ). +verb( 'shanghai', 'shanghais', 'shanghaiing', 'shanghaied', 'shanghaied', tran, [] ). +verb( 'shape', 'shapes', 'shaping', 'shaped', 'shaped', _, ['2A','2C','6A','15A'] ). +verb( 'share', 'shares', 'sharing', 'shared', 'shared', _, ['3A','6A','14','15B'] ). +verb( 'sharpen', 'sharpens', 'sharpening', 'sharpened', 'sharpened', _, ['2A','6A'] ). +verb( 'shatter', 'shatters', 'shattering', 'shattered', 'shattered', _, ['2A','6A'] ). +verb( 'shave', 'shaves', 'shaving', 'shaved', 'shaved', _, ['2A','6A','15A','15B'] ). +verb( 'shear', 'shears', 'shearing', 'sheared', 'sheared', tran, ['6A'] ). +verb( 'sheathe', 'sheathes', 'sheathing', 'sheathed', 'sheathed', tran, ['6A'] ). +verb( 'shed', 'sheds', 'shedding', 'shed', 'shed', tran, ['6A'] ). +verb( 'sheer', 'sheers', 'sheering', 'sheered', 'sheered', intran, ['2C'] ). +verb( 'shell', 'shells', 'shelling', 'shelled', 'shelled', _, ['2C','6A','15B'] ). +verb( 'shellac', 'shellacs', 'shellacking', 'shellacked', 'shellacked', tran, [] ). +verb( 'shelter', 'shelters', 'sheltering', 'sheltered', 'sheltered', _, ['2A','2C','6A','14'] ). +verb( 'shelve', 'shelves', 'shelving', 'shelved', 'shelved', _, ['2A','2C','6A'] ). +verb( 'shepherd', 'shepherds', 'shepherding', 'shepherded', 'shepherded', tran, ['6A','15A'] ). +verb( 'shew', 'shews', 'shewing', 'shewed', 'shewed', _, ['2A','2C','6A','9','10','12A','13A','14','15A','15B','19B','20','21','24A','25'] ). +verb( 'shield', 'shields', 'shielding', 'shielded', 'shielded', tran, ['6A','15A'] ). +verb( 'shift', 'shifts', 'shifting', 'shifted', 'shifted', _, ['2A','2C','6A','14','15A'] ). +verb( 'shillyshally', 'shillyshallies', 'shillyshallying', 'shillyshallied', 'shillyshallied', intran, ['2A'] ). +verb( 'shimmer', 'shimmers', 'shimmering', 'shimmered', 'shimmered', intran, ['2A','2C'] ). +verb( 'shin', 'shins', 'shinning', 'shinned', 'shinned', intran, ['3A'] ). +verb( 'shine', 'shines', 'shining', 'shone', 'shone', _, ['2A','2C','6A'] ). +verb( 'shingle', 'shingles', 'shingling', 'shingled', 'shingled', tran, ['6A'] ). +verb( 'ship', 'ships', 'shipping', 'shipped', 'shipped', _, ['2C','6A','15A','15B'] ). +verb( 'shipwreck', 'shipwrecks', 'shipwrecking', 'shipwrecked', 'shipwrecked', intran, [] ). +verb( 'shirk', 'shirks', 'shirking', 'shirked', 'shirked', _, ['2A','6A','6D'] ). +verb( 'shit', 'shits', 'shitting', 'shitted', 'shitted', intran, ['2A','3A'] ). +verb( 'shiver', 'shivers', 'shivering', 'shivered', 'shivered', _, ['2A','2C','15A'] ). +verb( 'shoal', 'shoals', 'shoaling', 'shoaled', 'shoaled', intran, ['2A'] ). +verb( 'shock', 'shocks', 'shocking', 'shocked', 'shocked', tran, ['6A'] ). +verb( 'shoe', 'shoes', 'shoeing', 'shod', 'shod', tran, ['6A'] ). +verb( 'shoo', 'shoos', 'shooing', 'shooed', 'shooed', _, ['15B'] ). +verb( 'shoot', 'shoots', 'shooting', 'shot', 'shot', _, ['2A','2C','4A','6A','15A','15B'] ). +verb( 'shop', 'shops', 'shopping', 'shopped', 'shopped', intran, ['2A','2C'] ). +verb( 'shoplift', 'shoplifts', 'shoplifting', 'shoplifted', 'shoplifted', _, ['2A','6A'] ). +verb( 'shore', 'shores', 'shoring', 'shored', 'shored', tran, ['15B'] ). +verb( 'short', 'shorts', 'shorting', 'shorted', 'shorted', _, [] ). +verb( 'short-change', 'short-changes', 'short-changing', 'short-changed', 'short-changed', tran, [] ). +verb( 'short-circuit', 'short-circuits', 'short-circuiting', 'short-circuited', 'short-circuited', _, [] ). +verb( 'shorten', 'shortens', 'shortening', 'shortened', 'shortened', _, ['2A','6A'] ). +verb( 'shortlist', 'shortlists', 'shortlisting', 'shortlisted', 'shortlisted', tran, [] ). +verb( 'should', 'should', '-', '-', '-', unknown, [] ). +verb( 'shoulder', 'shoulders', 'shouldering', 'shouldered', 'shouldered', tran, ['6A','15A'] ). +verb( 'shout', 'shouts', 'shouting', 'shouted', 'shouted', _, ['2A','2B','2C','3A','4B','6A','15A','15B','22'] ). +verb( 'shove', 'shoves', 'shoving', 'shoved', 'shoved', _, ['2A','2C','6A','15A','15B'] ). +verb( 'shovel', 'shovels', 'shovelling', 'shovelled', 'shovelled', tran, ['6A','15A','15B'] ). +verb( 'show', 'shows', 'showing', 'showed', 'showed', _, ['2A','2C','6A','9','10','12A','13A','14','15A','15B','19B','20','21','24A','25'] ). +verb( 'shower', 'showers', 'showering', 'showered', 'showered', _, ['2C','14'] ). +verb( 'shred', 'shreds', 'shredding', 'shredded', 'shredded', tran, ['6A'] ). +verb( 'shriek', 'shrieks', 'shrieking', 'shrieked', 'shrieked', _, ['2A','2C','6A','15B'] ). +verb( 'shrill', 'shrills', 'shrilling', 'shrilled', 'shrilled', _, [] ). +verb( 'shrimp', 'shrimps', 'shrimping', 'shrimped', 'shrimped', intran, [] ). +verb( 'shrine', 'shrines', 'shrining', 'shrined', 'shrined', tran, [] ). +verb( 'shrink', 'shrinks', 'shrinking', 'shrank', 'shrunk', _, ['2A','2C','3A','6A'] ). +verb( 'shrive', 'shrives', 'shriving', 'shrived', 'shrived', tran, ['6A'] ). +verb( 'shrivel', 'shrivels', 'shrivelling', 'shrivelled', 'shrivelled', _, ['2A','2C','6A','15B'] ). +verb( 'shroud', 'shrouds', 'shrouding', 'shrouded', 'shrouded', tran, ['6A','15A'] ). +verb( 'shrug', 'shrugs', 'shrugging', 'shrugged', 'shrugged', tran, ['6A','15B'] ). +verb( 'shuck', 'shucks', 'shucking', 'shucked', 'shucked', tran, ['6A'] ). +verb( 'shudder', 'shudders', 'shuddering', 'shuddered', 'shuddered', intran, ['2A','2C','4C'] ). +verb( 'shuffle', 'shuffles', 'shuffling', 'shuffled', 'shuffled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'shun', 'shuns', 'shunning', 'shunned', 'shunned', tran, ['6A','6D'] ). +verb( 'shunt', 'shunts', 'shunting', 'shunted', 'shunted', _, ['2A','6A','15A','15B'] ). +verb( 'shush', 'shushes', 'shushing', 'shushed', 'shushed', _, [] ). +verb( 'shut', 'shuts', 'shutting', 'shut', 'shut', _, ['2A','2C','6A','15A','15B'] ). +verb( 'shutter', 'shutters', 'shuttering', 'shuttered', 'shuttered', tran, ['6A'] ). +verb( 'shuttle', 'shuttles', 'shuttling', 'shuttled', 'shuttled', _, ['2C','6A','15A'] ). +verb( 'shy', 'shies', 'shying', 'shied', 'shied', _, ['2A','3A','6A','15A'] ). +verb( 'sick', 'sicks', 'sicking', 'sicked', 'sicked', tran, [] ). +verb( 'sicken', 'sickens', 'sickening', 'sickened', 'sickened', _, ['2A','3A','4C','6A'] ). +verb( 'side', 'sides', 'siding', 'sided', 'sided', intran, ['3A'] ). +verb( 'side-slip', 'side-slips', 'side-slipping', 'side-slipped', 'side-slipped', intran, [] ). +verb( 'sidestep', 'sidesteps', 'sidestepping', 'sidestepped', 'sidestepped', _, ['2A','6A'] ). +verb( 'sidetrack', 'sidetracks', 'sidetracking', 'sidetracked', 'sidetracked', tran, ['6A'] ). +verb( 'sidle', 'sidles', 'sidling', 'sidled', 'sidled', intran, ['2C'] ). +verb( 'sieve', 'sieves', 'sieving', 'sieved', 'sieved', tran, ['6A'] ). +verb( 'sift', 'sifts', 'sifting', 'sifted', 'sifted', _, ['2C','6A','14','15A','15B'] ). +verb( 'sigh', 'sighs', 'sighing', 'sighed', 'sighed', _, ['2A','3A','6A','15B'] ). +verb( 'sight', 'sights', 'sighting', 'sighted', 'sighted', tran, ['6A'] ). +verb( 'sign', 'signs', 'signing', 'signed', 'signed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'signal', 'signals', 'signalling', 'signalled', 'signalled', _, ['2A','2C','6A','9','17'] ). +verb( 'signalize', 'signalizes', 'signalizing', 'signalized', 'signalized', tran, ['6A'] ). +verb( 'signify', 'signifies', 'signifying', 'signified', 'signified', _, ['2A','2C','6A','9','15A'] ). +verb( 'signpost', 'signposts', 'signposting', 'signposted', 'signposted', tran, [] ). +verb( 'silence', 'silences', 'silencing', 'silenced', 'silenced', tran, ['6A'] ). +verb( 'silhouette', 'silhouettes', 'silhouetting', 'silhouetted', 'silhouetted', tran, [] ). +verb( 'silt', 'silts', 'silting', 'silted', 'silted', _, ['2C','15B'] ). +verb( 'silver', 'silvers', 'silvering', 'silvered', 'silvered', _, ['2A','6A'] ). +verb( 'simmer', 'simmers', 'simmering', 'simmered', 'simmered', _, ['2A','2B','2C','6A','15A'] ). +verb( 'simper', 'simpers', 'simpering', 'simpered', 'simpered', intran, ['2A'] ). +verb( 'simplify', 'simplifies', 'simplifying', 'simplified', 'simplified', tran, ['6A'] ). +verb( 'simulate', 'simulates', 'simulating', 'simulated', 'simulated', tran, ['6A'] ). +verb( 'sin', 'sins', 'sinning', 'sinned', 'sinned', intran, ['2A','3A'] ). +verb( 'sing', 'sings', 'singing', 'sang', 'sung', _, ['2A','2C','3A','6A','12B','13B','15A'] ). +verb( 'singe', 'singes', 'singeing', 'singed', 'singed', _, ['2A','6A'] ). +verb( 'single', 'singles', 'singling', 'singled', 'singled', tran, ['15B'] ). +verb( 'singularize', 'singularizes', 'singularizing', 'singularized', 'singularized', tran, [] ). +verb( 'sink', 'sinks', 'sinking', 'sank', 'sunk', _, ['2A','2C','3A','6A','14','15A'] ). +verb( 'sip', 'sips', 'sipping', 'sipped', 'sipped', _, ['2A','6A','15B'] ). +verb( 'siphon', 'siphons', 'siphoning', 'siphoned', 'siphoned', _, ['15B'] ). +verb( 'sire', 'sires', 'siring', 'sired', 'sired', tran, ['6A'] ). +verb( 'sit', 'sits', 'siting', 'sat', 'sat', _, ['2A','2C','3A','6A','15B'] ). +verb( 'site', 'sites', 'siting', 'sited', 'sited', intran, ['6A'] ). +verb( 'size', 'sizes', 'sizing', 'sized', 'sized', tran, ['6A','15B'] ). +verb( 'sizzle', 'sizzles', 'sizzling', 'sizzled', 'sizzled', intran, ['6A'] ). +verb( 'skate', 'skates', 'skating', 'skated', 'skated', intran, ['2A','2C'] ). +verb( 'skedaddle', 'skedaddles', 'skedaddling', 'skedaddled', 'skedaddled', intran, ['2A'] ). +verb( 'sketch', 'sketches', 'sketching', 'sketched', 'sketched', _, ['2A','6A','15B'] ). +verb( 'skewer', 'skewers', 'skewering', 'skewered', 'skewered', tran, ['6A'] ). +verb( 'ski', 'skis', 'skiing', 'ski\'d', 'ski\'d', intran, [] ). +verb( 'skid', 'skids', 'skidding', 'skidded', 'skidded', intran, ['2A'] ). +verb( 'skim', 'skims', 'skimming', 'skimmed', 'skimmed', _, ['2C','3A','6A','14','15A','15B'] ). +verb( 'skimp', 'skimps', 'skimping', 'skimped', 'skimped', _, ['2A','6A'] ). +verb( 'skin', 'skins', 'skinning', 'skinned', 'skinned', _, ['2C','6A','14'] ). +verb( 'skip', 'skips', 'skipping', 'skipped', 'skipped', _, ['2A','2C','6A'] ). +verb( 'skipper', 'skippers', 'skippering', 'skippered', 'skippered', tran, [] ). +verb( 'skirmish', 'skirmishes', 'skirmishing', 'skirmished', 'skirmished', intran, ['2A','2C'] ). +verb( 'skirt', 'skirts', 'skirting', 'skirted', 'skirted', _, ['2C','6A'] ). +verb( 'skitter', 'skitters', 'skittering', 'skittered', 'skittered', intran, ['2A'] ). +verb( 'skittle', 'skittles', 'skittling', 'skittled', 'skittled', tran, ['15B'] ). +verb( 'skulk', 'skulks', 'skulking', 'skulked', 'skulked', intran, ['2A','2C'] ). +verb( 'sky', 'skies', 'skying', 'skied', 'skied', tran, [] ). +verb( 'skylark', 'skylarks', 'skylarking', 'skylarked', 'skylarked', intran, [] ). +verb( 'skyrocket', 'skyrockets', 'skyrocketing', 'skyrocketed', 'skyrocketed', intran, [] ). +verb( 'slack', 'slacks', 'slacking', 'slacked', 'slacked', intran, ['2A','2C'] ). +verb( 'slacken', 'slackens', 'slackening', 'slackened', 'slackened', _, ['2A','6A'] ). +verb( 'slake', 'slakes', 'slaking', 'slaked', 'slaked', tran, ['6A'] ). +verb( 'slam', 'slams', 'slamming', 'slammed', 'slammed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'slander', 'slanders', 'slandering', 'slandered', 'slandered', tran, ['6A'] ). +verb( 'slang', 'slangs', 'slanging', 'slanged', 'slanged', tran, ['6A'] ). +verb( 'slant', 'slants', 'slanting', 'slanted', 'slanted', _, ['2A','2C','6A'] ). +verb( 'slap', 'slaps', 'slapping', 'slapped', 'slapped', tran, ['6A','15A','15B'] ). +verb( 'slash', 'slashes', 'slashing', 'slashed', 'slashed', _, ['2C','6A'] ). +verb( 'slate', 'slates', 'slating', 'slated', 'slated', tran, ['6A'] ). +verb( 'slaughter', 'slaughters', 'slaughtering', 'slaughtered', 'slaughtered', tran, ['6A'] ). +verb( 'slave', 'slaves', 'slaving', 'slaved', 'slaved', intran, ['2A','2B','2C','3A'] ). +verb( 'slaver', 'slavers', 'slavering', 'slavered', 'slavered', intran, ['2A','2C'] ). +verb( 'slay', 'slays', 'slaying', 'slew', 'slain', tran, ['6A'] ). +verb( 'sledge', 'sledges', 'sledging', 'sledged', 'sledged', _, [] ). +verb( 'sleek', 'sleeks', 'sleeking', 'sleeked', 'sleeked', tran, ['6A'] ). +verb( 'sleep', 'sleeps', 'sleeping', 'slept', 'slept', _, ['2A','2B','2C','6A'] ). +verb( 'sleet', 'sleets', 'sleeting', 'sleeted', 'sleeted', intran, ['2A'] ). +verb( 'sleigh', 'sleighs', 'sleighing', 'sleighed', 'sleighed', _, ['2A','6A'] ). +verb( 'slenderize', 'slenderizes', 'slenderizing', 'slenderized', 'slenderized', _, ['6A'] ). +verb( 'slew', 'slews', 'slewing', 'slewed', 'slewed', _, ['2C','6A','15B'] ). +verb( 'slice', 'slices', 'slicing', 'sliced', 'sliced', _, ['3A','6A','15A','15B','22'] ). +verb( 'slide', 'slides', 'sliding', 'slid', 'slid', _, ['2A','2C','3A','6A','15A'] ). +verb( 'slight', 'slights', 'slighting', 'slighted', 'slighted', tran, ['6A'] ). +verb( 'slim', 'slims', 'slimming', 'slimmed', 'slimmed', intran, [] ). +verb( 'sling', 'slings', 'slinging', 'slung', 'slung', _, ['6A','15A','15B'] ). +verb( 'slink', 'slinks', 'slinking', 'slunk', 'slunk', intran, ['2C'] ). +verb( 'slip', 'slips', 'slipping', 'slipped', 'slipped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'slit', 'slits', 'slitting', 'slit', 'slit', tran, ['2A','2C','6A','15A','22'] ). +verb( 'slither', 'slithers', 'slithering', 'slithered', 'slithered', intran, ['2A','2C'] ). +verb( 'sliver', 'slivers', 'slivering', 'slivered', 'slivered', _, ['2A','6A'] ). +verb( 'slobber', 'slobbers', 'slobbering', 'slobbered', 'slobbered', _, ['2A','3A','6A'] ). +verb( 'slog', 'slogs', 'slogging', 'slogged', 'slogged', _, ['2C','3A','6A'] ). +verb( 'slop', 'slops', 'slopping', 'slopped', 'slopped', _, ['2A','2C','6A','15A'] ). +verb( 'slope', 'slopes', 'sloping', 'sloped', 'sloped', _, ['2A','2C','6A'] ). +verb( 'slosh', 'sloshes', 'sloshing', 'sloshed', 'sloshed', _, ['3A','6A','15A','15B'] ). +verb( 'slot', 'slots', 'slotting', 'slotted', 'slotted', tran, ['6A','15A'] ). +verb( 'slouch', 'slouches', 'slouching', 'slouched', 'slouched', intran, ['2A','2C'] ). +verb( 'slough', 'sloughs', 'sloughing', 'sloughed', 'sloughed', _, ['2A','6A','15B'] ). +verb( 'slow', 'slows', 'slowing', 'slowed', 'slowed', _, ['2C','15B'] ). +verb( 'slug', 'slugs', 'slugging', 'slugged', 'slugged', _, [] ). +verb( 'sluice', 'sluices', 'sluicing', 'sluiced', 'sluiced', _, ['3A','6A','15B'] ). +verb( 'slum', 'slums', 'slumming', 'slummed', 'slummed', intran, [] ). +verb( 'slumber', 'slumbers', 'slumbering', 'slumbered', 'slumbered', _, ['2A','15B'] ). +verb( 'slump', 'slumps', 'slumping', 'slumped', 'slumped', intran, ['2A','2C'] ). +verb( 'slur', 'slurs', 'slurring', 'slurred', 'slurred', _, ['3A','6A'] ). +verb( 'smack', 'smacks', 'smacking', 'smacked', 'smacked', _, ['3A','6A'] ). +verb( 'smart', 'smarts', 'smarting', 'smarted', 'smarted', intran, ['2A','2C','3A'] ). +verb( 'smarten', 'smartens', 'smartening', 'smartened', 'smartened', _, ['2C','6A','15B'] ). +verb( 'smash', 'smashes', 'smashing', 'smashed', 'smashed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'smear', 'smears', 'smearing', 'smeared', 'smeared', _, ['2A','6A','14'] ). +verb( 'smell', 'smells', 'smelling', 'smelled', 'smelled', _, ['2A','2C','2D','3A','6A','15B','19A'] ). +verb( 'smelt', 'smelts', 'smelting', 'smelted', 'smelted', tran, ['2A','2C','2D','3A','6A','15B','19A'] ). +verb( 'smile', 'smiles', 'smiling', 'smiled', 'smiled', _, ['2A','2B','3A','4B','6B'] ). +verb( 'smirch', 'smirches', 'smirching', 'smirched', 'smirched', tran, ['6A'] ). +verb( 'smirk', 'smirks', 'smirking', 'smirked', 'smirked', intran, ['2A'] ). +verb( 'smite', 'smites', 'smiting', 'smote', 'smitten', _, ['2A','2C','6A'] ). +verb( 'smoke', 'smokes', 'smoking', 'smoked', 'smoked', _, ['2A','2C','6A','15B','22'] ). +verb( 'smooth', 'smooths', 'smoothing', 'smoothed', 'smoothed', _, ['2C','6A','15B'] ). +verb( 'smother', 'smothers', 'smothering', 'smothered', 'smothered', tran, ['6A','14','15B'] ). +verb( 'smoulder', 'smoulders', 'smouldering', 'smouldered', 'smouldered', intran, ['2A','2C'] ). +verb( 'smudge', 'smudges', 'smudging', 'smudged', 'smudged', _, ['2A','6A'] ). +verb( 'smuggle', 'smuggles', 'smuggling', 'smuggled', 'smuggled', tran, ['6A','14','15A','15B'] ). +verb( 'smut', 'smuts', 'smutting', 'smutted', 'smutted', tran, ['6A'] ). +verb( 'snaffle', 'snaffles', 'snaffling', 'snaffled', 'snaffled', tran, ['6A'] ). +verb( 'snag', 'snags', 'snagging', 'snagged', 'snagged', tran, [] ). +verb( 'snake', 'snakes', 'snaking', 'snaked', 'snaked', intran, ['2C'] ). +verb( 'snap', 'snaps', 'snapping', 'snapped', 'snapped', _, ['2A','2C','3A','6A','14','15A','15B','22'] ). +verb( 'snare', 'snares', 'snaring', 'snared', 'snared', tran, ['6A'] ). +verb( 'snarl', 'snarls', 'snarling', 'snarled', 'snarled', _, ['2A','2C','3A','6A','15B'] ). +verb( 'snatch', 'snatches', 'snatching', 'snatched', 'snatched', _, ['2A','6A','15A','15B'] ). +verb( 'sneak', 'sneaks', 'sneaking', 'sneaked', 'sneaked', _, ['2A','3A','6A'] ). +verb( 'sneer', 'sneers', 'sneering', 'sneered', 'sneered', intran, ['2A','3A'] ). +verb( 'sneeze', 'sneezes', 'sneezing', 'sneezed', 'sneezed', intran, ['2A'] ). +verb( 'snick', 'snicks', 'snicking', 'snicked', 'snicked', _, [] ). +verb( 'snicker', 'snickers', 'snickering', 'snickered', 'snickered', intran, [] ). +verb( 'sniff', 'sniffs', 'sniffing', 'sniffed', 'sniffed', _, ['2A','3A','6A','15B'] ). +verb( 'sniffle', 'sniffles', 'sniffling', 'sniffled', 'sniffled', intran, [] ). +verb( 'snigger', 'sniggers', 'sniggering', 'sniggered', 'sniggered', intran, ['2A','2C'] ). +verb( 'snip', 'snips', 'snipping', 'snipped', 'snipped', _, ['3A','6A','15B'] ). +verb( 'snipe', 'snipes', 'sniping', 'sniped', 'sniped', _, ['2A','3A','6A'] ). +verb( 'snitch', 'snitches', 'snitching', 'snitched', 'snitched', _, ['2A','3A','6A'] ). +verb( 'snivel', 'snivels', 'snivelling', 'snivelled', 'snivelled', intran, ['2A'] ). +verb( 'snog', 'snogs', 'snogging', 'snogged', 'snogged', intran, ['2A'] ). +verb( 'snoop', 'snoops', 'snooping', 'snooped', 'snooped', intran, ['2A','2C','3A'] ). +verb( 'snooze', 'snoozes', 'snoozing', 'snoozed', 'snoozed', intran, ['2A'] ). +verb( 'snore', 'snores', 'snoring', 'snored', 'snored', intran, ['2A','2C'] ). +verb( 'snort', 'snorts', 'snorting', 'snorted', 'snorted', _, ['2A','2C','6A','15B'] ). +verb( 'snow', 'snows', 'snowing', 'snowed', 'snowed', _, ['2A','2B','2C'] ). +verb( 'snowball', 'snowballs', 'snowballing', 'snowballed', 'snowballed', _, [] ). +verb( 'snub', 'snubs', 'snubbing', 'snubbed', 'snubbed', tran, ['6A'] ). +verb( 'snuff', 'snuffs', 'snuffing', 'snuffed', 'snuffed', _, ['2C','6A','15B'] ). +verb( 'snuffle', 'snuffles', 'snuffling', 'snuffled', 'snuffled', intran, ['2A'] ). +verb( 'snuggle', 'snuggles', 'snuggling', 'snuggled', 'snuggled', _, ['2C','14'] ). +verb( 'soak', 'soaks', 'soaking', 'soaked', 'soaked', _, ['2A','3A','6A','14','15A','15B'] ). +verb( 'soap', 'soaps', 'soaping', 'soaped', 'soaped', tran, ['6A','15B'] ). +verb( 'soar', 'soars', 'soaring', 'soared', 'soared', intran, ['2A','2C'] ). +verb( 'sob', 'sobs', 'sobbing', 'sobbed', 'sobbed', _, ['2A','2C','15A','15B'] ). +verb( 'sober', 'sobers', 'sobering', 'sobered', 'sobered', _, ['2C','6A','15B'] ). +verb( 'socialize', 'socializes', 'socializing', 'socialized', 'socialized', tran, ['6A'] ). +verb( 'sock', 'socks', 'socking', 'socked', 'socked', tran, ['6A','15A'] ). +verb( 'sod', 'sods', 'sodding', 'sodded', 'sodded', intran, [] ). +verb( 'soft-pedal', 'soft-pedals', 'soft-pedalling', 'soft-pedalled', 'soft-pedalled', _, [] ). +verb( 'soft-soap', 'soft-soaps', 'soft-soaping', 'soft-soaped', 'soft-soaped', tran, [] ). +verb( 'soft-solder', 'soft-solders', 'soft-soldering', 'soft-soldered', 'soft-soldered', tran, [] ). +verb( 'soften', 'softens', 'softening', 'softened', 'softened', _, ['2A','6A'] ). +verb( 'softland', 'softlands', 'softlanding', 'softlanded', 'softlanded', intran, [] ). +verb( 'soil', 'soils', 'soiling', 'soiled', 'soiled', _, ['2A','2C','6A'] ). +verb( 'sojourn', 'sojourns', 'sojourning', 'sojourned', 'sojourned', intran, ['2C'] ). +verb( 'solace', 'solaces', 'solacing', 'solaced', 'solaced', tran, ['6A','15A'] ). +verb( 'solder', 'solders', 'soldering', 'soldered', 'soldered', tran, ['6A','15A','15B'] ). +verb( 'soldier', 'soldiers', 'soldiering', 'soldiered', 'soldiered', intran, ['2A'] ). +verb( 'sole', 'soles', 'soling', 'soled', 'soled', tran, ['6A'] ). +verb( 'solemnize', 'solemnizes', 'solemnizing', 'solemnized', 'solemnized', tran, ['6A'] ). +verb( 'solicit', 'solicits', 'soliciting', 'solicited', 'solicited', _, ['2A','6A','14'] ). +verb( 'solidify', 'solidifies', 'solidifying', 'solidified', 'solidified', _, ['2A','6A'] ). +verb( 'soliloquize', 'soliloquizes', 'soliloquizing', 'soliloquized', 'soliloquized', intran, ['2A'] ). +verb( 'solve', 'solves', 'solving', 'solved', 'solved', tran, ['6A'] ). +verb( 'somersault', 'somersaults', 'somersaulting', 'somersaulted', 'somersaulted', intran, ['2A'] ). +verb( 'soot', 'soots', 'sooting', 'sooted', 'sooted', tran, [] ). +verb( 'soothe', 'soothes', 'soothing', 'soothed', 'soothed', tran, ['6A'] ). +verb( 'sop', 'sops', 'sopping', 'sopped', 'sopped', tran, ['6A','15B'] ). +verb( 'sorrow', 'sorrows', 'sorrowing', 'sorrowed', 'sorrowed', intran, ['2A','2C'] ). +verb( 'sort', 'sorts', 'sorting', 'sorted', 'sorted', _, ['6A','15B'] ). +verb( 'sough', 'soughs', 'soughing', 'soughed', 'soughed', intran, ['2A'] ). +verb( 'sound', 'sounds', 'sounding', 'sounded', 'sounded', _, ['2A','2C','2D','6A','15A','15B'] ). +verb( 'soundproof', 'soundproofs', 'soundproofing', 'soundproofed', 'soundproofed', tran, ['6A'] ). +verb( 'soup', 'soups', 'souping', 'souped', 'souped', tran, ['15B'] ). +verb( 'sour', 'sours', 'souring', 'soured', 'soured', _, ['2A','6A'] ). +verb( 'souse', 'souses', 'sousing', 'soused', 'soused', tran, ['6A'] ). +verb( 'sovietize', 'sovietizes', 'sovietizing', 'sovietized', 'sovietized', tran, [] ). +verb( 'sow', 'sows', 'sowing', 'sowed', 'sowed', _, ['2A','6A','15A'] ). +verb( 'space', 'spaces', 'spacing', 'spaced', 'spaced', tran, ['6A','15B'] ). +verb( 'spade', 'spades', 'spading', 'spaded', 'spaded', tran, ['6A','15B'] ). +verb( 'span', 'spans', 'spanning', 'spanned', 'spanned', tran, ['2A','2C','6A','14','15B'] ). +verb( 'spangle', 'spangles', 'spangling', 'spangled', 'spangled', tran, [] ). +verb( 'spank', 'spanks', 'spanking', 'spanked', 'spanked', _, ['2C','6A'] ). +verb( 'spar', 'spars', 'sparring', 'sparred', 'sparred', intran, ['2A','2C'] ). +verb( 'spare', 'spares', 'sparing', 'spared', 'spared', _, ['6A','12A','12B','13A','13B'] ). +verb( 'spark', 'sparks', 'sparking', 'sparked', 'sparked', _, ['2A','15B'] ). +verb( 'sparkle', 'sparkles', 'sparkling', 'sparkled', 'sparkled', intran, ['2A','2C'] ). +verb( 'spat', 'spats', 'spatting', 'spatted', 'spatted', _, ['2A','2C','3A','6A','15B'] ). +verb( 'spatchcock', 'spatchcocks', 'spatchcocking', 'spatchcocked', 'spatchcocked', tran, ['6A','14'] ). +verb( 'spatter', 'spatters', 'spattering', 'spattered', 'spattered', _, ['2C','6A','14'] ). +verb( 'spawn', 'spawns', 'spawning', 'spawned', 'spawned', _, ['2A','6A'] ). +verb( 'spay', 'spays', 'spaying', 'spayed', 'spayed', tran, ['6A'] ). +verb( 'speak', 'speaks', 'speaking', 'spoke', 'spoken', _, ['2A','2B','2C','3A','6A','15A'] ). +verb( 'spear', 'spears', 'spearing', 'speared', 'speared', tran, ['6A'] ). +verb( 'specialize', 'specializes', 'specializing', 'specialized', 'specialized', _, ['2A','3A'] ). +verb( 'specify', 'specifies', 'specifying', 'specified', 'specified', tran, ['6A','9'] ). +verb( 'speculate', 'speculates', 'speculating', 'speculated', 'speculated', intran, ['2A','2C'] ). +verb( 'speechify', 'speechifies', 'speechifying', 'speechified', 'speechified', intran, [] ). +verb( 'speed', 'speeds', 'speeding', 'speeded', 'speeded', _, ['2A','2C','6A','14','15B'] ). +verb( 'spell', 'spells', 'spelling', 'spelled', 'spelled', _, ['2A','6A','15B'] ). +verb( 'spend', 'spends', 'spending', 'spent', 'spent', _, ['2A','6A','14','19B'] ). +verb( 'spew', 'spews', 'spewing', 'spewed', 'spewed', _, ['2A','6A','15B'] ). +verb( 'spice', 'spices', 'spicing', 'spiced', 'spiced', tran, ['6A'] ). +verb( 'spiel', 'spiels', 'spieling', 'spieled', 'spieled', _, [] ). +verb( 'spike', 'spikes', 'spiking', 'spiked', 'spiked', tran, ['6A'] ). +verb( 'spill', 'spills', 'spilling', 'spilled', 'spilled', _, ['2A','2C','6A'] ). +verb( 'spin', 'spins', 'spinning', 'span', 'spun', _, ['2A','2C','6A','14','15B'] ). +verb( 'spin-dry', 'spin-dries', 'spin-drying', 'spin-dried', 'spin-dried', tran, [] ). +verb( 'spiral', 'spirals', 'spiralling', 'spiralled', 'spiralled', intran, ['2A','2C'] ). +verb( 'spirit', 'spirits', 'spiriting', 'spirited', 'spirited', tran, ['15B'] ). +verb( 'spiritualize', 'spiritualizes', 'spiritualizing', 'spiritualized', 'spiritualized', tran, ['6A'] ). +verb( 'spirt', 'spirts', 'spirting', 'spirted', 'spirted', intran, ['2A','2C'] ). +verb( 'spit', 'spits', 'spitting', 'spat', 'spat', _, ['2A','2C','3A','6A','15B'] ). +verb( 'spite', 'spites', 'spiting', 'spited', 'spited', tran, ['6A'] ). +verb( 'splash', 'splashes', 'splashing', 'splashed', 'splashed', _, ['2A','2C','6A','14','15B'] ). +verb( 'splay', 'splays', 'splaying', 'splayed', 'splayed', _, [] ). +verb( 'splice', 'splices', 'splicing', 'spliced', 'spliced', tran, ['6A'] ). +verb( 'splinter', 'splinters', 'splintering', 'splintered', 'splintered', _, ['2C','15B'] ). +verb( 'split', 'splits', 'splitting', 'split', 'split', _, ['2A','2C','2D','3A','6A','14','15A','15B','22'] ). +verb( 'splosh', 'sploshes', 'sploshing', 'sploshed', 'sploshed', tran, [] ). +verb( 'splurge', 'splurges', 'splurging', 'splurged', 'splurged', intran, [] ). +verb( 'splutter', 'splutters', 'spluttering', 'spluttered', 'spluttered', _, ['2A','2C','6A','15B'] ). +verb( 'spoil', 'spoils', 'spoiling', 'spoiled', 'spoiled', _, ['2A','6A','14'] ). +verb( 'sponge', 'sponges', 'sponging', 'sponged', 'sponged', _, ['3A','6A','14','15B'] ). +verb( 'sponsor', 'sponsors', 'sponsoring', 'sponsored', 'sponsored', tran, ['6A'] ). +verb( 'spoof', 'spoofs', 'spoofing', 'spoofed', 'spoofed', tran, [] ). +verb( 'spoon', 'spoons', 'spooning', 'spooned', 'spooned', _, ['2A','15B'] ). +verb( 'spoonfeed', 'spoonfeeds', 'spoonfeeding', 'spoonfed', 'spoonfed', tran, [] ). +verb( 'sport', 'sports', 'sporting', 'sported', 'sported', _, ['2C','6A'] ). +verb( 'spot', 'spots', 'spotting', 'spotted', 'spotted', _, ['2A','6A'] ). +verb( 'spotlight', 'spotlights', 'spotlighting', 'spotlighted', 'spotlighted', tran, ['6A'] ). +verb( 'spout', 'spouts', 'spouting', 'spouted', 'spouted', _, ['2A','2C','6A'] ). +verb( 'sprain', 'sprains', 'spraining', 'sprained', 'sprained', tran, ['6A'] ). +verb( 'sprawl', 'sprawls', 'sprawling', 'sprawled', 'sprawled', intran, ['2A','2C'] ). +verb( 'spray', 'sprays', 'spraying', 'sprayed', 'sprayed', tran, ['6A','14'] ). +verb( 'spread', 'spreads', 'spreading', 'spread', 'spread', _, ['2A','2B','2C','6A','14','15A','15B'] ). +verb( 'spreadeagle', 'spreadeagles', 'spreadeagling', 'spreadeagled', 'spreadeagled', tran, [] ). +verb( 'spring', 'springs', 'springing', 'sprang', 'sprung', _, ['2A','2C','3A','6A','14'] ). +verb( 'spring-clean', 'spring-cleans', 'spring-cleaning', 'spring-cleaned', 'spring-cleaned', tran, [] ). +verb( 'sprinkle', 'sprinkles', 'sprinkling', 'sprinkled', 'sprinkled', tran, ['6A','14'] ). +verb( 'sprint', 'sprints', 'sprinting', 'sprinted', 'sprinted', intran, ['2A','2C'] ). +verb( 'sprout', 'sprouts', 'sprouting', 'sprouted', 'sprouted', _, ['2A','2C','6A'] ). +verb( 'spruce', 'spruces', 'sprucing', 'spruced', 'spruced', _, ['2C','6A','15B'] ). +verb( 'spue', 'spues', 'spuing', 'spued', 'spued', _, [] ). +verb( 'spur', 'spurs', 'spurring', 'spurred', 'spurred', _, ['2C','6A','15B'] ). +verb( 'spurn', 'spurns', 'spurning', 'spurned', 'spurned', tran, ['6A'] ). +verb( 'spurt', 'spurts', 'spurting', 'spurted', 'spurted', intran, ['2A','2C','3A'] ). +verb( 'sputter', 'sputters', 'sputtering', 'sputtered', 'sputtered', _, ['2A','2C'] ). +verb( 'spy', 'spies', 'spying', 'spied', 'spied', _, ['2A','3A','6A','15B','19A'] ). +verb( 'squabble', 'squabbles', 'squabbling', 'squabbled', 'squabbled', intran, ['2C'] ). +verb( 'squall', 'squalls', 'squalling', 'squalled', 'squalled', intran, ['2A'] ). +verb( 'squander', 'squanders', 'squandering', 'squandered', 'squandered', tran, ['6A'] ). +verb( 'square', 'squares', 'squaring', 'squared', 'squared', _, ['2C','3A','6A','14','15B'] ). +verb( 'squash', 'squashes', 'squashing', 'squashed', 'squashed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'squat', 'squats', 'squatting', 'squatted', 'squatted', intran, ['2A','2C','6A','15B'] ). +verb( 'squawk', 'squawks', 'squawking', 'squawked', 'squawked', intran, ['2A','2C'] ). +verb( 'squeak', 'squeaks', 'squeaking', 'squeaked', 'squeaked', _, ['2A','2C','6A','15B'] ). +verb( 'squeal', 'squeals', 'squealing', 'squealed', 'squealed', _, ['2A','2C','6A','15B'] ). +verb( 'squeegee', 'squeegees', 'squeegeeing', 'squeegeed', 'squeegeed', tran, ['6A'] ). +verb( 'squeeze', 'squeezes', 'squeezing', 'squeezed', 'squeezed', _, ['2A','2C','6A','14','15A','15B','22'] ). +verb( 'squelch', 'squelches', 'squelching', 'squelched', 'squelched', _, ['2A','2C'] ). +verb( 'squint', 'squints', 'squinting', 'squinted', 'squinted', intran, ['2A','3A'] ). +verb( 'squire', 'squires', 'squiring', 'squired', 'squired', tran, ['6A','15A'] ). +verb( 'squirm', 'squirms', 'squirming', 'squirmed', 'squirmed', intran, ['2A','2C'] ). +verb( 'squirt', 'squirts', 'squirting', 'squirted', 'squirted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'stab', 'stabs', 'stabbing', 'stabbed', 'stabbed', _, ['2A','3A','6A','15A'] ). +verb( 'stabilize', 'stabilizes', 'stabilizing', 'stabilized', 'stabilized', tran, ['6A'] ). +verb( 'stable', 'stables', 'stabling', 'stabled', 'stabled', tran, [] ). +verb( 'stack', 'stacks', 'stacking', 'stacked', 'stacked', tran, ['6A','15B'] ). +verb( 'staff', 'staffs', 'staffing', 'staffed', 'staffed', tran, ['6A'] ). +verb( 'stage', 'stages', 'staging', 'staged', 'staged', _, ['2C','6A'] ). +verb( 'stagger', 'staggers', 'staggering', 'staggered', 'staggered', _, ['2A','2C','6A'] ). +verb( 'stagnate', 'stagnates', 'stagnating', 'stagnated', 'stagnated', intran, ['2A'] ). +verb( 'stain', 'stains', 'staining', 'stained', 'stained', _, ['2A','6A','22'] ). +verb( 'stake', 'stakes', 'staking', 'staked', 'staked', tran, ['6A','14','15B'] ). +verb( 'stale', 'stales', 'staling', 'staled', 'staled', intran, ['2A'] ). +verb( 'stalemate', 'stalemates', 'stalemating', 'stalemated', 'stalemated', tran, ['6A'] ). +verb( 'stalk', 'stalks', 'stalking', 'stalked', 'stalked', _, ['2C','6A'] ). +verb( 'stall', 'stalls', 'stalling', 'stalled', 'stalled', _, ['2A','6A'] ). +verb( 'stammer', 'stammers', 'stammering', 'stammered', 'stammered', _, ['2A','6A','15B'] ). +verb( 'stamp', 'stamps', 'stamping', 'stamped', 'stamped', _, ['2C','3A','6A','14','15A','15B','16B','22'] ). +verb( 'stampede', 'stampedes', 'stampeding', 'stampeded', 'stampeded', _, ['2A','6A','14'] ). +verb( 'stand', 'stands', 'standing', 'stood', 'stood', _, ['2A','2B','2C','3A','4A','6A','6C','12A','15A','15B'] ). +verb( 'standardize', 'standardizes', 'standardizing', 'standardized', 'standardized', tran, ['6A'] ). +verb( 'staple', 'staples', 'stapling', 'stapled', 'stapled', tran, ['6A'] ). +verb( 'star', 'stars', 'starring', 'starred', 'starred', _, ['3A','6A','14'] ). +verb( 'starboard', 'starboards', 'starboarding', 'starboarded', 'starboarded', tran, [] ). +verb( 'starch', 'starches', 'starching', 'starched', 'starched', tran, ['6A'] ). +verb( 'stare', 'stares', 'staring', 'stared', 'stared', _, ['2A','2B','2C','3A','15B'] ). +verb( 'start', 'starts', 'starting', 'started', 'started', _, ['2A','2C','3A','6A','6D','7A','15A','19B'] ). +verb( 'startle', 'startles', 'startling', 'startled', 'startled', tran, ['6A','15A'] ). +verb( 'starve', 'starves', 'starving', 'starved', 'starved', _, ['2A','2C','6A','15A'] ). +verb( 'stash', 'stashes', 'stashing', 'stashed', 'stashed', tran, ['15B'] ). +verb( 'state', 'states', 'stating', 'stated', 'stated', tran, ['6A','9'] ). +verb( 'station', 'stations', 'stationing', 'stationed', 'stationed', tran, ['6A','15A'] ). +verb( 'staunch', 'staunches', 'staunching', 'staunched', 'staunched', tran, ['6A'] ). +verb( 'stave', 'staves', 'staving', 'staved', 'staved', _, ['3A','15B'] ). +verb( 'stay', 'stays', 'staying', 'stayed', 'stayed', _, ['2A','2B','2C','4A','6A','15B'] ). +verb( 'steady', 'steadies', 'steadying', 'steadied', 'steadied', _, ['2A','6A'] ). +verb( 'steal', 'steals', 'stealing', 'stole', 'stolen', _, ['2A','2C','6A','14','15A'] ). +verb( 'steam', 'steams', 'steaming', 'steamed', 'steamed', _, ['2A','2C','6A','22'] ). +verb( 'steam-heat', 'steam-heats', 'steam-heating', 'steam-heated', 'steam-heated', tran, [] ). +verb( 'steamroller', 'steamrollers', 'steamrollering', 'steamrollered', 'steamrollered', tran, ['6A'] ). +verb( 'steel', 'steels', 'steeling', 'steeled', 'steeled', tran, ['6A','15A','16A'] ). +verb( 'steep', 'steeps', 'steeping', 'steeped', 'steeped', _, ['2A','6A','14'] ). +verb( 'steepen', 'steepens', 'steepening', 'steepened', 'steepened', _, ['2A','6A'] ). +verb( 'steer', 'steers', 'steering', 'steered', 'steered', _, ['2A','2C','6A'] ). +verb( 'stem', 'stems', 'stemming', 'stemmed', 'stemmed', _, ['3A','6A'] ). +verb( 'stencil', 'stencils', 'stencilling', 'stencilled', 'stencilled', tran, ['6A'] ). +verb( 'step', 'steps', 'stepping', 'stepped', 'stepped', _, ['2C','15B'] ). +verb( 'stereotype', 'stereotypes', 'stereotyping', 'stereotyped', 'stereotyped', tran, ['6A'] ). +verb( 'sterilize', 'sterilizes', 'sterilizing', 'sterilized', 'sterilized', tran, ['6A'] ). +verb( 'stew', 'stews', 'stewing', 'stewed', 'stewed', _, ['2A','2C','6A','15A'] ). +verb( 'stick', 'sticks', 'sticking', 'sticked', 'sticked', tran, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'stick', 'sticks', 'sticking', 'stuck', 'stuck', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'stiffen', 'stiffens', 'stiffening', 'stiffened', 'stiffened', _, ['2A','6A'] ). +verb( 'stifle', 'stifles', 'stifling', 'stifled', 'stifled', _, ['2A','6A'] ). +verb( 'stigmatize', 'stigmatizes', 'stigmatizing', 'stigmatized', 'stigmatized', tran, ['16B'] ). +verb( 'still', 'stills', 'stilling', 'stilled', 'stilled', tran, ['6A'] ). +verb( 'stimulate', 'stimulates', 'stimulating', 'stimulated', 'stimulated', tran, ['6A','14','17'] ). +verb( 'sting', 'stings', 'stinging', 'stang', 'stung', _, ['2A','6A','14','15A'] ). +verb( 'stink', 'stinks', 'stinking', 'stank', 'stunk', _, ['2A','3A','15B'] ). +verb( 'stint', 'stints', 'stinting', 'stinted', 'stinted', _, ['6A','14'] ). +verb( 'stipple', 'stipples', 'stippling', 'stippled', 'stippled', tran, ['6A'] ). +verb( 'stipulate', 'stipulates', 'stipulating', 'stipulated', 'stipulated', _, ['3A','6A','9'] ). +verb( 'stir', 'stirs', 'stirring', 'stirred', 'stirred', _, ['2A','2C','6A','14','15B'] ). +verb( 'stitch', 'stitches', 'stitching', 'stitched', 'stitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'stock', 'stocks', 'stocking', 'stocked', 'stocked', tran, ['6A','14'] ). +verb( 'stockade', 'stockades', 'stockading', 'stockaded', 'stockaded', tran, [] ). +verb( 'stoke', 'stokes', 'stoking', 'stoked', 'stoked', _, ['2A','2C','6A','15B'] ). +verb( 'stomach', 'stomachs', 'stomaching', 'stomached', 'stomached', tran, ['6A'] ). +verb( 'stomp', 'stomps', 'stomping', 'stomped', 'stomped', intran, ['2C'] ). +verb( 'stone', 'stones', 'stoning', 'stoned', 'stoned', tran, ['6A','15A'] ). +verb( 'stonewall', 'stonewalls', 'stonewalling', 'stonewalled', 'stonewalled', tran, [] ). +verb( 'stooge', 'stooges', 'stooging', 'stooged', 'stooged', intran, [] ). +verb( 'stoop', 'stoops', 'stooping', 'stooped', 'stooped', _, ['2A','2C','3A','4A','6A'] ). +verb( 'stop', 'stops', 'stopping', 'stopped', 'stopped', _, ['2A','2B','2C','3A','4A','6A','6B','6C','14','15A','15B'] ). +verb( 'store', 'stores', 'storing', 'stored', 'stored', tran, ['6A','15B'] ). +verb( 'storm', 'storms', 'storming', 'stormed', 'stormed', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'stow', 'stows', 'stowing', 'stowed', 'stowed', tran, ['6A','15A','15B'] ). +verb( 'straddle', 'straddles', 'straddling', 'straddled', 'straddled', _, ['2A','6A'] ). +verb( 'strafe', 'strafes', 'strafing', 'strafed', 'strafed', tran, ['6A'] ). +verb( 'straggle', 'straggles', 'straggling', 'straggled', 'straggled', intran, ['2A','2C'] ). +verb( 'straighten', 'straightens', 'straightening', 'straightened', 'straightened', _, ['2A','2C','6A','15B'] ). +verb( 'strain', 'strains', 'straining', 'strained', 'strained', _, ['2A','3A','6A','15A','15B','16A'] ). +verb( 'straiten', 'straitens', 'straitening', 'straitened', 'straitened', tran, [] ). +verb( 'strand', 'strands', 'stranding', 'stranded', 'stranded', _, ['2A','6A'] ). +verb( 'strangle', 'strangles', 'strangling', 'strangled', 'strangled', tran, ['6A'] ). +verb( 'strap', 'straps', 'strapping', 'strapped', 'strapped', tran, ['6A','15B'] ). +verb( 'stratify', 'stratifies', 'stratifying', 'stratified', 'stratified', _, ['2A','6A'] ). +verb( 'straw', 'straws', 'strawing', 'strawed', 'strawed', tran, [] ). +verb( 'stray', 'strays', 'straying', 'strayed', 'strayed', intran, ['2A','2C'] ). +verb( 'streak', 'streaks', 'streaking', 'streaked', 'streaked', _, ['2C','6A','15A'] ). +verb( 'stream', 'streams', 'streaming', 'streamed', 'streamed', intran, ['2A','2C','6A'] ). +verb( 'streamline', 'streamlines', 'streamlining', 'streamlined', 'streamlined', tran, [] ). +verb( 'strengthen', 'strengthens', 'strengthening', 'strengthened', 'strengthened', _, ['2A','6A'] ). +verb( 'stress', 'stresses', 'stressing', 'stressed', 'stressed', tran, ['6A'] ). +verb( 'stretch', 'stretches', 'stretching', 'stretched', 'stretched', _, ['2A','2B','2C','6A','15A','15B','16A','22'] ). +verb( 'strew', 'strews', 'strewing', 'strewed', 'strewed', tran, ['6A','14'] ). +verb( 'stride', 'strides', 'striding', 'strode', 'stridden', _, ['2C','6A'] ). +verb( 'stridulate', 'stridulates', 'stridulating', 'stridulated', 'stridulated', intran, ['2A'] ). +verb( 'strike', 'strikes', 'striking', 'struck', 'struck', _, ['2A','2C','2D','3A','6A','12C','14','15B','16A','22'] ). +verb( 'string', 'strings', 'stringing', 'strang', 'strung', _, ['2C','6A','15A','15B'] ). +verb( 'strip', 'strips', 'stripping', 'stripped', 'stripped', _, ['2A','2C','6A','14','15B','22'] ). +verb( 'strive', 'strives', 'striving', 'strove', 'striven', intran, ['2A','3A','4A'] ). +verb( 'stroke', 'strokes', 'stroking', 'stroked', 'stroked', tran, ['6A','15B'] ). +verb( 'stroll', 'strolls', 'strolling', 'strolled', 'strolled', intran, ['2A','2C'] ). +verb( 'strop', 'strops', 'stropping', 'stropped', 'stropped', tran, ['6A'] ). +verb( 'struggle', 'struggles', 'struggling', 'struggled', 'struggled', intran, ['2A','2B','3A','4A'] ). +verb( 'strum', 'strums', 'strumming', 'strummed', 'strummed', _, ['2A','2B','2C','3A','6A'] ). +verb( 'strut', 'struts', 'strutting', 'strutted', 'strutted', intran, ['2A','2C'] ). +verb( 'stub', 'stubs', 'stubbing', 'stubbed', 'stubbed', tran, ['6A','15B'] ). +verb( 'stucco', 'stuccos', 'stuccoing', 'stuccoed', 'stuccoed', tran, [] ). +verb( 'stud', 'studs', 'studding', 'studded', 'studded', tran, [] ). +verb( 'study', 'studies', 'studying', 'studied', 'studied', _, ['2A','2B','4A','6A','8','15A'] ). +verb( 'stuff', 'stuffs', 'stuffing', 'stuffed', 'stuffed', tran, ['2A','6A','14','15B'] ). +verb( 'stultify', 'stultifies', 'stultifying', 'stultified', 'stultified', tran, ['6A'] ). +verb( 'stumble', 'stumbles', 'stumbling', 'stumbled', 'stumbled', intran, ['2A','2C','3A'] ). +verb( 'stump', 'stumps', 'stumping', 'stumped', 'stumped', _, ['2C','6A','15B'] ). +verb( 'stun', 'stuns', 'stunning', 'stunned', 'stunned', tran, ['6A'] ). +verb( 'stunt', 'stunts', 'stunting', 'stunted', 'stunted', tran, ['6A'] ). +verb( 'stupefy', 'stupefies', 'stupefying', 'stupefied', 'stupefied', tran, ['6A'] ). +verb( 'stupify', 'stupifies', 'stupifying', 'stupified', 'stupified', tran, ['6A'] ). +verb( 'stutter', 'stutters', 'stuttering', 'stuttered', 'stuttered', _, [] ). +verb( 'style', 'styles', 'styling', 'styled', 'styled', tran, ['6A'] ). +verb( 'stylize', 'stylizes', 'stylizing', 'stylized', 'stylized', tran, [] ). +verb( 'stymie', 'stymies', 'stymying', 'stymied', 'stymied', tran, ['6A'] ). +verb( 'sub', 'subs', 'subbing', 'subbed', 'subbed', _, ['2A','3A','6A'] ). +verb( 'subcontract', 'subcontracts', 'subcontracting', 'subcontracted', 'subcontracted', _, ['2A','6A'] ). +verb( 'subdivide', 'subdivides', 'subdividing', 'subdivided', 'subdivided', _, ['2A','6A'] ). +verb( 'subdue', 'subdues', 'subduing', 'subdued', 'subdued', tran, ['6A'] ). +verb( 'subedit', 'subedits', 'subediting', 'subedited', 'subedited', tran, [] ). +verb( 'subject', 'subjects', 'subjecting', 'subjected', 'subjected', tran, ['14'] ). +verb( 'subjoin', 'subjoins', 'subjoining', 'subjoined', 'subjoined', tran, ['6A'] ). +verb( 'subjugate', 'subjugates', 'subjugating', 'subjugated', 'subjugated', tran, ['6A'] ). +verb( 'sublease', 'subleases', 'subleasing', 'subleased', 'subleased', _, ['2A','6A'] ). +verb( 'sublet', 'sublets', 'subletting', 'sublet', 'sublet', _, ['2A','6A'] ). +verb( 'sublimate', 'sublimates', 'sublimating', 'sublimated', 'sublimated', tran, ['6A'] ). +verb( 'submerge', 'submerges', 'submerging', 'submerged', 'submerged', _, ['2A','6A'] ). +verb( 'submit', 'submits', 'submitting', 'submitted', 'submitted', _, ['3A','6A','9','14'] ). +verb( 'subordinate', 'subordinates', 'subordinating', 'subordinated', 'subordinated', tran, ['6A','14'] ). +verb( 'suborn', 'suborns', 'suborning', 'suborned', 'suborned', tran, ['6A'] ). +verb( 'subpoena', 'subpoenas', 'subpoenaing', 'subpoenaed', 'subpoenaed', tran, ['6A'] ). +verb( 'subscribe', 'subscribes', 'subscribing', 'subscribed', 'subscribed', _, ['2A','3A','6A','14'] ). +verb( 'subserve', 'subserves', 'subserving', 'subserved', 'subserved', tran, ['6A'] ). +verb( 'subside', 'subsides', 'subsiding', 'subsided', 'subsided', intran, ['2A'] ). +verb( 'subsidize', 'subsidizes', 'subsidizing', 'subsidized', 'subsidized', tran, ['6A'] ). +verb( 'subsist', 'subsists', 'subsisting', 'subsisted', 'subsisted', intran, ['2A','3A'] ). +verb( 'substantiate', 'substantiates', 'substantiating', 'substantiated', 'substantiated', tran, ['6A'] ). +verb( 'substitute', 'substitutes', 'substituting', 'substituted', 'substituted', _, ['3A','6A','14'] ). +verb( 'subsume', 'subsumes', 'subsuming', 'subsumed', 'subsumed', tran, ['6A','14'] ). +verb( 'subtend', 'subtends', 'subtending', 'subtended', 'subtended', tran, [] ). +verb( 'subtract', 'subtracts', 'subtracting', 'subtracted', 'subtracted', tran, ['6A','14'] ). +verb( 'subvert', 'subverts', 'subverting', 'subverted', 'subverted', tran, ['6A'] ). +verb( 'succeed', 'succeeds', 'succeeding', 'succeeded', 'succeeded', _, ['2A','3A','6A','16B'] ). +verb( 'succour', 'succours', 'succouring', 'succoured', 'succoured', tran, ['6A'] ). +verb( 'succumb', 'succumbs', 'succumbing', 'succumbed', 'succumbed', intran, ['2A','3A'] ). +verb( 'suck', 'sucks', 'sucking', 'sucked', 'sucked', _, ['2C','6A','15A','15B','22'] ). +verb( 'suckle', 'suckles', 'suckling', 'suckled', 'suckled', tran, ['6A'] ). +verb( 'sue', 'sues', 'suing', 'sued', 'sued', _, ['3A','6A','14'] ). +verb( 'suffer', 'suffers', 'suffering', 'suffered', 'suffered', _, ['2A','3A','6A','17'] ). +verb( 'suffice', 'suffices', 'sufficing', 'sufficed', 'sufficed', _, ['2A','3A','6A'] ). +verb( 'suffocate', 'suffocates', 'suffocating', 'suffocated', 'suffocated', _, ['2A','2C','6A'] ). +verb( 'suffuse', 'suffuses', 'suffusing', 'suffused', 'suffused', tran, ['6A'] ). +verb( 'sugar', 'sugars', 'sugaring', 'sugared', 'sugared', tran, ['6A'] ). +verb( 'suggest', 'suggests', 'suggesting', 'suggested', 'suggested', tran, ['6A','6C','9','10','14'] ). +verb( 'suit', 'suits', 'suiting', 'suited', 'suited', _, ['2A','6A','6B'] ). +verb( 'sulk', 'sulks', 'sulking', 'sulked', 'sulked', intran, ['2A','2C'] ). +verb( 'sully', 'sullies', 'sullying', 'sullied', 'sullied', tran, ['6A'] ). +verb( 'sum', 'sums', 'summing', 'summed', 'summed', _, ['2C','15B'] ). +verb( 'summarize', 'summarizes', 'summarizing', 'summarized', 'summarized', tran, ['6A'] ). +verb( 'summer', 'summers', 'summering', 'summered', 'summered', intran, ['2C'] ). +verb( 'summon', 'summons', 'summoning', 'summoned', 'summoned', tran, ['6A','14','15B','17'] ). +verb( 'summons', 'summonses', 'summonsing', 'summonsed', 'summonsed', tran, ['6A','14','15B','17'] ). +verb( 'sun', 'suns', 'sunning', 'sunned', 'sunned', tran, ['6A'] ). +verb( 'sunbathe', 'sunbathes', 'sunbathing', 'sunbathed', 'sunbathed', intran, [] ). +verb( 'sunder', 'sunders', 'sundering', 'sundered', 'sundered', tran, ['6A'] ). +verb( 'sup', 'sups', 'supping', 'supped', 'supped', _, ['2A','2C','3A','6A','15B'] ). +verb( 'superannuate', 'superannuates', 'superannuating', 'superannuated', 'superannuated', tran, ['6A'] ). +verb( 'superimpose', 'superimposes', 'superimposing', 'superimposed', 'superimposed', tran, ['6A','14'] ). +verb( 'superintend', 'superintends', 'superintending', 'superintended', 'superintended', _, ['2A','6A'] ). +verb( 'supersede', 'supersedes', 'superseding', 'superseded', 'superseded', tran, ['6A'] ). +verb( 'supervene', 'supervenes', 'supervening', 'supervened', 'supervened', intran, ['2A'] ). +verb( 'supervise', 'supervises', 'supervising', 'supervised', 'supervised', _, ['2A','6A'] ). +verb( 'supplant', 'supplants', 'supplanting', 'supplanted', 'supplanted', tran, ['6A'] ). +verb( 'supplement', 'supplements', 'supplementing', 'supplemented', 'supplemented', tran, ['6A','15A'] ). +verb( 'supplicate', 'supplicates', 'supplicating', 'supplicated', 'supplicated', _, ['2C','6A','14','17'] ). +verb( 'supply', 'supplies', 'supplying', 'supplied', 'supplied', tran, ['6A','14'] ). +verb( 'support', 'supports', 'supporting', 'supported', 'supported', tran, ['6A'] ). +verb( 'suppose', 'supposes', 'supposing', 'supposed', 'supposed', tran, ['6A','9','25'] ). +verb( 'suppress', 'suppresses', 'suppressing', 'suppressed', 'suppressed', tran, ['6A'] ). +verb( 'suppurate', 'suppurates', 'suppurating', 'suppurated', 'suppurated', intran, ['2A'] ). +verb( 'surcharge', 'surcharges', 'surcharging', 'surcharged', 'surcharged', tran, ['6A','15A'] ). +verb( 'surface', 'surfaces', 'surfacing', 'surfaced', 'surfaced', _, ['2A','6A'] ). +verb( 'surfeit', 'surfeits', 'surfeiting', 'surfeited', 'surfeited', tran, ['6A','14'] ). +verb( 'surge', 'surges', 'surging', 'surged', 'surged', intran, ['2C'] ). +verb( 'surmise', 'surmises', 'surmising', 'surmised', 'surmised', _, ['2A','6A','9'] ). +verb( 'surmount', 'surmounts', 'surmounting', 'surmounted', 'surmounted', tran, ['6A'] ). +verb( 'surpass', 'surpasses', 'surpassing', 'surpassed', 'surpassed', tran, ['6A','15A'] ). +verb( 'surprise', 'surprises', 'surprising', 'surprised', 'surprised', tran, ['6A'] ). +verb( 'surrender', 'surrenders', 'surrendering', 'surrendered', 'surrendered', _, ['2A','6A','14'] ). +verb( 'surround', 'surrounds', 'surrounding', 'surrounded', 'surrounded', tran, ['6A'] ). +verb( 'surtax', 'surtaxes', 'surtaxing', 'surtaxed', 'surtaxed', tran, [] ). +verb( 'survey', 'surveys', 'surveying', 'surveyed', 'surveyed', tran, ['6A'] ). +verb( 'survive', 'survives', 'surviving', 'survived', 'survived', _, ['2A','6A'] ). +verb( 'suspect', 'suspects', 'suspecting', 'suspected', 'suspected', tran, ['6A','9','14','25'] ). +verb( 'suspend', 'suspends', 'suspending', 'suspended', 'suspended', tran, ['6A','14'] ). +verb( 'suss', 'susses', 'sussing', 'sussed', 'sussed', tran, ['15B'] ). +verb( 'sustain', 'sustains', 'sustaining', 'sustained', 'sustained', tran, ['6A'] ). +verb( 'swab', 'swabs', 'swabbing', 'swabbed', 'swabbed', tran, ['6A','15B'] ). +verb( 'swaddle', 'swaddles', 'swaddling', 'swaddled', 'swaddled', tran, ['6A'] ). +verb( 'swagger', 'swaggers', 'swaggering', 'swaggered', 'swaggered', intran, ['2A','2C'] ). +verb( 'swallow', 'swallows', 'swallowing', 'swallowed', 'swallowed', _, ['2C','6A','15B'] ). +verb( 'swamp', 'swamps', 'swamping', 'swamped', 'swamped', tran, ['6A','14'] ). +verb( 'swan', 'swans', 'swanning', 'swanned', 'swanned', intran, ['2C'] ). +verb( 'swank', 'swanks', 'swanking', 'swanked', 'swanked', intran, ['2A','2C'] ). +verb( 'swap', 'swaps', 'swapping', 'swapped', 'swapped', _, ['2A','6A','15A'] ). +verb( 'swarm', 'swarms', 'swarming', 'swarmed', 'swarmed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'swat', 'swats', 'swatting', 'swatted', 'swatted', tran, [] ). +verb( 'swathe', 'swathes', 'swathing', 'swathed', 'swathed', tran, ['6A','15A'] ). +verb( 'sway', 'sways', 'swaying', 'swayed', 'swayed', _, ['2A','2C','6A','15A'] ). +verb( 'swear', 'swears', 'swearing', 'swore', 'sworn', _, ['2A','2B','2C','3A','6A','7A','9','14','15A','15B','22'] ). +verb( 'sweat', 'sweats', 'sweating', 'sweated', 'sweated', _, ['2A','2C','6A','15B'] ). +verb( 'sweep', 'sweeps', 'sweeping', 'swept', 'swept', _, ['2A','2C','6A','12A','15A','15B','22'] ). +verb( 'sweeten', 'sweetens', 'sweetening', 'sweetened', 'sweetened', _, ['2A','6A'] ). +verb( 'swell', 'swells', 'swelling', 'swelled', 'swelled', _, ['2A','2C','6A','14','15B'] ). +verb( 'swelter', 'swelters', 'sweltering', 'sweltered', 'sweltered', intran, ['2A'] ). +verb( 'swerve', 'swerves', 'swerving', 'swerved', 'swerved', _, ['2A','2C','4A','6A'] ). +verb( 'swig', 'swigs', 'swigging', 'swigged', 'swigged', _, ['2A','2C','6A','15B'] ). +verb( 'swill', 'swills', 'swilling', 'swilled', 'swilled', _, ['6A','15B'] ). +verb( 'swim', 'swims', 'swimming', 'swam', 'swum', _, ['2A','2B','2C','3A','6A'] ). +verb( 'swindle', 'swindles', 'swindling', 'swindled', 'swindled', _, ['6A','14'] ). +verb( 'swing', 'swings', 'swinging', 'swang', 'swung', _, ['2A','2B','2C','6A','6C','15A','15B','22'] ). +verb( 'swinge', 'swinges', 'swinging', 'swinged', 'swinged', tran, [] ). +verb( 'swipe', 'swipes', 'swiping', 'swiped', 'swiped', tran, ['3A','6A','15A'] ). +verb( 'swirl', 'swirls', 'swirling', 'swirled', 'swirled', _, ['2C','15B'] ). +verb( 'swish', 'swishes', 'swishing', 'swished', 'swished', _, ['2A','6A','15B'] ). +verb( 'switch', 'switches', 'switching', 'switched', 'switched', _, ['6A','15A','15B'] ). +verb( 'swivel', 'swivels', 'swivelling', 'swivelled', 'swivelled', _, ['2A','2C','6A','15B'] ). +verb( 'swob', 'swobs', 'swobbing', 'swobbed', 'swobbed', tran, [] ). +verb( 'swoon', 'swoons', 'swooning', 'swooned', 'swooned', intran, ['2A'] ). +verb( 'swoop', 'swoops', 'swooping', 'swooped', 'swooped', _, ['2A','2C','15B'] ). +verb( 'swop', 'swops', 'swopping', 'swopped', 'swopped', _, ['2A','6A','15A'] ). +verb( 'swot', 'swots', 'swotting', 'swotted', 'swotted', _, ['2A','2C','3A','15B'] ). +verb( 'syllabicate', 'syllabicates', 'syllabicating', 'syllabicated', 'syllabicated', tran, [] ). +verb( 'syllabify', 'syllabifies', 'syllabifying', 'syllabified', 'syllabified', tran, [] ). +verb( 'syllabize', 'syllabizes', 'syllabizing', 'syllabized', 'syllabized', tran, [] ). +verb( 'symbolize', 'symbolizes', 'symbolizing', 'symbolized', 'symbolized', tran, ['6A'] ). +verb( 'sympathize', 'sympathizes', 'sympathizing', 'sympathized', 'sympathized', intran, ['2A','3A'] ). +verb( 'synchronize', 'synchronizes', 'synchronizing', 'synchronized', 'synchronized', _, ['2A','6A'] ). +verb( 'syncopate', 'syncopates', 'syncopating', 'syncopated', 'syncopated', tran, ['6A'] ). +verb( 'syndicate', 'syndicates', 'syndicating', 'syndicated', 'syndicated', tran, ['6A'] ). +verb( 'synthesize', 'synthesizes', 'synthesizing', 'synthesized', 'synthesized', tran, ['6A'] ). +verb( 'syphon', 'syphons', 'syphoning', 'syphoned', 'syphoned', _, ['15B'] ). +verb( 'syringe', 'syringes', 'syringing', 'syringed', 'syringed', tran, ['6A','15B'] ). +verb( 'systematize', 'systematizes', 'systematizing', 'systematized', 'systematized', tran, ['6A'] ). +verb( 'table', 'tables', 'tabling', 'tabled', 'tabled', tran, ['6A'] ). +verb( 'taboo', 'taboos', 'tabooing', 'tabooed', 'tabooed', tran, ['6A'] ). +verb( 'tabulate', 'tabulates', 'tabulating', 'tabulated', 'tabulated', tran, ['6A'] ). +verb( 'tack', 'tacks', 'tacking', 'tacked', 'tacked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'tackle', 'tackles', 'tackling', 'tackled', 'tackled', _, ['2A','6A','14'] ). +verb( 'tag', 'tags', 'tagging', 'tagged', 'tagged', _, ['2C','6A','14','15A','15B'] ). +verb( 'tail', 'tails', 'tailing', 'tailed', 'tailed', _, ['2C','3A','6A'] ). +verb( 'tailor', 'tailors', 'tailoring', 'tailored', 'tailored', tran, ['6A','15A'] ). +verb( 'taint', 'taints', 'tainting', 'tainted', 'tainted', _, ['2A','6A'] ). +verb( 'take', 'takes', 'taking', 'took', 'taken', _, ['2A','2B','2C','3A','6A','6B','12A','13A','14','15A','15B','16B','19B','22'] ). +verb( 'talk', 'talks', 'talking', 'talked', 'talked', _, ['2A','2B','2C','3A','6A','14','15B','22'] ). +verb( 'tally', 'tallies', 'tallying', 'tallied', 'tallied', intran, ['2A','3A'] ). +verb( 'tame', 'tames', 'taming', 'tamed', 'tamed', tran, ['6A'] ). +verb( 'tamp', 'tamps', 'tamping', 'tamped', 'tamped', tran, ['15B'] ). +verb( 'tamper', 'tampers', 'tampering', 'tampered', 'tampered', intran, ['3A'] ). +verb( 'tan', 'tans', 'tanning', 'tanned', 'tanned', _, ['2A','6A'] ). +verb( 'tangle', 'tangles', 'tangling', 'tangled', 'tangled', _, ['2A','2C','3A','6A','15B'] ). +verb( 'tank', 'tanks', 'tanking', 'tanked', 'tanked', intran, [] ). +verb( 'tantalize', 'tantalizes', 'tantalizing', 'tantalized', 'tantalized', tran, ['6A'] ). +verb( 'tap', 'taps', 'tapping', 'tapped', 'tapped', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'tape', 'tapes', 'taping', 'taped', 'taped', tran, ['6A'] ). +verb( 'taper', 'tapers', 'tapering', 'tapered', 'tapered', _, ['2A','2C','6A','15B'] ). +verb( 'tar', 'tars', 'tarring', 'tarred', 'tarred', tran, ['6A'] ). +verb( 'tarmac', 'tarmacs', 'tarmacking', 'tarmacked', 'tarmacked', tran, [] ). +verb( 'tarnish', 'tarnishes', 'tarnishing', 'tarnished', 'tarnished', _, ['2A','6A'] ). +verb( 'tarry', 'tarries', 'tarrying', 'tarried', 'tarried', intran, ['2A','2B','2C'] ). +verb( 'tart', 'tarts', 'tarting', 'tarted', 'tarted', tran, ['15B'] ). +verb( 'task', 'tasks', 'tasking', 'tasked', 'tasked', tran, ['6A'] ). +verb( 'taste', 'tastes', 'tasting', 'tasted', 'tasted', _, ['2A','2D','3A','6A'] ). +verb( 'tat', 'tats', 'tatting', 'tatted', 'tatted', _, [] ). +verb( 'tattle', 'tattles', 'tattling', 'tattled', 'tattled', _, ['2A'] ). +verb( 'tattoo', 'tattoos', 'tattooing', 'tattooed', 'tattooed', tran, ['6A'] ). +verb( 'taunt', 'taunts', 'taunting', 'taunted', 'taunted', tran, ['6A','14'] ). +verb( 'tax', 'taxes', 'taxing', 'taxed', 'taxed', tran, ['6A','14'] ). +verb( 'taxi', 'taxis', 'taxiing', 'taxied', 'taxied', _, ['2C','15A'] ). +verb( 'teach', 'teaches', 'teaching', 'taught', 'taught', _, ['2A','2B','2C','6A','11','12A','13A','17','20','21'] ). +verb( 'team', 'teams', 'teaming', 'teamed', 'teamed', intran, ['2C'] ). +verb( 'tear', 'tears', 'tearing', 'tore', 'torn', _, ['2A','2C','3A','6A','15A','15B','22'] ). +verb( 'tease', 'teases', 'teasing', 'teased', 'teased', tran, ['6A','15A','15B'] ). +verb( 'tee', 'tees', 'teeing', 'teed', 'teed', _, ['2A','2C','15B'] ). +verb( 'teem', 'teems', 'teeming', 'teemed', 'teemed', intran, ['2A','2C','3A'] ). +verb( 'teeter', 'teeters', 'teetering', 'teetered', 'teetered', intran, ['2C'] ). +verb( 'teethe', 'teethes', 'teething', 'teethed', 'teethed', intran, ['2A'] ). +verb( 'telecast', 'telecasts', 'telecasting', 'telecast', 'telecast', tran, [] ). +verb( 'telegraph', 'telegraphs', 'telegraphing', 'telegraphed', 'telegraphed', _, ['2A','6A','11','12A','13A'] ). +verb( 'telephone', 'telephones', 'telephoning', 'telephoned', 'telephoned', _, ['2A','4A','6A','11','12A','13A'] ). +verb( 'telescope', 'telescopes', 'telescoping', 'telescoped', 'telescoped', _, ['2A','6A'] ). +verb( 'televise', 'televises', 'televising', 'televised', 'televised', tran, ['6A'] ). +verb( 'tell', 'tells', 'telling', 'told', 'told', _, ['2A','3A','6A','8','10','11','12A','13A','14','15A','15B','17','20','21'] ). +verb( 'temper', 'tempers', 'tempering', 'tempered', 'tempered', _, ['2A','6A','15A'] ). +verb( 'temporize', 'temporizes', 'temporizing', 'temporized', 'temporized', intran, ['2A'] ). +verb( 'tempt', 'tempts', 'tempting', 'tempted', 'tempted', tran, ['6A','14','17'] ). +verb( 'tenant', 'tenants', 'tenanting', 'tenanted', 'tenanted', tran, [] ). +verb( 'tend', 'tends', 'tending', 'tended', 'tended', _, ['2C','4A','6A'] ). +verb( 'tender', 'tenders', 'tendering', 'tendered', 'tendered', _, ['2A','3A','6A','12A','13A'] ). +verb( 'tense', 'tenses', 'tensing', 'tensed', 'tensed', _, ['2A','6A'] ). +verb( 'tergiversate', 'tergiversates', 'tergiversating', 'tergiversated', 'tergiversated', intran, [] ). +verb( 'term', 'terms', 'terming', 'termed', 'termed', tran, ['23'] ). +verb( 'terminate', 'terminates', 'terminating', 'terminated', 'terminated', _, ['2A','6A','15A'] ). +verb( 'terrace', 'terraces', 'terracing', 'terraced', 'terraced', tran, ['6A'] ). +verb( 'terrify', 'terrifies', 'terrifying', 'terrified', 'terrified', tran, ['6A','15A'] ). +verb( 'terrorize', 'terrorizes', 'terrorizing', 'terrorized', 'terrorized', tran, ['6A'] ). +verb( 'test', 'tests', 'testing', 'tested', 'tested', tran, ['6A','15A'] ). +verb( 'test-drive', 'test-drives', 'test-driving', 'test-drove', 'test-driven', tran, [] ). +verb( 'testify', 'testifies', 'testifying', 'testified', 'testified', _, ['2A','3A','6A','9'] ). +verb( 'tether', 'tethers', 'tethering', 'tethered', 'tethered', tran, ['6A','15A'] ). +verb( 'thank', 'thanks', 'thanking', 'thanked', 'thanked', tran, ['6A','11','14','17'] ). +verb( 'thatch', 'thatches', 'thatching', 'thatched', 'thatched', tran, ['6A'] ). +verb( 'thaw', 'thaws', 'thawing', 'thawed', 'thawed', _, ['2A','2C','6A','15B'] ). +verb( 'theorize', 'theorizes', 'theorizing', 'theorized', 'theorized', intran, ['2A','3A'] ). +verb( 'thicken', 'thickens', 'thickening', 'thickened', 'thickened', _, [] ). +verb( 'thieve', 'thieves', 'thieving', 'thieved', 'thieved', _, ['2A','6A'] ). +verb( 'thin', 'thins', 'thinning', 'thinned', 'thinned', _, ['2A','2C','6A','15B'] ). +verb( 'think', 'thinks', 'thinking', 'thought', 'thought', _, ['2A','2B','2C','3A','6A','7A','8','9','10','15B','22','25'] ). +verb( 'thirst', 'thirsts', 'thirsting', 'thirsted', 'thirsted', tran, ['2A','3A'] ). +verb( 'thrash', 'thrashes', 'thrashing', 'thrashed', 'thrashed', _, ['2C','6A','15A','15B'] ). +verb( 'thread', 'threads', 'threading', 'threaded', 'threaded', tran, ['6A','15A'] ). +verb( 'threaten', 'threatens', 'threatening', 'threatened', 'threatened', _, ['2A','6A','14','17'] ). +verb( 'thresh', 'threshes', 'threshing', 'threshed', 'threshed', _, ['2A','6A','15A'] ). +verb( 'thrill', 'thrills', 'thrilling', 'thrilled', 'thrilled', _, ['2A','2C','6A'] ). +verb( 'thrive', 'thrives', 'thriving', 'thrived', 'thrived', intran, ['2A','3A'] ). +verb( 'throb', 'throbs', 'throbbing', 'throbbed', 'throbbed', intran, ['2A','2C'] ). +verb( 'throng', 'throngs', 'thronging', 'thronged', 'thronged', _, ['2C','4A','6A'] ). +verb( 'throttle', 'throttles', 'throttling', 'throttled', 'throttled', _, ['2C','6A','15B'] ). +verb( 'throw', 'throws', 'throwing', 'threw', 'thrown', _, ['2A','6A','12A','13A','15A','15B','22'] ). +verb( 'thrum', 'thrums', 'thrumming', 'thrummed', 'thrummed', _, ['3A','6A'] ). +verb( 'thrust', 'thrusts', 'thrusting', 'thrust', 'thrust', _, ['2A','2C','6A','15A','15B'] ). +verb( 'thud', 'thuds', 'thudding', 'thudded', 'thudded', intran, ['2C'] ). +verb( 'thumb', 'thumbs', 'thumbing', 'thumbed', 'thumbed', tran, ['6A'] ). +verb( 'thump', 'thumps', 'thumping', 'thumped', 'thumped', _, ['2A','2C','3A','6A','15A','22'] ). +verb( 'thunder', 'thunders', 'thundering', 'thundered', 'thundered', _, ['2A','2C','3A','15B'] ). +verb( 'thwack', 'thwacks', 'thwacking', 'thwacked', 'thwacked', tran, [] ). +verb( 'thwart', 'thwarts', 'thwarting', 'thwarted', 'thwarted', tran, ['6A'] ). +verb( 'tick', 'ticks', 'ticking', 'ticked', 'ticked', _, ['2A','2C','6A','10','15B'] ). +verb( 'ticket', 'tickets', 'ticketing', 'ticketed', 'ticketed', tran, ['6A'] ). +verb( 'tickle', 'tickles', 'tickling', 'tickled', 'tickled', _, ['2A','6A'] ). +verb( 'tide', 'tides', 'tiding', 'tided', 'tided', tran, ['14','15B'] ). +verb( 'tidy', 'tidies', 'tidying', 'tidied', 'tidied', _, ['2A','2C','6A','15B'] ). +verb( 'tie', 'ties', 'tying', 'tied', 'tied', _, ['2A','3A','6A','15A','15B'] ). +verb( 'tighten', 'tightens', 'tightening', 'tightened', 'tightened', _, ['2A','2C','6A','15B'] ). +verb( 'tile', 'tiles', 'tiling', 'tiled', 'tiled', tran, ['6A'] ). +verb( 'till', 'tills', 'tilling', 'tilled', 'tilled', tran, ['6A'] ). +verb( 'tilt', 'tilts', 'tilting', 'tilted', 'tilted', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'time', 'times', 'timing', 'timed', 'timed', tran, ['6A','15A'] ). +verb( 'tin', 'tins', 'tinning', 'tinned', 'tinned', tran, ['6A'] ). +verb( 'tincture', 'tinctures', 'tincturing', 'tinctured', 'tinctured', tran, [] ). +verb( 'ting', 'tings', 'tinging', 'tinged', 'tinged', _, [] ). +verb( 'tinge', 'tinges', 'tinging', 'tinged', 'tinged', tran, ['6A','14'] ). +verb( 'tingle', 'tingles', 'tingling', 'tingled', 'tingled', intran, ['2A','2C'] ). +verb( 'tinker', 'tinkers', 'tinkering', 'tinkered', 'tinkered', intran, ['2A','2C','3A'] ). +verb( 'tinkle', 'tinkles', 'tinkling', 'tinkled', 'tinkled', _, ['2A','2C','6A'] ). +verb( 'tinsel', 'tinsels', 'tinselling', 'tinselled', 'tinselled', tran, [] ). +verb( 'tint', 'tints', 'tinting', 'tinted', 'tinted', tran, ['6A','22'] ). +verb( 'tip', 'tips', 'tipping', 'tipped', 'tipped', _, ['2A','2C','6A','12C','15A','15B'] ). +verb( 'tipple', 'tipples', 'tippling', 'tippled', 'tippled', _, ['2A','6A'] ). +verb( 'tiptoe', 'tiptoes', 'tiptoeing', 'tiptoed', 'tiptoed', intran, ['2A','2C'] ). +verb( 'tire', 'tires', 'tiring', 'tired', 'tired', _, ['2A','3A','6A','15B'] ). +verb( 'titillate', 'titillates', 'titillating', 'titillated', 'titillated', tran, ['6A'] ). +verb( 'titivate', 'titivates', 'titivating', 'titivated', 'titivated', _, ['2A','6A'] ). +verb( 'titter', 'titters', 'tittering', 'tittered', 'tittered', intran, ['2A'] ). +verb( 'tittivate', 'tittivates', 'tittivating', 'tittivated', 'tittivated', _, ['2A','6A'] ). +verb( 'tittle-tattle', 'tittle-tattles', 'tittle-tattling', 'tittle-tattled', 'tittle-tattled', intran, [] ). +verb( 'toady', 'toadies', 'toadying', 'toadied', 'toadied', intran, ['2A','3A'] ). +verb( 'toast', 'toasts', 'toasting', 'toasted', 'toasted', _, ['2A','6A'] ). +verb( 'toboggan', 'toboggans', 'tobogganing', 'tobogganed', 'tobogganed', intran, ['2A','2C'] ). +verb( 'toddle', 'toddles', 'toddling', 'toddled', 'toddled', intran, ['2A','2C'] ). +verb( 'toe', 'toes', 'toeing', 'toed', 'toed', tran, ['6A'] ). +verb( 'tog', 'togs', 'togging', 'togged', 'togged', tran, ['15B'] ). +verb( 'toil', 'toils', 'toiling', 'toiled', 'toiled', intran, ['2A','2B','2C','3A','4A'] ). +verb( 'tolerate', 'tolerates', 'tolerating', 'tolerated', 'tolerated', tran, ['6A','6C'] ). +verb( 'toll', 'tolls', 'tolling', 'tolled', 'tolled', _, ['2A','6A'] ). +verb( 'tomahawk', 'tomahawks', 'tomahawking', 'tomahawked', 'tomahawked', tran, [] ). +verb( 'ton', 'tons', 'tonning', 'tonned', 'tonned', intran, ['2C'] ). +verb( 'tone', 'tones', 'toning', 'toned', 'toned', _, ['2C','6A','15B'] ). +verb( 'tonsure', 'tonsures', 'tonsuring', 'tonsured', 'tonsured', tran, [] ). +verb( 'tool', 'tools', 'tooling', 'tooled', 'tooled', tran, ['2C','6A'] ). +verb( 'toot', 'toots', 'tooting', 'tooted', 'tooted', _, ['2A','6A'] ). +verb( 'tootle', 'tootles', 'tootling', 'tootled', 'tootled', intran, [] ). +verb( 'top', 'tops', 'topping', 'topped', 'topped', tran, ['6A'] ). +verb( 'top-dress', 'top-dresses', 'top-dressing', 'top-dressed', 'top-dressed', tran, [] ). +verb( 'tope', 'topes', 'toping', 'toped', 'toped', _, ['2A','6A'] ). +verb( 'topple', 'topples', 'toppling', 'toppled', 'toppled', _, ['2A','2C','6A','15B'] ). +verb( 'torment', 'torments', 'tormenting', 'tormented', 'tormented', tran, ['6A','15A'] ). +verb( 'torpedo', 'torpedos', 'torpedoing', 'torpedoed', 'torpedoed', tran, ['6A'] ). +verb( 'torture', 'tortures', 'torturing', 'tortured', 'tortured', tran, ['6A','16A'] ). +verb( 'toss', 'tosses', 'tossing', 'tossed', 'tossed', _, ['2C','6A','12A','13A','15A','15B'] ). +verb( 'tot', 'tots', 'totting', 'totted', 'totted', _, ['2C','15B'] ). +verb( 'total', 'totals', 'totalling', 'totalled', 'totalled', _, ['2C','6A'] ). +verb( 'tote', 'totes', 'toting', 'toted', 'toted', tran, ['6A'] ). +verb( 'totter', 'totters', 'tottering', 'tottered', 'tottered', intran, ['2A','2C'] ). +verb( 'touch', 'touches', 'touching', 'touched', 'touched', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'touch-type', 'touch-types', 'touch-typing', 'touch-typed', 'touch-typed', intran, ['2A'] ). +verb( 'toughen', 'toughens', 'toughening', 'toughened', 'toughened', _, [] ). +verb( 'tour', 'tours', 'touring', 'toured', 'toured', _, ['2A','2C','6A'] ). +verb( 'tousle', 'tousles', 'tousling', 'tousled', 'tousled', tran, ['6A'] ). +verb( 'tout', 'touts', 'touting', 'touted', 'touted', intran, ['2A','3A'] ). +verb( 'tow', 'tows', 'towing', 'towed', 'towed', tran, ['6A','15A','15B'] ). +verb( 'towel', 'towels', 'towelling', 'towelled', 'towelled', tran, [] ). +verb( 'tower', 'towers', 'towering', 'towered', 'towered', intran, ['2C'] ). +verb( 'toy', 'toys', 'toying', 'toyed', 'toyed', intran, ['3A'] ). +verb( 'trace', 'traces', 'tracing', 'traced', 'traced', _, ['6A','15A','15B'] ). +verb( 'track', 'tracks', 'tracking', 'tracked', 'tracked', tran, ['6A','15A','15B'] ). +verb( 'trade', 'trades', 'trading', 'traded', 'traded', _, ['2A','2C','3A','14','15B'] ). +verb( 'traduce', 'traduces', 'traducing', 'traduced', 'traduced', tran, ['6A'] ). +verb( 'traffic', 'traffics', 'trafficking', 'trafficked', 'trafficked', intran, ['3A'] ). +verb( 'trail', 'trails', 'trailing', 'trailed', 'trailed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'train', 'trains', 'training', 'trained', 'trained', _, ['2C','3A','6A','14','15A','17'] ). +verb( 'traipse', 'traipses', 'traipsing', 'traipsed', 'traipsed', intran, ['2A','2B','2C'] ). +verb( 'trammel', 'trammels', 'trammelling', 'trammelled', 'trammelled', tran, ['6A'] ). +verb( 'tramp', 'tramps', 'tramping', 'tramped', 'tramped', _, ['2A','2B','2C','6A'] ). +verb( 'trample', 'tramples', 'trampling', 'trampled', 'trampled', _, ['2C','3A','6A','15B'] ). +verb( 'tranquilize', 'tranquilizes', 'tranquilizing', 'tranquilized', 'tranquilized', tran, ['6A'] ). +verb( 'tranquillize', 'tranquillizes', 'tranquillizing', 'tranquillized', 'tranquillized', tran, ['6A'] ). +verb( 'transact', 'transacts', 'transacting', 'transacted', 'transacted', tran, ['6A','14'] ). +verb( 'transcend', 'transcends', 'transcending', 'transcended', 'transcended', tran, ['6A'] ). +verb( 'transcribe', 'transcribes', 'transcribing', 'transcribed', 'transcribed', tran, ['6A'] ). +verb( 'transfer', 'transfers', 'transferring', 'transferred', 'transferred', _, ['3A','6A','14'] ). +verb( 'transfigure', 'transfigures', 'transfiguring', 'transfigured', 'transfigured', tran, ['6A'] ). +verb( 'transfix', 'transfixes', 'transfixing', 'transfixed', 'transfixed', tran, ['6A'] ). +verb( 'transform', 'transforms', 'transforming', 'transformed', 'transformed', tran, ['6A','14'] ). +verb( 'transfuse', 'transfuses', 'transfusing', 'transfused', 'transfused', tran, ['6A'] ). +verb( 'transgress', 'transgresses', 'transgressing', 'transgressed', 'transgressed', _, ['2A','6A'] ). +verb( 'translate', 'translates', 'translating', 'translated', 'translated', tran, ['6A','14'] ). +verb( 'transliterate', 'transliterates', 'transliterating', 'transliterated', 'transliterated', tran, ['6A','14'] ). +verb( 'transmit', 'transmits', 'transmitting', 'transmitted', 'transmitted', tran, ['6A','14'] ). +verb( 'transmogrify', 'transmogrifies', 'transmogrifying', 'transmogrified', 'transmogrified', tran, ['6A'] ). +verb( 'transmute', 'transmutes', 'transmuting', 'transmuted', 'transmuted', tran, ['6A','14'] ). +verb( 'transpire', 'transpires', 'transpiring', 'transpired', 'transpired', _, ['2A','6A'] ). +verb( 'transplant', 'transplants', 'transplanting', 'transplanted', 'transplanted', _, ['2A','6A'] ). +verb( 'transport', 'transports', 'transporting', 'transported', 'transported', tran, ['6A','15A'] ). +verb( 'transpose', 'transposes', 'transposing', 'transposed', 'transposed', tran, ['6A','14'] ). +verb( 'transship', 'transships', 'transshipping', 'transshipped', 'transshipped', tran, ['6A'] ). +verb( 'trap', 'traps', 'trapping', 'trapped', 'trapped', tran, ['6A','15A'] ). +verb( 'travel', 'travels', 'travelling', 'travelled', 'travelled', _, ['2A','2B','2C','3A','4A'] ). +verb( 'traverse', 'traverses', 'traversing', 'traversed', 'traversed', tran, ['6A'] ). +verb( 'travesty', 'travesties', 'travestying', 'travestied', 'travestied', tran, ['6A'] ). +verb( 'trawl', 'trawls', 'trawling', 'trawled', 'trawled', _, ['2A','6A'] ). +verb( 'tread', 'treads', 'treading', 'trod', 'trodden', _, ['2C','3A','6A','15A','15B'] ). +verb( 'treadle', 'treadles', 'treadling', 'treadled', 'treadled', intran, ['2A'] ). +verb( 'treasure', 'treasures', 'treasuring', 'treasured', 'treasured', tran, ['6A','15B'] ). +verb( 'treat', 'treats', 'treating', 'treated', 'treated', _, ['3A','6A','14','15A','16B'] ). +verb( 'treble', 'trebles', 'trebling', 'trebled', 'trebled', _, ['2A','6A'] ). +verb( 'tree', 'trees', 'treeing', 'treed', 'treed', tran, ['6A'] ). +verb( 'trek', 'treks', 'trekking', 'trekked', 'trekked', intran, ['2A','2B','2C'] ). +verb( 'trellis', 'trellises', 'trellising', 'trellised', 'trellised', tran, ['6A'] ). +verb( 'tremble', 'trembles', 'trembling', 'trembled', 'trembled', intran, ['2A','2B','2C','4B'] ). +verb( 'trench', 'trenches', 'trenching', 'trenched', 'trenched', tran, ['6A'] ). +verb( 'trend', 'trends', 'trending', 'trended', 'trended', intran, ['2C'] ). +verb( 'trepan', 'trepans', 'trepanning', 'trepanned', 'trepanned', tran, [] ). +verb( 'trephine', 'trephines', 'trephining', 'trephined', 'trephined', tran, ['6A'] ). +verb( 'trespass', 'trespasses', 'trespassing', 'trespassed', 'trespassed', intran, ['2A','3A'] ). +verb( 'trice', 'trices', 'tricing', 'triced', 'triced', tran, ['15B'] ). +verb( 'trick', 'tricks', 'tricking', 'tricked', 'tricked', tran, ['6A','14','15B'] ). +verb( 'trickle', 'trickles', 'trickling', 'trickled', 'trickled', _, ['2A','2C','15A'] ). +verb( 'trifle', 'trifles', 'trifling', 'trifled', 'trifled', _, ['3A','15B'] ). +verb( 'trigger', 'triggers', 'triggering', 'triggered', 'triggered', tran, ['15B'] ). +verb( 'trill', 'trills', 'trilling', 'trilled', 'trilled', _, ['2A','2C','6A'] ). +verb( 'trim', 'trims', 'trimming', 'trimmed', 'trimmed', _, ['2A','6A','14','15A','22'] ). +verb( 'trip', 'trips', 'tripping', 'tripped', 'tripped', _, ['2A','2C','3A','15B'] ). +verb( 'triple', 'triples', 'tripling', 'tripled', 'tripled', _, ['2A','6A'] ). +verb( 'triplicate', 'triplicates', 'triplicating', 'triplicated', 'triplicated', tran, ['6A'] ). +verb( 'trisect', 'trisects', 'trisecting', 'trisected', 'trisected', tran, ['6A'] ). +verb( 'triumph', 'triumphs', 'triumphing', 'triumphed', 'triumphed', intran, ['2A','3A'] ). +verb( 'trivialize', 'trivializes', 'trivializing', 'trivialized', 'trivialized', tran, ['6A'] ). +verb( 'troll', 'trolls', 'trolling', 'trolled', 'trolled', _, ['2A','2C'] ). +verb( 'troop', 'troops', 'trooping', 'trooped', 'trooped', _, ['2C'] ). +verb( 'trot', 'trots', 'trotting', 'trotted', 'trotted', _, ['2A','2B','2C','15A','15B'] ). +verb( 'trouble', 'troubles', 'troubling', 'troubled', 'troubled', _, ['2A','2C','4A','6A','14','17'] ). +verb( 'trounce', 'trounces', 'trouncing', 'trounced', 'trounced', tran, ['6A'] ). +verb( 'truckle', 'truckles', 'truckling', 'truckled', 'truckled', intran, ['3A'] ). +verb( 'trudge', 'trudges', 'trudging', 'trudged', 'trudged', intran, ['2A','2B','2C'] ). +verb( 'true', 'trues', 'truing', 'trued', 'trued', tran, ['15B'] ). +verb( 'trump', 'trumps', 'trumping', 'trumped', 'trumped', _, ['2A','6A','15B'] ). +verb( 'trumpet', 'trumpets', 'trumpeting', 'trumpeted', 'trumpeted', _, ['2A','2C','6A','15B'] ). +verb( 'truncate', 'truncates', 'truncating', 'truncated', 'truncated', tran, ['6A'] ). +verb( 'trundle', 'trundles', 'trundling', 'trundled', 'trundled', _, ['2C','6A','15A','15B'] ). +verb( 'truss', 'trusses', 'trussing', 'trussed', 'trussed', tran, ['6A','15B'] ). +verb( 'trust', 'trusts', 'trusting', 'trusted', 'trusted', _, ['3A','6A','7A','9','14','15A','15B','17'] ). +verb( 'try', 'tries', 'trying', 'tried', 'tried', _, ['2A','2B','3A','6A','6B','6C','7A','10','15A','15B'] ). +verb( 'tuck', 'tucks', 'tucking', 'tucked', 'tucked', _, ['2C','3A','15A','15B'] ). +verb( 'tug', 'tugs', 'tugging', 'tugged', 'tugged', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'tumble', 'tumbles', 'tumbling', 'tumbled', 'tumbled', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'tune', 'tunes', 'tuning', 'tuned', 'tuned', _, ['2C','6A'] ). +verb( 'tunnel', 'tunnels', 'tunnelling', 'tunnelled', 'tunnelled', _, ['2A','2C','3A','6A'] ). +verb( 'turf', 'turfs', 'turfing', 'turfed', 'turfed', tran, ['6A','15B'] ). +verb( 'turn', 'turns', 'turning', 'turned', 'turned', _, ['2A','2C','3A','4A','6A','14','15A','15B'] ). +verb( 'tussle', 'tussles', 'tussling', 'tussled', 'tussled', intran, [] ). +verb( 'tut', 'tuts', 'tutting', 'tutted', 'tutted', tran, ['6A'] ). +verb( 'tutor', 'tutors', 'tutoring', 'tutored', 'tutored', tran, ['6A','15A','16A'] ). +verb( 'twaddle', 'twaddles', 'twaddling', 'twaddled', 'twaddled', intran, ['2A'] ). +verb( 'twang', 'twangs', 'twanging', 'twanged', 'twanged', _, ['2A','6A'] ). +verb( 'tweak', 'tweaks', 'tweaking', 'tweaked', 'tweaked', tran, ['6A'] ). +verb( 'tweet', 'tweets', 'tweeting', 'tweeted', 'tweeted', intran, [] ). +verb( 'twiddle', 'twiddles', 'twiddling', 'twiddled', 'twiddled', _, ['3A','6A'] ). +verb( 'twig', 'twigs', 'twigging', 'twigged', 'twigged', _, ['2A','6A'] ). +verb( 'twin', 'twins', 'twinning', 'twinned', 'twinned', tran, ['6A','14'] ). +verb( 'twine', 'twines', 'twining', 'twined', 'twined', _, ['2A','2C','15A','15B'] ). +verb( 'twinkle', 'twinkles', 'twinkling', 'twinkled', 'twinkled', intran, ['2A','2C'] ). +verb( 'twirl', 'twirls', 'twirling', 'twirled', 'twirled', _, ['2A','2C','6A','15B','16A'] ). +verb( 'twist', 'twists', 'twisting', 'twisted', 'twisted', _, ['2A','2C','6A','15A','15B','16A'] ). +verb( 'twit', 'twits', 'twitting', 'twitted', 'twitted', tran, ['6A','14'] ). +verb( 'twitch', 'twitches', 'twitching', 'twitched', 'twitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'twitter', 'twitters', 'twittering', 'twittered', 'twittered', intran, ['15A','15B'] ). +verb( 'type', 'types', 'typing', 'typed', 'typed', _, ['2A','6A'] ). +verb( 'typecast', 'typecasts', 'typecasting', 'typecast', 'typecast', tran, ['6A'] ). +verb( 'typify', 'typifies', 'typifying', 'typified', 'typified', tran, ['6A'] ). +verb( 'tyrannize', 'tyrannizes', 'tyrannizing', 'tyrannized', 'tyrannized', _, ['3A','6A'] ). +verb( 'uglify', 'uglifies', 'uglifying', 'uglified', 'uglified', tran, [] ). +verb( 'ulcerate', 'ulcerates', 'ulcerating', 'ulcerated', 'ulcerated', _, ['2A','6A'] ). +verb( 'ululate', 'ululates', 'ululating', 'ululated', 'ululated', intran, ['2A'] ). +verb( 'umpire', 'umpires', 'umpiring', 'umpired', 'umpired', _, ['2A','6A'] ). +verb( 'unbalance', 'unbalances', 'unbalancing', 'unbalanced', 'unbalanced', tran, ['6A'] ). +verb( 'unbar', 'unbars', 'unbarring', 'unbarred', 'unbarred', tran, [] ). +verb( 'unbend', 'unbends', 'unbending', 'unbended', 'unbended', _, ['2A','6A'] ). +verb( 'unbind', 'unbinds', 'unbinding', 'unbound', 'unbound', tran, ['6A'] ). +verb( 'unblock', 'unblocks', 'unblocking', 'unblocked', 'unblocked', tran, ['6A','15B'] ). +verb( 'unbolt', 'unbolts', 'unbolting', 'unbolted', 'unbolted', _, ['2A','2C','6A','15B'] ). +verb( 'unbosom', 'unbosoms', 'unbosoming', 'unbosomed', 'unbosomed', tran, ['6A','14'] ). +verb( 'unbuckle', 'unbuckles', 'unbuckling', 'unbuckled', 'unbuckled', tran, ['6A'] ). +verb( 'unburden', 'unburdens', 'unburdening', 'unburdened', 'unburdened', tran, ['6A','15A'] ). +verb( 'unbutton', 'unbuttons', 'unbuttoning', 'unbuttoned', 'unbuttoned', tran, ['6A'] ). +verb( 'unchain', 'unchains', 'unchaining', 'unchained', 'unchained', tran, ['6A','15A','15B'] ). +verb( 'uncork', 'uncorks', 'uncorking', 'uncorked', 'uncorked', tran, ['6A'] ). +verb( 'uncouple', 'uncouples', 'uncoupling', 'uncoupled', 'uncoupled', tran, ['6A'] ). +verb( 'uncover', 'uncovers', 'uncovering', 'uncovered', 'uncovered', tran, ['2A','6A'] ). +verb( 'uncross', 'uncrosses', 'uncrossing', 'uncrossed', 'uncrossed', tran, ['6A'] ). +verb( 'uncurl', 'uncurls', 'uncurling', 'uncurled', 'uncurled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'undeceive', 'undeceives', 'undeceiving', 'undeceived', 'undeceived', tran, ['6A'] ). +verb( 'underact', 'underacts', 'underacting', 'underacted', 'underacted', _, ['2A','6A'] ). +verb( 'underbid', 'underbids', 'underbidding', 'underbid', 'underbid', tran, [] ). +verb( 'undercharge', 'undercharges', 'undercharging', 'undercharged', 'undercharged', tran, ['6A'] ). +verb( 'undercut', 'undercuts', 'undercutting', 'undercut', 'undercut', tran, ['6A'] ). +verb( 'underestimate', 'underestimates', 'underestimating', 'underestimated', 'underestimated', tran, ['6A'] ). +verb( 'underexpose', 'underexposes', 'underexposing', 'underexposed', 'underexposed', tran, ['6A'] ). +verb( 'undergo', 'undergoes', 'undergoing', 'underwent', 'undergone', tran, ['6A'] ). +verb( 'underlie', 'underlies', 'underlying', 'underlay', 'underlain', tran, ['6A'] ). +verb( 'underline', 'underlines', 'underlining', 'underlined', 'underlined', tran, ['6A'] ). +verb( 'undermine', 'undermines', 'undermining', 'undermined', 'undermined', tran, ['6A'] ). +verb( 'underpay', 'underpays', 'underpaying', 'underpaid', 'underpaid', tran, ['6A'] ). +verb( 'underpin', 'underpins', 'underpinning', 'underpinned', 'underpinned', tran, [] ). +verb( 'underquote', 'underquotes', 'underquoting', 'underquoted', 'underquoted', tran, ['6A'] ). +verb( 'underrate', 'underrates', 'underrating', 'underrated', 'underrated', tran, ['6A'] ). +verb( 'underscore', 'underscores', 'underscoring', 'underscored', 'underscored', tran, ['6A'] ). +verb( 'undersell', 'undersells', 'underselling', 'undersold', 'undersold', tran, ['6A'] ). +verb( 'undershoot', 'undershoots', 'undershooting', 'undershot', 'undershot', tran, [] ). +verb( 'undersign', 'undersigns', 'undersigning', 'undersigned', 'undersigned', tran, ['6A'] ). +verb( 'underspend', 'underspends', 'underspending', 'underspent', 'underspent', _, ['2A','6A','14','19B'] ). +verb( 'understand', 'understands', 'understanding', 'understood', 'understood', _, ['2A','6A','6C','8','9','10','17','19C'] ). +verb( 'understate', 'understates', 'understating', 'understated', 'understated', tran, ['6A'] ). +verb( 'understock', 'understocks', 'understocking', 'understocked', 'understocked', tran, ['6A'] ). +verb( 'understudy', 'understudies', 'understudying', 'understudied', 'understudied', tran, ['6A'] ). +verb( 'undertake', 'undertakes', 'undertaking', 'undertook', 'undertaken', tran, ['6A','7A','9'] ). +verb( 'undervalue', 'undervalues', 'undervaluing', 'undervalued', 'undervalued', tran, ['6A'] ). +verb( 'underwrite', 'underwrites', 'underwriting', 'underwrote', 'underwritten', tran, ['6A'] ). +verb( 'undo', 'undoes', 'undoing', 'undid', 'undone', tran, ['6A'] ). +verb( 'undock', 'undocks', 'undocking', 'undocked', 'undocked', _, ['2A','6A'] ). +verb( 'undress', 'undresses', 'undressing', 'undressed', 'undressed', _, ['2A','6A'] ). +verb( 'undulate', 'undulates', 'undulating', 'undulated', 'undulated', intran, ['2A','2C'] ). +verb( 'unearth', 'unearths', 'unearthing', 'unearthed', 'unearthed', tran, ['6A'] ). +verb( 'unfasten', 'unfastens', 'unfastening', 'unfastened', 'unfastened', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'unfit', 'unfits', 'unfitting', 'unfitted', 'unfitted', tran, ['14'] ). +verb( 'unfold', 'unfolds', 'unfolding', 'unfolded', 'unfolded', _, ['2A','2C','6A'] ). +verb( 'unfrock', 'unfrocks', 'unfrocking', 'unfrocked', 'unfrocked', tran, ['6A'] ). +verb( 'unfurl', 'unfurls', 'unfurling', 'unfurled', 'unfurled', _, ['2A','6A'] ). +verb( 'unhand', 'unhands', 'unhanding', 'unhanded', 'unhanded', tran, ['6A'] ). +verb( 'unhinge', 'unhinges', 'unhinging', 'unhinged', 'unhinged', tran, ['6A'] ). +verb( 'unhitch', 'unhitches', 'unhitching', 'unhitched', 'unhitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'unhook', 'unhooks', 'unhooking', 'unhooked', 'unhooked', tran, ['6A'] ). +verb( 'unhorse', 'unhorses', 'unhorsing', 'unhorsed', 'unhorsed', tran, ['6A'] ). +verb( 'unify', 'unifies', 'unifying', 'unified', 'unified', tran, ['6A'] ). +verb( 'unite', 'unites', 'uniting', 'united', 'united', _, ['2A','3A','4A','6A'] ). +verb( 'unlearn', 'unlearns', 'unlearning', 'unlearned', 'unlearned', tran, ['6A'] ). +verb( 'unleash', 'unleashes', 'unleashing', 'unleashed', 'unleashed', tran, ['6A'] ). +verb( 'unload', 'unloads', 'unloading', 'unloaded', 'unloaded', _, ['2A','6A','14'] ). +verb( 'unlock', 'unlocks', 'unlocking', 'unlocked', 'unlocked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'unloose', 'unlooses', 'unloosing', 'unloosed', 'unloosed', tran, ['6A'] ). +verb( 'unman', 'unmans', 'unmanning', 'unmanned', 'unmanned', tran, ['6A'] ). +verb( 'unmask', 'unmasks', 'unmasking', 'unmasked', 'unmasked', _, ['2A','6A'] ). +verb( 'unnerve', 'unnerves', 'unnerving', 'unnerved', 'unnerved', tran, ['6A'] ). +verb( 'unpack', 'unpacks', 'unpacking', 'unpacked', 'unpacked', _, ['2A','6A'] ). +verb( 'unpick', 'unpicks', 'unpicking', 'unpicked', 'unpicked', _, ['3A','6A','15B'] ). +verb( 'unplug', 'unplugs', 'unplugging', 'unplugged', 'unplugged', _, ['2C','6A','15B'] ). +verb( 'unravel', 'unravels', 'unravelling', 'unravelled', 'unravelled', _, ['2A','6A'] ). +verb( 'unroll', 'unrolls', 'unrolling', 'unrolled', 'unrolled', _, ['2A','6A'] ). +verb( 'unsaddle', 'unsaddles', 'unsaddling', 'unsaddled', 'unsaddled', tran, ['6A'] ). +verb( 'unsay', 'unsays', 'unsaying', 'unsaid', 'unsaid', tran, ['6A'] ). +verb( 'unscramble', 'unscrambles', 'unscrambling', 'unscrambled', 'unscrambled', tran, [] ). +verb( 'unscrew', 'unscrews', 'unscrewing', 'unscrewed', 'unscrewed', _, ['2A','6A','15A','15B'] ). +verb( 'unseat', 'unseats', 'unseating', 'unseated', 'unseated', tran, ['6A'] ). +verb( 'unsettle', 'unsettles', 'unsettling', 'unsettled', 'unsettled', tran, ['6A'] ). +verb( 'unsex', 'unsexes', 'unsexing', 'unsexed', 'unsexed', tran, ['6A'] ). +verb( 'unsheathe', 'unsheathes', 'unsheathing', 'unsheathed', 'unsheathed', tran, ['6A'] ). +verb( 'untie', 'unties', 'untying', 'untied', 'untied', _, ['2A','3A','6A','15A','15B'] ). +verb( 'unveil', 'unveils', 'unveiling', 'unveiled', 'unveiled', _, ['2A','6A'] ). +verb( 'unwind', 'unwinds', 'unwinding', 'unwound', 'unwound', _, ['2A','6A','21'] ). +verb( 'unwrap', 'unwraps', 'unwrapping', 'unwrapped', 'unwrapped', _, ['6A','14','15A','15B'] ). +verb( 'unzip', 'unzips', 'unzipping', 'unzipped', 'unzipped', tran, [] ). +verb( 'up', 'ups', 'upping', 'upped', 'upped', _, ['2A','6A'] ). +verb( 'upbraid', 'upbraids', 'upbraiding', 'upbraided', 'upbraided', tran, ['6A','14'] ). +verb( 'update', 'updates', 'updating', 'updated', 'updated', tran, ['6A'] ). +verb( 'upgrade', 'upgrades', 'upgrading', 'upgraded', 'upgraded', tran, ['6A'] ). +verb( 'uphold', 'upholds', 'upholding', 'upheld', 'upheld', tran, ['6A'] ). +verb( 'upholster', 'upholsters', 'upholstering', 'upholstered', 'upholstered', tran, ['6A'] ). +verb( 'uplift', 'uplifts', 'uplifting', 'uplifted', 'uplifted', tran, ['6A'] ). +verb( 'uproot', 'uproots', 'uprooting', 'uprooted', 'uprooted', tran, ['6A'] ). +verb( 'upset', 'upsets', 'upsetting', 'upset', 'upset', _, ['2A','6A'] ). +verb( 'upstage', 'upstages', 'upstaging', 'upstaged', 'upstaged', tran, ['6A'] ). +verb( 'urbanize', 'urbanizes', 'urbanizing', 'urbanized', 'urbanized', tran, ['6A'] ). +verb( 'urge', 'urges', 'urging', 'urged', 'urged', tran, ['6A','6D','9','14','15B','17','19C'] ). +verb( 'urinate', 'urinates', 'urinating', 'urinated', 'urinated', intran, [] ). +verb( 'use', 'uses', 'using', 'used', 'used', tran, ['6A','14','15A','15B','16A'] ). +verb( 'usher', 'ushers', 'ushering', 'ushered', 'ushered', tran, ['14','15B'] ). +verb( 'usurp', 'usurps', 'usurping', 'usurped', 'usurped', tran, ['6A'] ). +verb( 'utilize', 'utilizes', 'utilizing', 'utilized', 'utilized', tran, ['6A'] ). +verb( 'utter', 'utters', 'uttering', 'uttered', 'uttered', tran, ['6A'] ). +verb( 'vacate', 'vacates', 'vacating', 'vacated', 'vacated', tran, ['6A'] ). +verb( 'vacation', 'vacations', 'vacationing', 'vacationed', 'vacationed', intran, ['3A'] ). +verb( 'vaccinate', 'vaccinates', 'vaccinating', 'vaccinated', 'vaccinated', tran, ['6A','14'] ). +verb( 'vacillate', 'vacillates', 'vacillating', 'vacillated', 'vacillated', intran, ['2A','3A'] ). +verb( 'valet', 'valets', 'valeting', 'valeted', 'valeted', tran, ['6A'] ). +verb( 'validate', 'validates', 'validating', 'validated', 'validated', tran, ['6A'] ). +verb( 'value', 'values', 'valuing', 'valued', 'valued', tran, ['6A','15A','16B'] ). +verb( 'vamoose', 'vamooses', 'vamoosing', 'vamoosed', 'vamoosed', intran, [] ). +verb( 'vamp', 'vamps', 'vamping', 'vamped', 'vamped', _, ['2A','6A','15B'] ). +verb( 'vanish', 'vanishes', 'vanishing', 'vanished', 'vanished', intran, ['2A'] ). +verb( 'vanquish', 'vanquishes', 'vanquishing', 'vanquished', 'vanquished', tran, ['6A'] ). +verb( 'vaporize', 'vaporizes', 'vaporizing', 'vaporized', 'vaporized', _, ['2A','6A'] ). +verb( 'varnish', 'varnishes', 'varnishing', 'varnished', 'varnished', tran, ['6A'] ). +verb( 'vary', 'varies', 'varying', 'varied', 'varied', _, ['2A','6A'] ). +verb( 'vault', 'vaults', 'vaulting', 'vaulted', 'vaulted', _, ['2A','2B','2C','6A'] ). +verb( 'vaunt', 'vaunts', 'vaunting', 'vaunted', 'vaunted', _, [] ). +verb( 'veer', 'veers', 'veering', 'veered', 'veered', intran, ['2A','2C'] ). +verb( 'vegetate', 'vegetates', 'vegetating', 'vegetated', 'vegetated', intran, ['2A'] ). +verb( 'veil', 'veils', 'veiling', 'veiled', 'veiled', tran, ['6A'] ). +verb( 'vend', 'vends', 'vending', 'vended', 'vended', tran, ['6A'] ). +verb( 'veneer', 'veneers', 'veneering', 'veneered', 'veneered', tran, ['6A'] ). +verb( 'venerate', 'venerates', 'venerating', 'venerated', 'venerated', tran, ['6A'] ). +verb( 'vent', 'vents', 'venting', 'vented', 'vented', tran, ['6A','14'] ). +verb( 'ventilate', 'ventilates', 'ventilating', 'ventilated', 'ventilated', tran, ['6A'] ). +verb( 'venture', 'ventures', 'venturing', 'ventured', 'ventured', _, ['3A','6A','7A','15A','16A'] ). +verb( 'verbalize', 'verbalizes', 'verbalizing', 'verbalized', 'verbalized', tran, [] ). +verb( 'verge', 'verges', 'verging', 'verged', 'verged', intran, ['3A'] ). +verb( 'verify', 'verifies', 'verifying', 'verified', 'verified', tran, ['6A'] ). +verb( 'versify', 'versifies', 'versifying', 'versified', 'versified', _, ['2A','6A'] ). +verb( 'vest', 'vests', 'vesting', 'vested', 'vested', _, ['3A','6A','14'] ). +verb( 'vesture', 'vestures', 'vesturing', 'vestured', 'vestured', tran, [] ). +verb( 'vet', 'vets', 'vetting', 'vetted', 'vetted', tran, ['6A'] ). +verb( 'veto', 'vetos', 'vetoing', 'vetoed', 'vetoed', tran, ['6A'] ). +verb( 'vex', 'vexes', 'vexing', 'vexed', 'vexed', tran, ['6A'] ). +verb( 'vibrate', 'vibrates', 'vibrating', 'vibrated', 'vibrated', _, ['2A','2C','6A'] ). +verb( 'victimize', 'victimizes', 'victimizing', 'victimized', 'victimized', tran, ['6A'] ). +verb( 'victual', 'victuals', 'victualling', 'victualled', 'victualled', _, ['2A','6A'] ). +verb( 'videotape', 'videotapes', 'videotaping', 'videotaped', 'videotaped', tran, ['6A'] ). +verb( 'vie', 'vies', 'vying', 'vied', 'vied', intran, ['3A'] ). +verb( 'view', 'views', 'viewing', 'viewed', 'viewed', tran, ['6A'] ). +verb( 'vilify', 'vilifies', 'vilifying', 'vilified', 'vilified', tran, ['6A'] ). +verb( 'vindicate', 'vindicates', 'vindicating', 'vindicated', 'vindicated', tran, ['6A'] ). +verb( 'violate', 'violates', 'violating', 'violated', 'violated', tran, ['6A'] ). +verb( 'visa', 'visas', 'visaing', 'visaed', 'visaed', tran, ['6A'] ). +verb( 'visit', 'visits', 'visiting', 'visited', 'visited', _, ['2C','3A','6A','14'] ). +verb( 'visualize', 'visualizes', 'visualizing', 'visualized', 'visualized', tran, ['6A'] ). +verb( 'vitalize', 'vitalizes', 'vitalizing', 'vitalized', 'vitalized', tran, ['6A'] ). +verb( 'vitiate', 'vitiates', 'vitiating', 'vitiated', 'vitiated', tran, ['6A'] ). +verb( 'vitrify', 'vitrifies', 'vitrifying', 'vitrified', 'vitrified', _, ['2A','6A'] ). +verb( 'vituperate', 'vituperates', 'vituperating', 'vituperated', 'vituperated', tran, ['6A'] ). +verb( 'vivisect', 'vivisects', 'vivisecting', 'vivisected', 'vivisected', tran, ['6A'] ). +verb( 'vocalize', 'vocalizes', 'vocalizing', 'vocalized', 'vocalized', tran, [] ). +verb( 'vociferate', 'vociferates', 'vociferating', 'vociferated', 'vociferated', _, ['2A','6A'] ). +verb( 'voice', 'voices', 'voicing', 'voiced', 'voiced', tran, ['6A'] ). +verb( 'void', 'voids', 'voiding', 'voided', 'voided', tran, ['6A'] ). +verb( 'volley', 'volleys', 'volleying', 'volleyed', 'volleyed', _, ['2A','2C','6A'] ). +verb( 'volunteer', 'volunteers', 'volunteering', 'volunteered', 'volunteered', _, ['2A','3A','6A','7A'] ). +verb( 'vomit', 'vomits', 'vomiting', 'vomited', 'vomited', _, ['2A','6A','15B'] ). +verb( 'vote', 'votes', 'voting', 'voted', 'voted', _, ['3A','6A','9','12B','13B','15B','25'] ). +verb( 'vouch', 'vouches', 'vouching', 'vouched', 'vouched', intran, [] ). +verb( 'vouchsafe', 'vouchsafes', 'vouchsafing', 'vouchsafed', 'vouchsafed', tran, ['6A','7A','12C'] ). +verb( 'vow', 'vows', 'vowing', 'vowed', 'vowed', tran, ['6A','7A','9'] ). +verb( 'voyage', 'voyages', 'voyaging', 'voyaged', 'voyaged', intran, ['2A','2C'] ). +verb( 'vulcanize', 'vulcanizes', 'vulcanizing', 'vulcanized', 'vulcanized', tran, ['6A'] ). +verb( 'vulgarize', 'vulgarizes', 'vulgarizing', 'vulgarized', 'vulgarized', tran, ['6A'] ). +verb( 'wad', 'wads', 'wadding', 'wadded', 'wadded', tran, [] ). +verb( 'waddle', 'waddles', 'waddling', 'waddled', 'waddled', intran, ['2A','2C'] ). +verb( 'wade', 'wades', 'wading', 'waded', 'waded', _, ['2A','2C','6A'] ). +verb( 'waffle', 'waffles', 'waffling', 'waffled', 'waffled', intran, ['2A','2C'] ). +verb( 'waft', 'wafts', 'wafting', 'wafted', 'wafted', tran, ['6A'] ). +verb( 'wag', 'wags', 'wagging', 'wagged', 'wagged', _, ['2A','2C','6A'] ). +verb( 'wage', 'wages', 'waging', 'waged', 'waged', tran, ['6A'] ). +verb( 'wager', 'wagers', 'wagering', 'wagered', 'wagered', _, ['2A','6A','11','12C','14'] ). +verb( 'waggle', 'waggles', 'waggling', 'waggled', 'waggled', _, [] ). +verb( 'wail', 'wails', 'wailing', 'wailed', 'wailed', _, ['2A','2B','2C','6A'] ). +verb( 'wait', 'waits', 'waiting', 'waited', 'waited', _, ['2A','2B','2C','3A','4A','6A','14'] ). +verb( 'waive', 'waives', 'waiving', 'waived', 'waived', tran, ['6A'] ). +verb( 'wake', 'wakes', 'waking', 'waked', 'waked', _, ['2A','2C','4B','6A','15B'] ). +verb( 'waken', 'wakens', 'wakening', 'wakened', 'wakened', _, ['2A','6A'] ). +verb( 'walk', 'walks', 'walking', 'walked', 'walked', _, ['2A','2B','2C','6A','15A','15B'] ). +verb( 'wall', 'walls', 'walling', 'walled', 'walled', tran, ['15B'] ). +verb( 'wallop', 'wallops', 'walloping', 'walloped', 'walloped', tran, [] ). +verb( 'wallow', 'wallows', 'wallowing', 'wallowed', 'wallowed', intran, ['2A','2C'] ). +verb( 'waltz', 'waltzes', 'waltzing', 'waltzed', 'waltzed', _, ['2A','2C','15A'] ). +verb( 'wander', 'wanders', 'wandering', 'wandered', 'wandered', _, ['2A','2B','2C','6A'] ). +verb( 'wane', 'wanes', 'waning', 'waned', 'waned', intran, ['2A'] ). +verb( 'wangle', 'wangles', 'wangling', 'wangled', 'wangled', tran, ['6A'] ). +verb( 'wank', 'wanks', 'wanking', 'wanked', 'wanked', intran, ['2A'] ). +verb( 'want', 'wants', 'wanting', 'wanted', 'wanted', _, ['2A','3A','6A','6E','7A','17','19B','24A'] ). +verb( 'wanton', 'wantons', 'wantoning', 'wantoned', 'wantoned', intran, ['2A','2C'] ). +verb( 'war', 'wars', 'warring', 'warred', 'warred', intran, [] ). +verb( 'warble', 'warbles', 'warbling', 'warbled', 'warbled', _, ['2A','2C','6A'] ). +verb( 'ward', 'wards', 'warding', 'warded', 'warded', tran, ['15B'] ). +verb( 'ware', 'wares', 'waring', 'wared', 'wared', tran, ['6A'] ). +verb( 'warm', 'warms', 'warming', 'warmed', 'warmed', _, ['2A','2C','6A','15B'] ). +verb( 'warn', 'warns', 'warning', 'warned', 'warned', tran, ['6A','11','14','15B','17'] ). +verb( 'warp', 'warps', 'warping', 'warped', 'warped', _, ['2A','6A'] ). +verb( 'warrant', 'warrants', 'warranting', 'warranted', 'warranted', tran, ['6A','9','25'] ). +verb( 'wash', 'washes', 'washing', 'washed', 'washed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'waste', 'wastes', 'wasting', 'wasted', 'wasted', _, ['2A','2C','6A','14'] ). +verb( 'watch', 'watches', 'watching', 'watched', 'watched', _, ['2A','2B','2C','3A','4A','6A','8','10','15A','18A','19A'] ). +verb( 'water', 'waters', 'watering', 'watered', 'watered', _, ['2A','6A','15B'] ). +verb( 'waterproof', 'waterproofs', 'waterproofing', 'waterproofed', 'waterproofed', tran, [] ). +verb( 'wave', 'waves', 'waving', 'waved', 'waved', _, ['2A','3A','6A','12A','13A','15A','15B','16A'] ). +verb( 'waver', 'wavers', 'wavering', 'wavered', 'wavered', intran, ['2A','2C'] ). +verb( 'wax', 'waxes', 'waxing', 'waxed', 'waxed', _, ['2A','2D','6A'] ). +verb( 'waylay', 'waylays', 'waylaying', 'waylaid', 'waylaid', tran, ['6A'] ). +verb( 'weaken', 'weakens', 'weakening', 'weakened', 'weakened', _, ['2A','6A'] ). +verb( 'wean', 'weans', 'weaning', 'weaned', 'weaned', tran, ['6A','14'] ). +verb( 'wear', 'wears', 'wearing', 'wore', 'worn', _, ['2A','2B','2C','2D','6A','15A','15B','22'] ). +verb( 'weary', 'wearies', 'wearying', 'wearied', 'wearied', _, ['2A','3A','6A','14'] ). +verb( 'weather', 'weathers', 'weathering', 'weathered', 'weathered', _, ['2A','6A'] ). +verb( 'weave', 'weaves', 'weaving', 'wove', 'woven', _, ['2A','2C','6A','15A','15B'] ). +verb( 'wed', 'weds', 'wedding', 'wedded', 'wedded', _, ['2A','6A','14'] ). +verb( 'wedge', 'wedges', 'wedging', 'wedged', 'wedged', tran, ['6A','15A','22'] ). +verb( 'wee', 'wees', 'weeing', 'weed', 'weed', intran, [] ). +verb( 'weed', 'weeds', 'weeding', 'weeded', 'weeded', _, ['2A','6A','15B'] ). +verb( 'weekend', 'weekends', 'weekending', 'weekended', 'weekended', intran, [] ). +verb( 'weep', 'weeps', 'weeping', 'wept', 'wept', _, ['2A','2B','2C','3A','4B','6A'] ). +verb( 'weigh', 'weighs', 'weighing', 'weighed', 'weighed', _, ['2B','2C','3A','6A','14','15B'] ). +verb( 'weight', 'weights', 'weighting', 'weighted', 'weighted', tran, ['6A'] ). +verb( 'welcome', 'welcomes', 'welcoming', 'welcomed', 'welcomed', tran, ['6A','15A'] ). +verb( 'weld', 'welds', 'welding', 'welded', 'welded', _, ['2A','6A','15A','15B'] ). +verb( 'well', 'wells', 'welling', 'welled', 'welled', intran, ['2C'] ). +verb( 'welsh', 'welshes', 'welshing', 'welshed', 'welshed', intran, ['3A'] ). +verb( 'welter', 'welters', 'weltering', 'weltered', 'weltered', intran, ['2C'] ). +verb( 'wench', 'wenches', 'wenching', 'wenched', 'wenched', intran, ['2A'] ). +verb( 'wend', 'wends', 'wending', 'wended', 'wended', tran, [] ). +verb( 'westernize', 'westernizes', 'westernizing', 'westernized', 'westernized', tran, ['6A'] ). +verb( 'wet', 'wets', 'wetting', 'wetted', 'wetted', tran, ['6A'] ). +verb( 'whack', 'whacks', 'whacking', 'whacked', 'whacked', tran, ['6A'] ). +verb( 'whale', 'whales', 'whaling', 'whaled', 'whaled', intran, ['2A'] ). +verb( 'whang', 'whangs', 'whanging', 'whanged', 'whanged', tran, [] ). +verb( 'wheedle', 'wheedles', 'wheedling', 'wheedled', 'wheedled', tran, ['6A','14'] ). +verb( 'wheel', 'wheels', 'wheeling', 'wheeled', 'wheeled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'wheeze', 'wheezes', 'wheezing', 'wheezed', 'wheezed', _, ['2A','2B','2C','15B'] ). +verb( 'whelp', 'whelps', 'whelping', 'whelped', 'whelped', intran, [] ). +verb( 'whet', 'whets', 'whetting', 'whetted', 'whetted', tran, ['6A'] ). +verb( 'while', 'whiles', 'whiling', 'whiled', 'whiled', tran, ['15B'] ). +verb( 'whimper', 'whimpers', 'whimpering', 'whimpered', 'whimpered', _, ['2A','6A'] ). +verb( 'whine', 'whines', 'whining', 'whined', 'whined', _, ['2A','2C','4A','6A','15B'] ). +verb( 'whinny', 'whinnies', 'whinnying', 'whinnied', 'whinnied', intran, [] ). +verb( 'whip', 'whips', 'whipping', 'whipped', 'whipped', _, ['2C','6A','15A','15B'] ). +verb( 'whir', 'whirs', 'whirring', 'whirred', 'whirred', intran, ['2A','2C'] ). +verb( 'whirl', 'whirls', 'whirling', 'whirled', 'whirled', _, ['2A','2C','15A','15B'] ). +verb( 'whirr', 'whirrs', 'whirring', 'whirred', 'whirred', intran, ['2A','2C'] ). +verb( 'whisk', 'whisks', 'whisking', 'whisked', 'whisked', _, ['6A','15B'] ). +verb( 'whisper', 'whispers', 'whispering', 'whispered', 'whispered', _, ['2A','2C','3A','6A','14','15B'] ). +verb( 'whistle', 'whistles', 'whistling', 'whistled', 'whistled', _, ['2A','2C','6A','15B','16A'] ). +verb( 'whiten', 'whitens', 'whitening', 'whitened', 'whitened', _, ['2A','6A'] ). +verb( 'whitewash', 'whitewashes', 'whitewashing', 'whitewashed', 'whitewashed', tran, [] ). +verb( 'whittle', 'whittles', 'whittling', 'whittled', 'whittled', _, ['2C','3A','6A','15A','15B'] ). +verb( 'whiz', 'whizzes', 'whizzing', 'whizzed', 'whizzed', intran, ['2C'] ). +verb( 'whoop', 'whoops', 'whooping', 'whooped', 'whooped', _, [] ). +verb( 'whop', 'whops', 'whopping', 'whopped', 'whopped', tran, ['6A'] ). +verb( 'widen', 'widens', 'widening', 'widened', 'widened', _, ['2A','6A'] ). +verb( 'wield', 'wields', 'wielding', 'wielded', 'wielded', tran, ['6A'] ). +verb( 'wiggle', 'wiggles', 'wiggling', 'wiggled', 'wiggled', _, ['2A','6A'] ). +verb( 'will', 'will', '-', '-', '-', unknown, ['2A','5','6A','9','12A','13A','14','15A','17'] ). +verb( 'will', 'wills', 'willing', 'willed', 'willed', _, ['2A','5','6A','9','12A','13A','14','15A','17'] ). +verb( 'wilt', 'wilts', 'wilting', 'wilted', 'wilted', _, ['2A','5','6A','9'] ). +verb( 'win', 'wins', 'winning', 'won', 'won', _, ['2A','6A','12B','13B','15A','15B','17'] ). +verb( 'wince', 'winces', 'wincing', 'winced', 'winced', tran, ['2A','2C'] ). +verb( 'winch', 'winches', 'winching', 'winched', 'winched', tran, ['6A','15B'] ). +verb( 'wind', 'winds', 'winding', 'winded', 'winded', tran, ['6A'] ). +verb( 'wind', 'winds', 'winding', 'wound', 'wound', _, ['2A','2B','2C','6A','14','15A','15B'] ). +verb( 'wine', 'wines', 'wining', 'wined', 'wined', tran, [] ). +verb( 'wing', 'wings', 'winging', 'winged', 'winged', _, ['2C','6A','15A'] ). +verb( 'wink', 'winks', 'winking', 'winked', 'winked', _, ['2A','2C','3A','15B'] ). +verb( 'winkle', 'winkles', 'winkling', 'winkled', 'winkled', tran, ['15B'] ). +verb( 'winnow', 'winnows', 'winnowing', 'winnowed', 'winnowed', tran, ['6A','14','15A','15B'] ). +verb( 'winter', 'winters', 'wintering', 'wintered', 'wintered', intran, ['2C'] ). +verb( 'wipe', 'wipes', 'wiping', 'wiped', 'wiped', _, ['6A','15A','15B','22'] ). +verb( 'wire', 'wires', 'wiring', 'wired', 'wired', _, ['6A','11','12A','13A','15A','15B','16A'] ). +verb( 'wisecrack', 'wisecracks', 'wisecracking', 'wisecracked', 'wisecracked', intran, [] ). +verb( 'wish', 'wishes', 'wishing', 'wished', 'wished', _, ['2A','3A','6A','7A','9','12A','13A','15A','17','22'] ). +verb( 'withdraw', 'withdraws', 'withdrawing', 'withdrew', 'withdrawn', _, ['2A','2C','6A','14'] ). +verb( 'wither', 'withers', 'withering', 'withered', 'withered', _, ['2A','2C','6A','15B'] ). +verb( 'withhold', 'withholds', 'withholding', 'withheld', 'withheld', tran, ['6A','14'] ). +verb( 'withstand', 'withstands', 'withstanding', 'withstood', 'withstood', tran, ['6A'] ). +verb( 'witness', 'witnesses', 'witnessing', 'witnessed', 'witnessed', _, ['3A','6A'] ). +verb( 'wive', 'wives', 'wiving', 'wived', 'wived', _, ['2A','6A'] ). +verb( 'wobble', 'wobbles', 'wobbling', 'wobbled', 'wobbled', _, ['2A','2C','6A'] ). +verb( 'wolf', 'wolfs', 'wolfing', 'wolfed', 'wolfed', tran, ['6A','15A'] ). +verb( 'womanize', 'womanizes', 'womanizing', 'womanized', 'womanized', intran, [] ). +verb( 'wonder', 'wonders', 'wondering', 'wondered', 'wondered', _, ['2A','3A','3B','4B','8','10'] ). +verb( 'woo', 'woos', 'wooing', 'wooed', 'wooed', tran, ['6A'] ). +verb( 'word', 'words', 'wording', 'worded', 'worded', tran, ['6A'] ). +verb( 'work', 'works', 'working', 'worked', 'worked', _, ['2A','2B','2C','2D','3A','4A','6A','14','15A','15B','22'] ). +verb( 'worm', 'worms', 'worming', 'wormed', 'wormed', tran, ['6A','15A','15B'] ). +verb( 'worry', 'worries', 'worrying', 'worried', 'worried', _, ['2A','2B','2C','3A','6A','14','15A','15B','17','22'] ). +verb( 'worsen', 'worsens', 'worsening', 'worsened', 'worsened', _, ['2A','6A'] ). +verb( 'worship', 'worships', 'worshipping', 'worshipped', 'worshipped', _, ['2A','2B','6A'] ). +verb( 'worst', 'worsts', 'worsting', 'worsted', 'worsted', tran, ['6A'] ). +verb( 'wound', 'wounds', 'wounding', 'wounded', 'wounded', tran, ['6A'] ). +verb( 'wrangle', 'wrangles', 'wrangling', 'wrangled', 'wrangled', intran, ['2A','3A'] ). +verb( 'wrap', 'wraps', 'wrapping', 'wrapped', 'wrapped', _, ['6A','14','15A','15B'] ). +verb( 'wreak', 'wreaks', 'wreaking', 'wreaked', 'wreaked', tran, ['6A','14'] ). +verb( 'wreathe', 'wreathes', 'wreathing', 'wreathed', 'wreathed', _, ['2A','2C','6A','14'] ). +verb( 'wreck', 'wrecks', 'wrecking', 'wrecked', 'wrecked', tran, ['6A'] ). +verb( 'wrench', 'wrenches', 'wrenching', 'wrenched', 'wrenched', tran, ['6A','15A','22'] ). +verb( 'wrest', 'wrests', 'wresting', 'wrested', 'wrested', tran, ['14'] ). +verb( 'wrestle', 'wrestles', 'wrestling', 'wrestled', 'wrestled', intran, ['2A','2C','3A'] ). +verb( 'wrick', 'wricks', 'wricking', 'wricked', 'wricked', tran, ['6A'] ). +verb( 'wriggle', 'wriggles', 'wriggling', 'wriggled', 'wriggled', _, ['2A','2C','3A','6A','15B','22'] ). +verb( 'wring', 'wrings', 'wringing', 'wrung', 'wrung', tran, ['6A','14','15B'] ). +verb( 'wrinkle', 'wrinkles', 'wrinkling', 'wrinkled', 'wrinkled', _, ['2A','2C','6A','15B'] ). +verb( 'write', 'writes', 'writing', 'wrote', 'written', _, ['2A','2B','2C','4A','6A','12A','13A','15B'] ). +verb( 'writhe', 'writhes', 'writhing', 'writhed', 'writhed', intran, ['2A','2C'] ). +verb( 'wrong', 'wrongs', 'wronging', 'wronged', 'wronged', tran, ['6A'] ). +verb( 'yacht', 'yachts', 'yachting', 'yachted', 'yachted', intran, ['2A'] ). +verb( 'yammer', 'yammers', 'yammering', 'yammered', 'yammered', intran, [] ). +verb( 'yank', 'yanks', 'yanking', 'yanked', 'yanked', tran, ['6A','15A','15B'] ). +verb( 'yap', 'yaps', 'yapping', 'yapped', 'yapped', intran, ['2A'] ). +verb( 'yarn', 'yarns', 'yarning', 'yarned', 'yarned', intran, ['2A','2C'] ). +verb( 'yaw', 'yaws', 'yawing', 'yawed', 'yawed', intran, [] ). +verb( 'yawn', 'yawns', 'yawning', 'yawned', 'yawned', intran, ['2A','2C'] ). +verb( 'yearn', 'yearns', 'yearning', 'yearned', 'yearned', intran, ['3A','4A'] ). +verb( 'yell', 'yells', 'yelling', 'yelled', 'yelled', _, ['2A','2C','6A','15B'] ). +verb( 'yellow', 'yellows', 'yellowing', 'yellowed', 'yellowed', _, ['2A','6A'] ). +verb( 'yelp', 'yelps', 'yelping', 'yelped', 'yelped', intran, ['2A'] ). +verb( 'yen', 'yens', 'yenning', 'yenned', 'yenned', intran, [] ). +verb( 'yield', 'yields', 'yielding', 'yielded', 'yielded', _, ['2A','3A','6A','15A','15B'] ). +verb( 'yodel', 'yodels', 'yodelling', 'yodelled', 'yodelled', _, [] ). +verb( 'yoke', 'yokes', 'yoking', 'yoked', 'yoked', _, ['6A','15A'] ). +verb( 'yowl', 'yowls', 'yowling', 'yowled', 'yowled', intran, [] ). +verb( 'zap', 'zaps', 'zapping', 'zapped', 'zapped', tran, ['6A'] ). +verb( 'zero', 'zeros', 'zeroing', 'zeroed', 'zeroed', intran, ['2C'] ). +verb( 'zigzag', 'zigzags', 'zigzagging', 'zigzagged', 'zigzagged', intran, [] ). +verb( 'zip', 'zips', 'zipping', 'zipped', 'zipped', tran, ['6A','15B','22'] ). +verb( 'zone', 'zones', 'zoning', 'zoned', 'zoned', tran, ['6A'] ). +verb( 'zoom', 'zooms', 'zooming', 'zoomed', 'zoomed', intran, ['2A','2C'] ). + +noun( 'a-bomb', 'a-bombs', count, _ ). +noun( 'a-level', 'a-levels', count, _ ). +noun( 'aa', '-', count, _ ). +noun( 'abc', '-', count, _ ). +noun( '-', 'abcs', count, _ ). +noun( 'ad', '-', proper, _ ). +noun( 'agm', '-', count, _ ). +noun( 'aids', '-', mass, _ ). +noun( 'awol', '-', proper, _ ). +noun( 'aachen', '-', proper, loc ). +noun( 'aarhus', '-', proper, loc ). +noun( 'abe', '-', proper, per ). +noun( 'abercarn', '-', proper, loc ). +noun( 'aberdare', '-', proper, loc ). +noun( 'aberdeen', '-', proper, loc ). +noun( 'abergavenny', '-', proper, loc ). +noun( 'abergele', '-', proper, loc ). +noun( 'abertillery', '-', proper, loc ). +noun( 'aberystwyth', '-', proper, loc ). +noun( 'abingdon', '-', proper, loc ). +noun( 'abo', 'abos', count, _ ). +noun( 'aborigine', 'aborigines', count, _ ). +noun( 'abraham', '-', proper, per ). +noun( 'accra', '-', proper, loc ). +noun( 'accrington', '-', proper, loc ). +noun( 'achilles', '-', proper, per ). +noun( 'ada', '-', proper, per ). +noun( 'adam', '-', proper, per ). +noun( 'addis ababa', '-', proper, loc ). +noun( 'addressograph', 'addressographs', count, _ ). +noun( 'adelaide', '-', proper, loc ). +noun( 'adrian', '-', proper, per ). +noun( 'adventist', 'adventists', count, _ ). +noun( 'afghan', 'afghans', both, _ ). +noun( 'afghanistan', '-', proper, loc ). +noun( 'afghanistani', 'afghanistanis', count, _ ). +noun( 'africa', '-', proper, loc ). +noun( 'african', 'africans', count, _ ). +noun( 'afrikaans', '-', mass, _ ). +noun( 'afrikaner', 'afrikaners', count, _ ). +noun( 'afro-american', 'afro-americans', count, _ ). +noun( 'afro-wig', 'afro-wigs', count, _ ). +noun( 'agatha', '-', proper, per ). +noun( 'aggie', '-', proper, per ). +noun( 'agnes', '-', proper, per ). +noun( 'agra', '-', proper, loc ). +noun( 'ahmedabad', '-', proper, loc ). +noun( 'airdrie', '-', proper, loc ). +noun( 'aireborough', '-', proper, loc ). +noun( 'airedale', 'airedales', count, _ ). +noun( 'akron', '-', proper, loc ). +noun( 'al', '-', proper, per ). +noun( 'alabama', '-', proper, loc ). +noun( 'alan', '-', proper, per ). +noun( 'alaska', '-', proper, loc ). +noun( 'albania', '-', proper, loc ). +noun( 'albanian', 'albanians', both, _ ). +noun( 'albert', '-', proper, per ). +noun( 'alberta', '-', proper, loc ). +noun( 'aldershot', '-', proper, loc ). +noun( 'aleppo', '-', proper, loc ). +noun( 'alessandria', '-', proper, loc ). +noun( 'alex', '-', proper, per ). +noun( 'alexander', '-', proper, per ). +noun( 'alexandra', '-', proper, per ). +noun( 'alexandria', '-', proper, loc ). +noun( 'alf', '-', proper, per ). +noun( 'alfred', '-', proper, per ). +noun( 'alfreton', '-', proper, loc ). +noun( 'alger', '-', proper, loc ). +noun( 'algeria', '-', proper, loc ). +noun( 'algerian', 'algerians', count, _ ). +noun( 'ali', '-', proper, per ). +noun( 'alicante', '-', proper, loc ). +noun( 'alice', '-', proper, per ). +noun( 'alison', '-', proper, per ). +noun( 'allah', '-', proper, _ ). +noun( 'allahabad', '-', proper, loc ). +noun( 'allan', '-', proper, per ). +noun( 'allen', '-', proper, per ). +noun( 'alloa', '-', proper, loc ). +noun( 'alma mater', 'alma maters', count, _ ). +noun( 'alma-ata', '-', proper, loc ). +noun( 'almeria', '-', proper, loc ). +noun( 'alnwick', '-', proper, loc ). +noun( 'alsatian', 'alsatians', count, _ ). +noun( 'alton', '-', proper, loc ). +noun( 'altrincham', '-', proper, loc ). +noun( 'alvechurch', '-', proper, loc ). +noun( 'amanda', '-', proper, per ). +noun( 'amazon', 'amazons', count, _ ). +noun( 'america', '-', proper, loc ). +noun( 'american', 'americans', count, _ ). +noun( 'americanism', 'americanisms', both, _ ). +noun( 'amesbury', '-', proper, loc ). +noun( 'amharic', '-', mass, _ ). +noun( 'amiens', '-', proper, loc ). +noun( 'ammanford', '-', proper, loc ). +noun( 'amsterdam', '-', proper, loc ). +noun( 'amy', '-', proper, per ). +noun( 'ancona', '-', proper, loc ). +noun( 'andorra', '-', proper, loc ). +noun( 'andorran', 'andorrans', count, _ ). +noun( 'andover', '-', proper, loc ). +noun( 'andrew', '-', proper, per ). +noun( 'andy', '-', proper, per ). +noun( 'angela', '-', proper, per ). +noun( 'angers', '-', proper, loc ). +noun( 'angie', '-', proper, per ). +noun( 'anglican', 'anglicans', count, _ ). +noun( 'anglo-catholic', 'anglo-catholics', count, _ ). +noun( 'anglo-indian', 'anglo-indians', count, _ ). +noun( 'anglo-saxon', 'anglo-saxons', count, _ ). +noun( 'anglomania', '-', mass, _ ). +noun( 'anglophil', 'anglophils', count, _ ). +noun( 'anglophile', 'anglophiles', count, _ ). +noun( 'anglophobe', 'anglophobes', count, _ ). +noun( 'anglophobia', '-', mass, _ ). +noun( 'angola', '-', proper, loc ). +noun( 'angolan', 'angolans', count, _ ). +noun( 'anguilla', '-', proper, loc ). +noun( 'anguillan', 'anguillans', count, _ ). +noun( 'angus', '-', proper, per ). +noun( 'anita', '-', proper, per ). +noun( 'ankara', '-', proper, loc ). +noun( 'ann', '-', proper, per ). +noun( 'annabel', '-', proper, per ). +noun( 'annan', '-', proper, loc ). +noun( 'anne', '-', proper, per ). +noun( 'annfield', '-', proper, loc ). +noun( 'annfield plain', '-', proper, loc ). +noun( 'annie', '-', proper, per ). +noun( 'anon', '-', proper, _ ). +noun( 'anshan', '-', proper, loc ). +noun( 'anthea', '-', proper, per ). +noun( 'anthony', '-', proper, per ). +noun( 'antigua', '-', proper, loc ). +noun( 'antiguan', 'antiguans', count, _ ). +noun( 'antony', '-', proper, per ). +noun( 'antrim', '-', proper, loc ). +noun( 'antwerp', '-', proper, loc ). +noun( 'apeldoorn', '-', proper, loc ). +noun( 'apocrypha', 'apocrypha', mass, _ ). +noun( 'apr', '-', proper, _ ). +noun( 'april', 'aprils', count, _ ). +noun( 'april', '-', proper, per ). +noun( 'aquarius', '-', proper, _ ). +noun( 'arab', 'arabs', count, _ ). +noun( 'arabian', 'arabians', count, _ ). +noun( 'arabic', '-', mass, _ ). +noun( 'arabist', 'arabists', count, _ ). +noun( 'arbroath', '-', proper, loc ). +noun( 'arcadian', 'arcadians', count, _ ). +noun( 'ardrossan', '-', proper, loc ). +noun( 'argentina', '-', proper, loc ). +noun( 'argentine', '-', proper, loc ). +noun( 'argentinian', 'argentinians', count, _ ). +noun( 'argonaut', 'argonauts', count, _ ). +noun( 'argus', 'arguses', count, _ ). +noun( 'aries', '-', proper, _ ). +noun( 'arizona', '-', proper, loc ). +noun( 'arkansas', '-', proper, loc ). +noun( 'armadale', '-', proper, loc ). +noun( 'armageddon', '-', proper, _ ). +noun( 'armagh', '-', proper, loc ). +noun( 'arnhem', '-', proper, loc ). +noun( 'arnold', '-', proper, per ). +noun( 'art', '-', proper, per ). +noun( 'arthur', '-', proper, per ). +noun( 'artie', '-', proper, per ). +noun( 'aryan', 'aryans', count, _ ). +noun( 'ascot', '-', proper, loc ). +noun( 'ashbourne', '-', proper, loc ). +noun( 'ashby', '-', proper, loc ). +noun( 'ashby woulds', '-', proper, loc ). +noun( 'ashby de la zouch', '-', proper, loc ). +noun( 'ashford', '-', proper, loc ). +noun( 'ashington', '-', proper, loc ). +noun( 'ashton-in-makerfield', '-', proper, loc ). +noun( 'ashton-under-lyne', '-', proper, loc ). +noun( 'asian', 'asians', count, _ ). +noun( 'asiatic', 'asiatics', count, _ ). +noun( 'askern', '-', proper, loc ). +noun( 'aspull', '-', proper, loc ). +noun( 'aston', '-', proper, loc ). +noun( 'athenian', 'athenians', count, _ ). +noun( 'athens', '-', proper, loc ). +noun( 'atherstone', '-', proper, loc ). +noun( 'athlone', '-', proper, loc ). +noun( 'atlanta', '-', proper, loc ). +noun( 'atlantic', '-', proper, _ ). +noun( 'auckland', '-', proper, loc ). +noun( 'audley', '-', proper, loc ). +noun( 'audrey', '-', proper, per ). +noun( 'aug', '-', proper, _ ). +noun( 'augsburg', '-', proper, loc ). +noun( 'august', 'augusts', count, _ ). +noun( 'august', '-', proper, _ ). +noun( 'aussie', 'aussies', count, _ ). +noun( 'australia', '-', proper, loc ). +noun( 'australian', 'australians', count, _ ). +noun( 'austria', '-', proper, loc ). +noun( 'austrian', 'austrians', count, _ ). +noun( 'ave', '-', proper, _ ). +noun( 'aveley', '-', proper, loc ). +noun( 'avignon', '-', proper, loc ). +noun( 'avon', '-', proper, loc ). +noun( 'aycliffe', '-', proper, loc ). +noun( 'aylesbury', '-', proper, loc ). +noun( 'aylesford', '-', proper, loc ). +noun( 'ayr', '-', proper, loc ). +noun( 'b ed', '-', count, _ ). +noun( 'ba', '-', count, _ ). +noun( 'bbc', '-', count, _ ). +noun( 'bc', '-', proper, _ ). +noun( 'bma', '-', count, _ ). +noun( 'bmus', '-', count, _ ). +noun( 'bst', '-', proper, _ ). +noun( 'bsc', '-', count, _ ). +noun( 'bvm', '-', count, _ ). +noun( 'babs', '-', proper, per ). +noun( 'backworth', '-', proper, loc ). +noun( 'bacup', '-', proper, loc ). +noun( 'badajoz', '-', proper, loc ). +noun( 'badalona', '-', proper, loc ). +noun( 'baghdad', '-', proper, loc ). +noun( 'bahamas', '-', proper, loc ). +noun( 'bahamian', 'bahamians', count, _ ). +noun( 'bahasa', '-', mass, _ ). +noun( 'bahrain', '-', proper, loc ). +noun( 'bahraini', 'bahrainis', count, _ ). +noun( 'bailey', '-', proper, _ ). +noun( 'baku', '-', proper, loc ). +noun( 'baldock', '-', proper, loc ). +noun( 'baltimore', '-', proper, loc ). +noun( 'banbury', '-', proper, loc ). +noun( 'bandung', '-', proper, loc ). +noun( 'bangalore', '-', proper, loc ). +noun( 'bangkok', '-', proper, loc ). +noun( 'bangladesh', '-', proper, loc ). +noun( 'bangladeshi', 'bangladeshis', count, _ ). +noun( 'bangor', '-', proper, loc ). +noun( 'bannockburn', '-', proper, loc ). +noun( 'bantry', '-', proper, loc ). +noun( 'bantu', 'bantu', count, _ ). +noun( 'baptist', 'baptists', count, _ ). +noun( 'baracaldo', '-', proper, loc ). +noun( 'barbadian', 'barbadians', count, _ ). +noun( 'barbados', '-', proper, loc ). +noun( 'barbara', '-', proper, per ). +noun( 'barcelona', '-', proper, loc ). +noun( 'bargoed', '-', proper, loc ). +noun( 'bari', '-', proper, loc ). +noun( 'barking', '-', proper, loc ). +noun( 'barnard castle', '-', proper, loc ). +noun( 'barnet', '-', proper, loc ). +noun( 'barnoldswick', '-', proper, loc ). +noun( 'barnsley', '-', proper, loc ). +noun( 'barnstaple', '-', proper, loc ). +noun( 'barranquilla', '-', proper, loc ). +noun( 'barrhead', '-', proper, loc ). +noun( 'barrow-in-furness', '-', proper, loc ). +noun( 'barry', '-', proper, per ). +noun( 'bart', '-', proper, per ). +noun( 'bart', '-', proper, per ). +noun( 'bartholomew', '-', proper, per ). +noun( 'barton-upon-humber', '-', proper, loc ). +noun( 'basel', '-', proper, loc ). +noun( 'basil', '-', proper, per ). +noun( 'basildon', '-', proper, loc ). +noun( 'basingstoke', '-', proper, loc ). +noun( 'bass', '-', mass, _ ). +noun( 'bath', '-', proper, loc ). +noun( 'bath-chair', 'bath-chairs', count, _ ). +noun( 'bathgate', '-', proper, loc ). +noun( 'batley', '-', proper, loc ). +noun( 'beaconsfield', '-', proper, loc ). +noun( 'bearsden', '-', proper, loc ). +noun( 'beatrice', '-', proper, per ). +noun( 'beaujolais', '-', mass, _ ). +noun( 'beaumaris', '-', proper, loc ). +noun( 'bebington', '-', proper, loc ). +noun( 'beccles', '-', proper, loc ). +noun( 'beddau', '-', proper, loc ). +noun( 'bedford', '-', proper, loc ). +noun( 'bedfordshire', '-', proper, loc ). +noun( 'bedlington', '-', proper, loc ). +noun( 'bedouin', 'bedouin', count, _ ). +noun( 'beduin', 'beduin', count, _ ). +noun( 'bedwas', '-', proper, loc ). +noun( 'beirut', '-', proper, loc ). +noun( 'beith', '-', proper, loc ). +noun( 'belem', '-', proper, loc ). +noun( 'belfast', '-', proper, loc ). +noun( 'belgian', 'belgians', count, _ ). +noun( 'belgium', '-', proper, loc ). +noun( 'belgrade', '-', proper, loc ). +noun( 'belinda', '-', proper, per ). +noun( 'bella', '-', proper, per ). +noun( 'belle', '-', proper, per ). +noun( 'bellshill', '-', proper, loc ). +noun( 'belo horizonte', '-', proper, loc ). +noun( 'belper', '-', proper, loc ). +noun( 'ben', '-', proper, per ). +noun( 'benedictine', 'benedictines', both, _ ). +noun( 'bengali', 'bengalis', both, _ ). +noun( 'benin', '-', proper, loc ). +noun( 'beninese', 'beninese', count, _ ). +noun( 'benjamin', '-', proper, per ). +noun( 'benny', '-', proper, per ). +noun( 'benzedrine', 'benzedrines', count, _ ). +noun( 'beograd', '-', proper, loc ). +noun( 'bergamo', '-', proper, loc ). +noun( 'bergen', '-', proper, loc ). +noun( 'berkhamsted', '-', proper, loc ). +noun( 'berkshire', '-', proper, loc ). +noun( 'berlin', '-', proper, loc ). +noun( 'bermuda', '-', proper, loc ). +noun( 'bermudan', 'bermudans', count, _ ). +noun( 'bern', '-', proper, loc ). +noun( 'bernard', '-', proper, per ). +noun( 'bernie', '-', proper, per ). +noun( 'bert', '-', proper, per ). +noun( 'bertha', '-', proper, per ). +noun( 'bertie', '-', proper, per ). +noun( 'berwick-upon-tweed', '-', proper, loc ). +noun( 'beryl', '-', proper, per ). +noun( 'bess', '-', proper, per ). +noun( 'bessie', '-', proper, per ). +noun( 'bethune', '-', proper, loc ). +noun( 'betsy', '-', proper, per ). +noun( 'betty', '-', proper, per ). +noun( 'beverley', '-', proper, loc ). +noun( 'bewdley', '-', proper, loc ). +noun( 'bexhill', '-', proper, loc ). +noun( 'bexley', '-', proper, loc ). +noun( 'bhutan', '-', proper, loc ). +noun( 'bhutani', 'bhutanis', count, _ ). +noun( 'bible', 'bibles', count, _ ). +noun( 'bicester', '-', proper, loc ). +noun( 'biddulph', '-', proper, loc ). +noun( 'bideford', '-', proper, loc ). +noun( 'bielefeld', '-', proper, loc ). +noun( 'biggleswade', '-', proper, loc ). +noun( 'bilbao', '-', proper, loc ). +noun( 'bill', '-', proper, per ). +noun( 'billericay', '-', proper, loc ). +noun( 'billington', '-', proper, loc ). +noun( 'billy', '-', proper, per ). +noun( 'bingley', '-', proper, loc ). +noun( 'birkenhead', '-', proper, loc ). +noun( 'birstall', '-', proper, loc ). +noun( 'birtley', '-', proper, loc ). +noun( 'bishop auckland', '-', proper, loc ). +noun( 'bishop\'s cleeve', '-', proper, loc ). +noun( 'bishop\'s stortford', '-', proper, loc ). +noun( 'bishopbriggs', '-', proper, loc ). +noun( 'blackburn', '-', proper, loc ). +noun( 'blackhall', '-', proper, loc ). +noun( 'blackpool', '-', proper, loc ). +noun( 'blackshirt', 'blackshirts', count, _ ). +noun( 'blackwood', '-', proper, loc ). +noun( 'blaenau-ffestiniog', '-', proper, loc ). +noun( 'blaenavon', '-', proper, loc ). +noun( 'blaengwrach', '-', proper, loc ). +noun( 'blaina', '-', proper, loc ). +noun( 'blairgowrie', '-', proper, loc ). +noun( 'blantyre', '-', proper, loc ). +noun( 'bldg', '-', proper, _ ). +noun( 'bldgs', '-', proper, _ ). +noun( 'bletchley', '-', proper, loc ). +noun( 'blidworth', '-', proper, loc ). +noun( 'blighty', '-', count, _ ). +noun( 'blvd', '-', count, _ ). +noun( 'blyth', '-', proper, loc ). +noun( 'bo\'ness', '-', proper, loc ). +noun( 'bob', '-', proper, per ). +noun( 'bobby', '-', proper, per ). +noun( 'bochum', '-', proper, loc ). +noun( 'bodmin', '-', proper, loc ). +noun( 'boer', 'boers', count, _ ). +noun( 'bognor', '-', proper, loc ). +noun( 'bognor regis', '-', proper, loc ). +noun( 'bogota', '-', proper, loc ). +noun( 'boldon', '-', proper, loc ). +noun( 'bolivia', '-', proper, loc ). +noun( 'bolivian', 'bolivians', count, _ ). +noun( 'bollington', '-', proper, loc ). +noun( 'bologna', '-', proper, loc ). +noun( 'bolshevik', 'bolsheviks', count, _ ). +noun( 'bolsover', '-', proper, loc ). +noun( 'bolton', '-', proper, loc ). +noun( 'bolton-le-sands', '-', proper, loc ). +noun( 'bolzano', '-', proper, loc ). +noun( 'bombay', '-', proper, loc ). +noun( 'bonn', '-', proper, loc ). +noun( 'bonnybridge', '-', proper, loc ). +noun( 'bonnyrigg', '-', proper, loc ). +noun( 'bootle', '-', proper, loc ). +noun( 'bordeaux', '-', mass, _ ). +noun( 'bordeaux', '-', proper, loc ). +noun( 'borders', '-', proper, loc ). +noun( 'bordon', '-', proper, loc ). +noun( 'boris', '-', proper, per ). +noun( 'boston', '-', proper, loc ). +noun( 'botswana', '-', proper, loc ). +noun( 'bottrop', '-', proper, loc ). +noun( 'bourne', '-', proper, loc ). +noun( 'bournemouth', '-', proper, loc ). +noun( 'bowburn', '-', proper, loc ). +noun( 'boxing day', 'boxing days', count, _ ). +noun( 'boxing day', '-', proper, _ ). +noun( 'bracknell', '-', proper, loc ). +noun( 'bradford', '-', proper, loc ). +noun( 'bradford-on-avon', '-', proper, loc ). +noun( 'brahmin', 'brahmins', count, _ ). +noun( 'braintree', '-', proper, loc ). +noun( 'branderburgh', '-', proper, loc ). +noun( 'brasilia', '-', proper, loc ). +noun( 'bratislava', '-', proper, loc ). +noun( 'braunschweig', '-', proper, loc ). +noun( 'braunton', '-', proper, loc ). +noun( 'brazil', '-', proper, loc ). +noun( 'brazilian', 'brazilians', count, _ ). +noun( 'breaston', '-', proper, loc ). +noun( 'brecknock', '-', proper, loc ). +noun( 'breda', '-', proper, loc ). +noun( 'breedsall', '-', proper, loc ). +noun( 'bremen', '-', proper, loc ). +noun( 'bremerhaven', '-', proper, loc ). +noun( 'bren', 'brens', count, _ ). +noun( 'bren-gun', 'bren-guns', count, _ ). +noun( 'brenda', '-', proper, per ). +noun( 'brent', '-', proper, loc ). +noun( 'brentwood', '-', proper, loc ). +noun( 'brescia', '-', proper, loc ). +noun( 'brest', '-', proper, loc ). +noun( 'brian', '-', proper, per ). +noun( 'bricket wood', '-', proper, loc ). +noun( 'bridgend', '-', proper, loc ). +noun( 'bridget', '-', proper, per ). +noun( 'bridgnorth', '-', proper, loc ). +noun( 'bridgwater', '-', proper, loc ). +noun( 'bridlington', '-', proper, loc ). +noun( 'bridport', '-', proper, loc ). +noun( 'brig', '-', proper, per ). +noun( 'brigadier', 'brigadiers', count, _ ). +noun( 'brighouse', '-', proper, loc ). +noun( 'brightlingsea', '-', proper, loc ). +noun( 'brighton', '-', proper, loc ). +noun( 'brisbane', '-', proper, loc ). +noun( 'bristol', '-', proper, loc ). +noun( 'brit', 'brits', count, _ ). +noun( 'britain', '-', proper, loc ). +noun( 'britisher', 'britishers', count, _ ). +noun( 'briton', 'britons', count, _ ). +noun( 'brixham', '-', proper, loc ). +noun( 'brno', '-', proper, loc ). +noun( 'bromley', '-', proper, loc ). +noun( 'bromsgrove', '-', proper, loc ). +noun( 'bros', '-', proper, _ ). +noun( 'broughton', '-', proper, loc ). +noun( 'broxburn', '-', proper, loc ). +noun( 'bruce', '-', proper, per ). +noun( 'bruges', '-', proper, loc ). +noun( 'brunei', '-', proper, loc ). +noun( 'bruneian', 'bruneians', count, _ ). +noun( 'brunswick', '-', proper, loc ). +noun( 'brussels', '-', proper, loc ). +noun( 'bryan', '-', proper, per ). +noun( 'bt', '-', proper, per ). +noun( 'bucarest', '-', proper, loc ). +noun( 'buckhaven', '-', proper, loc ). +noun( 'buckie', '-', proper, loc ). +noun( 'buckingham', '-', proper, loc ). +noun( 'buckinghamshire', '-', proper, loc ). +noun( 'buckley', '-', proper, loc ). +noun( 'bucksburn', '-', proper, loc ). +noun( 'budapest', '-', proper, loc ). +noun( 'buddhism', '-', mass, _ ). +noun( 'buddhist', 'buddhists', count, _ ). +noun( 'buenos aires', '-', proper, loc ). +noun( 'buffalo', '-', proper, loc ). +noun( 'bulgaria', '-', proper, loc ). +noun( 'bulgarian', 'bulgarians', count, _ ). +noun( 'bulkington', '-', proper, loc ). +noun( 'bunsen', 'bunsens', count, _ ). +noun( 'burberry', 'burberries', count, _ ). +noun( 'burgess', '-', proper, loc ). +noun( 'burgos', '-', proper, loc ). +noun( 'burgundy', '-', mass, _ ). +noun( 'burley', '-', proper, loc ). +noun( 'burma', '-', proper, loc ). +noun( 'burmese', 'burmese', both, _ ). +noun( 'burnham-on-sea', '-', proper, loc ). +noun( 'burnley', '-', proper, loc ). +noun( 'burntisland', '-', proper, loc ). +noun( 'burntwood', '-', proper, loc ). +noun( 'burry port', '-', proper, loc ). +noun( 'burscough', '-', proper, loc ). +noun( 'burton-upon-trent', '-', proper, loc ). +noun( 'burundi', '-', proper, loc ). +noun( 'burundian', 'burundians', count, _ ). +noun( 'bury', '-', proper, loc ). +noun( 'bury st. edmunds', '-', proper, loc ). +noun( 'bushman', 'bushmen', count, _ ). +noun( 'buxton', '-', proper, loc ). +noun( 'c of e', '-', count, _ ). +noun( 'c-in-c', '-', proper, per ). +noun( 'cbi', '-', count, _ ). +noun( 'cd', '-', count, _ ). +noun( 'cia', '-', count, _ ). +noun( 'cid', '-', count, _ ). +noun( 'co', '-', count, _ ). +noun( 'cod', '-', proper, _ ). +noun( 'cadiz', '-', proper, loc ). +noun( 'caen', '-', proper, loc ). +noun( 'caerleon', '-', proper, loc ). +noun( 'caernarfon', '-', proper, loc ). +noun( 'caerphilly', '-', proper, loc ). +noun( 'caesar', 'caesars', count, _ ). +noun( 'cagliari', '-', proper, loc ). +noun( 'cairo', '-', proper, loc ). +noun( 'calcutta', '-', proper, loc ). +noun( 'caldicot', '-', proper, loc ). +noun( 'cali', '-', proper, loc ). +noun( 'california', '-', proper, loc ). +noun( 'californian', 'californians', count, _ ). +noun( 'calne', '-', proper, loc ). +noun( 'calor', '-', proper, _ ). +noun( 'calvary', 'calvaries', count, _ ). +noun( 'calverton', '-', proper, loc ). +noun( 'calvinism', '-', mass, _ ). +noun( 'calvinist', 'calvinists', count, _ ). +noun( 'cambodia', '-', proper, loc ). +noun( 'cambodian', 'cambodians', count, _ ). +noun( 'cambourne', '-', proper, loc ). +noun( 'cambridge', '-', proper, loc ). +noun( 'cambridgeshire', '-', proper, loc ). +noun( 'cambuslang', '-', proper, loc ). +noun( 'camden', '-', proper, loc ). +noun( 'camembert', 'camemberts', count, _ ). +noun( 'cameroon', '-', proper, loc ). +noun( 'cameroonian', 'cameroonians', count, _ ). +noun( 'campbeltown', '-', proper, loc ). +noun( 'canada', '-', proper, loc ). +noun( 'canadian', 'canadians', count, _ ). +noun( 'canberra', '-', proper, loc ). +noun( 'cancer', '-', proper, _ ). +noun( 'cannes', '-', proper, loc ). +noun( 'cannock', '-', proper, loc ). +noun( 'cantab', '-', proper, _ ). +noun( 'canterbury', '-', proper, loc ). +noun( 'canton', '-', proper, loc ). +noun( 'canuck', 'canucks', count, _ ). +noun( 'canvey', '-', proper, loc ). +noun( 'canvey island', '-', proper, loc ). +noun( 'cape town', '-', proper, loc ). +noun( 'capitol', 'capitols', count, _ ). +noun( 'capricorn', '-', proper, _ ). +noun( 'capt', '-', proper, per ). +noun( 'caracas', '-', proper, loc ). +noun( 'cardenden', '-', proper, loc ). +noun( 'cardiff', '-', proper, loc ). +noun( 'cardigan', '-', proper, loc ). +noun( 'carl', '-', proper, per ). +noun( 'carlisle', '-', proper, loc ). +noun( 'carlow', '-', proper, loc ). +noun( 'carluke', '-', proper, loc ). +noun( 'carmarthen', '-', proper, loc ). +noun( 'carmelite', 'carmelites', count, _ ). +noun( 'carnforth', '-', proper, loc ). +noun( 'carnoustie', '-', proper, loc ). +noun( 'carol', '-', proper, per ). +noun( 'carole', '-', proper, per ). +noun( 'carolina', '-', proper, loc ). +noun( 'caroline', '-', proper, per ). +noun( 'carolyn', '-', proper, per ). +noun( 'carrie', '-', proper, per ). +noun( 'carron', '-', proper, loc ). +noun( 'cartagena', '-', proper, loc ). +noun( 'casablanca', '-', proper, loc ). +noun( 'castleford', '-', proper, loc ). +noun( 'catalan', '-', mass, _ ). +noun( 'catania', '-', proper, loc ). +noun( 'cath', '-', proper, per ). +noun( 'catherine', '-', proper, per ). +noun( 'catholic', 'catholics', count, _ ). +noun( 'catholicism', '-', mass, _ ). +noun( 'cathy', '-', proper, per ). +noun( 'caucasian', 'caucasians', count, _ ). +noun( 'cavan', '-', proper, loc ). +noun( 'cdr', '-', proper, per ). +noun( 'cdre', '-', proper, per ). +noun( 'cecil', '-', proper, per ). +noun( 'cecilia', '-', proper, per ). +noun( 'cecily', '-', proper, per ). +noun( 'cedric', '-', proper, per ). +noun( 'cefn-mawr', '-', proper, loc ). +noun( 'celia', '-', proper, per ). +noun( 'celt', 'celts', count, _ ). +noun( 'celtic', 'celtics', count, _ ). +noun( 'ceylon', '-', proper, loc ). +noun( 'chad', '-', proper, loc ). +noun( 'chadian', 'chadians', count, _ ). +noun( 'chalfont', '-', proper, loc ). +noun( 'chalfont st giles', '-', proper, loc ). +noun( 'chalfont st peter', '-', proper, loc ). +noun( 'changchun', '-', proper, loc ). +noun( 'changsha', '-', proper, loc ). +noun( 'chard', '-', proper, loc ). +noun( 'charles', '-', proper, per ). +noun( 'charleston', 'charlestons', count, _ ). +noun( 'charlie', '-', proper, per ). +noun( 'charlotte', '-', proper, per ). +noun( 'chartism', '-', mass, _ ). +noun( 'chartist', 'chartists', count, _ ). +noun( 'charybdis', '-', proper, _ ). +noun( 'chas', '-', proper, per ). +noun( 'chatham', '-', proper, loc ). +noun( 'cheadle', '-', proper, loc ). +noun( 'cheddar', '-', mass, _ ). +noun( 'chelmsford', '-', proper, loc ). +noun( 'chelsea', '-', proper, loc ). +noun( 'cheltenham', '-', proper, loc ). +noun( 'chelyabinsk', '-', proper, loc ). +noun( 'chengchow', '-', proper, loc ). +noun( 'chengtu', '-', proper, loc ). +noun( 'chepstow', '-', proper, loc ). +noun( 'chesham', '-', proper, loc ). +noun( 'cheshire', '-', proper, loc ). +noun( 'chester', '-', proper, loc ). +noun( 'chester-le-street', '-', proper, loc ). +noun( 'chesterfield', '-', proper, loc ). +noun( 'chianti', '-', mass, _ ). +noun( 'chicago', '-', proper, loc ). +noun( 'chichester', '-', proper, loc ). +noun( 'chile', '-', proper, loc ). +noun( 'chilean', 'chileans', count, _ ). +noun( 'china', '-', proper, loc ). +noun( 'chinchow', '-', proper, loc ). +noun( 'chinese', 'chinese', both, _ ). +noun( 'chippendale', 'chippendales', count, _ ). +noun( 'chippenham', '-', proper, loc ). +noun( 'chloe', '-', proper, per ). +noun( 'chopwell', '-', proper, loc ). +noun( 'chorley', '-', proper, loc ). +noun( 'chris', '-', proper, per ). +noun( 'chrissie', '-', proper, per ). +noun( 'chrissy', '-', proper, per ). +noun( 'christ', '-', proper, _ ). +noun( 'christchurch', '-', proper, loc ). +noun( 'christendom', 'christendoms', count, _ ). +noun( 'christian', 'christians', count, _ ). +noun( 'christian', '-', proper, per ). +noun( 'christianity', '-', mass, _ ). +noun( 'christina', '-', proper, per ). +noun( 'christine', '-', proper, per ). +noun( 'christmas', 'christmases', count, _ ). +noun( 'christmas', '-', proper, _ ). +noun( 'christmas-box', 'christmas-boxes', count, _ ). +noun( 'christmas-tree', 'christmas-trees', count, _ ). +noun( 'christmastide', 'christmastides', count, _ ). +noun( 'christmastime', 'christmastimes', count, _ ). +noun( 'christopher', '-', proper, per ). +noun( 'chungking', '-', proper, loc ). +noun( 'cincinnati', '-', proper, loc ). +noun( 'cinderella', 'cinderellas', count, _ ). +noun( 'cinderford', '-', proper, loc ). +noun( 'cirencester', '-', proper, loc ). +noun( 'civvy street', '-', proper, _ ). +noun( 'clackmannon', '-', proper, loc ). +noun( 'clacton', '-', proper, loc ). +noun( 'clare', '-', proper, per ). +noun( 'clarkston', '-', proper, loc ). +noun( 'clarrie', '-', proper, per ). +noun( 'classics', 'classics', mass, _ ). +noun( 'claud', '-', proper, per ). +noun( 'claude', '-', proper, per ). +noun( 'clay cross', '-', proper, loc ). +noun( 'cleator moor', '-', proper, loc ). +noun( 'cleethorpes', '-', proper, loc ). +noun( 'clem', '-', proper, per ). +noun( 'clement', '-', proper, per ). +noun( 'clermont-ferrand', '-', proper, loc ). +noun( 'clevedon', '-', proper, loc ). +noun( 'cleveland', '-', proper, loc ). +noun( 'cliff', '-', proper, per ). +noun( 'clifford', '-', proper, per ). +noun( 'clitheroe', '-', proper, loc ). +noun( 'clive', '-', proper, per ). +noun( 'clowne', '-', proper, loc ). +noun( 'clwyd', '-', proper, loc ). +noun( 'clydach', '-', proper, loc ). +noun( 'clydebank', '-', proper, loc ). +noun( 'co', '-', count, _ ). +noun( 'co-op', '-', count, _ ). +noun( 'coalville', '-', proper, loc ). +noun( 'coatbridge', '-', proper, loc ). +noun( 'cobham', '-', proper, loc ). +noun( 'coca-cola', 'coca-colas', both, _ ). +noun( 'cockermouth', '-', proper, loc ). +noun( 'codsall', '-', proper, loc ). +noun( 'coimbatore', '-', proper, loc ). +noun( 'col', '-', proper, per ). +noun( 'colchester', '-', proper, loc ). +noun( 'coleshill', '-', proper, loc ). +noun( 'colin', '-', proper, per ). +noun( 'coll', '-', proper, _ ). +noun( 'colne', '-', proper, loc ). +noun( 'cologne', '-', proper, loc ). +noun( 'colombia', '-', proper, loc ). +noun( 'colombian', 'colombians', count, _ ). +noun( 'colombo', '-', proper, loc ). +noun( 'colorado', '-', proper, loc ). +noun( 'columbia', '-', proper, loc ). +noun( 'columbus', '-', proper, loc ). +noun( 'colwyn bay', '-', proper, loc ). +noun( 'confucian', 'confucians', count, _ ). +noun( 'congleton', '-', proper, loc ). +noun( 'congo', '-', proper, loc ). +noun( 'congolese', 'congolese', count, _ ). +noun( 'connah\'s quay', '-', proper, loc ). +noun( 'connaught', '-', proper, loc ). +noun( 'connecticut', '-', proper, loc ). +noun( 'connie', '-', proper, per ). +noun( 'cons', '-', proper, _ ). +noun( 'consett', '-', proper, loc ). +noun( 'constance', '-', proper, per ). +noun( 'conwy', '-', proper, loc ). +noun( 'cookham', '-', proper, loc ). +noun( 'copenhagen', '-', proper, loc ). +noun( 'coppull', '-', proper, loc ). +noun( 'copt', 'copts', count, _ ). +noun( 'coptic', 'coptics', count, _ ). +noun( 'corby', '-', proper, loc ). +noun( 'cordoba', '-', proper, loc ). +noun( 'corinthian', 'corinthians', count, _ ). +noun( 'cork', '-', proper, loc ). +noun( 'cornwall', '-', proper, loc ). +noun( 'corp', '-', proper, _ ). +noun( 'corps diplomatique', '-', count, _ ). +noun( 'corsham', '-', proper, loc ). +noun( 'corunna', '-', proper, loc ). +noun( 'cosenza', '-', proper, loc ). +noun( 'costa rica', '-', proper, loc ). +noun( 'costa rican', 'costa ricans', count, _ ). +noun( 'coventry', '-', proper, loc ). +noun( 'cowdenbeath', '-', proper, loc ). +noun( 'cowes', '-', proper, loc ). +noun( 'cpl', '-', proper, per ). +noun( 'cramlington', '-', proper, loc ). +noun( 'crawley', '-', proper, loc ). +noun( 'creole', 'creoles', both, _ ). +noun( 'cres', '-', proper, _ ). +noun( 'creswell', '-', proper, loc ). +noun( 'crewe', '-', proper, loc ). +noun( 'crieff', '-', proper, loc ). +noun( 'croesus', '-', proper, per ). +noun( 'cromer', '-', proper, loc ). +noun( 'crook', '-', proper, loc ). +noun( 'crosby', '-', proper, loc ). +noun( 'crowborough', '-', proper, loc ). +noun( 'crowthorne', '-', proper, loc ). +noun( 'croydon', '-', proper, loc ). +noun( 'cuba', '-', proper, loc ). +noun( 'cuban', 'cubans', count, _ ). +noun( 'cudworth', '-', proper, loc ). +noun( 'cuffley', '-', proper, loc ). +noun( 'culcheth', '-', proper, loc ). +noun( 'cumberland', '-', proper, loc ). +noun( 'cumbernauld', '-', proper, loc ). +noun( 'cumbria', '-', proper, loc ). +noun( 'cumnock', '-', proper, loc ). +noun( 'cupar', '-', proper, loc ). +noun( 'cupid', '-', proper, per ). +noun( 'curitiba', '-', proper, loc ). +noun( 'currie', '-', proper, loc ). +noun( 'cwmbran', '-', proper, loc ). +noun( 'cynthia', '-', proper, per ). +noun( 'cypriot', 'cypriots', count, _ ). +noun( 'cyprus', '-', proper, loc ). +noun( 'cyril', '-', proper, per ). +noun( 'czech', 'czechs', both, _ ). +noun( 'czechoslovak', 'czechoslovaks', count, _ ). +noun( 'czechoslovakia', '-', proper, loc ). +noun( 'czechoslovakian', 'czechoslovakians', count, _ ). +noun( 'd-day', '-', proper, _ ). +noun( 'ddt', '-', mass, _ ). +noun( 'des', '-', count, _ ). +noun( 'dg', '-', proper, per ). +noun( 'diy', '-', mass, _ ). +noun( 'dj', '-', count, _ ). +noun( '-', 'djs', count, _ ). +noun( 'dlitt', '-', count, _ ). +noun( 'dm', 'dm', count, _ ). +noun( 'dna', '-', mass, _ ). +noun( 'dphil', '-', count, _ ). +noun( 'dss', '-', count, _ ). +noun( 'dsc', '-', count, _ ). +noun( 'dti', '-', count, _ ). +noun( '-', 'dts', count, _ ). +noun( 'dacca', '-', proper, loc ). +noun( 'dail eireann', '-', count, _ ). +noun( 'daisy', '-', proper, per ). +noun( 'dakar', '-', proper, loc ). +noun( 'dakota', '-', proper, loc ). +noun( 'dalkeith', '-', proper, loc ). +noun( 'dallas', '-', proper, loc ). +noun( 'dalry', '-', proper, loc ). +noun( 'dalton', '-', proper, loc ). +noun( 'damascus', '-', proper, loc ). +noun( 'damocles', '-', proper, per ). +noun( 'dan', '-', proper, per ). +noun( 'dane', 'danes', count, _ ). +noun( 'daniel', 'daniels', count, _ ). +noun( 'daniel', '-', proper, per ). +noun( 'danish', '-', mass, _ ). +noun( 'danny', '-', proper, per ). +noun( 'daphne', '-', proper, per ). +noun( 'darby', '-', proper, per ). +noun( 'darenth', '-', proper, loc ). +noun( 'darfield', '-', proper, loc ). +noun( 'darkey', 'darkeys', count, _ ). +noun( 'darkie', 'darkies', count, _ ). +noun( 'darky', 'darkies', count, _ ). +noun( 'darlington', '-', proper, loc ). +noun( 'darmstadt', '-', proper, loc ). +noun( 'dartford', '-', proper, loc ). +noun( 'dartmouth', '-', proper, loc ). +noun( 'darwen', '-', proper, loc ). +noun( 'dave', '-', proper, per ). +noun( 'daventry', '-', proper, loc ). +noun( 'davey', '-', proper, per ). +noun( 'david', '-', proper, per ). +noun( 'dawley', '-', proper, loc ). +noun( 'dawlish', '-', proper, loc ). +noun( 'dawn', '-', proper, per ). +noun( 'dayton', '-', proper, loc ). +noun( 'deal', '-', proper, loc ). +noun( 'dean', '-', proper, per ). +noun( 'debbie', '-', proper, per ). +noun( 'debby', '-', proper, per ). +noun( 'deborah', '-', proper, per ). +noun( 'dec', '-', proper, _ ). +noun( 'decalogue', 'decalogues', count, _ ). +noun( 'december', 'decembers', count, _ ). +noun( 'december', '-', proper, _ ). +noun( 'deirdre', '-', proper, per ). +noun( 'delaware', '-', proper, loc ). +noun( 'delhi', '-', proper, loc ). +noun( 'denain', '-', proper, loc ). +noun( 'denbigh', '-', proper, loc ). +noun( 'denis', '-', proper, per ). +noun( 'denise', '-', proper, per ). +noun( 'denmark', '-', proper, loc ). +noun( 'dennis', '-', proper, per ). +noun( 'denny', '-', proper, loc ). +noun( 'denver', '-', proper, loc ). +noun( 'dept', '-', proper, _ ). +noun( 'derby', '-', proper, loc ). +noun( 'derbyshire', '-', proper, loc ). +noun( 'dereham', '-', proper, loc ). +noun( 'derek', '-', proper, per ). +noun( 'des', '-', proper, per ). +noun( 'desmond', '-', proper, per ). +noun( 'dessau', '-', proper, loc ). +noun( 'detroit', '-', proper, loc ). +noun( 'deutschmark', 'deutschmarks', count, _ ). +noun( 'devizes', '-', proper, loc ). +noun( 'devon', '-', proper, loc ). +noun( 'dewsbury', '-', proper, loc ). +noun( 'di', '-', proper, per ). +noun( 'diana', '-', proper, per ). +noun( 'diaspora', 'diasporas', count, _ ). +noun( 'dick', '-', proper, per ). +noun( 'dicky', '-', proper, per ). +noun( 'dictaphone', 'dictaphones', count, _ ). +noun( 'didcot', '-', proper, loc ). +noun( 'dijon', '-', proper, loc ). +noun( 'dingle', '-', proper, loc ). +noun( 'dinnington', '-', proper, loc ). +noun( 'dip', '-', count, _ ). +noun( 'dip ed', '-', count, _ ). +noun( 'dir', '-', count, _ ). +noun( 'dives', '-', proper, per ). +noun( 'djibouti', '-', proper, loc ). +noun( 'djiboutian', 'djiboutians', count, _ ). +noun( 'dnepropetrovsk', '-', proper, loc ). +noun( 'doe', '-', count, _ ). +noun( 'dolly', '-', proper, per ). +noun( 'domesday', '-', proper, _ ). +noun( 'dominic', '-', proper, per ). +noun( 'dominica', '-', proper, loc ). +noun( 'dominican', 'dominicans', count, _ ). +noun( 'don', '-', proper, per ). +noun( 'donald', '-', proper, per ). +noun( 'doncaster', '-', proper, loc ). +noun( 'donegal', '-', proper, loc ). +noun( 'donetsk', '-', proper, loc ). +noun( 'doomsday', '-', proper, _ ). +noun( 'dora', '-', proper, per ). +noun( 'dorchester', '-', proper, loc ). +noun( 'dordrecht', '-', proper, loc ). +noun( 'doreen', '-', proper, per ). +noun( 'doris', '-', proper, per ). +noun( 'dorking', '-', proper, loc ). +noun( 'dorothy', '-', proper, per ). +noun( 'dorset', '-', proper, loc ). +noun( 'dortmund', '-', proper, loc ). +noun( 'douai', '-', proper, loc ). +noun( 'doug', '-', proper, per ). +noun( 'douglas', '-', proper, per ). +noun( 'dover', '-', proper, loc ). +noun( 'down', '-', proper, loc ). +noun( 'downing street', '-', proper, _ ). +noun( 'dr', '-', proper, per ). +noun( 'drayton', '-', proper, loc ). +noun( 'dresden', '-', proper, loc ). +noun( 'driffield', '-', proper, loc ). +noun( 'drogheda', '-', proper, loc ). +noun( 'droitwich', '-', proper, loc ). +noun( 'dronfield', '-', proper, loc ). +noun( 'druid', 'druids', count, _ ). +noun( 'dublin', '-', proper, loc ). +noun( 'dubliner', 'dubliners', count, _ ). +noun( 'duce', '-', count, _ ). +noun( 'dudley', '-', proper, loc ). +noun( 'duisburg', '-', proper, loc ). +noun( 'dukinfield', '-', proper, loc ). +noun( 'dumbarton', '-', proper, loc ). +noun( 'dumfries', '-', proper, loc ). +noun( 'dun laoghaire', '-', proper, loc ). +noun( 'duncan', '-', proper, per ). +noun( 'dundalk', '-', proper, loc ). +noun( 'dundee', '-', proper, loc ). +noun( 'dunfermline', '-', proper, loc ). +noun( 'dunkirk', '-', proper, loc ). +noun( 'dunoon', '-', proper, loc ). +noun( 'dunstable', '-', proper, loc ). +noun( 'durban', '-', proper, loc ). +noun( 'durham', '-', proper, loc ). +noun( 'durrington', '-', proper, loc ). +noun( 'dursley', '-', proper, loc ). +noun( 'dusseldorf', '-', proper, loc ). +noun( 'dutch', '-', mass, _ ). +noun( 'dutchman', 'dutchmen', count, _ ). +noun( 'dyfed', '-', proper, loc ). +noun( 'ec', '-', count, _ ). +noun( 'edp', '-', mass, _ ). +noun( 'eec', '-', count, _ ). +noun( 'eeg', '-', count, _ ). +noun( 'efta', '-', count, _ ). +noun( 'esp', '-', mass, _ ). +noun( 'eaglescliffe', '-', proper, loc ). +noun( 'ealing', '-', proper, loc ). +noun( 'earl shilton', '-', proper, loc ). +noun( 'easington', '-', proper, loc ). +noun( 'east dereham', '-', proper, loc ). +noun( 'east grinstead', '-', proper, loc ). +noun( 'east kilbride', '-', proper, loc ). +noun( 'east retford', '-', proper, loc ). +noun( 'eastbourne', '-', proper, loc ). +noun( 'easter', 'easters', count, _ ). +noun( 'easter', '-', proper, _ ). +noun( 'eastleigh', '-', proper, loc ). +noun( 'ebbw vale', '-', proper, loc ). +noun( 'eccles', '-', proper, loc ). +noun( 'ecuador', '-', proper, loc ). +noun( 'ecuadorian', 'ecuadorians', count, _ ). +noun( 'ed', '-', proper, per ). +noun( 'eddie', '-', proper, per ). +noun( 'eddy', '-', proper, per ). +noun( 'eden', '-', proper, _ ). +noun( 'edenbridge', '-', proper, loc ). +noun( 'edgar', '-', proper, per ). +noun( 'edinburgh', '-', proper, loc ). +noun( 'edith', '-', proper, per ). +noun( 'edmund', '-', proper, per ). +noun( 'edward', '-', proper, per ). +noun( 'edwardian', 'edwardians', count, _ ). +noun( 'egremont', '-', proper, loc ). +noun( 'egypt', '-', proper, loc ). +noun( 'egyptian', 'egyptians', count, _ ). +noun( 'eiche', '-', proper, loc ). +noun( 'eileen', '-', proper, per ). +noun( 'eindhoven', '-', proper, loc ). +noun( 'el dorado', '-', count, _ ). +noun( 'el salvador', '-', proper, loc ). +noun( 'elaine', '-', proper, per ). +noun( 'elastoplast', '-', mass, _ ). +noun( 'elderslie', '-', proper, loc ). +noun( 'eleanor', '-', proper, per ). +noun( 'elgin', '-', proper, loc ). +noun( 'eliza', '-', proper, per ). +noun( 'elizabeth', '-', proper, per ). +noun( 'elizabethan', 'elizabethans', count, _ ). +noun( 'elland', '-', proper, loc ). +noun( 'ellen', '-', proper, per ). +noun( 'ellesmere', '-', proper, loc ). +noun( 'ellesmere port', '-', proper, loc ). +noun( 'ellie', '-', proper, per ). +noun( 'elloughton', '-', proper, loc ). +noun( 'elsie', '-', proper, per ). +noun( 'elstree', '-', proper, loc ). +noun( 'ely', '-', proper, loc ). +noun( 'elysium', '-', proper, _ ). +noun( 'emily', '-', proper, per ). +noun( 'emma', '-', proper, per ). +noun( 'emsworth', '-', proper, loc ). +noun( 'enfield', '-', proper, loc ). +noun( 'england', '-', proper, loc ). +noun( 'english', '-', mass, _ ). +noun( 'englishman', 'englishmen', count, _ ). +noun( 'englishwoman', 'englishwomen', count, _ ). +noun( 'enoch', '-', proper, per ). +noun( 'enschede', '-', proper, loc ). +noun( 'epiphany', '-', proper, _ ). +noun( 'epping', '-', proper, loc ). +noun( 'epsom', '-', proper, loc ). +noun( 'erfurt', '-', proper, loc ). +noun( 'eric', '-', proper, per ). +noun( 'erica', '-', proper, per ). +noun( 'erin', '-', proper, loc ). +noun( 'eritrea', '-', proper, loc ). +noun( 'eritrean', 'eritreans', count, _ ). +noun( 'erlangen', '-', proper, loc ). +noun( 'ernest', '-', proper, per ). +noun( 'ernie', '-', proper, per ). +noun( 'erse', '-', mass, _ ). +noun( 'esfahan', '-', proper, loc ). +noun( 'eskimo', 'eskimos', count, _ ). +noun( 'esperanto', '-', mass, _ ). +noun( 'esq', '-', proper, per ). +noun( 'esquire', 'esquires', count, _ ). +noun( 'essen', '-', proper, loc ). +noun( 'essex', '-', proper, loc ). +noun( 'esther', '-', proper, per ). +noun( 'ethel', '-', proper, per ). +noun( 'ethiopia', '-', proper, loc ). +noun( 'ethiopian', 'ethiopians', count, _ ). +noun( 'eucharist', 'eucharists', count, _ ). +noun( 'eugene', '-', proper, per ). +noun( 'eunice', '-', proper, per ). +noun( 'eurasia', '-', proper, loc ). +noun( 'eurasian', 'eurasians', count, _ ). +noun( 'eurodollar', 'eurodollars', count, _ ). +noun( 'europe', '-', proper, loc ). +noun( 'european', 'europeans', count, _ ). +noun( 'eurovision', '-', proper, _ ). +noun( 'eva', '-', proper, per ). +noun( 'eve', '-', proper, per ). +noun( 'evelyn', '-', proper, per ). +noun( 'evesham', '-', proper, loc ). +noun( 'ewell', '-', proper, loc ). +noun( 'excellency', 'excellencies', count, _ ). +noun( 'exeter', '-', proper, loc ). +noun( 'exmouth', '-', proper, loc ). +noun( 'fa', '-', count, _ ). +noun( 'fao', '-', count, _ ). +noun( 'fbi', '-', count, _ ). +noun( 'fm', '-', mass, _ ). +noun( 'fo', '-', count, _ ). +noun( 'frs', '-', count, _ ). +noun( 'fabian', 'fabians', count, _ ). +noun( 'falkirk', '-', proper, loc ). +noun( 'falmouth', '-', proper, loc ). +noun( 'fanny', '-', proper, per ). +noun( 'farnham', '-', proper, loc ). +noun( 'farnworth', '-', proper, loc ). +noun( 'farsi', '-', mass, _ ). +noun( 'fauldhouse', '-', proper, loc ). +noun( 'faversham', '-', proper, loc ). +noun( 'fawley', '-', proper, loc ). +noun( 'featherstone', '-', proper, loc ). +noun( 'feb', '-', proper, _ ). +noun( 'february', 'februaries', count, _ ). +noun( 'february', '-', proper, _ ). +noun( 'fed', '-', count, _ ). +noun( 'felicity', '-', proper, per ). +noun( 'felix', '-', proper, per ). +noun( 'felixstowe', '-', proper, loc ). +noun( 'fermanagh', '-', proper, loc ). +noun( 'ferrara', '-', proper, loc ). +noun( 'ferryhill', '-', proper, loc ). +noun( 'fife', '-', proper, loc ). +noun( 'fiji', '-', proper, loc ). +noun( 'fijian', 'fijians', count, _ ). +noun( 'filipino', 'filipinos', count, _ ). +noun( 'finland', '-', proper, loc ). +noun( 'finn', 'finns', count, _ ). +noun( 'finnish', '-', mass, _ ). +noun( 'fiona', '-', proper, per ). +noun( 'firenze', '-', proper, loc ). +noun( 'fleet', '-', proper, loc ). +noun( 'fleet street', '-', proper, _ ). +noun( 'fleetwood', '-', proper, loc ). +noun( 'flemish', '-', mass, _ ). +noun( 'flint', '-', proper, loc ). +noun( 'flora', '-', proper, per ). +noun( 'florence', '-', proper, per ). +noun( 'florida', '-', proper, loc ). +noun( 'florrie', '-', proper, per ). +noun( 'foggia', '-', proper, loc ). +noun( 'folkestone', '-', proper, loc ). +noun( 'foochow', '-', proper, loc ). +noun( 'forfar', '-', proper, loc ). +noun( 'forli', '-', proper, loc ). +noun( 'formby', '-', proper, loc ). +noun( 'formica', '-', mass, _ ). +noun( 'formosa', '-', proper, loc ). +noun( 'fort lauderdale', '-', proper, loc ). +noun( 'fort william', '-', proper, loc ). +noun( 'fort worth', '-', proper, loc ). +noun( 'fortaleza', '-', proper, loc ). +noun( 'fowey', '-', proper, loc ). +noun( 'fr', '-', proper, per ). +noun( 'fr\"aulein', 'fr\"auleins', count, _ ). +noun( 'frampton cotterell', '-', proper, loc ). +noun( 'fran', '-', proper, per ). +noun( 'france', '-', proper, loc ). +noun( 'frances', '-', proper, per ). +noun( 'francis', '-', proper, per ). +noun( 'franciscan', 'franciscans', count, _ ). +noun( 'frank', 'franks', count, _ ). +noun( 'frank', '-', proper, per ). +noun( 'frankfurt', '-', proper, loc ). +noun( 'frankie', '-', proper, per ). +noun( 'fraserburgh', '-', proper, loc ). +noun( 'frau', 'frauen', count, _ ). +noun( 'freckleton', '-', proper, loc ). +noun( 'fred', '-', proper, per ). +noun( 'freda', '-', proper, per ). +noun( 'freddie', '-', proper, per ). +noun( 'freddy', '-', proper, per ). +noun( 'frederick', '-', proper, per ). +noun( 'frederiksberg', '-', proper, loc ). +noun( 'freemason', 'freemasons', count, _ ). +noun( 'freemasonry', '-', mass, _ ). +noun( 'freiburg', '-', proper, loc ). +noun( 'french', '-', mass, _ ). +noun( 'frenchman', 'frenchmen', count, _ ). +noun( 'frenchwoman', 'frenchwomen', count, _ ). +noun( 'freshwater', '-', proper, loc ). +noun( 'fri', '-', proper, _ ). +noun( 'friday', 'fridays', count, _ ). +noun( 'friday', '-', proper, _ ). +noun( 'frinton', '-', proper, loc ). +noun( 'frodsham', '-', proper, loc ). +noun( 'frome', '-', proper, loc ). +noun( 'furth', '-', proper, loc ). +noun( 'fushun', '-', proper, loc ). +noun( 'g-man', 'g-men', count, _ ). +noun( 'gatt', '-', count, _ ). +noun( 'gb', '-', proper, _ ). +noun( 'gcse', '-', count, _ ). +noun( '-', 'gcses', count, _ ). +noun( 'ghq', '-', proper, _ ). +noun( 'gi', '-', count, _ ). +noun( '-', 'gis', count, _ ). +noun( 'gmt', '-', proper, _ ). +noun( 'gnp', '-', count, _ ). +noun( 'gp', '-', count, _ ). +noun( '-', 'gp\'s', count, _ ). +noun( 'gabon', '-', proper, loc ). +noun( 'gabonese', 'gabonese', count, _ ). +noun( 'gael', 'gaels', count, _ ). +noun( 'gaelic', 'gaelics', count, _ ). +noun( 'gainsborough', 'gainsboroughs', count, _ ). +noun( 'gainsborough', '-', proper, loc ). +noun( 'galashiels', '-', proper, loc ). +noun( 'galloway', '-', proper, loc ). +noun( 'gallup', '-', proper, _ ). +noun( 'galway', '-', proper, loc ). +noun( 'gambia', '-', proper, loc ). +noun( 'gambian', 'gambians', count, _ ). +noun( 'gareth', '-', proper, per ). +noun( 'garforth', '-', proper, loc ). +noun( 'garrowhill', '-', proper, loc ). +noun( 'gary', '-', proper, per ). +noun( 'gateshead', '-', proper, loc ). +noun( 'gaul', 'gauls', count, _ ). +noun( 'gavin', '-', proper, per ). +noun( 'gdansk', '-', proper, loc ). +noun( 'gdn', '-', proper, _ ). +noun( 'gdns', '-', proper, _ ). +noun( 'geiger', 'geigers', count, _ ). +noun( 'gelligaer', '-', proper, loc ). +noun( 'gelsenkirchen', '-', proper, loc ). +noun( 'gemini', '-', proper, _ ). +noun( 'gen', '-', proper, per ). +noun( 'gene', '-', proper, per ). +noun( 'geneva', '-', proper, loc ). +noun( 'genoa', '-', proper, loc ). +noun( 'genova', '-', proper, loc ). +noun( 'geoff', '-', proper, per ). +noun( 'geoffrey', '-', proper, per ). +noun( 'george', '-', proper, per ). +noun( 'georgia', '-', proper, loc ). +noun( 'georgian', 'georgians', count, _ ). +noun( 'georgie', '-', proper, per ). +noun( 'gerald', '-', proper, per ). +noun( 'geraldine', '-', proper, per ). +noun( 'gerard', '-', proper, per ). +noun( 'german', 'germans', both, _ ). +noun( 'germany', '-', proper, loc ). +noun( 'gerry', '-', proper, per ). +noun( 'gertie', '-', proper, per ). +noun( 'gertrude', '-', proper, per ). +noun( 'gestapo', 'gestapos', count, _ ). +noun( 'ghana', '-', proper, loc ). +noun( 'ghanaian', 'ghanaians', count, _ ). +noun( 'ghent', '-', proper, loc ). +noun( 'gibraltar', '-', proper, loc ). +noun( 'gibraltarian', 'gibraltarians', count, _ ). +noun( 'giffnock', '-', proper, loc ). +noun( 'gilbert', '-', proper, per ). +noun( 'giles', '-', proper, per ). +noun( 'gilfach goch', '-', proper, loc ). +noun( 'gill', '-', proper, per ). +noun( 'gillian', '-', proper, per ). +noun( 'gillingham', '-', proper, loc ). +noun( 'gina', '-', proper, per ). +noun( 'girvan', '-', proper, loc ). +noun( 'gladys', '-', proper, per ). +noun( 'glamorgan', '-', proper, loc ). +noun( 'glasgow', '-', proper, loc ). +noun( 'glastonbury', '-', proper, loc ). +noun( 'glaswegian', 'glaswegians', count, _ ). +noun( 'glen', '-', proper, per ). +noun( 'glengarry', 'glengarries', count, _ ). +noun( 'glenrothes', '-', proper, loc ). +noun( 'gloria', '-', proper, per ). +noun( 'glossop', '-', proper, loc ). +noun( 'gloucester', '-', proper, loc ). +noun( 'gloucestershire', '-', proper, loc ). +noun( 'glusburn', '-', proper, loc ). +noun( 'god', '-', proper, _ ). +noun( 'godalming', '-', proper, loc ). +noun( 'godfrey', '-', proper, per ). +noun( 'godmanchester', '-', proper, loc ). +noun( 'goffs oak', '-', proper, loc ). +noun( 'golbourne', '-', proper, loc ). +noun( 'goliath', 'goliaths', count, _ ). +noun( 'goole', '-', proper, loc ). +noun( 'gordon', '-', proper, per ). +noun( 'gorgon', 'gorgons', count, _ ). +noun( 'gorgonzola', '-', mass, _ ). +noun( 'gorky', '-', proper, loc ). +noun( 'gorseinon', '-', proper, loc ). +noun( 'gosport', '-', proper, loc ). +noun( 'goteborg', '-', proper, loc ). +noun( 'goth', 'goths', count, _ ). +noun( 'gothenburg', '-', proper, loc ). +noun( 'gothic', '-', mass, _ ). +noun( 'gottingen', '-', proper, loc ). +noun( 'gourock', '-', proper, loc ). +noun( 'gov', '-', proper, per ). +noun( 'governor-general', 'governor-generals', count, _ ). +noun( 'grampian', '-', proper, loc ). +noun( 'granada', '-', proper, loc ). +noun( 'grand prix', 'grands prix', count, _ ). +noun( 'grangemouth', '-', proper, loc ). +noun( 'grantham', '-', proper, loc ). +noun( 'gravenhage', '-', proper, loc ). +noun( 'gravesend', '-', proper, loc ). +noun( 'graz', '-', proper, loc ). +noun( 'great harwood', '-', proper, loc ). +noun( 'great malvern', '-', proper, loc ). +noun( 'great shelford', '-', proper, loc ). +noun( 'great yarmouth', '-', proper, loc ). +noun( 'greece', '-', proper, loc ). +noun( 'greek', 'greeks', both, _ ). +noun( 'greenock', '-', proper, loc ). +noun( 'greenwich', '-', proper, loc ). +noun( 'greg', '-', proper, per ). +noun( 'gregory', '-', proper, per ). +noun( 'grenada', '-', proper, loc ). +noun( 'grenadian', 'grenadians', count, _ ). +noun( 'grimethorpe', '-', proper, loc ). +noun( 'grimsby', '-', proper, loc ). +noun( 'grinstead', '-', proper, loc ). +noun( 'groningen', '-', proper, loc ). +noun( 'grundyism', '-', mass, _ ). +noun( 'guadalajara', '-', proper, loc ). +noun( 'guatemala', '-', proper, loc ). +noun( 'guatemala city', '-', proper, loc ). +noun( 'guatemalan', 'guatemalans', count, _ ). +noun( 'guayaquil', '-', proper, loc ). +noun( 'guild-hall', 'guild-halls', count, _ ). +noun( 'guildford', '-', proper, loc ). +noun( 'guildhall', 'guildhalls', count, _ ). +noun( 'guinea', '-', proper, loc ). +noun( 'guinean', 'guineans', count, _ ). +noun( 'guinness', 'guinnesses', count, _ ). +noun( 'guisborough', '-', proper, loc ). +noun( 'gurkha', 'gurkhas', count, _ ). +noun( 'guy', '-', proper, per ). +noun( 'guy\'s', '-', proper, _ ). +noun( 'guyana', '-', proper, loc ). +noun( 'guyanese', 'guyanese', count, _ ). +noun( 'gwen', '-', proper, per ). +noun( 'gwendoline', '-', proper, per ). +noun( 'gwent', '-', proper, loc ). +noun( 'gwersyllt', '-', proper, loc ). +noun( 'gwynedd', '-', proper, loc ). +noun( 'gypsy', 'gypsies', count, _ ). +noun( 'h-bomb', 'h-bombs', count, _ ). +noun( 'hm', '-', proper, per ). +noun( 'hmso', '-', proper, _ ). +noun( 'hp', '-', mass, _ ). +noun( 'hq', '-', proper, _ ). +noun( 'hrh', '-', proper, per ). +noun( 'haarlem', '-', proper, loc ). +noun( 'hackney', '-', proper, loc ). +noun( 'haddington', '-', proper, loc ). +noun( 'hades', '-', proper, _ ). +noun( 'hadji', 'hadjis', count, _ ). +noun( 'hagen', '-', proper, loc ). +noun( 'hagley', '-', proper, loc ). +noun( 'hailsham', '-', proper, loc ). +noun( 'haiphong', '-', proper, loc ). +noun( 'haiti', '-', proper, loc ). +noun( 'haitian', 'haitians', count, _ ). +noun( 'hal', '-', proper, per ). +noun( 'halesowen', '-', proper, loc ). +noun( 'halifax', '-', proper, loc ). +noun( 'halle', '-', proper, loc ). +noun( 'hallowe\'en', 'hallowe\'ens', count, _ ). +noun( 'hallowe\'en', '-', proper, _ ). +noun( 'halstead', '-', proper, loc ). +noun( 'hamburg', '-', proper, loc ). +noun( 'hamhung', '-', proper, loc ). +noun( 'hamilton', '-', proper, loc ). +noun( 'hammersmith', '-', proper, loc ). +noun( 'hampreston', '-', proper, loc ). +noun( 'hampshire', '-', proper, loc ). +noun( 'hangchon', '-', proper, loc ). +noun( 'hanoi', '-', proper, loc ). +noun( 'hanover', '-', proper, loc ). +noun( 'hansard', 'hansards', count, _ ). +noun( 'harbin', '-', proper, loc ). +noun( 'haringey', '-', proper, loc ). +noun( 'harley street', '-', proper, _ ). +noun( 'harlow', '-', proper, loc ). +noun( 'harold', '-', proper, per ). +noun( 'harpenden', '-', proper, loc ). +noun( 'harriet', '-', proper, per ). +noun( 'harrogate', '-', proper, loc ). +noun( 'harrow', '-', proper, loc ). +noun( 'harry', '-', proper, per ). +noun( 'hartlepool', '-', proper, loc ). +noun( 'hartley', '-', proper, loc ). +noun( 'harvey', '-', proper, per ). +noun( 'harwich', '-', proper, loc ). +noun( 'harwood', '-', proper, loc ). +noun( 'harworth', '-', proper, loc ). +noun( 'haslemere', '-', proper, loc ). +noun( 'haslingden', '-', proper, loc ). +noun( 'hastings', '-', proper, loc ). +noun( 'hatfield', '-', proper, loc ). +noun( 'havana', 'havanas', count, _ ). +noun( 'havana', '-', proper, loc ). +noun( 'haverfordwest', '-', proper, loc ). +noun( 'haverhill', '-', proper, loc ). +noun( 'havering', '-', proper, loc ). +noun( 'hawaii', '-', proper, loc ). +noun( 'hawick', '-', proper, loc ). +noun( 'hawke\'s bay', '-', proper, loc ). +noun( 'hayling', '-', proper, loc ). +noun( 'haywards heath', '-', proper, loc ). +noun( 'hazel', '-', proper, per ). +noun( 'heanor', '-', proper, loc ). +noun( 'heather', '-', proper, per ). +noun( 'heaviside', '-', proper, _ ). +noun( 'hebden royal', '-', proper, loc ). +noun( 'hebrew', 'hebrews', both, _ ). +noun( 'hedge end', '-', proper, loc ). +noun( 'hegira', 'hegiras', count, _ ). +noun( 'heidelburg', '-', proper, loc ). +noun( 'hejira', 'hejiras', count, _ ). +noun( 'helen', '-', proper, per ). +noun( 'helensburgh', '-', proper, loc ). +noun( 'hellene', 'hellenes', count, _ ). +noun( 'helsinki', '-', proper, loc ). +noun( 'helston', '-', proper, loc ). +noun( 'hemel hempstead', '-', proper, loc ). +noun( 'hemsworth', '-', proper, loc ). +noun( 'henley-on-thames', '-', proper, loc ). +noun( 'henry', '-', proper, per ). +noun( 'herb', '-', proper, per ). +noun( 'herbert', '-', proper, per ). +noun( 'hereford', '-', proper, loc ). +noun( 'herne', '-', proper, loc ). +noun( 'herne bay', '-', proper, loc ). +noun( 'herr', 'herren', count, _ ). +noun( 'hertford', '-', proper, loc ). +noun( 'hertfordshire', '-', proper, loc ). +noun( 'hetton', '-', proper, loc ). +noun( 'hexham', '-', proper, loc ). +noun( 'heysham', '-', proper, loc ). +noun( 'heywood', '-', proper, loc ). +noun( 'high spen', '-', proper, loc ). +noun( 'high wycombe', '-', proper, loc ). +noun( 'highland', '-', proper, loc ). +noun( 'highlander', 'highlanders', count, _ ). +noun( 'hilary', '-', proper, per ). +noun( 'hilda', '-', proper, per ). +noun( 'hillingdon', '-', proper, loc ). +noun( 'hinckley', '-', proper, loc ). +noun( 'hindi', '-', mass, _ ). +noun( 'hindu', 'hindus', count, _ ). +noun( 'hinduism', '-', mass, _ ). +noun( 'hindustani', 'hindustanis', count, _ ). +noun( 'hiroshima', '-', proper, loc ). +noun( 'hitchin', '-', proper, loc ). +noun( 'hobson', '-', proper, _ ). +noun( 'hockley', '-', proper, loc ). +noun( 'hoddesdon', '-', proper, loc ). +noun( 'hofei', '-', proper, loc ). +noun( 'hogmanay', 'hogmanays', count, _ ). +noun( 'hogmanay', '-', proper, _ ). +noun( 'holland', '-', proper, loc ). +noun( 'hollander', 'hollanders', count, _ ). +noun( 'hollywood', '-', proper, _ ). +noun( 'holmfirth', '-', proper, loc ). +noun( 'holyhead', '-', proper, loc ). +noun( 'hon', '-', proper, per ). +noun( 'honduran', 'hondurans', count, _ ). +noun( 'honduras', '-', proper, loc ). +noun( 'hong kong', '-', proper, loc ). +noun( 'honiton', '-', proper, loc ). +noun( 'hoo', '-', proper, loc ). +noun( 'hoover', 'hoovers', count, _ ). +noun( 'hope', '-', proper, loc ). +noun( 'horace', '-', proper, per ). +noun( 'horley', '-', proper, loc ). +noun( 'hornsea', '-', proper, loc ). +noun( 'horsham', '-', proper, loc ). +noun( 'horsley', '-', proper, loc ). +noun( 'horwich', '-', proper, loc ). +noun( 'hosp', '-', proper, _ ). +noun( 'host', '-', count, _ ). +noun( 'houghton', '-', proper, loc ). +noun( 'hounslow', '-', proper, loc ). +noun( 'houston', '-', proper, loc ). +noun( 'hove', '-', proper, loc ). +noun( 'howard', '-', proper, per ). +noun( 'hoylake', '-', proper, loc ). +noun( 'hoyland nether', '-', proper, loc ). +noun( 'hubert', '-', proper, per ). +noun( 'hucknall', '-', proper, loc ). +noun( 'huddersfield', '-', proper, loc ). +noun( 'hugh', '-', proper, per ). +noun( 'hughie', '-', proper, per ). +noun( 'huguenot', 'huguenots', count, _ ). +noun( 'huhehot', '-', proper, loc ). +noun( 'humberside', '-', proper, loc ). +noun( 'humberston', '-', proper, loc ). +noun( 'humphrey', '-', proper, per ). +noun( 'hun', 'huns', count, _ ). +noun( 'hungarian', 'hungarians', both, _ ). +noun( 'hungary', '-', proper, loc ). +noun( 'huntingdon', '-', proper, loc ). +noun( 'hurstpierpoint', '-', proper, loc ). +noun( 'hwainan', '-', proper, loc ). +noun( 'hyde', '-', proper, loc ). +noun( 'hyderabad', '-', proper, loc ). +noun( 'hythe', '-', proper, loc ). +noun( 'iba', '-', count, _ ). +noun( 'icbm', '-', count, _ ). +noun( 'ilo', '-', count, _ ). +noun( 'imf', '-', count, _ ). +noun( 'iou', '-', count, _ ). +noun( '-', 'ious', count, _ ). +noun( 'iq', '-', mass, _ ). +noun( 'ira', '-', count, _ ). +noun( 'itv', '-', count, _ ). +noun( 'iud', '-', count, _ ). +noun( 'ian', '-', proper, per ). +noun( 'ibadan', '-', proper, loc ). +noun( 'iceland', '-', proper, loc ). +noun( 'icelander', 'icelanders', count, _ ). +noun( 'icelandic', '-', mass, _ ). +noun( 'ida', '-', proper, per ). +noun( 'idaho', '-', proper, loc ). +noun( 'ilfracombe', '-', proper, loc ). +noun( 'ilkeston', '-', proper, loc ). +noun( 'ilkley', '-', proper, loc ). +noun( 'illinois', '-', proper, loc ). +noun( 'immingham', '-', proper, loc ). +noun( 'inc', '-', proper, _ ). +noun( 'inchon', '-', proper, loc ). +noun( 'india', '-', proper, loc ). +noun( 'india-rubber', 'india-rubbers', both, _ ). +noun( 'indiaman', 'indiamen', count, _ ). +noun( 'indian', 'indians', count, _ ). +noun( 'indiana', '-', proper, loc ). +noun( 'indianapolis', '-', proper, loc ). +noun( 'indies', '-', proper, loc ). +noun( 'indonesia', '-', proper, loc ). +noun( 'indonesian', 'indonesians', both, _ ). +noun( 'indore', '-', proper, loc ). +noun( 'ingatestone', '-', proper, loc ). +noun( 'ingrid', '-', proper, per ). +noun( 'innsbruck', '-', proper, loc ). +noun( 'inst', '-', proper, _ ). +noun( 'interpol', '-', proper, _ ). +noun( 'inverkeithing', '-', proper, loc ). +noun( 'inverness', '-', proper, loc ). +noun( 'inverurie', '-', proper, loc ). +noun( 'iowa', '-', proper, loc ). +noun( 'ipswich', '-', proper, loc ). +noun( 'iran', '-', proper, loc ). +noun( 'iranian', 'iranians', both, _ ). +noun( 'iraq', '-', proper, loc ). +noun( 'iraqi', 'iraqis', count, _ ). +noun( 'ireland', '-', proper, loc ). +noun( 'irene', '-', proper, per ). +noun( 'iris', '-', proper, per ). +noun( 'irish', '-', mass, _ ). +noun( 'irishman', 'irishmen', count, _ ). +noun( 'irishwoman', 'irishwomen', count, _ ). +noun( 'irthlingborough', '-', proper, loc ). +noun( 'irvine', '-', proper, loc ). +noun( 'isaac', '-', proper, per ). +noun( 'isabel', '-', proper, per ). +noun( 'isabella', '-', proper, per ). +noun( 'islam', '-', mass, _ ). +noun( 'islington', '-', proper, loc ). +noun( 'isobel', '-', proper, per ). +noun( 'israel', '-', proper, loc ). +noun( 'israeli', 'israelis', count, _ ). +noun( 'istanbul', '-', proper, loc ). +noun( 'italian', 'italians', both, _ ). +noun( 'italy', '-', proper, loc ). +noun( 'ivan', '-', proper, per ). +noun( 'iver', '-', proper, loc ). +noun( 'ivor', '-', proper, per ). +noun( 'ivy', '-', proper, per ). +noun( 'izmir', '-', proper, loc ). +noun( 'jc', '-', proper, _ ). +noun( 'jp', '-', count, _ ). +noun( 'jabalpur', '-', proper, loc ). +noun( 'jack', '-', proper, per ). +noun( 'jackie', '-', proper, per ). +noun( 'jacksonville', '-', proper, loc ). +noun( 'jacob', '-', proper, per ). +noun( 'jacobin', 'jacobins', count, _ ). +noun( 'jacobinism', '-', mass, _ ). +noun( 'jacobite', 'jacobites', count, _ ). +noun( 'jacqueline', '-', proper, per ). +noun( 'jaipur', '-', proper, loc ). +noun( 'jakarta', '-', proper, loc ). +noun( 'jake', '-', proper, per ). +noun( 'jamaica', '-', proper, loc ). +noun( 'jamaican', 'jamaicans', count, _ ). +noun( 'james', '-', proper, per ). +noun( 'jan', '-', proper, per ). +noun( 'jan', '-', proper, _ ). +noun( 'jane', '-', proper, per ). +noun( 'janet', '-', proper, per ). +noun( 'janice', '-', proper, per ). +noun( 'janie', '-', proper, per ). +noun( 'january', 'januaries', count, _ ). +noun( 'january', '-', proper, _ ). +noun( 'janus', '-', proper, _ ). +noun( 'japan', '-', proper, loc ). +noun( 'japanese', 'japanese', both, _ ). +noun( 'jarrow', '-', proper, loc ). +noun( 'jason', '-', proper, per ). +noun( 'java', '-', proper, loc ). +noun( 'javanese', 'javanese', count, _ ). +noun( 'jean', '-', proper, per ). +noun( 'jeanie', '-', proper, per ). +noun( 'jedburgh', '-', proper, loc ). +noun( 'jeff', '-', proper, per ). +noun( 'jeffrey', '-', proper, per ). +noun( 'jehovah', '-', proper, _ ). +noun( 'jekyll-and-hyde', '-', proper, _ ). +noun( 'jennifer', '-', proper, per ). +noun( 'jenny', '-', proper, per ). +noun( 'jeremy', '-', proper, per ). +noun( 'jerome', '-', proper, per ). +noun( 'jerry', '-', proper, per ). +noun( 'jersey', '-', proper, loc ). +noun( 'jess', '-', proper, per ). +noun( 'jessica', '-', proper, per ). +noun( 'jessie', '-', proper, per ). +noun( 'jesuit', 'jesuits', count, _ ). +noun( 'jesus', '-', proper, per ). +noun( 'jew', 'jews', count, _ ). +noun( 'jewess', 'jewesses', count, _ ). +noun( 'jezebel', 'jezebels', count, _ ). +noun( 'jill', '-', proper, per ). +noun( 'jim', '-', proper, per ). +noun( 'jim crow', '-', count, _ ). +noun( 'jimmy', '-', proper, per ). +noun( 'jnr', '-', proper, _ ). +noun( 'jo', '-', proper, per ). +noun( 'joan', '-', proper, per ). +noun( 'joanie', '-', proper, per ). +noun( 'joann', '-', proper, per ). +noun( 'joanna', '-', proper, per ). +noun( 'joanne', '-', proper, per ). +noun( 'job', '-', proper, per ). +noun( 'jocelyn', '-', proper, per ). +noun( 'joe', '-', proper, per ). +noun( 'joey', '-', proper, per ). +noun( 'johannesburg', '-', proper, loc ). +noun( 'john', '-', proper, per ). +noun( 'john bull', '-', count, _ ). +noun( 'johnny', '-', proper, per ). +noun( 'johnstone', '-', proper, loc ). +noun( 'jonah', '-', proper, per ). +noun( 'jonathan', '-', proper, per ). +noun( 'jordan', '-', proper, loc ). +noun( 'jordanian', 'jordanians', count, _ ). +noun( 'joseph', '-', proper, per ). +noun( 'josephine', '-', proper, per ). +noun( 'josh', '-', proper, per ). +noun( 'joshua', '-', proper, per ). +noun( 'jove', '-', proper, _ ). +noun( 'joy', '-', proper, per ). +noun( 'joyce', '-', proper, per ). +noun( 'judaism', '-', mass, _ ). +noun( 'judas', 'judases', count, _ ). +noun( 'judas', '-', proper, per ). +noun( 'judith', '-', proper, per ). +noun( 'judy', '-', proper, per ). +noun( 'jul', '-', proper, _ ). +noun( 'julia', '-', proper, per ). +noun( 'julian', '-', proper, per ). +noun( 'julie', '-', proper, per ). +noun( 'juliet', '-', proper, per ). +noun( 'july', '-', count, _ ). +noun( 'jun', '-', proper, _ ). +noun( 'june', 'junes', count, _ ). +noun( 'june', '-', proper, per ). +noun( 'jupiter', '-', proper, _ ). +noun( 'justin', '-', proper, per ). +noun( 'kgb', '-', count, _ ). +noun( 'ko', '-', count, _ ). +noun( 'kaiser', 'kaisers', count, _ ). +noun( 'kalgan', '-', proper, loc ). +noun( 'kampuchea', '-', proper, loc ). +noun( 'kampuchean', 'kampucheans', count, _ ). +noun( 'kanpur', '-', proper, loc ). +noun( 'kansas', '-', proper, loc ). +noun( 'kansas city', '-', proper, loc ). +noun( 'kaohsiung', '-', proper, loc ). +noun( 'karachi', '-', proper, loc ). +noun( 'karaganda', '-', proper, loc ). +noun( 'karen', '-', proper, per ). +noun( 'karlsruhe', '-', proper, loc ). +noun( 'kashmir', '-', proper, loc ). +noun( 'kashmiri', 'kashmiris', count, _ ). +noun( 'kassel', '-', proper, loc ). +noun( 'kate', '-', proper, per ). +noun( 'kath', '-', proper, per ). +noun( 'katherine', '-', proper, per ). +noun( 'kathy', '-', proper, per ). +noun( 'katie', '-', proper, per ). +noun( 'katowice', '-', proper, loc ). +noun( 'kay', '-', proper, per ). +noun( 'kazan', '-', proper, loc ). +noun( 'keighley', '-', proper, loc ). +noun( 'keith', '-', proper, per ). +noun( 'kelso', '-', proper, loc ). +noun( 'kelt', 'kelts', count, _ ). +noun( 'kelty', '-', proper, loc ). +noun( 'kemsing', '-', proper, loc ). +noun( 'ken', '-', proper, per ). +noun( 'kendal', '-', proper, loc ). +noun( 'kenilworth', '-', proper, loc ). +noun( 'kenneth', '-', proper, per ). +noun( 'kenny', '-', proper, per ). +noun( 'kensington', '-', proper, loc ). +noun( 'kent', '-', proper, loc ). +noun( 'kentucky', '-', proper, loc ). +noun( 'kenya', '-', proper, loc ). +noun( 'kenyan', 'kenyans', count, _ ). +noun( 'kerry', '-', proper, loc ). +noun( 'kettering', '-', proper, loc ). +noun( 'kevin', '-', proper, per ). +noun( 'keynsham', '-', proper, loc ). +noun( 'keyworth', '-', proper, loc ). +noun( 'khalka', '-', mass, _ ). +noun( 'kharkov', '-', proper, loc ). +noun( 'khartoum', '-', proper, loc ). +noun( 'khmer', '-', mass, _ ). +noun( 'kidderminster', '-', proper, loc ). +noun( 'kidlington', '-', proper, loc ). +noun( 'kidsgrove', '-', proper, loc ). +noun( 'kiev', '-', proper, loc ). +noun( 'kilbirnie', '-', proper, loc ). +noun( 'kildare', '-', proper, loc ). +noun( 'kilkenny', '-', proper, loc ). +noun( 'killarney', '-', proper, loc ). +noun( 'kilmarnock', '-', proper, loc ). +noun( 'kilsyth', '-', proper, loc ). +noun( 'kilwinning', '-', proper, loc ). +noun( 'kimberley', '-', proper, loc ). +noun( 'king\'s lynn', '-', proper, loc ). +noun( 'kingsbury', '-', proper, loc ). +noun( 'kingsteignton', '-', proper, loc ). +noun( 'kingston', '-', proper, loc ). +noun( 'kingston upon hull', '-', proper, loc ). +noun( 'kingston upon thames', '-', proper, loc ). +noun( 'kinshasa', '-', proper, loc ). +noun( 'kippax', '-', proper, loc ). +noun( 'kirin', '-', proper, loc ). +noun( 'kirkby', '-', proper, loc ). +noun( 'kirkby in ashfield', '-', proper, loc ). +noun( 'kirkcaldy', '-', proper, loc ). +noun( 'kirkham', '-', proper, loc ). +noun( 'kirkintilloch', '-', proper, loc ). +noun( 'kirkwall', '-', proper, loc ). +noun( 'kitakyushu', '-', proper, loc ). +noun( 'kitty', '-', proper, per ). +noun( 'knaresborough', '-', proper, loc ). +noun( 'knesset', 'knessets', count, _ ). +noun( 'knottingley', '-', proper, loc ). +noun( 'knutsford', '-', proper, loc ). +noun( 'kobe', '-', proper, loc ). +noun( 'koblenz', '-', proper, loc ). +noun( 'koln', '-', proper, loc ). +noun( 'koran', 'korans', count, _ ). +noun( 'korea', '-', proper, loc ). +noun( 'korean', 'koreans', both, _ ). +noun( 'krakow', '-', proper, loc ). +noun( 'krasnoyarsk', '-', proper, loc ). +noun( 'krefeld', '-', proper, loc ). +noun( 'kremlin', 'kremlins', count, _ ). +noun( 'krivoi rog', '-', proper, loc ). +noun( 'kunming', '-', proper, loc ). +noun( 'kuwait', '-', proper, loc ). +noun( 'kuwait city', '-', proper, loc ). +noun( 'kuwaiti', 'kuwaitis', count, _ ). +noun( 'kuybyshev', '-', proper, loc ). +noun( 'kweiyang', '-', proper, loc ). +noun( 'kyoto', '-', proper, loc ). +noun( 'l-plate', 'l-plates', count, _ ). +noun( 'la', '-', proper, _ ). +noun( 'lea', '-', count, _ ). +noun( 'llb', '-', count, _ ). +noun( 'lp', '-', count, _ ). +noun( '-', 'lps', count, _ ). +noun( 'lsd', '-', mass, _ ). +noun( 'la habana', '-', proper, loc ). +noun( 'la paz', '-', proper, loc ). +noun( 'la plata', '-', proper, loc ). +noun( 'la spezia', '-', proper, loc ). +noun( 'lab', '-', proper, _ ). +noun( 'labourite', 'labourites', count, _ ). +noun( 'labrador', '-', proper, loc ). +noun( 'lady-chapel', 'lady-chapels', count, _ ). +noun( 'lagos', '-', proper, loc ). +noun( 'lahore', '-', proper, loc ). +noun( 'lakenheath', '-', proper, loc ). +noun( 'lambeth', '-', proper, loc ). +noun( 'lammas', 'lammases', count, _ ). +noun( 'lammas', '-', proper, _ ). +noun( 'lanark', '-', proper, loc ). +noun( 'lancashire', '-', proper, loc ). +noun( 'lancaster', '-', proper, loc ). +noun( 'lancastrian', 'lancastrians', count, _ ). +noun( 'lanchow', '-', proper, loc ). +noun( 'lancing', '-', proper, loc ). +noun( 'landrover', 'landrovers', count, _ ). +noun( 'lao', '-', mass, _ ). +noun( 'laos', '-', proper, loc ). +noun( 'laotian', 'laotians', both, _ ). +noun( 'largs', '-', proper, loc ). +noun( 'larkhall', '-', proper, loc ). +noun( 'larne', '-', proper, loc ). +noun( 'larry', '-', proper, per ). +noun( 'las palmas', '-', proper, loc ). +noun( 'latin', 'latins', count, _ ). +noun( 'latinist', 'latinists', count, _ ). +noun( 'laura', '-', proper, per ). +noun( 'laurence', '-', proper, per ). +noun( 'lausanne', '-', proper, loc ). +noun( 'lawrence', '-', proper, per ). +noun( 'lazarus', '-', count, _ ). +noun( 'lazarus', '-', proper, per ). +noun( 'le havre', '-', proper, loc ). +noun( 'le mans', '-', proper, loc ). +noun( 'leamington spa', '-', proper, loc ). +noun( 'leatherhead', '-', proper, loc ). +noun( 'lebanese', 'lebanese', count, _ ). +noun( 'lebanon', '-', proper, loc ). +noun( 'leeds', '-', proper, loc ). +noun( 'leek', '-', proper, loc ). +noun( 'leicester', '-', proper, loc ). +noun( 'leicestershire', '-', proper, loc ). +noun( 'leiden', '-', proper, loc ). +noun( 'leigh', '-', proper, loc ). +noun( 'leighton-linslade', '-', proper, loc ). +noun( 'leinster', '-', proper, loc ). +noun( 'leipzig', '-', proper, loc ). +noun( 'leitrim', '-', proper, loc ). +noun( 'leix', '-', proper, loc ). +noun( 'len', '-', proper, per ). +noun( 'leningrad', '-', proper, loc ). +noun( 'lenny', '-', proper, per ). +noun( 'lens', '-', proper, loc ). +noun( 'lent', 'lents', count, _ ). +noun( 'lent', '-', proper, _ ). +noun( 'leo', '-', proper, per ). +noun( 'leominster', '-', proper, loc ). +noun( 'leon', '-', proper, loc ). +noun( 'leonard', '-', proper, per ). +noun( 'lerwick', '-', proper, loc ). +noun( 'les', '-', proper, per ). +noun( 'lesley', '-', proper, per ). +noun( 'leslie', '-', proper, per ). +noun( 'lesotho', '-', proper, loc ). +noun( 'letchworth', '-', proper, loc ). +noun( 'lethe', '-', proper, _ ). +noun( 'levant', '-', proper, _ ). +noun( 'levantine', 'levantines', count, _ ). +noun( 'leven', '-', proper, loc ). +noun( 'leverkusen', '-', proper, loc ). +noun( 'lewes', '-', proper, loc ). +noun( 'lewis', '-', proper, per ). +noun( 'lewisham', '-', proper, loc ). +noun( 'leyland', '-', proper, loc ). +noun( 'lib', '-', proper, _ ). +noun( 'liberia', '-', proper, loc ). +noun( 'liberian', 'liberians', count, _ ). +noun( 'libra', '-', proper, _ ). +noun( 'libya', '-', proper, loc ). +noun( 'libyan', 'libyans', count, _ ). +noun( 'lichfield', '-', proper, loc ). +noun( 'liechtenstein', '-', proper, loc ). +noun( 'liechtensteiner', 'liechtensteiners', count, _ ). +noun( 'liege', '-', proper, loc ). +noun( 'lilian', '-', proper, per ). +noun( 'lille', '-', proper, loc ). +noun( 'lilliputian', 'lilliputians', count, _ ). +noun( 'lily', '-', proper, per ). +noun( 'lima', '-', proper, loc ). +noun( 'limerick', '-', proper, loc ). +noun( 'limoges', '-', proper, loc ). +noun( 'lincoln', '-', proper, loc ). +noun( 'lincolnshire', '-', proper, loc ). +noun( 'linda', '-', proper, per ). +noun( 'linlithgow', '-', proper, loc ). +noun( 'linwood', '-', proper, loc ). +noun( 'linz', '-', proper, loc ). +noun( 'lionel', '-', proper, per ). +noun( 'lisa', '-', proper, per ). +noun( 'lisbon', '-', proper, loc ). +noun( 'liskeard', '-', proper, loc ). +noun( 'littlehampton', '-', proper, loc ). +noun( 'liverpool', '-', proper, loc ). +noun( 'liverpudlian', 'liverpudlians', count, _ ). +noun( 'livingston', '-', proper, loc ). +noun( 'livorno', '-', proper, loc ). +noun( 'liz', '-', proper, per ). +noun( 'liza', '-', proper, per ). +noun( 'lizzy', '-', proper, per ). +noun( 'ljubljana', '-', proper, loc ). +noun( 'llandudno', '-', proper, loc ). +noun( 'llanelli', '-', proper, loc ). +noun( 'llangollen', '-', proper, loc ). +noun( 'llantrisant', '-', proper, loc ). +noun( 'llantwit major', '-', proper, loc ). +noun( 'lloyd\'s', '-', proper, _ ). +noun( 'loanhead', '-', proper, loc ). +noun( 'lochgelly', '-', proper, loc ). +noun( 'lodz', '-', proper, loc ). +noun( 'loftus', '-', proper, loc ). +noun( 'lois', '-', proper, per ). +noun( 'london', '-', proper, loc ). +noun( 'londonderry', '-', proper, loc ). +noun( 'londoner', 'londoners', count, _ ). +noun( 'long eaton', '-', proper, loc ). +noun( 'longridge', '-', proper, loc ). +noun( 'longton', '-', proper, loc ). +noun( 'lorna', '-', proper, per ). +noun( 'los angeles', '-', proper, loc ). +noun( 'lossiemouth', '-', proper, loc ). +noun( 'lothian', '-', proper, loc ). +noun( 'loughborough', '-', proper, loc ). +noun( 'louis', '-', proper, per ). +noun( 'louise', '-', proper, per ). +noun( 'louisiana', '-', proper, loc ). +noun( 'louisville', '-', proper, loc ). +noun( 'louth', '-', proper, loc ). +noun( 'lowestoft', '-', proper, loc ). +noun( 'loyang', '-', proper, loc ). +noun( 'lt', '-', proper, per ). +noun( 'ltd', '-', proper, _ ). +noun( 'lubeck', '-', proper, loc ). +noun( 'lucifer', 'lucifers', count, _ ). +noun( 'lucknow', '-', proper, loc ). +noun( 'lucy', '-', proper, per ). +noun( 'luddite', 'luddites', count, _ ). +noun( 'ludlow', '-', proper, loc ). +noun( 'ludwigshafen', '-', proper, loc ). +noun( 'luke', '-', proper, per ). +noun( 'luta', '-', proper, loc ). +noun( 'lutheran', 'lutherans', count, _ ). +noun( 'luton', '-', proper, loc ). +noun( 'luxembourg', '-', proper, loc ). +noun( 'luxemburg', '-', proper, loc ). +noun( 'luxemburger', 'luxemburgers', count, _ ). +noun( 'lvov', '-', proper, loc ). +noun( 'lyallpur', '-', proper, loc ). +noun( 'lydia', '-', proper, per ). +noun( 'lydney', '-', proper, loc ). +noun( 'lymington', '-', proper, loc ). +noun( 'lymm', '-', proper, loc ). +noun( 'lynn', '-', proper, per ). +noun( 'lynne', '-', proper, per ). +noun( 'lyons', '-', proper, loc ). +noun( 'lytham', '-', proper, loc ). +noun( 'lytham st annes', '-', proper, loc ). +noun( 'ma', '-', count, _ ). +noun( 'mb', '-', count, _ ). +noun( 'mc', '-', count, _ ). +noun( 'mcc', '-', count, _ ). +noun( 'md', '-', count, _ ). +noun( 'mi5', '-', proper, _ ). +noun( 'mi6', '-', proper, _ ). +noun( 'mp', '-', count, _ ). +noun( '-', 'mp\'s', count, _ ). +noun( 'ms', '-', count, _ ). +noun( 'msc', '-', count, _ ). +noun( 'maastricht', '-', proper, loc ). +noun( 'mabel', '-', proper, per ). +noun( 'macclesfield', '-', proper, loc ). +noun( 'macedonian', 'macedonians', both, _ ). +noun( 'mach', '-', proper, _ ). +noun( 'madagascan', 'madagascans', count, _ ). +noun( 'madagascar', '-', proper, loc ). +noun( 'madame', 'madames', count, _ ). +noun( 'maddy', '-', proper, per ). +noun( 'madeira', 'madeiras', count, _ ). +noun( 'madeleine', '-', proper, per ). +noun( 'mademoiselle', 'mademoiselles', count, _ ). +noun( 'madge', '-', proper, per ). +noun( 'madonna', 'madonnas', count, _ ). +noun( 'madras', '-', proper, loc ). +noun( 'madrid', '-', proper, loc ). +noun( 'madurai', '-', proper, loc ). +noun( 'maecenas', '-', proper, _ ). +noun( 'maesteg', '-', proper, loc ). +noun( 'mafia', 'mafias', count, _ ). +noun( 'magdeburg', '-', proper, loc ). +noun( 'maggie', '-', proper, per ). +noun( 'maghull', '-', proper, loc ). +noun( 'magnificat', 'magnificats', count, _ ). +noun( 'magyar', 'magyars', both, _ ). +noun( 'maharaja', 'maharajas', count, _ ). +noun( 'maharajah', 'maharajahs', count, _ ). +noun( 'maharanee', 'maharanees', count, _ ). +noun( 'mahatma', 'mahatmas', count, _ ). +noun( 'maidenhead', '-', proper, loc ). +noun( 'maidstone', '-', proper, loc ). +noun( 'maine', '-', proper, loc ). +noun( 'mainz', '-', proper, loc ). +noun( 'maj', '-', proper, per ). +noun( 'malaga', '-', proper, loc ). +noun( 'malawi', '-', proper, loc ). +noun( 'malawian', 'malawians', count, _ ). +noun( 'malay', 'malays', both, _ ). +noun( 'malaya', '-', proper, loc ). +noun( 'malayan', 'malayans', count, _ ). +noun( 'malaysia', '-', proper, loc ). +noun( 'malaysian', 'malaysians', count, _ ). +noun( 'malcolm', '-', proper, per ). +noun( 'maldon', '-', proper, loc ). +noun( 'mali', '-', proper, loc ). +noun( 'malian', 'malians', count, _ ). +noun( 'mallow', '-', proper, loc ). +noun( 'malmo', '-', proper, loc ). +noun( 'malta', '-', proper, loc ). +noun( 'maltby', '-', proper, loc ). +noun( 'maltese', 'maltese', both, _ ). +noun( 'malvern', '-', proper, loc ). +noun( 'mamie', '-', proper, per ). +noun( 'manchester', '-', proper, loc ). +noun( 'mancunian', 'mancunians', count, _ ). +noun( 'mandy', '-', proper, per ). +noun( 'manila', '-', proper, loc ). +noun( 'manilla', 'manillas', count, _ ). +noun( 'manitoba', '-', proper, loc ). +noun( 'mannheim', '-', proper, loc ). +noun( 'mansfield', '-', proper, loc ). +noun( 'manx', '-', mass, _ ). +noun( 'maoism', '-', mass, _ ). +noun( 'maoist', 'maoists', count, _ ). +noun( 'maori', 'maoris', count, _ ). +noun( 'mar', '-', proper, _ ). +noun( 'maracaibo', '-', proper, loc ). +noun( 'march', 'marches', count, _ ). +noun( 'march', '-', proper, loc ). +noun( 'mardi gras', 'mardi gras', count, _ ). +noun( 'margaret', '-', proper, per ). +noun( 'margate', '-', proper, loc ). +noun( 'marge', '-', proper, per ). +noun( 'margery', '-', proper, per ). +noun( 'margie', '-', proper, per ). +noun( 'margrave', 'margraves', count, _ ). +noun( 'maria', '-', proper, per ). +noun( 'marian', '-', proper, per ). +noun( 'marie', '-', proper, per ). +noun( 'marilyn', '-', proper, per ). +noun( 'marion', '-', proper, per ). +noun( 'marjorie', '-', proper, per ). +noun( 'mark', '-', proper, per ). +noun( 'market drayton', '-', proper, loc ). +noun( 'market harborough', '-', proper, loc ). +noun( 'marlborough', '-', proper, loc ). +noun( 'marlene', '-', proper, per ). +noun( 'marlow', '-', proper, loc ). +noun( 'marple', '-', proper, loc ). +noun( 'mars', '-', proper, _ ). +noun( 'marsala', '-', mass, _ ). +noun( 'marseillaise', 'marseillaises', count, _ ). +noun( 'marseilles', '-', proper, loc ). +noun( 'marske', '-', proper, loc ). +noun( 'martha', '-', proper, per ). +noun( 'martian', 'martians', count, _ ). +noun( 'martin', '-', proper, per ). +noun( 'marxism', '-', mass, _ ). +noun( 'marxist', 'marxists', count, _ ). +noun( 'mary', '-', proper, per ). +noun( 'maryland', '-', proper, loc ). +noun( 'maryport', '-', proper, loc ). +noun( 'mason-dixon', '-', proper, _ ). +noun( 'mass', 'masses', both, _ ). +noun( 'massachusetts', '-', proper, loc ). +noun( 'matlock', '-', proper, loc ). +noun( 'matt', '-', proper, per ). +noun( 'matthew', '-', proper, per ). +noun( 'maud', '-', proper, per ). +noun( 'maudie', '-', proper, per ). +noun( 'maundy thursday', 'maundy thursdays', count, _ ). +noun( 'maundy thursday', '-', proper, _ ). +noun( 'maureen', '-', proper, per ). +noun( 'maurice', '-', proper, per ). +noun( 'mauritania', '-', proper, loc ). +noun( 'mauritanian', 'mauritanians', count, _ ). +noun( 'mauritian', 'mauritians', count, _ ). +noun( 'mauritius', '-', proper, loc ). +noun( 'mavis', '-', proper, per ). +noun( 'max', '-', proper, per ). +noun( 'maxine', '-', proper, per ). +noun( 'may', 'mays', count, _ ). +noun( 'may', '-', proper, per ). +noun( 'mayfair', '-', proper, _ ). +noun( 'mayfield', '-', proper, loc ). +noun( 'mayo', '-', proper, loc ). +noun( 'mccarthyism', '-', mass, _ ). +noun( 'meath', '-', proper, loc ). +noun( 'mecca', '-', proper, loc ). +noun( 'med', '-', count, _ ). +noun( 'medan', '-', proper, loc ). +noun( 'medellin', '-', proper, loc ). +noun( 'medicare', '-', mass, _ ). +noun( 'meg', '-', proper, per ). +noun( 'melbourne', '-', proper, loc ). +noun( 'melcombe', '-', proper, loc ). +noun( 'melcombe regis', '-', proper, loc ). +noun( 'melksham', '-', proper, loc ). +noun( 'meltham', '-', proper, loc ). +noun( 'melton mowbray', '-', proper, loc ). +noun( 'memphis', '-', proper, loc ). +noun( 'meopham', '-', proper, loc ). +noun( 'mercator', '-', proper, _ ). +noun( 'mercury', '-', proper, _ ). +noun( 'merthyr tydfil', '-', proper, loc ). +noun( 'merton', '-', proper, loc ). +noun( 'messiah', 'messiahs', count, _ ). +noun( 'messina', '-', proper, loc ). +noun( 'met', '-', proper, _ ). +noun( 'methodism', '-', mass, _ ). +noun( 'methodist', 'methodists', count, _ ). +noun( 'methuselah', '-', proper, _ ). +noun( 'metro', 'metros', count, _ ). +noun( 'metz', '-', proper, loc ). +noun( 'mexican', 'mexicans', count, _ ). +noun( 'mexico', '-', proper, loc ). +noun( 'mexico city', '-', proper, loc ). +noun( 'mgr', '-', proper, per ). +noun( 'miami', '-', proper, loc ). +noun( 'michael', '-', proper, per ). +noun( 'michaelmas', 'michaelmases', count, _ ). +noun( 'michaelmas', '-', proper, _ ). +noun( 'michelle', '-', proper, per ). +noun( 'michigan', '-', proper, loc ). +noun( 'mick', '-', proper, per ). +noun( 'mickey', '-', proper, per ). +noun( 'middlesex', '-', proper, loc ). +noun( 'middleton', '-', proper, loc ). +noun( 'middlewich', '-', proper, loc ). +noun( 'midlands', '-', proper, loc ). +noun( 'midwest', '-', proper, _ ). +noun( 'mike', '-', proper, per ). +noun( 'milan', '-', proper, loc ). +noun( 'milano', '-', proper, loc ). +noun( 'mildenhall', '-', proper, loc ). +noun( 'mildred', '-', proper, per ). +noun( 'miles', '-', proper, per ). +noun( 'milford', '-', proper, loc ). +noun( 'milford haven', '-', proper, loc ). +noun( 'millicent', '-', proper, per ). +noun( 'millie', '-', proper, per ). +noun( 'millom', '-', proper, loc ). +noun( 'milly', '-', proper, per ). +noun( 'milngavie', '-', proper, loc ). +noun( 'milnrow', '-', proper, loc ). +noun( 'milton keynes', '-', proper, loc ). +noun( 'milwaukee', '-', proper, loc ). +noun( 'minehead', '-', proper, loc ). +noun( 'minneapolis', '-', proper, loc ). +noun( 'minnesota', '-', proper, loc ). +noun( 'minotaur', 'minotaurs', count, _ ). +noun( 'minsk', '-', proper, loc ). +noun( 'minster-in-sheppey', '-', proper, loc ). +noun( 'miranda', '-', proper, per ). +noun( 'miriam', '-', proper, per ). +noun( 'miss', 'misses', count, _ ). +noun( 'mississippi', '-', proper, loc ). +noun( 'missouri', '-', proper, loc ). +noun( 'mlle', '-', proper, per ). +noun( 'mme', '-', proper, per ). +noun( 'mo', '-', proper, per ). +noun( 'mod', 'mods', count, _ ). +noun( 'modena', '-', proper, loc ). +noun( 'mohammedan', 'mohammedans', count, _ ). +noun( 'moira', '-', proper, per ). +noun( 'mold', '-', proper, loc ). +noun( 'molly', '-', proper, per ). +noun( 'moloch', '-', proper, _ ). +noun( 'mon', '-', proper, _ ). +noun( 'monaco', '-', proper, loc ). +noun( 'monaghan', '-', proper, loc ). +noun( 'monchengladbach', '-', proper, loc ). +noun( 'monday', 'mondays', count, _ ). +noun( 'monday', '-', proper, _ ). +noun( 'monegasque', 'monegasques', count, _ ). +noun( 'mongol', 'mongols', both, _ ). +noun( 'mongolia', '-', proper, loc ). +noun( 'mongolian', 'mongolians', both, _ ). +noun( 'monica', '-', proper, per ). +noun( 'monifieth', '-', proper, loc ). +noun( 'monmouth', '-', proper, loc ). +noun( 'monsieur', 'messieurs', count, _ ). +noun( 'monsignor', 'monsignors', count, _ ). +noun( 'montana', '-', proper, loc ). +noun( 'monterrey', '-', proper, loc ). +noun( 'montevideo', '-', proper, loc ). +noun( 'montreal', '-', proper, loc ). +noun( 'montrose', '-', proper, loc ). +noun( 'montserrat', '-', proper, loc ). +noun( 'montserratian', 'montserratians', count, _ ). +noun( 'monza', '-', proper, loc ). +noun( 'moor', 'moors', count, _ ). +noun( 'morecambe', '-', proper, loc ). +noun( 'morley', '-', proper, loc ). +noun( 'mormon', 'mormons', count, _ ). +noun( 'mormonism', '-', mass, _ ). +noun( 'moroccan', 'moroccans', count, _ ). +noun( 'morocco', '-', proper, loc ). +noun( 'morpeth', '-', proper, loc ). +noun( 'morpheus', '-', proper, _ ). +noun( 'morse', '-', mass, _ ). +noun( 'moscow', '-', proper, loc ). +noun( 'moslem', 'moslems', count, _ ). +noun( 'mossley', '-', proper, loc ). +noun( 'motherwell', '-', proper, loc ). +noun( 'mountain ash', '-', proper, loc ). +noun( 'mountie', 'mounties', count, _ ). +noun( 'mozambican', 'mozambicans', count, _ ). +noun( 'mozambique', '-', proper, loc ). +noun( 'mr', '-', proper, per ). +noun( 'mrs', '-', proper, per ). +noun( 'ms', '-', proper, per ). +noun( 'mt', '-', proper, _ ). +noun( 'muhammad', '-', proper, _ ). +noun( 'muhammadan', 'muhammadans', count, _ ). +noun( 'muhammadanism', '-', mass, _ ). +noun( 'mukden', '-', proper, loc ). +noun( 'mulheim', '-', proper, loc ). +noun( 'mulhouse', '-', proper, loc ). +noun( 'multan', '-', proper, loc ). +noun( 'munich', '-', proper, loc ). +noun( 'munster', '-', proper, loc ). +noun( 'muriel', '-', proper, per ). +noun( 'murton', '-', proper, loc ). +noun( 'muscovite', 'muscovites', count, _ ). +noun( 'muscovy', 'muscovies', count, _ ). +noun( 'muslim', 'muslims', count, _ ). +noun( 'musselburgh', '-', proper, loc ). +noun( 'myra', '-', proper, per ). +noun( 'naafi', '-', count, _ ). +noun( 'nasa', '-', proper, _ ). +noun( 'nato', '-', proper, _ ). +noun( 'nb', '-', proper, _ ). +noun( 'nco', '-', count, _ ). +noun( 'nhs', '-', count, _ ). +noun( 'nspcc', '-', count, _ ). +noun( 'nt', '-', count, _ ). +noun( 'nagoya', '-', proper, loc ). +noun( 'nagpur', '-', proper, loc ). +noun( 'nailsea', '-', proper, loc ). +noun( 'nairn', '-', proper, loc ). +noun( 'nairobi', '-', proper, loc ). +noun( 'namibia', '-', proper, loc ). +noun( 'namibian', 'namibians', count, _ ). +noun( 'nanchang', '-', proper, loc ). +noun( 'nancy', '-', proper, per ). +noun( 'nanking', '-', proper, loc ). +noun( 'nanning', '-', proper, loc ). +noun( 'nantwich', '-', proper, loc ). +noun( 'naomi', '-', proper, per ). +noun( 'naples', '-', proper, loc ). +noun( 'napoli', '-', proper, loc ). +noun( 'narborough', '-', proper, loc ). +noun( 'nat', '-', proper, per ). +noun( 'natalie', '-', proper, per ). +noun( 'nathaniel', '-', proper, per ). +noun( 'nauru', '-', proper, loc ). +noun( 'nauruan', 'nauruans', both, _ ). +noun( 'nazi', 'nazis', count, _ ). +noun( 'nazism', '-', mass, _ ). +noun( 'neapolitan', 'neapolitans', count, _ ). +noun( 'neath', '-', proper, loc ). +noun( 'nebraska', '-', proper, loc ). +noun( 'ned', '-', proper, per ). +noun( 'neddy', '-', proper, per ). +noun( 'negress', 'negresses', count, _ ). +noun( 'negro', 'negroes', count, _ ). +noun( 'negroid', 'negroids', count, _ ). +noun( 'negus', 'neguses', count, _ ). +noun( 'neil', '-', proper, per ). +noun( 'nell', '-', proper, per ). +noun( 'nelly', '-', count, _ ). +noun( 'nelly', '-', proper, per ). +noun( 'nelson', '-', proper, loc ). +noun( 'nepal', '-', proper, loc ). +noun( 'nepalese', 'nepalese', count, _ ). +noun( 'nepali', 'nepalis', both, _ ). +noun( 'neptune', '-', proper, _ ). +noun( 'neston', '-', proper, loc ). +noun( 'nestor', '-', proper, _ ). +noun( 'netherlander', 'netherlanders', count, _ ). +noun( 'netherlands', '-', proper, loc ). +noun( 'netley', '-', proper, loc ). +noun( 'neuss', '-', proper, loc ). +noun( 'nevada', '-', proper, loc ). +noun( 'neville', '-', proper, per ). +noun( 'new cumnock', '-', proper, loc ). +noun( 'new mills', '-', proper, loc ). +noun( 'new orleans', '-', proper, loc ). +noun( 'new tredegar', '-', proper, loc ). +noun( 'new windsor', '-', proper, loc ). +noun( 'new york', '-', proper, loc ). +noun( 'newark', '-', proper, loc ). +noun( 'newarthill', '-', proper, loc ). +noun( 'newbiggin', '-', proper, loc ). +noun( 'newbury', '-', proper, loc ). +noun( 'newcastle', '-', proper, loc ). +noun( 'newcastle upon tyne', '-', proper, loc ). +noun( 'newcastle-under-lyme', '-', proper, loc ). +noun( 'newfoundland', '-', proper, loc ). +noun( 'newham', '-', proper, loc ). +noun( 'newhaven', '-', proper, loc ). +noun( 'newmains', '-', proper, loc ). +noun( 'newmarket', '-', mass, _ ). +noun( 'newmarket', '-', proper, loc ). +noun( 'newport', '-', proper, loc ). +noun( 'newport pagnell', '-', proper, loc ). +noun( 'newquay', '-', proper, loc ). +noun( 'newry', '-', proper, loc ). +noun( 'newton abbot', '-', proper, loc ). +noun( 'newton aycliffe', '-', proper, loc ). +noun( 'newton mearns', '-', proper, loc ). +noun( 'newton-le-willows', '-', proper, loc ). +noun( 'newtonian', 'newtonians', count, _ ). +noun( 'newtown', '-', proper, loc ). +noun( 'nicaragua', '-', proper, loc ). +noun( 'nicaraguan', 'nicaraguans', count, _ ). +noun( 'nice', '-', proper, loc ). +noun( 'nicholas', '-', proper, per ). +noun( 'nick', '-', proper, per ). +noun( 'nicola', '-', proper, per ). +noun( 'nicole', '-', proper, per ). +noun( 'nigel', '-', proper, per ). +noun( 'niger', '-', proper, loc ). +noun( 'nigeria', '-', proper, loc ). +noun( 'nigerian', 'nigerians', count, _ ). +noun( 'nigerien', 'nigeriens', count, _ ). +noun( 'nijmegen', '-', proper, loc ). +noun( 'nimrod', '-', proper, _ ). +noun( 'niobe', '-', proper, _ ). +noun( 'nissen', '-', proper, _ ). +noun( 'noah', '-', proper, _ ). +noun( 'nobel', '-', proper, _ ). +noun( 'noel', 'noels', count, _ ). +noun( 'noel', '-', proper, per ). +noun( 'nora', '-', proper, per ). +noun( 'nordic', 'nordics', count, _ ). +noun( 'norfolk', '-', proper, loc ). +noun( 'norman', 'normans', count, _ ). +noun( 'norman', '-', proper, per ). +noun( 'normanton', '-', proper, loc ). +noun( 'normantown', '-', proper, loc ). +noun( 'norse', '-', mass, _ ). +noun( 'north walsham', '-', proper, loc ). +noun( 'northallerton', '-', proper, loc ). +noun( 'northam', '-', proper, loc ). +noun( 'northampton', '-', proper, loc ). +noun( 'northamptonshire', '-', proper, loc ). +noun( 'northman', 'northmen', count, _ ). +noun( 'northumberland', '-', proper, loc ). +noun( 'northwich', '-', proper, loc ). +noun( 'norton', '-', proper, loc ). +noun( 'norway', '-', proper, loc ). +noun( 'norwegian', 'norwegians', both, _ ). +noun( 'norwich', '-', proper, loc ). +noun( 'nottingham', '-', proper, loc ). +noun( 'nottinghamshire', '-', proper, loc ). +noun( 'nov', '-', proper, _ ). +noun( 'nova scotia', '-', proper, loc ). +noun( 'novara', '-', proper, loc ). +noun( 'november', 'novembers', count, _ ). +noun( 'november', '-', proper, _ ). +noun( 'novokuznetsk', '-', proper, loc ). +noun( 'novosibirsk', '-', proper, loc ). +noun( 'nuneaton', '-', proper, loc ). +noun( 'nurenburg', '-', proper, loc ). +noun( 'o-level', 'o-levels', count, _ ). +noun( 'oap', '-', count, _ ). +noun( '-', 'oap\'s', count, _ ). +noun( 'oau', '-', count, _ ). +noun( 'oecd', '-', count, _ ). +noun( 'oed', '-', count, _ ). +noun( 'opec', '-', proper, _ ). +noun( 'ot', '-', count, _ ). +noun( 'oakengates', '-', proper, loc ). +noun( 'oban', '-', proper, loc ). +noun( 'oberhausen', '-', proper, loc ). +noun( 'occident', '-', proper, _ ). +noun( 'occidental', 'occidentals', count, _ ). +noun( 'ockbrook', '-', proper, loc ). +noun( 'ockendon', '-', proper, loc ). +noun( 'oct', '-', proper, _ ). +noun( 'october', 'octobers', count, _ ). +noun( 'october', '-', proper, _ ). +noun( 'odessa', '-', proper, loc ). +noun( 'oedipus', '-', proper, _ ). +noun( 'offaly', '-', proper, loc ). +noun( 'offenbach', '-', proper, loc ). +noun( 'ogmore valley', '-', proper, loc ). +noun( 'ohio', '-', proper, loc ). +noun( 'oklahoma', '-', proper, loc ). +noun( 'oklahoma city', '-', proper, loc ). +noun( 'old windsor', '-', proper, loc ). +noun( 'oldenburg', '-', proper, loc ). +noun( 'oldham', '-', proper, loc ). +noun( 'oldland', '-', proper, loc ). +noun( 'olive', '-', proper, per ). +noun( 'oliver', '-', proper, per ). +noun( 'olivia', '-', proper, per ). +noun( 'ollerton', '-', proper, loc ). +noun( 'ollie', '-', proper, per ). +noun( 'olympiad', 'olympiads', count, _ ). +noun( 'olympian', 'olympians', count, _ ). +noun( 'olympics', '-', proper, _ ). +noun( 'oman', '-', proper, loc ). +noun( 'omani', 'omanis', count, _ ). +noun( 'omsk', '-', proper, loc ). +noun( 'ongar', '-', proper, loc ). +noun( 'ontario', '-', proper, loc ). +noun( 'orangeman', 'orangemen', count, _ ). +noun( 'oregon', '-', proper, loc ). +noun( 'orkney', '-', proper, loc ). +noun( 'orleans', '-', proper, loc ). +noun( 'ormskirk', '-', proper, loc ). +noun( 'osaka', '-', proper, loc ). +noun( 'oscar', 'oscars', count, _ ). +noun( 'oscar', '-', proper, per ). +noun( 'oslo', '-', proper, loc ). +noun( 'osnabruck', '-', proper, loc ). +noun( 'ossett', '-', proper, loc ). +noun( 'oswald', '-', proper, per ). +noun( 'oswestry', '-', proper, loc ). +noun( 'otago', '-', proper, loc ). +noun( 'otley', '-', proper, loc ). +noun( 'ottawa', '-', proper, loc ). +noun( 'oviedo', '-', proper, loc ). +noun( 'oxbridge', '-', proper, _ ). +noun( 'oxford', '-', proper, loc ). +noun( 'oxfordshire', '-', proper, loc ). +noun( 'oxon', '-', proper, _ ). +noun( 'oxonian', 'oxonians', count, _ ). +noun( 'oxted', '-', proper, loc ). +noun( 'ozzie', '-', proper, per ). +noun( 'pa', '-', count, _ ). +noun( 'paye', '-', proper, _ ). +noun( 'pc', '-', proper, per ). +noun( 'pdsa', '-', count, _ ). +noun( 'pe', '-', mass, _ ). +noun( 'plc', '-', proper, _ ). +noun( 'pm', '-', count, _ ). +noun( 'po', '-', count, _ ). +noun( 'pow', '-', count, _ ). +noun( 'pr', '-', mass, _ ). +noun( 'pt', '-', mass, _ ). +noun( 'pta', '-', count, _ ). +noun( 'pto', '-', proper, _ ). +noun( 'pacific', '-', proper, _ ). +noun( 'paddy', 'paddies', count, _ ). +noun( 'paddy', '-', proper, per ). +noun( 'paddy-wagon', 'paddy-wagons', count, _ ). +noun( 'padova', '-', proper, loc ). +noun( 'padua', '-', proper, loc ). +noun( 'paisley', '-', proper, loc ). +noun( 'pakistan', '-', proper, loc ). +noun( 'pakistani', 'pakistanis', count, _ ). +noun( 'palembang', '-', proper, loc ). +noun( 'palermo', '-', proper, loc ). +noun( 'palestine', '-', proper, loc ). +noun( 'palestinian', 'palestinians', count, _ ). +noun( 'pam', '-', proper, per ). +noun( 'pamela', '-', proper, per ). +noun( 'pamplona', '-', proper, loc ). +noun( 'panama', '-', proper, loc ). +noun( 'panamanian', 'panamanians', count, _ ). +noun( 'paotow', '-', proper, loc ). +noun( 'papua', '-', proper, loc ). +noun( 'papuan', 'papuans', count, _ ). +noun( 'paraguay', '-', proper, loc ). +noun( 'paraguayan', 'paraguayans', count, _ ). +noun( 'paris', '-', proper, loc ). +noun( 'parisian', 'parisians', count, _ ). +noun( 'parma', '-', proper, loc ). +noun( 'parmesan', '-', mass, _ ). +noun( 'parsee', 'parsees', count, _ ). +noun( 'pashto', '-', mass, _ ). +noun( 'passover', 'passovers', count, _ ). +noun( 'pat', '-', proper, per ). +noun( 'patience', '-', proper, per ). +noun( 'patrai', '-', proper, loc ). +noun( 'patricia', '-', proper, per ). +noun( 'patrick', '-', proper, per ). +noun( 'patty', '-', proper, per ). +noun( 'paul', '-', proper, per ). +noun( 'paula', '-', proper, per ). +noun( 'pauline', '-', proper, per ). +noun( 'pax romana', '-', count, _ ). +noun( 'peacehaven', '-', proper, loc ). +noun( 'pearl', '-', proper, per ). +noun( 'peebles', '-', proper, loc ). +noun( 'peg', '-', proper, per ). +noun( 'peggy', '-', proper, per ). +noun( 'peking', '-', proper, loc ). +noun( 'pelton', '-', proper, loc ). +noun( 'pembroke', '-', proper, loc ). +noun( 'penarth', '-', proper, loc ). +noun( 'pendlebury', '-', proper, loc ). +noun( 'penelope', '-', proper, per ). +noun( 'penicuik', '-', proper, loc ). +noun( 'penki', '-', proper, loc ). +noun( 'pennsylvania', '-', proper, loc ). +noun( 'penny', '-', proper, per ). +noun( 'penrhyn', '-', proper, loc ). +noun( 'penrith', '-', proper, loc ). +noun( 'penryn', '-', proper, loc ). +noun( 'pentateuch', 'pentateuchs', count, _ ). +noun( 'pentecost', '-', mass, _ ). +noun( 'penzance', '-', proper, loc ). +noun( 'percy', '-', proper, per ). +noun( 'perm', '-', proper, loc ). +noun( 'pershore', '-', proper, loc ). +noun( 'persia', '-', proper, loc ). +noun( 'persian', 'persians', count, _ ). +noun( 'perth', '-', proper, loc ). +noun( 'peru', '-', proper, loc ). +noun( 'perugia', '-', proper, loc ). +noun( 'peruvian', 'peruvians', count, _ ). +noun( 'pescara', '-', proper, loc ). +noun( 'pete', '-', proper, per ). +noun( 'peter', '-', proper, per ). +noun( 'peterborough', '-', proper, loc ). +noun( 'peterhead', '-', proper, loc ). +noun( 'peterlee', '-', proper, loc ). +noun( 'petersfield', '-', proper, loc ). +noun( 'phd', '-', count, _ ). +noun( 'pharaoh', 'pharaohs', count, _ ). +noun( 'pharisee', 'pharisees', count, _ ). +noun( 'phil', '-', proper, per ). +noun( 'philadelphia', '-', proper, loc ). +noun( 'philip', '-', proper, per ). +noun( 'philippa', '-', proper, per ). +noun( 'philippine', 'philippines', count, _ ). +noun( 'philippines', '-', proper, loc ). +noun( 'philistine', 'philistines', count, _ ). +noun( 'philistinism', '-', mass, _ ). +noun( 'phnom-penh', '-', proper, loc ). +noun( 'phoebe', '-', proper, per ). +noun( 'phoenix', '-', proper, loc ). +noun( 'phyllis', '-', proper, per ). +noun( 'piacenza', '-', proper, loc ). +noun( 'pill', '-', proper, loc ). +noun( 'piraeus', '-', proper, loc ). +noun( 'pisa', '-', proper, loc ). +noun( 'pisces', '-', proper, _ ). +noun( 'pittsburgh', '-', proper, loc ). +noun( 'plimsoll', 'plimsolls', count, _ ). +noun( 'pluto', '-', proper, _ ). +noun( 'plymouth', '-', proper, loc ). +noun( 'poland', '-', proper, loc ). +noun( 'polaris', '-', count, _ ). +noun( 'polaroid', '-', mass, _ ). +noun( 'pole', 'poles', count, _ ). +noun( 'polish', '-', mass, _ ). +noun( 'polly', '-', proper, per ). +noun( 'pont-llan-fraith', '-', proper, loc ). +noun( 'pontardawe', '-', proper, loc ). +noun( 'pontardulais', '-', proper, loc ). +noun( 'pontefract', '-', proper, loc ). +noun( 'pontycymmer', '-', proper, loc ). +noun( 'pontypool', '-', proper, loc ). +noun( 'poole', '-', proper, loc ). +noun( 'poona', '-', proper, loc ). +noun( 'pope', 'popes', count, _ ). +noun( 'port glasgow', '-', proper, loc ). +noun( 'port talbot', '-', proper, loc ). +noun( 'porthcawl', '-', proper, loc ). +noun( 'porthmadog', '-', proper, loc ). +noun( 'portishead', '-', proper, loc ). +noun( 'portland', '-', proper, loc ). +noun( 'porto alegre', '-', proper, loc ). +noun( 'portsmouth', '-', proper, loc ). +noun( 'portugal', '-', proper, loc ). +noun( 'portuguese', 'portuguese', both, _ ). +noun( 'potsdam', '-', proper, loc ). +noun( 'potters bar', '-', proper, loc ). +noun( 'powys', '-', proper, loc ). +noun( 'poynton', '-', proper, loc ). +noun( 'poznan', '-', proper, loc ). +noun( 'prague', '-', proper, loc ). +noun( 'prato', '-', proper, loc ). +noun( 'pre-raphaelite', 'pre-raphaelites', count, _ ). +noun( 'pres', '-', count, _ ). +noun( 'presbyterian', 'presbyterians', count, _ ). +noun( 'presbyterianism', '-', mass, _ ). +noun( 'prescot', '-', proper, loc ). +noun( 'prestatyn', '-', proper, loc ). +noun( 'preston', '-', proper, loc ). +noun( 'prestonpans', '-', proper, loc ). +noun( 'prestwich', '-', proper, loc ). +noun( 'prestwick', '-', proper, loc ). +noun( 'pretoria', '-', proper, loc ). +noun( 'princes risborough', '-', proper, loc ). +noun( 'priscilla', '-', proper, per ). +noun( 'prof', '-', proper, per ). +noun( 'protestant', 'protestants', count, _ ). +noun( 'protestantism', '-', mass, _ ). +noun( 'providence', '-', proper, loc ). +noun( 'pru', '-', proper, per ). +noun( 'prudence', '-', proper, per ). +noun( 'prudhoe', '-', proper, loc ). +noun( 'prussian', 'prussians', count, _ ). +noun( 'pte', '-', proper, per ). +noun( 'pty', '-', proper, _ ). +noun( 'pudsey', '-', proper, loc ). +noun( 'pullman', 'pullmans', count, _ ). +noun( 'punch', 'punches', count, _ ). +noun( 'pusan', '-', proper, loc ). +noun( 'pwllheli', '-', proper, loc ). +noun( 'pyle', '-', proper, loc ). +noun( 'pyongyang', '-', proper, loc ). +noun( 'qc', '-', count, _ ). +noun( 'qed', '-', proper, _ ). +noun( 'qatar', '-', proper, loc ). +noun( 'qatari', 'qataris', count, _ ). +noun( 'quai d\'orsay', '-', count, _ ). +noun( 'quaker', 'quakers', count, _ ). +noun( 'quebec', '-', proper, loc ). +noun( 'queenborough-in-sheppey', '-', proper, loc ). +noun( 'queensbury', '-', proper, loc ). +noun( 'queensferry', '-', proper, loc ). +noun( 'queensland', '-', proper, loc ). +noun( 'quentin', '-', proper, per ). +noun( 'quinquagesima', 'quinquagesimas', count, _ ). +noun( 'quinquagesima', '-', proper, _ ). +noun( 'quito', '-', proper, loc ). +noun( 'quonset', 'quonsets', count, _ ). +noun( 'r\"ontgen', 'r\"ontgens', count, _ ). +noun( 'ra', '-', count, _ ). +noun( 'rada', '-', proper, _ ). +noun( 'raf', '-', count, _ ). +noun( 'rc', '-', proper, _ ). +noun( 'rip', '-', proper, _ ). +noun( 'rm', '-', count, _ ). +noun( 'rn', '-', count, _ ). +noun( 'rspca', '-', count, _ ). +noun( 'rsvp', '-', proper, _ ). +noun( 'rachel', '-', proper, per ). +noun( 'radcliffe', '-', proper, loc ). +noun( 'radcliffe on trent', '-', proper, loc ). +noun( 'radlett', '-', proper, loc ). +noun( 'radstock', '-', proper, loc ). +noun( 'rainford', '-', proper, loc ). +noun( 'ralph', '-', proper, per ). +noun( 'ramadan', 'ramadans', count, _ ). +noun( 'ramadan', '-', proper, _ ). +noun( 'ramsbottom', '-', proper, loc ). +noun( 'ramsgate', '-', proper, loc ). +noun( 'randolph', '-', proper, per ). +noun( 'rangoon', '-', proper, loc ). +noun( 'ravenna', '-', proper, loc ). +noun( 'rawtenstall', '-', proper, loc ). +noun( 'ray', '-', proper, per ). +noun( 'raymond', '-', proper, per ). +noun( 'rd', '-', proper, _ ). +noun( 'reading', '-', proper, loc ). +noun( 'realtor', 'realtors', count, _ ). +noun( 'rebecca', '-', proper, per ). +noun( 'recife', '-', proper, loc ). +noun( 'recklinghausen', '-', proper, loc ). +noun( 'redbridge', '-', proper, loc ). +noun( 'redditch', '-', proper, loc ). +noun( 'redruth', '-', proper, loc ). +noun( 'reg', '-', proper, per ). +noun( 'regensburg', '-', proper, loc ). +noun( 'regina', '-', proper, _ ). +noun( 'reginald', '-', proper, per ). +noun( 'reich', 'reichs', count, _ ). +noun( 'reigate', '-', proper, loc ). +noun( 'remscheid', '-', proper, loc ). +noun( 'renfrew', '-', proper, loc ). +noun( 'rennes', '-', proper, loc ). +noun( 'retford', '-', proper, loc ). +noun( 'rev', '-', proper, per ). +noun( 'revd', '-', proper, per ). +noun( 'rex', '-', proper, per ). +noun( 'reykjavik', '-', proper, loc ). +noun( 'rheims', '-', proper, loc ). +noun( 'rheydt', '-', proper, loc ). +noun( 'rhine', '-', proper, _ ). +noun( 'rhinestone', 'rhinestones', count, _ ). +noun( 'rhode', '-', proper, loc ). +noun( 'rhondda', '-', proper, loc ). +noun( 'rhosllanerchrugog', '-', proper, loc ). +noun( 'rhyl', '-', proper, loc ). +noun( 'rhymney', '-', proper, loc ). +noun( 'richard', '-', proper, per ). +noun( 'richmond', '-', proper, loc ). +noun( 'richmond upon thames', '-', proper, loc ). +noun( 'rick', '-', proper, per ). +noun( 'rickmansworth', '-', proper, loc ). +noun( 'ricky', '-', proper, per ). +noun( 'riesling', 'rieslings', count, _ ). +noun( 'riga', '-', proper, loc ). +noun( 'rijeka', '-', proper, loc ). +noun( 'rimini', '-', proper, loc ). +noun( 'ringwood', '-', proper, loc ). +noun( 'rio de janeiro', '-', proper, loc ). +noun( 'ripley', '-', proper, loc ). +noun( 'ripon', '-', proper, loc ). +noun( 'risborough', '-', proper, loc ). +noun( 'risca', '-', proper, loc ). +noun( 'rishton', '-', proper, loc ). +noun( 'rita', '-', proper, per ). +noun( 'riviera', '-', proper, _ ). +noun( 'rob', '-', proper, per ). +noun( 'robert', '-', proper, per ). +noun( 'robin', '-', proper, per ). +noun( 'rochdale', '-', proper, loc ). +noun( 'rochester', '-', proper, loc ). +noun( 'rod', '-', proper, per ). +noun( 'rodney', '-', proper, per ). +noun( 'roentgen', 'roentgens', count, _ ). +noun( 'roger', '-', proper, per ). +noun( 'romaic', '-', mass, _ ). +noun( 'roman', 'romans', count, _ ). +noun( 'romanesque', '-', mass, _ ). +noun( 'romania', '-', proper, loc ). +noun( 'romanian', 'romanians', both, _ ). +noun( 'romany', 'romanies', both, _ ). +noun( 'rome', '-', proper, loc ). +noun( 'romsey', '-', proper, loc ). +noun( 'ron', '-', proper, per ). +noun( 'ronald', '-', proper, per ). +noun( 'roneo', 'roneos', count, _ ). +noun( 'ronnie', '-', proper, per ). +noun( 'roquefort', '-', mass, _ ). +noun( 'rosalie', '-', proper, per ). +noun( 'rosalind', '-', proper, per ). +noun( 'rosamund', '-', proper, per ). +noun( 'rosario', '-', proper, loc ). +noun( 'roscommon', '-', proper, loc ). +noun( 'rose', '-', proper, per ). +noun( 'rosemary', '-', proper, per ). +noun( 'rosie', '-', proper, per ). +noun( 'roslyn', '-', proper, per ). +noun( 'ross-on-wye', '-', proper, loc ). +noun( 'rossington', '-', proper, loc ). +noun( 'rosslare', '-', proper, loc ). +noun( 'rostock', '-', proper, loc ). +noun( 'rostov-na-donu', '-', proper, loc ). +noun( 'rotarian', 'rotarians', count, _ ). +noun( 'rotherham', '-', proper, loc ). +noun( 'rothesay', '-', proper, loc ). +noun( 'rothwell', '-', proper, loc ). +noun( 'rotterdam', '-', proper, loc ). +noun( 'roubaix', '-', proper, loc ). +noun( 'rouen', '-', proper, loc ). +noun( 'roundhead', 'roundheads', count, _ ). +noun( 'rowlands gill', '-', proper, loc ). +noun( 'roy', '-', proper, per ). +noun( 'royston', '-', proper, loc ). +noun( 'rt hon', '-', proper, _ ). +noun( 'rubicon', 'rubicons', count, _ ). +noun( 'ruddington', '-', proper, loc ). +noun( 'rudolf', '-', proper, per ). +noun( 'rudy', '-', proper, per ). +noun( 'rugby', '-', proper, loc ). +noun( 'rugeley', '-', proper, loc ). +noun( 'runcorn', '-', proper, loc ). +noun( 'rupert', '-', proper, per ). +noun( 'russia', '-', proper, loc ). +noun( 'russian', 'russians', both, _ ). +noun( 'ruth', '-', proper, per ). +noun( 'rutherglen', '-', proper, loc ). +noun( 'rutland', '-', proper, loc ). +noun( 'rwanda', '-', proper, loc ). +noun( 'rwandan', 'rwandans', count, _ ). +noun( 'ryde', '-', proper, loc ). +noun( 'ryehill', '-', proper, loc ). +noun( 'salt', '-', proper, _ ). +noun( 'sos', '-', count, _ ). +noun( '-', 'soss', count, _ ). +noun( 'srn', '-', count, _ ). +noun( 'ss', '-', count, _ ). +noun( 'std', '-', proper, _ ). +noun( 'saarbrucken', '-', proper, loc ). +noun( 'sabadeli', '-', proper, loc ). +noun( 'sabah', '-', proper, loc ). +noun( 'sabahan', 'sabahans', count, _ ). +noun( 'sabbath', 'sabbaths', count, _ ). +noun( 'sacramento', '-', proper, loc ). +noun( 'saffron walden', '-', proper, loc ). +noun( 'sagittarius', '-', proper, _ ). +noun( 'saigon', '-', proper, loc ). +noun( 'salamanca', '-', proper, loc ). +noun( 'sale', '-', proper, loc ). +noun( 'salerno', '-', proper, loc ). +noun( 'salford', '-', proper, loc ). +noun( 'salisbury', '-', proper, loc ). +noun( 'sally', '-', proper, per ). +noun( 'saltash', '-', proper, loc ). +noun( 'saltburn', '-', proper, loc ). +noun( 'saltcoats', '-', proper, loc ). +noun( 'salvador', '-', proper, loc ). +noun( 'salvadorean', 'salvadoreans', count, _ ). +noun( 'salzburg', '-', proper, loc ). +noun( 'sam', '-', proper, per ). +noun( 'samantha', '-', proper, per ). +noun( 'samaritan', 'samaritans', count, _ ). +noun( 'sammy', '-', proper, per ). +noun( 'samoa', '-', proper, loc ). +noun( 'samoan', 'samoans', count, _ ). +noun( 'samuel', '-', proper, per ). +noun( 'san antonio', '-', proper, loc ). +noun( 'san bernardino', '-', proper, loc ). +noun( 'san diego', '-', proper, loc ). +noun( 'san francisco', '-', proper, loc ). +noun( 'san jose', '-', proper, loc ). +noun( 'san juan', '-', proper, loc ). +noun( 'san marinese', 'san marinese', count, _ ). +noun( 'san marino', '-', proper, loc ). +noun( 'san sebastian', '-', proper, loc ). +noun( 'sandbach', '-', proper, loc ). +noun( 'sandown', '-', proper, loc ). +noun( 'sandra', '-', proper, per ). +noun( 'sandy', '-', proper, per ). +noun( 'sango', '-', mass, _ ). +noun( 'sanskrit', '-', mass, _ ). +noun( 'santa claus', 'santa clauses', count, _ ). +noun( 'santa claus', '-', proper, _ ). +noun( 'santander', '-', proper, loc ). +noun( 'santiago', '-', proper, loc ). +noun( 'santo domingo', '-', proper, loc ). +noun( 'santos', '-', proper, loc ). +noun( 'sao paolo', '-', proper, loc ). +noun( 'sapporo', '-', proper, loc ). +noun( 'sara', '-', proper, per ). +noun( 'saracen', 'saracens', count, _ ). +noun( 'sarah', '-', proper, per ). +noun( 'sarajevo', '-', proper, loc ). +noun( 'saratov', '-', proper, loc ). +noun( 'sarawak', '-', proper, loc ). +noun( 'sarawakian', 'sarawakians', count, _ ). +noun( 'sarisbury', '-', proper, loc ). +noun( 'saskatchewan', '-', proper, loc ). +noun( 'sassari', '-', proper, loc ). +noun( 'sassenach', 'sassenachs', count, _ ). +noun( 'sat', '-', proper, _ ). +noun( 'satan', 'satans', count, _ ). +noun( 'saturday', 'saturdays', count, _ ). +noun( 'saturday', '-', proper, _ ). +noun( 'saturn', '-', proper, _ ). +noun( 'sauchie', '-', proper, loc ). +noun( 'saudi arabia', '-', proper, loc ). +noun( 'saudi arabian', 'saudi arabians', count, _ ). +noun( 'sawbridgeworth', '-', proper, loc ). +noun( 'saxon', 'saxons', count, _ ). +noun( 'scandinavian', 'scandinavians', count, _ ). +noun( 'scarborough', '-', proper, loc ). +noun( 'schwerin', '-', proper, loc ). +noun( 'sci fi', '-', mass, _ ). +noun( 'scorpio', '-', proper, _ ). +noun( 'scot', 'scots', count, _ ). +noun( 'scotch', 'scotches', both, _ ). +noun( 'scotchman', 'scotchmen', count, _ ). +noun( 'scotchwoman', 'scotchwomen', count, _ ). +noun( 'scotland', '-', proper, loc ). +noun( 'scotland yard', '-', proper, _ ). +noun( 'scotsman', 'scotsmen', count, _ ). +noun( 'scotswoman', 'scotswomen', count, _ ). +noun( 'scrooge', 'scrooges', count, _ ). +noun( 'scunthorpe', '-', proper, loc ). +noun( 'scylla', 'scyllas', count, _ ). +noun( 'seaford', '-', proper, loc ). +noun( 'seaham', '-', proper, loc ). +noun( 'sealyham', 'sealyhams', count, _ ). +noun( 'seamus', '-', proper, per ). +noun( 'sean', '-', proper, per ). +noun( 'seaton burn', '-', proper, loc ). +noun( 'seaton delaval', '-', proper, loc ). +noun( 'seattle', '-', proper, loc ). +noun( 'secretary-general', 'secretary-generals', count, _ ). +noun( 'securicor', '-', proper, _ ). +noun( 'selby', '-', proper, loc ). +noun( 'selkirk', '-', proper, loc ). +noun( 'selsey', '-', proper, loc ). +noun( 'selston', '-', proper, loc ). +noun( 'semarang', '-', proper, loc ). +noun( 'semite', 'semites', count, _ ). +noun( 'senegal', '-', proper, loc ). +noun( 'senegalese', 'senegalese', count, _ ). +noun( 'seoul', '-', proper, loc ). +noun( 'sept', '-', proper, _ ). +noun( 'september', 'septembers', count, _ ). +noun( 'september', '-', proper, _ ). +noun( 'septuagint', 'septuagints', count, _ ). +noun( 'serbo-croat', '-', mass, _ ). +noun( 'serjeant-at-arms', 'serjeants-at-arms', count, _ ). +noun( 'sesotho', '-', mass, _ ). +noun( 'setswana', '-', mass, _ ). +noun( 'seven sisters', '-', proper, loc ). +noun( 'sevenoaks', '-', proper, loc ). +noun( 'sevilla', '-', proper, loc ). +noun( 'seville', '-', proper, loc ). +noun( 'seychelles', '-', proper, loc ). +noun( 'seychellois', 'seychellois', count, _ ). +noun( 'sgt', '-', proper, per ). +noun( 'shanghai', '-', proper, loc ). +noun( 'shanklin', '-', proper, loc ). +noun( 'sharon', '-', proper, per ). +noun( 'shavian', 'shavians', count, _ ). +noun( 'sheerness', '-', proper, loc ). +noun( 'sheffield', '-', proper, loc ). +noun( 'sheila', '-', proper, per ). +noun( 'shelford', '-', proper, loc ). +noun( 'shepshed', '-', proper, loc ). +noun( 'shepton mallet', '-', proper, loc ). +noun( 'sheraton', '-', mass, _ ). +noun( 'sherbourne', '-', proper, loc ). +noun( 'sheringham', '-', proper, loc ). +noun( 'shetland', '-', proper, loc ). +noun( 'shevington', '-', proper, loc ). +noun( 'shihkiachwang', '-', proper, loc ). +noun( 'shildon', '-', proper, loc ). +noun( 'shirebrook', '-', proper, loc ). +noun( 'shiremoor', '-', proper, loc ). +noun( 'shirley', '-', proper, per ). +noun( 'shotton', '-', proper, loc ). +noun( 'shotts', '-', proper, loc ). +noun( 'shrewsbury', '-', proper, loc ). +noun( 'shropshire', '-', proper, loc ). +noun( 'shrove tuesday', 'shrove tuesdays', count, _ ). +noun( 'shrove tuesday', '-', proper, _ ). +noun( 'siam', '-', proper, loc ). +noun( 'siamese', 'siamese', count, _ ). +noun( 'sian', '-', proper, loc ). +noun( 'sicilian', 'sicilians', count, _ ). +noun( 'sid', '-', proper, per ). +noun( 'sidmouth', '-', proper, loc ). +noun( 'sidney', '-', proper, per ). +noun( 'sierra leone', '-', proper, loc ). +noun( 'sierra leonian', 'sierra leonians', count, _ ). +noun( 'sikh', 'sikhs', count, _ ). +noun( 'sileby', '-', proper, loc ). +noun( 'silsden', '-', proper, loc ). +noun( 'silvia', '-', proper, per ). +noun( 'simon', '-', proper, per ). +noun( 'singapore', '-', proper, loc ). +noun( 'singaporean', 'singaporeans', count, _ ). +noun( 'sinhala', '-', mass, _ ). +noun( 'sinhalese', 'sinhalese', count, _ ). +noun( 'sining', '-', proper, loc ). +noun( 'sinn fein', '-', proper, _ ). +noun( 'sinologist', 'sinologists', count, _ ). +noun( 'sinology', '-', mass, _ ). +noun( 'sioux', 'sioux', count, _ ). +noun( 'sir roger de coverley', '-', count, _ ). +noun( 'siracusa', '-', proper, loc ). +noun( 'siswati', '-', mass, _ ). +noun( 'sittingbourne', '-', proper, loc ). +noun( 'skegness', '-', proper, loc ). +noun( 'skelmanthorpe', '-', proper, loc ). +noun( 'skelmersdale', '-', proper, loc ). +noun( 'skewen', '-', proper, loc ). +noun( 'skipton', '-', proper, loc ). +noun( 'skopje', '-', proper, loc ). +noun( 'slav', 'slavs', count, _ ). +noun( 'sleaford', '-', proper, loc ). +noun( 'sligo', '-', proper, loc ). +noun( 'slough', '-', proper, loc ). +noun( 'slovak', '-', mass, _ ). +noun( 'slovenian', 'slovenians', both, _ ). +noun( 'snr', '-', proper, _ ). +noun( 'soc', '-', count, _ ). +noun( 'sofia', '-', proper, loc ). +noun( 'soho', '-', proper, _ ). +noun( 'sol', '-', proper, _ ). +noun( 'solicitor-general', 'solicitor-generals', count, _ ). +noun( 'solihull', '-', proper, loc ). +noun( 'solingen', '-', proper, loc ). +noun( 'solon', '-', proper, _ ). +noun( 'somali', 'somalis', both, _ ). +noun( 'somalia', '-', proper, loc ). +noun( 'somalian', 'somalians', count, _ ). +noun( 'somercotes', '-', proper, loc ). +noun( 'somerset', '-', proper, loc ). +noun( 'sonia', '-', proper, per ). +noun( 'soochow', '-', proper, loc ). +noun( 'sophia', '-', proper, per ). +noun( 'sophie', '-', proper, per ). +noun( 'sotho', 'sothos', both, _ ). +noun( 'south kirkby', '-', proper, loc ). +noun( 'south normantown', '-', proper, loc ). +noun( 'south ockendon', '-', proper, loc ). +noun( 'south shields', '-', proper, loc ). +noun( 'southampton', '-', proper, loc ). +noun( 'southend-on-sea', '-', proper, loc ). +noun( 'southport', '-', proper, loc ). +noun( 'southwark', '-', proper, loc ). +noun( 'soviet', 'soviets', count, _ ). +noun( 'spain', '-', proper, loc ). +noun( 'spalding', '-', proper, loc ). +noun( 'spaniard', 'spaniards', count, _ ). +noun( 'spanish', '-', mass, _ ). +noun( 'spartan', 'spartans', count, _ ). +noun( 'spenborough', '-', proper, loc ). +noun( 'spennymoor', '-', proper, loc ). +noun( 'split', '-', proper, loc ). +noun( 'spode', '-', mass, _ ). +noun( 'springfield', '-', proper, loc ). +noun( 'sq', '-', proper, _ ). +noun( 'sr', '-', proper, per ). +noun( 'sri lanka', '-', proper, loc ). +noun( 'sri lankan', 'sri lankans', count, _ ). +noun( 'st', '-', proper, _ ). +noun( 'st albans', '-', proper, loc ). +noun( 'st andrews', '-', proper, loc ). +noun( 'st andrews major', '-', proper, loc ). +noun( 'st austell', '-', proper, loc ). +noun( 'st blazey', '-', proper, loc ). +noun( 'st helens', '-', proper, loc ). +noun( 'st ives', '-', proper, loc ). +noun( 'st louis', '-', proper, loc ). +noun( 'st neots', '-', proper, loc ). +noun( 'st paul', '-', proper, loc ). +noun( 'st petersburg', '-', proper, loc ). +noun( 'st stephen', '-', proper, loc ). +noun( 'sta', '-', proper, _ ). +noun( 'stafford', '-', proper, loc ). +noun( 'staffordshire', '-', proper, loc ). +noun( 'stakeford', '-', proper, loc ). +noun( 'stalybridge', '-', proper, loc ). +noun( 'stamford', '-', proper, loc ). +noun( 'stan', '-', proper, per ). +noun( 'stanford', '-', proper, loc ). +noun( 'stanley', '-', proper, per ). +noun( 'statehouse', 'statehouses', count, _ ). +noun( 'stella', '-', proper, per ). +noun( 'sten', '-', proper, _ ). +noun( 'stephanie', '-', proper, per ). +noun( 'stephen', '-', proper, per ). +noun( 'steve', '-', proper, per ). +noun( 'steven', '-', proper, per ). +noun( 'stevenage', '-', proper, loc ). +noun( 'stevenston', '-', proper, loc ). +noun( 'stewart', '-', proper, per ). +noun( 'steyning', '-', proper, loc ). +noun( 'stilton', 'stiltons', both, _ ). +noun( 'stirling', '-', proper, loc ). +noun( 'stockholm', '-', proper, loc ). +noun( 'stockport', '-', proper, loc ). +noun( 'stocksbridge', '-', proper, loc ). +noun( 'stoke-on-trent', '-', proper, loc ). +noun( 'stone', '-', proper, loc ). +noun( 'stonehouse', '-', proper, loc ). +noun( 'stornoway', '-', proper, loc ). +noun( 'stotfold', '-', proper, loc ). +noun( 'stourbridge', '-', proper, loc ). +noun( 'stourport-on-severn', '-', proper, loc ). +noun( 'stowmarket', '-', proper, loc ). +noun( 'stranraer', '-', proper, loc ). +noun( 'strasbourg', '-', proper, loc ). +noun( 'stratford-on-avon', '-', proper, loc ). +noun( 'strathaven', '-', proper, loc ). +noun( 'strathclyde', '-', proper, loc ). +noun( 'street', '-', proper, loc ). +noun( 'stretford', '-', proper, loc ). +noun( 'stroud', '-', proper, loc ). +noun( 'stuart', '-', proper, per ). +noun( 'studley', '-', proper, loc ). +noun( 'stuttgart', '-', proper, loc ). +noun( 'styx', '-', proper, _ ). +noun( 'suchow', '-', proper, loc ). +noun( 'sudan', '-', proper, loc ). +noun( 'sudanese', 'sudanese', count, _ ). +noun( 'sudbury', '-', proper, loc ). +noun( 'sue', '-', proper, per ). +noun( 'suffolk', '-', proper, loc ). +noun( 'sumatra', '-', proper, loc ). +noun( 'sumatran', 'sumatrans', count, _ ). +noun( 'sun', '-', proper, _ ). +noun( 'sunday', 'sundays', count, _ ). +noun( 'sunday', '-', proper, _ ). +noun( 'sunderland', '-', proper, loc ). +noun( 'supt', '-', proper, per ). +noun( 'surabaja', '-', proper, loc ). +noun( 'surrey', '-', proper, loc ). +noun( 'susan', '-', proper, per ). +noun( 'susanna', '-', proper, per ). +noun( 'susie', '-', proper, per ). +noun( 'sussex', '-', proper, loc ). +noun( 'sutton', '-', proper, loc ). +noun( 'sutton coldfield', '-', proper, loc ). +noun( 'sutton in ashfield', '-', proper, loc ). +noun( 'sutton-at-hone', '-', proper, loc ). +noun( 'suzanne', '-', proper, per ). +noun( 'sverdlovsk', '-', proper, loc ). +noun( 'swadlincote', '-', proper, loc ). +noun( 'swahili', '-', mass, _ ). +noun( 'swanage', '-', proper, loc ). +noun( 'swanley', '-', proper, loc ). +noun( 'swansea', '-', proper, loc ). +noun( 'swazi', 'swazis', both, _ ). +noun( 'swaziland', '-', proper, loc ). +noun( 'swede', 'swedes', count, _ ). +noun( 'sweden', '-', proper, loc ). +noun( 'swedish', '-', mass, _ ). +noun( 'swindon', '-', proper, loc ). +noun( 'swinton', '-', proper, loc ). +noun( 'swiss', 'swiss', count, _ ). +noun( 'switzerland', '-', proper, loc ). +noun( 'sydney', '-', proper, loc ). +noun( 'sylvia', '-', proper, per ). +noun( 'syracuse', '-', proper, loc ). +noun( 'syria', '-', proper, loc ). +noun( 'syrian', 'syrians', count, _ ). +noun( 'syston', '-', proper, loc ). +noun( 't-junction', 't-junctions', count, _ ). +noun( 't-shirt', 't-shirts', count, _ ). +noun( 't-square', 't-squares', count, _ ). +noun( 'tb', '-', mass, _ ). +noun( 'tnt', '-', mass, _ ). +noun( 'tuc', '-', count, _ ). +noun( 'tv', '-', count, _ ). +noun( '-', 'tvs', count, _ ). +noun( 'tadley', '-', proper, loc ). +noun( 'taegu', '-', proper, loc ). +noun( 'taffy', 'taffies', count, _ ). +noun( 'tahiti', '-', proper, loc ). +noun( 'tahitian', 'tahitians', count, _ ). +noun( 'taipei', '-', proper, loc ). +noun( 'taiwan', '-', proper, loc ). +noun( 'taiwanese', 'taiwanese', count, _ ). +noun( 'taiyuan', '-', proper, loc ). +noun( 'talmud', 'talmuds', count, _ ). +noun( 'tamil', 'tamils', both, _ ). +noun( 'tammany', '-', count, _ ). +noun( 'tampere', '-', proper, loc ). +noun( 'tamworth', '-', proper, loc ). +noun( 'tangshan', '-', proper, loc ). +noun( 'tanzania', '-', proper, loc ). +noun( 'tanzanian', 'tanzanians', count, _ ). +noun( 'taranaki', '-', proper, loc ). +noun( 'taranto', '-', proper, loc ). +noun( 'tarrasa', '-', proper, loc ). +noun( 'tashkent', '-', proper, loc ). +noun( 'tasmania', '-', proper, loc ). +noun( 'taunton', '-', proper, loc ). +noun( 'taurus', '-', proper, _ ). +noun( 'taverham', '-', proper, loc ). +noun( 'tavistock', '-', proper, loc ). +noun( 'tayside', '-', proper, loc ). +noun( 'tbilisi', '-', proper, loc ). +noun( 'te deum', 'te deums', count, _ ). +noun( 'tech', '-', count, _ ). +noun( 'technicolor', '-', mass, _ ). +noun( 'ted', 'teds', count, _ ). +noun( 'ted', '-', proper, per ). +noun( 'teddy', '-', proper, per ). +noun( 'teddy boy', 'teddy boys', count, _ ). +noun( 'teesside', '-', proper, loc ). +noun( 'teheran', '-', proper, loc ). +noun( 'teignmouth', '-', proper, loc ). +noun( 'tel-aviv', '-', proper, loc ). +noun( 'telford', '-', proper, loc ). +noun( 'telstar', '-', proper, _ ). +noun( 'tenby', '-', proper, loc ). +noun( 'tennessee', '-', proper, loc ). +noun( 'tenterden', '-', proper, loc ). +noun( 'terence', '-', proper, per ). +noun( 'teresa', '-', proper, per ). +noun( 'termi', '-', proper, loc ). +noun( 'terr', '-', proper, _ ). +noun( 'terry', '-', proper, per ). +noun( 'tess', '-', proper, per ). +noun( 'tessa', '-', proper, per ). +noun( 'teuton', 'teutons', count, _ ). +noun( 'tewkesbury', '-', proper, loc ). +noun( 'texan', 'texans', count, _ ). +noun( 'texas', '-', proper, loc ). +noun( 'thai', 'thais', both, _ ). +noun( 'thailand', '-', proper, loc ). +noun( 'thame', '-', proper, loc ). +noun( 'thanksgiving', 'thanksgivings', count, _ ). +noun( 'thatcham', '-', proper, loc ). +noun( 'theo', '-', proper, per ). +noun( 'theodore', '-', proper, per ). +noun( 'theresa', '-', proper, per ). +noun( 'thespian', 'thespians', count, _ ). +noun( 'thessaloniki', '-', proper, loc ). +noun( 'thetford', '-', proper, loc ). +noun( 'thionville', '-', proper, loc ). +noun( 'thirsk', '-', proper, loc ). +noun( 'thomas', '-', proper, per ). +noun( 'thornbury', '-', proper, loc ). +noun( 'thorne', '-', proper, loc ). +noun( 'thurcroft', '-', proper, loc ). +noun( 'thurmaston', '-', proper, loc ). +noun( 'thurrock', '-', proper, loc ). +noun( 'thurs', '-', proper, _ ). +noun( 'thursday', 'thursdays', count, _ ). +noun( 'thursday', '-', proper, _ ). +noun( 'thurso', '-', proper, loc ). +noun( 'tibet', '-', proper, loc ). +noun( 'tibetan', 'tibetans', both, _ ). +noun( 'tidworth', '-', proper, loc ). +noun( 'tientsin', '-', proper, loc ). +noun( 'tilburg', '-', proper, loc ). +noun( 'tilbury', '-', proper, loc ). +noun( 'tim', '-', proper, per ). +noun( 'timmy', '-', proper, per ). +noun( 'timothy', '-', proper, per ). +noun( 'tina', '-', proper, per ). +noun( 'tipperary', '-', proper, loc ). +noun( 'tiverton', '-', proper, loc ). +noun( 'tobago', '-', proper, loc ). +noun( 'tobagonian', 'tobagonians', count, _ ). +noun( 'toby', '-', proper, per ). +noun( 'todmorden', '-', proper, loc ). +noun( 'togo', '-', proper, loc ). +noun( 'togolese', 'togolese', count, _ ). +noun( 'tokay', '-', mass, _ ). +noun( 'tokyo', '-', proper, loc ). +noun( 'tom', '-', proper, per ). +noun( 'tommy', '-', proper, per ). +noun( 'tonbridge', '-', proper, loc ). +noun( 'tonga', '-', proper, loc ). +noun( 'tongan', 'tongans', both, _ ). +noun( 'tony', '-', proper, per ). +noun( 'tonyrefail', '-', proper, loc ). +noun( 'torbay', '-', proper, loc ). +noun( 'torino', '-', proper, loc ). +noun( 'toronto', '-', proper, loc ). +noun( 'tory', 'tories', count, _ ). +noun( 'totnes', '-', proper, loc ). +noun( 'toulon', '-', proper, loc ). +noun( 'toulouse', '-', proper, loc ). +noun( 'tours', '-', proper, loc ). +noun( 'tower hamlets', '-', proper, loc ). +noun( 'tracy', '-', proper, per ). +noun( 'tralee', '-', proper, loc ). +noun( 'tranent', '-', proper, loc ). +noun( 'trappist', 'trappists', count, _ ). +noun( 'tredegar', '-', proper, loc ). +noun( 'trevor', '-', proper, per ). +noun( 'trieste', '-', proper, loc ). +noun( 'tring', '-', proper, loc ). +noun( 'trinidad', '-', proper, loc ). +noun( 'trinidadian', 'trinidadians', count, _ ). +noun( 'trojan', 'trojans', count, _ ). +noun( 'troon', '-', proper, loc ). +noun( 'trowbridge', '-', proper, loc ). +noun( 'truro', '-', proper, loc ). +noun( 'tsar', 'tsars', count, _ ). +noun( 'tsarina', 'tsarinas', count, _ ). +noun( 'tsinan', '-', proper, loc ). +noun( 'tsingtao', '-', proper, loc ). +noun( 'tsitsihar', '-', proper, loc ). +noun( 'tswana', 'tswanas', both, _ ). +noun( 'tues', '-', proper, _ ). +noun( 'tuesday', 'tuesdays', count, _ ). +noun( 'tuesday', '-', proper, _ ). +noun( 'tullibody', '-', proper, loc ). +noun( 'tunbridge wells', '-', proper, loc ). +noun( 'tunis', '-', proper, loc ). +noun( 'tunisia', '-', proper, loc ). +noun( 'tunisian', 'tunisians', count, _ ). +noun( 'turin', '-', proper, loc ). +noun( 'turk', 'turks', count, _ ). +noun( 'turkey', '-', proper, loc ). +noun( 'turkish', '-', mass, _ ). +noun( 'turku', '-', proper, loc ). +noun( 'twelfth-night', 'twelfth-nights', count, _ ). +noun( 'twelfth-night', '-', proper, _ ). +noun( 'tyne', '-', proper, loc ). +noun( 'tynemouth', '-', proper, loc ). +noun( 'tyrone', '-', proper, loc ). +noun( 'tzupo', '-', proper, loc ). +noun( 'u-boat', 'u-boats', count, _ ). +noun( 'u-turn', 'u-turns', count, _ ). +noun( 'udi', '-', proper, _ ). +noun( 'ufo', '-', count, _ ). +noun( '-', 'ufo\'s', count, _ ). +noun( 'uk', '-', count, _ ). +noun( 'un', '-', count, _ ). +noun( 'unesco', '-', proper, _ ). +noun( 'unicef', '-', proper, _ ). +noun( 'us', '-', count, _ ). +noun( 'usa', '-', count, _ ). +noun( 'usaf', '-', count, _ ). +noun( 'usn', '-', count, _ ). +noun( 'uss', '-', count, _ ). +noun( 'ussr', '-', count, _ ). +noun( 'uddingston', '-', proper, loc ). +noun( 'udine', '-', proper, loc ). +noun( 'ufa', '-', proper, loc ). +noun( 'uganda', '-', proper, loc ). +noun( 'ugandan', 'ugandans', count, _ ). +noun( 'ulster', '-', proper, loc ). +noun( 'ulverston', '-', proper, loc ). +noun( 'unitarian', 'unitarians', count, _ ). +noun( 'unitarianism', '-', mass, _ ). +noun( 'univ', '-', proper, _ ). +noun( 'up holland', '-', proper, loc ). +noun( 'upton', '-', proper, loc ). +noun( 'uranus', '-', proper, _ ). +noun( 'urdu', '-', mass, _ ). +noun( 'ursula', '-', proper, per ). +noun( 'uruguay', '-', proper, loc ). +noun( 'uruguayan', 'uruguayans', count, _ ). +noun( 'urumchi', '-', proper, loc ). +noun( 'ushaw moor', '-', proper, loc ). +noun( 'utah', '-', proper, loc ). +noun( 'utopia', 'utopias', count, _ ). +noun( 'utrecht', '-', proper, loc ). +noun( 'uttoxeter', '-', proper, loc ). +noun( 'v and a', '-', count, _ ). +noun( 'vat', '-', mass, _ ). +noun( 'vc', '-', count, _ ). +noun( 'vd', '-', mass, _ ). +noun( 'vhf', '-', proper, _ ). +noun( 'vip', '-', count, _ ). +noun( '-', 'vips', count, _ ). +noun( 'vp', '-', count, _ ). +noun( 'vso', '-', proper, _ ). +noun( 'valencia', '-', proper, loc ). +noun( 'valenciennes', '-', proper, loc ). +noun( 'valladolid', '-', proper, loc ). +noun( 'vancouver', '-', proper, loc ). +noun( 'vandal', 'vandals', count, _ ). +noun( 'vanessa', '-', proper, per ). +noun( 'varanasi', '-', proper, loc ). +noun( 'vasteras', '-', proper, loc ). +noun( 'vatican', 'vaticans', count, _ ). +noun( 'venezia', '-', proper, loc ). +noun( 'venezuela', '-', proper, loc ). +noun( 'venezuelan', 'venezuelans', count, _ ). +noun( 'venice', '-', proper, loc ). +noun( 'ventnor', '-', proper, loc ). +noun( 'venus', '-', proper, _ ). +noun( 'vera', '-', proper, per ). +noun( 'vermont', '-', proper, loc ). +noun( 'vernon', '-', proper, per ). +noun( 'verona', '-', proper, loc ). +noun( 'veronica', '-', proper, per ). +noun( 'vic', '-', proper, per ). +noun( 'vicenza', '-', proper, loc ). +noun( 'vicky', '-', proper, per ). +noun( 'victor', '-', proper, per ). +noun( 'victoria', '-', proper, per ). +noun( 'victorian', 'victorians', count, _ ). +noun( 'victoriana', '-', mass, _ ). +noun( 'vienna', '-', proper, loc ). +noun( 'vietnam', '-', proper, loc ). +noun( 'vietnamese', 'vietnamese', both, _ ). +noun( 'viewpark', '-', proper, loc ). +noun( 'vigo', '-', proper, loc ). +noun( 'viking', 'vikings', count, _ ). +noun( 'vince', '-', proper, per ). +noun( 'vincent', '-', proper, per ). +noun( 'viola', '-', proper, per ). +noun( 'violet', '-', proper, per ). +noun( 'virginia', '-', mass, _ ). +noun( 'virginia', '-', proper, per ). +noun( 'virginia water', '-', proper, loc ). +noun( 'virgo', '-', proper, _ ). +noun( 'vitoria', '-', proper, loc ). +noun( 'viv', '-', proper, per ). +noun( 'vivian', '-', proper, per ). +noun( 'vivien', '-', proper, per ). +noun( 'vivienne', '-', proper, per ). +noun( 'volgograd', '-', proper, loc ). +noun( 'voronezh', '-', proper, loc ). +noun( 'vulgate', 'vulgates', count, _ ). +noun( 'wc', '-', count, _ ). +noun( '-', 'wcs', count, _ ). +noun( 'who', '-', count, _ ). +noun( 'wi', '-', count, _ ). +noun( 'wrac', '-', count, _ ). +noun( 'wraf', '-', count, _ ). +noun( 'wrns', '-', count, _ ). +noun( 'wakefield', '-', proper, loc ). +noun( 'wales', '-', proper, loc ). +noun( 'wall street', '-', proper, _ ). +noun( 'wallace', '-', proper, per ). +noun( 'wallasey', '-', proper, loc ). +noun( 'wallingford', '-', proper, loc ). +noun( 'wallsend', '-', proper, loc ). +noun( 'wally', '-', proper, per ). +noun( 'walsall', '-', proper, loc ). +noun( 'walsham', '-', proper, loc ). +noun( 'walter', '-', proper, per ). +noun( 'waltham forest', '-', proper, loc ). +noun( 'walton', '-', proper, loc ). +noun( 'wandsworth', '-', proper, loc ). +noun( 'wantage', '-', proper, loc ). +noun( 'ware', '-', proper, loc ). +noun( 'warley', '-', proper, loc ). +noun( 'warminster', '-', proper, loc ). +noun( 'warrington', '-', proper, loc ). +noun( 'warsaw', '-', proper, loc ). +noun( 'warsop', '-', proper, loc ). +noun( 'warwick', '-', proper, loc ). +noun( 'warwickshire', '-', proper, loc ). +noun( 'washington', '-', proper, loc ). +noun( 'washington dc', '-', proper, loc ). +noun( 'waterford', '-', proper, loc ). +noun( 'waterloo', '-', proper, _ ). +noun( 'watford', '-', proper, loc ). +noun( 'wayne', '-', proper, per ). +noun( 'wear', '-', proper, loc ). +noun( 'wed', '-', proper, _ ). +noun( 'wednesday', 'wednesdays', count, _ ). +noun( 'wednesday', '-', proper, _ ). +noun( 'wellingborough', '-', proper, loc ). +noun( 'wellington', '-', proper, loc ). +noun( 'wells', '-', proper, loc ). +noun( 'welsh', '-', mass, _ ). +noun( 'welshman', 'welshmen', count, _ ). +noun( 'welshpool', '-', proper, loc ). +noun( 'welwyn', '-', proper, loc ). +noun( 'welwyn garden city', '-', proper, loc ). +noun( 'wendover', '-', proper, loc ). +noun( 'wendy', '-', proper, per ). +noun( 'wesleyan', 'wesleyans', count, _ ). +noun( 'west bromwich', '-', proper, loc ). +noun( 'westbury', '-', proper, loc ). +noun( 'westhoughton', '-', proper, loc ). +noun( 'westmeath', '-', proper, loc ). +noun( 'westminster', '-', proper, loc ). +noun( 'westmoreland', '-', proper, loc ). +noun( 'weston-super-mare', '-', proper, loc ). +noun( 'wetherby', '-', proper, loc ). +noun( 'wexford', '-', proper, loc ). +noun( 'weymouth', '-', proper, loc ). +noun( 'whaley bridge', '-', proper, loc ). +noun( 'wheatley hill', '-', proper, loc ). +noun( 'whig', 'whigs', count, _ ). +noun( 'whit', 'whits', count, _ ). +noun( 'whitburn', '-', proper, loc ). +noun( 'whitby', '-', proper, loc ). +noun( 'whitchurch', '-', proper, loc ). +noun( 'whitehall', '-', proper, _ ). +noun( 'whitehaven', '-', proper, loc ). +noun( 'whitley bay', '-', proper, loc ). +noun( 'whitstable', '-', proper, loc ). +noun( 'whitsun', 'whitsuns', count, _ ). +noun( 'whitsun', '-', proper, _ ). +noun( 'whitsuntide', 'whitsuntides', count, _ ). +noun( 'whitsuntide', '-', proper, _ ). +noun( 'whittle-le-woods', '-', proper, loc ). +noun( 'whittlesey', '-', proper, loc ). +noun( 'whitworth', '-', proper, loc ). +noun( 'wick', '-', proper, loc ). +noun( 'wickford', '-', proper, loc ). +noun( 'wicklow', '-', proper, loc ). +noun( 'widnes', '-', proper, loc ). +noun( 'wiesbaden', '-', proper, loc ). +noun( 'wigan', '-', proper, loc ). +noun( 'wight', '-', proper, loc ). +noun( 'wilf', '-', proper, per ). +noun( 'wilfrid', '-', proper, per ). +noun( 'wilhelmshaven', '-', proper, loc ). +noun( 'will', '-', proper, per ). +noun( 'william', '-', proper, per ). +noun( 'willie', '-', proper, per ). +noun( 'willington', '-', proper, loc ). +noun( 'willy', '-', proper, per ). +noun( 'wilmslow', '-', proper, loc ). +noun( 'wilton', 'wiltons', count, _ ). +noun( 'wiltshire', '-', proper, loc ). +noun( 'wimbourne', '-', proper, loc ). +noun( 'wimbourne minster', '-', proper, loc ). +noun( 'winchester', '-', proper, loc ). +noun( 'windermere', '-', proper, loc ). +noun( 'windsor', '-', proper, loc ). +noun( 'wingate', '-', proper, loc ). +noun( 'winifred', '-', proper, per ). +noun( 'winnie', '-', proper, per ). +noun( 'winnipeg', '-', proper, loc ). +noun( 'winsford', '-', proper, loc ). +noun( 'wisbech', '-', proper, loc ). +noun( 'wisconsin', '-', proper, loc ). +noun( 'witham', '-', proper, loc ). +noun( 'withernsea', '-', proper, loc ). +noun( 'witney', '-', proper, loc ). +noun( 'woburn', '-', proper, loc ). +noun( 'wokingham', '-', proper, loc ). +noun( 'wolverhampton', '-', proper, loc ). +noun( 'wolverton', '-', proper, loc ). +noun( 'wombourne', '-', proper, loc ). +noun( 'woodbridge', '-', proper, loc ). +noun( 'wootton bassett', '-', proper, loc ). +noun( 'worcester', '-', proper, loc ). +noun( 'workington', '-', proper, loc ). +noun( 'worksop', '-', proper, loc ). +noun( 'worthing', '-', proper, loc ). +noun( 'wrexham', '-', proper, loc ). +noun( 'writtle', '-', proper, loc ). +noun( 'wroclaw', '-', proper, loc ). +noun( 'wroughton', '-', proper, loc ). +noun( 'wuhan', '-', proper, loc ). +noun( 'wuppertal', '-', proper, loc ). +noun( 'wurzburg', '-', proper, loc ). +noun( 'wusih', '-', proper, loc ). +noun( 'wycombe', '-', proper, loc ). +noun( 'wymondham', '-', proper, loc ). +noun( 'wyoming', '-', proper, loc ). +noun( 'wythall', '-', proper, loc ). +noun( 'x-ray', 'x-rays', count, _ ). +noun( 'xerox', 'xeroxes', count, _ ). +noun( 'xmas', 'xmases', count, _ ). +noun( 'xmas', '-', proper, _ ). +noun( 'yha', '-', count, _ ). +noun( 'ymca', '-', count, _ ). +noun( 'ywca', '-', count, _ ). +noun( 'yank', 'yanks', count, _ ). +noun( 'yankee', 'yankees', count, _ ). +noun( 'yarmouth', '-', proper, loc ). +noun( 'yaroslavi', '-', proper, loc ). +noun( 'yate', '-', proper, loc ). +noun( 'yateley', '-', proper, loc ). +noun( 'yemen', '-', proper, loc ). +noun( 'yemeni', 'yemenis', count, _ ). +noun( 'yeovil', '-', proper, loc ). +noun( 'yerevan', '-', proper, loc ). +noun( 'yiddish', '-', mass, _ ). +noun( 'yokohama', '-', proper, loc ). +noun( 'york', '-', proper, loc ). +noun( 'yorkley', '-', proper, loc ). +noun( 'yorkshire', '-', proper, loc ). +noun( 'ystradgynlais', '-', proper, loc ). +noun( 'yugoslav', 'yugoslavs', count, _ ). +noun( 'yugoslavia', '-', proper, loc ). +noun( 'yugoslavian', 'yugoslavians', count, _ ). +noun( 'yukon', '-', proper, loc ). +noun( 'yvonne', '-', proper, per ). +noun( 'zagreb', '-', proper, loc ). +noun( 'zaire', '-', proper, loc ). +noun( 'zairean', 'zaireans', count, _ ). +noun( 'zambia', '-', proper, loc ). +noun( 'zambian', 'zambians', count, _ ). +noun( 'zaporozhye', '-', proper, loc ). +noun( 'zaragoza', '-', proper, loc ). +noun( 'zealand', '-', proper, loc ). +noun( 'zealander', 'zealanders', count, _ ). +noun( 'zen', '-', mass, _ ). +noun( 'zimbabwe', '-', proper, loc ). +noun( 'zimbabwean', 'zimbabweans', count, _ ). +noun( 'zion', 'zions', count, _ ). +noun( 'zionism', '-', mass, _ ). +noun( 'zionist', 'zionists', count, _ ). +noun( 'zoe', '-', proper, per ). +noun( 'zurich', '-', proper, loc ). +noun( '_eclair', '_eclairs', count, _ ). +noun( '_eclat', '-', mass, _ ). +noun( '_elan', '-', mass, _ ). +noun( '_elite', '_elites', count, _ ). +noun( '_emigr_e', '_emigr_es', count, _ ). +noun( '_ep_ee', '_ep_ees', count, _ ). +noun( 'a', '-', count, _ ). +noun( 'abacus', 'abacuses', count, _ ). +noun( 'abandon', '-', mass, _ ). +noun( 'abandonment', '-', mass, _ ). +noun( 'abasement', '-', mass, _ ). +noun( 'abatement', '-', mass, _ ). +noun( 'abattoir', 'abattoirs', count, _ ). +noun( 'abb_e', 'abb_es', count, _ ). +noun( 'abbess', 'abbesses', count, _ ). +noun( 'abbey', 'abbeys', count, _ ). +noun( 'abbot', 'abbots', count, _ ). +noun( 'abbreviation', 'abbreviations', both, _ ). +noun( 'abdication', 'abdications', both, _ ). +noun( 'abdomen', 'abdomens', count, _ ). +noun( 'abduction', 'abductions', count, _ ). +noun( 'aberration', 'aberrations', both, _ ). +noun( 'abeyance', '-', mass, _ ). +noun( 'abhorrence', '-', mass, _ ). +noun( 'ability', 'abilities', both, _ ). +noun( 'abjection', 'abjections', count, _ ). +noun( 'abjuration', 'abjurations', both, _ ). +noun( 'ablative', 'ablatives', count, _ ). +noun( 'ablaut', 'ablauts', count, _ ). +noun( 'ablution', 'ablutions', count, _ ). +noun( 'abnegation', '-', mass, _ ). +noun( 'abnormality', 'abnormalities', both, _ ). +noun( 'abode', 'abodes', count, _ ). +noun( 'abolition', '-', mass, _ ). +noun( 'abolitionist', 'abolitionists', count, _ ). +noun( 'abomination', 'abominations', both, _ ). +noun( 'aboriginal', 'aboriginals', count, _ ). +noun( 'aborigine', 'aborigines', count, _ ). +noun( 'abortion', 'abortions', both, _ ). +noun( 'abortionist', 'abortionists', count, _ ). +noun( 'about-face', '-', count, _ ). +noun( 'abracadabra', '-', mass, _ ). +noun( 'abrasion', 'abrasions', both, _ ). +noun( 'abrasive', 'abrasives', both, _ ). +noun( 'abridgement', 'abridgements', both, _ ). +noun( 'abridgment', 'abridgments', both, _ ). +noun( 'abrogation', 'abrogations', count, _ ). +noun( 'abruptness', '-', mass, _ ). +noun( 'abscess', 'abscesses', count, _ ). +noun( 'absence', 'absences', both, _ ). +noun( 'absent-mindedness', '-', mass, _ ). +noun( 'absentee', 'absentees', count, _ ). +noun( 'absenteeism', '-', mass, _ ). +noun( 'absinth', '-', mass, _ ). +noun( 'absinthe', '-', mass, _ ). +noun( 'absolution', '-', mass, _ ). +noun( 'absolutism', '-', mass, _ ). +noun( 'absorbent', 'absorbents', count, _ ). +noun( 'absorption', '-', mass, _ ). +noun( 'abstainer', 'abstainers', count, _ ). +noun( 'abstemiousness', '-', mass, _ ). +noun( 'abstention', 'abstentions', both, _ ). +noun( 'abstinence', '-', mass, _ ). +noun( 'abstract', 'abstracts', count, _ ). +noun( 'abstraction', 'abstractions', both, _ ). +noun( 'abstruseness', '-', mass, _ ). +noun( 'absurdity', 'absurdities', both, _ ). +noun( 'abundance', '-', mass, _ ). +noun( 'abuse', 'abuses', both, _ ). +noun( 'abutment', 'abutments', count, _ ). +noun( 'abysm', 'abysms', count, _ ). +noun( 'abyss', 'abysses', count, _ ). +noun( 'acacia', 'acacias', count, _ ). +noun( 'academic', 'academics', count, _ ). +noun( 'academician', 'academicians', count, _ ). +noun( 'academy', 'academies', count, _ ). +noun( 'accelerando', 'accelerandos', count, _ ). +noun( 'acceleration', '-', mass, _ ). +noun( 'accelerator', 'accelerators', count, _ ). +noun( 'accent', 'accents', both, _ ). +noun( 'accentuation', 'accentuations', count, _ ). +noun( 'acceptability', '-', mass, _ ). +noun( 'acceptance', '-', mass, _ ). +noun( 'acceptation', 'acceptations', count, _ ). +noun( 'access', '-', mass, _ ). +noun( 'accessary', 'accessaries', count, _ ). +noun( 'accessibility', '-', mass, _ ). +noun( 'accession', 'accessions', both, _ ). +noun( 'accessory', 'accessories', count, _ ). +noun( 'accidence', '-', mass, _ ). +noun( 'accident', 'accidents', both, _ ). +noun( 'acclaim', '-', mass, _ ). +noun( 'acclamation', '-', mass, _ ). +noun( 'acclimation', '-', mass, _ ). +noun( 'acclimatization', '-', mass, _ ). +noun( 'acclivity', 'acclivities', count, _ ). +noun( 'accolade', 'accolades', count, _ ). +noun( 'accommodation', 'accommodations', both, _ ). +noun( 'accompaniment', 'accompaniments', count, _ ). +noun( 'accompanist', 'accompanists', count, _ ). +noun( 'accomplice', 'accomplices', count, _ ). +noun( 'accomplishment', 'accomplishments', both, _ ). +noun( 'accord', 'accords', both, _ ). +noun( 'accordance', 'accordances', count, _ ). +noun( 'accordion', 'accordions', count, _ ). +noun( 'accouchement', 'accouchements', count, _ ). +noun( 'account', 'accounts', both, _ ). +noun( 'accountancy', '-', mass, _ ). +noun( 'accountant', 'accountants', count, _ ). +noun( 'accretion', 'accretions', both, _ ). +noun( 'accumulation', 'accumulations', both, _ ). +noun( 'accumulator', 'accumulators', count, _ ). +noun( 'accuracy', 'accuracies', both, _ ). +noun( 'accusation', 'accusations', both, _ ). +noun( 'accusative', 'accusatives', count, _ ). +noun( 'accuser', 'accusers', count, _ ). +noun( 'ace', 'aces', count, _ ). +noun( 'acerbity', 'acerbities', both, _ ). +noun( 'acetate', 'acetates', count, _ ). +noun( 'acetylene', '-', mass, _ ). +noun( 'ache', 'aches', count, _ ). +noun( 'achievement', 'achievements', both, _ ). +noun( 'acid', 'acids', both, _ ). +noun( 'acidity', '-', mass, _ ). +noun( 'ack-ack', '-', mass, _ ). +noun( 'acknowledgement', 'acknowledgements', count, _ ). +noun( 'acme', '-', count, _ ). +noun( 'acne', '-', mass, _ ). +noun( 'acolyte', 'acolytes', count, _ ). +noun( 'aconite', 'aconites', count, _ ). +noun( 'acorn', 'acorns', count, _ ). +noun( 'acorn-cup', 'acorn-cups', count, _ ). +noun( 'acoustic', 'acoustics', count, _ ). +noun( 'acoustics', 'acoustics', mass, _ ). +noun( 'acquaintance', 'acquaintances', both, _ ). +noun( 'acquaintanceship', 'acquaintanceships', count, _ ). +noun( 'acquiescence', 'acquiescences', count, _ ). +noun( 'acquirement', 'acquirements', both, _ ). +noun( 'acquisition', 'acquisitions', both, _ ). +noun( 'acquittal', 'acquittals', both, _ ). +noun( 'acre', 'acres', count, _ ). +noun( 'acreage', '-', mass, _ ). +noun( 'acrimony', '-', mass, _ ). +noun( 'acrobat', 'acrobats', count, _ ). +noun( 'acrobatics', 'acrobatics', mass, _ ). +noun( 'acronym', 'acronyms', count, _ ). +noun( 'acropolis', 'acropolises', count, _ ). +noun( 'acrostic', 'acrostics', count, _ ). +noun( 'acrylic', 'acrylics', count, _ ). +noun( 'act', 'acts', count, _ ). +noun( 'acting', '-', mass, _ ). +noun( 'actinism', '-', mass, _ ). +noun( 'action', 'actions', both, _ ). +noun( 'activation', 'activations', count, _ ). +noun( 'activist', 'activists', count, _ ). +noun( 'activity', 'activities', both, _ ). +noun( 'actor', 'actors', count, _ ). +noun( 'actress', 'actresses', count, _ ). +noun( 'actuality', 'actualities', both, _ ). +noun( 'actuary', 'actuaries', count, _ ). +noun( 'acuity', '-', mass, _ ). +noun( 'acumen', '-', mass, _ ). +noun( 'acupuncture', '-', mass, _ ). +noun( 'acuteness', '-', mass, _ ). +noun( 'ad', 'ads', count, _ ). +noun( 'ad-man', 'ad-men', count, _ ). +noun( 'adage', 'adages', count, _ ). +noun( 'adagio', 'adagios', count, _ ). +noun( 'adamant', 'adamants', count, _ ). +noun( 'adaptability', '-', mass, _ ). +noun( 'adaptation', 'adaptations', both, _ ). +noun( 'adapter', 'adapters', count, _ ). +noun( 'adaptor', 'adaptors', count, _ ). +noun( 'addendum', 'addenda', count, _ ). +noun( 'adder', 'adders', count, _ ). +noun( 'addict', 'addicts', count, _ ). +noun( 'addiction', 'addictions', both, _ ). +noun( 'adding-machine', 'adding-machines', count, _ ). +noun( 'addition', 'additions', both, _ ). +noun( 'additive', 'additives', count, _ ). +noun( 'addle-head', 'addle-heads', count, _ ). +noun( 'address', 'addresses', both, _ ). +noun( 'addressee', 'addressees', count, _ ). +noun( 'adept', 'adepts', count, _ ). +noun( 'adequacy', '-', mass, _ ). +noun( 'adherence', 'adherences', count, _ ). +noun( 'adherent', 'adherents', count, _ ). +noun( 'adhesion', 'adhesions', both, _ ). +noun( 'adhesive', 'adhesives', both, _ ). +noun( 'adieu', 'adieus', count, _ ). +noun( 'adjective', 'adjectives', count, _ ). +noun( 'adjournment', 'adjournments', count, _ ). +noun( 'adjudication', 'adjudications', count, _ ). +noun( 'adjudicator', 'adjudicators', count, _ ). +noun( 'adjunct', 'adjuncts', count, _ ). +noun( 'adjuration', 'adjurations', both, _ ). +noun( 'adjuster', 'adjusters', count, _ ). +noun( 'adjustment', 'adjustments', both, _ ). +noun( 'adjutant', 'adjutants', count, _ ). +noun( 'admass', '-', mass, _ ). +noun( 'administration', 'administrations', both, _ ). +noun( 'administrator', 'administrators', count, _ ). +noun( 'admiral', 'admirals', count, _ ). +noun( 'admiralty', 'admiralties', count, _ ). +noun( 'admiration', '-', mass, _ ). +noun( 'admirer', 'admirers', count, _ ). +noun( 'admissibility', '-', mass, _ ). +noun( 'admission', 'admissions', both, _ ). +noun( 'admittance', '-', mass, _ ). +noun( 'admixture', 'admixtures', count, _ ). +noun( 'admonition', 'admonitions', both, _ ). +noun( 'ado', '-', mass, _ ). +noun( 'adobe', '-', mass, _ ). +noun( 'adolescence', '-', mass, _ ). +noun( 'adolescent', 'adolescents', count, _ ). +noun( 'adoption', 'adoptions', count, _ ). +noun( 'adoration', '-', mass, _ ). +noun( 'adorer', 'adorers', count, _ ). +noun( 'adornment', 'adornments', both, _ ). +noun( 'adrenalin', '-', mass, _ ). +noun( 'adroitness', '-', mass, _ ). +noun( 'adulation', '-', mass, _ ). +noun( 'adult', 'adults', count, _ ). +noun( 'adulterant', 'adulterants', count, _ ). +noun( 'adulteration', 'adulterations', count, _ ). +noun( 'adulterer', 'adulterers', count, _ ). +noun( 'adulteress', 'adulteresses', count, _ ). +noun( 'adultery', 'adulteries', both, _ ). +noun( 'adulthood', 'adulthoods', both, _ ). +noun( 'advance', 'advances', both, _ ). +noun( 'advancement', '-', mass, _ ). +noun( 'advantage', 'advantages', both, _ ). +noun( 'advent', 'advents', count, _ ). +noun( 'adventure', 'adventures', both, _ ). +noun( 'adventurer', 'adventurers', count, _ ). +noun( 'adventuress', 'adventuresses', count, _ ). +noun( 'adverb', 'adverbs', count, _ ). +noun( 'adversary', 'adversaries', count, _ ). +noun( 'adversity', 'adversities', both, _ ). +noun( 'advert', 'adverts', count, _ ). +noun( 'advertisement', 'advertisements', both, _ ). +noun( 'advertiser', 'advertisers', count, _ ). +noun( 'advice', 'advices', both, _ ). +noun( 'advisability', '-', mass, _ ). +noun( 'adviser', 'advisers', count, _ ). +noun( 'advocacy', '-', mass, _ ). +noun( 'advocate', 'advocates', count, _ ). +noun( 'advowson', 'advowsons', count, _ ). +noun( 'adz', 'adzes', count, _ ). +noun( 'adze', 'adzes', count, _ ). +noun( 'aegis', 'aegises', count, _ ). +noun( 'aeon', 'aeons', count, _ ). +noun( 'aeration', 'aerations', count, _ ). +noun( 'aerial', 'aerials', count, _ ). +noun( 'aerie', 'aeries', count, _ ). +noun( 'aerobatics', 'aerobatics', mass, _ ). +noun( 'aerodrome', 'aerodromes', count, _ ). +noun( 'aerodynamics', 'aerodynamics', mass, _ ). +noun( 'aeronaut', 'aeronauts', count, _ ). +noun( 'aeronautics', 'aeronautics', mass, _ ). +noun( 'aeroplane', 'aeroplanes', count, _ ). +noun( 'aerosol', 'aerosols', both, _ ). +noun( 'aerospace', '-', mass, _ ). +noun( 'aertex', '-', mass, _ ). +noun( 'aery', 'aeries', count, _ ). +noun( 'aesthete', 'aesthetes', count, _ ). +noun( 'aesthetic', '-', mass, _ ). +noun( 'aesthetics', 'aesthetics', mass, _ ). +noun( 'aether', '-', mass, _ ). +noun( 'aetiology', 'aetiologies', count, _ ). +noun( 'affability', '-', mass, _ ). +noun( 'affair', 'affairs', count, _ ). +noun( 'affectation', 'affectations', both, _ ). +noun( 'affection', 'affections', both, _ ). +noun( 'affidavit', 'affidavits', count, _ ). +noun( 'affiliation', 'affiliations', both, _ ). +noun( 'affinity', 'affinities', both, _ ). +noun( 'affirmation', 'affirmations', both, _ ). +noun( 'affirmative', 'affirmatives', count, _ ). +noun( 'affix', 'affixes', count, _ ). +noun( 'afflatus', '-', mass, _ ). +noun( 'affliction', 'afflictions', both, _ ). +noun( 'affluence', '-', mass, _ ). +noun( 'affluent', 'affluents', count, _ ). +noun( 'afforestation', 'afforestations', count, _ ). +noun( 'affray', 'affrays', count, _ ). +noun( 'affront', 'affronts', count, _ ). +noun( 'aftercare', '-', mass, _ ). +noun( 'afterdamp', '-', mass, _ ). +noun( 'aftereffect', 'aftereffects', count, _ ). +noun( 'afterglow', '-', count, _ ). +noun( 'aftermath', '', count, _ ). +noun( 'afternoon', 'afternoons', both, _ ). +noun( 'afterthought', 'afterthoughts', both, _ ). +noun( 'agar-agar', '-', mass, _ ). +noun( 'agate', 'agates', count, _ ). +noun( 'agave', 'agaves', count, _ ). +noun( 'age', 'ages', both, _ ). +noun( 'age-bracket', 'age-brackets', count, _ ). +noun( 'age-group', 'age-groups', count, _ ). +noun( 'ageing', '-', mass, _ ). +noun( 'agency', 'agencies', both, _ ). +noun( 'agenda', 'agendas', count, _ ). +noun( 'agent', 'agents', count, _ ). +noun( 'agent provocateur', 'agents provocateurs', count, _ ). +noun( 'agglomeration', 'agglomerations', both, _ ). +noun( 'aggrandizement', 'aggrandizements', count, _ ). +noun( 'aggravation', 'aggravations', both, _ ). +noun( 'aggregate', 'aggregates', count, _ ). +noun( 'aggregation', 'aggregations', both, _ ). +noun( 'aggression', 'aggressions', both, _ ). +noun( 'aggressiveness', '-', mass, _ ). +noun( 'aggressor', 'aggressors', count, _ ). +noun( 'aggro', '-', mass, _ ). +noun( 'agility', '-', mass, _ ). +noun( 'aging', '-', mass, _ ). +noun( 'agitation', 'agitations', both, _ ). +noun( 'agitator', 'agitators', count, _ ). +noun( 'agnail', '-', mass, _ ). +noun( 'agnostic', 'agnostics', count, _ ). +noun( 'agnosticism', '-', mass, _ ). +noun( 'agony', 'agonies', both, _ ). +noun( 'agora', 'agoras', count, _ ). +noun( 'agoraphobia', '-', mass, _ ). +noun( 'agreement', 'agreements', both, _ ). +noun( 'agriculture', '-', mass, _ ). +noun( 'ague', 'agues', count, _ ). +noun( 'aid', 'aids', both, _ ). +noun( 'aide-de-camp', 'aides-de-camp', count, _ ). +noun( 'aide-m_emoire', 'aide-m_emoires', count, _ ). +noun( 'aigret', 'aigrets', count, _ ). +noun( 'aigrette', 'aigrettes', count, _ ). +noun( 'aileron', 'ailerons', count, _ ). +noun( 'ailment', 'ailments', count, _ ). +noun( 'aim', 'aims', both, _ ). +noun( 'air', 'airs', both, _ ). +noun( 'air-bladder', 'air-bladders', count, _ ). +noun( 'air-conditioning', '-', mass, _ ). +noun( 'air-pump', 'air-pumps', count, _ ). +noun( 'air-raid', 'air-raids', count, _ ). +noun( 'air-shaft', 'air-shafts', count, _ ). +noun( 'air-sickness', '-', mass, _ ). +noun( 'airbed', 'airbeds', count, _ ). +noun( 'airbrake', 'airbrakes', count, _ ). +noun( 'aircraft', 'aircraft', count, _ ). +noun( 'aircraftman', 'aircraftmen', count, _ ). +noun( 'aircrew', 'aircrews', count, _ ). +noun( 'airdrome', 'airdromes', count, _ ). +noun( 'airfield', 'airfields', count, _ ). +noun( 'airflow', 'airflows', count, _ ). +noun( 'airframe', 'airframes', count, _ ). +noun( 'airing', 'airings', count, _ ). +noun( 'airing-cupboard', 'airing-cupboards', count, _ ). +noun( 'airline', 'airlines', count, _ ). +noun( 'airliner', 'airliners', count, _ ). +noun( 'airmail', '-', mass, _ ). +noun( 'airman', 'airmen', count, _ ). +noun( 'airplane', 'airplanes', count, _ ). +noun( 'airport', 'airports', count, _ ). +noun( 'airscrew', 'airscrews', count, _ ). +noun( 'airship', 'airships', count, _ ). +noun( 'airstrip', 'airstrips', count, _ ). +noun( 'airway', 'airways', count, _ ). +noun( 'airwoman', 'airwomen', count, _ ). +noun( 'airworthiness', '-', mass, _ ). +noun( 'aisle', 'aisles', count, _ ). +noun( 'aitch', 'aitches', count, _ ). +noun( 'aitch-bone', 'aitch-bones', count, _ ). +noun( 'alabaster', '-', mass, _ ). +noun( 'alacrity', '-', mass, _ ). +noun( 'alarm', 'alarms', both, _ ). +noun( 'alarm-clock', 'alarm-clocks', count, _ ). +noun( 'alarmist', 'alarmists', count, _ ). +noun( 'alb', 'albs', count, _ ). +noun( 'albatross', 'albatrosses', count, _ ). +noun( 'albino', 'albinos', count, _ ). +noun( 'album', 'albums', count, _ ). +noun( 'albumen', '-', mass, _ ). +noun( 'alchemist', 'alchemists', count, _ ). +noun( 'alchemy', '-', mass, _ ). +noun( 'alcohol', 'alcohols', both, _ ). +noun( 'alcoholic', 'alcoholics', count, _ ). +noun( 'alcoholism', '-', mass, _ ). +noun( 'alcove', 'alcoves', count, _ ). +noun( 'alder', 'alders', count, _ ). +noun( 'alderman', 'aldermen', count, _ ). +noun( 'ale', 'ales', both, _ ). +noun( 'ale-house', 'ale-houses', count, _ ). +noun( 'alert', 'alerts', count, _ ). +noun( 'alertness', '-', mass, _ ). +noun( 'alexandrine', 'alexandrines', count, _ ). +noun( 'alexia', '-', mass, _ ). +noun( 'alexic', 'alexics', count, _ ). +noun( 'alfalfa', '-', mass, _ ). +noun( 'alga', 'algae', count, _ ). +noun( 'algebra', 'algebras', both, _ ). +noun( 'alias', 'aliases', count, _ ). +noun( 'alibi', 'alibis', count, _ ). +noun( 'alien', 'aliens', count, _ ). +noun( 'alienation', '-', mass, _ ). +noun( 'alienist', 'alienists', count, _ ). +noun( 'alignment', 'alignments', both, _ ). +noun( 'alimony', '-', mass, _ ). +noun( 'alkali', 'alkalis', both, _ ). +noun( 'all', '-', count, _ ). +noun( 'all-rounder', 'all-rounders', count, _ ). +noun( 'allegation', 'allegations', both, _ ). +noun( 'allegiance', '-', mass, _ ). +noun( 'allegory', 'allegories', count, _ ). +noun( 'allegretto', 'allegrettos', count, _ ). +noun( 'allegro', 'allegros', count, _ ). +noun( 'allergen', 'allergens', count, _ ). +noun( 'allergy', 'allergies', count, _ ). +noun( 'alleviation', 'alleviations', count, _ ). +noun( 'alley', 'alleys', count, _ ). +noun( 'alleyway', 'alleyways', count, _ ). +noun( 'alliance', 'alliances', both, _ ). +noun( 'alligator', 'alligators', count, _ ). +noun( 'alliteration', '-', mass, _ ). +noun( 'allocation', 'allocations', both, _ ). +noun( 'allotment', 'allotments', both, _ ). +noun( 'allowance', 'allowances', count, _ ). +noun( 'alloy', 'alloys', both, _ ). +noun( 'allspice', '-', mass, _ ). +noun( 'allure', 'allures', both, _ ). +noun( 'allurement', 'allurements', both, _ ). +noun( 'allusion', 'allusions', count, _ ). +noun( 'ally', 'allies', count, _ ). +noun( 'almanac', 'almanacs', count, _ ). +noun( 'almighty', '-', count, _ ). +noun( 'almond', 'almonds', count, _ ). +noun( 'almoner', 'almoners', count, _ ). +noun( 'alms-box', 'alms-boxes', count, _ ). +noun( 'alms-giving', '-', mass, _ ). +noun( 'alms-house', 'alms-houses', count, _ ). +noun( 'aloe', 'aloes', count, _ ). +noun( 'aloofness', '-', mass, _ ). +noun( 'alp', 'alps', count, _ ). +noun( 'alpaca', 'alpacas', both, _ ). +noun( 'alpenstock', 'alpenstocks', count, _ ). +noun( 'alpha', 'alphas', count, _ ). +noun( 'alphabet', 'alphabets', count, _ ). +noun( 'alpinist', 'alpinists', count, _ ). +noun( 'alsatian', 'alsatians', count, _ ). +noun( 'also-ran', 'also-rans', count, _ ). +noun( 'altar', 'altars', count, _ ). +noun( 'altar-piece', 'altar-pieces', count, _ ). +noun( 'alter ego', 'alter egos', count, _ ). +noun( 'alteration', 'alterations', both, _ ). +noun( 'altercation', 'altercations', both, _ ). +noun( 'alternation', 'alternations', count, _ ). +noun( 'alternative', 'alternatives', count, _ ). +noun( 'altimeter', 'altimeters', count, _ ). +noun( 'altitude', 'altitudes', count, _ ). +noun( 'alto', 'altos', count, _ ). +noun( 'altruism', 'altruisms', both, _ ). +noun( 'altruist', 'altruists', count, _ ). +noun( 'alum', '-', mass, _ ). +noun( 'aluminium', '-', mass, _ ). +noun( 'alumna', 'alumnae', count, _ ). +noun( 'alumnus', 'alumni', count, _ ). +noun( 'alveolar', 'alveolars', count, _ ). +noun( 'am', '-', proper, _ ). +noun( 'amah', 'amahs', count, _ ). +noun( 'amalgam', 'amalgams', count, _ ). +noun( 'amalgamation', 'amalgamations', both, _ ). +noun( 'amanuensis', 'amanuenses', count, _ ). +noun( 'amaryllis', 'amaryllises', count, _ ). +noun( 'amateur', 'amateurs', count, _ ). +noun( 'amateurism', '-', mass, _ ). +noun( 'amazement', '-', mass, _ ). +noun( 'ambassador', 'ambassadors', count, _ ). +noun( 'ambassadress', 'ambassadresses', count, _ ). +noun( 'amber', '-', mass, _ ). +noun( 'ambergris', '-', mass, _ ). +noun( 'ambience', '-', count, _ ). +noun( 'ambiguity', 'ambiguities', both, _ ). +noun( 'ambit', 'ambits', count, _ ). +noun( 'ambition', 'ambitions', both, _ ). +noun( 'ambivalence', '-', mass, _ ). +noun( 'amble', 'ambles', count, _ ). +noun( 'ambrosia', '-', mass, _ ). +noun( 'ambulance', 'ambulances', count, _ ). +noun( 'ambuscade', 'ambuscades', count, _ ). +noun( 'ambush', 'ambushes', both, _ ). +noun( 'ameba', 'amebas', count, _ ). +noun( 'ameer', 'ameers', count, _ ). +noun( 'amelioration', 'ameliorations', count, _ ). +noun( 'amendment', 'amendments', both, _ ). +noun( 'amenity', 'amenities', count, _ ). +noun( 'amethyst', 'amethysts', count, _ ). +noun( 'amiability', '-', mass, _ ). +noun( 'amicability', '-', mass, _ ). +noun( 'amir', 'amirs', count, _ ). +noun( 'amity', '-', mass, _ ). +noun( 'ammeter', 'ammeters', count, _ ). +noun( 'ammonia', '-', mass, _ ). +noun( 'ammonite', 'ammonites', count, _ ). +noun( 'ammunition', '-', mass, _ ). +noun( 'amnesia', '-', mass, _ ). +noun( 'amnesty', 'amnesties', count, _ ). +noun( 'amoeba', 'amoebas', count, _ ). +noun( 'amortization', 'amortizations', count, _ ). +noun( 'amount', 'amounts', count, _ ). +noun( 'amour', 'amours', count, _ ). +noun( 'amour-propre', '-', mass, _ ). +noun( 'amp', 'amps', count, _ ). +noun( 'ampere', 'amperes', count, _ ). +noun( 'amphetamine', 'amphetamines', both, _ ). +noun( 'amphibian', 'amphibians', count, _ ). +noun( 'amphitheatre', 'amphitheatres', count, _ ). +noun( 'amphora', 'amphoras', count, _ ). +noun( 'amplification', 'amplifications', count, _ ). +noun( 'amplifier', 'amplifiers', count, _ ). +noun( 'amplitude', '-', mass, _ ). +noun( 'ampoule', 'ampoules', count, _ ). +noun( 'amputation', 'amputations', count, _ ). +noun( 'amulet', 'amulets', count, _ ). +noun( 'amusement', 'amusements', both, _ ). +noun( 'anachronism', 'anachronisms', count, _ ). +noun( 'anaconda', 'anacondas', count, _ ). +noun( 'anaemia', '-', mass, _ ). +noun( 'anaesthesia', '-', mass, _ ). +noun( 'anaesthetic', 'anaesthetics', count, _ ). +noun( 'anaesthetist', 'anaesthetists', count, _ ). +noun( 'anagram', 'anagrams', count, _ ). +noun( 'analgesia', '-', mass, _ ). +noun( 'analgesic', 'analgesics', count, _ ). +noun( 'analog', 'analogs', count, _ ). +noun( 'analogue', 'analogues', count, _ ). +noun( 'analogy', 'analogies', both, _ ). +noun( 'analysis', 'analyses', both, _ ). +noun( 'analyst', 'analysts', count, _ ). +noun( 'anapaest', 'anapaests', count, _ ). +noun( 'anarchism', '-', mass, _ ). +noun( 'anarchist', 'anarchists', count, _ ). +noun( 'anarchy', '-', mass, _ ). +noun( 'anathema', 'anathemas', count, _ ). +noun( 'anatomist', 'anatomists', count, _ ). +noun( 'anatomy', '-', mass, _ ). +noun( 'ancestor', 'ancestors', count, _ ). +noun( 'ancestress', 'ancestresses', count, _ ). +noun( 'ancestry', 'ancestries', count, _ ). +noun( 'anchor', 'anchors', count, _ ). +noun( 'anchorage', 'anchorages', count, _ ). +noun( 'anchorite', 'anchorites', count, _ ). +noun( 'anchorman', 'anchormen', count, _ ). +noun( 'anchovy', 'anchovies', count, _ ). +noun( 'andante', 'andantes', count, _ ). +noun( 'andiron', 'andirons', count, _ ). +noun( 'anecdote', 'anecdotes', count, _ ). +noun( 'anemometer', 'anemometers', count, _ ). +noun( 'anemone', 'anemones', count, _ ). +noun( 'aneroid', 'aneroids', count, _ ). +noun( 'anesthetic', 'anesthetics', count, _ ). +noun( 'anesthetist', 'anesthetists', count, _ ). +noun( 'angel', 'angels', count, _ ). +noun( 'angelica', '-', mass, _ ). +noun( 'angelus', 'angeluses', count, _ ). +noun( 'anger', '-', mass, _ ). +noun( 'angina', '-', mass, _ ). +noun( 'angle', 'angles', count, _ ). +noun( 'angle-dozer', 'angle-dozers', count, _ ). +noun( 'angle-iron', 'angle-irons', count, _ ). +noun( 'angler', 'anglers', count, _ ). +noun( 'anglicism', 'anglicisms', count, _ ). +noun( 'angling', '-', mass, _ ). +noun( 'angora', 'angoras', both, _ ). +noun( 'angostura', '-', mass, _ ). +noun( 'angst', '-', mass, _ ). +noun( 'anguish', '-', mass, _ ). +noun( 'angularity', 'angularities', both, _ ). +noun( 'aniline', 'anilines', both, _ ). +noun( 'animadversion', 'animadversions', count, _ ). +noun( 'animal', 'animals', count, _ ). +noun( 'animalcule', 'animalcules', count, _ ). +noun( 'animation', '-', mass, _ ). +noun( 'animism', '-', mass, _ ). +noun( 'animosity', 'animosities', both, _ ). +noun( 'animus', '-', mass, _ ). +noun( 'anise', 'anises', count, _ ). +noun( 'aniseed', '-', mass, _ ). +noun( 'ankle', 'ankles', count, _ ). +noun( 'anklet', 'anklets', count, _ ). +noun( 'anna', 'annas', count, _ ). +noun( 'annalist', 'annalists', count, _ ). +noun( 'annex', 'annexes', count, _ ). +noun( 'annexation', '-', mass, _ ). +noun( 'annexe', 'annexes', count, _ ). +noun( 'annihilation', '-', mass, _ ). +noun( 'anniversary', 'anniversaries', count, _ ). +noun( 'annotation', 'annotations', both, _ ). +noun( 'announcement', 'announcements', count, _ ). +noun( 'announcer', 'announcers', count, _ ). +noun( 'annoyance', 'annoyances', both, _ ). +noun( 'annual', 'annuals', count, _ ). +noun( 'annuitant', 'annuitants', count, _ ). +noun( 'annuity', 'annuities', count, _ ). +noun( 'annulment', 'annulments', count, _ ). +noun( 'annunciation', 'annunciations', count, _ ). +noun( 'anode', 'anodes', count, _ ). +noun( 'anodyne', 'anodynes', both, _ ). +noun( 'anointment', 'anointments', count, _ ). +noun( 'anomaly', 'anomalies', count, _ ). +noun( 'anonymity', '-', mass, _ ). +noun( 'anopheles', 'anopheles', count, _ ). +noun( 'anorak', 'anoraks', count, _ ). +noun( 'answer', 'answers', count, _ ). +noun( 'ant', 'ants', count, _ ). +noun( 'ant-eater', 'ant-eaters', count, _ ). +noun( 'ant-hill', 'ant-hills', count, _ ). +noun( 'antagonism', 'antagonisms', both, _ ). +noun( 'antagonist', 'antagonists', count, _ ). +noun( 'ante', 'antes', count, _ ). +noun( 'antecedence', 'antecedences', count, _ ). +noun( 'antecedent', 'antecedents', count, _ ). +noun( 'antechamber', 'antechambers', count, _ ). +noun( 'antediluvian', 'antediluvians', count, _ ). +noun( 'antelope', 'antelopes', count, _ ). +noun( 'antenna', 'antennae', count, _ ). +noun( 'anteroom', 'anterooms', count, _ ). +noun( 'anthem', 'anthems', count, _ ). +noun( 'anther', 'anthers', count, _ ). +noun( 'anthology', 'anthologies', count, _ ). +noun( 'anthracite', '-', mass, _ ). +noun( 'anthrax', '-', mass, _ ). +noun( 'anthropoid', 'anthropoids', count, _ ). +noun( 'anthropologist', 'anthropologists', count, _ ). +noun( 'anthropology', '-', mass, _ ). +noun( 'anti-semite', 'anti-semites', count, _ ). +noun( 'anti-semitism', '-', mass, _ ). +noun( 'anti-hero', 'anti-heroes', count, _ ). +noun( 'antibiotic', 'antibiotics', count, _ ). +noun( 'antibody', 'antibodies', count, _ ). +noun( 'antic', 'antics', count, _ ). +noun( 'anticipation', 'anticipations', both, _ ). +noun( 'anticlimax', 'anticlimaxes', count, _ ). +noun( 'anticyclone', 'anticyclones', count, _ ). +noun( 'antidote', 'antidotes', count, _ ). +noun( 'antifreeze', '-', mass, _ ). +noun( 'antiknock', '-', mass, _ ). +noun( 'antilogarithm', 'antilogarithms', count, _ ). +noun( 'antimacassar', 'antimacassars', count, _ ). +noun( 'antimony', '-', mass, _ ). +noun( 'antipathy', 'antipathies', both, _ ). +noun( 'antiquarian', 'antiquarians', count, _ ). +noun( 'antiquary', 'antiquaries', count, _ ). +noun( 'antique', 'antiques', count, _ ). +noun( 'antiquity', 'antiquities', both, _ ). +noun( 'antirrhinum', 'antirrhinums', count, _ ). +noun( 'antiseptic', 'antiseptics', count, _ ). +noun( 'antithesis', 'antitheses', both, _ ). +noun( 'antitoxin', 'antitoxins', count, _ ). +noun( 'antitrade', 'antitrades', count, _ ). +noun( 'antler', 'antlers', count, _ ). +noun( 'antonym', 'antonyms', count, _ ). +noun( 'anus', 'anuses', count, _ ). +noun( 'anvil', 'anvils', count, _ ). +noun( 'anxiety', 'anxieties', both, _ ). +noun( 'anybody', '-', count, _ ). +noun( 'anyone', '-', count, _ ). +noun( 'anything', '-', count, _ ). +noun( 'aorta', 'aortas', count, _ ). +noun( 'apache', 'apaches', count, _ ). +noun( 'apanage', '-', mass, _ ). +noun( 'apartheid', '-', mass, _ ). +noun( 'apartment', 'apartments', count, _ ). +noun( 'apathy', '-', mass, _ ). +noun( 'ape', 'apes', count, _ ). +noun( 'aperient', 'aperients', count, _ ). +noun( 'aperitif', 'aperitifs', count, _ ). +noun( 'aperture', 'apertures', count, _ ). +noun( 'apex', 'apexes', count, _ ). +noun( 'aphasia', '-', mass, _ ). +noun( 'aphid', 'aphids', count, _ ). +noun( 'aphis', 'aphides', count, _ ). +noun( 'aphorism', 'aphorisms', count, _ ). +noun( 'aphrodisiac', 'aphrodisiacs', both, _ ). +noun( 'apiarist', 'apiarists', count, _ ). +noun( 'apiary', 'apiaries', count, _ ). +noun( 'apiculture', 'apicultures', count, _ ). +noun( 'aplomb', '-', mass, _ ). +noun( 'apocalypse', 'apocalypses', count, _ ). +noun( 'apogee', 'apogees', count, _ ). +noun( 'apologetics', 'apologetics', mass, _ ). +noun( 'apologist', 'apologists', count, _ ). +noun( 'apology', 'apologies', count, _ ). +noun( 'apophthegm', 'apophthegms', count, _ ). +noun( 'apoplexy', '-', mass, _ ). +noun( 'apostasy', 'apostasies', both, _ ). +noun( 'apostate', 'apostates', count, _ ). +noun( 'apostle', 'apostles', count, _ ). +noun( 'apostrophe', 'apostrophes', count, _ ). +noun( 'apothecary', 'apothecaries', count, _ ). +noun( 'apothegm', 'apothegms', count, _ ). +noun( 'apotheosis', 'apotheoses', count, _ ). +noun( 'appanage', '-', mass, _ ). +noun( 'apparatus', 'apparatuses', both, _ ). +noun( 'apparel', '-', mass, _ ). +noun( 'apparition', 'apparitions', count, _ ). +noun( 'appeal', 'appeals', both, _ ). +noun( 'appearance', 'appearances', count, _ ). +noun( 'appeasement', '-', mass, _ ). +noun( 'appellant', 'appellants', count, _ ). +noun( 'appellation', 'appellations', count, _ ). +noun( 'appendage', 'appendages', count, _ ). +noun( 'appendectomy', 'appendectomies', count, _ ). +noun( 'appendicitis', '-', mass, _ ). +noun( 'appendix', 'appendixes', count, _ ). +noun( 'appetite', 'appetites', both, _ ). +noun( 'appetizer', 'appetizers', count, _ ). +noun( 'applause', '-', mass, _ ). +noun( 'apple', 'apples', both, _ ). +noun( 'applejack', '-', mass, _ ). +noun( 'appliance', 'appliances', count, _ ). +noun( 'applicability', '-', mass, _ ). +noun( 'applicant', 'applicants', count, _ ). +noun( 'application', 'applications', both, _ ). +noun( 'appliqu_e', '-', mass, _ ). +noun( 'appointee', 'appointees', count, _ ). +noun( 'appointment', 'appointments', both, _ ). +noun( 'apportionment', '-', mass, _ ). +noun( 'apposition', '-', mass, _ ). +noun( 'appraisal', 'appraisals', count, _ ). +noun( 'appreciation', 'appreciations', both, _ ). +noun( 'apprehension', 'apprehensions', both, _ ). +noun( 'apprentice', 'apprentices', count, _ ). +noun( 'apprenticeship', 'apprenticeships', count, _ ). +noun( 'appro', '-', mass, _ ). +noun( 'approach', 'approaches', both, _ ). +noun( 'approbation', '-', mass, _ ). +noun( 'appropriation', 'appropriations', both, _ ). +noun( 'approval', '-', mass, _ ). +noun( 'approx', '-', proper, _ ). +noun( 'approximation', 'approximations', both, _ ). +noun( 'appurtenance', 'appurtenances', count, _ ). +noun( 'apricot', 'apricots', count, _ ). +noun( 'apron', 'aprons', count, _ ). +noun( 'apse', 'apses', count, _ ). +noun( 'aptitude', 'aptitudes', both, _ ). +noun( 'aptness', '-', mass, _ ). +noun( 'aqualung', 'aqualungs', count, _ ). +noun( 'aquamarine', 'aquamarines', both, _ ). +noun( 'aquanaut', 'aquanauts', count, _ ). +noun( 'aquaplane', 'aquaplanes', count, _ ). +noun( 'aquarium', 'aquariums', count, _ ). +noun( 'aquatint', 'aquatints', both, _ ). +noun( 'aquavit', '-', mass, _ ). +noun( 'aqueduct', 'aqueducts', count, _ ). +noun( 'ar^ete', 'ar^etes', count, _ ). +noun( 'arabesque', 'arabesques', count, _ ). +noun( 'arachnid', 'arachnids', count, _ ). +noun( 'arbiter', 'arbiters', count, _ ). +noun( 'arbitrament', 'arbitraments', both, _ ). +noun( 'arbitration', 'arbitrations', both, _ ). +noun( 'arbitrator', 'arbitrators', count, _ ). +noun( 'arbour', 'arbours', count, _ ). +noun( 'arc', 'arcs', count, _ ). +noun( 'arc-lamp', 'arc-lamps', count, _ ). +noun( 'arc-light', 'arc-lights', count, _ ). +noun( 'arcade', 'arcades', count, _ ). +noun( 'arch', 'arches', count, _ ). +noun( 'archaeologist', 'archaeologists', count, _ ). +noun( 'archaeology', '-', mass, _ ). +noun( 'archaism', 'archaisms', both, _ ). +noun( 'archangel', 'archangels', count, _ ). +noun( 'archbishop', 'archbishops', count, _ ). +noun( 'archbishopric', 'archbishoprics', count, _ ). +noun( 'archdeacon', 'archdeacons', count, _ ). +noun( 'archdeaconry', 'archdeaconries', count, _ ). +noun( 'archdiocese', 'archdioceses', count, _ ). +noun( 'archduke', 'archdukes', count, _ ). +noun( 'archeology', '-', mass, _ ). +noun( 'archer', 'archers', count, _ ). +noun( 'archery', '-', mass, _ ). +noun( 'archetype', 'archetypes', count, _ ). +noun( 'archimandrite', 'archimandrites', count, _ ). +noun( 'archipelago', 'archipelagos', count, _ ). +noun( 'architect', 'architects', count, _ ). +noun( 'architecture', '-', mass, _ ). +noun( 'archivist', 'archivists', count, _ ). +noun( 'archway', 'archways', count, _ ). +noun( 'ardour', 'ardours', both, _ ). +noun( 'are', 'ares', count, _ ). +noun( 'area', 'areas', both, _ ). +noun( 'areca', 'arecas', count, _ ). +noun( 'arena', 'arenas', count, _ ). +noun( 'argent', 'argents', count, _ ). +noun( 'argon', '-', mass, _ ). +noun( 'argosy', 'argosies', count, _ ). +noun( 'argot', '-', mass, _ ). +noun( 'argument', 'arguments', both, _ ). +noun( 'argumentation', '-', mass, _ ). +noun( 'aria', 'arias', count, _ ). +noun( 'aridity', '-', mass, _ ). +noun( 'aristocracy', 'aristocracies', both, _ ). +noun( 'aristocrat', 'aristocrats', count, _ ). +noun( 'arithmetic', '-', mass, _ ). +noun( 'arithmetician', 'arithmeticians', count, _ ). +noun( 'ark', 'arks', count, _ ). +noun( 'arm', 'arms', count, _ ). +noun( 'arm-hole', 'arm-holes', count, _ ). +noun( 'armada', 'armadas', count, _ ). +noun( 'armadillo', 'armadillos', count, _ ). +noun( 'armament', 'armaments', both, _ ). +noun( 'armature', 'armatures', count, _ ). +noun( 'armband', 'armbands', count, _ ). +noun( 'armchair', 'armchairs', count, _ ). +noun( 'armful', 'armfuls', count, _ ). +noun( 'armistice', 'armistices', count, _ ). +noun( 'armlet', 'armlets', count, _ ). +noun( 'armoire', 'armoires', count, _ ). +noun( 'armour', '-', mass, _ ). +noun( 'armour-plate', 'armour-plates', count, _ ). +noun( 'armourer', 'armourers', count, _ ). +noun( 'armoury', 'armouries', count, _ ). +noun( 'armpit', 'armpits', count, _ ). +noun( 'arms-race', '-', count, _ ). +noun( 'arms-runner', 'arms-runners', count, _ ). +noun( 'army', 'armies', count, _ ). +noun( 'arnica', '-', mass, _ ). +noun( 'aroma', 'aromas', count, _ ). +noun( 'arpeggio', 'arpeggios', count, _ ). +noun( 'arquebus', 'arquebuses', count, _ ). +noun( 'arr', '-', proper, _ ). +noun( 'arrack', '-', mass, _ ). +noun( 'arraignment', 'arraignments', count, _ ). +noun( 'arrangement', 'arrangements', both, _ ). +noun( 'arras', 'arrases', count, _ ). +noun( 'array', 'arrays', count, _ ). +noun( 'arrest', 'arrests', count, _ ). +noun( 'arrester', 'arresters', count, _ ). +noun( 'arri`ere pens_ee', 'arri`ere pens_ees', count, _ ). +noun( 'arrival', 'arrivals', both, _ ). +noun( 'arrogance', '-', mass, _ ). +noun( 'arrow', 'arrows', count, _ ). +noun( 'arrowhead', 'arrowheads', count, _ ). +noun( 'arrowroot', '-', mass, _ ). +noun( 'arse', 'arses', count, _ ). +noun( 'arsehole', 'arseholes', count, _ ). +noun( 'arsenal', 'arsenals', count, _ ). +noun( 'arsenic', '-', mass, _ ). +noun( 'arson', '-', mass, _ ). +noun( 'art', 'arts', both, _ ). +noun( 'artefact', 'artefacts', count, _ ). +noun( 'arteriosclerosis', '-', mass, _ ). +noun( 'artery', 'arteries', count, _ ). +noun( 'artfulness', '-', mass, _ ). +noun( 'arthritis', '-', mass, _ ). +noun( 'artichoke', 'artichokes', count, _ ). +noun( 'article', 'articles', count, _ ). +noun( 'articulation', '-', mass, _ ). +noun( 'artifact', 'artifacts', count, _ ). +noun( 'artifice', 'artifices', both, _ ). +noun( 'artificer', 'artificers', count, _ ). +noun( 'artillery', '-', mass, _ ). +noun( 'artisan', 'artisans', count, _ ). +noun( 'artist', 'artists', count, _ ). +noun( 'artiste', 'artistes', count, _ ). +noun( 'artistry', '-', mass, _ ). +noun( 'artlessness', '-', mass, _ ). +noun( 'arum', 'arums', count, _ ). +noun( 'asap', '-', proper, _ ). +noun( 'asbestos', '-', mass, _ ). +noun( 'ascendancy', '-', mass, _ ). +noun( 'ascendant', 'ascendants', count, _ ). +noun( 'ascendency', '-', mass, _ ). +noun( 'ascendent', 'ascendents', count, _ ). +noun( 'ascension', 'ascensions', count, _ ). +noun( 'ascent', 'ascents', count, _ ). +noun( 'ascetic', 'ascetics', count, _ ). +noun( 'asceticism', '-', mass, _ ). +noun( 'ascription', 'ascriptions', count, _ ). +noun( 'asdic', 'asdics', count, _ ). +noun( 'asepsis', '-', mass, _ ). +noun( 'asexuality', '-', mass, _ ). +noun( 'ash', 'ashes', both, _ ). +noun( 'ash-bin', 'ash-bins', count, _ ). +noun( 'ash-can', 'ash-cans', count, _ ). +noun( 'ash-key', 'ash-keys', count, _ ). +noun( 'ash-pan', 'ash-pans', count, _ ). +noun( 'ashtray', 'ashtrays', count, _ ). +noun( 'aside', 'asides', count, _ ). +noun( 'asking', '-', count, _ ). +noun( 'asp', 'asps', count, _ ). +noun( 'asparagus', '-', mass, _ ). +noun( 'aspect', 'aspects', count, _ ). +noun( 'aspen', 'aspens', count, _ ). +noun( 'asperity', 'asperities', both, _ ). +noun( 'aspersion', 'aspersions', count, _ ). +noun( 'asphalt', '-', mass, _ ). +noun( 'asphodel', 'asphodels', count, _ ). +noun( 'asphyxia', '-', mass, _ ). +noun( 'asphyxiation', '-', mass, _ ). +noun( 'aspic', '-', mass, _ ). +noun( 'aspidistra', 'aspidistras', count, _ ). +noun( 'aspirant', 'aspirants', count, _ ). +noun( 'aspirate', 'aspirates', count, _ ). +noun( 'aspiration', 'aspirations', both, _ ). +noun( 'aspirin', 'aspirins', both, _ ). +noun( 'ass', 'asses', count, _ ). +noun( 'assagai', 'assagais', count, _ ). +noun( 'assailant', 'assailants', count, _ ). +noun( 'assassin', 'assassins', count, _ ). +noun( 'assassination', 'assassinations', both, _ ). +noun( 'assault', 'assaults', count, _ ). +noun( 'assay', 'assays', count, _ ). +noun( 'assegai', 'assegais', count, _ ). +noun( 'assemblage', 'assemblages', both, _ ). +noun( 'assembly', 'assemblies', count, _ ). +noun( 'assent', 'assents', count, _ ). +noun( 'assertion', 'assertions', both, _ ). +noun( 'assessment', 'assessments', both, _ ). +noun( 'assessor', 'assessors', count, _ ). +noun( 'asset', 'assets', count, _ ). +noun( 'asseveration', 'asseverations', count, _ ). +noun( 'asshole', 'assholes', count, _ ). +noun( 'assiduity', 'assiduities', both, _ ). +noun( 'assignation', 'assignations', count, _ ). +noun( 'assignment', 'assignments', both, _ ). +noun( 'assimilation', '-', mass, _ ). +noun( 'assistance', '-', mass, _ ). +noun( 'assistant', 'assistants', count, _ ). +noun( 'assize', '-', mass, _ ). +noun( 'assoc', '-', count, _ ). +noun( 'associate', 'associates', count, _ ). +noun( 'association', 'associations', both, _ ). +noun( 'assonance', 'assonances', count, _ ). +noun( 'assortment', 'assortments', count, _ ). +noun( 'asst', '-', count, _ ). +noun( 'assumption', 'assumptions', count, _ ). +noun( 'assurance', 'assurances', both, _ ). +noun( 'assuredness', '-', mass, _ ). +noun( 'aster', 'asters', count, _ ). +noun( 'asterisk', 'asterisks', count, _ ). +noun( 'asteroid', 'asteroids', count, _ ). +noun( 'asthma', '-', mass, _ ). +noun( 'astigmatism', '-', mass, _ ). +noun( 'astonishment', '-', mass, _ ). +noun( 'astrakhan', '-', mass, _ ). +noun( 'astringency', '-', mass, _ ). +noun( 'astringent', 'astringents', count, _ ). +noun( 'astrodome', 'astrodomes', count, _ ). +noun( 'astrolabe', 'astrolabes', count, _ ). +noun( 'astrologer', 'astrologers', count, _ ). +noun( 'astrology', '-', mass, _ ). +noun( 'astronaut', 'astronauts', count, _ ). +noun( 'astronautics', 'astronautics', mass, _ ). +noun( 'astronomer', 'astronomers', count, _ ). +noun( 'astronomy', '-', mass, _ ). +noun( 'astrophysics', 'astrophysics', mass, _ ). +noun( 'astuteness', '-', mass, _ ). +noun( 'asylum', 'asylums', both, _ ). +noun( 'asymmetry', '-', mass, _ ). +noun( 'asymptote', 'asymptotes', count, _ ). +noun( 'at-home', 'at-homes', count, _ ). +noun( 'atabrine', '-', mass, _ ). +noun( 'atavism', 'atavisms', count, _ ). +noun( 'atelier', 'ateliers', count, _ ). +noun( 'atheism', '-', mass, _ ). +noun( 'atheist', 'atheists', count, _ ). +noun( 'athlete', 'athletes', count, _ ). +noun( 'athletics', 'athletics', mass, _ ). +noun( 'atlas', 'atlases', count, _ ). +noun( 'atmosphere', 'atmospheres', both, _ ). +noun( 'atmospherics', 'atmospherics', mass, _ ). +noun( 'atoll', 'atolls', count, _ ). +noun( 'atom', 'atoms', count, _ ). +noun( 'atomizer', 'atomizers', count, _ ). +noun( 'atonality', '-', mass, _ ). +noun( 'atonement', '-', mass, _ ). +noun( 'atrocity', 'atrocities', both, _ ). +noun( 'atrophy', '-', mass, _ ). +noun( 'attach_e', 'attach_es', count, _ ). +noun( 'attachment', 'attachments', both, _ ). +noun( 'attack', 'attacks', both, _ ). +noun( 'attacker', 'attackers', count, _ ). +noun( 'attainder', 'attainders', count, _ ). +noun( 'attainment', 'attainments', both, _ ). +noun( 'attar', '-', mass, _ ). +noun( 'attempt', 'attempts', count, _ ). +noun( 'attendance', 'attendances', both, _ ). +noun( 'attendant', 'attendants', count, _ ). +noun( 'attention', 'attentions', both, _ ). +noun( 'attentiveness', '-', mass, _ ). +noun( 'attenuation', '-', mass, _ ). +noun( 'attic', 'attics', count, _ ). +noun( 'attire', '-', mass, _ ). +noun( 'attitude', 'attitudes', count, _ ). +noun( 'attorney', 'attorneys', count, _ ). +noun( 'attraction', 'attractions', both, _ ). +noun( 'attribute', 'attributes', count, _ ). +noun( 'attribution', 'attributions', both, _ ). +noun( 'attrition', '-', mass, _ ). +noun( 'au pair', 'au pairs', count, _ ). +noun( 'aubergine', 'aubergines', count, _ ). +noun( 'aubrietia', 'aubrietias', count, _ ). +noun( 'auction', 'auctions', both, _ ). +noun( 'auctioneer', 'auctioneers', count, _ ). +noun( 'audacity', '-', mass, _ ). +noun( 'audibility', '-', mass, _ ). +noun( 'audience', 'audiences', count, _ ). +noun( 'audit', 'audits', count, _ ). +noun( 'audition', 'auditions', both, _ ). +noun( 'auditor', 'auditors', count, _ ). +noun( 'auditorium', 'auditoriums', count, _ ). +noun( 'auger', 'augers', count, _ ). +noun( 'aught', '-', mass, _ ). +noun( 'augmentation', 'augmentations', both, _ ). +noun( 'augur', 'augurs', count, _ ). +noun( 'augury', 'auguries', count, _ ). +noun( 'auk', 'auks', count, _ ). +noun( 'auld lang syne', '-', count, _ ). +noun( 'aunt', 'aunts', count, _ ). +noun( 'auntie', 'aunties', count, _ ). +noun( 'aunty', 'aunties', count, _ ). +noun( 'aura', 'auras', count, _ ). +noun( 'aureole', 'aureoles', count, _ ). +noun( 'auricle', 'auricles', count, _ ). +noun( 'aurora', 'auroras', count, _ ). +noun( 'austerity', 'austerities', both, _ ). +noun( 'autarchy', 'autarchies', both, _ ). +noun( 'autarky', '-', mass, _ ). +noun( 'authentication', '-', mass, _ ). +noun( 'authenticity', '-', mass, _ ). +noun( 'author', 'authors', count, _ ). +noun( 'authoress', 'authoresses', count, _ ). +noun( 'authoritarian', 'authoritarians', count, _ ). +noun( 'authoritarianism', '-', mass, _ ). +noun( 'authority', 'authorities', both, _ ). +noun( 'authorization', '-', mass, _ ). +noun( 'authorship', '-', mass, _ ). +noun( 'autism', '-', mass, _ ). +noun( 'auto', 'autos', count, _ ). +noun( 'auto-changer', 'auto-changers', count, _ ). +noun( 'auto-da-f_e', '-', count, _ ). +noun( 'autobahn', 'autobahns', count, _ ). +noun( 'autobiography', 'autobiographies', both, _ ). +noun( 'autocracy', 'autocracies', both, _ ). +noun( 'autocrat', 'autocrats', count, _ ). +noun( 'autogiro', 'autogiros', count, _ ). +noun( 'autograph', 'autographs', count, _ ). +noun( 'autogyro', 'autogyros', count, _ ). +noun( 'automat', 'automats', count, _ ). +noun( 'automatic', 'automatics', count, _ ). +noun( 'automation', '-', mass, _ ). +noun( 'automaton', 'automatons', count, _ ). +noun( 'automobile', 'automobiles', count, _ ). +noun( 'autonomy', 'autonomies', both, _ ). +noun( 'autopsy', 'autopsies', count, _ ). +noun( 'autostrada', 'autostradas', count, _ ). +noun( 'autumn', 'autumns', both, _ ). +noun( 'auxiliary', 'auxiliaries', count, _ ). +noun( 'avail', '-', mass, _ ). +noun( 'availability', '-', mass, _ ). +noun( 'avalanche', 'avalanches', count, _ ). +noun( 'avant-garde', '-', count, _ ). +noun( 'avarice', '-', mass, _ ). +noun( 'avatar', 'avatars', count, _ ). +noun( 'avenger', 'avengers', count, _ ). +noun( 'avenue', 'avenues', count, _ ). +noun( 'average', 'averages', both, _ ). +noun( 'aversion', 'aversions', both, _ ). +noun( 'aviary', 'aviaries', count, _ ). +noun( 'aviation', '-', mass, _ ). +noun( 'aviator', 'aviators', count, _ ). +noun( 'avidity', '-', mass, _ ). +noun( 'avocado', 'avocados', count, _ ). +noun( 'avocation', 'avocations', count, _ ). +noun( 'avoidance', '-', mass, _ ). +noun( 'avoirdupois', '-', mass, _ ). +noun( 'avowal', 'avowals', both, _ ). +noun( 'awakening', 'awakenings', count, _ ). +noun( 'award', 'awards', count, _ ). +noun( 'awareness', '-', mass, _ ). +noun( 'awe', '-', mass, _ ). +noun( 'awkwardness', '-', mass, _ ). +noun( 'awl', 'awls', count, _ ). +noun( 'awning', 'awnings', count, _ ). +noun( 'ax', 'axes', count, _ ). +noun( 'axe', 'axes', count, _ ). +noun( 'axiom', 'axioms', count, _ ). +noun( 'axis', 'axes', count, _ ). +noun( 'axle', 'axles', count, _ ). +noun( 'ayah', 'ayahs', count, _ ). +noun( 'azalea', 'azaleas', count, _ ). +noun( 'azimuth', 'azimuths', count, _ ). +noun( 'azure', 'azures', count, _ ). +noun( 'b', '-', count, _ ). +noun( 'b^ete noire', 'b^etes noires', count, _ ). +noun( 'baa', 'baas', count, _ ). +noun( 'baa-lamb', 'baa-lambs', count, _ ). +noun( 'baas', '-', count, _ ). +noun( 'babble', '-', mass, _ ). +noun( 'babbler', 'babblers', count, _ ). +noun( 'babe', 'babes', count, _ ). +noun( 'babel', 'babels', count, _ ). +noun( 'baboo', 'baboos', count, _ ). +noun( 'baboon', 'baboons', count, _ ). +noun( 'babu', 'babus', count, _ ). +noun( 'baby', 'babies', count, _ ). +noun( 'baby-farmer', 'baby-farmers', count, _ ). +noun( 'baby-minder', 'baby-minders', count, _ ). +noun( 'baby-talk', '-', mass, _ ). +noun( 'babyhood', '-', count, _ ). +noun( 'babysitter', 'babysitters', count, _ ). +noun( 'babysitting', '-', mass, _ ). +noun( 'baccalaureate', 'baccalaureates', count, _ ). +noun( 'baccarat', '-', mass, _ ). +noun( 'bacchanal', 'bacchanals', count, _ ). +noun( 'baccy', '-', mass, _ ). +noun( 'bachelor', 'bachelors', count, _ ). +noun( 'bacillus', 'bacilli', count, _ ). +noun( 'back', 'backs', count, _ ). +noun( 'back-down', 'back-downs', count, _ ). +noun( 'back-formation', 'back-formations', both, _ ). +noun( 'back-up', 'back-ups', count, _ ). +noun( 'backache', 'backaches', both, _ ). +noun( 'backband', 'backbands', count, _ ). +noun( 'backbench', 'backbenches', count, _ ). +noun( 'backbencher', 'backbenchers', count, _ ). +noun( 'backbiter', 'backbiters', count, _ ). +noun( 'backboard', 'backboards', count, _ ). +noun( 'backbone', 'backbones', both, _ ). +noun( 'backchat', '-', mass, _ ). +noun( 'backcloth', 'backcloths', count, _ ). +noun( 'backdoor', 'backdoors', count, _ ). +noun( 'backdrop', 'backdrops', count, _ ). +noun( 'backer', 'backers', count, _ ). +noun( 'backfire', 'backfires', count, _ ). +noun( 'backgammon', '-', mass, _ ). +noun( 'background', 'backgrounds', count, _ ). +noun( 'backing', 'backings', both, _ ). +noun( 'backlash', '-', mass, _ ). +noun( 'backlog', 'backlogs', count, _ ). +noun( 'backroom', 'backrooms', count, _ ). +noun( 'backscratcher', 'backscratchers', count, _ ). +noun( 'backseat', 'backseats', count, _ ). +noun( 'backsheesh', 'backsheesh', both, _ ). +noun( 'backside', 'backsides', count, _ ). +noun( 'backstroke', 'backstrokes', both, _ ). +noun( 'backsword', 'backswords', count, _ ). +noun( 'backtalk', '-', mass, _ ). +noun( 'backwash', '-', mass, _ ). +noun( 'backwater', 'backwaters', count, _ ). +noun( 'backwoodsman', 'backwoodsmen', count, _ ). +noun( 'bacon', '-', mass, _ ). +noun( 'bacteriologist', 'bacteriologists', count, _ ). +noun( 'bacteriology', '-', mass, _ ). +noun( 'bacterium', 'bacteria', count, _ ). +noun( 'bad', '-', mass, _ ). +noun( 'badge', 'badges', count, _ ). +noun( 'badger', 'badgers', count, _ ). +noun( 'badinage', '-', mass, _ ). +noun( 'badminton', '-', mass, _ ). +noun( 'badness', '-', mass, _ ). +noun( 'baffle', 'baffles', count, _ ). +noun( 'bag', 'bags', count, _ ). +noun( 'bagatelle', 'bagatelles', both, _ ). +noun( 'baggage', '-', mass, _ ). +noun( 'bagnio', 'bagnios', count, _ ). +noun( 'bagpipe', 'bagpipes', count, _ ). +noun( 'bail', 'bails', both, _ ). +noun( 'bailee', 'bailees', count, _ ). +noun( 'bailey', 'baileys', count, _ ). +noun( 'bailiff', 'bailiffs', count, _ ). +noun( 'bailment', 'bailments', count, _ ). +noun( 'bailor', 'bailors', count, _ ). +noun( 'bairn', 'bairns', count, _ ). +noun( 'bait', 'baits', count, _ ). +noun( 'baize', '-', mass, _ ). +noun( 'bakelite', '-', mass, _ ). +noun( 'baker', 'bakers', count, _ ). +noun( 'bakery', 'bakeries', count, _ ). +noun( 'baking-powder', 'baking-powders', count, _ ). +noun( 'baksheesh', 'baksheesh', both, _ ). +noun( 'balaclava', 'balaclavas', count, _ ). +noun( 'balalaika', 'balalaikas', count, _ ). +noun( 'balance', 'balances', both, _ ). +noun( 'balance-sheet', 'balance-sheets', count, _ ). +noun( 'balance-wheel', 'balance-wheels', count, _ ). +noun( 'balcony', 'balconies', count, _ ). +noun( 'bald-head', 'bald-heads', count, _ ). +noun( 'bald-pate', 'bald-pates', count, _ ). +noun( 'balderdash', '-', mass, _ ). +noun( 'baldness', '-', mass, _ ). +noun( 'baldric', 'baldrics', count, _ ). +noun( 'bale', 'bales', count, _ ). +noun( 'balk', 'balks', count, _ ). +noun( 'ball', 'balls', count, _ ). +noun( 'ball-cartridge', 'ball-cartridges', count, _ ). +noun( 'ball-dress', 'ball-dresses', count, _ ). +noun( 'ballad', 'ballads', count, _ ). +noun( 'ballade', 'ballades', count, _ ). +noun( 'ballast', '-', mass, _ ). +noun( 'ballbearing', 'ballbearings', count, _ ). +noun( 'ballcock', 'ballcocks', count, _ ). +noun( 'ballerina', 'ballerinas', count, _ ). +noun( 'ballet', 'ballets', both, _ ). +noun( 'ballet-dancer', 'ballet-dancers', count, _ ). +noun( 'ballet-skirt', 'ballet-skirts', count, _ ). +noun( 'ballistics', 'ballistics', mass, _ ). +noun( 'ballock', 'ballocks', count, _ ). +noun( 'balloon', 'balloons', count, _ ). +noun( 'balloonist', 'balloonists', count, _ ). +noun( 'ballot', 'ballots', both, _ ). +noun( 'ballot-box', 'ballot-boxes', count, _ ). +noun( 'ballpen', 'ballpens', count, _ ). +noun( 'ballpoint', 'ballpoints', count, _ ). +noun( 'ballpoint-pen', 'ballpoint-pens', count, _ ). +noun( 'ballroom', 'ballrooms', count, _ ). +noun( 'balls-up', 'balls-ups', count, _ ). +noun( 'ballyhoo', '-', mass, _ ). +noun( 'balm', '-', mass, _ ). +noun( 'baloney', '-', mass, _ ). +noun( 'balsa', 'balsas', both, _ ). +noun( 'balsam', 'balsams', count, _ ). +noun( 'baluster', 'balusters', count, _ ). +noun( 'balustrade', 'balustrades', count, _ ). +noun( 'bambino', 'bambinos', count, _ ). +noun( 'bamboo', 'bamboos', both, _ ). +noun( 'ban', 'bans', count, _ ). +noun( 'banality', 'banalities', both, _ ). +noun( 'banana', 'bananas', count, _ ). +noun( 'band', 'bands', count, _ ). +noun( 'band-saw', 'band-saws', count, _ ). +noun( 'bandage', 'bandages', count, _ ). +noun( 'bandanna', 'bandannas', count, _ ). +noun( 'bandbox', 'bandboxes', count, _ ). +noun( 'bandeau', 'bandeaux', count, _ ). +noun( 'bandit', 'bandits', count, _ ). +noun( 'banditry', '-', mass, _ ). +noun( 'bandleader', 'bandleaders', count, _ ). +noun( 'bandmaster', 'bandmasters', count, _ ). +noun( 'bandoleer', 'bandoleers', count, _ ). +noun( 'bandolier', 'bandoliers', count, _ ). +noun( 'bandsman', 'bandsmen', count, _ ). +noun( 'bandstand', 'bandstands', count, _ ). +noun( 'bandwagon', 'bandwagons', count, _ ). +noun( 'bane', '-', mass, _ ). +noun( 'bang', 'bangs', both, _ ). +noun( 'banger', 'bangers', count, _ ). +noun( 'bangle', 'bangles', count, _ ). +noun( 'banian', 'banians', count, _ ). +noun( 'banian-tree', 'banian-trees', count, _ ). +noun( 'banishment', '-', mass, _ ). +noun( 'banister', 'banisters', count, _ ). +noun( 'banjo', 'banjos', count, _ ). +noun( 'bank', 'banks', count, _ ). +noun( 'bank-bill', 'bank-bills', count, _ ). +noun( 'bank-book', 'bank-books', count, _ ). +noun( 'bank-draft', 'bank-drafts', count, _ ). +noun( 'bank-rate', 'bank-rates', count, _ ). +noun( 'banker', 'bankers', count, _ ). +noun( 'banking', '-', mass, _ ). +noun( 'banknote', 'banknotes', count, _ ). +noun( 'bankroll', 'bankrolls', count, _ ). +noun( 'bankrupt', 'bankrupts', count, _ ). +noun( 'bankruptcy', 'bankruptcies', both, _ ). +noun( 'banner', 'banners', count, _ ). +noun( 'banning-order', 'banning-orders', count, _ ). +noun( 'bannister', 'bannisters', count, _ ). +noun( 'bannock', 'bannocks', count, _ ). +noun( 'banquet', 'banquets', count, _ ). +noun( 'banshee', 'banshees', count, _ ). +noun( 'bantam', 'bantams', count, _ ). +noun( 'banter', '-', mass, _ ). +noun( 'banting', '-', mass, _ ). +noun( 'banyan', 'banyans', count, _ ). +noun( 'baobab', 'baobabs', count, _ ). +noun( 'baptism', 'baptisms', both, _ ). +noun( 'bar', 'bars', count, _ ). +noun( 'barb', 'barbs', count, _ ). +noun( 'barbarian', 'barbarians', count, _ ). +noun( 'barbarism', 'barbarisms', both, _ ). +noun( 'barbarity', 'barbarities', both, _ ). +noun( 'barbecue', 'barbecues', count, _ ). +noun( 'barbel', 'barbels', count, _ ). +noun( 'barber', 'barbers', count, _ ). +noun( 'barbican', 'barbicans', count, _ ). +noun( 'barbitone', '-', mass, _ ). +noun( 'barbiturate', 'barbiturates', both, _ ). +noun( 'barcarole', 'barcaroles', count, _ ). +noun( 'barcarolle', 'barcarolles', count, _ ). +noun( 'bard', 'bards', count, _ ). +noun( 'bardolatry', '-', mass, _ ). +noun( 'bareness', '-', mass, _ ). +noun( 'bargain', 'bargains', count, _ ). +noun( 'barge', 'barges', count, _ ). +noun( 'bargee', 'bargees', count, _ ). +noun( 'bargepole', 'bargepoles', count, _ ). +noun( 'baritone', 'baritones', count, _ ). +noun( 'barium', '-', mass, _ ). +noun( 'bark', 'barks', both, _ ). +noun( 'barker', 'barkers', count, _ ). +noun( 'barley', '-', mass, _ ). +noun( 'barley-sugar', 'barley-sugars', both, _ ). +noun( 'barley-water', '-', mass, _ ). +noun( 'barleycorn', 'barleycorns', both, _ ). +noun( 'barm', '-', mass, _ ). +noun( 'barmaid', 'barmaids', count, _ ). +noun( 'barman', 'barmen', count, _ ). +noun( 'barn', 'barns', count, _ ). +noun( 'barn-door', 'barn-doors', count, _ ). +noun( 'barnacle', 'barnacles', count, _ ). +noun( 'barnstormer', 'barnstormers', count, _ ). +noun( 'barnyard', 'barnyards', count, _ ). +noun( 'barometer', 'barometers', count, _ ). +noun( 'baron', 'barons', count, _ ). +noun( 'baronage', 'baronages', count, _ ). +noun( 'baroness', 'baronesses', count, _ ). +noun( 'baronet', 'baronets', count, _ ). +noun( 'baronetcy', 'baronetcies', count, _ ). +noun( 'barony', 'baronies', count, _ ). +noun( 'baroque', '-', count, _ ). +noun( 'barouche', 'barouches', count, _ ). +noun( 'barque', 'barques', count, _ ). +noun( 'barrack', 'barracks', count, _ ). +noun( 'barracking', '-', mass, _ ). +noun( 'barracuda', 'barracudas', count, _ ). +noun( 'barrage', 'barrages', count, _ ). +noun( 'barrel', 'barrels', count, _ ). +noun( 'barrenness', '-', mass, _ ). +noun( 'barricade', 'barricades', count, _ ). +noun( 'barrier', 'barriers', count, _ ). +noun( 'barrister', 'barristers', count, _ ). +noun( 'barrow', 'barrows', count, _ ). +noun( 'barrow-boy', 'barrow-boys', count, _ ). +noun( 'barrow-man', 'barrow-men', count, _ ). +noun( 'bartender', 'bartenders', count, _ ). +noun( 'barter', '-', mass, _ ). +noun( 'barterer', 'barterers', count, _ ). +noun( 'bas-relief', 'bas-reliefs', both, _ ). +noun( 'basalt', '-', mass, _ ). +noun( 'bascule', 'bascules', count, _ ). +noun( 'base', 'bases', count, _ ). +noun( 'baseball', 'baseballs', both, _ ). +noun( 'baseboard', 'baseboards', count, _ ). +noun( 'basement', 'basements', count, _ ). +noun( 'bash', 'bashes', count, _ ). +noun( 'basil', '-', mass, _ ). +noun( 'basilica', 'basilicas', count, _ ). +noun( 'basilisk', 'basilisks', count, _ ). +noun( 'basin', 'basins', count, _ ). +noun( 'basis', 'bases', count, _ ). +noun( 'basket', 'baskets', count, _ ). +noun( 'basketball', 'basketballs', both, _ ). +noun( 'basketry', '-', mass, _ ). +noun( 'bass', 'bass', count, _ ). +noun( 'bass', 'basses', count, _ ). +noun( 'bassinet', 'bassinets', count, _ ). +noun( 'bassoon', 'bassoons', count, _ ). +noun( 'bast', '-', mass, _ ). +noun( 'bastard', 'bastards', count, _ ). +noun( 'bastardy', 'bastardies', count, _ ). +noun( 'bastinado', '-', count, _ ). +noun( 'bastion', 'bastions', count, _ ). +noun( 'bat', 'bats', count, _ ). +noun( 'batch', 'batches', count, _ ). +noun( 'bath', 'baths', count, _ ). +noun( 'bathe', 'bathes', count, _ ). +noun( 'bather', 'bathers', count, _ ). +noun( 'bathing', 'bathings', count, _ ). +noun( 'bathing-cap', 'bathing-caps', count, _ ). +noun( 'bathing-costume', 'bathing-costumes', count, _ ). +noun( 'bathing-machine', 'bathing-machines', count, _ ). +noun( 'bathing-suit', 'bathing-suits', count, _ ). +noun( 'bathos', '-', mass, _ ). +noun( 'bathrobe', 'bathrobes', count, _ ). +noun( 'bathroom', 'bathrooms', count, _ ). +noun( 'bathtub', 'bathtubs', count, _ ). +noun( 'bathysphere', 'bathyspheres', count, _ ). +noun( 'batik', 'batiks', both, _ ). +noun( 'batiste', '-', mass, _ ). +noun( 'batman', 'batmen', count, _ ). +noun( 'baton', 'batons', count, _ ). +noun( 'batsman', 'batsmen', count, _ ). +noun( 'battalion', 'battalions', count, _ ). +noun( 'batten', 'battens', count, _ ). +noun( 'batter', '-', mass, _ ). +noun( 'battery', 'batteries', count, _ ). +noun( 'batting', '-', mass, _ ). +noun( 'battle', 'battles', both, _ ). +noun( 'battle-axe', 'battle-axes', count, _ ). +noun( 'battle-cruiser', 'battle-cruisers', count, _ ). +noun( 'battledore', 'battledores', count, _ ). +noun( 'battledress', '-', count, _ ). +noun( 'battlefield', 'battlefields', count, _ ). +noun( 'battleground', 'battlegrounds', count, _ ). +noun( 'battleship', 'battleships', count, _ ). +noun( 'battue', 'battues', count, _ ). +noun( 'bauble', 'baubles', count, _ ). +noun( 'baulk', 'baulks', count, _ ). +noun( 'bauxite', '-', mass, _ ). +noun( 'bawbee', 'bawbees', count, _ ). +noun( 'bawd', 'bawds', count, _ ). +noun( 'bawdy', '-', mass, _ ). +noun( 'bay', 'bays', count, _ ). +noun( 'bay-wreath', 'bay-wreaths', count, _ ). +noun( 'bayonet', 'bayonets', count, _ ). +noun( 'bayou', 'bayous', count, _ ). +noun( 'bazaar', 'bazaars', count, _ ). +noun( 'bazooka', 'bazookas', count, _ ). +noun( 'beach', 'beaches', count, _ ). +noun( 'beachcomber', 'beachcombers', count, _ ). +noun( 'beachhead', 'beachheads', count, _ ). +noun( 'beachwear', '-', mass, _ ). +noun( 'beacon', 'beacons', count, _ ). +noun( 'beacon-fire', 'beacon-fires', count, _ ). +noun( 'beacon-light', 'beacon-lights', count, _ ). +noun( 'bead', 'beads', count, _ ). +noun( 'beading', '-', mass, _ ). +noun( 'beadle', 'beadles', count, _ ). +noun( 'beagle', 'beagles', count, _ ). +noun( 'beagling', '-', mass, _ ). +noun( 'beak', 'beaks', count, _ ). +noun( 'beaker', 'beakers', count, _ ). +noun( 'beam', 'beams', count, _ ). +noun( 'bean', 'beans', count, _ ). +noun( 'beanfeast', 'beanfeasts', count, _ ). +noun( 'beano', 'beanos', count, _ ). +noun( 'beanstalk', 'beanstalks', count, _ ). +noun( 'bear', 'bears', count, _ ). +noun( 'beard', 'beards', count, _ ). +noun( 'bearer', 'bearers', count, _ ). +noun( 'bearing', 'bearings', both, _ ). +noun( 'bearskin', 'bearskins', count, _ ). +noun( 'beast', 'beasts', count, _ ). +noun( 'beastliness', '-', mass, _ ). +noun( 'beat', 'beats', count, _ ). +noun( 'beater', 'beaters', count, _ ). +noun( 'beatification', 'beatifications', count, _ ). +noun( 'beating', 'beatings', count, _ ). +noun( 'beatitude', 'beatitudes', both, _ ). +noun( 'beatnik', 'beatniks', count, _ ). +noun( 'beau', 'beaux', count, _ ). +noun( 'beautician', 'beauticians', count, _ ). +noun( 'beauty', 'beauties', both, _ ). +noun( 'beauty-parlour', 'beauty-parlours', count, _ ). +noun( 'beauty-salon', 'beauty-salons', count, _ ). +noun( 'beauty-sleep', '-', mass, _ ). +noun( 'beauty-spot', 'beauty-spots', count, _ ). +noun( 'beaver', 'beavers', both, _ ). +noun( 'beck', 'becks', count, _ ). +noun( 'bed', 'beds', count, _ ). +noun( 'bedbug', 'bedbugs', count, _ ). +noun( 'bedding', '-', mass, _ ). +noun( 'bedevilment', 'bedevilments', count, _ ). +noun( 'bedfellow', 'bedfellows', count, _ ). +noun( 'bedlam', 'bedlams', count, _ ). +noun( 'bedpan', 'bedpans', count, _ ). +noun( 'bedpost', 'bedposts', count, _ ). +noun( 'bedrock', 'bedrocks', count, _ ). +noun( 'bedroll', 'bedrolls', count, _ ). +noun( 'bedroom', 'bedrooms', count, _ ). +noun( 'bedside', 'bedsides', count, _ ). +noun( 'bedsit', 'bedsits', count, _ ). +noun( 'bedsitter', 'bedsitters', count, _ ). +noun( 'bedsitting-room', 'bedsitting-rooms', count, _ ). +noun( 'bedsore', 'bedsores', count, _ ). +noun( 'bedspread', 'bedspreads', count, _ ). +noun( 'bedstead', 'bedsteads', count, _ ). +noun( 'bedtime', 'bedtimes', count, _ ). +noun( 'bee', 'bees', count, _ ). +noun( 'beech', 'beeches', both, _ ). +noun( 'beef', '-', both, _ ). +noun( 'beefeater', 'beefeaters', count, _ ). +noun( 'beefsteak', 'beefsteaks', count, _ ). +noun( 'beehive', 'beehives', count, _ ). +noun( 'beep', 'beeps', count, _ ). +noun( 'beer', 'beers', both, _ ). +noun( 'beeswax', '-', mass, _ ). +noun( 'beet', 'beets', count, _ ). +noun( 'beetle', 'beetles', count, _ ). +noun( 'beetroot', 'beetroots', count, _ ). +noun( 'begetter', 'begetters', count, _ ). +noun( 'beggar', 'beggars', count, _ ). +noun( 'beggarman', 'beggarmen', count, _ ). +noun( 'beggarwoman', 'beggarwomen', count, _ ). +noun( 'beggary', '-', mass, _ ). +noun( 'beginner', 'beginners', count, _ ). +noun( 'beginning', 'beginnings', count, _ ). +noun( 'begonia', 'begonias', count, _ ). +noun( 'begum', 'begums', count, _ ). +noun( 'behalf', 'behalves', count, _ ). +noun( 'behaviour', '-', mass, _ ). +noun( 'behaviourism', '-', mass, _ ). +noun( 'behaviourist', 'behaviourists', count, _ ). +noun( 'behest', 'behests', count, _ ). +noun( 'behind', 'behinds', count, _ ). +noun( 'beholder', 'beholders', count, _ ). +noun( 'beige', '-', mass, _ ). +noun( 'being', 'beings', both, _ ). +noun( 'belay', 'belays', count, _ ). +noun( 'belaying-pin', 'belaying-pins', count, _ ). +noun( 'belch', 'belches', count, _ ). +noun( 'beldam', 'beldams', count, _ ). +noun( 'beldame', 'beldames', count, _ ). +noun( 'belfry', 'belfries', count, _ ). +noun( 'belief', 'beliefs', both, _ ). +noun( 'believer', 'believers', count, _ ). +noun( 'believing', '-', mass, _ ). +noun( 'bell', 'bells', count, _ ). +noun( 'bell-buoy', 'bell-buoys', count, _ ). +noun( 'bell-flower', 'bell-flowers', count, _ ). +noun( 'bell-founder', 'bell-founders', count, _ ). +noun( 'bell-foundry', 'bell-foundries', count, _ ). +noun( 'bell-metal', '-', mass, _ ). +noun( 'bell-push', 'bell-pushes', count, _ ). +noun( 'bell-ringer', 'bell-ringers', count, _ ). +noun( 'bell-tent', 'bell-tents', count, _ ). +noun( 'belladonna', 'belladonnas', both, _ ). +noun( 'bellboy', 'bellboys', count, _ ). +noun( 'belle', 'belles', count, _ ). +noun( 'bellhop', 'bellhops', count, _ ). +noun( 'belligerency', '-', mass, _ ). +noun( 'belligerent', 'belligerents', count, _ ). +noun( 'bellwether', 'bellwethers', count, _ ). +noun( 'belly', 'bellies', count, _ ). +noun( 'bellyache', 'bellyaches', count, _ ). +noun( 'bellyflop', 'bellyflops', count, _ ). +noun( 'bellyful', 'bellyfuls', count, _ ). +noun( 'bellylaugh', 'bellylaughs', count, _ ). +noun( 'beloved', 'beloveds', count, _ ). +noun( 'belt', 'belts', count, _ ). +noun( 'belting', 'beltings', count, _ ). +noun( 'ben', 'bens', count, _ ). +noun( 'bench', 'benches', count, _ ). +noun( 'bend', 'bends', count, _ ). +noun( 'benedick', 'benedicks', count, _ ). +noun( 'benediction', 'benedictions', count, _ ). +noun( 'benefaction', 'benefactions', both, _ ). +noun( 'benefactor', 'benefactors', count, _ ). +noun( 'benefactress', 'benefactresses', count, _ ). +noun( 'benefice', 'benefices', count, _ ). +noun( 'beneficence', '-', mass, _ ). +noun( 'beneficiary', 'beneficiaries', count, _ ). +noun( 'benefit', 'benefits', both, _ ). +noun( 'benevolence', '-', mass, _ ). +noun( 'benignity', 'benignities', both, _ ). +noun( 'benison', 'benisons', count, _ ). +noun( 'bent', 'bents', count, _ ). +noun( 'benzene', '-', mass, _ ). +noun( 'benzine', '-', mass, _ ). +noun( 'benzol', '-', mass, _ ). +noun( 'bequest', 'bequests', both, _ ). +noun( 'bereavement', 'bereavements', both, _ ). +noun( 'beret', 'berets', count, _ ). +noun( 'berg', 'bergs', count, _ ). +noun( 'beri-beri', '-', mass, _ ). +noun( 'berry', 'berries', count, _ ). +noun( 'berth', 'berths', count, _ ). +noun( 'beryl', 'beryls', count, _ ). +noun( 'besieger', 'besiegers', count, _ ). +noun( 'besom', 'besoms', count, _ ). +noun( 'best-seller', 'best-sellers', count, _ ). +noun( 'bestiality', 'bestialities', both, _ ). +noun( 'bestiary', 'bestiaries', count, _ ). +noun( 'bestowal', 'bestowals', count, _ ). +noun( 'bet', 'bets', count, _ ). +noun( 'beta', 'betas', count, _ ). +noun( 'betel', 'betels', count, _ ). +noun( 'betel-nut', 'betel-nuts', count, _ ). +noun( 'bethel', 'bethels', count, _ ). +noun( 'betrayal', 'betrayals', both, _ ). +noun( 'betrayer', 'betrayers', count, _ ). +noun( 'betrothal', 'betrothals', count, _ ). +noun( 'betrothed', 'betrotheds', count, _ ). +noun( 'better', 'betters', count, _ ). +noun( 'betterment', '-', mass, _ ). +noun( 'bettor', 'bettors', count, _ ). +noun( 'bevel', 'bevels', count, _ ). +noun( 'beverage', 'beverages', count, _ ). +noun( 'bevy', 'bevies', count, _ ). +noun( 'bewilderment', '-', mass, _ ). +noun( 'bey', 'beys', count, _ ). +noun( 'bezique', '-', mass, _ ). +noun( 'bhang', 'bhangs', count, _ ). +noun( 'bias', 'biases', count, _ ). +noun( 'bib', 'bibs', count, _ ). +noun( 'bibliographer', 'bibliographers', count, _ ). +noun( 'bibliography', 'bibliographies', both, _ ). +noun( 'bibliophile', 'bibliophiles', count, _ ). +noun( 'bicarbonate', '-', mass, _ ). +noun( 'bicentenary', 'bicentenaries', count, _ ). +noun( 'bicentennial', 'bicentennials', count, _ ). +noun( 'biceps', 'biceps', count, _ ). +noun( 'bicycle', 'bicycles', count, _ ). +noun( 'bid', 'bids', count, _ ). +noun( 'bidder', 'bidders', count, _ ). +noun( 'bidding', '-', mass, _ ). +noun( 'bidet', 'bidets', count, _ ). +noun( 'biennial', 'biennials', count, _ ). +noun( 'bier', 'biers', count, _ ). +noun( 'biff', 'biffs', count, _ ). +noun( 'bifurcation', 'bifurcations', count, _ ). +noun( 'bigamist', 'bigamists', count, _ ). +noun( 'bigamy', '-', mass, _ ). +noun( 'bight', 'bights', count, _ ). +noun( 'bigot', 'bigots', count, _ ). +noun( 'bigotry', 'bigotries', both, _ ). +noun( 'bigwig', 'bigwigs', count, _ ). +noun( 'bijou', '-', count, _ ). +noun( 'bike', 'bikes', count, _ ). +noun( 'bikini', 'bikinis', count, _ ). +noun( 'bilabial', 'bilabials', count, _ ). +noun( 'bilateralism', 'bilateralisms', both, _ ). +noun( 'bilberry', 'bilberries', count, _ ). +noun( 'bile', '-', mass, _ ). +noun( 'bile-duct', 'bile-ducts', count, _ ). +noun( 'bilge', '-', mass, _ ). +noun( 'bilge-water', '-', mass, _ ). +noun( 'bilharzia', '-', mass, _ ). +noun( 'bilingual', 'bilinguals', count, _ ). +noun( 'biliousness', '-', mass, _ ). +noun( 'bill', 'bills', count, _ ). +noun( 'bill-poster', 'bill-posters', count, _ ). +noun( 'bill-sticker', 'bill-stickers', count, _ ). +noun( 'billboard', 'billboards', count, _ ). +noun( 'billet', 'billets', count, _ ). +noun( 'billet-doux', 'billets-doux', count, _ ). +noun( 'billfold', 'billfolds', count, _ ). +noun( 'billhook', 'billhooks', count, _ ). +noun( 'billiard-marker', 'billiard-markers', count, _ ). +noun( 'billiard-player', 'billiard-players', count, _ ). +noun( 'billiard-room', 'billiard-rooms', count, _ ). +noun( 'billiard-table', 'billiard-tables', count, _ ). +noun( 'billiards', 'billiards', mass, _ ). +noun( 'billingsgate', '-', mass, _ ). +noun( 'billion', 'billions', count, _ ). +noun( 'billionth', 'billionths', count, _ ). +noun( 'billow', 'billows', count, _ ). +noun( 'billy', 'billies', count, _ ). +noun( 'billy-goat', 'billy-goats', count, _ ). +noun( 'billy-ho', '-', count, _ ). +noun( 'billy-o', '-', mass, _ ). +noun( 'biltong', '-', mass, _ ). +noun( 'bimetallism', '-', mass, _ ). +noun( 'bin', 'bins', count, _ ). +noun( 'bind', 'binds', both, _ ). +noun( 'binder', 'binders', count, _ ). +noun( 'bindery', 'binderies', count, _ ). +noun( 'bindweed', '-', mass, _ ). +noun( 'bine', 'bines', count, _ ). +noun( 'binge', 'binges', count, _ ). +noun( 'bingo', '-', mass, _ ). +noun( 'binnacle', 'binnacles', count, _ ). +noun( 'biochemistry', '-', mass, _ ). +noun( 'biograph', 'biographs', count, _ ). +noun( 'biographer', 'biographers', count, _ ). +noun( 'biography', 'biographies', both, _ ). +noun( 'biologist', 'biologists', count, _ ). +noun( 'biology', '-', mass, _ ). +noun( 'bioscope', 'bioscopes', count, _ ). +noun( 'biped', 'bipeds', count, _ ). +noun( 'biplane', 'biplanes', count, _ ). +noun( 'birch', 'birches', both, _ ). +noun( 'birch-rod', 'birch-rods', count, _ ). +noun( 'bird', 'birds', count, _ ). +noun( 'bird-fancier', 'bird-fanciers', count, _ ). +noun( 'birdcage', 'birdcages', count, _ ). +noun( 'birdlime', 'birdlimes', count, _ ). +noun( 'birdnesting', '-', mass, _ ). +noun( 'birdwatcher', 'birdwatchers', count, _ ). +noun( 'biretta', 'birettas', count, _ ). +noun( 'biro', 'biros', count, _ ). +noun( 'birth', 'births', both, _ ). +noun( 'birth-control', '-', mass, _ ). +noun( 'birthday', 'birthdays', count, _ ). +noun( 'birthmark', 'birthmarks', count, _ ). +noun( 'birthplace', 'birthplaces', count, _ ). +noun( 'birthrate', 'birthrates', count, _ ). +noun( 'birthright', 'birthrights', count, _ ). +noun( 'biscuit', 'biscuits', count, _ ). +noun( 'bisection', '-', mass, _ ). +noun( 'bisexual', 'bisexuals', count, _ ). +noun( 'bisexuality', '-', mass, _ ). +noun( 'bishop', 'bishops', count, _ ). +noun( 'bishopric', 'bishoprics', count, _ ). +noun( 'bismuth', '-', mass, _ ). +noun( 'bison', 'bison', count, _ ). +noun( 'bistro', 'bistros', count, _ ). +noun( 'bit', 'bits', count, _ ). +noun( 'bitch', 'bitches', count, _ ). +noun( 'bite', 'bites', both, _ ). +noun( 'bitter', 'bitters', both, _ ). +noun( 'bittern', 'bitterns', count, _ ). +noun( 'bitterness', '-', mass, _ ). +noun( 'bitumen', '-', mass, _ ). +noun( 'bivalve', 'bivalves', count, _ ). +noun( 'bivouac', 'bivouacs', count, _ ). +noun( 'biz', '-', mass, _ ). +noun( 'blabbermouth', 'blabbermouths', count, _ ). +noun( 'black', 'blacks', both, _ ). +noun( 'black-beetle', 'black-beetles', count, _ ). +noun( 'black-lead', '-', mass, _ ). +noun( 'blackamoor', 'blackamoors', count, _ ). +noun( 'blackberry', 'blackberries', count, _ ). +noun( 'blackbird', 'blackbirds', count, _ ). +noun( 'blackboard', 'blackboards', count, _ ). +noun( 'blackcurrant', 'blackcurrants', count, _ ). +noun( 'blackguard', 'blackguards', count, _ ). +noun( 'blackhead', 'blackheads', count, _ ). +noun( 'blacking', '-', mass, _ ). +noun( 'blackleg', 'blacklegs', count, _ ). +noun( 'blacklist', 'blacklists', count, _ ). +noun( 'blackmail', '-', mass, _ ). +noun( 'blackmailer', 'blackmailers', count, _ ). +noun( 'blackness', '-', mass, _ ). +noun( 'blackout', 'blackouts', count, _ ). +noun( 'blacksmith', 'blacksmiths', count, _ ). +noun( 'blackthorn', 'blackthorns', count, _ ). +noun( 'bladder', 'bladders', count, _ ). +noun( 'blade', 'blades', count, _ ). +noun( 'blaeberry', 'blaeberries', count, _ ). +noun( 'blah', '-', mass, _ ). +noun( 'blame', '-', mass, _ ). +noun( 'blancmange', 'blancmanges', both, _ ). +noun( 'blandishment', 'blandishments', count, _ ). +noun( 'blandness', '-', mass, _ ). +noun( 'blank', 'blanks', both, _ ). +noun( 'blanket', 'blankets', count, _ ). +noun( 'blare', '-', mass, _ ). +noun( 'blarney', '-', mass, _ ). +noun( 'blasphemer', 'blasphemers', count, _ ). +noun( 'blasphemy', 'blasphemies', both, _ ). +noun( 'blast', 'blasts', both, _ ). +noun( 'blast-furnace', 'blast-furnaces', count, _ ). +noun( 'blast-off', 'blast-offs', count, _ ). +noun( 'blather', 'blathers', both, _ ). +noun( 'blaze', 'blazes', count, _ ). +noun( 'blazer', 'blazers', count, _ ). +noun( 'blazon', 'blazons', count, _ ). +noun( 'blazonry', 'blazonries', count, _ ). +noun( 'bleach', 'bleaches', count, _ ). +noun( 'bleaching-powder', 'bleaching-powders', count, _ ). +noun( 'bleat', 'bleats', count, _ ). +noun( 'bleep', 'bleeps', count, _ ). +noun( 'blemish', 'blemishes', both, _ ). +noun( 'blend', 'blends', count, _ ). +noun( 'blessedness', '-', mass, _ ). +noun( 'blessing', 'blessings', count, _ ). +noun( 'blether', '-', mass, _ ). +noun( 'blight', 'blights', both, _ ). +noun( 'blighter', 'blighters', count, _ ). +noun( 'blimp', 'blimps', count, _ ). +noun( 'blind', 'blinds', count, _ ). +noun( 'blindfold', 'blindfolds', count, _ ). +noun( 'blindman\'s buff', '-', mass, _ ). +noun( 'blindness', '-', mass, _ ). +noun( 'blink', 'blinks', count, _ ). +noun( 'blip', 'blips', count, _ ). +noun( 'bliss', '-', mass, _ ). +noun( 'blister', 'blisters', count, _ ). +noun( 'blitz', 'blitzes', count, _ ). +noun( 'blizzard', 'blizzards', count, _ ). +noun( 'bloater', 'bloaters', count, _ ). +noun( 'blob', 'blobs', count, _ ). +noun( 'bloc', 'blocs', count, _ ). +noun( 'block', 'blocks', count, _ ). +noun( 'blockade', 'blockades', count, _ ). +noun( 'blockade-runner', 'blockade-runners', count, _ ). +noun( 'blockage', 'blockages', count, _ ). +noun( 'blockbuster', 'blockbusters', count, _ ). +noun( 'blockhead', 'blockheads', count, _ ). +noun( 'blockhouse', 'blockhouses', count, _ ). +noun( 'bloke', 'blokes', count, _ ). +noun( 'blond', 'blonds', count, _ ). +noun( 'blonde', 'blondes', count, _ ). +noun( 'blood', 'bloods', both, _ ). +noun( 'blood-bath', 'blood-baths', count, _ ). +noun( 'blood-donor', 'blood-donors', count, _ ). +noun( 'blood-group', 'blood-groups', count, _ ). +noun( 'blood-heat', '-', mass, _ ). +noun( 'blood-letting', 'blood-lettings', both, _ ). +noun( 'blood-money', '-', mass, _ ). +noun( 'blood-poisoning', '-', mass, _ ). +noun( 'blood-pressure', 'blood-pressures', both, _ ). +noun( 'blood-relation', 'blood-relations', count, _ ). +noun( 'blood-transfusion', 'blood-transfusions', count, _ ). +noun( 'blood-type', 'blood-types', count, _ ). +noun( 'blood-vessel', 'blood-vessels', count, _ ). +noun( 'bloodhound', 'bloodhounds', count, _ ). +noun( 'bloodlust', '-', mass, _ ). +noun( 'bloodshed', 'bloodsheds', count, _ ). +noun( 'bloodstain', 'bloodstains', count, _ ). +noun( 'bloodstock', 'bloodstocks', count, _ ). +noun( 'bloodsucker', 'bloodsuckers', count, _ ). +noun( 'bloodthirstiness', '-', mass, _ ). +noun( 'bloom', 'blooms', both, _ ). +noun( 'bloomer', 'bloomers', count, _ ). +noun( 'blossom', 'blossoms', both, _ ). +noun( 'blot', 'blots', count, _ ). +noun( 'blotch', 'blotches', count, _ ). +noun( 'blotter', 'blotters', count, _ ). +noun( 'blotting-paper', 'blotting-papers', count, _ ). +noun( 'blouse', 'blouses', count, _ ). +noun( 'blow', 'blows', count, _ ). +noun( 'blow-up', 'blow-ups', count, _ ). +noun( 'blowback', 'blowbacks', count, _ ). +noun( 'blower', 'blowers', count, _ ). +noun( 'blowfly', 'blowflies', count, _ ). +noun( 'blowhole', 'blowholes', count, _ ). +noun( 'blowing-up', 'blowing-ups', count, _ ). +noun( 'blowlamp', 'blowlamps', count, _ ). +noun( 'blowout', 'blowouts', count, _ ). +noun( 'blowpipe', 'blowpipes', count, _ ). +noun( 'blowtorch', 'blowtorches', count, _ ). +noun( 'blubber', '-', mass, _ ). +noun( 'bludgeon', 'bludgeons', count, _ ). +noun( 'blue', 'blues', both, _ ). +noun( 'blue-jacket', 'blue-jackets', count, _ ). +noun( 'bluebell', 'bluebells', count, _ ). +noun( 'bluebottle', 'bluebottles', count, _ ). +noun( 'blueprint', 'blueprints', count, _ ). +noun( 'bluestocking', 'bluestockings', count, _ ). +noun( 'bluff', 'bluffs', both, _ ). +noun( 'bluffer', 'bluffers', count, _ ). +noun( 'bluffness', '-', mass, _ ). +noun( 'blunder', 'blunders', count, _ ). +noun( 'blunderbuss', 'blunderbusses', count, _ ). +noun( 'blunderer', 'blunderers', count, _ ). +noun( 'bluntness', '-', mass, _ ). +noun( 'blur', 'blurs', count, _ ). +noun( 'blurb', 'blurbs', both, _ ). +noun( 'blush', 'blushes', count, _ ). +noun( 'bluster', 'blusters', both, _ ). +noun( 'bo\'sn', 'bo\'sns', count, _ ). +noun( 'bo\'sun', 'bo\'suns', count, _ ). +noun( 'boa', 'boas', count, _ ). +noun( 'boa-constrictor', 'boa-constrictors', count, _ ). +noun( 'boar', 'boars', count, _ ). +noun( 'board', 'boards', count, _ ). +noun( 'boarder', 'boarders', count, _ ). +noun( 'boarding', '-', mass, _ ). +noun( 'boarding-card', 'boarding-cards', count, _ ). +noun( 'boarding-house', 'boarding-houses', count, _ ). +noun( 'boarding-school', 'boarding-schools', count, _ ). +noun( 'boardroom', 'boardrooms', count, _ ). +noun( 'boardwalk', 'boardwalks', count, _ ). +noun( 'boast', 'boasts', count, _ ). +noun( 'boaster', 'boasters', count, _ ). +noun( 'boat', 'boats', count, _ ). +noun( 'boat-hook', 'boat-hooks', count, _ ). +noun( 'boat-house', 'boat-houses', count, _ ). +noun( 'boat-race', 'boat-races', count, _ ). +noun( 'boat-train', 'boat-trains', count, _ ). +noun( 'boater', 'boaters', count, _ ). +noun( 'boatman', 'boatmen', count, _ ). +noun( 'boatswain', 'boatswains', count, _ ). +noun( 'bob', 'bob', count, _ ). +noun( 'bobbin', 'bobbins', count, _ ). +noun( 'bobby', 'bobbies', count, _ ). +noun( 'bobby-soxer', 'bobby-soxers', count, _ ). +noun( 'bobolink', 'bobolinks', count, _ ). +noun( 'bobsled', 'bobsleds', count, _ ). +noun( 'bobsleigh', 'bobsleighs', count, _ ). +noun( 'bobtail', 'bobtails', count, _ ). +noun( 'bodice', 'bodices', count, _ ). +noun( 'boding', '-', mass, _ ). +noun( 'bodkin', 'bodkins', count, _ ). +noun( 'body', 'bodies', both, _ ). +noun( 'body-servant', 'body-servants', count, _ ). +noun( 'body-snatcher', 'body-snatchers', count, _ ). +noun( 'bodyguard', 'bodyguards', count, _ ). +noun( 'bodywork', 'bodyworks', count, _ ). +noun( 'boffin', 'boffins', count, _ ). +noun( 'bog', 'bogs', count, _ ). +noun( 'bogey', 'bogeys', count, _ ). +noun( 'bogeyman', 'bogeymen', count, _ ). +noun( 'bogie', 'bogies', count, _ ). +noun( 'bogy', 'bogies', count, _ ). +noun( 'bohemian', 'bohemians', count, _ ). +noun( 'boil', 'boils', count, _ ). +noun( 'boiler', 'boilers', count, _ ). +noun( 'boilersuit', 'boilersuits', count, _ ). +noun( 'boiling-point', 'boiling-points', count, _ ). +noun( 'boisterousness', '-', mass, _ ). +noun( 'boldness', '-', mass, _ ). +noun( 'bole', 'boles', count, _ ). +noun( 'bolero', 'boleros', count, _ ). +noun( 'boll', 'bolls', count, _ ). +noun( 'bollard', 'bollards', count, _ ). +noun( 'bollock', 'bollocks', count, _ ). +noun( 'boloney', '-', mass, _ ). +noun( 'bolster', 'bolsters', count, _ ). +noun( 'bolt', 'bolts', count, _ ). +noun( 'bolt-hole', 'bolt-holes', count, _ ). +noun( 'bomb', 'bombs', count, _ ). +noun( 'bomb-sight', 'bomb-sights', count, _ ). +noun( 'bomb-site', 'bomb-sites', count, _ ). +noun( 'bombardier', 'bombardiers', count, _ ). +noun( 'bombardment', 'bombardments', both, _ ). +noun( 'bombast', '-', mass, _ ). +noun( 'bomber', 'bombers', count, _ ). +noun( 'bombshell', 'bombshells', count, _ ). +noun( 'bon mot', 'bons mots', count, _ ). +noun( 'bonanza', 'bonanzas', count, _ ). +noun( 'bonbon', 'bonbons', count, _ ). +noun( 'bond', 'bonds', count, _ ). +noun( 'bond-holder', 'bond-holders', count, _ ). +noun( 'bondage', '-', mass, _ ). +noun( 'bone', 'bones', both, _ ). +noun( 'bone-head', 'bone-heads', count, _ ). +noun( 'bone-setter', 'bone-setters', count, _ ). +noun( 'bonemeal', 'bonemeals', count, _ ). +noun( 'boner', 'boners', count, _ ). +noun( 'boneshaker', 'boneshakers', count, _ ). +noun( 'bonfire', 'bonfires', count, _ ). +noun( 'bongo', 'bongos', count, _ ). +noun( 'bonhomie', '-', mass, _ ). +noun( 'bonito', 'bonitos', count, _ ). +noun( 'bonnet', 'bonnets', count, _ ). +noun( 'bonus', 'bonuses', count, _ ). +noun( 'boo', 'boos', count, _ ). +noun( 'boob', 'boobs', count, _ ). +noun( 'booby', 'boobies', count, _ ). +noun( 'booby-trap', 'booby-traps', count, _ ). +noun( 'boogie', 'boogies', both, _ ). +noun( 'boogie-woogie', 'boogie-woogies', both, _ ). +noun( 'book', 'books', count, _ ). +noun( 'book-end', 'book-ends', count, _ ). +noun( 'book-keeper', 'book-keepers', count, _ ). +noun( 'bookcase', 'bookcases', count, _ ). +noun( 'bookclub', 'bookclubs', count, _ ). +noun( 'bookie', 'bookies', count, _ ). +noun( 'booking', 'bookings', count, _ ). +noun( 'bookishness', '-', mass, _ ). +noun( 'bookkeeper', 'bookkeepers', count, _ ). +noun( 'bookkeeping', '-', mass, _ ). +noun( 'booklet', 'booklets', count, _ ). +noun( 'bookmaker', 'bookmakers', count, _ ). +noun( 'bookmark', 'bookmarks', count, _ ). +noun( 'bookmarker', 'bookmarkers', count, _ ). +noun( 'bookmobile', 'bookmobiles', count, _ ). +noun( 'bookseller', 'booksellers', count, _ ). +noun( 'bookshop', 'bookshops', count, _ ). +noun( 'bookstall', 'bookstalls', count, _ ). +noun( 'bookworm', 'bookworms', count, _ ). +noun( 'boom', 'booms', count, _ ). +noun( 'boomerang', 'boomerangs', count, _ ). +noun( 'boon', 'boons', count, _ ). +noun( 'boor', 'boors', count, _ ). +noun( 'boorishness', '-', mass, _ ). +noun( 'boost', 'boosts', count, _ ). +noun( 'booster', 'boosters', count, _ ). +noun( 'boot', 'boots', count, _ ). +noun( 'bootee', 'bootees', count, _ ). +noun( 'booth', 'booths', count, _ ). +noun( 'bootlace', 'bootlaces', count, _ ). +noun( 'bootlegger', 'bootleggers', count, _ ). +noun( 'booty', '-', mass, _ ). +noun( 'booze', '-', mass, _ ). +noun( 'booze-up', 'booze-ups', count, _ ). +noun( 'boozer', 'boozers', count, _ ). +noun( 'bopeep', '-', mass, _ ). +noun( 'borage', '-', mass, _ ). +noun( 'borax', '-', mass, _ ). +noun( 'border', 'borders', count, _ ). +noun( 'borderer', 'borderers', count, _ ). +noun( 'borderland', 'borderlands', count, _ ). +noun( 'borderline', 'borderlines', count, _ ). +noun( 'bore', 'bores', count, _ ). +noun( 'bore-hole', 'bore-holes', count, _ ). +noun( 'boredom', '-', mass, _ ). +noun( 'borer', 'borers', count, _ ). +noun( 'boron', '-', mass, _ ). +noun( 'borough', 'boroughs', count, _ ). +noun( 'borrower', 'borrowers', count, _ ). +noun( 'borsch', '-', mass, _ ). +noun( 'borstal', 'borstals', count, _ ). +noun( 'bortsch', '-', mass, _ ). +noun( 'borzoi', 'borzois', count, _ ). +noun( 'bosh', '-', mass, _ ). +noun( 'bosom', 'bosoms', count, _ ). +noun( 'boss', 'bosses', count, _ ). +noun( 'botanist', 'botanists', count, _ ). +noun( 'botany', '-', mass, _ ). +noun( 'botch', 'botches', count, _ ). +noun( 'botcher', 'botchers', count, _ ). +noun( 'bother', '-', mass, _ ). +noun( 'bottle', 'bottles', both, _ ). +noun( 'bottleneck', 'bottlenecks', count, _ ). +noun( 'bottom', 'bottoms', count, _ ). +noun( 'botulism', '-', mass, _ ). +noun( 'boudoir', 'boudoirs', count, _ ). +noun( 'bougainvillea', 'bougainvilleas', count, _ ). +noun( 'bough', 'boughs', count, _ ). +noun( 'bouillon', '-', mass, _ ). +noun( 'boulder', 'boulders', count, _ ). +noun( 'boulevard', 'boulevards', count, _ ). +noun( 'bounce', 'bounces', both, _ ). +noun( 'bound', 'bounds', count, _ ). +noun( 'boundary', 'boundaries', count, _ ). +noun( 'bounder', 'bounders', count, _ ). +noun( 'bounty', 'bounties', both, _ ). +noun( 'bouquet', 'bouquets', count, _ ). +noun( 'bourbon', 'bourbons', both, _ ). +noun( 'bourgeois', 'bourgeois', count, _ ). +noun( 'bourgeoisie', 'bourgeoisies', count, _ ). +noun( 'bourn', 'bourns', count, _ ). +noun( 'bourne', 'bournes', count, _ ). +noun( 'bourse', 'bourses', count, _ ). +noun( 'bout', 'bouts', count, _ ). +noun( 'boutique', 'boutiques', count, _ ). +noun( 'bovril', '-', mass, _ ). +noun( 'bow', 'bows', count, _ ). +noun( 'bow', 'bows', count, _ ). +noun( 'bow-wow', 'bow-wows', count, _ ). +noun( 'bowel', 'bowels', count, _ ). +noun( 'bower', 'bowers', count, _ ). +noun( 'bowie knife', 'bowie knives', count, _ ). +noun( 'bowing', '-', mass, _ ). +noun( 'bowl', 'bowls', count, _ ). +noun( 'bowler', 'bowlers', count, _ ). +noun( 'bowline', 'bowlines', count, _ ). +noun( 'bowling-green', 'bowling-greens', count, _ ). +noun( 'bowls', 'bowls', mass, _ ). +noun( 'bowman', 'bowmen', count, _ ). +noun( 'bowsprit', 'bowsprits', count, _ ). +noun( 'box', 'boxes', both, _ ). +noun( 'box-kite', 'box-kites', count, _ ). +noun( 'box-number', 'box-numbers', count, _ ). +noun( 'box-office', 'box-offices', count, _ ). +noun( 'boxer', 'boxers', count, _ ). +noun( 'boxful', 'boxfuls', count, _ ). +noun( 'boxing', '-', mass, _ ). +noun( 'boxing-glove', 'boxing-gloves', count, _ ). +noun( 'boxing-match', 'boxing-matches', count, _ ). +noun( 'boxwood', '-', mass, _ ). +noun( 'boy', 'boys', count, _ ). +noun( 'boycott', 'boycotts', count, _ ). +noun( 'boyfriend', 'boyfriends', count, _ ). +noun( 'boyhood', '-', mass, _ ). +noun( 'bra', 'bras', count, _ ). +noun( 'brace', 'brace', count, _ ). +noun( 'bracelet', 'bracelets', count, _ ). +noun( 'bracken', '-', mass, _ ). +noun( 'bracket', 'brackets', count, _ ). +noun( 'bract', 'bracts', count, _ ). +noun( 'brad', 'brads', count, _ ). +noun( 'bradawl', 'bradawls', count, _ ). +noun( 'brae', 'braes', count, _ ). +noun( 'braggart', 'braggarts', count, _ ). +noun( 'bragging', '-', mass, _ ). +noun( 'braid', 'braids', both, _ ). +noun( 'braille', '-', mass, _ ). +noun( 'brain', 'brains', count, _ ). +noun( 'brain-fag', '-', mass, _ ). +noun( 'brain-teaser', 'brain-teasers', count, _ ). +noun( 'brainchild', 'brainchildren', count, _ ). +noun( 'brainstorm', 'brainstorms', count, _ ). +noun( 'brainwashing', '-', mass, _ ). +noun( 'brainwave', 'brainwaves', count, _ ). +noun( 'brake', 'brakes', count, _ ). +noun( 'brakeman', 'brakemen', count, _ ). +noun( 'bramble', 'brambles', count, _ ). +noun( 'bran', '-', mass, _ ). +noun( 'branch', 'branches', count, _ ). +noun( 'brand', 'brands', count, _ ). +noun( 'branding-iron', 'branding-irons', count, _ ). +noun( 'brandy', 'brandies', both, _ ). +noun( 'brandy-ball', 'brandy-balls', count, _ ). +noun( 'brandy-snap', 'brandy-snaps', count, _ ). +noun( 'brass', 'brasses', both, _ ). +noun( 'brassard', 'brassards', count, _ ). +noun( 'brasserie', 'brasseries', count, _ ). +noun( 'brassi`ere', 'brassi`eres', count, _ ). +noun( 'brassiere', 'brassieres', count, _ ). +noun( 'brat', 'brats', count, _ ). +noun( 'bravado', 'bravados', both, _ ). +noun( 'brave', 'braves', count, _ ). +noun( 'bravery', '-', mass, _ ). +noun( 'bravo', 'bravos', count, _ ). +noun( 'brawl', 'brawls', count, _ ). +noun( 'brawler', 'brawlers', count, _ ). +noun( 'brawn', '-', mass, _ ). +noun( 'bray', 'brays', count, _ ). +noun( 'brazier', 'braziers', count, _ ). +noun( 'breach', 'breaches', count, _ ). +noun( 'bread', '-', mass, _ ). +noun( 'breadcrumb', 'breadcrumbs', count, _ ). +noun( 'breadfruit', 'breadfruit', count, _ ). +noun( 'breadline', 'breadlines', count, _ ). +noun( 'breadth', 'breadths', both, _ ). +noun( 'breadwinner', 'breadwinners', count, _ ). +noun( 'break', 'breaks', both, _ ). +noun( 'break-in', 'break-ins', count, _ ). +noun( 'break-up', 'break-ups', count, _ ). +noun( 'breakage', 'breakages', count, _ ). +noun( 'breakaway', 'breakaways', count, _ ). +noun( 'breakaways', 'breakawayss', count, _ ). +noun( 'breakdown', 'breakdowns', count, _ ). +noun( 'breaker', 'breakers', count, _ ). +noun( 'breakfast', 'breakfasts', count, _ ). +noun( 'breakthrough', 'breakthroughs', count, _ ). +noun( 'breakwater', 'breakwaters', count, _ ). +noun( 'bream', 'bream', count, _ ). +noun( 'breast', 'breasts', count, _ ). +noun( 'breast-plate', 'breast-plates', count, _ ). +noun( 'breaststroke', '-', mass, _ ). +noun( 'breastwork', 'breastworks', count, _ ). +noun( 'breath', 'breaths', both, _ ). +noun( 'breathalyser', 'breathalysers', count, _ ). +noun( 'breather', 'breathers', count, _ ). +noun( 'breathing', '-', mass, _ ). +noun( 'breathing-space', 'breathing-spaces', count, _ ). +noun( 'breech', 'breeches', count, _ ). +noun( 'breech-block', 'breech-blocks', count, _ ). +noun( 'breeches-buoy', 'breeches-buoys', count, _ ). +noun( 'breed', 'breeds', count, _ ). +noun( 'breeder', 'breeders', count, _ ). +noun( 'breeding', '-', mass, _ ). +noun( 'breeze', 'breezes', both, _ ). +noun( 'breeziness', '-', mass, _ ). +noun( 'breve', 'breves', count, _ ). +noun( 'brevet', 'brevets', count, _ ). +noun( 'breviary', 'breviaries', count, _ ). +noun( 'brevity', '-', mass, _ ). +noun( 'brew', 'brews', count, _ ). +noun( 'brewer', 'brewers', count, _ ). +noun( 'brewery', 'breweries', count, _ ). +noun( 'briar', 'briars', both, _ ). +noun( 'bribe', 'bribes', count, _ ). +noun( 'bribery', '-', mass, _ ). +noun( 'bric-a-brac', '-', mass, _ ). +noun( 'brick', 'bricks', both, _ ). +noun( 'brick-field', 'brick-fields', count, _ ). +noun( 'brickbat', 'brickbats', count, _ ). +noun( 'brickkiln', 'brickkilns', count, _ ). +noun( 'bricklayer', 'bricklayers', count, _ ). +noun( 'brickwork', 'brickworks', count, _ ). +noun( 'bridal', 'bridals', count, _ ). +noun( 'bride', 'brides', count, _ ). +noun( 'bridecake', 'bridecakes', count, _ ). +noun( 'bridegroom', 'bridegrooms', count, _ ). +noun( 'bridesmaid', 'bridesmaids', count, _ ). +noun( 'bridge', 'bridges', both, _ ). +noun( 'bridgehead', 'bridgeheads', count, _ ). +noun( 'bridle', 'bridles', count, _ ). +noun( 'bridle-path', 'bridle-paths', count, _ ). +noun( 'bridle-road', 'bridle-roads', count, _ ). +noun( 'brief', 'briefs', count, _ ). +noun( 'briefcase', 'briefcases', count, _ ). +noun( 'briefing', 'briefings', count, _ ). +noun( 'brier', 'briers', count, _ ). +noun( 'brig', 'brigs', count, _ ). +noun( 'brigade', 'brigades', count, _ ). +noun( 'brigand', 'brigands', count, _ ). +noun( 'brigantine', 'brigantines', count, _ ). +noun( 'brightness', '-', mass, _ ). +noun( 'brill', 'brill', count, _ ). +noun( 'brilliance', '-', mass, _ ). +noun( 'brilliancy', '-', mass, _ ). +noun( 'brilliantine', '-', mass, _ ). +noun( 'brim', 'brims', count, _ ). +noun( 'brimstone', '-', mass, _ ). +noun( 'brine', 'brines', both, _ ). +noun( 'brink', 'brinks', count, _ ). +noun( 'brinkmanship', '-', mass, _ ). +noun( 'brioche', 'brioches', count, _ ). +noun( 'briquet', 'briquets', count, _ ). +noun( 'briquette', 'briquettes', count, _ ). +noun( 'brisket', '-', mass, _ ). +noun( 'bristle', 'bristles', count, _ ). +noun( 'broad', 'broads', count, _ ). +noun( 'broad-mindedness', '-', mass, _ ). +noun( 'broadcast', 'broadcasts', count, _ ). +noun( 'broadcasting', '-', mass, _ ). +noun( 'broadcloth', '-', mass, _ ). +noun( 'broadness', '-', mass, _ ). +noun( 'broadsheet', 'broadsheets', count, _ ). +noun( 'broadside', 'broadsides', count, _ ). +noun( 'brocade', 'brocades', both, _ ). +noun( 'broccoli', '-', mass, _ ). +noun( 'brochure', 'brochures', count, _ ). +noun( 'brogue', 'brogues', count, _ ). +noun( 'broiler', 'broilers', count, _ ). +noun( 'broker', 'brokers', count, _ ). +noun( 'brokerage', '-', mass, _ ). +noun( 'brolly', 'brollies', count, _ ). +noun( 'bromide', 'bromides', both, _ ). +noun( 'bromine', '-', mass, _ ). +noun( 'bronchitis', '-', mass, _ ). +noun( 'bronchus', 'bronchi', count, _ ). +noun( 'bronco', 'broncos', count, _ ). +noun( 'bronze', 'bronzes', both, _ ). +noun( 'brooch', 'brooches', count, _ ). +noun( 'brood', 'broods', count, _ ). +noun( 'brood-hen', 'brood-hens', count, _ ). +noun( 'brood-mare', 'brood-mares', count, _ ). +noun( 'brook', 'brooks', count, _ ). +noun( 'broom', 'brooms', both, _ ). +noun( 'broomstick', 'broomsticks', count, _ ). +noun( 'broth', '-', mass, _ ). +noun( 'brothel', 'brothels', count, _ ). +noun( 'brother', 'brothers', count, _ ). +noun( 'brother-in-law', 'brothers-in-law', count, _ ). +noun( 'brotherhood', 'brotherhoods', both, _ ). +noun( 'brougham', 'broughams', count, _ ). +noun( 'brouhaha', 'brouhahas', count, _ ). +noun( 'brow', 'brows', count, _ ). +noun( 'brownie', 'brownies', count, _ ). +noun( 'brownstone', 'brownstones', both, _ ). +noun( 'browse', 'browses', count, _ ). +noun( 'bruin', 'bruins', count, _ ). +noun( 'bruise', 'bruises', count, _ ). +noun( 'bruiser', 'bruisers', count, _ ). +noun( 'brunch', 'brunches', count, _ ). +noun( 'brunette', 'brunettes', count, _ ). +noun( 'brunt', 'brunts', count, _ ). +noun( 'brush', 'brushes', both, _ ). +noun( 'brush-off', 'brush-offs', count, _ ). +noun( 'brush-up', 'brush-ups', count, _ ). +noun( 'brushwood', '-', mass, _ ). +noun( 'brushwork', 'brushworks', count, _ ). +noun( 'brusqueness', '-', mass, _ ). +noun( 'brutality', 'brutalities', both, _ ). +noun( 'brute', 'brutes', count, _ ). +noun( 'bubble', 'bubbles', count, _ ). +noun( 'bubbly', '-', mass, _ ). +noun( 'buccaneer', 'buccaneers', count, _ ). +noun( 'buck', 'bucks', count, _ ). +noun( 'bucket', 'buckets', count, _ ). +noun( 'bucketful', 'bucketfuls', count, _ ). +noun( 'buckle', 'buckles', count, _ ). +noun( 'buckler', 'bucklers', count, _ ). +noun( 'buckram', '-', mass, _ ). +noun( 'buckshot', '-', mass, _ ). +noun( 'buckskin', '-', mass, _ ). +noun( 'bucktooth', 'buckteeth', count, _ ). +noun( 'buckwheat', '-', mass, _ ). +noun( 'bucolics', 'bucolics', mass, _ ). +noun( 'bud', 'buds', count, _ ). +noun( 'buddy', 'buddies', count, _ ). +noun( 'budgerigar', 'budgerigars', count, _ ). +noun( 'budget', 'budgets', count, _ ). +noun( 'budgie', 'budgies', count, _ ). +noun( 'buff', 'buffs', both, _ ). +noun( 'buffalo', 'buffalo', count, _ ). +noun( 'buffer', 'buffers', count, _ ). +noun( 'buffet', 'buffets', count, _ ). +noun( 'buffet', 'buffets', count, _ ). +noun( 'buffoon', 'buffoons', count, _ ). +noun( 'buffoonery', '-', mass, _ ). +noun( 'bug', 'bugs', count, _ ). +noun( 'bug-hunter', 'bug-hunters', count, _ ). +noun( 'bugaboo', 'bugaboos', count, _ ). +noun( 'bugbear', 'bugbears', count, _ ). +noun( 'bugger', 'buggers', count, _ ). +noun( 'bugger-all', '-', mass, _ ). +noun( 'buggery', '-', mass, _ ). +noun( 'buggy', 'buggies', count, _ ). +noun( 'bugle', 'bugles', count, _ ). +noun( 'bugler', 'buglers', count, _ ). +noun( 'buhl', '-', mass, _ ). +noun( 'build', '-', mass, _ ). +noun( 'build-up', 'build-ups', count, _ ). +noun( 'builder', 'builders', count, _ ). +noun( 'building', 'buildings', both, _ ). +noun( 'building-society', 'building-societies', count, _ ). +noun( 'bulb', 'bulbs', count, _ ). +noun( 'bulbul', 'bulbuls', count, _ ). +noun( 'bulge', 'bulges', count, _ ). +noun( 'bulk', '-', mass, _ ). +noun( 'bulkhead', 'bulkheads', count, _ ). +noun( 'bull', 'bulls', count, _ ). +noun( 'bull\'s-eye', 'bull\'s-eyes', count, _ ). +noun( 'bull-neck', 'bull-necks', count, _ ). +noun( 'bull-terrier', 'bull-terriers', count, _ ). +noun( 'bulldog', 'bulldogs', count, _ ). +noun( 'bulldozer', 'bulldozers', count, _ ). +noun( 'bullet', 'bullets', count, _ ). +noun( 'bulletin', 'bulletins', count, _ ). +noun( 'bullfight', 'bullfights', count, _ ). +noun( 'bullfighter', 'bullfighters', count, _ ). +noun( 'bullfinch', 'bullfinches', count, _ ). +noun( 'bullfrog', 'bullfrogs', count, _ ). +noun( 'bullion', '-', mass, _ ). +noun( 'bullock', 'bullocks', count, _ ). +noun( 'bullring', 'bullrings', count, _ ). +noun( 'bullshit', '-', mass, _ ). +noun( 'bully', 'bullies', both, _ ). +noun( 'bulrush', 'bulrushes', count, _ ). +noun( 'bulwark', 'bulwarks', count, _ ). +noun( 'bum', 'bums', count, _ ). +noun( 'bumblebee', 'bumblebees', count, _ ). +noun( 'bumboat', 'bumboats', count, _ ). +noun( 'bump', 'bumps', count, _ ). +noun( 'bumper', 'bumpers', count, _ ). +noun( 'bumpkin', 'bumpkins', count, _ ). +noun( 'bumptiousness', '-', mass, _ ). +noun( 'bun', 'buns', count, _ ). +noun( 'buna', '-', mass, _ ). +noun( 'bunch', 'bunches', count, _ ). +noun( 'bundle', 'bundles', count, _ ). +noun( 'bung', 'bungs', count, _ ). +noun( 'bung-hole', 'bung-holes', count, _ ). +noun( 'bungalow', 'bungalows', count, _ ). +noun( 'bungle', 'bungles', count, _ ). +noun( 'bungler', 'bunglers', count, _ ). +noun( 'bunion', 'bunions', count, _ ). +noun( 'bunk', 'bunks', both, _ ). +noun( 'bunker', 'bunkers', count, _ ). +noun( 'bunkum', '-', mass, _ ). +noun( 'bunny', 'bunnies', count, _ ). +noun( 'bunting', '-', mass, _ ). +noun( 'buoy', 'buoys', count, _ ). +noun( 'buoyancy', '-', mass, _ ). +noun( 'bur', 'burs', count, _ ). +noun( 'burden', 'burdens', both, _ ). +noun( 'burdock', 'burdocks', count, _ ). +noun( 'bureau', 'bureaux', count, _ ). +noun( 'bureaucracy', 'bureaucracies', both, _ ). +noun( 'bureaucrat', 'bureaucrats', count, _ ). +noun( 'burette', 'burettes', count, _ ). +noun( 'burg', 'burgs', count, _ ). +noun( 'burgess', 'burgesses', count, _ ). +noun( 'burgh', 'burghs', count, _ ). +noun( 'burgher', 'burghers', count, _ ). +noun( 'burglar', 'burglars', count, _ ). +noun( 'burglar-alarm', 'burglar-alarms', count, _ ). +noun( 'burglary', 'burglaries', both, _ ). +noun( 'burgomaster', 'burgomasters', count, _ ). +noun( 'burial', 'burials', both, _ ). +noun( 'burial-ground', 'burial-grounds', count, _ ). +noun( 'burlap', '-', mass, _ ). +noun( 'burlesque', 'burlesques', both, _ ). +noun( 'burn', 'burns', count, _ ). +noun( 'burn-up', 'burn-ups', count, _ ). +noun( 'burner', 'burners', count, _ ). +noun( 'burnouse', 'burnouses', count, _ ). +noun( 'burp', 'burps', count, _ ). +noun( 'burr', 'burrs', count, _ ). +noun( 'burr-drill', 'burr-drills', count, _ ). +noun( 'burrow', 'burrows', count, _ ). +noun( 'bursar', 'bursars', count, _ ). +noun( 'bursary', 'bursaries', count, _ ). +noun( 'burst', 'bursts', count, _ ). +noun( 'burthen', 'burthens', count, _ ). +noun( 'burton', 'burtons', count, _ ). +noun( 'burying-ground', 'burying-grounds', count, _ ). +noun( 'bus', 'buses', count, _ ). +noun( 'busby', 'busbies', count, _ ). +noun( 'bush', 'bushes', both, _ ). +noun( 'bushel', 'bushels', count, _ ). +noun( 'business', 'businesses', both, _ ). +noun( 'businessman', 'businessmen', count, _ ). +noun( 'busker', 'buskers', count, _ ). +noun( 'busman', 'busmen', count, _ ). +noun( 'bust', 'busts', count, _ ). +noun( 'bust-up', 'bust-ups', count, _ ). +noun( 'bustard', 'bustards', count, _ ). +noun( 'buster', 'busters', count, _ ). +noun( 'bustle', 'bustles', both, _ ). +noun( 'busybody', 'busybodies', count, _ ). +noun( 'butane', '-', mass, _ ). +noun( 'butcher', 'butchers', count, _ ). +noun( 'butchery', '-', mass, _ ). +noun( 'butler', 'butlers', count, _ ). +noun( 'butt', 'butts', count, _ ). +noun( 'butter', '-', mass, _ ). +noun( 'butterbean', 'butterbeans', count, _ ). +noun( 'buttercup', 'buttercups', count, _ ). +noun( 'butterfingers', '-', count, _ ). +noun( 'butterfly', 'butterflies', count, _ ). +noun( 'buttermilk', '-', mass, _ ). +noun( 'butterscotch', '-', mass, _ ). +noun( 'buttery', 'butteries', count, _ ). +noun( 'buttock', 'buttocks', count, _ ). +noun( 'button', 'buttons', count, _ ). +noun( 'buttonhole', 'buttonholes', count, _ ). +noun( 'buttonhook', 'buttonhooks', count, _ ). +noun( 'buttonwood', 'buttonwoods', both, _ ). +noun( 'buttress', 'buttresses', count, _ ). +noun( 'buy', 'buys', count, _ ). +noun( 'buyer', 'buyers', count, _ ). +noun( 'buzz', 'buzzes', count, _ ). +noun( 'buzzard', 'buzzards', count, _ ). +noun( 'buzzer', 'buzzers', count, _ ). +noun( 'by-election', 'by-elections', count, _ ). +noun( 'bye', 'byes', count, _ ). +noun( 'bye-bye', 'bye-byes', count, _ ). +noun( 'bye-law', 'bye-laws', count, _ ). +noun( 'bylaw', 'bylaws', count, _ ). +noun( 'bypass', 'bypasses', count, _ ). +noun( 'bypath', 'bypaths', count, _ ). +noun( 'byplay', '-', mass, _ ). +noun( 'byproduct', 'byproducts', count, _ ). +noun( 'byroad', 'byroads', count, _ ). +noun( 'bystander', 'bystanders', count, _ ). +noun( 'byway', 'byways', count, _ ). +noun( 'byword', 'bywords', count, _ ). +noun( 'c', '-', count, _ ). +noun( 'ca\'canny', '-', count, _ ). +noun( 'cab', 'cabs', count, _ ). +noun( 'cab-rank', 'cab-ranks', count, _ ). +noun( 'cabal', 'cabals', count, _ ). +noun( 'cabaret', 'cabarets', count, _ ). +noun( 'cabbage', 'cabbages', both, _ ). +noun( 'cabby', 'cabbies', count, _ ). +noun( 'caber', 'cabers', count, _ ). +noun( 'cabin', 'cabins', count, _ ). +noun( 'cabinet', 'cabinets', count, _ ). +noun( 'cabinet-maker', 'cabinet-makers', count, _ ). +noun( 'cable', 'cables', both, _ ). +noun( 'cable\'s-length', 'cable\'s-lengths', count, _ ). +noun( 'cable-car', 'cable-cars', count, _ ). +noun( 'cable-length', 'cable-lengths', count, _ ). +noun( 'cable-railway', 'cable-railways', count, _ ). +noun( 'cablegram', 'cablegrams', count, _ ). +noun( 'cabman', 'cabmen', count, _ ). +noun( 'caboodle', 'caboodles', count, _ ). +noun( 'caboose', 'cabooses', count, _ ). +noun( 'cabstand', 'cabstands', count, _ ). +noun( 'cacao', 'cacaos', count, _ ). +noun( 'cacao-bean', 'cacao-beans', count, _ ). +noun( 'cacao-tree', 'cacao-trees', count, _ ). +noun( 'cache', 'caches', count, _ ). +noun( 'cachet', 'cachets', count, _ ). +noun( 'cachou', 'cachous', count, _ ). +noun( 'cackle', 'cackles', both, _ ). +noun( 'cackler', 'cacklers', count, _ ). +noun( 'cacophony', 'cacophonies', count, _ ). +noun( 'cactus', 'cactuses', count, _ ). +noun( 'cad', 'cads', count, _ ). +noun( 'cadaver', 'cadavers', count, _ ). +noun( 'caddie', 'caddies', count, _ ). +noun( 'caddy', 'caddies', count, _ ). +noun( 'cadence', 'cadences', count, _ ). +noun( 'cadenza', 'cadenzas', count, _ ). +noun( 'cadet', 'cadets', count, _ ). +noun( 'cadger', 'cadgers', count, _ ). +noun( 'cadmium', '-', mass, _ ). +noun( 'cadre', 'cadres', count, _ ). +noun( 'caesura', 'caesuras', count, _ ). +noun( 'caf_e', 'caf_es', count, _ ). +noun( 'cafe-au-lait', 'cafe-au-laits', count, _ ). +noun( 'cafeteria', 'cafeterias', count, _ ). +noun( 'caff', 'caffs', count, _ ). +noun( 'caffeine', '-', mass, _ ). +noun( 'caftan', 'caftans', count, _ ). +noun( 'cage', 'cages', count, _ ). +noun( 'cagoule', 'cagoules', count, _ ). +noun( 'caiman', 'caimans', count, _ ). +noun( 'cairn', 'cairns', count, _ ). +noun( 'caisson', 'caissons', count, _ ). +noun( 'caitiff', 'caitiffs', count, _ ). +noun( 'cajolery', '-', mass, _ ). +noun( 'cake', 'cakes', both, _ ). +noun( 'calabash', 'calabashes', count, _ ). +noun( 'calamity', 'calamities', count, _ ). +noun( 'calcination', 'calcinations', count, _ ). +noun( 'calcium', '-', mass, _ ). +noun( 'calculation', 'calculations', both, _ ). +noun( 'calculator', 'calculators', count, _ ). +noun( 'calculus', 'calculuses', both, _ ). +noun( 'caldron', 'caldrons', count, _ ). +noun( 'calendar', 'calendars', count, _ ). +noun( 'calender', 'calenders', count, _ ). +noun( 'calf', 'calves', both, _ ). +noun( 'calf-love', '-', mass, _ ). +noun( 'calibration', 'calibrations', both, _ ). +noun( 'calibre', 'calibres', both, _ ). +noun( 'calico', '-', mass, _ ). +noun( 'calif', 'califs', count, _ ). +noun( 'caliph', 'caliphs', count, _ ). +noun( 'caliphate', 'caliphates', count, _ ). +noun( 'calisthenics', 'calisthenics', mass, _ ). +noun( 'calk', 'calks', count, _ ). +noun( 'call', 'calls', both, _ ). +noun( 'call-box', 'call-boxes', count, _ ). +noun( 'call-girl', 'call-girls', count, _ ). +noun( 'call-over', 'call-overs', count, _ ). +noun( 'call-up', 'call-ups', count, _ ). +noun( 'caller', 'callers', count, _ ). +noun( 'calligraphy', '-', mass, _ ). +noun( 'calling', 'callings', count, _ ). +noun( 'calliope', 'calliopes', count, _ ). +noun( 'callisthenics', 'callisthenics', mass, _ ). +noun( 'callosity', 'callosities', count, _ ). +noun( 'callousness', '-', mass, _ ). +noun( 'callowness', '-', mass, _ ). +noun( 'callus', 'calluses', count, _ ). +noun( 'calm', 'calms', count, _ ). +noun( 'calmness', '-', mass, _ ). +noun( 'calomel', '-', mass, _ ). +noun( 'calorie', 'calories', count, _ ). +noun( 'calumny', 'calumnies', both, _ ). +noun( 'calypso', 'calypsos', count, _ ). +noun( 'calyx', 'calyxes', count, _ ). +noun( 'cam', 'cams', count, _ ). +noun( 'camaraderie', '-', mass, _ ). +noun( 'camber', 'cambers', count, _ ). +noun( 'cambric', '-', mass, _ ). +noun( 'camel', 'camels', count, _ ). +noun( 'camel-hair', '-', mass, _ ). +noun( 'camellia', 'camellias', count, _ ). +noun( 'cameo', 'cameos', count, _ ). +noun( 'camera', 'cameras', count, _ ). +noun( 'cameraman', 'cameramen', count, _ ). +noun( 'camion', 'camions', count, _ ). +noun( 'camomile', '-', mass, _ ). +noun( 'camouflage', '-', mass, _ ). +noun( 'camp', 'camps', count, _ ). +noun( 'camp-bed', 'camp-beds', count, _ ). +noun( 'camp-chair', 'camp-chairs', count, _ ). +noun( 'camp-fire', 'camp-fires', count, _ ). +noun( 'camp-follower', 'camp-followers', count, _ ). +noun( 'camp-stool', 'camp-stools', count, _ ). +noun( 'campaign', 'campaigns', count, _ ). +noun( 'campaigner', 'campaigners', count, _ ). +noun( 'campanile', 'campaniles', count, _ ). +noun( 'campanula', 'campanulas', count, _ ). +noun( 'camper', 'campers', count, _ ). +noun( 'camphor', '-', mass, _ ). +noun( 'camping', '-', mass, _ ). +noun( 'campion', '-', mass, _ ). +noun( 'campus', 'campuses', count, _ ). +noun( 'camshaft', 'camshafts', count, _ ). +noun( 'can', 'cans', count, _ ). +noun( 'canal', 'canals', count, _ ). +noun( 'canalization', 'canalizations', count, _ ). +noun( 'canap_e', 'canap_es', count, _ ). +noun( 'canard', 'canards', count, _ ). +noun( 'canary', 'canaries', count, _ ). +noun( 'canary-bird', 'canary-birds', count, _ ). +noun( 'canary-wine', 'canary-wines', count, _ ). +noun( 'canasta', 'canastas', count, _ ). +noun( 'cancan', 'cancans', count, _ ). +noun( 'cancellation', 'cancellations', both, _ ). +noun( 'cancer', 'cancers', both, _ ). +noun( 'candelabrum', 'candelabra', count, _ ). +noun( 'candidate', 'candidates', count, _ ). +noun( 'candidature', 'candidatures', count, _ ). +noun( 'candle', 'candles', count, _ ). +noun( 'candle-power', '-', mass, _ ). +noun( 'candlelight', '-', mass, _ ). +noun( 'candlestick', 'candlesticks', count, _ ). +noun( 'candlewick', '-', mass, _ ). +noun( 'candour', '-', mass, _ ). +noun( 'candy', 'candies', both, _ ). +noun( 'candy-floss', '-', mass, _ ). +noun( 'candytuft', 'candytufts', count, _ ). +noun( 'cane', 'canes', both, _ ). +noun( 'canister', 'canisters', count, _ ). +noun( 'canker', '-', mass, _ ). +noun( 'canna', 'cannas', count, _ ). +noun( 'cannabis', '-', mass, _ ). +noun( 'cannery', 'canneries', count, _ ). +noun( 'cannibal', 'cannibals', count, _ ). +noun( 'cannibalism', '-', mass, _ ). +noun( 'cannon', 'cannons', count, _ ). +noun( 'cannon-fodder', '-', mass, _ ). +noun( 'cannonade', 'cannonades', count, _ ). +noun( 'canoe', 'canoes', count, _ ). +noun( 'canoeist', 'canoeists', count, _ ). +noun( 'canon', 'canons', count, _ ). +noun( 'canonization', 'canonizations', count, _ ). +noun( 'canopy', 'canopies', count, _ ). +noun( 'cant', 'cants', both, _ ). +noun( 'cantaloup', 'cantaloups', count, _ ). +noun( 'cantaloupe', 'cantaloupes', count, _ ). +noun( 'cantata', 'cantatas', count, _ ). +noun( 'canteen', 'canteens', count, _ ). +noun( 'canter', 'canters', count, _ ). +noun( 'canticle', 'canticles', count, _ ). +noun( 'cantilever', 'cantilevers', count, _ ). +noun( 'canto', 'cantos', count, _ ). +noun( 'canton', 'cantons', count, _ ). +noun( 'cantonment', 'cantonments', count, _ ). +noun( 'cantor', 'cantors', count, _ ). +noun( 'canvas', 'canvases', both, _ ). +noun( 'canvass', 'canvasses', count, _ ). +noun( 'canyon', 'canyons', count, _ ). +noun( 'cap', 'caps', count, _ ). +noun( 'capability', 'capabilities', both, _ ). +noun( 'capacity', 'capacities', both, _ ). +noun( 'caparison', 'caparisons', count, _ ). +noun( 'cape', 'capes', count, _ ). +noun( 'caper', 'capers', count, _ ). +noun( 'capillary', 'capillaries', count, _ ). +noun( 'capital', 'capitals', both, _ ). +noun( 'capitalism', '-', mass, _ ). +noun( 'capitalist', 'capitalists', count, _ ). +noun( 'capitalization', 'capitalizations', count, _ ). +noun( 'capitation', 'capitations', count, _ ). +noun( 'capitulation', '-', mass, _ ). +noun( 'capon', 'capons', count, _ ). +noun( 'caprice', 'caprices', count, _ ). +noun( 'capriciousness', '-', mass, _ ). +noun( 'capsicum', 'capsicums', count, _ ). +noun( 'capstan', 'capstans', count, _ ). +noun( 'capsule', 'capsules', count, _ ). +noun( 'captain', 'captains', count, _ ). +noun( 'caption', 'captions', count, _ ). +noun( 'captive', 'captives', count, _ ). +noun( 'captivity', '-', mass, _ ). +noun( 'captor', 'captors', count, _ ). +noun( 'capture', 'captures', both, _ ). +noun( 'car', 'cars', count, _ ). +noun( 'car-ferry', 'car-ferries', count, _ ). +noun( 'carafe', 'carafes', count, _ ). +noun( 'caramel', 'caramels', both, _ ). +noun( 'carapace', 'carapaces', count, _ ). +noun( 'carat', 'carats', count, _ ). +noun( 'caravan', 'caravans', count, _ ). +noun( 'caravanning', '-', mass, _ ). +noun( 'caravansary', 'caravansaries', count, _ ). +noun( 'caravanserai', 'caravanserais', count, _ ). +noun( 'caraway', 'caraways', count, _ ). +noun( 'carbide', 'carbides', count, _ ). +noun( 'carbine', 'carbines', count, _ ). +noun( 'carbohydrate', 'carbohydrates', both, _ ). +noun( 'carbon', 'carbons', both, _ ). +noun( 'carbon-paper', '-', mass, _ ). +noun( 'carbonization', 'carbonizations', both, _ ). +noun( 'carborundum', '-', mass, _ ). +noun( 'carboy', 'carboys', count, _ ). +noun( 'carbuncle', 'carbuncles', count, _ ). +noun( 'carburettor', 'carburettors', count, _ ). +noun( 'carcase', 'carcases', count, _ ). +noun( 'carcass', 'carcasses', count, _ ). +noun( 'card', 'cards', count, _ ). +noun( 'card-sharper', 'card-sharpers', count, _ ). +noun( 'cardamom', '-', mass, _ ). +noun( 'cardboard', '-', mass, _ ). +noun( 'cardigan', 'cardigans', count, _ ). +noun( 'cardinal', 'cardinals', count, _ ). +noun( 'care', 'cares', both, _ ). +noun( 'career', 'careers', both, _ ). +noun( 'careerist', 'careerists', count, _ ). +noun( 'carefulness', '-', mass, _ ). +noun( 'carelessness', '-', mass, _ ). +noun( 'caress', 'caresses', count, _ ). +noun( 'caret', 'carets', count, _ ). +noun( 'caretaker', 'caretakers', count, _ ). +noun( 'cargo', 'cargoes', both, _ ). +noun( 'caribou', 'caribou', count, _ ). +noun( 'caricature', 'caricatures', both, _ ). +noun( 'caricaturist', 'caricaturists', count, _ ). +noun( 'caries', '-', mass, _ ). +noun( 'carillon', 'carillons', count, _ ). +noun( 'carmine', 'carmines', both, _ ). +noun( 'carnage', '-', mass, _ ). +noun( 'carnation', 'carnations', count, _ ). +noun( 'carnival', 'carnivals', both, _ ). +noun( 'carnivore', 'carnivores', count, _ ). +noun( 'carol', 'carols', count, _ ). +noun( 'caroller', 'carollers', count, _ ). +noun( 'carousal', 'carousals', count, _ ). +noun( 'carousel', 'carousels', count, _ ). +noun( 'carp', 'carp', count, _ ). +noun( 'carpal', 'carpals', count, _ ). +noun( 'carpenter', 'carpenters', count, _ ). +noun( 'carpentry', '-', mass, _ ). +noun( 'carpet', 'carpets', count, _ ). +noun( 'carpet-beater', 'carpet-beaters', count, _ ). +noun( 'carpet-knight', 'carpet-knights', count, _ ). +noun( 'carpet-sweeper', 'carpet-sweepers', count, _ ). +noun( 'carpetbag', 'carpetbags', count, _ ). +noun( 'carpetbagger', 'carpetbaggers', count, _ ). +noun( 'carport', 'carports', count, _ ). +noun( 'carriage', 'carriages', both, _ ). +noun( 'carriageway', 'carriageways', count, _ ). +noun( 'carrier', 'carriers', count, _ ). +noun( 'carrier-bag', 'carrier-bags', count, _ ). +noun( 'carrier-pigeon', 'carrier-pigeons', count, _ ). +noun( 'carrion', '-', mass, _ ). +noun( 'carrion-crow', 'carrion-crows', count, _ ). +noun( 'carrot', 'carrots', count, _ ). +noun( 'carry', 'carries', count, _ ). +noun( 'carrycot', 'carrycots', count, _ ). +noun( 'carsickness', '-', mass, _ ). +noun( 'cart', 'carts', count, _ ). +noun( 'cart-track', 'cart-tracks', count, _ ). +noun( 'cartage', '-', mass, _ ). +noun( 'carte blanche', '-', count, _ ). +noun( 'cartel', 'cartels', count, _ ). +noun( 'carter', 'carters', count, _ ). +noun( 'carthorse', 'carthorses', count, _ ). +noun( 'cartilage', 'cartilages', both, _ ). +noun( 'cartload', 'cartloads', count, _ ). +noun( 'cartographer', 'cartographers', count, _ ). +noun( 'cartography', '-', mass, _ ). +noun( 'carton', 'cartons', count, _ ). +noun( 'cartoon', 'cartoons', count, _ ). +noun( 'cartoonist', 'cartoonists', count, _ ). +noun( 'cartridge', 'cartridges', count, _ ). +noun( 'cartridge-belt', 'cartridge-belts', count, _ ). +noun( 'cartridge-paper', 'cartridge-papers', count, _ ). +noun( 'cartroad', 'cartroads', count, _ ). +noun( 'cartwheel', 'cartwheels', count, _ ). +noun( 'carver', 'carvers', count, _ ). +noun( 'carving', 'carvings', both, _ ). +noun( 'carving-fork', 'carving-forks', count, _ ). +noun( 'carving-knife', 'carving-knives', count, _ ). +noun( 'caryatid', 'caryatids', count, _ ). +noun( 'cascade', 'cascades', count, _ ). +noun( 'case', 'cases', count, _ ). +noun( 'case-history', 'case-histories', count, _ ). +noun( 'case-law', 'case-laws', count, _ ). +noun( 'casebook', 'casebooks', count, _ ). +noun( 'casein', '-', mass, _ ). +noun( 'casement', 'casements', count, _ ). +noun( 'casework', 'caseworks', count, _ ). +noun( 'cash', '-', mass, _ ). +noun( 'cashew', 'cashews', count, _ ). +noun( 'cashier', 'cashiers', count, _ ). +noun( 'cashmere', '-', mass, _ ). +noun( 'casing', 'casings', count, _ ). +noun( 'casino', 'casinos', count, _ ). +noun( 'cask', 'casks', count, _ ). +noun( 'casket', 'caskets', count, _ ). +noun( 'cassava', '-', mass, _ ). +noun( 'casserole', 'casseroles', count, _ ). +noun( 'cassette', 'cassettes', count, _ ). +noun( 'cassock', 'cassocks', count, _ ). +noun( 'cassowary', 'cassowaries', count, _ ). +noun( 'cast', 'casts', count, _ ). +noun( 'castaway', 'castaways', count, _ ). +noun( 'caste', 'castes', both, _ ). +noun( 'caster', 'casters', count, _ ). +noun( 'castigation', 'castigations', both, _ ). +noun( 'casting', 'castings', count, _ ). +noun( 'castle', 'castles', count, _ ). +noun( 'castor', 'castors', count, _ ). +noun( 'castor oil', '-', mass, _ ). +noun( 'castration', 'castrations', count, _ ). +noun( 'casualty', 'casualties', count, _ ). +noun( 'casuist', 'casuists', count, _ ). +noun( 'casuistry', 'casuistries', both, _ ). +noun( 'casus belli', '-', count, _ ). +noun( 'cat', 'cats', count, _ ). +noun( 'cat-nap', 'cat-naps', count, _ ). +noun( 'cat-o\'-nine-tails', '-', count, _ ). +noun( 'cat-sleep', 'cat-sleeps', count, _ ). +noun( 'cataclysm', 'cataclysms', count, _ ). +noun( 'catafalque', 'catafalques', count, _ ). +noun( 'catalepsy', '-', mass, _ ). +noun( 'cataleptic', 'cataleptics', count, _ ). +noun( 'catalogue', 'catalogues', count, _ ). +noun( 'catalpa', 'catalpas', count, _ ). +noun( 'catalysis', '-', mass, _ ). +noun( 'catalyst', 'catalysts', count, _ ). +noun( 'catamaran', 'catamarans', count, _ ). +noun( 'catapult', 'catapults', count, _ ). +noun( 'cataract', 'cataracts', count, _ ). +noun( 'catarrh', '-', mass, _ ). +noun( 'catastrophe', 'catastrophes', count, _ ). +noun( 'catcall', 'catcalls', count, _ ). +noun( 'catch', 'catches', count, _ ). +noun( 'catch-crop', 'catch-crops', count, _ ). +noun( 'catcher', 'catchers', count, _ ). +noun( 'catchment', 'catchments', count, _ ). +noun( 'catchment-area', 'catchment-areas', count, _ ). +noun( 'catchment-basin', 'catchment-basins', count, _ ). +noun( 'catchup', 'catchups', count, _ ). +noun( 'catchword', 'catchwords', count, _ ). +noun( 'catechism', 'catechisms', both, _ ). +noun( 'category', 'categories', count, _ ). +noun( 'caterer', 'caterers', count, _ ). +noun( 'caterpillar', 'caterpillars', count, _ ). +noun( 'caterwaul', 'caterwauls', count, _ ). +noun( 'catfish', 'catfish', count, _ ). +noun( 'catgut', '-', mass, _ ). +noun( 'catharsis', 'catharses', both, _ ). +noun( 'cathartic', 'cathartics', both, _ ). +noun( 'cathedral', 'cathedrals', count, _ ). +noun( 'cathode', 'cathodes', count, _ ). +noun( 'catholicity', '-', mass, _ ). +noun( 'catkin', 'catkins', count, _ ). +noun( 'catsup', 'catsups', both, _ ). +noun( 'cattiness', '-', mass, _ ). +noun( 'cattle-cake', '-', mass, _ ). +noun( 'cattleman', 'cattlemen', count, _ ). +noun( 'catwalk', 'catwalks', count, _ ). +noun( 'caucus', 'caucuses', count, _ ). +noun( 'caul', 'cauls', count, _ ). +noun( 'cauldron', 'cauldrons', count, _ ). +noun( 'cauliflower', 'cauliflowers', both, _ ). +noun( 'causality', '-', mass, _ ). +noun( 'causation', '-', mass, _ ). +noun( 'cause', 'causes', both, _ ). +noun( 'causerie', 'causeries', count, _ ). +noun( 'causeway', 'causeways', count, _ ). +noun( 'caution', 'cautions', both, _ ). +noun( 'cavalcade', 'cavalcades', count, _ ). +noun( 'cavalier', 'cavaliers', count, _ ). +noun( 'cavalry', 'cavalries', count, _ ). +noun( 'cavalryman', 'cavalrymen', count, _ ). +noun( 'cave', 'caves', count, _ ). +noun( 'cave-dweller', 'cave-dwellers', count, _ ). +noun( 'cave-in', 'cave-ins', count, _ ). +noun( 'caveat', 'caveats', count, _ ). +noun( 'caveman', 'cavemen', count, _ ). +noun( 'cavern', 'caverns', count, _ ). +noun( 'caviar', '-', mass, _ ). +noun( 'caviare', '-', mass, _ ). +noun( 'cavity', 'cavities', count, _ ). +noun( 'caw', 'caws', count, _ ). +noun( 'cayenne', '-', mass, _ ). +noun( 'cayenne pepper', '-', mass, _ ). +noun( 'cayman', 'caymans', count, _ ). +noun( 'ca~non', 'ca~nons', count, _ ). +noun( 'cc', 'cc', count, _ ). +noun( 'cease', 'ceases', count, _ ). +noun( 'cease-fire', 'cease-fires', count, _ ). +noun( 'cedar', 'cedars', both, _ ). +noun( 'cedilla', 'cedillas', count, _ ). +noun( 'ceiling', 'ceilings', count, _ ). +noun( 'celandine', 'celandines', count, _ ). +noun( 'celebrant', 'celebrants', count, _ ). +noun( 'celebration', 'celebrations', both, _ ). +noun( 'celebrity', 'celebrities', both, _ ). +noun( 'celerity', '-', mass, _ ). +noun( 'celery', '-', mass, _ ). +noun( 'celibacy', '-', mass, _ ). +noun( 'celibate', 'celibates', count, _ ). +noun( 'cell', 'cells', count, _ ). +noun( 'cellar', 'cellars', count, _ ). +noun( 'cellarage', 'cellarages', both, _ ). +noun( 'cellist', 'cellists', count, _ ). +noun( 'cello', 'cellos', count, _ ). +noun( 'cellophane', '-', mass, _ ). +noun( 'celluloid', '-', mass, _ ). +noun( 'cellulose', '-', mass, _ ). +noun( 'cement', '-', mass, _ ). +noun( 'cement-mixer', 'cement-mixers', count, _ ). +noun( 'cemetery', 'cemeteries', count, _ ). +noun( 'cenotaph', 'cenotaphs', count, _ ). +noun( 'censer', 'censers', count, _ ). +noun( 'censor', 'censors', count, _ ). +noun( 'censorship', 'censorships', count, _ ). +noun( 'censure', 'censures', both, _ ). +noun( 'census', 'censuses', count, _ ). +noun( 'cent', 'cents', count, _ ). +noun( 'centaur', 'centaurs', count, _ ). +noun( 'centenarian', 'centenarians', count, _ ). +noun( 'centenary', 'centenaries', count, _ ). +noun( 'centennial', 'centennials', count, _ ). +noun( 'centime', 'centimes', count, _ ). +noun( 'centimetre', 'centimetres', count, _ ). +noun( 'centipede', 'centipedes', count, _ ). +noun( 'central', 'centrals', count, _ ). +noun( 'centralization', 'centralizations', both, _ ). +noun( 'centre', 'centres', count, _ ). +noun( 'centre-bit', 'centre-bits', count, _ ). +noun( 'centre-board', 'centre-boards', count, _ ). +noun( 'centrepiece', 'centrepieces', count, _ ). +noun( 'centrifuge', 'centrifuges', count, _ ). +noun( 'centurion', 'centurions', count, _ ). +noun( 'century', 'centuries', count, _ ). +noun( 'ceramics', 'ceramics', mass, _ ). +noun( 'cereal', 'cereals', both, _ ). +noun( 'cerebration', '-', mass, _ ). +noun( 'ceremonial', 'ceremonials', both, _ ). +noun( 'ceremony', 'ceremonies', both, _ ). +noun( 'cerise', 'cerises', both, _ ). +noun( 'cert', 'certs', count, _ ). +noun( 'certainty', 'certainties', both, _ ). +noun( 'certificate', 'certificates', count, _ ). +noun( 'certification', 'certifications', both, _ ). +noun( 'certitude', '-', mass, _ ). +noun( 'cervix', 'cervixes', count, _ ). +noun( 'cessation', '-', mass, _ ). +noun( 'cession', 'cessions', both, _ ). +noun( 'cesspit', 'cesspits', count, _ ). +noun( 'cesspool', 'cesspools', count, _ ). +noun( 'cf', '-', proper, _ ). +noun( 'ch^ateau', 'ch^ateaux', count, _ ). +noun( 'chafe', 'chafes', count, _ ). +noun( 'chaff', '-', mass, _ ). +noun( 'chaffinch', 'chaffinches', count, _ ). +noun( 'chafing dish', 'chafing dishes', count, _ ). +noun( 'chagrin', '-', mass, _ ). +noun( 'chain', 'chains', count, _ ). +noun( 'chain-armour', '-', mass, _ ). +noun( 'chain-gang', 'chain-gangs', count, _ ). +noun( 'chain-letter', 'chain-letters', count, _ ). +noun( 'chain-mail', '-', mass, _ ). +noun( 'chain-smoker', 'chain-smokers', count, _ ). +noun( 'chain-stitch', 'chain-stitches', count, _ ). +noun( 'chain-store', 'chain-stores', count, _ ). +noun( 'chair', 'chairs', count, _ ). +noun( 'chair-lift', 'chair-lifts', count, _ ). +noun( 'chairman', 'chairmen', count, _ ). +noun( 'chairmanship', '-', mass, _ ). +noun( 'chaise', 'chaises', count, _ ). +noun( 'chaise longue', 'chaise longues', count, _ ). +noun( 'chalet', 'chalets', count, _ ). +noun( 'chalice', 'chalices', count, _ ). +noun( 'chalk', 'chalks', both, _ ). +noun( 'chalkpit', 'chalkpits', count, _ ). +noun( 'challenge', 'challenges', count, _ ). +noun( 'challenger', 'challengers', count, _ ). +noun( 'chamber', 'chambers', count, _ ). +noun( 'chamberlain', 'chamberlains', count, _ ). +noun( 'chambermaid', 'chambermaids', count, _ ). +noun( 'chamberpot', 'chamberpots', count, _ ). +noun( 'chameleon', 'chameleons', count, _ ). +noun( 'chammy-leather', 'chammy-leathers', count, _ ). +noun( 'chamois', 'chamoises', count, _ ). +noun( 'chamois-leather', 'chamois-leathers', count, _ ). +noun( 'champ', 'champs', count, _ ). +noun( 'champagne', 'champagnes', count, _ ). +noun( 'champion', 'champions', count, _ ). +noun( 'championship', 'championships', both, _ ). +noun( 'chance', 'chances', both, _ ). +noun( 'chancel', 'chancels', count, _ ). +noun( 'chancellery', 'chancelleries', count, _ ). +noun( 'chancellor', 'chancellors', count, _ ). +noun( 'chancery', 'chanceries', count, _ ). +noun( 'chandelier', 'chandeliers', count, _ ). +noun( 'chandler', 'chandlers', count, _ ). +noun( 'change', 'changes', both, _ ). +noun( 'changeableness', '-', mass, _ ). +noun( 'changeling', 'changelings', count, _ ). +noun( 'changeover', 'changeovers', count, _ ). +noun( 'channel', 'channels', count, _ ). +noun( 'chant', 'chants', count, _ ). +noun( 'chaos', '-', mass, _ ). +noun( 'chap', 'chaps', count, _ ). +noun( 'chapel', 'chapels', count, _ ). +noun( 'chapelgoer', 'chapelgoers', count, _ ). +noun( 'chaperon', 'chaperons', count, _ ). +noun( 'chaplain', 'chaplains', count, _ ). +noun( 'chaplaincy', 'chaplaincies', count, _ ). +noun( 'chaplet', 'chaplets', count, _ ). +noun( 'chapman', 'chapmen', count, _ ). +noun( 'chapter', 'chapters', count, _ ). +noun( 'chapterhouse', 'chapterhouses', count, _ ). +noun( 'char', 'chars', both, _ ). +noun( 'char`abanc', 'char`abancs', count, _ ). +noun( 'charabanc', 'charabancs', count, _ ). +noun( 'character', 'characters', both, _ ). +noun( 'characteristic', 'characteristics', count, _ ). +noun( 'characterization', '-', mass, _ ). +noun( 'charade', 'charades', count, _ ). +noun( 'charcoal', '-', mass, _ ). +noun( 'charcoal-burner', 'charcoal-burners', count, _ ). +noun( 'chard', 'chards', count, _ ). +noun( 'charg_e d\'affaires', 'charg_es d\'affaires', count, _ ). +noun( 'charge', 'charges', both, _ ). +noun( 'charge-account', 'charge-accounts', count, _ ). +noun( 'charge-sheet', 'charge-sheets', count, _ ). +noun( 'charger', 'chargers', count, _ ). +noun( 'chariot', 'chariots', count, _ ). +noun( 'charioteer', 'charioteers', count, _ ). +noun( 'charisma', 'charismas', count, _ ). +noun( 'charity', 'charities', both, _ ). +noun( 'charivari', '-', mass, _ ). +noun( 'charlady', 'charladies', count, _ ). +noun( 'charlatan', 'charlatans', count, _ ). +noun( 'charlock', '-', mass, _ ). +noun( 'charm', 'charms', both, _ ). +noun( 'charmer', 'charmers', count, _ ). +noun( 'charnel house', 'charnel houses', count, _ ). +noun( 'chart', 'charts', count, _ ). +noun( 'charter', 'charters', count, _ ). +noun( 'charter-party', 'charter-parties', count, _ ). +noun( 'chartreuse', '-', mass, _ ). +noun( 'charwoman', 'charwomen', count, _ ). +noun( 'chase', 'chases', count, _ ). +noun( 'chaser', 'chasers', count, _ ). +noun( 'chasm', 'chasms', count, _ ). +noun( 'chassis', 'chassis', count, _ ). +noun( 'chastisement', '-', mass, _ ). +noun( 'chastity', '-', mass, _ ). +noun( 'chasuble', 'chasubles', count, _ ). +noun( 'chat', 'chats', count, _ ). +noun( 'chatelaine', 'chatelaines', count, _ ). +noun( 'chattel', 'chattels', count, _ ). +noun( 'chatter', '-', mass, _ ). +noun( 'chatterbox', 'chatterboxes', count, _ ). +noun( 'chauffeur', 'chauffeurs', count, _ ). +noun( 'chauffeuse', 'chauffeuses', count, _ ). +noun( 'chauvinism', '-', mass, _ ). +noun( 'chauvinist', 'chauvinists', count, _ ). +noun( 'chaw', 'chaws', count, _ ). +noun( 'chaw-bacon', 'chaw-bacons', count, _ ). +noun( 'cheapness', '-', mass, _ ). +noun( 'cheat', 'cheats', count, _ ). +noun( 'check', 'checks', both, _ ). +noun( 'checkbook', 'checkbooks', count, _ ). +noun( 'checker', 'checkers', count, _ ). +noun( 'checkers', 'checkers', mass, _ ). +noun( 'checklist', 'checklists', count, _ ). +noun( 'checkmate', 'checkmates', count, _ ). +noun( 'checkout', 'checkouts', count, _ ). +noun( 'checkpoint', 'checkpoints', count, _ ). +noun( 'checkroom', 'checkrooms', count, _ ). +noun( 'checkup', 'checkups', count, _ ). +noun( 'cheek', 'cheeks', both, _ ). +noun( 'cheekbone', 'cheekbones', count, _ ). +noun( 'cheep', 'cheeps', count, _ ). +noun( 'cheer', 'cheers', both, _ ). +noun( 'cheerfulness', '-', mass, _ ). +noun( 'cheering', '-', mass, _ ). +noun( 'cheerleader', 'cheerleaders', count, _ ). +noun( 'cheerlessness', '-', mass, _ ). +noun( 'cheese', 'cheeses', both, _ ). +noun( 'cheesecake', 'cheesecakes', both, _ ). +noun( 'cheesecloth', 'cheesecloths', both, _ ). +noun( 'cheetah', 'cheetahs', count, _ ). +noun( 'chef', 'chefs', count, _ ). +noun( 'chef-d\'oeuvre', 'chefs-d\'oeuvre', count, _ ). +noun( 'chemical', 'chemicals', count, _ ). +noun( 'chemise', 'chemises', count, _ ). +noun( 'chemist', 'chemists', count, _ ). +noun( 'chemistry', '-', mass, _ ). +noun( 'chemotherapy', '-', mass, _ ). +noun( 'chenille', '-', mass, _ ). +noun( 'cheque', 'cheques', count, _ ). +noun( 'chequebook', 'chequebooks', count, _ ). +noun( 'cheroot', 'cheroots', count, _ ). +noun( 'cherry', 'cherries', count, _ ). +noun( 'cherub', 'cherubs', count, _ ). +noun( 'chervil', '-', mass, _ ). +noun( 'chess', '-', mass, _ ). +noun( 'chessboard', 'chessboards', count, _ ). +noun( 'chessman', 'chessmen', count, _ ). +noun( 'chest', 'chests', count, _ ). +noun( 'chesterfield', 'chesterfields', count, _ ). +noun( 'chestnut', 'chestnuts', both, _ ). +noun( 'cheval glass', 'cheval glasses', count, _ ). +noun( 'chevron', 'chevrons', count, _ ). +noun( 'chew', 'chews', count, _ ). +noun( 'chewing-gum', '-', mass, _ ). +noun( 'chiaroscuro', '-', mass, _ ). +noun( 'chic', '-', mass, _ ). +noun( 'chicanery', 'chicaneries', both, _ ). +noun( 'chick', 'chicks', count, _ ). +noun( 'chicken', 'chickens', both, _ ). +noun( 'chicken-run', 'chicken-runs', count, _ ). +noun( 'chickenfeed', '-', mass, _ ). +noun( 'chickenpox', '-', mass, _ ). +noun( 'chickpea', 'chickpeas', count, _ ). +noun( 'chickweed', '-', mass, _ ). +noun( 'chicle', '-', mass, _ ). +noun( 'chicory', '-', mass, _ ). +noun( 'chief', 'chiefs', count, _ ). +noun( 'chieftain', 'chieftains', count, _ ). +noun( 'chieftaincy', 'chieftaincies', count, _ ). +noun( 'chiffon', '-', mass, _ ). +noun( 'chiffonier', 'chiffoniers', count, _ ). +noun( 'chignon', 'chignons', count, _ ). +noun( 'chilblain', 'chilblains', count, _ ). +noun( 'child', 'children', count, _ ). +noun( 'child\'s-play', '-', mass, _ ). +noun( 'child-bearing', '-', mass, _ ). +noun( 'childbirth', '-', mass, _ ). +noun( 'childhood', '-', mass, _ ). +noun( 'chill', 'chills', count, _ ). +noun( 'chilli', 'chillies', count, _ ). +noun( 'chilly', 'chillies', count, _ ). +noun( 'chimaera', 'chimaeras', count, _ ). +noun( 'chime', 'chimes', count, _ ). +noun( 'chimera', 'chimeras', count, _ ). +noun( 'chimney', 'chimneys', count, _ ). +noun( 'chimney-sweep', 'chimney-sweeps', count, _ ). +noun( 'chimneybreast', 'chimneybreasts', count, _ ). +noun( 'chimneypiece', 'chimneypieces', count, _ ). +noun( 'chimneypot', 'chimneypots', count, _ ). +noun( 'chimneystack', 'chimneystacks', count, _ ). +noun( 'chimneysweep', 'chimneysweeps', count, _ ). +noun( 'chimneysweeper', 'chimneysweepers', count, _ ). +noun( 'chimp', 'chimps', count, _ ). +noun( 'chimpanzee', 'chimpanzees', count, _ ). +noun( 'chin', 'chins', count, _ ). +noun( 'chin-strap', 'chin-straps', count, _ ). +noun( 'chin-wagging', '-', mass, _ ). +noun( 'china', '-', mass, _ ). +noun( 'china-closet', 'china-closets', count, _ ). +noun( 'chinaware', '-', mass, _ ). +noun( 'chinchilla', 'chinchillas', both, _ ). +noun( 'chine', 'chines', count, _ ). +noun( 'chink', 'chinks', count, _ ). +noun( 'chintz', '-', mass, _ ). +noun( 'chip', 'chips', count, _ ). +noun( 'chipboard', '-', mass, _ ). +noun( 'chipmunk', 'chipmunks', count, _ ). +noun( 'chiropodist', 'chiropodists', count, _ ). +noun( 'chiropody', '-', mass, _ ). +noun( 'chiropractor', 'chiropractors', count, _ ). +noun( 'chirp', 'chirps', count, _ ). +noun( 'chirpiness', '-', mass, _ ). +noun( 'chirrup', 'chirrups', count, _ ). +noun( 'chisel', 'chisels', count, _ ). +noun( 'chiseller', 'chisellers', count, _ ). +noun( 'chit', 'chits', count, _ ). +noun( 'chit-chat', '-', mass, _ ). +noun( 'chivalry', '-', mass, _ ). +noun( 'chive', 'chives', both, _ ). +noun( 'chloride', '-', mass, _ ). +noun( 'chlorination', '-', mass, _ ). +noun( 'chlorine', '-', mass, _ ). +noun( 'chloroform', '-', mass, _ ). +noun( 'chlorophyll', '-', mass, _ ). +noun( 'choc', 'chocs', count, _ ). +noun( 'choc-ice', 'choc-ices', count, _ ). +noun( 'chock', 'chocks', count, _ ). +noun( 'chocolate', 'chocolates', both, _ ). +noun( 'choice', 'choices', both, _ ). +noun( 'choir', 'choirs', count, _ ). +noun( 'choir-school', 'choir-schools', count, _ ). +noun( 'choirboy', 'choirboys', count, _ ). +noun( 'choke', 'chokes', count, _ ). +noun( 'choke-damp', '-', mass, _ ). +noun( 'choker', 'chokers', count, _ ). +noun( 'chokey', 'chokeys', count, _ ). +noun( 'choky', 'chokies', count, _ ). +noun( 'choler', 'cholers', count, _ ). +noun( 'cholera', '-', mass, _ ). +noun( 'chop', 'chops', count, _ ). +noun( 'chop suey', '-', mass, _ ). +noun( 'chop-house', 'chop-houses', count, _ ). +noun( 'chopper', 'choppers', count, _ ). +noun( 'chorale', 'chorales', count, _ ). +noun( 'chord', 'chords', count, _ ). +noun( 'chore', 'chores', count, _ ). +noun( 'choreographer', 'choreographers', count, _ ). +noun( 'choreography', '-', mass, _ ). +noun( 'chorister', 'choristers', count, _ ). +noun( 'chortle', 'chortles', count, _ ). +noun( 'chorus', 'choruses', count, _ ). +noun( 'chorus-girl', 'chorus-girls', count, _ ). +noun( 'chow', 'chows', count, _ ). +noun( 'chowder', 'chowders', count, _ ). +noun( 'christening', 'christenings', count, _ ). +noun( 'chrome', '-', mass, _ ). +noun( 'chromium', '-', mass, _ ). +noun( 'chromosome', 'chromosomes', count, _ ). +noun( 'chronicle', 'chronicles', count, _ ). +noun( 'chronicler', 'chroniclers', count, _ ). +noun( 'chronology', 'chronologies', both, _ ). +noun( 'chronometer', 'chronometers', count, _ ). +noun( 'chrysalis', 'chrysalises', count, _ ). +noun( 'chrysanthemum', 'chrysanthemums', count, _ ). +noun( 'chuck', 'chucks', count, _ ). +noun( 'chucker-out', 'chuckers-out', count, _ ). +noun( 'chuckle', 'chuckles', count, _ ). +noun( 'chug', 'chugs', count, _ ). +noun( 'chukker', 'chukkers', count, _ ). +noun( 'chum', 'chums', count, _ ). +noun( 'chump', 'chumps', count, _ ). +noun( 'chunk', 'chunks', count, _ ). +noun( 'church', 'churches', both, _ ). +noun( 'churchgoer', 'churchgoers', count, _ ). +noun( 'churchman', 'churchmen', count, _ ). +noun( 'churchwarden', 'churchwardens', count, _ ). +noun( 'churchyard', 'churchyards', count, _ ). +noun( 'churl', 'churls', count, _ ). +noun( 'churn', 'churns', count, _ ). +noun( 'chute', 'chutes', count, _ ). +noun( 'chutney', 'chutneys', both, _ ). +noun( 'cicada', 'cicadas', count, _ ). +noun( 'cicala', 'cicalas', count, _ ). +noun( 'cicatrice', 'cicatrices', count, _ ). +noun( 'cicatrix', 'cicatrices', count, _ ). +noun( 'cicerone', '-', count, _ ). +noun( 'cider', 'ciders', both, _ ). +noun( 'ciderpress', 'ciderpresses', count, _ ). +noun( 'cif', '-', proper, _ ). +noun( 'cigar', 'cigars', count, _ ). +noun( 'cigarette', 'cigarettes', count, _ ). +noun( 'cigarette-case', 'cigarette-cases', count, _ ). +noun( 'cigarette-holder', 'cigarette-holders', count, _ ). +noun( 'cigarette-paper', 'cigarette-papers', count, _ ). +noun( 'cinch', '-', count, _ ). +noun( 'cinchona', 'cinchonas', count, _ ). +noun( 'cincture', 'cinctures', count, _ ). +noun( 'cinder', 'cinders', count, _ ). +noun( 'cinder-track', 'cinder-tracks', count, _ ). +noun( 'cine-camera', 'cine-cameras', count, _ ). +noun( 'cine-film', 'cine-films', count, _ ). +noun( 'cine-projector', 'cine-projectors', count, _ ). +noun( 'cinema', 'cinemas', count, _ ). +noun( 'cinematography', '-', mass, _ ). +noun( 'cinnamon', '-', mass, _ ). +noun( 'cinquefoil', 'cinquefoils', count, _ ). +noun( 'cipher', 'ciphers', count, _ ). +noun( 'circle', 'circles', count, _ ). +noun( 'circlet', 'circlets', count, _ ). +noun( 'circuit', 'circuits', count, _ ). +noun( 'circular', 'circulars', count, _ ). +noun( 'circularity', '-', mass, _ ). +noun( 'circulation', 'circulations', both, _ ). +noun( 'circumcision', 'circumcisions', count, _ ). +noun( 'circumference', 'circumferences', count, _ ). +noun( 'circumflex', 'circumflexes', count, _ ). +noun( 'circumlocution', 'circumlocutions', both, _ ). +noun( 'circumnavigation', 'circumnavigations', count, _ ). +noun( 'circumscription', 'circumscriptions', both, _ ). +noun( 'circumspection', '-', mass, _ ). +noun( 'circumstance', 'circumstances', count, _ ). +noun( 'circumvention', 'circumventions', count, _ ). +noun( 'circus', 'circuses', count, _ ). +noun( 'cirrhosis', '-', mass, _ ). +noun( 'cirrus', '-', mass, _ ). +noun( 'cissy', 'cissies', count, _ ). +noun( 'cistern', 'cisterns', count, _ ). +noun( 'citadel', 'citadels', count, _ ). +noun( 'citation', 'citations', both, _ ). +noun( 'citizen', 'citizens', count, _ ). +noun( 'citizenship', 'citizenships', count, _ ). +noun( 'citron', 'citrons', count, _ ). +noun( 'citrus', 'citruses', count, _ ). +noun( 'city', 'cities', count, _ ). +noun( 'civet', 'civets', both, _ ). +noun( 'civet-cat', 'civet-cats', count, _ ). +noun( 'civics', 'civics', mass, _ ). +noun( 'civilian', 'civilians', count, _ ). +noun( 'civility', 'civilities', both, _ ). +noun( 'civilization', 'civilizations', both, _ ). +noun( 'clack', 'clacks', count, _ ). +noun( 'claim', 'claims', both, _ ). +noun( 'claimant', 'claimants', count, _ ). +noun( 'clairvoyance', '-', mass, _ ). +noun( 'clairvoyant', 'clairvoyants', count, _ ). +noun( 'clam', 'clams', count, _ ). +noun( 'clambake', 'clambakes', count, _ ). +noun( 'clamber', 'clambers', count, _ ). +noun( 'clamour', 'clamours', both, _ ). +noun( 'clamp', 'clamps', count, _ ). +noun( 'clamp-down', 'clamp-downs', count, _ ). +noun( 'clan', 'clans', count, _ ). +noun( 'clang', 'clangs', count, _ ). +noun( 'clanger', 'clangers', count, _ ). +noun( 'clangour', '-', mass, _ ). +noun( 'clank', 'clanks', count, _ ). +noun( 'clansman', 'clansmen', count, _ ). +noun( 'clap', 'claps', both, _ ). +noun( 'clapboard', 'clapboards', count, _ ). +noun( 'clapper', 'clappers', count, _ ). +noun( 'clapperboard', 'clapperboards', count, _ ). +noun( 'claptrap', '-', mass, _ ). +noun( 'claque', 'claques', count, _ ). +noun( 'claret', 'clarets', both, _ ). +noun( 'clarification', '-', mass, _ ). +noun( 'clarinet', 'clarinets', count, _ ). +noun( 'clarinetist', 'clarinetists', count, _ ). +noun( 'clarinettist', 'clarinettists', count, _ ). +noun( 'clarion', 'clarions', count, _ ). +noun( 'clarity', '-', mass, _ ). +noun( 'clash', 'clashes', count, _ ). +noun( 'clasp', 'clasps', count, _ ). +noun( 'clasp-knife', 'clasp-knives', count, _ ). +noun( 'class', 'classes', both, _ ). +noun( 'class-feeling', '-', mass, _ ). +noun( 'class-fellow', 'class-fellows', count, _ ). +noun( 'class-list', 'class-lists', count, _ ). +noun( 'class-warfare', '-', mass, _ ). +noun( 'classic', 'classics', count, _ ). +noun( 'classicism', '-', mass, _ ). +noun( 'classicist', 'classicists', count, _ ). +noun( 'classics', 'classics', mass, _ ). +noun( 'classification', 'classifications', both, _ ). +noun( 'classmate', 'classmates', count, _ ). +noun( 'classroom', 'classrooms', count, _ ). +noun( 'clatter', '-', count, _ ). +noun( 'clause', 'clauses', count, _ ). +noun( 'claustrophobia', '-', mass, _ ). +noun( 'clavichord', 'clavichords', count, _ ). +noun( 'clavicle', 'clavicles', count, _ ). +noun( 'claw', 'claws', count, _ ). +noun( 'clawback', '-', mass, _ ). +noun( 'clawhammer', 'clawhammers', count, _ ). +noun( 'clay', '-', mass, _ ). +noun( 'clean', 'cleans', count, _ ). +noun( 'clean-up', 'clean-ups', count, _ ). +noun( 'cleaner', 'cleaners', count, _ ). +noun( 'cleanliness', '-', mass, _ ). +noun( 'cleanser', 'cleansers', both, _ ). +noun( 'clear', 'clears', count, _ ). +noun( 'clearance', 'clearances', both, _ ). +noun( 'clearing', 'clearings', count, _ ). +noun( 'clearing-house', 'clearing-houses', count, _ ). +noun( 'clearness', '-', mass, _ ). +noun( 'clearway', 'clearways', count, _ ). +noun( 'cleat', 'cleats', count, _ ). +noun( 'cleavage', 'cleavages', count, _ ). +noun( 'cleaver', 'cleavers', count, _ ). +noun( 'clef', 'clefs', count, _ ). +noun( 'cleft', 'clefts', count, _ ). +noun( 'clematis', '-', mass, _ ). +noun( 'clemency', '-', mass, _ ). +noun( 'clerestory', 'clerestories', count, _ ). +noun( 'clergy', 'clergies', count, _ ). +noun( 'clergyman', 'clergymen', count, _ ). +noun( 'cleric', 'clerics', count, _ ). +noun( 'clerihew', 'clerihews', count, _ ). +noun( 'clerk', 'clerks', count, _ ). +noun( 'cleverness', '-', mass, _ ). +noun( 'clew', 'clews', count, _ ). +noun( 'clich_e', 'clich_es', count, _ ). +noun( 'click', 'clicks', count, _ ). +noun( 'client', 'clients', count, _ ). +noun( 'clientele', 'clienteles', count, _ ). +noun( 'cliff', 'cliffs', count, _ ). +noun( 'cliff-hanger', 'cliff-hangers', count, _ ). +noun( 'climacteric', 'climacterics', count, _ ). +noun( 'climate', 'climates', count, _ ). +noun( 'climatology', '-', mass, _ ). +noun( 'climax', 'climaxes', count, _ ). +noun( 'climb', 'climbs', count, _ ). +noun( 'climb-down', 'climb-downs', count, _ ). +noun( 'climber', 'climbers', count, _ ). +noun( 'clime', 'climes', count, _ ). +noun( 'clinch', 'clinches', count, _ ). +noun( 'clincher', 'clinchers', count, _ ). +noun( 'clinic', 'clinics', count, _ ). +noun( 'clink', 'clinks', count, _ ). +noun( 'clinker', 'clinkers', both, _ ). +noun( 'clip', 'clips', count, _ ). +noun( 'clip-joint', 'clip-joints', count, _ ). +noun( 'clipper', 'clippers', count, _ ). +noun( 'clipping', 'clippings', count, _ ). +noun( 'clique', 'cliques', count, _ ). +noun( 'clitoris', 'clitorises', count, _ ). +noun( 'cloak', 'cloaks', count, _ ). +noun( 'cloakroom', 'cloakrooms', count, _ ). +noun( 'clobber', 'clobbers', count, _ ). +noun( 'cloche', 'cloches', count, _ ). +noun( 'clock', 'clocks', count, _ ). +noun( 'clock-dial', 'clock-dials', count, _ ). +noun( 'clock-face', 'clock-faces', count, _ ). +noun( 'clock-golf', '-', mass, _ ). +noun( 'clock-tower', 'clock-towers', count, _ ). +noun( 'clock-watching', '-', mass, _ ). +noun( 'clockwork', 'clockworks', count, _ ). +noun( 'clod', 'clods', count, _ ). +noun( 'clodhopper', 'clodhoppers', count, _ ). +noun( 'clog', 'clogs', count, _ ). +noun( 'clog-dance', 'clog-dances', count, _ ). +noun( 'cloisonn_e', '-', mass, _ ). +noun( 'cloister', 'cloisters', count, _ ). +noun( 'clone', 'clones', count, _ ). +noun( 'close', 'closes', count, _ ). +noun( 'close', '-', count, _ ). +noun( 'close-down', 'close-downs', count, _ ). +noun( 'close-up', 'close-ups', count, _ ). +noun( 'closeness', '-', mass, _ ). +noun( 'closet', 'closets', count, _ ). +noun( 'closure', 'closures', both, _ ). +noun( 'clot', 'clots', count, _ ). +noun( 'cloth', 'cloths', both, _ ). +noun( 'clothes-basket', 'clothes-baskets', count, _ ). +noun( 'clothes-hanger', 'clothes-hangers', count, _ ). +noun( 'clothes-moth', 'clothes-moths', count, _ ). +noun( 'clothes-peg', 'clothes-pegs', count, _ ). +noun( 'clothes-pin', 'clothes-pins', count, _ ). +noun( 'clotheshorse', 'clotheshorses', count, _ ). +noun( 'clothesline', 'clotheslines', count, _ ). +noun( 'clothier', 'clothiers', count, _ ). +noun( 'clothing', '-', mass, _ ). +noun( 'cloud', 'clouds', both, _ ). +noun( 'cloud-bank', 'cloud-banks', count, _ ). +noun( 'cloud-cuckoo-land', '-', count, _ ). +noun( 'cloudburst', 'cloudbursts', count, _ ). +noun( 'clout', 'clouts', count, _ ). +noun( 'clove', 'cloves', count, _ ). +noun( 'clove hitch', 'clove hitches', count, _ ). +noun( 'clover', '-', mass, _ ). +noun( 'cloverleaf', 'cloverleaves', count, _ ). +noun( 'clown', 'clowns', count, _ ). +noun( 'club', 'clubs', count, _ ). +noun( 'clubfoot', 'clubfeet', count, _ ). +noun( 'clubhouse', 'clubhouses', count, _ ). +noun( 'cluck', 'clucks', count, _ ). +noun( 'clue', 'clues', count, _ ). +noun( 'clump', 'clumps', count, _ ). +noun( 'clumsiness', '-', mass, _ ). +noun( 'clunk', 'clunks', count, _ ). +noun( 'cluster', 'clusters', count, _ ). +noun( 'clutch', 'clutches', count, _ ). +noun( 'clutter', 'clutters', both, _ ). +noun( 'cm', 'cm', count, _ ). +noun( 'co-ed', 'co-eds', count, _ ). +noun( 'co-op', 'co-ops', count, _ ). +noun( 'co-respondent', 'co-respondents', count, _ ). +noun( 'co-star', 'co-stars', count, _ ). +noun( 'coach', 'coaches', count, _ ). +noun( 'coach-builder', 'coach-builders', count, _ ). +noun( 'coachman', 'coachmen', count, _ ). +noun( 'coagulation', 'coagulations', both, _ ). +noun( 'coal', 'coals', both, _ ). +noun( 'coal-gas', '-', mass, _ ). +noun( 'coal-hole', 'coal-holes', count, _ ). +noun( 'coal-house', 'coal-houses', count, _ ). +noun( 'coal-scuttle', 'coal-scuttles', count, _ ). +noun( 'coal-seam', 'coal-seams', count, _ ). +noun( 'coal-tar', '-', mass, _ ). +noun( 'coalescence', 'coalescences', both, _ ). +noun( 'coalface', 'coalfaces', count, _ ). +noun( 'coalfield', 'coalfields', count, _ ). +noun( 'coaling-station', 'coaling-stations', count, _ ). +noun( 'coalition', 'coalitions', both, _ ). +noun( 'coalman', 'coalmen', count, _ ). +noun( 'coalmine', 'coalmines', count, _ ). +noun( 'coalpit', 'coalpits', count, _ ). +noun( 'coaming', 'coamings', count, _ ). +noun( 'coarseness', '-', mass, _ ). +noun( 'coast', 'coasts', count, _ ). +noun( 'coaster', 'coasters', count, _ ). +noun( 'coastguard', 'coastguards', count, _ ). +noun( 'coastline', 'coastlines', count, _ ). +noun( 'coat', 'coats', count, _ ). +noun( 'coat-hanger', 'coat-hangers', count, _ ). +noun( 'coatee', 'coatees', count, _ ). +noun( 'coating', 'coatings', both, _ ). +noun( 'coaxing', 'coaxings', both, _ ). +noun( 'cob', 'cobs', count, _ ). +noun( 'cob-nut', 'cob-nuts', count, _ ). +noun( 'cobalt', '-', mass, _ ). +noun( 'cobber', 'cobbers', count, _ ). +noun( 'cobble', 'cobbles', count, _ ). +noun( 'cobbler', 'cobblers', count, _ ). +noun( 'cobblestone', 'cobblestones', count, _ ). +noun( 'cobra', 'cobras', count, _ ). +noun( 'cobweb', 'cobwebs', count, _ ). +noun( 'cocaine', '-', mass, _ ). +noun( 'cochineal', '-', mass, _ ). +noun( 'cochlea', 'cochleas', count, _ ). +noun( 'cock', 'cocks', count, _ ). +noun( 'cock-a-doodle-doo', 'cock-a-doodle-doos', count, _ ). +noun( 'cock-crow', 'cock-crows', count, _ ). +noun( 'cockade', 'cockades', count, _ ). +noun( 'cockatoo', 'cockatoos', count, _ ). +noun( 'cockchafer', 'cockchafers', count, _ ). +noun( 'cocker', 'cockers', count, _ ). +noun( 'cockerel', 'cockerels', count, _ ). +noun( 'cockfighting', '-', mass, _ ). +noun( 'cockhorse', 'cockhorses', count, _ ). +noun( 'cockle', 'cockles', count, _ ). +noun( 'cockleshell', 'cockleshells', count, _ ). +noun( 'cockney', 'cockneys', count, _ ). +noun( 'cockpit', 'cockpits', count, _ ). +noun( 'cockroach', 'cockroaches', count, _ ). +noun( 'cockscomb', 'cockscombs', count, _ ). +noun( 'cocktail', 'cocktails', count, _ ). +noun( 'cockup', 'cockups', count, _ ). +noun( 'coco', 'cocos', count, _ ). +noun( 'cocoa', '-', mass, _ ). +noun( 'coconut', 'coconuts', count, _ ). +noun( 'cocoon', 'cocoons', count, _ ). +noun( 'cocotte', 'cocottes', count, _ ). +noun( 'cod', 'cods', both, _ ). +noun( 'cod-liver oil', '-', mass, _ ). +noun( 'coda', 'codas', count, _ ). +noun( 'code', 'codes', both, _ ). +noun( 'codeine', '-', mass, _ ). +noun( 'codex', 'codices', count, _ ). +noun( 'codfish', 'codfish', count, _ ). +noun( 'codger', 'codgers', count, _ ). +noun( 'codicil', 'codicils', count, _ ). +noun( 'codification', 'codifications', count, _ ). +noun( 'codling', 'codlings', count, _ ). +noun( 'codpiece', 'codpieces', count, _ ). +noun( 'coeducation', '-', mass, _ ). +noun( 'coefficient', 'coefficients', count, _ ). +noun( 'coercion', '-', mass, _ ). +noun( 'coeval', 'coevals', count, _ ). +noun( 'coexistence', '-', mass, _ ). +noun( 'coffee', 'coffees', both, _ ). +noun( 'coffee-house', 'coffee-houses', count, _ ). +noun( 'coffee-mill', 'coffee-mills', count, _ ). +noun( 'coffee-stall', 'coffee-stalls', count, _ ). +noun( 'coffer', 'coffers', count, _ ). +noun( 'coffer-dam', 'coffer-dams', count, _ ). +noun( 'coffin', 'coffins', count, _ ). +noun( 'cog', 'cogs', count, _ ). +noun( 'cogency', '-', mass, _ ). +noun( 'cogitation', '-', mass, _ ). +noun( 'cognac', '-', mass, _ ). +noun( 'cognate', 'cognates', count, _ ). +noun( 'cognition', '-', mass, _ ). +noun( 'cognizance', '-', mass, _ ). +noun( 'cognomen', 'cognomens', count, _ ). +noun( 'cogwheel', 'cogwheels', count, _ ). +noun( 'cohabitation', 'cohabitations', both, _ ). +noun( 'coherence', '-', mass, _ ). +noun( 'coherency', '-', mass, _ ). +noun( 'cohesion', '-', mass, _ ). +noun( 'cohort', 'cohorts', count, _ ). +noun( 'coif', 'coifs', count, _ ). +noun( 'coiffeur', 'coiffeurs', count, _ ). +noun( 'coiffure', 'coiffures', count, _ ). +noun( 'coign', 'coigns', count, _ ). +noun( 'coil', 'coils', count, _ ). +noun( 'coin', 'coins', both, _ ). +noun( 'coinage', 'coinages', both, _ ). +noun( 'coincidence', 'coincidences', both, _ ). +noun( 'coiner', 'coiners', count, _ ). +noun( 'coir', '-', mass, _ ). +noun( 'coition', '-', mass, _ ). +noun( 'coitus', '-', mass, _ ). +noun( 'coke', 'cokes', both, _ ). +noun( 'col', 'cols', count, _ ). +noun( 'cola', 'colas', count, _ ). +noun( 'colander', 'colanders', count, _ ). +noun( 'cold', 'colds', both, _ ). +noun( 'coldness', '-', mass, _ ). +noun( 'coleslaw', '-', mass, _ ). +noun( 'colic', '-', mass, _ ). +noun( 'colitis', '-', mass, _ ). +noun( 'collaboration', '-', mass, _ ). +noun( 'collaborationist', 'collaborationists', count, _ ). +noun( 'collaborator', 'collaborators', count, _ ). +noun( 'collage', 'collages', both, _ ). +noun( 'collapse', 'collapses', count, _ ). +noun( 'collar', 'collars', count, _ ). +noun( 'collarbone', 'collarbones', count, _ ). +noun( 'collateral', '-', mass, _ ). +noun( 'collation', 'collations', count, _ ). +noun( 'colleague', 'colleagues', count, _ ). +noun( 'collect', 'collects', count, _ ). +noun( 'collection', 'collections', both, _ ). +noun( 'collectivization', 'collectivizations', count, _ ). +noun( 'collector', 'collectors', count, _ ). +noun( 'colleen', 'colleens', count, _ ). +noun( 'college', 'colleges', both, _ ). +noun( 'collie', 'collies', count, _ ). +noun( 'collier', 'colliers', count, _ ). +noun( 'colliery', 'collieries', count, _ ). +noun( 'collision', 'collisions', both, _ ). +noun( 'collocation', 'collocations', both, _ ). +noun( 'colloquialism', 'colloquialisms', count, _ ). +noun( 'colloquy', 'colloquies', both, _ ). +noun( 'collusion', '-', mass, _ ). +noun( 'colon', 'colons', count, _ ). +noun( 'colonel', 'colonels', count, _ ). +noun( 'colonial', 'colonials', count, _ ). +noun( 'colonialism', '-', mass, _ ). +noun( 'colonialist', 'colonialists', count, _ ). +noun( 'colonist', 'colonists', count, _ ). +noun( 'colonization', '-', mass, _ ). +noun( 'colonizer', 'colonizers', count, _ ). +noun( 'colonnade', 'colonnades', count, _ ). +noun( 'colony', 'colonies', count, _ ). +noun( 'coloratura', '-', mass, _ ). +noun( 'colossus', 'colossi', count, _ ). +noun( 'colour', 'colours', both, _ ). +noun( 'colour-bar', 'colour-bars', count, _ ). +noun( 'colour-wash', 'colour-washes', count, _ ). +noun( 'colouring', '-', mass, _ ). +noun( 'colt', 'colts', count, _ ). +noun( 'columbine', 'columbines', count, _ ). +noun( 'column', 'columns', count, _ ). +noun( 'columnist', 'columnists', count, _ ). +noun( 'coma', 'comas', count, _ ). +noun( 'comb', 'combs', count, _ ). +noun( 'comb-out', 'comb-outs', count, _ ). +noun( 'combat', 'combats', count, _ ). +noun( 'combatant', 'combatants', count, _ ). +noun( 'combination', 'combinations', both, _ ). +noun( 'combination-lock', 'combination-locks', count, _ ). +noun( 'combine', 'combines', count, _ ). +noun( 'combustible', 'combustibles', count, _ ). +noun( 'combustion', '-', mass, _ ). +noun( 'come-on', 'come-ons', count, _ ). +noun( 'comeback', 'comebacks', count, _ ). +noun( 'comedian', 'comedians', count, _ ). +noun( 'comedienne', 'comediennes', count, _ ). +noun( 'comedown', 'comedowns', count, _ ). +noun( 'comedy', 'comedies', both, _ ). +noun( 'comeliness', '-', mass, _ ). +noun( 'comer', 'comers', count, _ ). +noun( 'comestible', 'comestibles', count, _ ). +noun( 'comet', 'comets', count, _ ). +noun( 'comfit', 'comfits', count, _ ). +noun( 'comfort', 'comforts', both, _ ). +noun( 'comforter', 'comforters', count, _ ). +noun( 'comfrey', '-', mass, _ ). +noun( 'comic', 'comics', count, _ ). +noun( 'coming', 'comings', count, _ ). +noun( 'comity', '-', mass, _ ). +noun( 'comma', 'commas', count, _ ). +noun( 'command', 'commands', both, _ ). +noun( 'commandant', 'commandants', count, _ ). +noun( 'commander', 'commanders', count, _ ). +noun( 'commandment', 'commandments', count, _ ). +noun( 'commando', 'commandos', count, _ ). +noun( 'commemoration', 'commemorations', both, _ ). +noun( 'commencement', 'commencements', count, _ ). +noun( 'commendation', 'commendations', both, _ ). +noun( 'comment', 'comments', both, _ ). +noun( 'commentary', 'commentaries', count, _ ). +noun( 'commentator', 'commentators', count, _ ). +noun( 'commerce', '-', mass, _ ). +noun( 'commercial', 'commercials', count, _ ). +noun( 'commercialism', '-', mass, _ ). +noun( 'commination', 'comminations', both, _ ). +noun( 'commiseration', 'commiserations', both, _ ). +noun( 'commissar', 'commissars', count, _ ). +noun( 'commissariat', 'commissariats', count, _ ). +noun( 'commissary', 'commissaries', count, _ ). +noun( 'commission', 'commissions', both, _ ). +noun( 'commissionaire', 'commissionaires', count, _ ). +noun( 'commissioner', 'commissioners', count, _ ). +noun( 'commital', 'commitals', count, _ ). +noun( 'commitment', 'commitments', both, _ ). +noun( 'committee', 'committees', count, _ ). +noun( 'commode', 'commodes', count, _ ). +noun( 'commodity', 'commodities', count, _ ). +noun( 'commodore', 'commodores', count, _ ). +noun( 'common', 'commons', count, _ ). +noun( 'common-room', 'common-rooms', count, _ ). +noun( 'commonalty', 'commonalties', count, _ ). +noun( 'commoner', 'commoners', count, _ ). +noun( 'commonplace', 'commonplaces', count, _ ). +noun( 'commonwealth', 'commonwealths', count, _ ). +noun( 'commotion', 'commotions', both, _ ). +noun( 'commune', 'communes', count, _ ). +noun( 'communicant', 'communicants', count, _ ). +noun( 'communication', 'communications', both, _ ). +noun( 'communion', 'communions', both, _ ). +noun( 'communiqu_e', 'communiqu_es', count, _ ). +noun( 'communism', '-', mass, _ ). +noun( 'communist', 'communists', count, _ ). +noun( 'community', 'communities', both, _ ). +noun( 'commutation', 'commutations', both, _ ). +noun( 'commutator', 'commutators', count, _ ). +noun( 'commuter', 'commuters', count, _ ). +noun( 'comp`ere', 'comp`eres', count, _ ). +noun( 'compact', 'compacts', count, _ ). +noun( 'compactness', '-', mass, _ ). +noun( 'companion', 'companions', count, _ ). +noun( 'companionship', '-', mass, _ ). +noun( 'companionway', 'companionways', count, _ ). +noun( 'company', 'companies', both, _ ). +noun( 'comparability', '-', mass, _ ). +noun( 'comparative', 'comparatives', count, _ ). +noun( 'compare', 'compares', count, _ ). +noun( 'comparison', 'comparisons', both, _ ). +noun( 'compartment', 'compartments', count, _ ). +noun( 'compass', 'compasses', count, _ ). +noun( 'compassion', '-', mass, _ ). +noun( 'compatibility', '-', mass, _ ). +noun( 'compatriot', 'compatriots', count, _ ). +noun( 'compeer', 'compeers', count, _ ). +noun( 'compendium', 'compendiums', count, _ ). +noun( 'compensation', 'compensations', both, _ ). +noun( 'competence', '-', mass, _ ). +noun( 'competition', 'competitions', both, _ ). +noun( 'competitiveness', '-', mass, _ ). +noun( 'competitor', 'competitors', count, _ ). +noun( 'compilation', 'compilations', both, _ ). +noun( 'compiler', 'compilers', count, _ ). +noun( 'complacence', '-', mass, _ ). +noun( 'complacency', '-', mass, _ ). +noun( 'complainant', 'complainants', count, _ ). +noun( 'complaint', 'complaints', both, _ ). +noun( 'complaisance', '-', mass, _ ). +noun( 'complement', 'complements', count, _ ). +noun( 'completeness', '-', mass, _ ). +noun( 'completion', '-', mass, _ ). +noun( 'complex', 'complexes', count, _ ). +noun( 'complexion', 'complexions', count, _ ). +noun( 'complexity', 'complexities', both, _ ). +noun( 'compliance', '-', mass, _ ). +noun( 'complication', 'complications', count, _ ). +noun( 'complicity', '-', mass, _ ). +noun( 'compliment', 'compliments', count, _ ). +noun( 'complin', 'complins', count, _ ). +noun( 'compline', 'complines', count, _ ). +noun( 'component', 'components', count, _ ). +noun( 'comportment', 'comportments', count, _ ). +noun( 'composer', 'composers', count, _ ). +noun( 'composition', 'compositions', both, _ ). +noun( 'compositor', 'compositors', count, _ ). +noun( 'compost', '-', mass, _ ). +noun( 'composure', '-', mass, _ ). +noun( 'compote', 'compotes', both, _ ). +noun( 'compound', 'compounds', count, _ ). +noun( 'comprehensibility', '-', mass, _ ). +noun( 'comprehension', 'comprehensions', both, _ ). +noun( 'comprehensiveness', '-', mass, _ ). +noun( 'compress', 'compresses', count, _ ). +noun( 'compression', '-', mass, _ ). +noun( 'compressor', 'compressors', count, _ ). +noun( 'compromise', 'compromises', both, _ ). +noun( 'comptroller', 'comptrollers', count, _ ). +noun( 'compulsion', '-', mass, _ ). +noun( 'compunction', '-', mass, _ ). +noun( 'computation', 'computations', both, _ ). +noun( 'computer', 'computers', count, _ ). +noun( 'comrade', 'comrades', count, _ ). +noun( 'comradeship', 'comradeships', count, _ ). +noun( 'con', 'cons', count, _ ). +noun( 'con-man', 'con-men', count, _ ). +noun( 'concatenation', 'concatenations', both, _ ). +noun( 'concavity', 'concavities', both, _ ). +noun( 'concealment', '-', mass, _ ). +noun( 'conceit', 'conceits', both, _ ). +noun( 'concentrate', 'concentrates', count, _ ). +noun( 'concentration', 'concentrations', both, _ ). +noun( 'concept', 'concepts', count, _ ). +noun( 'conception', 'conceptions', both, _ ). +noun( 'concern', 'concerns', both, _ ). +noun( 'concert', 'concerts', both, _ ). +noun( 'concert-hall', 'concert-halls', count, _ ). +noun( 'concertina', 'concertinas', count, _ ). +noun( 'concerto', 'concertos', count, _ ). +noun( 'concession', 'concessions', both, _ ). +noun( 'concessionaire', 'concessionaires', count, _ ). +noun( 'conch', 'conches', count, _ ). +noun( 'conchology', '-', mass, _ ). +noun( 'concierge', 'concierges', count, _ ). +noun( 'conciliation', '-', mass, _ ). +noun( 'conciseness', '-', mass, _ ). +noun( 'conclave', 'conclaves', count, _ ). +noun( 'conclusion', 'conclusions', count, _ ). +noun( 'concoction', 'concoctions', both, _ ). +noun( 'concomitant', 'concomitants', count, _ ). +noun( 'concord', 'concords', both, _ ). +noun( 'concordance', 'concordances', both, _ ). +noun( 'concordat', 'concordats', count, _ ). +noun( 'concourse', 'concourses', count, _ ). +noun( 'concrete', '-', mass, _ ). +noun( 'concretion', 'concretions', both, _ ). +noun( 'concubine', 'concubines', count, _ ). +noun( 'concupiscence', '-', mass, _ ). +noun( 'concurrence', 'concurrences', both, _ ). +noun( 'concussion', 'concussions', both, _ ). +noun( 'condemnation', 'condemnations', both, _ ). +noun( 'condensation', 'condensations', both, _ ). +noun( 'condenser', 'condensers', count, _ ). +noun( 'condescension', 'condescensions', both, _ ). +noun( 'condiment', 'condiments', both, _ ). +noun( 'condition', 'conditions', count, _ ). +noun( 'conditioner', 'conditioners', count, _ ). +noun( 'condolence', 'condolences', count, _ ). +noun( 'condominium', 'condominiums', count, _ ). +noun( 'condonation', 'condonations', count, _ ). +noun( 'condor', 'condors', count, _ ). +noun( 'conduct', '-', mass, _ ). +noun( 'conduction', '-', mass, _ ). +noun( 'conductivity', 'conductivities', both, _ ). +noun( 'conductor', 'conductors', count, _ ). +noun( 'conductress', 'conductresses', count, _ ). +noun( 'conduit', 'conduits', count, _ ). +noun( 'cone', 'cones', count, _ ). +noun( 'coney', 'coneys', count, _ ). +noun( 'confab', 'confabs', count, _ ). +noun( 'confabulation', 'confabulations', count, _ ). +noun( 'confection', 'confections', both, _ ). +noun( 'confectioner', 'confectioners', count, _ ). +noun( 'confectionery', 'confectioneries', both, _ ). +noun( 'confederacy', 'confederacies', count, _ ). +noun( 'confederate', 'confederates', count, _ ). +noun( 'confederation', 'confederations', both, _ ). +noun( 'conference', 'conferences', both, _ ). +noun( 'conferment', 'conferments', count, _ ). +noun( 'confession', 'confessions', both, _ ). +noun( 'confessional', 'confessionals', count, _ ). +noun( 'confessor', 'confessors', count, _ ). +noun( 'confetti', 'confetti', mass, _ ). +noun( 'confidant', 'confidants', count, _ ). +noun( 'confidence', 'confidences', both, _ ). +noun( 'confidentiality', 'confidentialities', both, _ ). +noun( 'configuration', 'configurations', count, _ ). +noun( 'confinement', 'confinements', both, _ ). +noun( 'confirmation', 'confirmations', both, _ ). +noun( 'confiscation', 'confiscations', both, _ ). +noun( 'conflagration', 'conflagrations', count, _ ). +noun( 'conflict', 'conflicts', both, _ ). +noun( 'confluence', 'confluences', count, _ ). +noun( 'conformation', 'conformations', count, _ ). +noun( 'conformist', 'conformists', count, _ ). +noun( 'conformity', '-', mass, _ ). +noun( 'confr`ere', 'confr`eres', count, _ ). +noun( 'confrontation', 'confrontations', both, _ ). +noun( 'confusion', '-', mass, _ ). +noun( 'confutation', 'confutations', count, _ ). +noun( 'cong_e', 'cong_es', count, _ ). +noun( 'conger', 'congers', count, _ ). +noun( 'conger-eel', 'conger-eels', count, _ ). +noun( 'congestion', '-', mass, _ ). +noun( 'conglomerate', 'conglomerates', count, _ ). +noun( 'conglomeration', 'conglomerations', both, _ ). +noun( 'congratulation', 'congratulations', count, _ ). +noun( 'congregation', 'congregations', both, _ ). +noun( 'congress', 'congresses', count, _ ). +noun( 'congressman', 'congressmen', count, _ ). +noun( 'congresswoman', 'congresswomen', count, _ ). +noun( 'conifer', 'conifers', count, _ ). +noun( 'conjecture', 'conjectures', both, _ ). +noun( 'conjugation', 'conjugations', both, _ ). +noun( 'conjunction', 'conjunctions', both, _ ). +noun( 'conjunctive', 'conjunctives', count, _ ). +noun( 'conjuncture', 'conjunctures', count, _ ). +noun( 'conjuration', 'conjurations', count, _ ). +noun( 'conjurer', 'conjurers', count, _ ). +noun( 'conjuror', 'conjurors', count, _ ). +noun( 'conk', 'conks', count, _ ). +noun( 'conker', 'conkers', count, _ ). +noun( 'connection', 'connections', both, _ ). +noun( 'connective', 'connectives', count, _ ). +noun( 'connexion', 'connexions', both, _ ). +noun( 'connivance', '-', mass, _ ). +noun( 'connoisseur', 'connoisseurs', count, _ ). +noun( 'connotation', 'connotations', count, _ ). +noun( 'conqueror', 'conquerors', count, _ ). +noun( 'conquest', 'conquests', both, _ ). +noun( 'conquistador', 'conquistadors', count, _ ). +noun( 'consanguinity', '-', mass, _ ). +noun( 'conscience', 'consciences', both, _ ). +noun( 'conscientiousness', '-', mass, _ ). +noun( 'consciousness', '-', mass, _ ). +noun( 'conscript', 'conscripts', count, _ ). +noun( 'conscription', '-', mass, _ ). +noun( 'consecration', 'consecrations', both, _ ). +noun( 'consensus', '-', both, _ ). +noun( 'consent', '-', mass, _ ). +noun( 'consequence', 'consequences', both, _ ). +noun( 'conservancy', 'conservancies', both, _ ). +noun( 'conservation', '-', mass, _ ). +noun( 'conservatism', '-', mass, _ ). +noun( 'conservative', 'conservatives', count, _ ). +noun( 'conservatoire', 'conservatoires', count, _ ). +noun( 'conservatory', 'conservatories', count, _ ). +noun( 'conserve', 'conserves', count, _ ). +noun( 'considerateness', '-', mass, _ ). +noun( 'consideration', 'considerations', both, _ ). +noun( 'consignee', 'consignees', count, _ ). +noun( 'consigner', 'consigners', count, _ ). +noun( 'consignment', 'consignments', both, _ ). +noun( 'consignor', 'consignors', count, _ ). +noun( 'consistence', '-', mass, _ ). +noun( 'consistency', 'consistencies', both, _ ). +noun( 'consistory', 'consistories', count, _ ). +noun( 'consolation', 'consolations', both, _ ). +noun( 'console', 'consoles', count, _ ). +noun( 'consolidation', 'consolidations', both, _ ). +noun( 'consomm_e', 'consomm_es', both, _ ). +noun( 'consonance', '-', mass, _ ). +noun( 'consonant', 'consonants', count, _ ). +noun( 'consort', 'consorts', count, _ ). +noun( 'consortium', 'consortia', count, _ ). +noun( 'conspectus', 'conspectuses', count, _ ). +noun( 'conspicuousness', '-', mass, _ ). +noun( 'conspiracy', 'conspiracies', both, _ ). +noun( 'conspirator', 'conspirators', count, _ ). +noun( 'constable', 'constables', count, _ ). +noun( 'constabulary', 'constabularies', count, _ ). +noun( 'constancy', '-', mass, _ ). +noun( 'constant', 'constants', count, _ ). +noun( 'constellation', 'constellations', count, _ ). +noun( 'consternation', '-', mass, _ ). +noun( 'constipation', '-', mass, _ ). +noun( 'constituency', 'constituencies', count, _ ). +noun( 'constituent', 'constituents', count, _ ). +noun( 'constitution', 'constitutions', both, _ ). +noun( 'constitutional', 'constitutionals', count, _ ). +noun( 'constitutionalism', '-', mass, _ ). +noun( 'constitutionalist', 'constitutionalists', count, _ ). +noun( 'constraint', 'constraints', both, _ ). +noun( 'constriction', 'constrictions', both, _ ). +noun( 'construction', 'constructions', both, _ ). +noun( 'constructor', 'constructors', count, _ ). +noun( 'consubstantiation', '-', mass, _ ). +noun( 'consul', 'consuls', count, _ ). +noun( 'consulate', 'consulates', count, _ ). +noun( 'consulship', 'consulships', count, _ ). +noun( 'consultant', 'consultants', count, _ ). +noun( 'consultation', 'consultations', both, _ ). +noun( 'consumer', 'consumers', count, _ ). +noun( 'consummation', 'consummations', both, _ ). +noun( 'consumption', '-', mass, _ ). +noun( 'consumptive', 'consumptives', count, _ ). +noun( 'cont', '-', proper, _ ). +noun( 'contact', 'contacts', both, _ ). +noun( 'contagion', 'contagions', both, _ ). +noun( 'container', 'containers', count, _ ). +noun( 'containment', '-', mass, _ ). +noun( 'contaminant', 'contaminants', count, _ ). +noun( 'contamination', 'contaminations', both, _ ). +noun( 'contemplation', '-', mass, _ ). +noun( 'contemporary', 'contemporaries', count, _ ). +noun( 'contempt', '-', mass, _ ). +noun( 'contender', 'contenders', count, _ ). +noun( 'content', 'contents', count, _ ). +noun( 'content', '-', mass, _ ). +noun( 'contention', 'contentions', both, _ ). +noun( 'contentment', '-', mass, _ ). +noun( 'contest', 'contests', count, _ ). +noun( 'contestant', 'contestants', count, _ ). +noun( 'context', 'contexts', both, _ ). +noun( 'contiguity', '-', mass, _ ). +noun( 'continence', '-', mass, _ ). +noun( 'continent', 'continents', count, _ ). +noun( 'contingency', 'contingencies', both, _ ). +noun( 'contingent', 'contingents', count, _ ). +noun( 'continuance', '-', count, _ ). +noun( 'continuation', 'continuations', both, _ ). +noun( 'continuity', '-', mass, _ ). +noun( 'contortion', 'contortions', both, _ ). +noun( 'contortionist', 'contortionists', count, _ ). +noun( 'contour', 'contours', count, _ ). +noun( 'contraband', '-', mass, _ ). +noun( 'contrabass', 'contrabasses', count, _ ). +noun( 'contraception', '-', mass, _ ). +noun( 'contraceptive', 'contraceptives', count, _ ). +noun( 'contract', 'contracts', both, _ ). +noun( 'contraction', 'contractions', both, _ ). +noun( 'contractor', 'contractors', count, _ ). +noun( 'contradiction', 'contradictions', both, _ ). +noun( 'contradistinction', 'contradistinctions', count, _ ). +noun( 'contralto', 'contraltos', count, _ ). +noun( 'contraption', 'contraptions', count, _ ). +noun( 'contrariety', 'contrarieties', both, _ ). +noun( 'contrariness', '-', mass, _ ). +noun( 'contrary', 'contraries', both, _ ). +noun( 'contrast', 'contrasts', both, _ ). +noun( 'contravention', 'contraventions', both, _ ). +noun( 'contretemps', 'contretemps', count, _ ). +noun( 'contribution', 'contributions', both, _ ). +noun( 'contributor', 'contributors', count, _ ). +noun( 'contrition', '-', mass, _ ). +noun( 'contrivance', 'contrivances', both, _ ). +noun( 'contriver', 'contrivers', count, _ ). +noun( 'control', 'controls', both, _ ). +noun( 'controller', 'controllers', count, _ ). +noun( 'controversialist', 'controversialists', count, _ ). +noun( 'controversy', 'controversies', both, _ ). +noun( 'contumacy', 'contumacies', both, _ ). +noun( 'contumely', 'contumelies', both, _ ). +noun( 'contusion', 'contusions', count, _ ). +noun( 'conundrum', 'conundrums', count, _ ). +noun( 'conurbation', 'conurbations', count, _ ). +noun( 'convalescence', '-', mass, _ ). +noun( 'convalescent', 'convalescents', count, _ ). +noun( 'convection', '-', mass, _ ). +noun( 'convector', 'convectors', count, _ ). +noun( 'convener', 'conveners', count, _ ). +noun( 'convenience', 'conveniences', both, _ ). +noun( 'convent', 'convents', count, _ ). +noun( 'conventicle', 'conventicles', count, _ ). +noun( 'convention', 'conventions', both, _ ). +noun( 'conventionality', 'conventionalities', both, _ ). +noun( 'convergence', 'convergences', count, _ ). +noun( 'conversation', 'conversations', both, _ ). +noun( 'conversationalist', 'conversationalists', count, _ ). +noun( 'converse', '-', both, _ ). +noun( 'conversion', 'conversions', both, _ ). +noun( 'convert', 'converts', count, _ ). +noun( 'converter', 'converters', count, _ ). +noun( 'convertibility', '-', mass, _ ). +noun( 'convertible', 'convertibles', count, _ ). +noun( 'convexity', '-', mass, _ ). +noun( 'conveyance', 'conveyances', both, _ ). +noun( 'conveyancer', 'conveyancers', count, _ ). +noun( 'conveyer', 'conveyers', count, _ ). +noun( 'conveyer-belt', 'conveyer-belts', count, _ ). +noun( 'conveyor', 'conveyors', count, _ ). +noun( 'convict', 'convicts', count, _ ). +noun( 'conviction', 'convictions', both, _ ). +noun( 'conviviality', 'convivialities', both, _ ). +noun( 'convocation', 'convocations', both, _ ). +noun( 'convolution', 'convolutions', count, _ ). +noun( 'convolvulus', 'convolvuluses', count, _ ). +noun( 'convoy', 'convoys', both, _ ). +noun( 'convulsion', 'convulsions', count, _ ). +noun( 'cony', 'conies', count, _ ). +noun( 'coo', 'coos', count, _ ). +noun( 'cook', 'cooks', count, _ ). +noun( 'cookbook', 'cookbooks', count, _ ). +noun( 'cooker', 'cookers', count, _ ). +noun( 'cookery', '-', mass, _ ). +noun( 'cookery-book', 'cookery-books', count, _ ). +noun( 'cookhouse', 'cookhouses', count, _ ). +noun( 'cookie', 'cookies', count, _ ). +noun( 'cooking', '-', mass, _ ). +noun( 'cooky', 'cookies', count, _ ). +noun( 'cool', '-', mass, _ ). +noun( 'coolant', 'coolants', both, _ ). +noun( 'cooler', 'coolers', count, _ ). +noun( 'coolie', 'coolies', count, _ ). +noun( 'cooling-tower', 'cooling-towers', count, _ ). +noun( 'coolness', '-', mass, _ ). +noun( 'coon', 'coons', count, _ ). +noun( 'coop', 'coops', count, _ ). +noun( 'cooper', 'coopers', count, _ ). +noun( 'cooperation', '-', mass, _ ). +noun( 'cooperative', 'cooperatives', count, _ ). +noun( 'cooperator', 'cooperators', count, _ ). +noun( 'coordinate', 'coordinates', count, _ ). +noun( 'coordination', 'coordinations', both, _ ). +noun( 'coordinator', 'coordinators', count, _ ). +noun( 'coot', 'coots', count, _ ). +noun( 'cop', 'cops', count, _ ). +noun( 'cop-out', 'cop-outs', count, _ ). +noun( 'copartner', 'copartners', count, _ ). +noun( 'copartnership', 'copartnerships', count, _ ). +noun( 'cope', 'copes', count, _ ). +noun( 'copeck', 'copecks', count, _ ). +noun( 'coping', 'copings', count, _ ). +noun( 'coping-stone', 'coping-stones', count, _ ). +noun( 'copper', 'coppers', both, _ ). +noun( 'copperhead', 'copperheads', count, _ ). +noun( 'copperplate', '-', mass, _ ). +noun( 'coppersmith', 'coppersmiths', count, _ ). +noun( 'coppice', 'coppices', count, _ ). +noun( 'copra', '-', mass, _ ). +noun( 'copse', 'copses', count, _ ). +noun( 'copula', 'copulas', count, _ ). +noun( 'copulation', 'copulations', count, _ ). +noun( 'copulative', 'copulatives', count, _ ). +noun( 'copy', 'copies', both, _ ). +noun( 'copybook', 'copybooks', count, _ ). +noun( 'copycat', 'copycats', count, _ ). +noun( 'copyhold', '-', mass, _ ). +noun( 'copyholder', 'copyholders', count, _ ). +noun( 'copyist', 'copyists', count, _ ). +noun( 'copyright', 'copyrights', both, _ ). +noun( 'copywriter', 'copywriters', count, _ ). +noun( 'coquetry', 'coquetries', both, _ ). +noun( 'coquette', 'coquettes', count, _ ). +noun( 'cor anglais', 'cor anglais', count, _ ). +noun( 'coracle', 'coracles', count, _ ). +noun( 'coral', 'corals', both, _ ). +noun( 'coral-reef', 'coral-reefs', count, _ ). +noun( 'corbel', 'corbels', count, _ ). +noun( 'cord', 'cords', both, _ ). +noun( 'cordage', '-', mass, _ ). +noun( 'cordial', 'cordials', both, _ ). +noun( 'cordiality', 'cordialities', both, _ ). +noun( 'cordite', '-', mass, _ ). +noun( 'cordon', 'cordons', count, _ ). +noun( 'corduroy', '-', mass, _ ). +noun( 'core', 'cores', count, _ ). +noun( 'coreligionist', 'coreligionists', count, _ ). +noun( 'corgi', 'corgis', count, _ ). +noun( 'cork', 'corks', both, _ ). +noun( 'corkage', '-', mass, _ ). +noun( 'corker', 'corkers', count, _ ). +noun( 'corkscrew', 'corkscrews', count, _ ). +noun( 'corm', 'corms', count, _ ). +noun( 'cormorant', 'cormorants', count, _ ). +noun( 'corn', 'corns', both, _ ). +noun( 'corn-exchange', 'corn-exchanges', count, _ ). +noun( 'corncob', 'corncobs', count, _ ). +noun( 'corncrake', 'corncrakes', count, _ ). +noun( 'cornea', 'corneas', count, _ ). +noun( 'cornelian', 'cornelians', count, _ ). +noun( 'corner', 'corners', count, _ ). +noun( 'corner-kick', 'corner-kicks', count, _ ). +noun( 'cornerstone', 'cornerstones', count, _ ). +noun( 'cornet', 'cornets', count, _ ). +noun( 'cornflake', 'cornflakes', count, _ ). +noun( 'cornflour', '-', mass, _ ). +noun( 'cornflower', 'cornflowers', count, _ ). +noun( 'cornice', 'cornices', count, _ ). +noun( 'cornpone', '-', mass, _ ). +noun( 'cornstarch', '-', mass, _ ). +noun( 'cornucopia', 'cornucopias', count, _ ). +noun( 'corolla', 'corollas', count, _ ). +noun( 'corollary', 'corollaries', count, _ ). +noun( 'corona', 'coronas', count, _ ). +noun( 'coronary', 'coronaries', count, _ ). +noun( 'coronation', 'coronations', count, _ ). +noun( 'coroner', 'coroners', count, _ ). +noun( 'coronet', 'coronets', count, _ ). +noun( 'corporal', 'corporals', count, _ ). +noun( 'corporation', 'corporations', count, _ ). +noun( 'corps', '-', count, _ ). +noun( 'corps de ballet', '-', count, _ ). +noun( 'corpse', 'corpses', count, _ ). +noun( 'corpulence', '-', mass, _ ). +noun( 'corpus', 'corpora', count, _ ). +noun( 'corpuscle', 'corpuscles', count, _ ). +noun( 'corral', 'corrals', count, _ ). +noun( 'correction', 'corrections', both, _ ). +noun( 'correctitude', '-', mass, _ ). +noun( 'corrective', 'correctives', count, _ ). +noun( 'correctness', '-', mass, _ ). +noun( 'correlation', 'correlations', count, _ ). +noun( 'correlative', 'correlatives', count, _ ). +noun( 'correspondence', 'correspondences', both, _ ). +noun( 'correspondent', 'correspondents', count, _ ). +noun( 'corridor', 'corridors', count, _ ). +noun( 'corrie', 'corries', count, _ ). +noun( 'corrigendum', 'corrigenda', count, _ ). +noun( 'corroboration', '-', mass, _ ). +noun( 'corrosion', '-', mass, _ ). +noun( 'corrosive', 'corrosives', count, _ ). +noun( 'corrugation', 'corrugations', both, _ ). +noun( 'corruptibility', '-', mass, _ ). +noun( 'corruption', '-', mass, _ ). +noun( 'corruptness', '-', mass, _ ). +noun( 'corsage', 'corsages', count, _ ). +noun( 'corsair', 'corsairs', count, _ ). +noun( 'corse', 'corses', count, _ ). +noun( 'corselet', 'corselets', count, _ ). +noun( 'corset', 'corsets', count, _ ). +noun( 'corslet', 'corslets', count, _ ). +noun( 'cort`ege', 'cort`eges', count, _ ). +noun( 'cortege', 'corteges', count, _ ). +noun( 'cortex', 'cortices', count, _ ). +noun( 'cortisone', '-', mass, _ ). +noun( 'corundum', '-', mass, _ ). +noun( 'coruscation', 'coruscations', count, _ ). +noun( 'corv_ee', 'corv_ees', count, _ ). +noun( 'corvette', 'corvettes', count, _ ). +noun( 'cos', 'cos', count, _ ). +noun( 'cosh', 'coshes', count, _ ). +noun( 'cosignatory', 'cosignatories', count, _ ). +noun( 'cosine', 'cosines', count, _ ). +noun( 'cosiness', '-', mass, _ ). +noun( 'cosmetic', 'cosmetics', count, _ ). +noun( 'cosmetician', 'cosmeticians', count, _ ). +noun( 'cosmogony', 'cosmogonies', count, _ ). +noun( 'cosmonaut', 'cosmonauts', count, _ ). +noun( 'cosmopolitan', 'cosmopolitans', count, _ ). +noun( 'cosmos', '-', count, _ ). +noun( 'cost', 'costs', both, _ ). +noun( 'costermonger', 'costermongers', count, _ ). +noun( 'costing', 'costings', both, _ ). +noun( 'costliness', '-', mass, _ ). +noun( 'costume', 'costumes', both, _ ). +noun( 'costumier', 'costumiers', count, _ ). +noun( 'cosy', 'cosies', count, _ ). +noun( 'cot', 'cots', count, _ ). +noun( 'cote', 'cotes', count, _ ). +noun( 'cotenant', 'cotenants', count, _ ). +noun( 'coterie', 'coteries', count, _ ). +noun( 'cotilion', 'cotilions', count, _ ). +noun( 'cotillion', 'cotillions', count, _ ). +noun( 'cottage', 'cottages', count, _ ). +noun( 'cottar', 'cottars', count, _ ). +noun( 'cotter', 'cotters', count, _ ). +noun( 'cotton', '-', mass, _ ). +noun( 'cotton-cake', '-', mass, _ ). +noun( 'cotton-plant', 'cotton-plants', count, _ ). +noun( 'cotton-wool', '-', mass, _ ). +noun( 'cottontail', 'cottontails', count, _ ). +noun( 'cotyledon', 'cotyledons', count, _ ). +noun( 'couch', 'couches', both, _ ). +noun( 'couch-grass', '-', mass, _ ). +noun( 'couchette', 'couchettes', count, _ ). +noun( 'cougar', 'cougars', count, _ ). +noun( 'cough', 'coughs', count, _ ). +noun( 'coulter', 'coulters', count, _ ). +noun( 'council', 'councils', count, _ ). +noun( 'council-board', 'council-boards', count, _ ). +noun( 'council-chamber', 'council-chambers', count, _ ). +noun( 'councillor', 'councillors', count, _ ). +noun( 'counsel', '-', mass, _ ). +noun( 'counsellor', 'counsellors', count, _ ). +noun( 'count', 'counts', both, _ ). +noun( 'countdown', 'countdowns', count, _ ). +noun( 'countenance', 'countenances', both, _ ). +noun( 'counter', 'counters', count, _ ). +noun( 'counter-example', 'counter-examples', count, _ ). +noun( 'counter-revolution', 'counter-revolutions', both, _ ). +noun( 'counter-revolutionary', 'counter-revolutionaries', count, _ ). +noun( 'counteraction', 'counteractions', count, _ ). +noun( 'counterattack', 'counterattacks', count, _ ). +noun( 'counterattraction', 'counterattractions', count, _ ). +noun( 'counterbalance', 'counterbalances', count, _ ). +noun( 'counterblast', 'counterblasts', count, _ ). +noun( 'counterclaim', 'counterclaims', count, _ ). +noun( 'counterespionage', '-', mass, _ ). +noun( 'counterfeit', 'counterfeits', count, _ ). +noun( 'counterfeiter', 'counterfeiters', count, _ ). +noun( 'counterfoil', 'counterfoils', count, _ ). +noun( 'counterintelligence', '-', mass, _ ). +noun( 'counterirritant', 'counterirritants', count, _ ). +noun( 'countermine', 'countermines', count, _ ). +noun( 'counteroffer', 'counteroffers', count, _ ). +noun( 'counterpane', 'counterpanes', count, _ ). +noun( 'counterpart', 'counterparts', count, _ ). +noun( 'counterplot', 'counterplots', count, _ ). +noun( 'counterpoint', 'counterpoints', both, _ ). +noun( 'counterpoise', 'counterpoises', both, _ ). +noun( 'countersign', 'countersigns', count, _ ). +noun( 'countertenor', 'countertenors', count, _ ). +noun( 'countess', 'countesses', count, _ ). +noun( 'counting-house', 'counting-houses', count, _ ). +noun( 'country', 'countries', both, _ ). +noun( 'country-house', 'country-houses', count, _ ). +noun( 'country-seat', 'country-seats', count, _ ). +noun( 'countryman', 'countrymen', count, _ ). +noun( 'countryside', '-', mass, _ ). +noun( 'countrywoman', 'countrywomen', count, _ ). +noun( 'county', 'counties', count, _ ). +noun( 'coup', 'coups', count, _ ). +noun( 'coup d\'etat', 'coups d\'etat', count, _ ). +noun( 'coup de grace', '-', count, _ ). +noun( 'coup_e', 'coup_es', count, _ ). +noun( 'couple', 'couples', count, _ ). +noun( 'couplet', 'couplets', count, _ ). +noun( 'coupling', 'couplings', both, _ ). +noun( 'coupon', 'coupons', count, _ ). +noun( 'courage', '-', mass, _ ). +noun( 'courgette', 'courgettes', count, _ ). +noun( 'courier', 'couriers', count, _ ). +noun( 'course', 'courses', both, _ ). +noun( 'courser', 'coursers', count, _ ). +noun( 'coursing', 'coursings', count, _ ). +noun( 'court', 'courts', both, _ ). +noun( 'court-card', 'court-cards', count, _ ). +noun( 'court-martial', 'courts-martial', count, _ ). +noun( 'courtesan', 'courtesans', count, _ ). +noun( 'courtesy', 'courtesies', both, _ ). +noun( 'courtier', 'courtiers', count, _ ). +noun( 'courtliness', '-', mass, _ ). +noun( 'courtroom', 'courtrooms', count, _ ). +noun( 'courtship', 'courtships', both, _ ). +noun( 'courtyard', 'courtyards', count, _ ). +noun( 'cousin', 'cousins', count, _ ). +noun( 'cove', 'coves', count, _ ). +noun( 'coven', 'covens', count, _ ). +noun( 'covenant', 'covenants', count, _ ). +noun( 'cover', 'covers', both, _ ). +noun( 'cover-up', 'cover-ups', count, _ ). +noun( 'coverage', '-', mass, _ ). +noun( 'covering', 'coverings', count, _ ). +noun( 'coverlet', 'coverlets', count, _ ). +noun( 'covert', 'coverts', count, _ ). +noun( 'covetousness', '-', mass, _ ). +noun( 'covey', 'coveys', count, _ ). +noun( 'cow', 'cows', count, _ ). +noun( 'coward', 'cowards', count, _ ). +noun( 'cowardice', '-', mass, _ ). +noun( 'cowbell', 'cowbells', count, _ ). +noun( 'cowboy', 'cowboys', count, _ ). +noun( 'cowcatcher', 'cowcatchers', count, _ ). +noun( 'cowhand', 'cowhands', count, _ ). +noun( 'cowherd', 'cowherds', count, _ ). +noun( 'cowhide', 'cowhides', both, _ ). +noun( 'cowhouse', 'cowhouses', count, _ ). +noun( 'cowl', 'cowls', count, _ ). +noun( 'cowling', 'cowlings', count, _ ). +noun( 'cowman', 'cowmen', count, _ ). +noun( 'cowpox', 'cowpoxes', count, _ ). +noun( 'cowrie', 'cowries', count, _ ). +noun( 'cowshed', 'cowsheds', count, _ ). +noun( 'cowskin', 'cowskins', count, _ ). +noun( 'cowslip', 'cowslips', count, _ ). +noun( 'cox', 'coxes', count, _ ). +noun( 'coxcomb', 'coxcombs', count, _ ). +noun( 'coxswain', 'coxswains', count, _ ). +noun( 'coyness', '-', mass, _ ). +noun( 'coyote', 'coyotes', count, _ ). +noun( 'coypu', 'coypus', count, _ ). +noun( 'cp', '-', proper, _ ). +noun( 'cr^epe', '-', mass, _ ). +noun( 'cr`eche', 'cr`eches', count, _ ). +noun( 'cr`eme de menthe', '-', mass, _ ). +noun( 'crab', 'crabs', both, _ ). +noun( 'crab-apple', 'crab-apples', count, _ ). +noun( 'crack', 'cracks', count, _ ). +noun( 'crack-down', 'crack-downs', count, _ ). +noun( 'crack-up', 'crack-ups', count, _ ). +noun( 'cracker', 'crackers', count, _ ). +noun( 'crackle', '-', mass, _ ). +noun( 'crackle-china', '-', mass, _ ). +noun( 'crackleware', '-', mass, _ ). +noun( 'crackling', '-', mass, _ ). +noun( 'crackpot', 'crackpots', count, _ ). +noun( 'cracksman', 'cracksmen', count, _ ). +noun( 'cradle', 'cradles', count, _ ). +noun( 'craft', 'crafts', both, _ ). +noun( 'craftiness', '-', mass, _ ). +noun( 'craftsman', 'craftsmen', count, _ ). +noun( 'craftsmanship', '-', mass, _ ). +noun( 'crag', 'crags', count, _ ). +noun( 'cragsman', 'cragsmen', count, _ ). +noun( 'crake', 'crakes', count, _ ). +noun( 'crammer', 'crammers', count, _ ). +noun( 'cramp', 'cramps', both, _ ). +noun( 'cramp-iron', 'cramp-irons', count, _ ). +noun( 'crampon', 'crampons', count, _ ). +noun( 'cranberry', 'cranberries', count, _ ). +noun( 'crane', 'cranes', count, _ ). +noun( 'crane-fly', 'crane-flies', count, _ ). +noun( 'cranium', 'craniums', count, _ ). +noun( 'crank', 'cranks', count, _ ). +noun( 'crankshaft', 'crankshafts', count, _ ). +noun( 'cranny', 'crannies', count, _ ). +noun( 'crap', 'craps', both, _ ). +noun( 'crap-shooting', 'crap-shootings', count, _ ). +noun( 'crape', '-', mass, _ ). +noun( 'craps', 'craps', mass, _ ). +noun( 'crash', 'crashes', both, _ ). +noun( 'crash-dive', 'crash-dives', count, _ ). +noun( 'crash-helmet', 'crash-helmets', count, _ ). +noun( 'crash-landing', 'crash-landings', count, _ ). +noun( 'crate', 'crates', count, _ ). +noun( 'crater', 'craters', count, _ ). +noun( 'cravat', 'cravats', count, _ ). +noun( 'craven', 'cravens', count, _ ). +noun( 'craving', 'cravings', count, _ ). +noun( 'crawfish', 'crawfishes', count, _ ). +noun( 'crawl', '-', count, _ ). +noun( 'crawler', 'crawlers', count, _ ). +noun( 'crayfish', 'crayfishes', count, _ ). +noun( 'crayon', 'crayons', count, _ ). +noun( 'craze', 'crazes', count, _ ). +noun( 'craziness', '-', mass, _ ). +noun( 'creak', 'creaks', count, _ ). +noun( 'cream', 'creams', both, _ ). +noun( 'creamery', 'creameries', count, _ ). +noun( 'crease', 'creases', count, _ ). +noun( 'creation', 'creations', both, _ ). +noun( 'creativeness', '-', mass, _ ). +noun( 'creator', 'creators', count, _ ). +noun( 'creature', 'creatures', count, _ ). +noun( 'credence', '-', mass, _ ). +noun( 'credibility', '-', mass, _ ). +noun( 'credit', 'credits', both, _ ). +noun( 'credit-side', 'credit-sides', count, _ ). +noun( 'credit-worthiness', '-', mass, _ ). +noun( 'creditor', 'creditors', count, _ ). +noun( 'credo', 'credos', count, _ ). +noun( 'credulity', 'credulities', both, _ ). +noun( 'creed', 'creeds', count, _ ). +noun( 'creek', 'creeks', count, _ ). +noun( 'creel', 'creels', count, _ ). +noun( 'creep', 'creeps', count, _ ). +noun( 'creeper', 'creepers', count, _ ). +noun( 'cremation', 'cremations', both, _ ). +noun( 'crematorium', 'crematoriums', count, _ ). +noun( 'crematory', 'crematories', count, _ ). +noun( 'creosote', '-', mass, _ ). +noun( 'crepe', '-', mass, _ ). +noun( 'crepitation', 'crepitations', count, _ ). +noun( 'crescendo', 'crescendos', count, _ ). +noun( 'crescent', 'crescents', count, _ ). +noun( 'cress', '-', mass, _ ). +noun( 'crest', 'crests', count, _ ). +noun( 'cretin', 'cretins', count, _ ). +noun( 'cretonne', '-', mass, _ ). +noun( 'crevasse', 'crevasses', count, _ ). +noun( 'crevice', 'crevices', count, _ ). +noun( 'crew', 'crews', count, _ ). +noun( 'crew-cut', 'crew-cuts', count, _ ). +noun( 'crew-neck', 'crew-necks', count, _ ). +noun( 'crib', 'cribs', count, _ ). +noun( 'cribbage', '-', mass, _ ). +noun( 'cribbage-board', 'cribbage-boards', count, _ ). +noun( 'crick', 'cricks', count, _ ). +noun( 'cricket', 'crickets', both, _ ). +noun( 'cricketer', 'cricketers', count, _ ). +noun( 'crier', 'criers', count, _ ). +noun( 'crime', 'crimes', both, _ ). +noun( 'criminal', 'criminals', count, _ ). +noun( 'criminology', '-', mass, _ ). +noun( 'crimson', 'crimsons', both, _ ). +noun( 'crinkle', 'crinkles', count, _ ). +noun( 'crinoline', 'crinolines', both, _ ). +noun( 'cripple', 'cripples', count, _ ). +noun( 'crisis', 'crises', count, _ ). +noun( 'crisp', 'crisps', count, _ ). +noun( 'crispness', '-', mass, _ ). +noun( 'criterion', 'criterions', count, _ ). +noun( 'critic', 'critics', count, _ ). +noun( 'criticism', 'criticisms', both, _ ). +noun( 'critique', 'critiques', count, _ ). +noun( 'croak', 'croaks', count, _ ). +noun( 'crochet', '-', mass, _ ). +noun( 'crochet-hook', 'crochet-hooks', count, _ ). +noun( 'crock', 'crocks', count, _ ). +noun( 'crockery', '-', mass, _ ). +noun( 'crocodile', 'crocodiles', count, _ ). +noun( 'crocus', 'crocuses', count, _ ). +noun( 'croft', 'crofts', count, _ ). +noun( 'crofter', 'crofters', count, _ ). +noun( 'cromlech', 'cromlechs', count, _ ). +noun( 'crone', 'crones', count, _ ). +noun( 'crony', 'cronies', count, _ ). +noun( 'crook', 'crooks', count, _ ). +noun( 'crookedness', '-', mass, _ ). +noun( 'crooner', 'crooners', count, _ ). +noun( 'crop', 'crops', count, _ ). +noun( 'crop-dusting', '-', mass, _ ). +noun( 'cropper', 'croppers', count, _ ). +noun( 'croquet', '-', mass, _ ). +noun( 'croquette', 'croquettes', count, _ ). +noun( 'crore', 'crores', count, _ ). +noun( 'crosier', 'crosiers', count, _ ). +noun( 'cross', 'crosses', count, _ ). +noun( 'cross-bench', 'cross-benches', count, _ ). +noun( 'cross-bencher', 'cross-benchers', count, _ ). +noun( 'cross-division', 'cross-divisions', both, _ ). +noun( 'cross-examination', 'cross-examinations', count, _ ). +noun( 'cross-examiner', 'cross-examiners', count, _ ). +noun( 'cross-fertilization', 'cross-fertilizations', count, _ ). +noun( 'cross-heading', 'cross-headings', count, _ ). +noun( 'cross-index', 'cross-indexes', count, _ ). +noun( 'cross-reference', 'cross-references', count, _ ). +noun( 'cross-section', 'cross-sections', count, _ ). +noun( 'cross-stitch', 'cross-stitches', both, _ ). +noun( 'crossbar', 'crossbars', count, _ ). +noun( 'crossbeam', 'crossbeams', count, _ ). +noun( 'crossbow', 'crossbows', count, _ ). +noun( 'crossbreed', 'crossbreeds', count, _ ). +noun( 'crosscheck', 'crosschecks', count, _ ). +noun( 'crosscurrent', 'crosscurrents', count, _ ). +noun( 'crosscut', 'crosscuts', count, _ ). +noun( 'crosse', 'crosses', count, _ ). +noun( 'crossfire', 'crossfires', both, _ ). +noun( 'crossing', 'crossings', both, _ ). +noun( 'crossness', '-', mass, _ ). +noun( 'crosspatch', 'crosspatches', count, _ ). +noun( 'crosspiece', 'crosspieces', count, _ ). +noun( 'crossroad', 'crossroads', count, _ ). +noun( 'crosstalk', '-', mass, _ ). +noun( 'crosswalk', 'crosswalks', count, _ ). +noun( 'crosswind', 'crosswinds', count, _ ). +noun( 'crossword', 'crosswords', count, _ ). +noun( 'crotch', 'crotches', count, _ ). +noun( 'crotchet', 'crotchets', count, _ ). +noun( 'crouch', 'crouches', count, _ ). +noun( 'croup', 'croups', both, _ ). +noun( 'croupier', 'croupiers', count, _ ). +noun( 'crow', 'crows', count, _ ). +noun( 'crow\'s-nest', 'crow\'s-nests', count, _ ). +noun( 'crowbar', 'crowbars', count, _ ). +noun( 'crowd', 'crowds', count, _ ). +noun( 'crown', 'crowns', count, _ ). +noun( 'crown-land', 'crown-lands', count, _ ). +noun( 'crozier', 'croziers', count, _ ). +noun( 'crucible', 'crucibles', count, _ ). +noun( 'crucifix', 'crucifixes', count, _ ). +noun( 'crucifixion', 'crucifixions', both, _ ). +noun( 'crudeness', '-', mass, _ ). +noun( 'crudity', 'crudities', both, _ ). +noun( 'cruelty', 'cruelties', both, _ ). +noun( 'cruet', 'cruets', count, _ ). +noun( 'cruet-stand', 'cruet-stands', count, _ ). +noun( 'cruise', 'cruises', count, _ ). +noun( 'cruiser', 'cruisers', count, _ ). +noun( 'crumb', 'crumbs', both, _ ). +noun( 'crumpet', 'crumpets', count, _ ). +noun( 'crunch', 'crunches', count, _ ). +noun( 'crupper', 'cruppers', count, _ ). +noun( 'crusade', 'crusades', count, _ ). +noun( 'crusader', 'crusaders', count, _ ). +noun( 'cruse', 'cruses', count, _ ). +noun( 'crush', '-', mass, _ ). +noun( 'crust', 'crusts', both, _ ). +noun( 'crustacean', 'crustaceans', count, _ ). +noun( 'crutch', 'crutches', count, _ ). +noun( 'crux', 'cruxes', count, _ ). +noun( 'cruzeiro', 'cruzeiros', count, _ ). +noun( 'cry', 'cries', count, _ ). +noun( 'crybaby', 'crybabies', count, _ ). +noun( 'crypt', 'crypts', count, _ ). +noun( 'cryptogram', 'cryptograms', count, _ ). +noun( 'crystal', 'crystals', both, _ ). +noun( 'crystal-gazing', '-', mass, _ ). +noun( 'crystallization', 'crystallizations', both, _ ). +noun( 'crystallography', '-', mass, _ ). +noun( 'cub', 'cubs', count, _ ). +noun( 'cubbyhole', 'cubbyholes', count, _ ). +noun( 'cube', 'cubes', count, _ ). +noun( 'cubicle', 'cubicles', count, _ ). +noun( 'cubism', '-', mass, _ ). +noun( 'cubist', 'cubists', count, _ ). +noun( 'cubit', 'cubits', count, _ ). +noun( 'cuckold', 'cuckolds', count, _ ). +noun( 'cuckoo', 'cuckoos', count, _ ). +noun( 'cuckoo-clock', 'cuckoo-clocks', count, _ ). +noun( 'cucumber', 'cucumbers', both, _ ). +noun( 'cud', '-', mass, _ ). +noun( 'cuddle', 'cuddles', count, _ ). +noun( 'cudgel', 'cudgels', count, _ ). +noun( 'cue', 'cues', count, _ ). +noun( 'cuff', 'cuffs', count, _ ). +noun( 'cuirass', 'cuirasses', count, _ ). +noun( 'cuirassier', 'cuirassiers', count, _ ). +noun( 'cuisine', '-', mass, _ ). +noun( 'cul-de-sac', 'cul-de-sacs', count, _ ). +noun( 'cull', 'culls', count, _ ). +noun( 'cullender', 'cullenders', count, _ ). +noun( 'culmination', 'culminations', count, _ ). +noun( 'culpability', '-', mass, _ ). +noun( 'culprit', 'culprits', count, _ ). +noun( 'cult', 'cults', count, _ ). +noun( 'cultivation', '-', mass, _ ). +noun( 'cultivator', 'cultivators', count, _ ). +noun( 'culture', 'cultures', both, _ ). +noun( 'culvert', 'culverts', count, _ ). +noun( 'cummerbund', 'cummerbunds', count, _ ). +noun( 'cumulus', 'cumuli', count, _ ). +noun( 'cunning', '-', mass, _ ). +noun( 'cunt', 'cunts', count, _ ). +noun( 'cup', 'cups', count, _ ). +noun( 'cup-bearer', 'cup-bearers', count, _ ). +noun( 'cup-final', 'cup-finals', count, _ ). +noun( 'cup-tie', 'cup-ties', count, _ ). +noun( 'cupboard', 'cupboards', count, _ ). +noun( 'cupboard-love', '-', mass, _ ). +noun( 'cupful', 'cupfuls', count, _ ). +noun( 'cupidity', '-', mass, _ ). +noun( 'cupola', 'cupolas', count, _ ). +noun( 'cuppa', 'cuppas', count, _ ). +noun( 'cupping', '-', mass, _ ). +noun( 'cupro-nickel', '-', mass, _ ). +noun( 'cur', 'curs', count, _ ). +noun( 'cur_e', 'cur_es', count, _ ). +noun( 'cura