OSDN Git Service

改行コードをLFに統一。
[fswiki/fswiki.git] / lib / TeX / Hyphen.pm
index 44b2670..e62c414 100644 (file)
-package TeX::Hyphen;\r
-\r
-=head1 NAME\r
-\r
-TeX::Hyphen -- hyphenate words using TeX's patterns\r
-\r
-=head1 SYNOPSIS\r
-\r
-       use TeX::Hyphen;\r
-       my $hyp = new TeX::Hyphen 'file' => 'hyphen.tex',\r
-               'style' => 'czech', leftmin => 2,\r
-               rightmin => 2;\r
-\r
-       # my $hyp = new TeX::Hyphen "hyphen.tex";\r
-\r
-       my $word = "representation";\r
-       my @points = $hyp->hyphenate($word);\r
-       print $hyp->visualize($word), "\n";\r
-\r
-=head1 DESCRIPTION\r
-\r
-Constructor new() creates a new Hyphen object and loads the file with\r
-patterns into memory. Then you can ask it for hyphenation of a word by\r
-calling a method of this object. If no file is specified, the default\r
-Donald E. Knuth's F<hyphen.tex>, that is included in this module, is\r
-used instead.\r
-\r
-=head2 Arguments to constructor\r
-\r
-You can pass arguments to the new() call as hash, possible options are\r
-\r
-=over 4\r
-\r
-=item file\r
-\r
-Name of the file with the patters. It will be loaded and the resulting\r
-object will be able to hyphenate according to patterns in that file.\r
-\r
-For convenience and backward compatibility, the file name can also be\r
-specified as the first (odd) parameter to new().\r
-\r
-=item style\r
-\r
-Various languages use special shortcuts to specify the patterns.\r
-Instead of doing the full TeX expansion, we use Perl code to parse the\r
-patterns. The style option loads TeX::Hyphen::name_of_the_style module\r
-and uses the parsing functions found in it.\r
-\r
-Currently, the default czech (which also works for English alright)\r
-and german are available. See the TeX::Hyphen::czech man page for more\r
-information, especially if you want to support other\r
-languages/styles.\r
-\r
-=item leftmin\r
-\r
-The minimum starting substring which will not be hyphenated. This\r
-overrides the default specified in the style file.\r
-\r
-=item rightmin\r
-\r
-The minimum ending substring which will not be hyphenated. This\r
-overrides the default specified in the style file.\r
-\r
-=back\r
-\r
-=head2 Methods that are supported\r
-\r
-Method hyphenate() returns list of places where the word can be\r
-divided, so\r
-\r
-       $hyp->visualize('representation')\r
-\r
-returns list (3, 5, 8, 10).\r
-\r
-Method visualize() can be used to show these points, so\r
-\r
-       $hyp->visualize('representation')\r
-       \r
-should return C<rep-re-sen-ta-tion>, at least for English patterns.\r
-\r
-Variables I<$TeX::Hyphen::LEFTMIN> and I<$TeX::Hyphen::RIGHTMIN> can\r
-be used to restrict minimal starting and ending substring where it is\r
-not possible to hyphenate. They both default to 2 but should be\r
-changed to match the paratemers used to generate the patterns.\r
-\r
-Variable I<$TeX::Hyphen::DEBUG> can be set to see some statistics and\r
-processing.\r
-\r
-The file with hyphenation patterns may contain C<\'> and C<\v> accents,\r
-used in the Czech (and other) languages.\r
-\r
-=cut\r
-\r
-use strict;\r
-use vars qw( $VERSION $DEBUG $LEFTMIN $RIGHTMIN $errstr );\r
-\r
-$VERSION = '0.140';\r
-sub Version () { $VERSION; }\r
-\r
-$DEBUG ||= 0;\r
-\r
-# To protect beginning and end of the word from hyphenation\r
-$LEFTMIN = 2;\r
-$RIGHTMIN = 2;\r
-\r
-my (@DATA, $DATA_LOADED);\r
-\r
-# #############################################################\r
-# Constructor. Parameter specifies file with patterns.\r
-# File is searched for \patterns{ ... } and \hyphenation{ ... }\r
-# sections and these are used.\r
-#\r
-sub new {\r
-       my $class = shift;\r
-       my ($file, %opts);\r
-       if (scalar(@_) % 2) {\r
-               $file = shift;\r
-               %opts = @_;\r
-       } else {\r
-               %opts = @_;\r
-               $file = $opts{'file'};\r
-       }\r
-       if (not defined $file) {\r
-               if (not defined $DATA_LOADED) {\r
-                       @DATA = <DATA>;\r
-                       $DATA_LOADED = 1;\r
-               }\r
-       } else {\r
-               open FILE, $file or do {\r
-                       $errstr = "Error opening file `$file': $!";\r
-                       return;\r
-               };\r
-       }\r
-       my $self = {};\r
-       bless $self, $class;\r
-\r
-       local ($/) = "\n";\r
-       my ($tag, $value);\r
-       my $hyphen = {};\r
-       my $beginhyphen = {};\r
-       my $endhyphen = {};\r
-       my $bothhyphen = {};\r
-       my $exception = {};\r
-\r
-       my ($process_patterns, $process_hyphenation);\r
-       my ($leftmin, $rightmin) = ($LEFTMIN, $RIGHTMIN);\r
-       if (not defined $opts{'style'}) {\r
-               $opts{'style'} = 'czech';       # for backward compatibility\r
-       }\r
-       if (defined $opts{'style'}) {\r
-               eval qq!use ${class}::$opts{'style'}!;\r
-               if (not $@) {\r
-                       eval "\$process_patterns = \\&${class}::$opts{'style'}::process_patterns";\r
-                       eval "\$process_hyphenation = \\&${class}::$opts{'style'}::process_hyphenation";\r
-                       eval "\$leftmin = \$${class}::$opts{'style'}::LEFTMIN";\r
-                       eval "\$rightmin = \$${class}::$opts{'style'}::RIGHTMIN";\r
-               } else {\r
-                       $errstr = "Error loading style module $class::$opts{'style'}: $@";\r
-                       return;\r
-               }\r
-       }\r
-       $leftmin = $opts{leftmin} if exists $opts{leftmin};\r
-       $rightmin = $opts{rightmin} if exists $opts{rightmin};\r
-\r
-       my $i = 0;\r
-       while ((defined $file and defined($_ = <FILE>))\r
-               or (not defined $file and defined($_ = $DATA[$i]))) {\r
-               $i++;\r
-               s/\%.*$//;                      # comment out\r
-               next if 1 .. /\\patterns{/;     # find the \patterns section\r
-               \r
-               chomp;\r
-\r
-               last unless\r
-                       $process_patterns->($_, $bothhyphen, $beginhyphen,\r
-                       $endhyphen, $hyphen);\r
-       }\r
-       my $tell = $i + 1;\r
-       while ((defined $file and defined($_ = <FILE>))\r
-               or (not defined $file and defined($_ = $DATA[$i]))) {\r
-               $i++;\r
-               next if (( $i == $tell) .. /\\hyphenation{/);\r
-\r
-               chomp;\r
-\r
-               last unless $process_hyphenation->($_, $exception);\r
-       }\r
-       close FILE if not defined $file;\r
-       $self->{hyphen} = $hyphen;\r
-       $self->{begin} = $beginhyphen;\r
-       $self->{end} = $endhyphen;\r
-       $self->{both} = $bothhyphen;\r
-       $self->{exception} = $exception;\r
-       print STDERR 'Statistics for ', (defined $file ? $file : 'hyphen.tex'),\r
-               ': all ' , scalar %$hyphen,\r
-               ' (', scalar keys %$hyphen,\r
-               '), exception ', scalar %$exception,\r
-               ' (', scalar keys %$exception,\r
-               "),\n\tbegin ", scalar %$beginhyphen,\r
-               ' (', scalar keys %$beginhyphen,\r
-               '), end ', scalar %$endhyphen,\r
-               ' (', scalar keys %$endhyphen,\r
-               '), both ', scalar %$bothhyphen,\r
-               ' (', scalar keys %$bothhyphen, ")\n" if $DEBUG;\r
-       \r
-       $self->{exact} = { %$exception };\r
-       $self->{leftmin} = $leftmin;\r
-       $self->{rightmin} = $rightmin;\r
-       $self;\r
-}\r
-\r
-# ############################################\r
-# For given word finds places for hyphenation.\r
-# Returns an array specifying the places.\r
-#\r
-sub hyphenate {\r
-       my ($self, $word) = (shift, shift);\r
-\r
-       print STDERR "Hyphenate `$word'\n" if $DEBUG;\r
-       \r
-       my $exact = $self->{exact};\r
-       if (defined(my $res = $exact->{$word})) {\r
-               print STDERR "Exact match $res\n" if $DEBUG;\r
-               return $self->make_result_list($res);\r
-       }\r
-\r
-       my $hyphen = $self->{hyphen};\r
-       my $beginhyphen = $self->{begin};\r
-       my $endhyphen = $self->{end};\r
-       my $bothhyphen = $self->{both};\r
-\r
-       my $totallength = length $word;\r
-       my @result = (0) x ($totallength + 1);\r
-\r
-       # walk the word\r
-       my $rightstop = $totallength - $RIGHTMIN;\r
-       my $pos;\r
-       for ($pos = 0; $pos <= $rightstop; $pos++) {\r
-                       # length of the rest of the word\r
-               my $restlength = $totallength - $pos;\r
-                       # length of a substring\r
-               my $length;\r
-               for ($length = 1; $length <= $restlength; $length++) {\r
-                       my $substr = substr $word, $pos, $length;\r
-                       my $value;\r
-                       my $j;\r
-                       my $letter;\r
-                       if (defined($value = $hyphen->{$substr})) {\r
-                               $j = $pos;\r
-                               print STDERR "$j: $substr: $value\n" if $DEBUG > 2;\r
-                               while ($value =~ /(.)/gs) {\r
-                                       $result[$j] = $1 if ($1 > $result[$j]);\r
-                                       $j++;\r
-                               }\r
-                       }\r
-                       if (($pos == 0) and\r
-                               defined($value = $beginhyphen->{$substr})) {\r
-                               $j = 0;\r
-                               print STDERR "$j: $substr: $value\n" if $DEBUG > 2;\r
-                               while ($value =~ /(.)/gs) {\r
-                                       $result[$j] = $1 if ($1 > $result[$j]);\r
-                                       $j++;\r
-                               }\r
-                       }\r
-                       if (($restlength == $length) and\r
-                               defined($value = $endhyphen->{$substr})) {\r
-                               $j = $pos;\r
-                               print STDERR "$j: $substr: $value\n" if $DEBUG > 2;\r
-                               while ($value =~ /(.)/gs) {\r
-                                       $result[$j] = $1 if ($1 > $result[$j]);\r
-                                       $j++;\r
-                               }\r
-                       }\r
-               }\r
-       }\r
-       my $value;\r
-       my $letter;\r
-       if (defined($value = $bothhyphen->{$word})) {\r
-               my $j = 0;\r
-               print STDERR "$j: $word: $value\n" if $DEBUG > 2;\r
-               while ($value =~ /(.)/gs) {\r
-                       $result[$j] = $1 if ($1 > $result[$j]);\r
-                       $j++;\r
-               }\r
-       }\r
-\r
-       my $result = join '', @result;\r
-       ### substr($result, 0, $self->{leftmin} + 1) = '0' x ($self->{leftmin} + 1);\r
-       substr($result, 0, $self->{leftmin}) = '0' x $self->{leftmin};\r
-       substr($result, -$self->{rightmin}) = '0' x $self->{rightmin};\r
-\r
-       print STDERR "Result: $result\n" if $DEBUG;\r
-       return $self->make_result_list($result);\r
-}\r
-\r
-# ####################\r
-#\r
-#\r
-sub make_result_list {\r
-       my ($self, $result) = @_;\r
-       my @result = ();\r
-       my $i = 0;\r
-       while ($result =~ /./g) {\r
-               push @result, $i if (int($&) % 2);\r
-               $i++;\r
-       }\r
-       @result;\r
-}\r
-\r
-# #########################################\r
-# For a word show the result of hyphenation\r
-#\r
-sub visualize {\r
-       my ($self, $word) = (shift, shift);\r
-       my $number = 0;\r
-       my $pos;\r
-       for $pos ($self->hyphenate($word)) {\r
-               substr($word, $pos + $number, 0) = "-";\r
-               $number++;\r
-       }\r
-       $word;\r
-}\r
-\r
-=head1 CHANGES\r
-\r
-=over\r
-\r
-=item 0.110 Tue Dec 11 14:26:15 MET 2001\r
-\r
-Support for more languages made modular, code for German parsing\r
-provided by Slaven Rezic.\r
-\r
-=item 0.101 Wed Nov  3 16:06:02 MET 1999\r
-\r
-Parsing of patterns extended to allow other styles as well -- Spanish\r
-pattern file provided by Adrian Perez Jorge.\r
-\r
-=item 0.10 Fri Dec 11 10:58:01 MET 1998\r
-\r
-Bug fixes concering LEFTMIN and RIGHTMIN values and use of exceptions\r
-(thanks go to Vladimir Volovich).\r
-\r
-=item 0.06 Mon Jul 21 18:53:26 MET DST 1997\r
-\r
-Exception table handling added -- error spotted by Jon Orwant.\r
-\r
-=item 0.05 Wed Jul  9 14:49:42 MET DST 1997\r
-\r
-Added the default F<hyphen.tex> into the module and possibility to\r
-call the constructior without argument to get this default pattern\r
-file.\r
-\r
-=item 0.04 Wed Apr  9 15:41:32 MET DST 1997\r
-\r
-Hash lookup made faster.\r
-\r
-Method TeX::Hyphen::visualize() only takes one argument, it calls\r
-hyphenate().\r
-\r
-=item 0.03 Sun Feb 16 13:55:26 MET 1997\r
-\r
-Hash lookup made faster.\r
-\r
-Original name B<Hyphen> chaged to B<TeX::Hyphen>.\r
-\r
-=back\r
-\r
-=head1 VERSION\r
-\r
-0.140\r
-\r
-=head1 SEE ALSO\r
-\r
-perl(1), TeX::Hyphen::czech.\r
-\r
-=head1 AUTHOR\r
-\r
-(c) 1997--2002 Jan Pazdziora, adelton@fi.muni.cz\r
-at Faculty of Informatics, Masaryk University, Brno\r
-\r
-=cut\r
-\r
-1;\r
-\r
-__DATA__\r
-% The Plain TeX hyphenation tables [NOT TO BE CHANGED IN ANY WAY!]\r
-\patterns{ % just type <return> if you're not using INITEX\r
-.ach4\r
-.ad4der\r
-.af1t\r
-.al3t\r
-.am5at\r
-.an5c\r
-.ang4\r
-.ani5m\r
-.ant4\r
-.an3te\r
-.anti5s\r
-.ar5s\r
-.ar4tie\r
-.ar4ty\r
-.as3c\r
-.as1p\r
-.as1s\r
-.aster5\r
-.atom5\r
-.au1d\r
-.av4i\r
-.awn4\r
-.ba4g\r
-.ba5na\r
-.bas4e\r
-.ber4\r
-.be5ra\r
-.be3sm\r
-.be5sto\r
-.bri2\r
-.but4ti\r
-.cam4pe\r
-.can5c\r
-.capa5b\r
-.car5ol\r
-.ca4t\r
-.ce4la\r
-.ch4\r
-.chill5i\r
-.ci2\r
-.cit5r\r
-.co3e\r
-.co4r\r
-.cor5ner\r
-.de4moi\r
-.de3o\r
-.de3ra\r
-.de3ri\r
-.des4c\r
-.dictio5\r
-.do4t\r
-.du4c\r
-.dumb5\r
-.earth5\r
-.eas3i\r
-.eb4\r
-.eer4\r
-.eg2\r
-.el5d\r
-.el3em\r
-.enam3\r
-.en3g\r
-.en3s\r
-.eq5ui5t\r
-.er4ri\r
-.es3\r
-.eu3\r
-.eye5\r
-.fes3\r
-.for5mer\r
-.ga2\r
-.ge2\r
-.gen3t4\r
-.ge5og\r
-.gi5a\r
-.gi4b\r
-.go4r\r
-.hand5i\r
-.han5k\r
-.he2\r
-.hero5i\r
-.hes3\r
-.het3\r
-.hi3b\r
-.hi3er\r
-.hon5ey\r
-.hon3o\r
-.hov5\r
-.id4l\r
-.idol3\r
-.im3m\r
-.im5pin\r
-.in1\r
-.in3ci\r
-.ine2\r
-.in2k\r
-.in3s\r
-.ir5r\r
-.is4i\r
-.ju3r\r
-.la4cy\r
-.la4m\r
-.lat5er\r
-.lath5\r
-.le2\r
-.leg5e\r
-.len4\r
-.lep5\r
-.lev1\r
-.li4g\r
-.lig5a\r
-.li2n\r
-.li3o\r
-.li4t\r
-.mag5a5\r
-.mal5o\r
-.man5a\r
-.mar5ti\r
-.me2\r
-.mer3c\r
-.me5ter\r
-.mis1\r
-.mist5i\r
-.mon3e\r
-.mo3ro\r
-.mu5ta\r
-.muta5b\r
-.ni4c\r
-.od2\r
-.odd5\r
-.of5te\r
-.or5ato\r
-.or3c\r
-.or1d\r
-.or3t\r
-.os3\r
-.os4tl\r
-.oth3\r
-.out3\r
-.ped5al\r
-.pe5te\r
-.pe5tit\r
-.pi4e\r
-.pio5n\r
-.pi2t\r
-.pre3m\r
-.ra4c\r
-.ran4t\r
-.ratio5na\r
-.ree2\r
-.re5mit\r
-.res2\r
-.re5stat\r
-.ri4g\r
-.rit5u\r
-.ro4q\r
-.ros5t\r
-.row5d\r
-.ru4d\r
-.sci3e\r
-.self5\r
-.sell5\r
-.se2n\r
-.se5rie\r
-.sh2\r
-.si2\r
-.sing4\r
-.st4\r
-.sta5bl\r
-.sy2\r
-.ta4\r
-.te4\r
-.ten5an\r
-.th2\r
-.ti2\r
-.til4\r
-.tim5o5\r
-.ting4\r
-.tin5k\r
-.ton4a\r
-.to4p\r
-.top5i\r
-.tou5s\r
-.trib5ut\r
-.un1a\r
-.un3ce\r
-.under5\r
-.un1e\r
-.un5k\r
-.un5o\r
-.un3u\r
-.up3\r
-.ure3\r
-.us5a\r
-.ven4de\r
-.ve5ra\r
-.wil5i\r
-.ye4\r
-4ab.\r
-a5bal\r
-a5ban\r
-abe2\r
-ab5erd\r
-abi5a\r
-ab5it5ab\r
-ab5lat\r
-ab5o5liz\r
-4abr\r
-ab5rog\r
-ab3ul\r
-a4car\r
-ac5ard\r
-ac5aro\r
-a5ceou\r
-ac1er\r
-a5chet\r
-4a2ci\r
-a3cie\r
-ac1in\r
-a3cio\r
-ac5rob\r
-act5if\r
-ac3ul\r
-ac4um\r
-a2d\r
-ad4din\r
-ad5er.\r
-2adi\r
-a3dia\r
-ad3ica\r
-adi4er\r
-a3dio\r
-a3dit\r
-a5diu\r
-ad4le\r
-ad3ow\r
-ad5ran\r
-ad4su\r
-4adu\r
-a3duc\r
-ad5um\r
-ae4r\r
-aeri4e\r
-a2f\r
-aff4\r
-a4gab\r
-aga4n\r
-ag5ell\r
-age4o\r
-4ageu\r
-ag1i\r
-4ag4l\r
-ag1n\r
-a2go\r
-3agog\r
-ag3oni\r
-a5guer\r
-ag5ul\r
-a4gy\r
-a3ha\r
-a3he\r
-ah4l\r
-a3ho\r
-ai2\r
-a5ia\r
-a3ic.\r
-ai5ly\r
-a4i4n\r
-ain5in\r
-ain5o\r
-ait5en\r
-a1j\r
-ak1en\r
-al5ab\r
-al3ad\r
-a4lar\r
-4aldi\r
-2ale\r
-al3end\r
-a4lenti\r
-a5le5o\r
-al1i\r
-al4ia.\r
-ali4e\r
-al5lev\r
-4allic\r
-4alm\r
-a5log.\r
-a4ly.\r
-4alys\r
-5a5lyst\r
-5alyt\r
-3alyz\r
-4ama\r
-am5ab\r
-am3ag\r
-ama5ra\r
-am5asc\r
-a4matis\r
-a4m5ato\r
-am5era\r
-am3ic\r
-am5if\r
-am5ily\r
-am1in\r
-ami4no\r
-a2mo\r
-a5mon\r
-amor5i\r
-amp5en\r
-a2n\r
-an3age\r
-3analy\r
-a3nar\r
-an3arc\r
-anar4i\r
-a3nati\r
-4and\r
-ande4s\r
-an3dis\r
-an1dl\r
-an4dow\r
-a5nee\r
-a3nen\r
-an5est.\r
-a3neu\r
-2ang\r
-ang5ie\r
-an1gl\r
-a4n1ic\r
-a3nies\r
-an3i3f\r
-an4ime\r
-a5nimi\r
-a5nine\r
-an3io\r
-a3nip\r
-an3ish\r
-an3it\r
-a3niu\r
-an4kli\r
-5anniz\r
-ano4\r
-an5ot\r
-anoth5\r
-an2sa\r
-an4sco\r
-an4sn\r
-an2sp\r
-ans3po\r
-an4st\r
-an4sur\r
-antal4\r
-an4tie\r
-4anto\r
-an2tr\r
-an4tw\r
-an3ua\r
-an3ul\r
-a5nur\r
-4ao\r
-apar4\r
-ap5at\r
-ap5ero\r
-a3pher\r
-4aphi\r
-a4pilla\r
-ap5illar\r
-ap3in\r
-ap3ita\r
-a3pitu\r
-a2pl\r
-apoc5\r
-ap5ola\r
-apor5i\r
-apos3t\r
-aps5es\r
-a3pu\r
-aque5\r
-2a2r\r
-ar3act\r
-a5rade\r
-ar5adis\r
-ar3al\r
-a5ramete\r
-aran4g\r
-ara3p\r
-ar4at\r
-a5ratio\r
-ar5ativ\r
-a5rau\r
-ar5av4\r
-araw4\r
-arbal4\r
-ar4chan\r
-ar5dine\r
-ar4dr\r
-ar5eas\r
-a3ree\r
-ar3ent\r
-a5ress\r
-ar4fi\r
-ar4fl\r
-ar1i\r
-ar5ial\r
-ar3ian\r
-a3riet\r
-ar4im\r
-ar5inat\r
-ar3io\r
-ar2iz\r
-ar2mi\r
-ar5o5d\r
-a5roni\r
-a3roo\r
-ar2p\r
-ar3q\r
-arre4\r
-ar4sa\r
-ar2sh\r
-4as.\r
-as4ab\r
-as3ant\r
-ashi4\r
-a5sia.\r
-a3sib\r
-a3sic\r
-5a5si4t\r
-ask3i\r
-as4l\r
-a4soc\r
-as5ph\r
-as4sh\r
-as3ten\r
-as1tr\r
-asur5a\r
-a2ta\r
-at3abl\r
-at5ac\r
-at3alo\r
-at5ap\r
-ate5c\r
-at5ech\r
-at3ego\r
-at3en.\r
-at3era\r
-ater5n\r
-a5terna\r
-at3est\r
-at5ev\r
-4ath\r
-ath5em\r
-a5then\r
-at4ho\r
-ath5om\r
-4ati.\r
-a5tia\r
-at5i5b\r
-at1ic\r
-at3if\r
-ation5ar\r
-at3itu\r
-a4tog\r
-a2tom\r
-at5omiz\r
-a4top\r
-a4tos\r
-a1tr\r
-at5rop\r
-at4sk\r
-at4tag\r
-at5te\r
-at4th\r
-a2tu\r
-at5ua\r
-at5ue\r
-at3ul\r
-at3ura\r
-a2ty\r
-au4b\r
-augh3\r
-au3gu\r
-au4l2\r
-aun5d\r
-au3r\r
-au5sib\r
-aut5en\r
-au1th\r
-a2va\r
-av3ag\r
-a5van\r
-ave4no\r
-av3era\r
-av5ern\r
-av5ery\r
-av1i\r
-avi4er\r
-av3ig\r
-av5oc\r
-a1vor\r
-3away\r
-aw3i\r
-aw4ly\r
-aws4\r
-ax4ic\r
-ax4id\r
-ay5al\r
-aye4\r
-ays4\r
-azi4er\r
-azz5i\r
-5ba.\r
-bad5ger\r
-ba4ge\r
-bal1a\r
-ban5dag\r
-ban4e\r
-ban3i\r
-barbi5\r
-bari4a\r
-bas4si\r
-1bat\r
-ba4z\r
-2b1b\r
-b2be\r
-b3ber\r
-bbi4na\r
-4b1d\r
-4be.\r
-beak4\r
-beat3\r
-4be2d\r
-be3da\r
-be3de\r
-be3di\r
-be3gi\r
-be5gu\r
-1bel\r
-be1li\r
-be3lo\r
-4be5m\r
-be5nig\r
-be5nu\r
-4bes4\r
-be3sp\r
-be5str\r
-3bet\r
-bet5iz\r
-be5tr\r
-be3tw\r
-be3w\r
-be5yo\r
-2bf\r
-4b3h\r
-bi2b\r
-bi4d\r
-3bie\r
-bi5en\r
-bi4er\r
-2b3if\r
-1bil\r
-bi3liz\r
-bina5r4\r
-bin4d\r
-bi5net\r
-bi3ogr\r
-bi5ou\r
-bi2t\r
-3bi3tio\r
-bi3tr\r
-3bit5ua\r
-b5itz\r
-b1j\r
-bk4\r
-b2l2\r
-blath5\r
-b4le.\r
-blen4\r
-5blesp\r
-b3lis\r
-b4lo\r
-blun4t\r
-4b1m\r
-4b3n\r
-bne5g\r
-3bod\r
-bod3i\r
-bo4e\r
-bol3ic\r
-bom4bi\r
-bon4a\r
-bon5at\r
-3boo\r
-5bor.\r
-4b1ora\r
-bor5d\r
-5bore\r
-5bori\r
-5bos4\r
-b5ota\r
-both5\r
-bo4to\r
-bound3\r
-4bp\r
-4brit\r
-broth3\r
-2b5s2\r
-bsor4\r
-2bt\r
-bt4l\r
-b4to\r
-b3tr\r
-buf4fer\r
-bu4ga\r
-bu3li\r
-bumi4\r
-bu4n\r
-bunt4i\r
-bu3re\r
-bus5ie\r
-buss4e\r
-5bust\r
-4buta\r
-3butio\r
-b5uto\r
-b1v\r
-4b5w\r
-5by.\r
-bys4\r
-1ca\r
-cab3in\r
-ca1bl\r
-cach4\r
-ca5den\r
-4cag4\r
-2c5ah\r
-ca3lat\r
-cal4la\r
-call5in\r
-4calo\r
-can5d\r
-can4e\r
-can4ic\r
-can5is\r
-can3iz\r
-can4ty\r
-cany4\r
-ca5per\r
-car5om\r
-cast5er\r
-cas5tig\r
-4casy\r
-ca4th\r
-4cativ\r
-cav5al\r
-c3c\r
-ccha5\r
-cci4a\r
-ccompa5\r
-ccon4\r
-ccou3t\r
-2ce.\r
-4ced.\r
-4ceden\r
-3cei\r
-5cel.\r
-3cell\r
-1cen\r
-3cenc\r
-2cen4e\r
-4ceni\r
-3cent\r
-3cep\r
-ce5ram\r
-4cesa\r
-3cessi\r
-ces5si5b\r
-ces5t\r
-cet4\r
-c5e4ta\r
-cew4\r
-2ch\r
-4ch.\r
-4ch3ab\r
-5chanic\r
-ch5a5nis\r
-che2\r
-cheap3\r
-4ched\r
-che5lo\r
-3chemi\r
-ch5ene\r
-ch3er.\r
-ch3ers\r
-4ch1in\r
-5chine.\r
-ch5iness\r
-5chini\r
-5chio\r
-3chit\r
-chi2z\r
-3cho2\r
-ch4ti\r
-1ci\r
-3cia\r
-ci2a5b\r
-cia5r\r
-ci5c\r
-4cier\r
-5cific.\r
-4cii\r
-ci4la\r
-3cili\r
-2cim\r
-2cin\r
-c4ina\r
-3cinat\r
-cin3em\r
-c1ing\r
-c5ing.\r
-5cino\r
-cion4\r
-4cipe\r
-ci3ph\r
-4cipic\r
-4cista\r
-4cisti\r
-2c1it\r
-cit3iz\r
-5ciz\r
-ck1\r
-ck3i\r
-1c4l4\r
-4clar\r
-c5laratio\r
-5clare\r
-cle4m\r
-4clic\r
-clim4\r
-cly4\r
-c5n\r
-1co\r
-co5ag\r
-coe2\r
-2cog\r
-co4gr\r
-coi4\r
-co3inc\r
-col5i\r
-5colo\r
-col3or\r
-com5er\r
-con4a\r
-c4one\r
-con3g\r
-con5t\r
-co3pa\r
-cop3ic\r
-co4pl\r
-4corb\r
-coro3n\r
-cos4e\r
-cov1\r
-cove4\r
-cow5a\r
-coz5e\r
-co5zi\r
-c1q\r
-cras5t\r
-5crat.\r
-5cratic\r
-cre3at\r
-5cred\r
-4c3reta\r
-cre4v\r
-cri2\r
-cri5f\r
-c4rin\r
-cris4\r
-5criti\r
-cro4pl\r
-crop5o\r
-cros4e\r
-cru4d\r
-4c3s2\r
-2c1t\r
-cta4b\r
-ct5ang\r
-c5tant\r
-c2te\r
-c3ter\r
-c4ticu\r
-ctim3i\r
-ctu4r\r
-c4tw\r
-cud5\r
-c4uf\r
-c4ui\r
-cu5ity\r
-5culi\r
-cul4tis\r
-3cultu\r
-cu2ma\r
-c3ume\r
-cu4mi\r
-3cun\r
-cu3pi\r
-cu5py\r
-cur5a4b\r
-cu5ria\r
-1cus\r
-cuss4i\r
-3c4ut\r
-cu4tie\r
-4c5utiv\r
-4cutr\r
-1cy\r
-cze4\r
-1d2a\r
-5da.\r
-2d3a4b\r
-dach4\r
-4daf\r
-2dag\r
-da2m2\r
-dan3g\r
-dard5\r
-dark5\r
-4dary\r
-3dat\r
-4dativ\r
-4dato\r
-5dav4\r
-dav5e\r
-5day\r
-d1b\r
-d5c\r
-d1d4\r
-2de.\r
-deaf5\r
-deb5it\r
-de4bon\r
-decan4\r
-de4cil\r
-de5com\r
-2d1ed\r
-4dee.\r
-de5if\r
-deli4e\r
-del5i5q\r
-de5lo\r
-d4em\r
-5dem.\r
-3demic\r
-dem5ic.\r
-de5mil\r
-de4mons\r
-demor5\r
-1den\r
-de4nar\r
-de3no\r
-denti5f\r
-de3nu\r
-de1p\r
-de3pa\r
-depi4\r
-de2pu\r
-d3eq\r
-d4erh\r
-5derm\r
-dern5iz\r
-der5s\r
-des2\r
-d2es.\r
-de1sc\r
-de2s5o\r
-des3ti\r
-de3str\r
-de4su\r
-de1t\r
-de2to\r
-de1v\r
-dev3il\r
-4dey\r
-4d1f\r
-d4ga\r
-d3ge4t\r
-dg1i\r
-d2gy\r
-d1h2\r
-5di.\r
-1d4i3a\r
-dia5b\r
-di4cam\r
-d4ice\r
-3dict\r
-3did\r
-5di3en\r
-d1if\r
-di3ge\r
-di4lato\r
-d1in\r
-1dina\r
-3dine.\r
-5dini\r
-di5niz\r
-1dio\r
-dio5g\r
-di4pl\r
-dir2\r
-di1re\r
-dirt5i\r
-dis1\r
-5disi\r
-d4is3t\r
-d2iti\r
-1di1v\r
-d1j\r
-d5k2\r
-4d5la\r
-3dle.\r
-3dled\r
-3dles.\r
-4dless\r
-2d3lo\r
-4d5lu\r
-2dly\r
-d1m\r
-4d1n4\r
-1do\r
-3do.\r
-do5de\r
-5doe\r
-2d5of\r
-d4og\r
-do4la\r
-doli4\r
-do5lor\r
-dom5iz\r
-do3nat\r
-doni4\r
-doo3d\r
-dop4p\r
-d4or\r
-3dos\r
-4d5out\r
-do4v\r
-3dox\r
-d1p\r
-1dr\r
-drag5on\r
-4drai\r
-dre4\r
-drea5r\r
-5dren\r
-dri4b\r
-dril4\r
-dro4p\r
-4drow\r
-5drupli\r
-4dry\r
-2d1s2\r
-ds4p\r
-d4sw\r
-d4sy\r
-d2th\r
-1du\r
-d1u1a\r
-du2c\r
-d1uca\r
-duc5er\r
-4duct.\r
-4ducts\r
-du5el\r
-du4g\r
-d3ule\r
-dum4be\r
-du4n\r
-4dup\r
-du4pe\r
-d1v\r
-d1w\r
-d2y\r
-5dyn\r
-dy4se\r
-dys5p\r
-e1a4b\r
-e3act\r
-ead1\r
-ead5ie\r
-ea4ge\r
-ea5ger\r
-ea4l\r
-eal5er\r
-eal3ou\r
-eam3er\r
-e5and\r
-ear3a\r
-ear4c\r
-ear5es\r
-ear4ic\r
-ear4il\r
-ear5k\r
-ear2t\r
-eart3e\r
-ea5sp\r
-e3ass\r
-east3\r
-ea2t\r
-eat5en\r
-eath3i\r
-e5atif\r
-e4a3tu\r
-ea2v\r
-eav3en\r
-eav5i\r
-eav5o\r
-2e1b\r
-e4bel.\r
-e4bels\r
-e4ben\r
-e4bit\r
-e3br\r
-e4cad\r
-ecan5c\r
-ecca5\r
-e1ce\r
-ec5essa\r
-ec2i\r
-e4cib\r
-ec5ificat\r
-ec5ifie\r
-ec5ify\r
-ec3im\r
-eci4t\r
-e5cite\r
-e4clam\r
-e4clus\r
-e2col\r
-e4comm\r
-e4compe\r
-e4conc\r
-e2cor\r
-ec3ora\r
-eco5ro\r
-e1cr\r
-e4crem\r
-ec4tan\r
-ec4te\r
-e1cu\r
-e4cul\r
-ec3ula\r
-2e2da\r
-4ed3d\r
-e4d1er\r
-ede4s\r
-4edi\r
-e3dia\r
-ed3ib\r
-ed3ica\r
-ed3im\r
-ed1it\r
-edi5z\r
-4edo\r
-e4dol\r
-edon2\r
-e4dri\r
-e4dul\r
-ed5ulo\r
-ee2c\r
-eed3i\r
-ee2f\r
-eel3i\r
-ee4ly\r
-ee2m\r
-ee4na\r
-ee4p1\r
-ee2s4\r
-eest4\r
-ee4ty\r
-e5ex\r
-e1f\r
-e4f3ere\r
-1eff\r
-e4fic\r
-5efici\r
-efil4\r
-e3fine\r
-ef5i5nite\r
-3efit\r
-efor5es\r
-e4fuse.\r
-4egal\r
-eger4\r
-eg5ib\r
-eg4ic\r
-eg5ing\r
-e5git5\r
-eg5n\r
-e4go.\r
-e4gos\r
-eg1ul\r
-e5gur\r
-5egy\r
-e1h4\r
-eher4\r
-ei2\r
-e5ic\r
-ei5d\r
-eig2\r
-ei5gl\r
-e3imb\r
-e3inf\r
-e1ing\r
-e5inst\r
-eir4d\r
-eit3e\r
-ei3th\r
-e5ity\r
-e1j\r
-e4jud\r
-ej5udi\r
-eki4n\r
-ek4la\r
-e1la\r
-e4la.\r
-e4lac\r
-elan4d\r
-el5ativ\r
-e4law\r
-elaxa4\r
-e3lea\r
-el5ebra\r
-5elec\r
-e4led\r
-el3ega\r
-e5len\r
-e4l1er\r
-e1les\r
-el2f\r
-el2i\r
-e3libe\r
-e4l5ic.\r
-el3ica\r
-e3lier\r
-el5igib\r
-e5lim\r
-e4l3ing\r
-e3lio\r
-e2lis\r
-el5ish\r
-e3liv3\r
-4ella\r
-el4lab\r
-ello4\r
-e5loc\r
-el5og\r
-el3op.\r
-el2sh\r
-el4ta\r
-e5lud\r
-el5ug\r
-e4mac\r
-e4mag\r
-e5man\r
-em5ana\r
-em5b\r
-e1me\r
-e2mel\r
-e4met\r
-em3ica\r
-emi4e\r
-em5igra\r
-em1in2\r
-em5ine\r
-em3i3ni\r
-e4mis\r
-em5ish\r
-e5miss\r
-em3iz\r
-5emniz\r
-emo4g\r
-emoni5o\r
-em3pi\r
-e4mul\r
-em5ula\r
-emu3n\r
-e3my\r
-en5amo\r
-e4nant\r
-ench4er\r
-en3dic\r
-e5nea\r
-e5nee\r
-en3em\r
-en5ero\r
-en5esi\r
-en5est\r
-en3etr\r
-e3new\r
-en5ics\r
-e5nie\r
-e5nil\r
-e3nio\r
-en3ish\r
-en3it\r
-e5niu\r
-5eniz\r
-4enn\r
-4eno\r
-eno4g\r
-e4nos\r
-en3ov\r
-en4sw\r
-ent5age\r
-4enthes\r
-en3ua\r
-en5uf\r
-e3ny.\r
-4en3z\r
-e5of\r
-eo2g\r
-e4oi4\r
-e3ol\r
-eop3ar\r
-e1or\r
-eo3re\r
-eo5rol\r
-eos4\r
-e4ot\r
-eo4to\r
-e5out\r
-e5ow\r
-e2pa\r
-e3pai\r
-ep5anc\r
-e5pel\r
-e3pent\r
-ep5etitio\r
-ephe4\r
-e4pli\r
-e1po\r
-e4prec\r
-ep5reca\r
-e4pred\r
-ep3reh\r
-e3pro\r
-e4prob\r
-ep4sh\r
-ep5ti5b\r
-e4put\r
-ep5uta\r
-e1q\r
-equi3l\r
-e4q3ui3s\r
-er1a\r
-era4b\r
-4erand\r
-er3ar\r
-4erati.\r
-2erb\r
-er4bl\r
-er3ch\r
-er4che\r
-2ere.\r
-e3real\r
-ere5co\r
-ere3in\r
-er5el.\r
-er3emo\r
-er5ena\r
-er5ence\r
-4erene\r
-er3ent\r
-ere4q\r
-er5ess\r
-er3est\r
-eret4\r
-er1h\r
-er1i\r
-e1ria4\r
-5erick\r
-e3rien\r
-eri4er\r
-er3ine\r
-e1rio\r
-4erit\r
-er4iu\r
-eri4v\r
-e4riva\r
-er3m4\r
-er4nis\r
-4ernit\r
-5erniz\r
-er3no\r
-2ero\r
-er5ob\r
-e5roc\r
-ero4r\r
-er1ou\r
-er1s\r
-er3set\r
-ert3er\r
-4ertl\r
-er3tw\r
-4eru\r
-eru4t\r
-5erwau\r
-e1s4a\r
-e4sage.\r
-e4sages\r
-es2c\r
-e2sca\r
-es5can\r
-e3scr\r
-es5cu\r
-e1s2e\r
-e2sec\r
-es5ecr\r
-es5enc\r
-e4sert.\r
-e4serts\r
-e4serva\r
-4esh\r
-e3sha\r
-esh5en\r
-e1si\r
-e2sic\r
-e2sid\r
-es5iden\r
-es5igna\r
-e2s5im\r
-es4i4n\r
-esis4te\r
-esi4u\r
-e5skin\r
-es4mi\r
-e2sol\r
-es3olu\r
-e2son\r
-es5ona\r
-e1sp\r
-es3per\r
-es5pira\r
-es4pre\r
-2ess\r
-es4si4b\r
-estan4\r
-es3tig\r
-es5tim\r
-4es2to\r
-e3ston\r
-2estr\r
-e5stro\r
-estruc5\r
-e2sur\r
-es5urr\r
-es4w\r
-eta4b\r
-eten4d\r
-e3teo\r
-ethod3\r
-et1ic\r
-e5tide\r
-etin4\r
-eti4no\r
-e5tir\r
-e5titio\r
-et5itiv\r
-4etn\r
-et5ona\r
-e3tra\r
-e3tre\r
-et3ric\r
-et5rif\r
-et3rog\r
-et5ros\r
-et3ua\r
-et5ym\r
-et5z\r
-4eu\r
-e5un\r
-e3up\r
-eu3ro\r
-eus4\r
-eute4\r
-euti5l\r
-eu5tr\r
-eva2p5\r
-e2vas\r
-ev5ast\r
-e5vea\r
-ev3ell\r
-evel3o\r
-e5veng\r
-even4i\r
-ev1er\r
-e5verb\r
-e1vi\r
-ev3id\r
-evi4l\r
-e4vin\r
-evi4v\r
-e5voc\r
-e5vu\r
-e1wa\r
-e4wag\r
-e5wee\r
-e3wh\r
-ewil5\r
-ew3ing\r
-e3wit\r
-1exp\r
-5eyc\r
-5eye.\r
-eys4\r
-1fa\r
-fa3bl\r
-fab3r\r
-fa4ce\r
-4fag\r
-fain4\r
-fall5e\r
-4fa4ma\r
-fam5is\r
-5far\r
-far5th\r
-fa3ta\r
-fa3the\r
-4fato\r
-fault5\r
-4f5b\r
-4fd\r
-4fe.\r
-feas4\r
-feath3\r
-fe4b\r
-4feca\r
-5fect\r
-2fed\r
-fe3li\r
-fe4mo\r
-fen2d\r
-fend5e\r
-fer1\r
-5ferr\r
-fev4\r
-4f1f\r
-f4fes\r
-f4fie\r
-f5fin.\r
-f2f5is\r
-f4fly\r
-f2fy\r
-4fh\r
-1fi\r
-fi3a\r
-2f3ic.\r
-4f3ical\r
-f3ican\r
-4ficate\r
-f3icen\r
-fi3cer\r
-fic4i\r
-5ficia\r
-5ficie\r
-4fics\r
-fi3cu\r
-fi5del\r
-fight5\r
-fil5i\r
-fill5in\r
-4fily\r
-2fin\r
-5fina\r
-fin2d5\r
-fi2ne\r
-f1in3g\r
-fin4n\r
-fis4ti\r
-f4l2\r
-f5less\r
-flin4\r
-flo3re\r
-f2ly5\r
-4fm\r
-4fn\r
-1fo\r
-5fon\r
-fon4de\r
-fon4t\r
-fo2r\r
-fo5rat\r
-for5ay\r
-fore5t\r
-for4i\r
-fort5a\r
-fos5\r
-4f5p\r
-fra4t\r
-f5rea\r
-fres5c\r
-fri2\r
-fril4\r
-frol5\r
-2f3s\r
-2ft\r
-f4to\r
-f2ty\r
-3fu\r
-fu5el\r
-4fug\r
-fu4min\r
-fu5ne\r
-fu3ri\r
-fusi4\r
-fus4s\r
-4futa\r
-1fy\r
-1ga\r
-gaf4\r
-5gal.\r
-3gali\r
-ga3lo\r
-2gam\r
-ga5met\r
-g5amo\r
-gan5is\r
-ga3niz\r
-gani5za\r
-4gano\r
-gar5n4\r
-gass4\r
-gath3\r
-4gativ\r
-4gaz\r
-g3b\r
-gd4\r
-2ge.\r
-2ged\r
-geez4\r
-gel4in\r
-ge5lis\r
-ge5liz\r
-4gely\r
-1gen\r
-ge4nat\r
-ge5niz\r
-4geno\r
-4geny\r
-1geo\r
-ge3om\r
-g4ery\r
-5gesi\r
-geth5\r
-4geto\r
-ge4ty\r
-ge4v\r
-4g1g2\r
-g2ge\r
-g3ger\r
-gglu5\r
-ggo4\r
-gh3in\r
-gh5out\r
-gh4to\r
-5gi.\r
-1gi4a\r
-gia5r\r
-g1ic\r
-5gicia\r
-g4ico\r
-gien5\r
-5gies.\r
-gil4\r
-g3imen\r
-3g4in.\r
-gin5ge\r
-5g4ins\r
-5gio\r
-3gir\r
-gir4l\r
-g3isl\r
-gi4u\r
-5giv\r
-3giz\r
-gl2\r
-gla4\r
-glad5i\r
-5glas\r
-1gle\r
-gli4b\r
-g3lig\r
-3glo\r
-glo3r\r
-g1m\r
-g4my\r
-gn4a\r
-g4na.\r
-gnet4t\r
-g1ni\r
-g2nin\r
-g4nio\r
-g1no\r
-g4non\r
-1go\r
-3go.\r
-gob5\r
-5goe\r
-3g4o4g\r
-go3is\r
-gon2\r
-4g3o3na\r
-gondo5\r
-go3ni\r
-5goo\r
-go5riz\r
-gor5ou\r
-5gos.\r
-gov1\r
-g3p\r
-1gr\r
-4grada\r
-g4rai\r
-gran2\r
-5graph.\r
-g5rapher\r
-5graphic\r
-4graphy\r
-4gray\r
-gre4n\r
-4gress.\r
-4grit\r
-g4ro\r
-gruf4\r
-gs2\r
-g5ste\r
-gth3\r
-gu4a\r
-3guard\r
-2gue\r
-5gui5t\r
-3gun\r
-3gus\r
-4gu4t\r
-g3w\r
-1gy\r
-2g5y3n\r
-gy5ra\r
-h3ab4l\r
-hach4\r
-hae4m\r
-hae4t\r
-h5agu\r
-ha3la\r
-hala3m\r
-ha4m\r
-han4ci\r
-han4cy\r
-5hand.\r
-han4g\r
-hang5er\r
-hang5o\r
-h5a5niz\r
-han4k\r
-han4te\r
-hap3l\r
-hap5t\r
-ha3ran\r
-ha5ras\r
-har2d\r
-hard3e\r
-har4le\r
-harp5en\r
-har5ter\r
-has5s\r
-haun4\r
-5haz\r
-haz3a\r
-h1b\r
-1head\r
-3hear\r
-he4can\r
-h5ecat\r
-h4ed\r
-he5do5\r
-he3l4i\r
-hel4lis\r
-hel4ly\r
-h5elo\r
-hem4p\r
-he2n\r
-hena4\r
-hen5at\r
-heo5r\r
-hep5\r
-h4era\r
-hera3p\r
-her4ba\r
-here5a\r
-h3ern\r
-h5erou\r
-h3ery\r
-h1es\r
-he2s5p\r
-he4t\r
-het4ed\r
-heu4\r
-h1f\r
-h1h\r
-hi5an\r
-hi4co\r
-high5\r
-h4il2\r
-himer4\r
-h4ina\r
-hion4e\r
-hi4p\r
-hir4l\r
-hi3ro\r
-hir4p\r
-hir4r\r
-his3el\r
-his4s\r
-hith5er\r
-hi2v\r
-4hk\r
-4h1l4\r
-hlan4\r
-h2lo\r
-hlo3ri\r
-4h1m\r
-hmet4\r
-2h1n\r
-h5odiz\r
-h5ods\r
-ho4g\r
-hoge4\r
-hol5ar\r
-3hol4e\r
-ho4ma\r
-home3\r
-hon4a\r
-ho5ny\r
-3hood\r
-hoon4\r
-hor5at\r
-ho5ris\r
-hort3e\r
-ho5ru\r
-hos4e\r
-ho5sen\r
-hos1p\r
-1hous\r
-house3\r
-hov5el\r
-4h5p\r
-4hr4\r
-hree5\r
-hro5niz\r
-hro3po\r
-4h1s2\r
-h4sh\r
-h4tar\r
-ht1en\r
-ht5es\r
-h4ty\r
-hu4g\r
-hu4min\r
-hun5ke\r
-hun4t\r
-hus3t4\r
-hu4t\r
-h1w\r
-h4wart\r
-hy3pe\r
-hy3ph\r
-hy2s\r
-2i1a\r
-i2al\r
-iam4\r
-iam5ete\r
-i2an\r
-4ianc\r
-ian3i\r
-4ian4t\r
-ia5pe\r
-iass4\r
-i4ativ\r
-ia4tric\r
-i4atu\r
-ibe4\r
-ib3era\r
-ib5ert\r
-ib5ia\r
-ib3in\r
-ib5it.\r
-ib5ite\r
-i1bl\r
-ib3li\r
-i5bo\r
-i1br\r
-i2b5ri\r
-i5bun\r
-4icam\r
-5icap\r
-4icar\r
-i4car.\r
-i4cara\r
-icas5\r
-i4cay\r
-iccu4\r
-4iceo\r
-4ich\r
-2ici\r
-i5cid\r
-ic5ina\r
-i2cip\r
-ic3ipa\r
-i4cly\r
-i2c5oc\r
-4i1cr\r
-5icra\r
-i4cry\r
-ic4te\r
-ictu2\r
-ic4t3ua\r
-ic3ula\r
-ic4um\r
-ic5uo\r
-i3cur\r
-2id\r
-i4dai\r
-id5anc\r
-id5d\r
-ide3al\r
-ide4s\r
-i2di\r
-id5ian\r
-idi4ar\r
-i5die\r
-id3io\r
-idi5ou\r
-id1it\r
-id5iu\r
-i3dle\r
-i4dom\r
-id3ow\r
-i4dr\r
-i2du\r
-id5uo\r
-2ie4\r
-ied4e\r
-5ie5ga\r
-ield3\r
-ien5a4\r
-ien4e\r
-i5enn\r
-i3enti\r
-i1er.\r
-i3esc\r
-i1est\r
-i3et\r
-4if.\r
-if5ero\r
-iff5en\r
-if4fr\r
-4ific.\r
-i3fie\r
-i3fl\r
-4ift\r
-2ig\r
-iga5b\r
-ig3era\r
-ight3i\r
-4igi\r
-i3gib\r
-ig3il\r
-ig3in\r
-ig3it\r
-i4g4l\r
-i2go\r
-ig3or\r
-ig5ot\r
-i5gre\r
-igu5i\r
-ig1ur\r
-i3h\r
-4i5i4\r
-i3j\r
-4ik\r
-i1la\r
-il3a4b\r
-i4lade\r
-i2l5am\r
-ila5ra\r
-i3leg\r
-il1er\r
-ilev4\r
-il5f\r
-il1i\r
-il3ia\r
-il2ib\r
-il3io\r
-il4ist\r
-2ilit\r
-il2iz\r
-ill5ab\r
-4iln\r
-il3oq\r
-il4ty\r
-il5ur\r
-il3v\r
-i4mag\r
-im3age\r
-ima5ry\r
-imenta5r\r
-4imet\r
-im1i\r
-im5ida\r
-imi5le\r
-i5mini\r
-4imit\r
-im4ni\r
-i3mon\r
-i2mu\r
-im3ula\r
-2in.\r
-i4n3au\r
-4inav\r
-incel4\r
-in3cer\r
-4ind\r
-in5dling\r
-2ine\r
-i3nee\r
-iner4ar\r
-i5ness\r
-4inga\r
-4inge\r
-in5gen\r
-4ingi\r
-in5gling\r
-4ingo\r
-4ingu\r
-2ini\r
-i5ni.\r
-i4nia\r
-in3io\r
-in1is\r
-i5nite.\r
-5initio\r
-in3ity\r
-4ink\r
-4inl\r
-2inn\r
-2i1no\r
-i4no4c\r
-ino4s\r
-i4not\r
-2ins\r
-in3se\r
-insur5a\r
-2int.\r
-2in4th\r
-in1u\r
-i5nus\r
-4iny\r
-2io\r
-4io.\r
-ioge4\r
-io2gr\r
-i1ol\r
-io4m\r
-ion3at\r
-ion4ery\r
-ion3i\r
-io5ph\r
-ior3i\r
-i4os\r
-io5th\r
-i5oti\r
-io4to\r
-i4our\r
-2ip\r
-ipe4\r
-iphras4\r
-ip3i\r
-ip4ic\r
-ip4re4\r
-ip3ul\r
-i3qua\r
-iq5uef\r
-iq3uid\r
-iq3ui3t\r
-4ir\r
-i1ra\r
-ira4b\r
-i4rac\r
-ird5e\r
-ire4de\r
-i4ref\r
-i4rel4\r
-i4res\r
-ir5gi\r
-ir1i\r
-iri5de\r
-ir4is\r
-iri3tu\r
-5i5r2iz\r
-ir4min\r
-iro4g\r
-5iron.\r
-ir5ul\r
-2is.\r
-is5ag\r
-is3ar\r
-isas5\r
-2is1c\r
-is3ch\r
-4ise\r
-is3er\r
-3isf\r
-is5han\r
-is3hon\r
-ish5op\r
-is3ib\r
-isi4d\r
-i5sis\r
-is5itiv\r
-4is4k\r
-islan4\r
-4isms\r
-i2so\r
-iso5mer\r
-is1p\r
-is2pi\r
-is4py\r
-4is1s\r
-is4sal\r
-issen4\r
-is4ses\r
-is4ta.\r
-is1te\r
-is1ti\r
-ist4ly\r
-4istral\r
-i2su\r
-is5us\r
-4ita.\r
-ita4bi\r
-i4tag\r
-4ita5m\r
-i3tan\r
-i3tat\r
-2ite\r
-it3era\r
-i5teri\r
-it4es\r
-2ith\r
-i1ti\r
-4itia\r
-4i2tic\r
-it3ica\r
-5i5tick\r
-it3ig\r
-it5ill\r
-i2tim\r
-2itio\r
-4itis\r
-i4tism\r
-i2t5o5m\r
-4iton\r
-i4tram\r
-it5ry\r
-4itt\r
-it3uat\r
-i5tud\r
-it3ul\r
-4itz.\r
-i1u\r
-2iv\r
-iv3ell\r
-iv3en.\r
-i4v3er.\r
-i4vers.\r
-iv5il.\r
-iv5io\r
-iv1it\r
-i5vore\r
-iv3o3ro\r
-i4v3ot\r
-4i5w\r
-ix4o\r
-4iy\r
-4izar\r
-izi4\r
-5izont\r
-5ja\r
-jac4q\r
-ja4p\r
-1je\r
-jer5s\r
-4jestie\r
-4jesty\r
-jew3\r
-jo4p\r
-5judg\r
-3ka.\r
-k3ab\r
-k5ag\r
-kais4\r
-kal4\r
-k1b\r
-k2ed\r
-1kee\r
-ke4g\r
-ke5li\r
-k3en4d\r
-k1er\r
-kes4\r
-k3est.\r
-ke4ty\r
-k3f\r
-kh4\r
-k1i\r
-5ki.\r
-5k2ic\r
-k4ill\r
-kilo5\r
-k4im\r
-k4in.\r
-kin4de\r
-k5iness\r
-kin4g\r
-ki4p\r
-kis4\r
-k5ish\r
-kk4\r
-k1l\r
-4kley\r
-4kly\r
-k1m\r
-k5nes\r
-1k2no\r
-ko5r\r
-kosh4\r
-k3ou\r
-kro5n\r
-4k1s2\r
-k4sc\r
-ks4l\r
-k4sy\r
-k5t\r
-k1w\r
-lab3ic\r
-l4abo\r
-laci4\r
-l4ade\r
-la3dy\r
-lag4n\r
-lam3o\r
-3land\r
-lan4dl\r
-lan5et\r
-lan4te\r
-lar4g\r
-lar3i\r
-las4e\r
-la5tan\r
-4lateli\r
-4lativ\r
-4lav\r
-la4v4a\r
-2l1b\r
-lbin4\r
-4l1c2\r
-lce4\r
-l3ci\r
-2ld\r
-l2de\r
-ld4ere\r
-ld4eri\r
-ldi4\r
-ld5is\r
-l3dr\r
-l4dri\r
-le2a\r
-le4bi\r
-left5\r
-5leg.\r
-5legg\r
-le4mat\r
-lem5atic\r
-4len.\r
-3lenc\r
-5lene.\r
-1lent\r
-le3ph\r
-le4pr\r
-lera5b\r
-ler4e\r
-3lerg\r
-3l4eri\r
-l4ero\r
-les2\r
-le5sco\r
-5lesq\r
-3less\r
-5less.\r
-l3eva\r
-lev4er.\r
-lev4era\r
-lev4ers\r
-3ley\r
-4leye\r
-2lf\r
-l5fr\r
-4l1g4\r
-l5ga\r
-lgar3\r
-l4ges\r
-lgo3\r
-2l3h\r
-li4ag\r
-li2am\r
-liar5iz\r
-li4as\r
-li4ato\r
-li5bi\r
-5licio\r
-li4cor\r
-4lics\r
-4lict.\r
-l4icu\r
-l3icy\r
-l3ida\r
-lid5er\r
-3lidi\r
-lif3er\r
-l4iff\r
-li4fl\r
-5ligate\r
-3ligh\r
-li4gra\r
-3lik\r
-4l4i4l\r
-lim4bl\r
-lim3i\r
-li4mo\r
-l4im4p\r
-l4ina\r
-1l4ine\r
-lin3ea\r
-lin3i\r
-link5er\r
-li5og\r
-4l4iq\r
-lis4p\r
-l1it\r
-l2it.\r
-5litica\r
-l5i5tics\r
-liv3er\r
-l1iz\r
-4lj\r
-lka3\r
-l3kal\r
-lka4t\r
-l1l\r
-l4law\r
-l2le\r
-l5lea\r
-l3lec\r
-l3leg\r
-l3lel\r
-l3le4n\r
-l3le4t\r
-ll2i\r
-l2lin4\r
-l5lina\r
-ll4o\r
-lloqui5\r
-ll5out\r
-l5low\r
-2lm\r
-l5met\r
-lm3ing\r
-l4mod\r
-lmon4\r
-2l1n2\r
-3lo.\r
-lob5al\r
-lo4ci\r
-4lof\r
-3logic\r
-l5ogo\r
-3logu\r
-lom3er\r
-5long\r
-lon4i\r
-l3o3niz\r
-lood5\r
-5lope.\r
-lop3i\r
-l3opm\r
-lora4\r
-lo4rato\r
-lo5rie\r
-lor5ou\r
-5los.\r
-los5et\r
-5losophiz\r
-5losophy\r
-los4t\r
-lo4ta\r
-loun5d\r
-2lout\r
-4lov\r
-2lp\r
-lpa5b\r
-l3pha\r
-l5phi\r
-lp5ing\r
-l3pit\r
-l4pl\r
-l5pr\r
-4l1r\r
-2l1s2\r
-l4sc\r
-l2se\r
-l4sie\r
-4lt\r
-lt5ag\r
-ltane5\r
-l1te\r
-lten4\r
-ltera4\r
-lth3i\r
-l5ties.\r
-ltis4\r
-l1tr\r
-ltu2\r
-ltur3a\r
-lu5a\r
-lu3br\r
-luch4\r
-lu3ci\r
-lu3en\r
-luf4\r
-lu5id\r
-lu4ma\r
-5lumi\r
-l5umn.\r
-5lumnia\r
-lu3o\r
-luo3r\r
-4lup\r
-luss4\r
-lus3te\r
-1lut\r
-l5ven\r
-l5vet4\r
-2l1w\r
-1ly\r
-4lya\r
-4lyb\r
-ly5me\r
-ly3no\r
-2lys4\r
-l5yse\r
-1ma\r
-2mab\r
-ma2ca\r
-ma5chine\r
-ma4cl\r
-mag5in\r
-5magn\r
-2mah\r
-maid5\r
-4mald\r
-ma3lig\r
-ma5lin\r
-mal4li\r
-mal4ty\r
-5mania\r
-man5is\r
-man3iz\r
-4map\r
-ma5rine.\r
-ma5riz\r
-mar4ly\r
-mar3v\r
-ma5sce\r
-mas4e\r
-mas1t\r
-5mate\r
-math3\r
-ma3tis\r
-4matiza\r
-4m1b\r
-mba4t5\r
-m5bil\r
-m4b3ing\r
-mbi4v\r
-4m5c\r
-4me.\r
-2med\r
-4med.\r
-5media\r
-me3die\r
-m5e5dy\r
-me2g\r
-mel5on\r
-mel4t\r
-me2m\r
-mem1o3\r
-1men\r
-men4a\r
-men5ac\r
-men4de\r
-4mene\r
-men4i\r
-mens4\r
-mensu5\r
-3ment\r
-men4te\r
-me5on\r
-m5ersa\r
-2mes\r
-3mesti\r
-me4ta\r
-met3al\r
-me1te\r
-me5thi\r
-m4etr\r
-5metric\r
-me5trie\r
-me3try\r
-me4v\r
-4m1f\r
-2mh\r
-5mi.\r
-mi3a\r
-mid4a\r
-mid4g\r
-mig4\r
-3milia\r
-m5i5lie\r
-m4ill\r
-min4a\r
-3mind\r
-m5inee\r
-m4ingl\r
-min5gli\r
-m5ingly\r
-min4t\r
-m4inu\r
-miot4\r
-m2is\r
-mis4er.\r
-mis5l\r
-mis4ti\r
-m5istry\r
-4mith\r
-m2iz\r
-4mk\r
-4m1l\r
-m1m\r
-mma5ry\r
-4m1n\r
-mn4a\r
-m4nin\r
-mn4o\r
-1mo\r
-4mocr\r
-5mocratiz\r
-mo2d1\r
-mo4go\r
-mois2\r
-moi5se\r
-4mok\r
-mo5lest\r
-mo3me\r
-mon5et\r
-mon5ge\r
-moni3a\r
-mon4ism\r
-mon4ist\r
-mo3niz\r
-monol4\r
-mo3ny.\r
-mo2r\r
-4mora.\r
-mos2\r
-mo5sey\r
-mo3sp\r
-moth3\r
-m5ouf\r
-3mous\r
-mo2v\r
-4m1p\r
-mpara5\r
-mpa5rab\r
-mpar5i\r
-m3pet\r
-mphas4\r
-m2pi\r
-mpi4a\r
-mp5ies\r
-m4p1in\r
-m5pir\r
-mp5is\r
-mpo3ri\r
-mpos5ite\r
-m4pous\r
-mpov5\r
-mp4tr\r
-m2py\r
-4m3r\r
-4m1s2\r
-m4sh\r
-m5si\r
-4mt\r
-1mu\r
-mula5r4\r
-5mult\r
-multi3\r
-3mum\r
-mun2\r
-4mup\r
-mu4u\r
-4mw\r
-1na\r
-2n1a2b\r
-n4abu\r
-4nac.\r
-na4ca\r
-n5act\r
-nag5er.\r
-nak4\r
-na4li\r
-na5lia\r
-4nalt\r
-na5mit\r
-n2an\r
-nanci4\r
-nan4it\r
-nank4\r
-nar3c\r
-4nare\r
-nar3i\r
-nar4l\r
-n5arm\r
-n4as\r
-nas4c\r
-nas5ti\r
-n2at\r
-na3tal\r
-nato5miz\r
-n2au\r
-nau3se\r
-3naut\r
-nav4e\r
-4n1b4\r
-ncar5\r
-n4ces.\r
-n3cha\r
-n5cheo\r
-n5chil\r
-n3chis\r
-nc1in\r
-nc4it\r
-ncour5a\r
-n1cr\r
-n1cu\r
-n4dai\r
-n5dan\r
-n1de\r
-nd5est.\r
-ndi4b\r
-n5d2if\r
-n1dit\r
-n3diz\r
-n5duc\r
-ndu4r\r
-nd2we\r
-2ne.\r
-n3ear\r
-ne2b\r
-neb3u\r
-ne2c\r
-5neck\r
-2ned\r
-ne4gat\r
-neg5ativ\r
-5nege\r
-ne4la\r
-nel5iz\r
-ne5mi\r
-ne4mo\r
-1nen\r
-4nene\r
-3neo\r
-ne4po\r
-ne2q\r
-n1er\r
-nera5b\r
-n4erar\r
-n2ere\r
-n4er5i\r
-ner4r\r
-1nes\r
-2nes.\r
-4nesp\r
-2nest\r
-4nesw\r
-3netic\r
-ne4v\r
-n5eve\r
-ne4w\r
-n3f\r
-n4gab\r
-n3gel\r
-nge4n4e\r
-n5gere\r
-n3geri\r
-ng5ha\r
-n3gib\r
-ng1in\r
-n5git\r
-n4gla\r
-ngov4\r
-ng5sh\r
-n1gu\r
-n4gum\r
-n2gy\r
-4n1h4\r
-nha4\r
-nhab3\r
-nhe4\r
-3n4ia\r
-ni3an\r
-ni4ap\r
-ni3ba\r
-ni4bl\r
-ni4d\r
-ni5di\r
-ni4er\r
-ni2fi\r
-ni5ficat\r
-n5igr\r
-nik4\r
-n1im\r
-ni3miz\r
-n1in\r
-5nine.\r
-nin4g\r
-ni4o\r
-5nis.\r
-nis4ta\r
-n2it\r
-n4ith\r
-3nitio\r
-n3itor\r
-ni3tr\r
-n1j\r
-4nk2\r
-n5kero\r
-n3ket\r
-nk3in\r
-n1kl\r
-4n1l\r
-n5m\r
-nme4\r
-nmet4\r
-4n1n2\r
-nne4\r
-nni3al\r
-nni4v\r
-nob4l\r
-no3ble\r
-n5ocl\r
-4n3o2d\r
-3noe\r
-4nog\r
-noge4\r
-nois5i\r
-no5l4i\r
-5nologis\r
-3nomic\r
-n5o5miz\r
-no4mo\r
-no3my\r
-no4n\r
-non4ag\r
-non5i\r
-n5oniz\r
-4nop\r
-5nop5o5li\r
-nor5ab\r
-no4rary\r
-4nosc\r
-nos4e\r
-nos5t\r
-no5ta\r
-1nou\r
-3noun\r
-nov3el3\r
-nowl3\r
-n1p4\r
-npi4\r
-npre4c\r
-n1q\r
-n1r\r
-nru4\r
-2n1s2\r
-ns5ab\r
-nsati4\r
-ns4c\r
-n2se\r
-n4s3es\r
-nsid1\r
-nsig4\r
-n2sl\r
-ns3m\r
-n4soc\r
-ns4pe\r
-n5spi\r
-nsta5bl\r
-n1t\r
-nta4b\r
-nter3s\r
-nt2i\r
-n5tib\r
-nti4er\r
-nti2f\r
-n3tine\r
-n4t3ing\r
-nti4p\r
-ntrol5li\r
-nt4s\r
-ntu3me\r
-nu1a\r
-nu4d\r
-nu5en\r
-nuf4fe\r
-n3uin\r
-3nu3it\r
-n4um\r
-nu1me\r
-n5umi\r
-3nu4n\r
-n3uo\r
-nu3tr\r
-n1v2\r
-n1w4\r
-nym4\r
-nyp4\r
-4nz\r
-n3za\r
-4oa\r
-oad3\r
-o5a5les\r
-oard3\r
-oas4e\r
-oast5e\r
-oat5i\r
-ob3a3b\r
-o5bar\r
-obe4l\r
-o1bi\r
-o2bin\r
-ob5ing\r
-o3br\r
-ob3ul\r
-o1ce\r
-och4\r
-o3chet\r
-ocif3\r
-o4cil\r
-o4clam\r
-o4cod\r
-oc3rac\r
-oc5ratiz\r
-ocre3\r
-5ocrit\r
-octor5a\r
-oc3ula\r
-o5cure\r
-od5ded\r
-od3ic\r
-odi3o\r
-o2do4\r
-odor3\r
-od5uct.\r
-od5ucts\r
-o4el\r
-o5eng\r
-o3er\r
-oe4ta\r
-o3ev\r
-o2fi\r
-of5ite\r
-ofit4t\r
-o2g5a5r\r
-og5ativ\r
-o4gato\r
-o1ge\r
-o5gene\r
-o5geo\r
-o4ger\r
-o3gie\r
-1o1gis\r
-og3it\r
-o4gl\r
-o5g2ly\r
-3ogniz\r
-o4gro\r
-ogu5i\r
-1ogy\r
-2ogyn\r
-o1h2\r
-ohab5\r
-oi2\r
-oic3es\r
-oi3der\r
-oiff4\r
-oig4\r
-oi5let\r
-o3ing\r
-oint5er\r
-o5ism\r
-oi5son\r
-oist5en\r
-oi3ter\r
-o5j\r
-2ok\r
-o3ken\r
-ok5ie\r
-o1la\r
-o4lan\r
-olass4\r
-ol2d\r
-old1e\r
-ol3er\r
-o3lesc\r
-o3let\r
-ol4fi\r
-ol2i\r
-o3lia\r
-o3lice\r
-ol5id.\r
-o3li4f\r
-o5lil\r
-ol3ing\r
-o5lio\r
-o5lis.\r
-ol3ish\r
-o5lite\r
-o5litio\r
-o5liv\r
-olli4e\r
-ol5ogiz\r
-olo4r\r
-ol5pl\r
-ol2t\r
-ol3ub\r
-ol3ume\r
-ol3un\r
-o5lus\r
-ol2v\r
-o2ly\r
-om5ah\r
-oma5l\r
-om5atiz\r
-om2be\r
-om4bl\r
-o2me\r
-om3ena\r
-om5erse\r
-o4met\r
-om5etry\r
-o3mia\r
-om3ic.\r
-om3ica\r
-o5mid\r
-om1in\r
-o5mini\r
-5ommend\r
-omo4ge\r
-o4mon\r
-om3pi\r
-ompro5\r
-o2n\r
-on1a\r
-on4ac\r
-o3nan\r
-on1c\r
-3oncil\r
-2ond\r
-on5do\r
-o3nen\r
-on5est\r
-on4gu\r
-on1ic\r
-o3nio\r
-on1is\r
-o5niu\r
-on3key\r
-on4odi\r
-on3omy\r
-on3s\r
-onspi4\r
-onspir5a\r
-onsu4\r
-onten4\r
-on3t4i\r
-ontif5\r
-on5um\r
-onva5\r
-oo2\r
-ood5e\r
-ood5i\r
-oo4k\r
-oop3i\r
-o3ord\r
-oost5\r
-o2pa\r
-ope5d\r
-op1er\r
-3opera\r
-4operag\r
-2oph\r
-o5phan\r
-o5pher\r
-op3ing\r
-o3pit\r
-o5pon\r
-o4posi\r
-o1pr\r
-op1u\r
-opy5\r
-o1q\r
-o1ra\r
-o5ra.\r
-o4r3ag\r
-or5aliz\r
-or5ange\r
-ore5a\r
-o5real\r
-or3ei\r
-ore5sh\r
-or5est.\r
-orew4\r
-or4gu\r
-4o5ria\r
-or3ica\r
-o5ril\r
-or1in\r
-o1rio\r
-or3ity\r
-o3riu\r
-or2mi\r
-orn2e\r
-o5rof\r
-or3oug\r
-or5pe\r
-3orrh\r
-or4se\r
-ors5en\r
-orst4\r
-or3thi\r
-or3thy\r
-or4ty\r
-o5rum\r
-o1ry\r
-os3al\r
-os2c\r
-os4ce\r
-o3scop\r
-4oscopi\r
-o5scr\r
-os4i4e\r
-os5itiv\r
-os3ito\r
-os3ity\r
-osi4u\r
-os4l\r
-o2so\r
-os4pa\r
-os4po\r
-os2ta\r
-o5stati\r
-os5til\r
-os5tit\r
-o4tan\r
-otele4g\r
-ot3er.\r
-ot5ers\r
-o4tes\r
-4oth\r
-oth5esi\r
-oth3i4\r
-ot3ic.\r
-ot5ica\r
-o3tice\r
-o3tif\r
-o3tis\r
-oto5s\r
-ou2\r
-ou3bl\r
-ouch5i\r
-ou5et\r
-ou4l\r
-ounc5er\r
-oun2d\r
-ou5v\r
-ov4en\r
-over4ne\r
-over3s\r
-ov4ert\r
-o3vis\r
-oviti4\r
-o5v4ol\r
-ow3der\r
-ow3el\r
-ow5est\r
-ow1i\r
-own5i\r
-o4wo\r
-oy1a\r
-1pa\r
-pa4ca\r
-pa4ce\r
-pac4t\r
-p4ad\r
-5pagan\r
-p3agat\r
-p4ai\r
-pain4\r
-p4al\r
-pan4a\r
-pan3el\r
-pan4ty\r
-pa3ny\r
-pa1p\r
-pa4pu\r
-para5bl\r
-par5age\r
-par5di\r
-3pare\r
-par5el\r
-p4a4ri\r
-par4is\r
-pa2te\r
-pa5ter\r
-5pathic\r
-pa5thy\r
-pa4tric\r
-pav4\r
-3pay\r
-4p1b\r
-pd4\r
-4pe.\r
-3pe4a\r
-pear4l\r
-pe2c\r
-2p2ed\r
-3pede\r
-3pedi\r
-pedia4\r
-ped4ic\r
-p4ee\r
-pee4d\r
-pek4\r
-pe4la\r
-peli4e\r
-pe4nan\r
-p4enc\r
-pen4th\r
-pe5on\r
-p4era.\r
-pera5bl\r
-p4erag\r
-p4eri\r
-peri5st\r
-per4mal\r
-perme5\r
-p4ern\r
-per3o\r
-per3ti\r
-pe5ru\r
-per1v\r
-pe2t\r
-pe5ten\r
-pe5tiz\r
-4pf\r
-4pg\r
-4ph.\r
-phar5i\r
-phe3no\r
-ph4er\r
-ph4es.\r
-ph1ic\r
-5phie\r
-ph5ing\r
-5phisti\r
-3phiz\r
-ph2l\r
-3phob\r
-3phone\r
-5phoni\r
-pho4r\r
-4phs\r
-ph3t\r
-5phu\r
-1phy\r
-pi3a\r
-pian4\r
-pi4cie\r
-pi4cy\r
-p4id\r
-p5ida\r
-pi3de\r
-5pidi\r
-3piec\r
-pi3en\r
-pi4grap\r
-pi3lo\r
-pi2n\r
-p4in.\r
-pind4\r
-p4ino\r
-3pi1o\r
-pion4\r
-p3ith\r
-pi5tha\r
-pi2tu\r
-2p3k2\r
-1p2l2\r
-3plan\r
-plas5t\r
-pli3a\r
-pli5er\r
-4plig\r
-pli4n\r
-ploi4\r
-plu4m\r
-plum4b\r
-4p1m\r
-2p3n\r
-po4c\r
-5pod.\r
-po5em\r
-po3et5\r
-5po4g\r
-poin2\r
-5point\r
-poly5t\r
-po4ni\r
-po4p\r
-1p4or\r
-po4ry\r
-1pos\r
-pos1s\r
-p4ot\r
-po4ta\r
-5poun\r
-4p1p\r
-ppa5ra\r
-p2pe\r
-p4ped\r
-p5pel\r
-p3pen\r
-p3per\r
-p3pet\r
-ppo5site\r
-pr2\r
-pray4e\r
-5preci\r
-pre5co\r
-pre3em\r
-pref5ac\r
-pre4la\r
-pre3r\r
-p3rese\r
-3press\r
-pre5ten\r
-pre3v\r
-5pri4e\r
-prin4t3\r
-pri4s\r
-pris3o\r
-p3roca\r
-prof5it\r
-pro3l\r
-pros3e\r
-pro1t\r
-2p1s2\r
-p2se\r
-ps4h\r
-p4sib\r
-2p1t\r
-pt5a4b\r
-p2te\r
-p2th\r
-pti3m\r
-ptu4r\r
-p4tw\r
-pub3\r
-pue4\r
-puf4\r
-pul3c\r
-pu4m\r
-pu2n\r
-pur4r\r
-5pus\r
-pu2t\r
-5pute\r
-put3er\r
-pu3tr\r
-put4ted\r
-put4tin\r
-p3w\r
-qu2\r
-qua5v\r
-2que.\r
-3quer\r
-3quet\r
-2rab\r
-ra3bi\r
-rach4e\r
-r5acl\r
-raf5fi\r
-raf4t\r
-r2ai\r
-ra4lo\r
-ram3et\r
-r2ami\r
-rane5o\r
-ran4ge\r
-r4ani\r
-ra5no\r
-rap3er\r
-3raphy\r
-rar5c\r
-rare4\r
-rar5ef\r
-4raril\r
-r2as\r
-ration4\r
-rau4t\r
-ra5vai\r
-rav3el\r
-ra5zie\r
-r1b\r
-r4bab\r
-r4bag\r
-rbi2\r
-rbi4f\r
-r2bin\r
-r5bine\r
-rb5ing.\r
-rb4o\r
-r1c\r
-r2ce\r
-rcen4\r
-r3cha\r
-rch4er\r
-r4ci4b\r
-rc4it\r
-rcum3\r
-r4dal\r
-rd2i\r
-rdi4a\r
-rdi4er\r
-rdin4\r
-rd3ing\r
-2re.\r
-re1al\r
-re3an\r
-re5arr\r
-5reav\r
-re4aw\r
-r5ebrat\r
-rec5oll\r
-rec5ompe\r
-re4cre\r
-2r2ed\r
-re1de\r
-re3dis\r
-red5it\r
-re4fac\r
-re2fe\r
-re5fer.\r
-re3fi\r
-re4fy\r
-reg3is\r
-re5it\r
-re1li\r
-re5lu\r
-r4en4ta\r
-ren4te\r
-re1o\r
-re5pin\r
-re4posi\r
-re1pu\r
-r1er4\r
-r4eri\r
-rero4\r
-re5ru\r
-r4es.\r
-re4spi\r
-ress5ib\r
-res2t\r
-re5stal\r
-re3str\r
-re4ter\r
-re4ti4z\r
-re3tri\r
-reu2\r
-re5uti\r
-rev2\r
-re4val\r
-rev3el\r
-r5ev5er.\r
-re5vers\r
-re5vert\r
-re5vil\r
-rev5olu\r
-re4wh\r
-r1f\r
-rfu4\r
-r4fy\r
-rg2\r
-rg3er\r
-r3get\r
-r3gic\r
-rgi4n\r
-rg3ing\r
-r5gis\r
-r5git\r
-r1gl\r
-rgo4n\r
-r3gu\r
-rh4\r
-4rh.\r
-4rhal\r
-ri3a\r
-ria4b\r
-ri4ag\r
-r4ib\r
-rib3a\r
-ric5as\r
-r4ice\r
-4rici\r
-5ricid\r
-ri4cie\r
-r4ico\r
-rid5er\r
-ri3enc\r
-ri3ent\r
-ri1er\r
-ri5et\r
-rig5an\r
-5rigi\r
-ril3iz\r
-5riman\r
-rim5i\r
-3rimo\r
-rim4pe\r
-r2ina\r
-5rina.\r
-rin4d\r
-rin4e\r
-rin4g\r
-ri1o\r
-5riph\r
-riph5e\r
-ri2pl\r
-rip5lic\r
-r4iq\r
-r2is\r
-r4is.\r
-ris4c\r
-r3ish\r
-ris4p\r
-ri3ta3b\r
-r5ited.\r
-rit5er.\r
-rit5ers\r
-rit3ic\r
-ri2tu\r
-rit5ur\r
-riv5el\r
-riv3et\r
-riv3i\r
-r3j\r
-r3ket\r
-rk4le\r
-rk4lin\r
-r1l\r
-rle4\r
-r2led\r
-r4lig\r
-r4lis\r
-rl5ish\r
-r3lo4\r
-r1m\r
-rma5c\r
-r2me\r
-r3men\r
-rm5ers\r
-rm3ing\r
-r4ming.\r
-r4mio\r
-r3mit\r
-r4my\r
-r4nar\r
-r3nel\r
-r4ner\r
-r5net\r
-r3ney\r
-r5nic\r
-r1nis4\r
-r3nit\r
-r3niv\r
-rno4\r
-r4nou\r
-r3nu\r
-rob3l\r
-r2oc\r
-ro3cr\r
-ro4e\r
-ro1fe\r
-ro5fil\r
-rok2\r
-ro5ker\r
-5role.\r
-rom5ete\r
-rom4i\r
-rom4p\r
-ron4al\r
-ron4e\r
-ro5n4is\r
-ron4ta\r
-1room\r
-5root\r
-ro3pel\r
-rop3ic\r
-ror3i\r
-ro5ro\r
-ros5per\r
-ros4s\r
-ro4the\r
-ro4ty\r
-ro4va\r
-rov5el\r
-rox5\r
-r1p\r
-r4pea\r
-r5pent\r
-rp5er.\r
-r3pet\r
-rp4h4\r
-rp3ing\r
-r3po\r
-r1r4\r
-rre4c\r
-rre4f\r
-r4reo\r
-rre4st\r
-rri4o\r
-rri4v\r
-rron4\r
-rros4\r
-rrys4\r
-4rs2\r
-r1sa\r
-rsa5ti\r
-rs4c\r
-r2se\r
-r3sec\r
-rse4cr\r
-rs5er.\r
-rs3es\r
-rse5v2\r
-r1sh\r
-r5sha\r
-r1si\r
-r4si4b\r
-rson3\r
-r1sp\r
-r5sw\r
-rtach4\r
-r4tag\r
-r3teb\r
-rten4d\r
-rte5o\r
-r1ti\r
-rt5ib\r
-rti4d\r
-r4tier\r
-r3tig\r
-rtil3i\r
-rtil4l\r
-r4tily\r
-r4tist\r
-r4tiv\r
-r3tri\r
-rtroph4\r
-rt4sh\r
-ru3a\r
-ru3e4l\r
-ru3en\r
-ru4gl\r
-ru3in\r
-rum3pl\r
-ru2n\r
-runk5\r
-run4ty\r
-r5usc\r
-ruti5n\r
-rv4e\r
-rvel4i\r
-r3ven\r
-rv5er.\r
-r5vest\r
-r3vey\r
-r3vic\r
-rvi4v\r
-r3vo\r
-r1w\r
-ry4c\r
-5rynge\r
-ry3t\r
-sa2\r
-2s1ab\r
-5sack\r
-sac3ri\r
-s3act\r
-5sai\r
-salar4\r
-sal4m\r
-sa5lo\r
-sal4t\r
-3sanc\r
-san4de\r
-s1ap\r
-sa5ta\r
-5sa3tio\r
-sat3u\r
-sau4\r
-sa5vor\r
-5saw\r
-4s5b\r
-scan4t5\r
-sca4p\r
-scav5\r
-s4ced\r
-4scei\r
-s4ces\r
-sch2\r
-s4cho\r
-3s4cie\r
-5scin4d\r
-scle5\r
-s4cli\r
-scof4\r
-4scopy\r
-scour5a\r
-s1cu\r
-4s5d\r
-4se.\r
-se4a\r
-seas4\r
-sea5w\r
-se2c3o\r
-3sect\r
-4s4ed\r
-se4d4e\r
-s5edl\r
-se2g\r
-seg3r\r
-5sei\r
-se1le\r
-5self\r
-5selv\r
-4seme\r
-se4mol\r
-sen5at\r
-4senc\r
-sen4d\r
-s5ened\r
-sen5g\r
-s5enin\r
-4sentd\r
-4sentl\r
-sep3a3\r
-4s1er.\r
-s4erl\r
-ser4o\r
-4servo\r
-s1e4s\r
-se5sh\r
-ses5t\r
-5se5um\r
-5sev\r
-sev3en\r
-sew4i\r
-5sex\r
-4s3f\r
-2s3g\r
-s2h\r
-2sh.\r
-sh1er\r
-5shev\r
-sh1in\r
-sh3io\r
-3ship\r
-shiv5\r
-sho4\r
-sh5old\r
-shon3\r
-shor4\r
-short5\r
-4shw\r
-si1b\r
-s5icc\r
-3side.\r
-5sides\r
-5sidi\r
-si5diz\r
-4signa\r
-sil4e\r
-4sily\r
-2s1in\r
-s2ina\r
-5sine.\r
-s3ing\r
-1sio\r
-5sion\r
-sion5a\r
-si2r\r
-sir5a\r
-1sis\r
-3sitio\r
-5siu\r
-1siv\r
-5siz\r
-sk2\r
-4ske\r
-s3ket\r
-sk5ine\r
-sk5ing\r
-s1l2\r
-s3lat\r
-s2le\r
-slith5\r
-2s1m\r
-s3ma\r
-small3\r
-sman3\r
-smel4\r
-s5men\r
-5smith\r
-smol5d4\r
-s1n4\r
-1so\r
-so4ce\r
-soft3\r
-so4lab\r
-sol3d2\r
-so3lic\r
-5solv\r
-3som\r
-3s4on.\r
-sona4\r
-son4g\r
-s4op\r
-5sophic\r
-s5ophiz\r
-s5ophy\r
-sor5c\r
-sor5d\r
-4sov\r
-so5vi\r
-2spa\r
-5spai\r
-spa4n\r
-spen4d\r
-2s5peo\r
-2sper\r
-s2phe\r
-3spher\r
-spho5\r
-spil4\r
-sp5ing\r
-4spio\r
-s4ply\r
-s4pon\r
-spor4\r
-4spot\r
-squal4l\r
-s1r\r
-2ss\r
-s1sa\r
-ssas3\r
-s2s5c\r
-s3sel\r
-s5seng\r
-s4ses.\r
-s5set\r
-s1si\r
-s4sie\r
-ssi4er\r
-ss5ily\r
-s4sl\r
-ss4li\r
-s4sn\r
-sspend4\r
-ss2t\r
-ssur5a\r
-ss5w\r
-2st.\r
-s2tag\r
-s2tal\r
-stam4i\r
-5stand\r
-s4ta4p\r
-5stat.\r
-s4ted\r
-stern5i\r
-s5tero\r
-ste2w\r
-stew5a\r
-s3the\r
-st2i\r
-s4ti.\r
-s5tia\r
-s1tic\r
-5stick\r
-s4tie\r
-s3tif\r
-st3ing\r
-5stir\r
-s1tle\r
-5stock\r
-stom3a\r
-5stone\r
-s4top\r
-3store\r
-st4r\r
-s4trad\r
-5stratu\r
-s4tray\r
-s4trid\r
-4stry\r
-4st3w\r
-s2ty\r
-1su\r
-su1al\r
-su4b3\r
-su2g3\r
-su5is\r
-suit3\r
-s4ul\r
-su2m\r
-sum3i\r
-su2n\r
-su2r\r
-4sv\r
-sw2\r
-4swo\r
-s4y\r
-4syc\r
-3syl\r
-syn5o\r
-sy5rin\r
-1ta\r
-3ta.\r
-2tab\r
-ta5bles\r
-5taboliz\r
-4taci\r
-ta5do\r
-4taf4\r
-tai5lo\r
-ta2l\r
-ta5la\r
-tal5en\r
-tal3i\r
-4talk\r
-tal4lis\r
-ta5log\r
-ta5mo\r
-tan4de\r
-tanta3\r
-ta5per\r
-ta5pl\r
-tar4a\r
-4tarc\r
-4tare\r
-ta3riz\r
-tas4e\r
-ta5sy\r
-4tatic\r
-ta4tur\r
-taun4\r
-tav4\r
-2taw\r
-tax4is\r
-2t1b\r
-4tc\r
-t4ch\r
-tch5et\r
-4t1d\r
-4te.\r
-tead4i\r
-4teat\r
-tece4\r
-5tect\r
-2t1ed\r
-te5di\r
-1tee\r
-teg4\r
-te5ger\r
-te5gi\r
-3tel.\r
-teli4\r
-5tels\r
-te2ma2\r
-tem3at\r
-3tenan\r
-3tenc\r
-3tend\r
-4tenes\r
-1tent\r
-ten4tag\r
-1teo\r
-te4p\r
-te5pe\r
-ter3c\r
-5ter3d\r
-1teri\r
-ter5ies\r
-ter3is\r
-teri5za\r
-5ternit\r
-ter5v\r
-4tes.\r
-4tess\r
-t3ess.\r
-teth5e\r
-3teu\r
-3tex\r
-4tey\r
-2t1f\r
-4t1g\r
-2th.\r
-than4\r
-th2e\r
-4thea\r
-th3eas\r
-the5at\r
-the3is\r
-3thet\r
-th5ic.\r
-th5ica\r
-4thil\r
-5think\r
-4thl\r
-th5ode\r
-5thodic\r
-4thoo\r
-thor5it\r
-tho5riz\r
-2ths\r
-1tia\r
-ti4ab\r
-ti4ato\r
-2ti2b\r
-4tick\r
-t4ico\r
-t4ic1u\r
-5tidi\r
-3tien\r
-tif2\r
-ti5fy\r
-2tig\r
-5tigu\r
-till5in\r
-1tim\r
-4timp\r
-tim5ul\r
-2t1in\r
-t2ina\r
-3tine.\r
-3tini\r
-1tio\r
-ti5oc\r
-tion5ee\r
-5tiq\r
-ti3sa\r
-3tise\r
-tis4m\r
-ti5so\r
-tis4p\r
-5tistica\r
-ti3tl\r
-ti4u\r
-1tiv\r
-tiv4a\r
-1tiz\r
-ti3za\r
-ti3zen\r
-2tl\r
-t5la\r
-tlan4\r
-3tle.\r
-3tled\r
-3tles.\r
-t5let.\r
-t5lo\r
-4t1m\r
-tme4\r
-2t1n2\r
-1to\r
-to3b\r
-to5crat\r
-4todo\r
-2tof\r
-to2gr\r
-to5ic\r
-to2ma\r
-tom4b\r
-to3my\r
-ton4ali\r
-to3nat\r
-4tono\r
-4tony\r
-to2ra\r
-to3rie\r
-tor5iz\r
-tos2\r
-5tour\r
-4tout\r
-to3war\r
-4t1p\r
-1tra\r
-tra3b\r
-tra5ch\r
-traci4\r
-trac4it\r
-trac4te\r
-tras4\r
-tra5ven\r
-trav5es5\r
-tre5f\r
-tre4m\r
-trem5i\r
-5tria\r
-tri5ces\r
-5tricia\r
-4trics\r
-2trim\r
-tri4v\r
-tro5mi\r
-tron5i\r
-4trony\r
-tro5phe\r
-tro3sp\r
-tro3v\r
-tru5i\r
-trus4\r
-4t1s2\r
-t4sc\r
-tsh4\r
-t4sw\r
-4t3t2\r
-t4tes\r
-t5to\r
-ttu4\r
-1tu\r
-tu1a\r
-tu3ar\r
-tu4bi\r
-tud2\r
-4tue\r
-4tuf4\r
-5tu3i\r
-3tum\r
-tu4nis\r
-2t3up.\r
-3ture\r
-5turi\r
-tur3is\r
-tur5o\r
-tu5ry\r
-3tus\r
-4tv\r
-tw4\r
-4t1wa\r
-twis4\r
-4two\r
-1ty\r
-4tya\r
-2tyl\r
-type3\r
-ty5ph\r
-4tz\r
-tz4e\r
-4uab\r
-uac4\r
-ua5na\r
-uan4i\r
-uar5ant\r
-uar2d\r
-uar3i\r
-uar3t\r
-u1at\r
-uav4\r
-ub4e\r
-u4bel\r
-u3ber\r
-u4bero\r
-u1b4i\r
-u4b5ing\r
-u3ble.\r
-u3ca\r
-uci4b\r
-uc4it\r
-ucle3\r
-u3cr\r
-u3cu\r
-u4cy\r
-ud5d\r
-ud3er\r
-ud5est\r
-udev4\r
-u1dic\r
-ud3ied\r
-ud3ies\r
-ud5is\r
-u5dit\r
-u4don\r
-ud4si\r
-u4du\r
-u4ene\r
-uens4\r
-uen4te\r
-uer4il\r
-3ufa\r
-u3fl\r
-ugh3en\r
-ug5in\r
-2ui2\r
-uil5iz\r
-ui4n\r
-u1ing\r
-uir4m\r
-uita4\r
-uiv3\r
-uiv4er.\r
-u5j\r
-4uk\r
-u1la\r
-ula5b\r
-u5lati\r
-ulch4\r
-5ulche\r
-ul3der\r
-ul4e\r
-u1len\r
-ul4gi\r
-ul2i\r
-u5lia\r
-ul3ing\r
-ul5ish\r
-ul4lar\r
-ul4li4b\r
-ul4lis\r
-4ul3m\r
-u1l4o\r
-4uls\r
-uls5es\r
-ul1ti\r
-ultra3\r
-4ultu\r
-u3lu\r
-ul5ul\r
-ul5v\r
-um5ab\r
-um4bi\r
-um4bly\r
-u1mi\r
-u4m3ing\r
-umor5o\r
-um2p\r
-unat4\r
-u2ne\r
-un4er\r
-u1ni\r
-un4im\r
-u2nin\r
-un5ish\r
-uni3v\r
-un3s4\r
-un4sw\r
-unt3ab\r
-un4ter.\r
-un4tes\r
-unu4\r
-un5y\r
-un5z\r
-u4ors\r
-u5os\r
-u1ou\r
-u1pe\r
-uper5s\r
-u5pia\r
-up3ing\r
-u3pl\r
-up3p\r
-upport5\r
-upt5ib\r
-uptu4\r
-u1ra\r
-4ura.\r
-u4rag\r
-u4ras\r
-ur4be\r
-urc4\r
-ur1d\r
-ure5at\r
-ur4fer\r
-ur4fr\r
-u3rif\r
-uri4fic\r
-ur1in\r
-u3rio\r
-u1rit\r
-ur3iz\r
-ur2l\r
-url5ing.\r
-ur4no\r
-uros4\r
-ur4pe\r
-ur4pi\r
-urs5er\r
-ur5tes\r
-ur3the\r
-urti4\r
-ur4tie\r
-u3ru\r
-2us\r
-u5sad\r
-u5san\r
-us4ap\r
-usc2\r
-us3ci\r
-use5a\r
-u5sia\r
-u3sic\r
-us4lin\r
-us1p\r
-us5sl\r
-us5tere\r
-us1tr\r
-u2su\r
-usur4\r
-uta4b\r
-u3tat\r
-4ute.\r
-4utel\r
-4uten\r
-uten4i\r
-4u1t2i\r
-uti5liz\r
-u3tine\r
-ut3ing\r
-ution5a\r
-u4tis\r
-5u5tiz\r
-u4t1l\r
-ut5of\r
-uto5g\r
-uto5matic\r
-u5ton\r
-u4tou\r
-uts4\r
-u3u\r
-uu4m\r
-u1v2\r
-uxu3\r
-uz4e\r
-1va\r
-5va.\r
-2v1a4b\r
-vac5il\r
-vac3u\r
-vag4\r
-va4ge\r
-va5lie\r
-val5o\r
-val1u\r
-va5mo\r
-va5niz\r
-va5pi\r
-var5ied\r
-3vat\r
-4ve.\r
-4ved\r
-veg3\r
-v3el.\r
-vel3li\r
-ve4lo\r
-v4ely\r
-ven3om\r
-v5enue\r
-v4erd\r
-5vere.\r
-v4erel\r
-v3eren\r
-ver5enc\r
-v4eres\r
-ver3ie\r
-vermi4n\r
-3verse\r
-ver3th\r
-v4e2s\r
-4ves.\r
-ves4te\r
-ve4te\r
-vet3er\r
-ve4ty\r
-vi5ali\r
-5vian\r
-5vide.\r
-5vided\r
-4v3iden\r
-5vides\r
-5vidi\r
-v3if\r
-vi5gn\r
-vik4\r
-2vil\r
-5vilit\r
-v3i3liz\r
-v1in\r
-4vi4na\r
-v2inc\r
-vin5d\r
-4ving\r
-vio3l\r
-v3io4r\r
-vi1ou\r
-vi4p\r
-vi5ro\r
-vis3it\r
-vi3so\r
-vi3su\r
-4viti\r
-vit3r\r
-4vity\r
-3viv\r
-5vo.\r
-voi4\r
-3vok\r
-vo4la\r
-v5ole\r
-5volt\r
-3volv\r
-vom5i\r
-vor5ab\r
-vori4\r
-vo4ry\r
-vo4ta\r
-4votee\r
-4vv4\r
-v4y\r
-w5abl\r
-2wac\r
-wa5ger\r
-wag5o\r
-wait5\r
-w5al.\r
-wam4\r
-war4t\r
-was4t\r
-wa1te\r
-wa5ver\r
-w1b\r
-wea5rie\r
-weath3\r
-wed4n\r
-weet3\r
-wee5v\r
-wel4l\r
-w1er\r
-west3\r
-w3ev\r
-whi4\r
-wi2\r
-wil2\r
-will5in\r
-win4de\r
-win4g\r
-wir4\r
-3wise\r
-with3\r
-wiz5\r
-w4k\r
-wl4es\r
-wl3in\r
-w4no\r
-1wo2\r
-wom1\r
-wo5ven\r
-w5p\r
-wra4\r
-wri4\r
-writa4\r
-w3sh\r
-ws4l\r
-ws4pe\r
-w5s4t\r
-4wt\r
-wy4\r
-x1a\r
-xac5e\r
-x4ago\r
-xam3\r
-x4ap\r
-xas5\r
-x3c2\r
-x1e\r
-xe4cuto\r
-x2ed\r
-xer4i\r
-xe5ro\r
-x1h\r
-xhi2\r
-xhil5\r
-xhu4\r
-x3i\r
-xi5a\r
-xi5c\r
-xi5di\r
-x4ime\r
-xi5miz\r
-x3o\r
-x4ob\r
-x3p\r
-xpan4d\r
-xpecto5\r
-xpe3d\r
-x1t2\r
-x3ti\r
-x1u\r
-xu3a\r
-xx4\r
-y5ac\r
-3yar4\r
-y5at\r
-y1b\r
-y1c\r
-y2ce\r
-yc5er\r
-y3ch\r
-ych4e\r
-ycom4\r
-ycot4\r
-y1d\r
-y5ee\r
-y1er\r
-y4erf\r
-yes4\r
-ye4t\r
-y5gi\r
-4y3h\r
-y1i\r
-y3la\r
-ylla5bl\r
-y3lo\r
-y5lu\r
-ymbol5\r
-yme4\r
-ympa3\r
-yn3chr\r
-yn5d\r
-yn5g\r
-yn5ic\r
-5ynx\r
-y1o4\r
-yo5d\r
-y4o5g\r
-yom4\r
-yo5net\r
-y4ons\r
-y4os\r
-y4ped\r
-yper5\r
-yp3i\r
-y3po\r
-y4poc\r
-yp2ta\r
-y5pu\r
-yra5m\r
-yr5ia\r
-y3ro\r
-yr4r\r
-ys4c\r
-y3s2e\r
-ys3ica\r
-ys3io\r
-3ysis\r
-y4so\r
-yss4\r
-ys1t\r
-ys3ta\r
-ysur4\r
-y3thin\r
-yt3ic\r
-y1w\r
-za1\r
-z5a2b\r
-zar2\r
-4zb\r
-2ze\r
-ze4n\r
-ze4p\r
-z1er\r
-ze3ro\r
-zet4\r
-2z1i\r
-z4il\r
-z4is\r
-5zl\r
-4zm\r
-1zo\r
-zo4m\r
-zo5ol\r
-zte4\r
-4z1z2\r
-z4zy\r
-}\r
-\hyphenation{ % Do NOT make any alterations to this list! --- DEK\r
-as-so-ciate\r
-as-so-ciates\r
-dec-li-na-tion\r
-oblig-a-tory\r
-phil-an-thropic\r
-present\r
-presents\r
-project\r
-projects\r
-reci-procity\r
-re-cog-ni-zance\r
-ref-or-ma-tion\r
-ret-ri-bu-tion\r
-ta-ble\r
-}\r
+package TeX::Hyphen;
+
+=head1 NAME
+
+TeX::Hyphen -- hyphenate words using TeX's patterns
+
+=head1 SYNOPSIS
+
+       use TeX::Hyphen;
+       my $hyp = new TeX::Hyphen 'file' => 'hyphen.tex',
+               'style' => 'czech', leftmin => 2,
+               rightmin => 2;
+
+       # my $hyp = new TeX::Hyphen "hyphen.tex";
+
+       my $word = "representation";
+       my @points = $hyp->hyphenate($word);
+       print $hyp->visualize($word), "\n";
+
+=head1 DESCRIPTION
+
+Constructor new() creates a new Hyphen object and loads the file with
+patterns into memory. Then you can ask it for hyphenation of a word by
+calling a method of this object. If no file is specified, the default
+Donald E. Knuth's F<hyphen.tex>, that is included in this module, is
+used instead.
+
+=head2 Arguments to constructor
+
+You can pass arguments to the new() call as hash, possible options are
+
+=over 4
+
+=item file
+
+Name of the file with the patters. It will be loaded and the resulting
+object will be able to hyphenate according to patterns in that file.
+
+For convenience and backward compatibility, the file name can also be
+specified as the first (odd) parameter to new().
+
+=item style
+
+Various languages use special shortcuts to specify the patterns.
+Instead of doing the full TeX expansion, we use Perl code to parse the
+patterns. The style option loads TeX::Hyphen::name_of_the_style module
+and uses the parsing functions found in it.
+
+Currently, the default czech (which also works for English alright)
+and german are available. See the TeX::Hyphen::czech man page for more
+information, especially if you want to support other
+languages/styles.
+
+=item leftmin
+
+The minimum starting substring which will not be hyphenated. This
+overrides the default specified in the style file.
+
+=item rightmin
+
+The minimum ending substring which will not be hyphenated. This
+overrides the default specified in the style file.
+
+=back
+
+=head2 Methods that are supported
+
+Method hyphenate() returns list of places where the word can be
+divided, so
+
+       $hyp->visualize('representation')
+
+returns list (3, 5, 8, 10).
+
+Method visualize() can be used to show these points, so
+
+       $hyp->visualize('representation')
+       
+should return C<rep-re-sen-ta-tion>, at least for English patterns.
+
+Variables I<$TeX::Hyphen::LEFTMIN> and I<$TeX::Hyphen::RIGHTMIN> can
+be used to restrict minimal starting and ending substring where it is
+not possible to hyphenate. They both default to 2 but should be
+changed to match the paratemers used to generate the patterns.
+
+Variable I<$TeX::Hyphen::DEBUG> can be set to see some statistics and
+processing.
+
+The file with hyphenation patterns may contain C<\'> and C<\v> accents,
+used in the Czech (and other) languages.
+
+=cut
+
+use strict;
+use vars qw( $VERSION $DEBUG $LEFTMIN $RIGHTMIN $errstr );
+
+$VERSION = '0.140';
+sub Version () { $VERSION; }
+
+$DEBUG ||= 0;
+
+# To protect beginning and end of the word from hyphenation
+$LEFTMIN = 2;
+$RIGHTMIN = 2;
+
+my (@DATA, $DATA_LOADED);
+
+# #############################################################
+# Constructor. Parameter specifies file with patterns.
+# File is searched for \patterns{ ... } and \hyphenation{ ... }
+# sections and these are used.
+#
+sub new {
+       my $class = shift;
+       my ($file, %opts);
+       if (scalar(@_) % 2) {
+               $file = shift;
+               %opts = @_;
+       } else {
+               %opts = @_;
+               $file = $opts{'file'};
+       }
+       if (not defined $file) {
+               if (not defined $DATA_LOADED) {
+                       @DATA = <DATA>;
+                       $DATA_LOADED = 1;
+               }
+       } else {
+               open FILE, $file or do {
+                       $errstr = "Error opening file `$file': $!";
+                       return;
+               };
+       }
+       my $self = {};
+       bless $self, $class;
+
+       local ($/) = "\n";
+       my ($tag, $value);
+       my $hyphen = {};
+       my $beginhyphen = {};
+       my $endhyphen = {};
+       my $bothhyphen = {};
+       my $exception = {};
+
+       my ($process_patterns, $process_hyphenation);
+       my ($leftmin, $rightmin) = ($LEFTMIN, $RIGHTMIN);
+       if (not defined $opts{'style'}) {
+               $opts{'style'} = 'czech';       # for backward compatibility
+       }
+       if (defined $opts{'style'}) {
+               eval qq!use ${class}::$opts{'style'}!;
+               if (not $@) {
+                       eval "\$process_patterns = \\&${class}::$opts{'style'}::process_patterns";
+                       eval "\$process_hyphenation = \\&${class}::$opts{'style'}::process_hyphenation";
+                       eval "\$leftmin = \$${class}::$opts{'style'}::LEFTMIN";
+                       eval "\$rightmin = \$${class}::$opts{'style'}::RIGHTMIN";
+               } else {
+                       $errstr = "Error loading style module $class::$opts{'style'}: $@";
+                       return;
+               }
+       }
+       $leftmin = $opts{leftmin} if exists $opts{leftmin};
+       $rightmin = $opts{rightmin} if exists $opts{rightmin};
+
+       my $i = 0;
+       while ((defined $file and defined($_ = <FILE>))
+               or (not defined $file and defined($_ = $DATA[$i]))) {
+               $i++;
+               s/\%.*$//;                      # comment out
+               next if 1 .. /\\patterns{/;     # find the \patterns section
+               
+               chomp;
+
+               last unless
+                       $process_patterns->($_, $bothhyphen, $beginhyphen,
+                       $endhyphen, $hyphen);
+       }
+       my $tell = $i + 1;
+       while ((defined $file and defined($_ = <FILE>))
+               or (not defined $file and defined($_ = $DATA[$i]))) {
+               $i++;
+               next if (( $i == $tell) .. /\\hyphenation{/);
+
+               chomp;
+
+               last unless $process_hyphenation->($_, $exception);
+       }
+       close FILE if not defined $file;
+       $self->{hyphen} = $hyphen;
+       $self->{begin} = $beginhyphen;
+       $self->{end} = $endhyphen;
+       $self->{both} = $bothhyphen;
+       $self->{exception} = $exception;
+       print STDERR 'Statistics for ', (defined $file ? $file : 'hyphen.tex'),
+               ': all ' , scalar %$hyphen,
+               ' (', scalar keys %$hyphen,
+               '), exception ', scalar %$exception,
+               ' (', scalar keys %$exception,
+               "),\n\tbegin ", scalar %$beginhyphen,
+               ' (', scalar keys %$beginhyphen,
+               '), end ', scalar %$endhyphen,
+               ' (', scalar keys %$endhyphen,
+               '), both ', scalar %$bothhyphen,
+               ' (', scalar keys %$bothhyphen, ")\n" if $DEBUG;
+       
+       $self->{exact} = { %$exception };
+       $self->{leftmin} = $leftmin;
+       $self->{rightmin} = $rightmin;
+       $self;
+}
+
+# ############################################
+# For given word finds places for hyphenation.
+# Returns an array specifying the places.
+#
+sub hyphenate {
+       my ($self, $word) = (shift, shift);
+
+       print STDERR "Hyphenate `$word'\n" if $DEBUG;
+       
+       my $exact = $self->{exact};
+       if (defined(my $res = $exact->{$word})) {
+               print STDERR "Exact match $res\n" if $DEBUG;
+               return $self->make_result_list($res);
+       }
+
+       my $hyphen = $self->{hyphen};
+       my $beginhyphen = $self->{begin};
+       my $endhyphen = $self->{end};
+       my $bothhyphen = $self->{both};
+
+       my $totallength = length $word;
+       my @result = (0) x ($totallength + 1);
+
+       # walk the word
+       my $rightstop = $totallength - $RIGHTMIN;
+       my $pos;
+       for ($pos = 0; $pos <= $rightstop; $pos++) {
+                       # length of the rest of the word
+               my $restlength = $totallength - $pos;
+                       # length of a substring
+               my $length;
+               for ($length = 1; $length <= $restlength; $length++) {
+                       my $substr = substr $word, $pos, $length;
+                       my $value;
+                       my $j;
+                       my $letter;
+                       if (defined($value = $hyphen->{$substr})) {
+                               $j = $pos;
+                               print STDERR "$j: $substr: $value\n" if $DEBUG > 2;
+                               while ($value =~ /(.)/gs) {
+                                       $result[$j] = $1 if ($1 > $result[$j]);
+                                       $j++;
+                               }
+                       }
+                       if (($pos == 0) and
+                               defined($value = $beginhyphen->{$substr})) {
+                               $j = 0;
+                               print STDERR "$j: $substr: $value\n" if $DEBUG > 2;
+                               while ($value =~ /(.)/gs) {
+                                       $result[$j] = $1 if ($1 > $result[$j]);
+                                       $j++;
+                               }
+                       }
+                       if (($restlength == $length) and
+                               defined($value = $endhyphen->{$substr})) {
+                               $j = $pos;
+                               print STDERR "$j: $substr: $value\n" if $DEBUG > 2;
+                               while ($value =~ /(.)/gs) {
+                                       $result[$j] = $1 if ($1 > $result[$j]);
+                                       $j++;
+                               }
+                       }
+               }
+       }
+       my $value;
+       my $letter;
+       if (defined($value = $bothhyphen->{$word})) {
+               my $j = 0;
+               print STDERR "$j: $word: $value\n" if $DEBUG > 2;
+               while ($value =~ /(.)/gs) {
+                       $result[$j] = $1 if ($1 > $result[$j]);
+                       $j++;
+               }
+       }
+
+       my $result = join '', @result;
+       ### substr($result, 0, $self->{leftmin} + 1) = '0' x ($self->{leftmin} + 1);
+       substr($result, 0, $self->{leftmin}) = '0' x $self->{leftmin};
+       substr($result, -$self->{rightmin}) = '0' x $self->{rightmin};
+
+       print STDERR "Result: $result\n" if $DEBUG;
+       return $self->make_result_list($result);
+}
+
+# ####################
+#
+#
+sub make_result_list {
+       my ($self, $result) = @_;
+       my @result = ();
+       my $i = 0;
+       while ($result =~ /./g) {
+               push @result, $i if (int($&) % 2);
+               $i++;
+       }
+       @result;
+}
+
+# #########################################
+# For a word show the result of hyphenation
+#
+sub visualize {
+       my ($self, $word) = (shift, shift);
+       my $number = 0;
+       my $pos;
+       for $pos ($self->hyphenate($word)) {
+               substr($word, $pos + $number, 0) = "-";
+               $number++;
+       }
+       $word;
+}
+
+=head1 CHANGES
+
+=over
+
+=item 0.110 Tue Dec 11 14:26:15 MET 2001
+
+Support for more languages made modular, code for German parsing
+provided by Slaven Rezic.
+
+=item 0.101 Wed Nov  3 16:06:02 MET 1999
+
+Parsing of patterns extended to allow other styles as well -- Spanish
+pattern file provided by Adrian Perez Jorge.
+
+=item 0.10 Fri Dec 11 10:58:01 MET 1998
+
+Bug fixes concering LEFTMIN and RIGHTMIN values and use of exceptions
+(thanks go to Vladimir Volovich).
+
+=item 0.06 Mon Jul 21 18:53:26 MET DST 1997
+
+Exception table handling added -- error spotted by Jon Orwant.
+
+=item 0.05 Wed Jul  9 14:49:42 MET DST 1997
+
+Added the default F<hyphen.tex> into the module and possibility to
+call the constructior without argument to get this default pattern
+file.
+
+=item 0.04 Wed Apr  9 15:41:32 MET DST 1997
+
+Hash lookup made faster.
+
+Method TeX::Hyphen::visualize() only takes one argument, it calls
+hyphenate().
+
+=item 0.03 Sun Feb 16 13:55:26 MET 1997
+
+Hash lookup made faster.
+
+Original name B<Hyphen> chaged to B<TeX::Hyphen>.
+
+=back
+
+=head1 VERSION
+
+0.140
+
+=head1 SEE ALSO
+
+perl(1), TeX::Hyphen::czech.
+
+=head1 AUTHOR
+
+(c) 1997--2002 Jan Pazdziora, adelton@fi.muni.cz
+at Faculty of Informatics, Masaryk University, Brno
+
+=cut
+
+1;
+
+__DATA__
+% The Plain TeX hyphenation tables [NOT TO BE CHANGED IN ANY WAY!]
+\patterns{ % just type <return> if you're not using INITEX
+.ach4
+.ad4der
+.af1t
+.al3t
+.am5at
+.an5c
+.ang4
+.ani5m
+.ant4
+.an3te
+.anti5s
+.ar5s
+.ar4tie
+.ar4ty
+.as3c
+.as1p
+.as1s
+.aster5
+.atom5
+.au1d
+.av4i
+.awn4
+.ba4g
+.ba5na
+.bas4e
+.ber4
+.be5ra
+.be3sm
+.be5sto
+.bri2
+.but4ti
+.cam4pe
+.can5c
+.capa5b
+.car5ol
+.ca4t
+.ce4la
+.ch4
+.chill5i
+.ci2
+.cit5r
+.co3e
+.co4r
+.cor5ner
+.de4moi
+.de3o
+.de3ra
+.de3ri
+.des4c
+.dictio5
+.do4t
+.du4c
+.dumb5
+.earth5
+.eas3i
+.eb4
+.eer4
+.eg2
+.el5d
+.el3em
+.enam3
+.en3g
+.en3s
+.eq5ui5t
+.er4ri
+.es3
+.eu3
+.eye5
+.fes3
+.for5mer
+.ga2
+.ge2
+.gen3t4
+.ge5og
+.gi5a
+.gi4b
+.go4r
+.hand5i
+.han5k
+.he2
+.hero5i
+.hes3
+.het3
+.hi3b
+.hi3er
+.hon5ey
+.hon3o
+.hov5
+.id4l
+.idol3
+.im3m
+.im5pin
+.in1
+.in3ci
+.ine2
+.in2k
+.in3s
+.ir5r
+.is4i
+.ju3r
+.la4cy
+.la4m
+.lat5er
+.lath5
+.le2
+.leg5e
+.len4
+.lep5
+.lev1
+.li4g
+.lig5a
+.li2n
+.li3o
+.li4t
+.mag5a5
+.mal5o
+.man5a
+.mar5ti
+.me2
+.mer3c
+.me5ter
+.mis1
+.mist5i
+.mon3e
+.mo3ro
+.mu5ta
+.muta5b
+.ni4c
+.od2
+.odd5
+.of5te
+.or5ato
+.or3c
+.or1d
+.or3t
+.os3
+.os4tl
+.oth3
+.out3
+.ped5al
+.pe5te
+.pe5tit
+.pi4e
+.pio5n
+.pi2t
+.pre3m
+.ra4c
+.ran4t
+.ratio5na
+.ree2
+.re5mit
+.res2
+.re5stat
+.ri4g
+.rit5u
+.ro4q
+.ros5t
+.row5d
+.ru4d
+.sci3e
+.self5
+.sell5
+.se2n
+.se5rie
+.sh2
+.si2
+.sing4
+.st4
+.sta5bl
+.sy2
+.ta4
+.te4
+.ten5an
+.th2
+.ti2
+.til4
+.tim5o5
+.ting4
+.tin5k
+.ton4a
+.to4p
+.top5i
+.tou5s
+.trib5ut
+.un1a
+.un3ce
+.under5
+.un1e
+.un5k
+.un5o
+.un3u
+.up3
+.ure3
+.us5a
+.ven4de
+.ve5ra
+.wil5i
+.ye4
+4ab.
+a5bal
+a5ban
+abe2
+ab5erd
+abi5a
+ab5it5ab
+ab5lat
+ab5o5liz
+4abr
+ab5rog
+ab3ul
+a4car
+ac5ard
+ac5aro
+a5ceou
+ac1er
+a5chet
+4a2ci
+a3cie
+ac1in
+a3cio
+ac5rob
+act5if
+ac3ul
+ac4um
+a2d
+ad4din
+ad5er.
+2adi
+a3dia
+ad3ica
+adi4er
+a3dio
+a3dit
+a5diu
+ad4le
+ad3ow
+ad5ran
+ad4su
+4adu
+a3duc
+ad5um
+ae4r
+aeri4e
+a2f
+aff4
+a4gab
+aga4n
+ag5ell
+age4o
+4ageu
+ag1i
+4ag4l
+ag1n
+a2go
+3agog
+ag3oni
+a5guer
+ag5ul
+a4gy
+a3ha
+a3he
+ah4l
+a3ho
+ai2
+a5ia
+a3ic.
+ai5ly
+a4i4n
+ain5in
+ain5o
+ait5en
+a1j
+ak1en
+al5ab
+al3ad
+a4lar
+4aldi
+2ale
+al3end
+a4lenti
+a5le5o
+al1i
+al4ia.
+ali4e
+al5lev
+4allic
+4alm
+a5log.
+a4ly.
+4alys
+5a5lyst
+5alyt
+3alyz
+4ama
+am5ab
+am3ag
+ama5ra
+am5asc
+a4matis
+a4m5ato
+am5era
+am3ic
+am5if
+am5ily
+am1in
+ami4no
+a2mo
+a5mon
+amor5i
+amp5en
+a2n
+an3age
+3analy
+a3nar
+an3arc
+anar4i
+a3nati
+4and
+ande4s
+an3dis
+an1dl
+an4dow
+a5nee
+a3nen
+an5est.
+a3neu
+2ang
+ang5ie
+an1gl
+a4n1ic
+a3nies
+an3i3f
+an4ime
+a5nimi
+a5nine
+an3io
+a3nip
+an3ish
+an3it
+a3niu
+an4kli
+5anniz
+ano4
+an5ot
+anoth5
+an2sa
+an4sco
+an4sn
+an2sp
+ans3po
+an4st
+an4sur
+antal4
+an4tie
+4anto
+an2tr
+an4tw
+an3ua
+an3ul
+a5nur
+4ao
+apar4
+ap5at
+ap5ero
+a3pher
+4aphi
+a4pilla
+ap5illar
+ap3in
+ap3ita
+a3pitu
+a2pl
+apoc5
+ap5ola
+apor5i
+apos3t
+aps5es
+a3pu
+aque5
+2a2r
+ar3act
+a5rade
+ar5adis
+ar3al
+a5ramete
+aran4g
+ara3p
+ar4at
+a5ratio
+ar5ativ
+a5rau
+ar5av4
+araw4
+arbal4
+ar4chan
+ar5dine
+ar4dr
+ar5eas
+a3ree
+ar3ent
+a5ress
+ar4fi
+ar4fl
+ar1i
+ar5ial
+ar3ian
+a3riet
+ar4im
+ar5inat
+ar3io
+ar2iz
+ar2mi
+ar5o5d
+a5roni
+a3roo
+ar2p
+ar3q
+arre4
+ar4sa
+ar2sh
+4as.
+as4ab
+as3ant
+ashi4
+a5sia.
+a3sib
+a3sic
+5a5si4t
+ask3i
+as4l
+a4soc
+as5ph
+as4sh
+as3ten
+as1tr
+asur5a
+a2ta
+at3abl
+at5ac
+at3alo
+at5ap
+ate5c
+at5ech
+at3ego
+at3en.
+at3era
+ater5n
+a5terna
+at3est
+at5ev
+4ath
+ath5em
+a5then
+at4ho
+ath5om
+4ati.
+a5tia
+at5i5b
+at1ic
+at3if
+ation5ar
+at3itu
+a4tog
+a2tom
+at5omiz
+a4top
+a4tos
+a1tr
+at5rop
+at4sk
+at4tag
+at5te
+at4th
+a2tu
+at5ua
+at5ue
+at3ul
+at3ura
+a2ty
+au4b
+augh3
+au3gu
+au4l2
+aun5d
+au3r
+au5sib
+aut5en
+au1th
+a2va
+av3ag
+a5van
+ave4no
+av3era
+av5ern
+av5ery
+av1i
+avi4er
+av3ig
+av5oc
+a1vor
+3away
+aw3i
+aw4ly
+aws4
+ax4ic
+ax4id
+ay5al
+aye4
+ays4
+azi4er
+azz5i
+5ba.
+bad5ger
+ba4ge
+bal1a
+ban5dag
+ban4e
+ban3i
+barbi5
+bari4a
+bas4si
+1bat
+ba4z
+2b1b
+b2be
+b3ber
+bbi4na
+4b1d
+4be.
+beak4
+beat3
+4be2d
+be3da
+be3de
+be3di
+be3gi
+be5gu
+1bel
+be1li
+be3lo
+4be5m
+be5nig
+be5nu
+4bes4
+be3sp
+be5str
+3bet
+bet5iz
+be5tr
+be3tw
+be3w
+be5yo
+2bf
+4b3h
+bi2b
+bi4d
+3bie
+bi5en
+bi4er
+2b3if
+1bil
+bi3liz
+bina5r4
+bin4d
+bi5net
+bi3ogr
+bi5ou
+bi2t
+3bi3tio
+bi3tr
+3bit5ua
+b5itz
+b1j
+bk4
+b2l2
+blath5
+b4le.
+blen4
+5blesp
+b3lis
+b4lo
+blun4t
+4b1m
+4b3n
+bne5g
+3bod
+bod3i
+bo4e
+bol3ic
+bom4bi
+bon4a
+bon5at
+3boo
+5bor.
+4b1ora
+bor5d
+5bore
+5bori
+5bos4
+b5ota
+both5
+bo4to
+bound3
+4bp
+4brit
+broth3
+2b5s2
+bsor4
+2bt
+bt4l
+b4to
+b3tr
+buf4fer
+bu4ga
+bu3li
+bumi4
+bu4n
+bunt4i
+bu3re
+bus5ie
+buss4e
+5bust
+4buta
+3butio
+b5uto
+b1v
+4b5w
+5by.
+bys4
+1ca
+cab3in
+ca1bl
+cach4
+ca5den
+4cag4
+2c5ah
+ca3lat
+cal4la
+call5in
+4calo
+can5d
+can4e
+can4ic
+can5is
+can3iz
+can4ty
+cany4
+ca5per
+car5om
+cast5er
+cas5tig
+4casy
+ca4th
+4cativ
+cav5al
+c3c
+ccha5
+cci4a
+ccompa5
+ccon4
+ccou3t
+2ce.
+4ced.
+4ceden
+3cei
+5cel.
+3cell
+1cen
+3cenc
+2cen4e
+4ceni
+3cent
+3cep
+ce5ram
+4cesa
+3cessi
+ces5si5b
+ces5t
+cet4
+c5e4ta
+cew4
+2ch
+4ch.
+4ch3ab
+5chanic
+ch5a5nis
+che2
+cheap3
+4ched
+che5lo
+3chemi
+ch5ene
+ch3er.
+ch3ers
+4ch1in
+5chine.
+ch5iness
+5chini
+5chio
+3chit
+chi2z
+3cho2
+ch4ti
+1ci
+3cia
+ci2a5b
+cia5r
+ci5c
+4cier
+5cific.
+4cii
+ci4la
+3cili
+2cim
+2cin
+c4ina
+3cinat
+cin3em
+c1ing
+c5ing.
+5cino
+cion4
+4cipe
+ci3ph
+4cipic
+4cista
+4cisti
+2c1it
+cit3iz
+5ciz
+ck1
+ck3i
+1c4l4
+4clar
+c5laratio
+5clare
+cle4m
+4clic
+clim4
+cly4
+c5n
+1co
+co5ag
+coe2
+2cog
+co4gr
+coi4
+co3inc
+col5i
+5colo
+col3or
+com5er
+con4a
+c4one
+con3g
+con5t
+co3pa
+cop3ic
+co4pl
+4corb
+coro3n
+cos4e
+cov1
+cove4
+cow5a
+coz5e
+co5zi
+c1q
+cras5t
+5crat.
+5cratic
+cre3at
+5cred
+4c3reta
+cre4v
+cri2
+cri5f
+c4rin
+cris4
+5criti
+cro4pl
+crop5o
+cros4e
+cru4d
+4c3s2
+2c1t
+cta4b
+ct5ang
+c5tant
+c2te
+c3ter
+c4ticu
+ctim3i
+ctu4r
+c4tw
+cud5
+c4uf
+c4ui
+cu5ity
+5culi
+cul4tis
+3cultu
+cu2ma
+c3ume
+cu4mi
+3cun
+cu3pi
+cu5py
+cur5a4b
+cu5ria
+1cus
+cuss4i
+3c4ut
+cu4tie
+4c5utiv
+4cutr
+1cy
+cze4
+1d2a
+5da.
+2d3a4b
+dach4
+4daf
+2dag
+da2m2
+dan3g
+dard5
+dark5
+4dary
+3dat
+4dativ
+4dato
+5dav4
+dav5e
+5day
+d1b
+d5c
+d1d4
+2de.
+deaf5
+deb5it
+de4bon
+decan4
+de4cil
+de5com
+2d1ed
+4dee.
+de5if
+deli4e
+del5i5q
+de5lo
+d4em
+5dem.
+3demic
+dem5ic.
+de5mil
+de4mons
+demor5
+1den
+de4nar
+de3no
+denti5f
+de3nu
+de1p
+de3pa
+depi4
+de2pu
+d3eq
+d4erh
+5derm
+dern5iz
+der5s
+des2
+d2es.
+de1sc
+de2s5o
+des3ti
+de3str
+de4su
+de1t
+de2to
+de1v
+dev3il
+4dey
+4d1f
+d4ga
+d3ge4t
+dg1i
+d2gy
+d1h2
+5di.
+1d4i3a
+dia5b
+di4cam
+d4ice
+3dict
+3did
+5di3en
+d1if
+di3ge
+di4lato
+d1in
+1dina
+3dine.
+5dini
+di5niz
+1dio
+dio5g
+di4pl
+dir2
+di1re
+dirt5i
+dis1
+5disi
+d4is3t
+d2iti
+1di1v
+d1j
+d5k2
+4d5la
+3dle.
+3dled
+3dles.
+4dless
+2d3lo
+4d5lu
+2dly
+d1m
+4d1n4
+1do
+3do.
+do5de
+5doe
+2d5of
+d4og
+do4la
+doli4
+do5lor
+dom5iz
+do3nat
+doni4
+doo3d
+dop4p
+d4or
+3dos
+4d5out
+do4v
+3dox
+d1p
+1dr
+drag5on
+4drai
+dre4
+drea5r
+5dren
+dri4b
+dril4
+dro4p
+4drow
+5drupli
+4dry
+2d1s2
+ds4p
+d4sw
+d4sy
+d2th
+1du
+d1u1a
+du2c
+d1uca
+duc5er
+4duct.
+4ducts
+du5el
+du4g
+d3ule
+dum4be
+du4n
+4dup
+du4pe
+d1v
+d1w
+d2y
+5dyn
+dy4se
+dys5p
+e1a4b
+e3act
+ead1
+ead5ie
+ea4ge
+ea5ger
+ea4l
+eal5er
+eal3ou
+eam3er
+e5and
+ear3a
+ear4c
+ear5es
+ear4ic
+ear4il
+ear5k
+ear2t
+eart3e
+ea5sp
+e3ass
+east3
+ea2t
+eat5en
+eath3i
+e5atif
+e4a3tu
+ea2v
+eav3en
+eav5i
+eav5o
+2e1b
+e4bel.
+e4bels
+e4ben
+e4bit
+e3br
+e4cad
+ecan5c
+ecca5
+e1ce
+ec5essa
+ec2i
+e4cib
+ec5ificat
+ec5ifie
+ec5ify
+ec3im
+eci4t
+e5cite
+e4clam
+e4clus
+e2col
+e4comm
+e4compe
+e4conc
+e2cor
+ec3ora
+eco5ro
+e1cr
+e4crem
+ec4tan
+ec4te
+e1cu
+e4cul
+ec3ula
+2e2da
+4ed3d
+e4d1er
+ede4s
+4edi
+e3dia
+ed3ib
+ed3ica
+ed3im
+ed1it
+edi5z
+4edo
+e4dol
+edon2
+e4dri
+e4dul
+ed5ulo
+ee2c
+eed3i
+ee2f
+eel3i
+ee4ly
+ee2m
+ee4na
+ee4p1
+ee2s4
+eest4
+ee4ty
+e5ex
+e1f
+e4f3ere
+1eff
+e4fic
+5efici
+efil4
+e3fine
+ef5i5nite
+3efit
+efor5es
+e4fuse.
+4egal
+eger4
+eg5ib
+eg4ic
+eg5ing
+e5git5
+eg5n
+e4go.
+e4gos
+eg1ul
+e5gur
+5egy
+e1h4
+eher4
+ei2
+e5ic
+ei5d
+eig2
+ei5gl
+e3imb
+e3inf
+e1ing
+e5inst
+eir4d
+eit3e
+ei3th
+e5ity
+e1j
+e4jud
+ej5udi
+eki4n
+ek4la
+e1la
+e4la.
+e4lac
+elan4d
+el5ativ
+e4law
+elaxa4
+e3lea
+el5ebra
+5elec
+e4led
+el3ega
+e5len
+e4l1er
+e1les
+el2f
+el2i
+e3libe
+e4l5ic.
+el3ica
+e3lier
+el5igib
+e5lim
+e4l3ing
+e3lio
+e2lis
+el5ish
+e3liv3
+4ella
+el4lab
+ello4
+e5loc
+el5og
+el3op.
+el2sh
+el4ta
+e5lud
+el5ug
+e4mac
+e4mag
+e5man
+em5ana
+em5b
+e1me
+e2mel
+e4met
+em3ica
+emi4e
+em5igra
+em1in2
+em5ine
+em3i3ni
+e4mis
+em5ish
+e5miss
+em3iz
+5emniz
+emo4g
+emoni5o
+em3pi
+e4mul
+em5ula
+emu3n
+e3my
+en5amo
+e4nant
+ench4er
+en3dic
+e5nea
+e5nee
+en3em
+en5ero
+en5esi
+en5est
+en3etr
+e3new
+en5ics
+e5nie
+e5nil
+e3nio
+en3ish
+en3it
+e5niu
+5eniz
+4enn
+4eno
+eno4g
+e4nos
+en3ov
+en4sw
+ent5age
+4enthes
+en3ua
+en5uf
+e3ny.
+4en3z
+e5of
+eo2g
+e4oi4
+e3ol
+eop3ar
+e1or
+eo3re
+eo5rol
+eos4
+e4ot
+eo4to
+e5out
+e5ow
+e2pa
+e3pai
+ep5anc
+e5pel
+e3pent
+ep5etitio
+ephe4
+e4pli
+e1po
+e4prec
+ep5reca
+e4pred
+ep3reh
+e3pro
+e4prob
+ep4sh
+ep5ti5b
+e4put
+ep5uta
+e1q
+equi3l
+e4q3ui3s
+er1a
+era4b
+4erand
+er3ar
+4erati.
+2erb
+er4bl
+er3ch
+er4che
+2ere.
+e3real
+ere5co
+ere3in
+er5el.
+er3emo
+er5ena
+er5ence
+4erene
+er3ent
+ere4q
+er5ess
+er3est
+eret4
+er1h
+er1i
+e1ria4
+5erick
+e3rien
+eri4er
+er3ine
+e1rio
+4erit
+er4iu
+eri4v
+e4riva
+er3m4
+er4nis
+4ernit
+5erniz
+er3no
+2ero
+er5ob
+e5roc
+ero4r
+er1ou
+er1s
+er3set
+ert3er
+4ertl
+er3tw
+4eru
+eru4t
+5erwau
+e1s4a
+e4sage.
+e4sages
+es2c
+e2sca
+es5can
+e3scr
+es5cu
+e1s2e
+e2sec
+es5ecr
+es5enc
+e4sert.
+e4serts
+e4serva
+4esh
+e3sha
+esh5en
+e1si
+e2sic
+e2sid
+es5iden
+es5igna
+e2s5im
+es4i4n
+esis4te
+esi4u
+e5skin
+es4mi
+e2sol
+es3olu
+e2son
+es5ona
+e1sp
+es3per
+es5pira
+es4pre
+2ess
+es4si4b
+estan4
+es3tig
+es5tim
+4es2to
+e3ston
+2estr
+e5stro
+estruc5
+e2sur
+es5urr
+es4w
+eta4b
+eten4d
+e3teo
+ethod3
+et1ic
+e5tide
+etin4
+eti4no
+e5tir
+e5titio
+et5itiv
+4etn
+et5ona
+e3tra
+e3tre
+et3ric
+et5rif
+et3rog
+et5ros
+et3ua
+et5ym
+et5z
+4eu
+e5un
+e3up
+eu3ro
+eus4
+eute4
+euti5l
+eu5tr
+eva2p5
+e2vas
+ev5ast
+e5vea
+ev3ell
+evel3o
+e5veng
+even4i
+ev1er
+e5verb
+e1vi
+ev3id
+evi4l
+e4vin
+evi4v
+e5voc
+e5vu
+e1wa
+e4wag
+e5wee
+e3wh
+ewil5
+ew3ing
+e3wit
+1exp
+5eyc
+5eye.
+eys4
+1fa
+fa3bl
+fab3r
+fa4ce
+4fag
+fain4
+fall5e
+4fa4ma
+fam5is
+5far
+far5th
+fa3ta
+fa3the
+4fato
+fault5
+4f5b
+4fd
+4fe.
+feas4
+feath3
+fe4b
+4feca
+5fect
+2fed
+fe3li
+fe4mo
+fen2d
+fend5e
+fer1
+5ferr
+fev4
+4f1f
+f4fes
+f4fie
+f5fin.
+f2f5is
+f4fly
+f2fy
+4fh
+1fi
+fi3a
+2f3ic.
+4f3ical
+f3ican
+4ficate
+f3icen
+fi3cer
+fic4i
+5ficia
+5ficie
+4fics
+fi3cu
+fi5del
+fight5
+fil5i
+fill5in
+4fily
+2fin
+5fina
+fin2d5
+fi2ne
+f1in3g
+fin4n
+fis4ti
+f4l2
+f5less
+flin4
+flo3re
+f2ly5
+4fm
+4fn
+1fo
+5fon
+fon4de
+fon4t
+fo2r
+fo5rat
+for5ay
+fore5t
+for4i
+fort5a
+fos5
+4f5p
+fra4t
+f5rea
+fres5c
+fri2
+fril4
+frol5
+2f3s
+2ft
+f4to
+f2ty
+3fu
+fu5el
+4fug
+fu4min
+fu5ne
+fu3ri
+fusi4
+fus4s
+4futa
+1fy
+1ga
+gaf4
+5gal.
+3gali
+ga3lo
+2gam
+ga5met
+g5amo
+gan5is
+ga3niz
+gani5za
+4gano
+gar5n4
+gass4
+gath3
+4gativ
+4gaz
+g3b
+gd4
+2ge.
+2ged
+geez4
+gel4in
+ge5lis
+ge5liz
+4gely
+1gen
+ge4nat
+ge5niz
+4geno
+4geny
+1geo
+ge3om
+g4ery
+5gesi
+geth5
+4geto
+ge4ty
+ge4v
+4g1g2
+g2ge
+g3ger
+gglu5
+ggo4
+gh3in
+gh5out
+gh4to
+5gi.
+1gi4a
+gia5r
+g1ic
+5gicia
+g4ico
+gien5
+5gies.
+gil4
+g3imen
+3g4in.
+gin5ge
+5g4ins
+5gio
+3gir
+gir4l
+g3isl
+gi4u
+5giv
+3giz
+gl2
+gla4
+glad5i
+5glas
+1gle
+gli4b
+g3lig
+3glo
+glo3r
+g1m
+g4my
+gn4a
+g4na.
+gnet4t
+g1ni
+g2nin
+g4nio
+g1no
+g4non
+1go
+3go.
+gob5
+5goe
+3g4o4g
+go3is
+gon2
+4g3o3na
+gondo5
+go3ni
+5goo
+go5riz
+gor5ou
+5gos.
+gov1
+g3p
+1gr
+4grada
+g4rai
+gran2
+5graph.
+g5rapher
+5graphic
+4graphy
+4gray
+gre4n
+4gress.
+4grit
+g4ro
+gruf4
+gs2
+g5ste
+gth3
+gu4a
+3guard
+2gue
+5gui5t
+3gun
+3gus
+4gu4t
+g3w
+1gy
+2g5y3n
+gy5ra
+h3ab4l
+hach4
+hae4m
+hae4t
+h5agu
+ha3la
+hala3m
+ha4m
+han4ci
+han4cy
+5hand.
+han4g
+hang5er
+hang5o
+h5a5niz
+han4k
+han4te
+hap3l
+hap5t
+ha3ran
+ha5ras
+har2d
+hard3e
+har4le
+harp5en
+har5ter
+has5s
+haun4
+5haz
+haz3a
+h1b
+1head
+3hear
+he4can
+h5ecat
+h4ed
+he5do5
+he3l4i
+hel4lis
+hel4ly
+h5elo
+hem4p
+he2n
+hena4
+hen5at
+heo5r
+hep5
+h4era
+hera3p
+her4ba
+here5a
+h3ern
+h5erou
+h3ery
+h1es
+he2s5p
+he4t
+het4ed
+heu4
+h1f
+h1h
+hi5an
+hi4co
+high5
+h4il2
+himer4
+h4ina
+hion4e
+hi4p
+hir4l
+hi3ro
+hir4p
+hir4r
+his3el
+his4s
+hith5er
+hi2v
+4hk
+4h1l4
+hlan4
+h2lo
+hlo3ri
+4h1m
+hmet4
+2h1n
+h5odiz
+h5ods
+ho4g
+hoge4
+hol5ar
+3hol4e
+ho4ma
+home3
+hon4a
+ho5ny
+3hood
+hoon4
+hor5at
+ho5ris
+hort3e
+ho5ru
+hos4e
+ho5sen
+hos1p
+1hous
+house3
+hov5el
+4h5p
+4hr4
+hree5
+hro5niz
+hro3po
+4h1s2
+h4sh
+h4tar
+ht1en
+ht5es
+h4ty
+hu4g
+hu4min
+hun5ke
+hun4t
+hus3t4
+hu4t
+h1w
+h4wart
+hy3pe
+hy3ph
+hy2s
+2i1a
+i2al
+iam4
+iam5ete
+i2an
+4ianc
+ian3i
+4ian4t
+ia5pe
+iass4
+i4ativ
+ia4tric
+i4atu
+ibe4
+ib3era
+ib5ert
+ib5ia
+ib3in
+ib5it.
+ib5ite
+i1bl
+ib3li
+i5bo
+i1br
+i2b5ri
+i5bun
+4icam
+5icap
+4icar
+i4car.
+i4cara
+icas5
+i4cay
+iccu4
+4iceo
+4ich
+2ici
+i5cid
+ic5ina
+i2cip
+ic3ipa
+i4cly
+i2c5oc
+4i1cr
+5icra
+i4cry
+ic4te
+ictu2
+ic4t3ua
+ic3ula
+ic4um
+ic5uo
+i3cur
+2id
+i4dai
+id5anc
+id5d
+ide3al
+ide4s
+i2di
+id5ian
+idi4ar
+i5die
+id3io
+idi5ou
+id1it
+id5iu
+i3dle
+i4dom
+id3ow
+i4dr
+i2du
+id5uo
+2ie4
+ied4e
+5ie5ga
+ield3
+ien5a4
+ien4e
+i5enn
+i3enti
+i1er.
+i3esc
+i1est
+i3et
+4if.
+if5ero
+iff5en
+if4fr
+4ific.
+i3fie
+i3fl
+4ift
+2ig
+iga5b
+ig3era
+ight3i
+4igi
+i3gib
+ig3il
+ig3in
+ig3it
+i4g4l
+i2go
+ig3or
+ig5ot
+i5gre
+igu5i
+ig1ur
+i3h
+4i5i4
+i3j
+4ik
+i1la
+il3a4b
+i4lade
+i2l5am
+ila5ra
+i3leg
+il1er
+ilev4
+il5f
+il1i
+il3ia
+il2ib
+il3io
+il4ist
+2ilit
+il2iz
+ill5ab
+4iln
+il3oq
+il4ty
+il5ur
+il3v
+i4mag
+im3age
+ima5ry
+imenta5r
+4imet
+im1i
+im5ida
+imi5le
+i5mini
+4imit
+im4ni
+i3mon
+i2mu
+im3ula
+2in.
+i4n3au
+4inav
+incel4
+in3cer
+4ind
+in5dling
+2ine
+i3nee
+iner4ar
+i5ness
+4inga
+4inge
+in5gen
+4ingi
+in5gling
+4ingo
+4ingu
+2ini
+i5ni.
+i4nia
+in3io
+in1is
+i5nite.
+5initio
+in3ity
+4ink
+4inl
+2inn
+2i1no
+i4no4c
+ino4s
+i4not
+2ins
+in3se
+insur5a
+2int.
+2in4th
+in1u
+i5nus
+4iny
+2io
+4io.
+ioge4
+io2gr
+i1ol
+io4m
+ion3at
+ion4ery
+ion3i
+io5ph
+ior3i
+i4os
+io5th
+i5oti
+io4to
+i4our
+2ip
+ipe4
+iphras4
+ip3i
+ip4ic
+ip4re4
+ip3ul
+i3qua
+iq5uef
+iq3uid
+iq3ui3t
+4ir
+i1ra
+ira4b
+i4rac
+ird5e
+ire4de
+i4ref
+i4rel4
+i4res
+ir5gi
+ir1i
+iri5de
+ir4is
+iri3tu
+5i5r2iz
+ir4min
+iro4g
+5iron.
+ir5ul
+2is.
+is5ag
+is3ar
+isas5
+2is1c
+is3ch
+4ise
+is3er
+3isf
+is5han
+is3hon
+ish5op
+is3ib
+isi4d
+i5sis
+is5itiv
+4is4k
+islan4
+4isms
+i2so
+iso5mer
+is1p
+is2pi
+is4py
+4is1s
+is4sal
+issen4
+is4ses
+is4ta.
+is1te
+is1ti
+ist4ly
+4istral
+i2su
+is5us
+4ita.
+ita4bi
+i4tag
+4ita5m
+i3tan
+i3tat
+2ite
+it3era
+i5teri
+it4es
+2ith
+i1ti
+4itia
+4i2tic
+it3ica
+5i5tick
+it3ig
+it5ill
+i2tim
+2itio
+4itis
+i4tism
+i2t5o5m
+4iton
+i4tram
+it5ry
+4itt
+it3uat
+i5tud
+it3ul
+4itz.
+i1u
+2iv
+iv3ell
+iv3en.
+i4v3er.
+i4vers.
+iv5il.
+iv5io
+iv1it
+i5vore
+iv3o3ro
+i4v3ot
+4i5w
+ix4o
+4iy
+4izar
+izi4
+5izont
+5ja
+jac4q
+ja4p
+1je
+jer5s
+4jestie
+4jesty
+jew3
+jo4p
+5judg
+3ka.
+k3ab
+k5ag
+kais4
+kal4
+k1b
+k2ed
+1kee
+ke4g
+ke5li
+k3en4d
+k1er
+kes4
+k3est.
+ke4ty
+k3f
+kh4
+k1i
+5ki.
+5k2ic
+k4ill
+kilo5
+k4im
+k4in.
+kin4de
+k5iness
+kin4g
+ki4p
+kis4
+k5ish
+kk4
+k1l
+4kley
+4kly
+k1m
+k5nes
+1k2no
+ko5r
+kosh4
+k3ou
+kro5n
+4k1s2
+k4sc
+ks4l
+k4sy
+k5t
+k1w
+lab3ic
+l4abo
+laci4
+l4ade
+la3dy
+lag4n
+lam3o
+3land
+lan4dl
+lan5et
+lan4te
+lar4g
+lar3i
+las4e
+la5tan
+4lateli
+4lativ
+4lav
+la4v4a
+2l1b
+lbin4
+4l1c2
+lce4
+l3ci
+2ld
+l2de
+ld4ere
+ld4eri
+ldi4
+ld5is
+l3dr
+l4dri
+le2a
+le4bi
+left5
+5leg.
+5legg
+le4mat
+lem5atic
+4len.
+3lenc
+5lene.
+1lent
+le3ph
+le4pr
+lera5b
+ler4e
+3lerg
+3l4eri
+l4ero
+les2
+le5sco
+5lesq
+3less
+5less.
+l3eva
+lev4er.
+lev4era
+lev4ers
+3ley
+4leye
+2lf
+l5fr
+4l1g4
+l5ga
+lgar3
+l4ges
+lgo3
+2l3h
+li4ag
+li2am
+liar5iz
+li4as
+li4ato
+li5bi
+5licio
+li4cor
+4lics
+4lict.
+l4icu
+l3icy
+l3ida
+lid5er
+3lidi
+lif3er
+l4iff
+li4fl
+5ligate
+3ligh
+li4gra
+3lik
+4l4i4l
+lim4bl
+lim3i
+li4mo
+l4im4p
+l4ina
+1l4ine
+lin3ea
+lin3i
+link5er
+li5og
+4l4iq
+lis4p
+l1it
+l2it.
+5litica
+l5i5tics
+liv3er
+l1iz
+4lj
+lka3
+l3kal
+lka4t
+l1l
+l4law
+l2le
+l5lea
+l3lec
+l3leg
+l3lel
+l3le4n
+l3le4t
+ll2i
+l2lin4
+l5lina
+ll4o
+lloqui5
+ll5out
+l5low
+2lm
+l5met
+lm3ing
+l4mod
+lmon4
+2l1n2
+3lo.
+lob5al
+lo4ci
+4lof
+3logic
+l5ogo
+3logu
+lom3er
+5long
+lon4i
+l3o3niz
+lood5
+5lope.
+lop3i
+l3opm
+lora4
+lo4rato
+lo5rie
+lor5ou
+5los.
+los5et
+5losophiz
+5losophy
+los4t
+lo4ta
+loun5d
+2lout
+4lov
+2lp
+lpa5b
+l3pha
+l5phi
+lp5ing
+l3pit
+l4pl
+l5pr
+4l1r
+2l1s2
+l4sc
+l2se
+l4sie
+4lt
+lt5ag
+ltane5
+l1te
+lten4
+ltera4
+lth3i
+l5ties.
+ltis4
+l1tr
+ltu2
+ltur3a
+lu5a
+lu3br
+luch4
+lu3ci
+lu3en
+luf4
+lu5id
+lu4ma
+5lumi
+l5umn.
+5lumnia
+lu3o
+luo3r
+4lup
+luss4
+lus3te
+1lut
+l5ven
+l5vet4
+2l1w
+1ly
+4lya
+4lyb
+ly5me
+ly3no
+2lys4
+l5yse
+1ma
+2mab
+ma2ca
+ma5chine
+ma4cl
+mag5in
+5magn
+2mah
+maid5
+4mald
+ma3lig
+ma5lin
+mal4li
+mal4ty
+5mania
+man5is
+man3iz
+4map
+ma5rine.
+ma5riz
+mar4ly
+mar3v
+ma5sce
+mas4e
+mas1t
+5mate
+math3
+ma3tis
+4matiza
+4m1b
+mba4t5
+m5bil
+m4b3ing
+mbi4v
+4m5c
+4me.
+2med
+4med.
+5media
+me3die
+m5e5dy
+me2g
+mel5on
+mel4t
+me2m
+mem1o3
+1men
+men4a
+men5ac
+men4de
+4mene
+men4i
+mens4
+mensu5
+3ment
+men4te
+me5on
+m5ersa
+2mes
+3mesti
+me4ta
+met3al
+me1te
+me5thi
+m4etr
+5metric
+me5trie
+me3try
+me4v
+4m1f
+2mh
+5mi.
+mi3a
+mid4a
+mid4g
+mig4
+3milia
+m5i5lie
+m4ill
+min4a
+3mind
+m5inee
+m4ingl
+min5gli
+m5ingly
+min4t
+m4inu
+miot4
+m2is
+mis4er.
+mis5l
+mis4ti
+m5istry
+4mith
+m2iz
+4mk
+4m1l
+m1m
+mma5ry
+4m1n
+mn4a
+m4nin
+mn4o
+1mo
+4mocr
+5mocratiz
+mo2d1
+mo4go
+mois2
+moi5se
+4mok
+mo5lest
+mo3me
+mon5et
+mon5ge
+moni3a
+mon4ism
+mon4ist
+mo3niz
+monol4
+mo3ny.
+mo2r
+4mora.
+mos2
+mo5sey
+mo3sp
+moth3
+m5ouf
+3mous
+mo2v
+4m1p
+mpara5
+mpa5rab
+mpar5i
+m3pet
+mphas4
+m2pi
+mpi4a
+mp5ies
+m4p1in
+m5pir
+mp5is
+mpo3ri
+mpos5ite
+m4pous
+mpov5
+mp4tr
+m2py
+4m3r
+4m1s2
+m4sh
+m5si
+4mt
+1mu
+mula5r4
+5mult
+multi3
+3mum
+mun2
+4mup
+mu4u
+4mw
+1na
+2n1a2b
+n4abu
+4nac.
+na4ca
+n5act
+nag5er.
+nak4
+na4li
+na5lia
+4nalt
+na5mit
+n2an
+nanci4
+nan4it
+nank4
+nar3c
+4nare
+nar3i
+nar4l
+n5arm
+n4as
+nas4c
+nas5ti
+n2at
+na3tal
+nato5miz
+n2au
+nau3se
+3naut
+nav4e
+4n1b4
+ncar5
+n4ces.
+n3cha
+n5cheo
+n5chil
+n3chis
+nc1in
+nc4it
+ncour5a
+n1cr
+n1cu
+n4dai
+n5dan
+n1de
+nd5est.
+ndi4b
+n5d2if
+n1dit
+n3diz
+n5duc
+ndu4r
+nd2we
+2ne.
+n3ear
+ne2b
+neb3u
+ne2c
+5neck
+2ned
+ne4gat
+neg5ativ
+5nege
+ne4la
+nel5iz
+ne5mi
+ne4mo
+1nen
+4nene
+3neo
+ne4po
+ne2q
+n1er
+nera5b
+n4erar
+n2ere
+n4er5i
+ner4r
+1nes
+2nes.
+4nesp
+2nest
+4nesw
+3netic
+ne4v
+n5eve
+ne4w
+n3f
+n4gab
+n3gel
+nge4n4e
+n5gere
+n3geri
+ng5ha
+n3gib
+ng1in
+n5git
+n4gla
+ngov4
+ng5sh
+n1gu
+n4gum
+n2gy
+4n1h4
+nha4
+nhab3
+nhe4
+3n4ia
+ni3an
+ni4ap
+ni3ba
+ni4bl
+ni4d
+ni5di
+ni4er
+ni2fi
+ni5ficat
+n5igr
+nik4
+n1im
+ni3miz
+n1in
+5nine.
+nin4g
+ni4o
+5nis.
+nis4ta
+n2it
+n4ith
+3nitio
+n3itor
+ni3tr
+n1j
+4nk2
+n5kero
+n3ket
+nk3in
+n1kl
+4n1l
+n5m
+nme4
+nmet4
+4n1n2
+nne4
+nni3al
+nni4v
+nob4l
+no3ble
+n5ocl
+4n3o2d
+3noe
+4nog
+noge4
+nois5i
+no5l4i
+5nologis
+3nomic
+n5o5miz
+no4mo
+no3my
+no4n
+non4ag
+non5i
+n5oniz
+4nop
+5nop5o5li
+nor5ab
+no4rary
+4nosc
+nos4e
+nos5t
+no5ta
+1nou
+3noun
+nov3el3
+nowl3
+n1p4
+npi4
+npre4c
+n1q
+n1r
+nru4
+2n1s2
+ns5ab
+nsati4
+ns4c
+n2se
+n4s3es
+nsid1
+nsig4
+n2sl
+ns3m
+n4soc
+ns4pe
+n5spi
+nsta5bl
+n1t
+nta4b
+nter3s
+nt2i
+n5tib
+nti4er
+nti2f
+n3tine
+n4t3ing
+nti4p
+ntrol5li
+nt4s
+ntu3me
+nu1a
+nu4d
+nu5en
+nuf4fe
+n3uin
+3nu3it
+n4um
+nu1me
+n5umi
+3nu4n
+n3uo
+nu3tr
+n1v2
+n1w4
+nym4
+nyp4
+4nz
+n3za
+4oa
+oad3
+o5a5les
+oard3
+oas4e
+oast5e
+oat5i
+ob3a3b
+o5bar
+obe4l
+o1bi
+o2bin
+ob5ing
+o3br
+ob3ul
+o1ce
+och4
+o3chet
+ocif3
+o4cil
+o4clam
+o4cod
+oc3rac
+oc5ratiz
+ocre3
+5ocrit
+octor5a
+oc3ula
+o5cure
+od5ded
+od3ic
+odi3o
+o2do4
+odor3
+od5uct.
+od5ucts
+o4el
+o5eng
+o3er
+oe4ta
+o3ev
+o2fi
+of5ite
+ofit4t
+o2g5a5r
+og5ativ
+o4gato
+o1ge
+o5gene
+o5geo
+o4ger
+o3gie
+1o1gis
+og3it
+o4gl
+o5g2ly
+3ogniz
+o4gro
+ogu5i
+1ogy
+2ogyn
+o1h2
+ohab5
+oi2
+oic3es
+oi3der
+oiff4
+oig4
+oi5let
+o3ing
+oint5er
+o5ism
+oi5son
+oist5en
+oi3ter
+o5j
+2ok
+o3ken
+ok5ie
+o1la
+o4lan
+olass4
+ol2d
+old1e
+ol3er
+o3lesc
+o3let
+ol4fi
+ol2i
+o3lia
+o3lice
+ol5id.
+o3li4f
+o5lil
+ol3ing
+o5lio
+o5lis.
+ol3ish
+o5lite
+o5litio
+o5liv
+olli4e
+ol5ogiz
+olo4r
+ol5pl
+ol2t
+ol3ub
+ol3ume
+ol3un
+o5lus
+ol2v
+o2ly
+om5ah
+oma5l
+om5atiz
+om2be
+om4bl
+o2me
+om3ena
+om5erse
+o4met
+om5etry
+o3mia
+om3ic.
+om3ica
+o5mid
+om1in
+o5mini
+5ommend
+omo4ge
+o4mon
+om3pi
+ompro5
+o2n
+on1a
+on4ac
+o3nan
+on1c
+3oncil
+2ond
+on5do
+o3nen
+on5est
+on4gu
+on1ic
+o3nio
+on1is
+o5niu
+on3key
+on4odi
+on3omy
+on3s
+onspi4
+onspir5a
+onsu4
+onten4
+on3t4i
+ontif5
+on5um
+onva5
+oo2
+ood5e
+ood5i
+oo4k
+oop3i
+o3ord
+oost5
+o2pa
+ope5d
+op1er
+3opera
+4operag
+2oph
+o5phan
+o5pher
+op3ing
+o3pit
+o5pon
+o4posi
+o1pr
+op1u
+opy5
+o1q
+o1ra
+o5ra.
+o4r3ag
+or5aliz
+or5ange
+ore5a
+o5real
+or3ei
+ore5sh
+or5est.
+orew4
+or4gu
+4o5ria
+or3ica
+o5ril
+or1in
+o1rio
+or3ity
+o3riu
+or2mi
+orn2e
+o5rof
+or3oug
+or5pe
+3orrh
+or4se
+ors5en
+orst4
+or3thi
+or3thy
+or4ty
+o5rum
+o1ry
+os3al
+os2c
+os4ce
+o3scop
+4oscopi
+o5scr
+os4i4e
+os5itiv
+os3ito
+os3ity
+osi4u
+os4l
+o2so
+os4pa
+os4po
+os2ta
+o5stati
+os5til
+os5tit
+o4tan
+otele4g
+ot3er.
+ot5ers
+o4tes
+4oth
+oth5esi
+oth3i4
+ot3ic.
+ot5ica
+o3tice
+o3tif
+o3tis
+oto5s
+ou2
+ou3bl
+ouch5i
+ou5et
+ou4l
+ounc5er
+oun2d
+ou5v
+ov4en
+over4ne
+over3s
+ov4ert
+o3vis
+oviti4
+o5v4ol
+ow3der
+ow3el
+ow5est
+ow1i
+own5i
+o4wo
+oy1a
+1pa
+pa4ca
+pa4ce
+pac4t
+p4ad
+5pagan
+p3agat
+p4ai
+pain4
+p4al
+pan4a
+pan3el
+pan4ty
+pa3ny
+pa1p
+pa4pu
+para5bl
+par5age
+par5di
+3pare
+par5el
+p4a4ri
+par4is
+pa2te
+pa5ter
+5pathic
+pa5thy
+pa4tric
+pav4
+3pay
+4p1b
+pd4
+4pe.
+3pe4a
+pear4l
+pe2c
+2p2ed
+3pede
+3pedi
+pedia4
+ped4ic
+p4ee
+pee4d
+pek4
+pe4la
+peli4e
+pe4nan
+p4enc
+pen4th
+pe5on
+p4era.
+pera5bl
+p4erag
+p4eri
+peri5st
+per4mal
+perme5
+p4ern
+per3o
+per3ti
+pe5ru
+per1v
+pe2t
+pe5ten
+pe5tiz
+4pf
+4pg
+4ph.
+phar5i
+phe3no
+ph4er
+ph4es.
+ph1ic
+5phie
+ph5ing
+5phisti
+3phiz
+ph2l
+3phob
+3phone
+5phoni
+pho4r
+4phs
+ph3t
+5phu
+1phy
+pi3a
+pian4
+pi4cie
+pi4cy
+p4id
+p5ida
+pi3de
+5pidi
+3piec
+pi3en
+pi4grap
+pi3lo
+pi2n
+p4in.
+pind4
+p4ino
+3pi1o
+pion4
+p3ith
+pi5tha
+pi2tu
+2p3k2
+1p2l2
+3plan
+plas5t
+pli3a
+pli5er
+4plig
+pli4n
+ploi4
+plu4m
+plum4b
+4p1m
+2p3n
+po4c
+5pod.
+po5em
+po3et5
+5po4g
+poin2
+5point
+poly5t
+po4ni
+po4p
+1p4or
+po4ry
+1pos
+pos1s
+p4ot
+po4ta
+5poun
+4p1p
+ppa5ra
+p2pe
+p4ped
+p5pel
+p3pen
+p3per
+p3pet
+ppo5site
+pr2
+pray4e
+5preci
+pre5co
+pre3em
+pref5ac
+pre4la
+pre3r
+p3rese
+3press
+pre5ten
+pre3v
+5pri4e
+prin4t3
+pri4s
+pris3o
+p3roca
+prof5it
+pro3l
+pros3e
+pro1t
+2p1s2
+p2se
+ps4h
+p4sib
+2p1t
+pt5a4b
+p2te
+p2th
+pti3m
+ptu4r
+p4tw
+pub3
+pue4
+puf4
+pul3c
+pu4m
+pu2n
+pur4r
+5pus
+pu2t
+5pute
+put3er
+pu3tr
+put4ted
+put4tin
+p3w
+qu2
+qua5v
+2que.
+3quer
+3quet
+2rab
+ra3bi
+rach4e
+r5acl
+raf5fi
+raf4t
+r2ai
+ra4lo
+ram3et
+r2ami
+rane5o
+ran4ge
+r4ani
+ra5no
+rap3er
+3raphy
+rar5c
+rare4
+rar5ef
+4raril
+r2as
+ration4
+rau4t
+ra5vai
+rav3el
+ra5zie
+r1b
+r4bab
+r4bag
+rbi2
+rbi4f
+r2bin
+r5bine
+rb5ing.
+rb4o
+r1c
+r2ce
+rcen4
+r3cha
+rch4er
+r4ci4b
+rc4it
+rcum3
+r4dal
+rd2i
+rdi4a
+rdi4er
+rdin4
+rd3ing
+2re.
+re1al
+re3an
+re5arr
+5reav
+re4aw
+r5ebrat
+rec5oll
+rec5ompe
+re4cre
+2r2ed
+re1de
+re3dis
+red5it
+re4fac
+re2fe
+re5fer.
+re3fi
+re4fy
+reg3is
+re5it
+re1li
+re5lu
+r4en4ta
+ren4te
+re1o
+re5pin
+re4posi
+re1pu
+r1er4
+r4eri
+rero4
+re5ru
+r4es.
+re4spi
+ress5ib
+res2t
+re5stal
+re3str
+re4ter
+re4ti4z
+re3tri
+reu2
+re5uti
+rev2
+re4val
+rev3el
+r5ev5er.
+re5vers
+re5vert
+re5vil
+rev5olu
+re4wh
+r1f
+rfu4
+r4fy
+rg2
+rg3er
+r3get
+r3gic
+rgi4n
+rg3ing
+r5gis
+r5git
+r1gl
+rgo4n
+r3gu
+rh4
+4rh.
+4rhal
+ri3a
+ria4b
+ri4ag
+r4ib
+rib3a
+ric5as
+r4ice
+4rici
+5ricid
+ri4cie
+r4ico
+rid5er
+ri3enc
+ri3ent
+ri1er
+ri5et
+rig5an
+5rigi
+ril3iz
+5riman
+rim5i
+3rimo
+rim4pe
+r2ina
+5rina.
+rin4d
+rin4e
+rin4g
+ri1o
+5riph
+riph5e
+ri2pl
+rip5lic
+r4iq
+r2is
+r4is.
+ris4c
+r3ish
+ris4p
+ri3ta3b
+r5ited.
+rit5er.
+rit5ers
+rit3ic
+ri2tu
+rit5ur
+riv5el
+riv3et
+riv3i
+r3j
+r3ket
+rk4le
+rk4lin
+r1l
+rle4
+r2led
+r4lig
+r4lis
+rl5ish
+r3lo4
+r1m
+rma5c
+r2me
+r3men
+rm5ers
+rm3ing
+r4ming.
+r4mio
+r3mit
+r4my
+r4nar
+r3nel
+r4ner
+r5net
+r3ney
+r5nic
+r1nis4
+r3nit
+r3niv
+rno4
+r4nou
+r3nu
+rob3l
+r2oc
+ro3cr
+ro4e
+ro1fe
+ro5fil
+rok2
+ro5ker
+5role.
+rom5ete
+rom4i
+rom4p
+ron4al
+ron4e
+ro5n4is
+ron4ta
+1room
+5root
+ro3pel
+rop3ic
+ror3i
+ro5ro
+ros5per
+ros4s
+ro4the
+ro4ty
+ro4va
+rov5el
+rox5
+r1p
+r4pea
+r5pent
+rp5er.
+r3pet
+rp4h4
+rp3ing
+r3po
+r1r4
+rre4c
+rre4f
+r4reo
+rre4st
+rri4o
+rri4v
+rron4
+rros4
+rrys4
+4rs2
+r1sa
+rsa5ti
+rs4c
+r2se
+r3sec
+rse4cr
+rs5er.
+rs3es
+rse5v2
+r1sh
+r5sha
+r1si
+r4si4b
+rson3
+r1sp
+r5sw
+rtach4
+r4tag
+r3teb
+rten4d
+rte5o
+r1ti
+rt5ib
+rti4d
+r4tier
+r3tig
+rtil3i
+rtil4l
+r4tily
+r4tist
+r4tiv
+r3tri
+rtroph4
+rt4sh
+ru3a
+ru3e4l
+ru3en
+ru4gl
+ru3in
+rum3pl
+ru2n
+runk5
+run4ty
+r5usc
+ruti5n
+rv4e
+rvel4i
+r3ven
+rv5er.
+r5vest
+r3vey
+r3vic
+rvi4v
+r3vo
+r1w
+ry4c
+5rynge
+ry3t
+sa2
+2s1ab
+5sack
+sac3ri
+s3act
+5sai
+salar4
+sal4m
+sa5lo
+sal4t
+3sanc
+san4de
+s1ap
+sa5ta
+5sa3tio
+sat3u
+sau4
+sa5vor
+5saw
+4s5b
+scan4t5
+sca4p
+scav5
+s4ced
+4scei
+s4ces
+sch2
+s4cho
+3s4cie
+5scin4d
+scle5
+s4cli
+scof4
+4scopy
+scour5a
+s1cu
+4s5d
+4se.
+se4a
+seas4
+sea5w
+se2c3o
+3sect
+4s4ed
+se4d4e
+s5edl
+se2g
+seg3r
+5sei
+se1le
+5self
+5selv
+4seme
+se4mol
+sen5at
+4senc
+sen4d
+s5ened
+sen5g
+s5enin
+4sentd
+4sentl
+sep3a3
+4s1er.
+s4erl
+ser4o
+4servo
+s1e4s
+se5sh
+ses5t
+5se5um
+5sev
+sev3en
+sew4i
+5sex
+4s3f
+2s3g
+s2h
+2sh.
+sh1er
+5shev
+sh1in
+sh3io
+3ship
+shiv5
+sho4
+sh5old
+shon3
+shor4
+short5
+4shw
+si1b
+s5icc
+3side.
+5sides
+5sidi
+si5diz
+4signa
+sil4e
+4sily
+2s1in
+s2ina
+5sine.
+s3ing
+1sio
+5sion
+sion5a
+si2r
+sir5a
+1sis
+3sitio
+5siu
+1siv
+5siz
+sk2
+4ske
+s3ket
+sk5ine
+sk5ing
+s1l2
+s3lat
+s2le
+slith5
+2s1m
+s3ma
+small3
+sman3
+smel4
+s5men
+5smith
+smol5d4
+s1n4
+1so
+so4ce
+soft3
+so4lab
+sol3d2
+so3lic
+5solv
+3som
+3s4on.
+sona4
+son4g
+s4op
+5sophic
+s5ophiz
+s5ophy
+sor5c
+sor5d
+4sov
+so5vi
+2spa
+5spai
+spa4n
+spen4d
+2s5peo
+2sper
+s2phe
+3spher
+spho5
+spil4
+sp5ing
+4spio
+s4ply
+s4pon
+spor4
+4spot
+squal4l
+s1r
+2ss
+s1sa
+ssas3
+s2s5c
+s3sel
+s5seng
+s4ses.
+s5set
+s1si
+s4sie
+ssi4er
+ss5ily
+s4sl
+ss4li
+s4sn
+sspend4
+ss2t
+ssur5a
+ss5w
+2st.
+s2tag
+s2tal
+stam4i
+5stand
+s4ta4p
+5stat.
+s4ted
+stern5i
+s5tero
+ste2w
+stew5a
+s3the
+st2i
+s4ti.
+s5tia
+s1tic
+5stick
+s4tie
+s3tif
+st3ing
+5stir
+s1tle
+5stock
+stom3a
+5stone
+s4top
+3store
+st4r
+s4trad
+5stratu
+s4tray
+s4trid
+4stry
+4st3w
+s2ty
+1su
+su1al
+su4b3
+su2g3
+su5is
+suit3
+s4ul
+su2m
+sum3i
+su2n
+su2r
+4sv
+sw2
+4swo
+s4y
+4syc
+3syl
+syn5o
+sy5rin
+1ta
+3ta.
+2tab
+ta5bles
+5taboliz
+4taci
+ta5do
+4taf4
+tai5lo
+ta2l
+ta5la
+tal5en
+tal3i
+4talk
+tal4lis
+ta5log
+ta5mo
+tan4de
+tanta3
+ta5per
+ta5pl
+tar4a
+4tarc
+4tare
+ta3riz
+tas4e
+ta5sy
+4tatic
+ta4tur
+taun4
+tav4
+2taw
+tax4is
+2t1b
+4tc
+t4ch
+tch5et
+4t1d
+4te.
+tead4i
+4teat
+tece4
+5tect
+2t1ed
+te5di
+1tee
+teg4
+te5ger
+te5gi
+3tel.
+teli4
+5tels
+te2ma2
+tem3at
+3tenan
+3tenc
+3tend
+4tenes
+1tent
+ten4tag
+1teo
+te4p
+te5pe
+ter3c
+5ter3d
+1teri
+ter5ies
+ter3is
+teri5za
+5ternit
+ter5v
+4tes.
+4tess
+t3ess.
+teth5e
+3teu
+3tex
+4tey
+2t1f
+4t1g
+2th.
+than4
+th2e
+4thea
+th3eas
+the5at
+the3is
+3thet
+th5ic.
+th5ica
+4thil
+5think
+4thl
+th5ode
+5thodic
+4thoo
+thor5it
+tho5riz
+2ths
+1tia
+ti4ab
+ti4ato
+2ti2b
+4tick
+t4ico
+t4ic1u
+5tidi
+3tien
+tif2
+ti5fy
+2tig
+5tigu
+till5in
+1tim
+4timp
+tim5ul
+2t1in
+t2ina
+3tine.
+3tini
+1tio
+ti5oc
+tion5ee
+5tiq
+ti3sa
+3tise
+tis4m
+ti5so
+tis4p
+5tistica
+ti3tl
+ti4u
+1tiv
+tiv4a
+1tiz
+ti3za
+ti3zen
+2tl
+t5la
+tlan4
+3tle.
+3tled
+3tles.
+t5let.
+t5lo
+4t1m
+tme4
+2t1n2
+1to
+to3b
+to5crat
+4todo
+2tof
+to2gr
+to5ic
+to2ma
+tom4b
+to3my
+ton4ali
+to3nat
+4tono
+4tony
+to2ra
+to3rie
+tor5iz
+tos2
+5tour
+4tout
+to3war
+4t1p
+1tra
+tra3b
+tra5ch
+traci4
+trac4it
+trac4te
+tras4
+tra5ven
+trav5es5
+tre5f
+tre4m
+trem5i
+5tria
+tri5ces
+5tricia
+4trics
+2trim
+tri4v
+tro5mi
+tron5i
+4trony
+tro5phe
+tro3sp
+tro3v
+tru5i
+trus4
+4t1s2
+t4sc
+tsh4
+t4sw
+4t3t2
+t4tes
+t5to
+ttu4
+1tu
+tu1a
+tu3ar
+tu4bi
+tud2
+4tue
+4tuf4
+5tu3i
+3tum
+tu4nis
+2t3up.
+3ture
+5turi
+tur3is
+tur5o
+tu5ry
+3tus
+4tv
+tw4
+4t1wa
+twis4
+4two
+1ty
+4tya
+2tyl
+type3
+ty5ph
+4tz
+tz4e
+4uab
+uac4
+ua5na
+uan4i
+uar5ant
+uar2d
+uar3i
+uar3t
+u1at
+uav4
+ub4e
+u4bel
+u3ber
+u4bero
+u1b4i
+u4b5ing
+u3ble.
+u3ca
+uci4b
+uc4it
+ucle3
+u3cr
+u3cu
+u4cy
+ud5d
+ud3er
+ud5est
+udev4
+u1dic
+ud3ied
+ud3ies
+ud5is
+u5dit
+u4don
+ud4si
+u4du
+u4ene
+uens4
+uen4te
+uer4il
+3ufa
+u3fl
+ugh3en
+ug5in
+2ui2
+uil5iz
+ui4n
+u1ing
+uir4m
+uita4
+uiv3
+uiv4er.
+u5j
+4uk
+u1la
+ula5b
+u5lati
+ulch4
+5ulche
+ul3der
+ul4e
+u1len
+ul4gi
+ul2i
+u5lia
+ul3ing
+ul5ish
+ul4lar
+ul4li4b
+ul4lis
+4ul3m
+u1l4o
+4uls
+uls5es
+ul1ti
+ultra3
+4ultu
+u3lu
+ul5ul
+ul5v
+um5ab
+um4bi
+um4bly
+u1mi
+u4m3ing
+umor5o
+um2p
+unat4
+u2ne
+un4er
+u1ni
+un4im
+u2nin
+un5ish
+uni3v
+un3s4
+un4sw
+unt3ab
+un4ter.
+un4tes
+unu4
+un5y
+un5z
+u4ors
+u5os
+u1ou
+u1pe
+uper5s
+u5pia
+up3ing
+u3pl
+up3p
+upport5
+upt5ib
+uptu4
+u1ra
+4ura.
+u4rag
+u4ras
+ur4be
+urc4
+ur1d
+ure5at
+ur4fer
+ur4fr
+u3rif
+uri4fic
+ur1in
+u3rio
+u1rit
+ur3iz
+ur2l
+url5ing.
+ur4no
+uros4
+ur4pe
+ur4pi
+urs5er
+ur5tes
+ur3the
+urti4
+ur4tie
+u3ru
+2us
+u5sad
+u5san
+us4ap
+usc2
+us3ci
+use5a
+u5sia
+u3sic
+us4lin
+us1p
+us5sl
+us5tere
+us1tr
+u2su
+usur4
+uta4b
+u3tat
+4ute.
+4utel
+4uten
+uten4i
+4u1t2i
+uti5liz
+u3tine
+ut3ing
+ution5a
+u4tis
+5u5tiz
+u4t1l
+ut5of
+uto5g
+uto5matic
+u5ton
+u4tou
+uts4
+u3u
+uu4m
+u1v2
+uxu3
+uz4e
+1va
+5va.
+2v1a4b
+vac5il
+vac3u
+vag4
+va4ge
+va5lie
+val5o
+val1u
+va5mo
+va5niz
+va5pi
+var5ied
+3vat
+4ve.
+4ved
+veg3
+v3el.
+vel3li
+ve4lo
+v4ely
+ven3om
+v5enue
+v4erd
+5vere.
+v4erel
+v3eren
+ver5enc
+v4eres
+ver3ie
+vermi4n
+3verse
+ver3th
+v4e2s
+4ves.
+ves4te
+ve4te
+vet3er
+ve4ty
+vi5ali
+5vian
+5vide.
+5vided
+4v3iden
+5vides
+5vidi
+v3if
+vi5gn
+vik4
+2vil
+5vilit
+v3i3liz
+v1in
+4vi4na
+v2inc
+vin5d
+4ving
+vio3l
+v3io4r
+vi1ou
+vi4p
+vi5ro
+vis3it
+vi3so
+vi3su
+4viti
+vit3r
+4vity
+3viv
+5vo.
+voi4
+3vok
+vo4la
+v5ole
+5volt
+3volv
+vom5i
+vor5ab
+vori4
+vo4ry
+vo4ta
+4votee
+4vv4
+v4y
+w5abl
+2wac
+wa5ger
+wag5o
+wait5
+w5al.
+wam4
+war4t
+was4t
+wa1te
+wa5ver
+w1b
+wea5rie
+weath3
+wed4n
+weet3
+wee5v
+wel4l
+w1er
+west3
+w3ev
+whi4
+wi2
+wil2
+will5in
+win4de
+win4g
+wir4
+3wise
+with3
+wiz5
+w4k
+wl4es
+wl3in
+w4no
+1wo2
+wom1
+wo5ven
+w5p
+wra4
+wri4
+writa4
+w3sh
+ws4l
+ws4pe
+w5s4t
+4wt
+wy4
+x1a
+xac5e
+x4ago
+xam3
+x4ap
+xas5
+x3c2
+x1e
+xe4cuto
+x2ed
+xer4i
+xe5ro
+x1h
+xhi2
+xhil5
+xhu4
+x3i
+xi5a
+xi5c
+xi5di
+x4ime
+xi5miz
+x3o
+x4ob
+x3p
+xpan4d
+xpecto5
+xpe3d
+x1t2
+x3ti
+x1u
+xu3a
+xx4
+y5ac
+3yar4
+y5at
+y1b
+y1c
+y2ce
+yc5er
+y3ch
+ych4e
+ycom4
+ycot4
+y1d
+y5ee
+y1er
+y4erf
+yes4
+ye4t
+y5gi
+4y3h
+y1i
+y3la
+ylla5bl
+y3lo
+y5lu
+ymbol5
+yme4
+ympa3
+yn3chr
+yn5d
+yn5g
+yn5ic
+5ynx
+y1o4
+yo5d
+y4o5g
+yom4
+yo5net
+y4ons
+y4os
+y4ped
+yper5
+yp3i
+y3po
+y4poc
+yp2ta
+y5pu
+yra5m
+yr5ia
+y3ro
+yr4r
+ys4c
+y3s2e
+ys3ica
+ys3io
+3ysis
+y4so
+yss4
+ys1t
+ys3ta
+ysur4
+y3thin
+yt3ic
+y1w
+za1
+z5a2b
+zar2
+4zb
+2ze
+ze4n
+ze4p
+z1er
+ze3ro
+zet4
+2z1i
+z4il
+z4is
+5zl
+4zm
+1zo
+zo4m
+zo5ol
+zte4
+4z1z2
+z4zy
+}
+\hyphenation{ % Do NOT make any alterations to this list! --- DEK
+as-so-ciate
+as-so-ciates
+dec-li-na-tion
+oblig-a-tory
+phil-an-thropic
+present
+presents
+project
+projects
+reci-procity
+re-cog-ni-zance
+ref-or-ma-tion
+ret-ri-bu-tion
+ta-ble
+}